This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove redundant targets from Win32 Makefile
[perl5.git] / cop.h
CommitLineData
a0d0e21e 1/* cop.h
79072805 2 *
4bb101f2
JH
3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, by Larry Wall and others
79072805
LW
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
a3985cdc 9 * Control ops (cops) are one of the three ops OP_NEXTSTATE, OP_DBSTATE,
3ffa1527
JH
10 * and OP_SETSTATE that (loosely speaking) are separate statements.
11 * They hold information important for lexical state and error reporting.
12 * At run time, PL_curcop is set to point to the most recently executed cop,
a3985cdc 13 * and thus can be used to determine our current state.
79072805
LW
14 */
15
79072805
LW
16struct cop {
17 BASEOP
a0d0e21e 18 char * cop_label; /* label for this construct */
57843af0 19#ifdef USE_ITHREADS
11faa288 20 char * cop_stashpv; /* package line was compiled in */
57843af0
GS
21 char * cop_file; /* file name the following line # is from */
22#else
11faa288 23 HV * cop_stash; /* package line was compiled in */
79072805 24 GV * cop_filegv; /* file the following line # is from */
57843af0 25#endif
a0d0e21e
LW
26 U32 cop_seq; /* parse sequence number */
27 I32 cop_arybase; /* array base this line was compiled with */
79072805 28 line_t cop_line; /* line # of this command */
599cee73 29 SV * cop_warnings; /* lexical warnings bitmask */
ac27b0f5 30 SV * cop_io; /* lexical IO defaults */
79072805
LW
31};
32
33#define Nullcop Null(COP*)
34
57843af0
GS
35#ifdef USE_ITHREADS
36# define CopFILE(c) ((c)->cop_file)
37# define CopFILEGV(c) (CopFILE(c) \
38 ? gv_fetchfile(CopFILE(c)) : Nullgv)
083fcd59
JH
39
40 #ifdef NETWARE
41 #define CopFILE_set(c,pv) ((c)->cop_file = savepv(pv))
42 #else
43 #define CopFILE_set(c,pv) ((c)->cop_file = savesharedpv(pv))
44 #endif
45
57843af0
GS
46# define CopFILESV(c) (CopFILE(c) \
47 ? GvSV(gv_fetchfile(CopFILE(c))) : Nullsv)
48# define CopFILEAV(c) (CopFILE(c) \
49 ? GvAV(gv_fetchfile(CopFILE(c))) : Nullav)
57843af0 50# define CopSTASHPV(c) ((c)->cop_stashpv)
083fcd59
JH
51
52 #ifdef NETWARE
53 #define CopSTASHPV_set(c,pv) ((c)->cop_stashpv = ((pv) ? savepv(pv) : Nullch))
54 #else
55 #define CopSTASHPV_set(c,pv) ((c)->cop_stashpv = savesharedpv(pv))
56 #endif
57
11faa288
GS
58# define CopSTASH(c) (CopSTASHPV(c) \
59 ? gv_stashpv(CopSTASHPV(c),GV_ADD) : Nullhv)
7b910cb8 60# define CopSTASH_set(c,hv) CopSTASHPV_set(c, (hv) ? HvNAME(hv) : Nullch)
f4dd75d9 61# define CopSTASH_eq(c,hv) ((hv) \
ed094faf
GS
62 && (CopSTASHPV(c) == HvNAME(hv) \
63 || (CopSTASHPV(c) && HvNAME(hv) \
64 && strEQ(CopSTASHPV(c), HvNAME(hv)))))
083fcd59
JH
65 #ifdef NETWARE
66 #define CopSTASH_free(c) SAVECOPSTASH_FREE(c)
67 #else
68 #define CopSTASH_free(c) PerlMemShared_free(CopSTASHPV(c))
69 #endif
70
71 #ifdef NETWARE
72 #define CopFILE_free(c) SAVECOPFILE_FREE(c)
73 #else
74 #define CopFILE_free(c) (PerlMemShared_free(CopFILE(c)),(CopFILE(c) = Nullch))
75 #endif
57843af0
GS
76#else
77# define CopFILEGV(c) ((c)->cop_filegv)
f4dd75d9
GS
78# define CopFILEGV_set(c,gv) ((c)->cop_filegv = (GV*)SvREFCNT_inc(gv))
79# define CopFILE_set(c,pv) CopFILEGV_set((c), gv_fetchfile(pv))
57843af0
GS
80# define CopFILESV(c) (CopFILEGV(c) ? GvSV(CopFILEGV(c)) : Nullsv)
81# define CopFILEAV(c) (CopFILEGV(c) ? GvAV(CopFILEGV(c)) : Nullav)
82# define CopFILE(c) (CopFILESV(c) ? SvPVX(CopFILESV(c)) : Nullch)
83# define CopSTASH(c) ((c)->cop_stash)
f4dd75d9 84# define CopSTASH_set(c,hv) ((c)->cop_stash = (hv))
57843af0 85# define CopSTASHPV(c) (CopSTASH(c) ? HvNAME(CopSTASH(c)) : Nullch)
f4dd75d9
GS
86 /* cop_stash is not refcounted */
87# define CopSTASHPV_set(c,pv) CopSTASH_set((c), gv_stashpv(pv,GV_ADD))
88# define CopSTASH_eq(c,hv) (CopSTASH(c) == (hv))
05ec9bb3
NIS
89# define CopSTASH_free(c)
90# define CopFILE_free(c) (SvREFCNT_dec(CopFILEGV(c)),(CopFILEGV(c) = Nullgv))
91
57843af0
GS
92#endif /* USE_ITHREADS */
93
ed094faf 94#define CopSTASH_ne(c,hv) (!CopSTASH_eq(c,hv))
cc49e20b 95#define CopLINE(c) ((c)->cop_line)
57843af0
GS
96#define CopLINE_inc(c) (++CopLINE(c))
97#define CopLINE_dec(c) (--CopLINE(c))
98#define CopLINE_set(c,l) (CopLINE(c) = (l))
cc49e20b 99
248c2a4d
CN
100/* OutCopFILE() is CopFILE for output (caller, die, warn, etc.) */
101#ifdef MACOS_TRADITIONAL
102# define OutCopFILE(c) MacPerl_MPWFileName(CopFILE(c))
103#else
104# define OutCopFILE(c) CopFILE(c)
105#endif
106
79072805
LW
107/*
108 * Here we have some enormously heavy (or at least ponderous) wizardry.
109 */
110
111/* subroutine context */
112struct block_sub {
113 CV * cv;
114 GV * gv;
463ee0b2 115 GV * dfoutgv;
79072805
LW
116 AV * savearray;
117 AV * argarray;
b8f55b69 118 long olddepth;
79072805 119 U8 hasargs;
cd06dffe 120 U8 lval; /* XXX merge lval and hasargs? */
f3548bdc 121 PAD *oldcomppad;
79072805
LW
122};
123
ee98a1d6
DM
124/* base for the next two macros. Don't use directly */
125#define PUSHSUB_BASE(cx) \
79072805 126 cx->blk_sub.cv = cv; \
b8f55b69 127 cx->blk_sub.olddepth = CvDEPTH(cv); \
ee98a1d6
DM
128 cx->blk_sub.hasargs = hasargs;
129
130#define PUSHSUB(cx) \
131 PUSHSUB_BASE(cx) \
cd06dffe
GS
132 cx->blk_sub.lval = PL_op->op_private & \
133 (OPpLVAL_INTRO|OPpENTERSUB_INARGS);
79072805 134
ee98a1d6
DM
135/* variant for use by OP_DBSTATE, where op_private holds hint bits */
136#define PUSHSUB_DB(cx) \
137 PUSHSUB_BASE(cx) \
138 cx->blk_sub.lval = 0;
139
140
79072805
LW
141#define PUSHFORMAT(cx) \
142 cx->blk_sub.cv = cv; \
143 cx->blk_sub.gv = gv; \
4633a7c4 144 cx->blk_sub.hasargs = 0; \
3280af22 145 cx->blk_sub.dfoutgv = PL_defoutgv; \
4633a7c4 146 (void)SvREFCNT_inc(cx->blk_sub.dfoutgv)
79072805 147
3db8f154 148#define POP_SAVEARRAY() \
6d4ff0d2 149 STMT_START { \
3280af22 150 SvREFCNT_dec(GvAV(PL_defgv)); \
a8bba7fa 151 GvAV(PL_defgv) = cx->blk_sub.savearray; \
6d4ff0d2 152 } STMT_END
6d4ff0d2 153
ecf8e9dd 154/* junk in @_ spells trouble when cloning CVs and in pp_caller(), so don't
8e09340b
GS
155 * leave any (a fast av_clear(ary), basically) */
156#define CLEAR_ARGARRAY(ary) \
157 STMT_START { \
158 AvMAX(ary) += AvARRAY(ary) - AvALLOC(ary); \
159 SvPVX(ary) = (char*)AvALLOC(ary); \
160 AvFILLp(ary) = -1; \
161 } STMT_END
7766f137 162
b0d9ce38
GS
163#define POPSUB(cx,sv) \
164 STMT_START { \
a8bba7fa 165 if (cx->blk_sub.hasargs) { \
7766f137 166 POP_SAVEARRAY(); \
d8b46c1b 167 /* abandon @_ if it got reified */ \
a8bba7fa
GS
168 if (AvREAL(cx->blk_sub.argarray)) { \
169 SSize_t fill = AvFILLp(cx->blk_sub.argarray); \
170 SvREFCNT_dec(cx->blk_sub.argarray); \
171 cx->blk_sub.argarray = newAV(); \
172 av_extend(cx->blk_sub.argarray, fill); \
173 AvFLAGS(cx->blk_sub.argarray) = AVf_REIFY; \
dd2155a4 174 CX_CURPAD_SV(cx->blk_sub, 0) = (SV*)cx->blk_sub.argarray; \
d8b46c1b 175 } \
7766f137 176 else { \
8e09340b 177 CLEAR_ARGARRAY(cx->blk_sub.argarray); \
7766f137 178 } \
79072805 179 } \
b0d9ce38
GS
180 sv = (SV*)cx->blk_sub.cv; \
181 if (sv && (CvDEPTH((CV*)sv) = cx->blk_sub.olddepth)) \
182 sv = Nullsv; \
183 } STMT_END
184
185#define LEAVESUB(sv) \
186 STMT_START { \
187 if (sv) \
188 SvREFCNT_dec(sv); \
189 } STMT_END
79072805
LW
190
191#define POPFORMAT(cx) \
4633a7c4
LW
192 setdefout(cx->blk_sub.dfoutgv); \
193 SvREFCNT_dec(cx->blk_sub.dfoutgv);
79072805
LW
194
195/* eval context */
196struct block_eval {
197 I32 old_in_eval;
198 I32 old_op_type;
0f79a09d 199 SV * old_namesv;
79072805 200 OP * old_eval_root;
748a9306 201 SV * cur_text;
2090ab20 202 CV * cv;
79072805
LW
203};
204
8990e307 205#define PUSHEVAL(cx,n,fgv) \
0f79a09d 206 STMT_START { \
3280af22 207 cx->blk_eval.old_in_eval = PL_in_eval; \
a8bba7fa 208 cx->blk_eval.old_op_type = PL_op->op_type; \
0f79a09d 209 cx->blk_eval.old_namesv = (n ? newSVpv(n,0) : Nullsv); \
a8bba7fa 210 cx->blk_eval.old_eval_root = PL_eval_root; \
0f79a09d 211 cx->blk_eval.cur_text = PL_linestr; \
2090ab20 212 cx->blk_eval.cv = Nullcv; /* set by doeval(), as applicable */ \
0f79a09d 213 } STMT_END
79072805
LW
214
215#define POPEVAL(cx) \
0f79a09d 216 STMT_START { \
3280af22 217 PL_in_eval = cx->blk_eval.old_in_eval; \
79072805 218 optype = cx->blk_eval.old_op_type; \
7766f137 219 PL_eval_root = cx->blk_eval.old_eval_root; \
0f79a09d
GS
220 if (cx->blk_eval.old_namesv) \
221 sv_2mortal(cx->blk_eval.old_namesv); \
222 } STMT_END
79072805
LW
223
224/* loop context */
225struct block_loop {
226 char * label;
227 I32 resetsp;
228 OP * redo_op;
229 OP * next_op;
230 OP * last_op;
7766f137
GS
231#ifdef USE_ITHREADS
232 void * iterdata;
f3548bdc 233 PAD *oldcomppad;
7766f137 234#else
79072805 235 SV ** itervar;
7766f137 236#endif
79072805 237 SV * itersave;
5f05dabc 238 SV * iterlval;
79072805 239 AV * iterary;
89ea2908
GA
240 IV iterix;
241 IV itermax;
79072805
LW
242};
243
7766f137
GS
244#ifdef USE_ITHREADS
245# define CxITERVAR(c) \
246 ((c)->blk_loop.iterdata \
247 ? (CxPADLOOP(cx) \
dd2155a4
DM
248 ? &CX_CURPAD_SV( (c)->blk_loop, \
249 INT2PTR(PADOFFSET, (c)->blk_loop.iterdata)) \
7766f137
GS
250 : &GvSV((GV*)(c)->blk_loop.iterdata)) \
251 : (SV**)NULL)
252# define CX_ITERDATA_SET(cx,idata) \
dd2155a4 253 CX_CURPAD_SAVE(cx->blk_loop); \
155aba94 254 if ((cx->blk_loop.iterdata = (idata))) \
d10edb75
KC
255 cx->blk_loop.itersave = SvREFCNT_inc(*CxITERVAR(cx)); \
256 else \
257 cx->blk_loop.itersave = Nullsv;
7766f137
GS
258#else
259# define CxITERVAR(c) ((c)->blk_loop.itervar)
260# define CX_ITERDATA_SET(cx,ivar) \
155aba94 261 if ((cx->blk_loop.itervar = (SV**)(ivar))) \
d10edb75
KC
262 cx->blk_loop.itersave = SvREFCNT_inc(*CxITERVAR(cx)); \
263 else \
264 cx->blk_loop.itersave = Nullsv;
7766f137
GS
265#endif
266
267#define PUSHLOOP(cx, dat, s) \
38a230cb
GS
268 cx->blk_loop.label = PL_curcop->cop_label; \
269 cx->blk_loop.resetsp = s - PL_stack_base; \
79072805
LW
270 cx->blk_loop.redo_op = cLOOP->op_redoop; \
271 cx->blk_loop.next_op = cLOOP->op_nextop; \
272 cx->blk_loop.last_op = cLOOP->op_lastop; \
44a8e56a 273 cx->blk_loop.iterlval = Nullsv; \
274 cx->blk_loop.iterary = Nullav; \
7766f137
GS
275 cx->blk_loop.iterix = -1; \
276 CX_ITERDATA_SET(cx,dat);
79072805
LW
277
278#define POPLOOP(cx) \
a8bba7fa 279 SvREFCNT_dec(cx->blk_loop.iterlval); \
7766f137
GS
280 if (CxITERVAR(cx)) { \
281 SV **s_v_p = CxITERVAR(cx); \
282 sv_2mortal(*s_v_p); \
283 *s_v_p = cx->blk_loop.itersave; \
44a8e56a 284 } \
a8bba7fa
GS
285 if (cx->blk_loop.iterary && cx->blk_loop.iterary != PL_curstack)\
286 SvREFCNT_dec(cx->blk_loop.iterary);
79072805
LW
287
288/* context common to subroutines, evals and loops */
289struct block {
290 I32 blku_oldsp; /* stack pointer to copy stuff down to */
291 COP * blku_oldcop; /* old curcop pointer */
292 I32 blku_oldretsp; /* return stack index */
293 I32 blku_oldmarksp; /* mark stack index */
294 I32 blku_oldscopesp; /* scope stack index */
295 PMOP * blku_oldpm; /* values of pattern match vars */
296 U8 blku_gimme; /* is this block running in list context? */
297
298 union {
299 struct block_sub blku_sub;
300 struct block_eval blku_eval;
301 struct block_loop blku_loop;
302 } blk_u;
303};
304#define blk_oldsp cx_u.cx_blk.blku_oldsp
305#define blk_oldcop cx_u.cx_blk.blku_oldcop
306#define blk_oldretsp cx_u.cx_blk.blku_oldretsp
307#define blk_oldmarksp cx_u.cx_blk.blku_oldmarksp
308#define blk_oldscopesp cx_u.cx_blk.blku_oldscopesp
309#define blk_oldpm cx_u.cx_blk.blku_oldpm
310#define blk_gimme cx_u.cx_blk.blku_gimme
311#define blk_sub cx_u.cx_blk.blk_u.blku_sub
312#define blk_eval cx_u.cx_blk.blk_u.blku_eval
313#define blk_loop cx_u.cx_blk.blk_u.blku_loop
314
315/* Enter a block. */
8990e307 316#define PUSHBLOCK(cx,t,sp) CXINC, cx = &cxstack[cxstack_ix], \
79072805 317 cx->cx_type = t, \
3280af22
NIS
318 cx->blk_oldsp = sp - PL_stack_base, \
319 cx->blk_oldcop = PL_curcop, \
1aff0e91 320 cx->blk_oldmarksp = PL_markstack_ptr - PL_markstack, \
3280af22 321 cx->blk_oldscopesp = PL_scopestack_ix, \
1aff0e91 322 cx->blk_oldretsp = PL_retstack_ix, \
3280af22 323 cx->blk_oldpm = PL_curpm, \
eb160463 324 cx->blk_gimme = (U8)gimme; \
bf49b057 325 DEBUG_l( PerlIO_printf(Perl_debug_log, "Entering block %ld, type %s\n", \
1aff0e91 326 (long)cxstack_ix, PL_block_type[CxTYPE(cx)]); )
79072805
LW
327
328/* Exit a block (RETURN and LAST). */
a0d0e21e 329#define POPBLOCK(cx,pm) cx = &cxstack[cxstack_ix--], \
1aff0e91 330 newsp = PL_stack_base + cx->blk_oldsp, \
3280af22
NIS
331 PL_curcop = cx->blk_oldcop, \
332 PL_markstack_ptr = PL_markstack + cx->blk_oldmarksp, \
333 PL_scopestack_ix = cx->blk_oldscopesp, \
334 PL_retstack_ix = cx->blk_oldretsp, \
335 pm = cx->blk_oldpm, \
336 gimme = cx->blk_gimme; \
b4ab917c 337 DEBUG_SCOPE("POPBLOCK"); \
bf49b057 338 DEBUG_l( PerlIO_printf(Perl_debug_log, "Leaving block %ld, type %s\n", \
22c35a8c 339 (long)cxstack_ix+1,PL_block_type[CxTYPE(cx)]); )
79072805
LW
340
341/* Continue a block elsewhere (NEXT and REDO). */
3280af22 342#define TOPBLOCK(cx) cx = &cxstack[cxstack_ix], \
1aff0e91 343 PL_stack_sp = PL_stack_base + cx->blk_oldsp, \
3280af22
NIS
344 PL_markstack_ptr = PL_markstack + cx->blk_oldmarksp, \
345 PL_scopestack_ix = cx->blk_oldscopesp, \
2158dd9b 346 PL_retstack_ix = cx->blk_oldretsp, \
b4ab917c
DM
347 PL_curpm = cx->blk_oldpm; \
348 DEBUG_SCOPE("TOPBLOCK");
79072805
LW
349
350/* substitution context */
351struct subst {
352 I32 sbu_iters;
353 I32 sbu_maxiters;
22e551b9 354 I32 sbu_rflags;
4633a7c4 355 I32 sbu_oldsave;
71be2cbc 356 bool sbu_once;
357 bool sbu_rxtainted;
79072805
LW
358 char * sbu_orig;
359 SV * sbu_dstr;
360 SV * sbu_targ;
361 char * sbu_s;
362 char * sbu_m;
363 char * sbu_strend;
c90c0ff4 364 void * sbu_rxres;
c07a80fd 365 REGEXP * sbu_rx;
79072805
LW
366};
367#define sb_iters cx_u.cx_subst.sbu_iters
368#define sb_maxiters cx_u.cx_subst.sbu_maxiters
22e551b9 369#define sb_rflags cx_u.cx_subst.sbu_rflags
4633a7c4 370#define sb_oldsave cx_u.cx_subst.sbu_oldsave
71be2cbc 371#define sb_once cx_u.cx_subst.sbu_once
372#define sb_rxtainted cx_u.cx_subst.sbu_rxtainted
79072805
LW
373#define sb_orig cx_u.cx_subst.sbu_orig
374#define sb_dstr cx_u.cx_subst.sbu_dstr
375#define sb_targ cx_u.cx_subst.sbu_targ
376#define sb_s cx_u.cx_subst.sbu_s
377#define sb_m cx_u.cx_subst.sbu_m
378#define sb_strend cx_u.cx_subst.sbu_strend
c90c0ff4 379#define sb_rxres cx_u.cx_subst.sbu_rxres
c07a80fd 380#define sb_rx cx_u.cx_subst.sbu_rx
79072805
LW
381
382#define PUSHSUBST(cx) CXINC, cx = &cxstack[cxstack_ix], \
383 cx->sb_iters = iters, \
384 cx->sb_maxiters = maxiters, \
22e551b9 385 cx->sb_rflags = r_flags, \
4633a7c4 386 cx->sb_oldsave = oldsave, \
71be2cbc 387 cx->sb_once = once, \
388 cx->sb_rxtainted = rxtainted, \
79072805
LW
389 cx->sb_orig = orig, \
390 cx->sb_dstr = dstr, \
391 cx->sb_targ = targ, \
392 cx->sb_s = s, \
393 cx->sb_m = m, \
394 cx->sb_strend = strend, \
c90c0ff4 395 cx->sb_rxres = Null(void*), \
c07a80fd 396 cx->sb_rx = rx, \
c90c0ff4 397 cx->cx_type = CXt_SUBST; \
398 rxres_save(&cx->sb_rxres, rx)
79072805 399
c90c0ff4 400#define POPSUBST(cx) cx = &cxstack[cxstack_ix--]; \
401 rxres_free(&cx->sb_rxres)
79072805
LW
402
403struct context {
6b35e009 404 U32 cx_type; /* what kind of context this is */
79072805
LW
405 union {
406 struct block cx_blk;
407 struct subst cx_subst;
408 } cx_u;
409};
6b35e009
GS
410
411#define CXTYPEMASK 0xff
79072805
LW
412#define CXt_NULL 0
413#define CXt_SUB 1
414#define CXt_EVAL 2
415#define CXt_LOOP 3
416#define CXt_SUBST 4
417#define CXt_BLOCK 5
7766f137 418#define CXt_FORMAT 6
79072805 419
6b35e009
GS
420/* private flags for CXt_EVAL */
421#define CXp_REAL 0x00000100 /* truly eval'', not a lookalike */
1d76a5c3 422#define CXp_TRYBLOCK 0x00000200 /* eval{}, not eval'' or similar */
6b35e009 423
7766f137
GS
424#ifdef USE_ITHREADS
425/* private flags for CXt_LOOP */
426# define CXp_PADVAR 0x00000100 /* itervar lives on pad, iterdata
427 has pad offset; if not set,
428 iterdata holds GV* */
429# define CxPADLOOP(c) (((c)->cx_type & (CXt_LOOP|CXp_PADVAR)) \
430 == (CXt_LOOP|CXp_PADVAR))
431#endif
432
6b35e009 433#define CxTYPE(c) ((c)->cx_type & CXTYPEMASK)
7766f137
GS
434#define CxREALEVAL(c) (((c)->cx_type & (CXt_EVAL|CXp_REAL)) \
435 == (CXt_EVAL|CXp_REAL))
1d76a5c3
GS
436#define CxTRYBLOCK(c) (((c)->cx_type & (CXt_EVAL|CXp_TRYBLOCK)) \
437 == (CXt_EVAL|CXp_TRYBLOCK))
6b35e009 438
79072805
LW
439#define CXINC (cxstack_ix < cxstack_max ? ++cxstack_ix : (cxstack_ix = cxinc()))
440
ccfc67b7
JH
441/*
442=head1 "Gimme" Values
443*/
954c1994
GS
444
445/*
446=for apidoc AmU||G_SCALAR
447Used to indicate scalar context. See C<GIMME_V>, C<GIMME>, and
448L<perlcall>.
449
450=for apidoc AmU||G_ARRAY
91e74348 451Used to indicate list context. See C<GIMME_V>, C<GIMME> and
954c1994
GS
452L<perlcall>.
453
454=for apidoc AmU||G_VOID
455Used to indicate void context. See C<GIMME_V> and L<perlcall>.
456
457=for apidoc AmU||G_DISCARD
458Indicates that arguments returned from a callback should be discarded. See
459L<perlcall>.
460
461=for apidoc AmU||G_EVAL
462
463Used to force a Perl C<eval> wrapper around a callback. See
464L<perlcall>.
465
466=for apidoc AmU||G_NOARGS
467
468Indicates that no arguments are being sent to a callback. See
469L<perlcall>.
470
471=cut
472*/
473
a0d0e21e
LW
474#define G_SCALAR 0
475#define G_ARRAY 1
54310121 476#define G_VOID 128 /* skip this bit when adding flags below */
79072805 477
864dbfa3 478/* extra flags for Perl_call_* routines */
a0d0e21e
LW
479#define G_DISCARD 2 /* Call FREETMPS. */
480#define G_EVAL 4 /* Assume eval {} around subroutine call. */
481#define G_NOARGS 8 /* Don't construct a @_ array. */
54310121 482#define G_KEEPERR 16 /* Append errors to $@, don't overwrite it */
491527d0 483#define G_NODEBUG 32 /* Disable debugging at toplevel. */
968b3946 484#define G_METHOD 64 /* Calling method. */
e336de0d 485
faef0170
HS
486/* flag bits for PL_in_eval */
487#define EVAL_NULL 0 /* not in an eval */
488#define EVAL_INEVAL 1 /* some enclosing scope is an eval */
489#define EVAL_WARNONLY 2 /* used by yywarn() when calling yyerror() */
864dbfa3 490#define EVAL_KEEPERR 4 /* set by Perl_call_sv if G_KEEPERR */
6dc8a9e4 491#define EVAL_INREQUIRE 8 /* The code is being required. */
faef0170 492
e336de0d
GS
493/* Support for switching (stack and block) contexts.
494 * This ensures magic doesn't invalidate local stack and cx pointers.
495 */
496
e788e7d3
GS
497#define PERLSI_UNKNOWN -1
498#define PERLSI_UNDEF 0
499#define PERLSI_MAIN 1
500#define PERLSI_MAGIC 2
501#define PERLSI_SORT 3
502#define PERLSI_SIGNAL 4
503#define PERLSI_OVERLOAD 5
504#define PERLSI_DESTROY 6
505#define PERLSI_WARNHOOK 7
506#define PERLSI_DIEHOOK 8
507#define PERLSI_REQUIRE 9
e336de0d
GS
508
509struct stackinfo {
510 AV * si_stack; /* stack for current runlevel */
511 PERL_CONTEXT * si_cxstack; /* context stack for runlevel */
512 I32 si_cxix; /* current context index */
513 I32 si_cxmax; /* maximum allocated index */
514 I32 si_type; /* type of runlevel */
515 struct stackinfo * si_prev;
516 struct stackinfo * si_next;
ce2f7c3b 517 I32 si_markoff; /* offset where markstack begins for us.
e336de0d
GS
518 * currently used only with DEBUGGING,
519 * but not #ifdef-ed for bincompat */
520};
521
522typedef struct stackinfo PERL_SI;
523
3280af22
NIS
524#define cxstack (PL_curstackinfo->si_cxstack)
525#define cxstack_ix (PL_curstackinfo->si_cxix)
526#define cxstack_max (PL_curstackinfo->si_cxmax)
e336de0d
GS
527
528#ifdef DEBUGGING
ce2f7c3b
GS
529# define SET_MARK_OFFSET \
530 PL_curstackinfo->si_markoff = PL_markstack_ptr - PL_markstack
e336de0d 531#else
ce2f7c3b 532# define SET_MARK_OFFSET NOOP
e336de0d
GS
533#endif
534
d3acc0f7 535#define PUSHSTACKi(type) \
e336de0d 536 STMT_START { \
3280af22 537 PERL_SI *next = PL_curstackinfo->si_next; \
e336de0d
GS
538 if (!next) { \
539 next = new_stackinfo(32, 2048/sizeof(PERL_CONTEXT) - 1); \
3280af22
NIS
540 next->si_prev = PL_curstackinfo; \
541 PL_curstackinfo->si_next = next; \
e336de0d
GS
542 } \
543 next->si_type = type; \
544 next->si_cxix = -1; \
545 AvFILLp(next->si_stack) = 0; \
3280af22
NIS
546 SWITCHSTACK(PL_curstack,next->si_stack); \
547 PL_curstackinfo = next; \
ce2f7c3b 548 SET_MARK_OFFSET; \
e336de0d
GS
549 } STMT_END
550
e788e7d3 551#define PUSHSTACK PUSHSTACKi(PERLSI_UNKNOWN)
d3acc0f7 552
3095d977
GS
553/* POPSTACK works with PL_stack_sp, so it may need to be bracketed by
554 * PUTBACK/SPAGAIN to flush/refresh any local SP that may be active */
d3acc0f7 555#define POPSTACK \
e336de0d 556 STMT_START { \
39644a26 557 dSP; \
3280af22 558 PERL_SI *prev = PL_curstackinfo->si_prev; \
e336de0d 559 if (!prev) { \
bf49b057 560 PerlIO_printf(Perl_error_log, "panic: POPSTACK\n"); \
e336de0d
GS
561 my_exit(1); \
562 } \
3280af22 563 SWITCHSTACK(PL_curstack,prev->si_stack); \
e336de0d 564 /* don't free prev here, free them all at the END{} */ \
3280af22 565 PL_curstackinfo = prev; \
e336de0d
GS
566 } STMT_END
567
568#define POPSTACK_TO(s) \
569 STMT_START { \
3280af22 570 while (PL_curstack != s) { \
bac4b2ad 571 dounwind(-1); \
d3acc0f7 572 POPSTACK; \
bac4b2ad 573 } \
e336de0d 574 } STMT_END