1 /* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
2 This file is built by warnings.pl
3 Any changes made here will be lost!
7 #define Off(x) ((x) / 8)
8 #define Bit(x) (1 << ((x) % 8))
9 #define IsSet(a, x) ((a)[Off(x)] & Bit(x))
12 #define G_WARN_OFF 0 /* $^W == 0 */
13 #define G_WARN_ON 1 /* -w flag and $^W != 0 */
14 #define G_WARN_ALL_ON 2 /* -W flag */
15 #define G_WARN_ALL_OFF 4 /* -X flag */
16 #define G_WARN_ONCE 8 /* set if 'once' ever enabled */
17 #define G_WARN_ALL_MASK (G_WARN_ALL_ON|G_WARN_ALL_OFF)
19 #define pWARN_STD Nullsv
20 #define pWARN_ALL (Nullsv+1) /* use warnings 'all' */
21 #define pWARN_NONE (Nullsv+2) /* no warnings 'all' */
23 #define specialWARN(x) ((x) == pWARN_STD || (x) == pWARN_ALL || \
26 #define WARN_CLOSURE 1
27 #define WARN_EXITING 2
32 #define WARN_NEWLINE 7
34 #define WARN_UNOPENED 9
36 #define WARN_NUMERIC 11
37 #define WARN_OCTMODE 12
42 #define WARN_OVERFLOW 17
44 #define WARN_PORTABLE 19
45 #define WARN_RECURSION 20
46 #define WARN_REDEFINE 21
47 #define WARN_REGEXP 22
48 #define WARN_SEVERE 23
49 #define WARN_DEBUGGING 24
50 #define WARN_INPLACE 25
51 #define WARN_INTERNAL 26
52 #define WARN_MALLOC 27
53 #define WARN_SIGNAL 28
54 #define WARN_SUBSTR 29
55 #define WARN_SYNTAX 30
56 #define WARN_AMBIGUOUS 31
57 #define WARN_BAREWORD 32
58 #define WARN_DEPRECATED 33
60 #define WARN_PARENTHESIS 35
61 #define WARN_PRECEDENCE 36
62 #define WARN_PRINTF 37
63 #define WARN_PROTOTYPE 38
65 #define WARN_RESERVED 40
66 #define WARN_SEMICOLON 41
68 #define WARN_UNINITIALIZED 43
69 #define WARN_UNPACK 44
76 #define WARN_ALLstring "\125\125\125\125\125\125\125\125\125\125\125\125\125"
77 #define WARN_NONEstring "\0\0\0\0\0\0\0\0\0\0\0\0\0"
79 #define isLEXWARN_on (PL_curcop->cop_warnings != pWARN_STD)
80 #define isLEXWARN_off (PL_curcop->cop_warnings == pWARN_STD)
81 #define isWARN_ONCE (PL_dowarn & (G_WARN_ON|G_WARN_ONCE))
82 #define isWARN_on(c,x) (IsSet(SvPVX(c), 2*(x)))
83 #define isWARNf_on(c,x) (IsSet(SvPVX(c), 2*(x)+1))
86 ( ! specialWARN(PL_curcop->cop_warnings) && \
87 ( isWARNf_on(PL_curcop->cop_warnings, WARN_ALL) || \
88 isWARNf_on(PL_curcop->cop_warnings, x)))
91 ( (isLEXWARN_on && PL_curcop->cop_warnings != pWARN_NONE && \
92 (PL_curcop->cop_warnings == pWARN_ALL || \
93 isWARN_on(PL_curcop->cop_warnings, x) ) ) \
94 || (isLEXWARN_off && PL_dowarn & G_WARN_ON) )
96 #define ckWARN2(x,y) \
97 ( (isLEXWARN_on && PL_curcop->cop_warnings != pWARN_NONE && \
98 (PL_curcop->cop_warnings == pWARN_ALL || \
99 isWARN_on(PL_curcop->cop_warnings, x) || \
100 isWARN_on(PL_curcop->cop_warnings, y) ) ) \
101 || (isLEXWARN_off && PL_dowarn & G_WARN_ON) )
103 #define ckWARN_d(x) \
104 (isLEXWARN_off || PL_curcop->cop_warnings == pWARN_ALL || \
105 (PL_curcop->cop_warnings != pWARN_NONE && \
106 isWARN_on(PL_curcop->cop_warnings, x) ) )
108 #define ckWARN2_d(x,y) \
109 (isLEXWARN_off || PL_curcop->cop_warnings == pWARN_ALL || \
110 (PL_curcop->cop_warnings != pWARN_NONE && \
111 (isWARN_on(PL_curcop->cop_warnings, x) || \
112 isWARN_on(PL_curcop->cop_warnings, y) ) ) )
114 /* end of file warnings.h */