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