3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 * 2000, 2001, 2002, 2003, by Larry Wall and others
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.
9 * Control ops (cops) are one of the three ops OP_NEXTSTATE, OP_DBSTATE,
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,
13 * and thus can be used to determine our current state.
18 char * cop_label; /* label for this construct */
20 char * cop_stashpv; /* package line was compiled in */
21 char * cop_file; /* file name the following line # is from */
23 HV * cop_stash; /* package line was compiled in */
24 GV * cop_filegv; /* file the following line # is from */
26 U32 cop_seq; /* parse sequence number */
27 I32 cop_arybase; /* array base this line was compiled with */
28 line_t cop_line; /* line # of this command */
29 SV * cop_warnings; /* lexical warnings bitmask */
30 SV * cop_io; /* lexical IO defaults */
33 #define Nullcop Null(COP*)
36 # define CopFILE(c) ((c)->cop_file)
37 # define CopFILEGV(c) (CopFILE(c) \
38 ? gv_fetchfile(CopFILE(c)) : Nullgv)
41 #define CopFILE_set(c,pv) ((c)->cop_file = savepv(pv))
43 #define CopFILE_set(c,pv) ((c)->cop_file = savesharedpv(pv))
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)
50 # define CopSTASHPV(c) ((c)->cop_stashpv)
53 #define CopSTASHPV_set(c,pv) ((c)->cop_stashpv = ((pv) ? savepv(pv) : Nullch))
55 #define CopSTASHPV_set(c,pv) ((c)->cop_stashpv = savesharedpv(pv))
58 # define CopSTASH(c) (CopSTASHPV(c) \
59 ? gv_stashpv(CopSTASHPV(c),GV_ADD) : Nullhv)
60 # define CopSTASH_set(c,hv) CopSTASHPV_set(c, (hv) ? HvNAME(hv) : Nullch)
61 # define CopSTASH_eq(c,hv) ((hv) \
62 && (CopSTASHPV(c) == HvNAME(hv) \
63 || (CopSTASHPV(c) && HvNAME(hv) \
64 && strEQ(CopSTASHPV(c), HvNAME(hv)))))
66 #define CopSTASH_free(c) SAVECOPSTASH_FREE(c)
68 #define CopSTASH_free(c) PerlMemShared_free(CopSTASHPV(c))
72 #define CopFILE_free(c) SAVECOPFILE_FREE(c)
74 #define CopFILE_free(c) (PerlMemShared_free(CopFILE(c)),(CopFILE(c) = Nullch))
77 # define CopFILEGV(c) ((c)->cop_filegv)
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))
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)
84 # define CopSTASH_set(c,hv) ((c)->cop_stash = (hv))
85 # define CopSTASHPV(c) (CopSTASH(c) ? HvNAME(CopSTASH(c)) : Nullch)
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))
89 # define CopSTASH_free(c)
90 # define CopFILE_free(c) (SvREFCNT_dec(CopFILEGV(c)),(CopFILEGV(c) = Nullgv))
92 #endif /* USE_ITHREADS */
94 #define CopSTASH_ne(c,hv) (!CopSTASH_eq(c,hv))
95 #define CopLINE(c) ((c)->cop_line)
96 #define CopLINE_inc(c) (++CopLINE(c))
97 #define CopLINE_dec(c) (--CopLINE(c))
98 #define CopLINE_set(c,l) (CopLINE(c) = (l))
100 /* OutCopFILE() is CopFILE for output (caller, die, warn, etc.) */
101 #ifdef MACOS_TRADITIONAL
102 # define OutCopFILE(c) MacPerl_MPWFileName(CopFILE(c))
104 # define OutCopFILE(c) CopFILE(c)
108 * Here we have some enormously heavy (or at least ponderous) wizardry.
111 /* subroutine context */
120 U8 lval; /* XXX merge lval and hasargs? */
124 /* base for the next two macros. Don't use directly */
125 #define PUSHSUB_BASE(cx) \
126 cx->blk_sub.cv = cv; \
127 cx->blk_sub.olddepth = CvDEPTH(cv); \
128 cx->blk_sub.hasargs = hasargs;
130 #define PUSHSUB(cx) \
132 cx->blk_sub.lval = PL_op->op_private & \
133 (OPpLVAL_INTRO|OPpENTERSUB_INARGS);
135 /* variant for use by OP_DBSTATE, where op_private holds hint bits */
136 #define PUSHSUB_DB(cx) \
138 cx->blk_sub.lval = 0;
141 #define PUSHFORMAT(cx) \
142 cx->blk_sub.cv = cv; \
143 cx->blk_sub.gv = gv; \
144 cx->blk_sub.hasargs = 0; \
145 cx->blk_sub.dfoutgv = PL_defoutgv; \
146 (void)SvREFCNT_inc(cx->blk_sub.dfoutgv)
148 #define POP_SAVEARRAY() \
150 SvREFCNT_dec(GvAV(PL_defgv)); \
151 GvAV(PL_defgv) = cx->blk_sub.savearray; \
154 /* junk in @_ spells trouble when cloning CVs and in pp_caller(), so don't
155 * leave any (a fast av_clear(ary), basically) */
156 #define CLEAR_ARGARRAY(ary) \
158 AvMAX(ary) += AvARRAY(ary) - AvALLOC(ary); \
159 SvPVX(ary) = (char*)AvALLOC(ary); \
163 #define POPSUB(cx,sv) \
165 if (cx->blk_sub.hasargs) { \
167 /* abandon @_ if it got reified */ \
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; \
174 CX_CURPAD_SV(cx->blk_sub, 0) = (SV*)cx->blk_sub.argarray; \
177 CLEAR_ARGARRAY(cx->blk_sub.argarray); \
180 sv = (SV*)cx->blk_sub.cv; \
181 if (sv && (CvDEPTH((CV*)sv) = cx->blk_sub.olddepth)) \
185 #define LEAVESUB(sv) \
191 #define POPFORMAT(cx) \
192 setdefout(cx->blk_sub.dfoutgv); \
193 SvREFCNT_dec(cx->blk_sub.dfoutgv);
205 #define PUSHEVAL(cx,n,fgv) \
207 cx->blk_eval.old_in_eval = PL_in_eval; \
208 cx->blk_eval.old_op_type = PL_op->op_type; \
209 cx->blk_eval.old_namesv = (n ? newSVpv(n,0) : Nullsv); \
210 cx->blk_eval.old_eval_root = PL_eval_root; \
211 cx->blk_eval.cur_text = PL_linestr; \
212 cx->blk_eval.cv = Nullcv; /* set by doeval(), as applicable */ \
215 #define POPEVAL(cx) \
217 PL_in_eval = cx->blk_eval.old_in_eval; \
218 optype = cx->blk_eval.old_op_type; \
219 PL_eval_root = cx->blk_eval.old_eval_root; \
220 if (cx->blk_eval.old_namesv) \
221 sv_2mortal(cx->blk_eval.old_namesv); \
245 # define CxITERVAR(c) \
246 ((c)->blk_loop.iterdata \
248 ? &CX_CURPAD_SV( (c)->blk_loop, \
249 INT2PTR(PADOFFSET, (c)->blk_loop.iterdata)) \
250 : &GvSV((GV*)(c)->blk_loop.iterdata)) \
252 # define CX_ITERDATA_SET(cx,idata) \
253 CX_CURPAD_SAVE(cx->blk_loop); \
254 if ((cx->blk_loop.iterdata = (idata))) \
255 cx->blk_loop.itersave = SvREFCNT_inc(*CxITERVAR(cx)); \
257 cx->blk_loop.itersave = Nullsv;
259 # define CxITERVAR(c) ((c)->blk_loop.itervar)
260 # define CX_ITERDATA_SET(cx,ivar) \
261 if ((cx->blk_loop.itervar = (SV**)(ivar))) \
262 cx->blk_loop.itersave = SvREFCNT_inc(*CxITERVAR(cx)); \
264 cx->blk_loop.itersave = Nullsv;
267 #define PUSHLOOP(cx, dat, s) \
268 cx->blk_loop.label = PL_curcop->cop_label; \
269 cx->blk_loop.resetsp = s - PL_stack_base; \
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; \
273 cx->blk_loop.iterlval = Nullsv; \
274 cx->blk_loop.iterary = Nullav; \
275 cx->blk_loop.iterix = -1; \
276 CX_ITERDATA_SET(cx,dat);
278 #define POPLOOP(cx) \
279 SvREFCNT_dec(cx->blk_loop.iterlval); \
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; \
285 if (cx->blk_loop.iterary && cx->blk_loop.iterary != PL_curstack)\
286 SvREFCNT_dec(cx->blk_loop.iterary);
288 /* context common to subroutines, evals and loops */
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? */
299 struct block_sub blku_sub;
300 struct block_eval blku_eval;
301 struct block_loop blku_loop;
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
316 #define PUSHBLOCK(cx,t,sp) CXINC, cx = &cxstack[cxstack_ix], \
318 cx->blk_oldsp = sp - PL_stack_base, \
319 cx->blk_oldcop = PL_curcop, \
320 cx->blk_oldmarksp = PL_markstack_ptr - PL_markstack, \
321 cx->blk_oldscopesp = PL_scopestack_ix, \
322 cx->blk_oldretsp = PL_retstack_ix, \
323 cx->blk_oldpm = PL_curpm, \
324 cx->blk_gimme = (U8)gimme; \
325 DEBUG_l( PerlIO_printf(Perl_debug_log, "Entering block %ld, type %s\n", \
326 (long)cxstack_ix, PL_block_type[CxTYPE(cx)]); )
328 /* Exit a block (RETURN and LAST). */
329 #define POPBLOCK(cx,pm) cx = &cxstack[cxstack_ix--], \
330 newsp = PL_stack_base + cx->blk_oldsp, \
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; \
337 DEBUG_SCOPE("POPBLOCK"); \
338 DEBUG_l( PerlIO_printf(Perl_debug_log, "Leaving block %ld, type %s\n", \
339 (long)cxstack_ix+1,PL_block_type[CxTYPE(cx)]); )
341 /* Continue a block elsewhere (NEXT and REDO). */
342 #define TOPBLOCK(cx) cx = &cxstack[cxstack_ix], \
343 PL_stack_sp = PL_stack_base + cx->blk_oldsp, \
344 PL_markstack_ptr = PL_markstack + cx->blk_oldmarksp, \
345 PL_scopestack_ix = cx->blk_oldscopesp, \
346 PL_retstack_ix = cx->blk_oldretsp, \
347 PL_curpm = cx->blk_oldpm; \
348 DEBUG_SCOPE("TOPBLOCK");
350 /* substitution context */
367 #define sb_iters cx_u.cx_subst.sbu_iters
368 #define sb_maxiters cx_u.cx_subst.sbu_maxiters
369 #define sb_rflags cx_u.cx_subst.sbu_rflags
370 #define sb_oldsave cx_u.cx_subst.sbu_oldsave
371 #define sb_once cx_u.cx_subst.sbu_once
372 #define sb_rxtainted cx_u.cx_subst.sbu_rxtainted
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
379 #define sb_rxres cx_u.cx_subst.sbu_rxres
380 #define sb_rx cx_u.cx_subst.sbu_rx
382 #define PUSHSUBST(cx) CXINC, cx = &cxstack[cxstack_ix], \
383 cx->sb_iters = iters, \
384 cx->sb_maxiters = maxiters, \
385 cx->sb_rflags = r_flags, \
386 cx->sb_oldsave = oldsave, \
387 cx->sb_once = once, \
388 cx->sb_rxtainted = rxtainted, \
389 cx->sb_orig = orig, \
390 cx->sb_dstr = dstr, \
391 cx->sb_targ = targ, \
394 cx->sb_strend = strend, \
395 cx->sb_rxres = Null(void*), \
397 cx->cx_type = CXt_SUBST; \
398 rxres_save(&cx->sb_rxres, rx)
400 #define POPSUBST(cx) cx = &cxstack[cxstack_ix--]; \
401 rxres_free(&cx->sb_rxres)
404 U32 cx_type; /* what kind of context this is */
407 struct subst cx_subst;
411 #define CXTYPEMASK 0xff
420 /* private flags for CXt_EVAL */
421 #define CXp_REAL 0x00000100 /* truly eval'', not a lookalike */
422 #define CXp_TRYBLOCK 0x00000200 /* eval{}, not eval'' or similar */
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))
433 #define CxTYPE(c) ((c)->cx_type & CXTYPEMASK)
434 #define CxREALEVAL(c) (((c)->cx_type & (CXt_EVAL|CXp_REAL)) \
435 == (CXt_EVAL|CXp_REAL))
436 #define CxTRYBLOCK(c) (((c)->cx_type & (CXt_EVAL|CXp_TRYBLOCK)) \
437 == (CXt_EVAL|CXp_TRYBLOCK))
439 #define CXINC (cxstack_ix < cxstack_max ? ++cxstack_ix : (cxstack_ix = cxinc()))
442 =head1 "Gimme" Values
446 =for apidoc AmU||G_SCALAR
447 Used to indicate scalar context. See C<GIMME_V>, C<GIMME>, and
450 =for apidoc AmU||G_ARRAY
451 Used to indicate list context. See C<GIMME_V>, C<GIMME> and
454 =for apidoc AmU||G_VOID
455 Used to indicate void context. See C<GIMME_V> and L<perlcall>.
457 =for apidoc AmU||G_DISCARD
458 Indicates that arguments returned from a callback should be discarded. See
461 =for apidoc AmU||G_EVAL
463 Used to force a Perl C<eval> wrapper around a callback. See
466 =for apidoc AmU||G_NOARGS
468 Indicates that no arguments are being sent to a callback. See
476 #define G_VOID 128 /* skip this bit when adding flags below */
478 /* extra flags for Perl_call_* routines */
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. */
482 #define G_KEEPERR 16 /* Append errors to $@, don't overwrite it */
483 #define G_NODEBUG 32 /* Disable debugging at toplevel. */
484 #define G_METHOD 64 /* Calling method. */
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() */
490 #define EVAL_KEEPERR 4 /* set by Perl_call_sv if G_KEEPERR */
491 #define EVAL_INREQUIRE 8 /* The code is being required. */
493 /* Support for switching (stack and block) contexts.
494 * This ensures magic doesn't invalidate local stack and cx pointers.
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
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;
517 I32 si_markoff; /* offset where markstack begins for us.
518 * currently used only with DEBUGGING,
519 * but not #ifdef-ed for bincompat */
522 typedef struct stackinfo PERL_SI;
524 #define cxstack (PL_curstackinfo->si_cxstack)
525 #define cxstack_ix (PL_curstackinfo->si_cxix)
526 #define cxstack_max (PL_curstackinfo->si_cxmax)
529 # define SET_MARK_OFFSET \
530 PL_curstackinfo->si_markoff = PL_markstack_ptr - PL_markstack
532 # define SET_MARK_OFFSET NOOP
535 #define PUSHSTACKi(type) \
537 PERL_SI *next = PL_curstackinfo->si_next; \
539 next = new_stackinfo(32, 2048/sizeof(PERL_CONTEXT) - 1); \
540 next->si_prev = PL_curstackinfo; \
541 PL_curstackinfo->si_next = next; \
543 next->si_type = type; \
544 next->si_cxix = -1; \
545 AvFILLp(next->si_stack) = 0; \
546 SWITCHSTACK(PL_curstack,next->si_stack); \
547 PL_curstackinfo = next; \
551 #define PUSHSTACK PUSHSTACKi(PERLSI_UNKNOWN)
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 */
558 PERL_SI *prev = PL_curstackinfo->si_prev; \
560 PerlIO_printf(Perl_error_log, "panic: POPSTACK\n"); \
563 SWITCHSTACK(PL_curstack,prev->si_stack); \
564 /* don't free prev here, free them all at the END{} */ \
565 PL_curstackinfo = prev; \
568 #define POPSTACK_TO(s) \
570 while (PL_curstack != s) { \