/* -*- buffer-read-only: t -*- !!!!!!! DO NOT EDIT THIS FILE !!!!!!! This file is built by regen/warnings.pl. Any changes made here will be lost! */ #define Off(x) ((x) / 8) #define Bit(x) (1 << ((x) % 8)) #define IsSet(a, x) ((a)[Off(x)] & Bit(x)) #define G_WARN_OFF 0 /* $^W == 0 */ #define G_WARN_ON 1 /* -w flag and $^W != 0 */ #define G_WARN_ALL_ON 2 /* -W flag */ #define G_WARN_ALL_OFF 4 /* -X flag */ #define G_WARN_ONCE 8 /* set if 'once' ever enabled */ #define G_WARN_ALL_MASK (G_WARN_ALL_ON|G_WARN_ALL_OFF) #define pWARN_STD NULL #define pWARN_ALL (((STRLEN*)0)+1) /* use warnings 'all' */ #define pWARN_NONE (((STRLEN*)0)+2) /* no warnings 'all' */ #define specialWARN(x) ((x) == pWARN_STD || (x) == pWARN_ALL || \ (x) == pWARN_NONE) /* if PL_warnhook is set to this value, then warnings die */ #define PERL_WARNHOOK_FATAL (&PL_sv_placeholder) /* Warnings Categories added in Perl 5.008 */ #define WARN_ALL 0 #define WARN_CLOSURE 1 #define WARN_DEPRECATED 2 #define WARN_EXITING 3 #define WARN_GLOB 4 #define WARN_IO 5 #define WARN_CLOSED 6 #define WARN_EXEC 7 #define WARN_LAYER 8 #define WARN_NEWLINE 9 #define WARN_PIPE 10 #define WARN_UNOPENED 11 #define WARN_MISC 12 #define WARN_NUMERIC 13 #define WARN_ONCE 14 #define WARN_OVERFLOW 15 #define WARN_PACK 16 #define WARN_PORTABLE 17 #define WARN_RECURSION 18 #define WARN_REDEFINE 19 #define WARN_REGEXP 20 #define WARN_SEVERE 21 #define WARN_DEBUGGING 22 #define WARN_INPLACE 23 #define WARN_INTERNAL 24 #define WARN_MALLOC 25 #define WARN_SIGNAL 26 #define WARN_SUBSTR 27 #define WARN_SYNTAX 28 #define WARN_AMBIGUOUS 29 #define WARN_BAREWORD 30 #define WARN_DIGIT 31 #define WARN_PARENTHESIS 32 #define WARN_PRECEDENCE 33 #define WARN_PRINTF 34 #define WARN_PROTOTYPE 35 #define WARN_QW 36 #define WARN_RESERVED 37 #define WARN_SEMICOLON 38 #define WARN_TAINT 39 #define WARN_THREADS 40 #define WARN_UNINITIALIZED 41 #define WARN_UNPACK 42 #define WARN_UNTIE 43 #define WARN_UTF8 44 #define WARN_VOID 45 /* Warnings Categories added in Perl 5.011 */ #define WARN_IMPRECISION 46 #define WARN_ILLEGALPROTO 47 /* Warnings Categories added in Perl 5.013 */ #define WARN_NON_UNICODE 48 #define WARN_NONCHAR 49 #define WARN_SURROGATE 50 #define WARNsize 13 #define WARN_ALLstring "\125\125\125\125\125\125\125\125\125\125\125\125\125" #define WARN_NONEstring "\0\0\0\0\0\0\0\0\0\0\0\0\0" #define isLEXWARN_on (PL_curcop->cop_warnings != pWARN_STD) #define isLEXWARN_off (PL_curcop->cop_warnings == pWARN_STD) #define isWARN_ONCE (PL_dowarn & (G_WARN_ON|G_WARN_ONCE)) #define isWARN_on(c,x) (IsSet((U8 *)(c + 1), 2*(x))) #define isWARNf_on(c,x) (IsSet((U8 *)(c + 1), 2*(x)+1)) #define DUP_WARNINGS(p) \ (specialWARN(p) ? (STRLEN*)(p) \ : (STRLEN*)CopyD(p, PerlMemShared_malloc(sizeof(*p)+*p), sizeof(*p)+*p, \ char)) #define ckWARN(w) Perl_ckwarn(aTHX_ packWARN(w)) #define ckWARN2(w1,w2) Perl_ckwarn(aTHX_ packWARN2(w1,w2)) #define ckWARN3(w1,w2,w3) Perl_ckwarn(aTHX_ packWARN3(w1,w2,w3)) #define ckWARN4(w1,w2,w3,w4) Perl_ckwarn(aTHX_ packWARN4(w1,w2,w3,w4)) #define ckWARN_d(w) Perl_ckwarn_d(aTHX_ packWARN(w)) #define ckWARN2_d(w1,w2) Perl_ckwarn_d(aTHX_ packWARN2(w1,w2)) #define ckWARN3_d(w1,w2,w3) Perl_ckwarn_d(aTHX_ packWARN3(w1,w2,w3)) #define ckWARN4_d(w1,w2,w3,w4) Perl_ckwarn_d(aTHX_ packWARN4(w1,w2,w3,w4)) #define WARNshift 8 #define packWARN(a) (a ) #define packWARN2(a,b) ((a) | ((b)<<8) ) #define packWARN3(a,b,c) ((a) | ((b)<<8) | ((c)<<16) ) #define packWARN4(a,b,c,d) ((a) | ((b)<<8) | ((c)<<16) | ((d) <<24)) #define unpackWARN1(x) ((x) & 0xFF) #define unpackWARN2(x) (((x) >>8) & 0xFF) #define unpackWARN3(x) (((x) >>16) & 0xFF) #define unpackWARN4(x) (((x) >>24) & 0xFF) #define ckDEAD(x) \ ( ! specialWARN(PL_curcop->cop_warnings) && \ ( isWARNf_on(PL_curcop->cop_warnings, WARN_ALL) || \ isWARNf_on(PL_curcop->cop_warnings, unpackWARN1(x)) || \ isWARNf_on(PL_curcop->cop_warnings, unpackWARN2(x)) || \ isWARNf_on(PL_curcop->cop_warnings, unpackWARN3(x)) || \ isWARNf_on(PL_curcop->cop_warnings, unpackWARN4(x)))) /* end of file warnings.h */ /* ex: set ro: */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
EXTERN.h | File | 1.77 KB | 0644 |
|
INTERN.h | File | 1.47 KB | 0644 |
|
XSUB.h | File | 21.27 KB | 0644 |
|
av.h | File | 2.91 KB | 0644 |
|
bitcount.h | File | 850 B | 0644 |
|
charclass_invlists.h | File | 9.55 KB | 0644 |
|
config.h | File | 145.13 KB | 0644 |
|
cop.h | File | 39.64 KB | 0644 |
|
cv.h | File | 9.22 KB | 0644 |
|
dosish.h | File | 5.95 KB | 0644 |
|
embed.h | File | 84.98 KB | 0644 |
|
embedvar.h | File | 19.08 KB | 0644 |
|
fakesdio.h | File | 3.24 KB | 0644 |
|
fakethr.h | File | 1.92 KB | 0644 |
|
feature.h | File | 3.69 KB | 0644 |
|
form.h | File | 1.43 KB | 0644 |
|
git_version.h | File | 357 B | 0644 |
|
gv.h | File | 10.02 KB | 0644 |
|
handy.h | File | 53.01 KB | 0644 |
|
hv.h | File | 23.67 KB | 0644 |
|
intrpvar.h | File | 27.19 KB | 0644 |
|
iperlsys.h | File | 47.63 KB | 0644 |
|
keywords.h | File | 6.45 KB | 0644 |
|
l1_char_class_tab.h | File | 31.86 KB | 0644 |
|
libperl.so | File | 1.57 MB | 0755 |
|
malloc_ctl.h | File | 1.48 KB | 0644 |
|
metaconfig.h | File | 899 B | 0644 |
|
mg.h | File | 2.37 KB | 0644 |
|
mg_data.h | File | 4.84 KB | 0644 |
|
mg_raw.h | File | 4.21 KB | 0644 |
|
mg_vtable.h | File | 9.14 KB | 0644 |
|
mydtrace.h | File | 1.81 KB | 0644 |
|
nostdio.h | File | 3.37 KB | 0644 |
|
op.h | File | 32.07 KB | 0644 |
|
op_reg_common.h | File | 4.33 KB | 0644 |
|
opcode.h | File | 46.2 KB | 0644 |
|
opnames.h | File | 8.05 KB | 0644 |
|
overload.h | File | 2.98 KB | 0644 |
|
pad.h | File | 12.77 KB | 0644 |
|
parser.h | File | 5.38 KB | 0644 |
|
patchlevel.h | File | 8.05 KB | 0644 |
|
perl.h | File | 168.47 KB | 0644 |
|
perlapi.h | File | 5.34 KB | 0644 |
|
perldtrace.h | File | 1.77 KB | 0644 |
|
perlio.h | File | 10.83 KB | 0644 |
|
perliol.h | File | 13.21 KB | 0644 |
|
perlsdio.h | File | 4.92 KB | 0644 |
|
perlsfio.h | File | 2.64 KB | 0644 |
|
perlvars.h | File | 8.49 KB | 0644 |
|
perly.h | File | 5.67 KB | 0644 |
|
pp.h | File | 18.37 KB | 0644 |
|
pp_proto.h | File | 10.61 KB | 0644 |
|
proto.h | File | 259.12 KB | 0644 |
|
reentr.h | File | 79.05 KB | 0644 |
|
regcharclass.h | File | 30.79 KB | 0644 |
|
regcomp.h | File | 32.46 KB | 0644 |
|
regexp.h | File | 28.7 KB | 0644 |
|
regnodes.h | File | 37.97 KB | 0644 |
|
scope.h | File | 9.64 KB | 0644 |
|
sv.h | File | 72.44 KB | 0644 |
|
thread.h | File | 11.67 KB | 0644 |
|
time64.h | File | 1.4 KB | 0644 |
|
time64_config.h | File | 1.98 KB | 0644 |
|
uconfig.h | File | 144.66 KB | 0644 |
|
unixish.h | File | 4.48 KB | 0644 |
|
utf8.h | File | 24.78 KB | 0644 |
|
utfebcdic.h | File | 34.07 KB | 0644 |
|
util.h | File | 1.71 KB | 0644 |
|
uudmap.h | File | 904 B | 0644 |
|
warnings.h | File | 4.23 KB | 0644 |
|