various fixups for windows
[p5sagit/p5-mst-13.2.git] / cop.h
CommitLineData
a0d0e21e 1/* cop.h
79072805 2 *
4eb8286e 3 * Copyright (c) 1991-1999, 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 */
79072805 13 HV * cop_stash; /* package line was compiled in */
14 GV * cop_filegv; /* file the following line # is from */
a0d0e21e 15 U32 cop_seq; /* parse sequence number */
16 I32 cop_arybase; /* array base this line was compiled with */
79072805 17 line_t cop_line; /* line # of this command */
599cee73 18 SV * cop_warnings; /* lexical warnings bitmask */
79072805 19};
20
21#define Nullcop Null(COP*)
22
23/*
24 * Here we have some enormously heavy (or at least ponderous) wizardry.
25 */
26
27/* subroutine context */
28struct block_sub {
29 CV * cv;
30 GV * gv;
463ee0b2 31 GV * dfoutgv;
6d4ff0d2 32#ifndef USE_THREADS
79072805 33 AV * savearray;
6d4ff0d2 34#endif /* USE_THREADS */
79072805 35 AV * argarray;
36 U16 olddepth;
37 U8 hasargs;
cd06dffe 38 U8 lval; /* XXX merge lval and hasargs? */
79072805 39};
40
41#define PUSHSUB(cx) \
42 cx->blk_sub.cv = cv; \
79072805 43 cx->blk_sub.olddepth = CvDEPTH(cv); \
cd06dffe 44 cx->blk_sub.hasargs = hasargs; \
45 cx->blk_sub.lval = PL_op->op_private & \
46 (OPpLVAL_INTRO|OPpENTERSUB_INARGS);
79072805 47
48#define PUSHFORMAT(cx) \
49 cx->blk_sub.cv = cv; \
50 cx->blk_sub.gv = gv; \
4633a7c4 51 cx->blk_sub.hasargs = 0; \
3280af22 52 cx->blk_sub.dfoutgv = PL_defoutgv; \
4633a7c4 53 (void)SvREFCNT_inc(cx->blk_sub.dfoutgv)
79072805 54
55#define POPSUB(cx) \
f86702cc 56 { struct block_sub cxsub; \
57 POPSUB1(cx); \
58 POPSUB2(); }
59
60#define POPSUB1(cx) \
61 cxsub = cx->blk_sub; /* because DESTROY may clobber *cx */
62
6d4ff0d2 63#ifdef USE_THREADS
64#define POPSAVEARRAY() NOOP
65#else
66#define POPSAVEARRAY() \
67 STMT_START { \
3280af22 68 SvREFCNT_dec(GvAV(PL_defgv)); \
69 GvAV(PL_defgv) = cxsub.savearray; \
6d4ff0d2 70 } STMT_END
71#endif /* USE_THREADS */
72
f86702cc 73#define POPSUB2() \
74 if (cxsub.hasargs) { \
6d4ff0d2 75 POPSAVEARRAY(); \
774d564b 76 /* destroy arg array */ \
f86702cc 77 av_clear(cxsub.argarray); \
78 AvREAL_off(cxsub.argarray); \
79072805 79 } \
f86702cc 80 if (cxsub.cv) { \
81 if (!(CvDEPTH(cxsub.cv) = cxsub.olddepth)) \
82 SvREFCNT_dec(cxsub.cv); \
79072805 83 }
84
85#define POPFORMAT(cx) \
4633a7c4 86 setdefout(cx->blk_sub.dfoutgv); \
87 SvREFCNT_dec(cx->blk_sub.dfoutgv);
79072805 88
89/* eval context */
90struct block_eval {
91 I32 old_in_eval;
92 I32 old_op_type;
93 char * old_name;
94 OP * old_eval_root;
748a9306 95 SV * cur_text;
79072805 96};
97
8990e307 98#define PUSHEVAL(cx,n,fgv) \
3280af22 99 cx->blk_eval.old_in_eval = PL_in_eval; \
533c011a 100 cx->blk_eval.old_op_type = PL_op->op_type; \
79072805 101 cx->blk_eval.old_name = n; \
3280af22 102 cx->blk_eval.old_eval_root = PL_eval_root; \
103 cx->blk_eval.cur_text = PL_linestr;
79072805 104
105#define POPEVAL(cx) \
3280af22 106 PL_in_eval = cx->blk_eval.old_in_eval; \
79072805 107 optype = cx->blk_eval.old_op_type; \
3280af22 108 PL_eval_root = cx->blk_eval.old_eval_root;
79072805 109
110/* loop context */
111struct block_loop {
112 char * label;
113 I32 resetsp;
114 OP * redo_op;
115 OP * next_op;
116 OP * last_op;
117 SV ** itervar;
118 SV * itersave;
5f05dabc 119 SV * iterlval;
79072805 120 AV * iterary;
89ea2908 121 IV iterix;
122 IV itermax;
79072805 123};
124
125#define PUSHLOOP(cx, ivar, s) \
3280af22 126 cx->blk_loop.label = PL_curcop->cop_label; \
127 cx->blk_loop.resetsp = s - PL_stack_base; \
79072805 128 cx->blk_loop.redo_op = cLOOP->op_redoop; \
129 cx->blk_loop.next_op = cLOOP->op_nextop; \
130 cx->blk_loop.last_op = cLOOP->op_lastop; \
7a4c00b4 131 if (cx->blk_loop.itervar = (ivar)) \
44a8e56a 132 cx->blk_loop.itersave = SvREFCNT_inc(*cx->blk_loop.itervar);\
133 cx->blk_loop.iterlval = Nullsv; \
134 cx->blk_loop.iterary = Nullav; \
135 cx->blk_loop.iterix = -1;
79072805 136
137#define POPLOOP(cx) \
f86702cc 138 { struct block_loop cxloop; \
139 POPLOOP1(cx); \
140 POPLOOP2(); }
141
142#define POPLOOP1(cx) \
4fdae800 143 cxloop = cx->blk_loop; /* because DESTROY may clobber *cx */ \
3280af22 144 newsp = PL_stack_base + cxloop.resetsp;
f86702cc 145
146#define POPLOOP2() \
f86702cc 147 SvREFCNT_dec(cxloop.iterlval); \
148 if (cxloop.itervar) { \
8bb77e1d 149 sv_2mortal(*cxloop.itervar); \
f86702cc 150 *cxloop.itervar = cxloop.itersave; \
44a8e56a 151 } \
3280af22 152 if (cxloop.iterary && cxloop.iterary != PL_curstack) \
f86702cc 153 SvREFCNT_dec(cxloop.iterary);
79072805 154
155/* context common to subroutines, evals and loops */
156struct block {
157 I32 blku_oldsp; /* stack pointer to copy stuff down to */
158 COP * blku_oldcop; /* old curcop pointer */
159 I32 blku_oldretsp; /* return stack index */
160 I32 blku_oldmarksp; /* mark stack index */
161 I32 blku_oldscopesp; /* scope stack index */
162 PMOP * blku_oldpm; /* values of pattern match vars */
163 U8 blku_gimme; /* is this block running in list context? */
164
165 union {
166 struct block_sub blku_sub;
167 struct block_eval blku_eval;
168 struct block_loop blku_loop;
169 } blk_u;
170};
171#define blk_oldsp cx_u.cx_blk.blku_oldsp
172#define blk_oldcop cx_u.cx_blk.blku_oldcop
173#define blk_oldretsp cx_u.cx_blk.blku_oldretsp
174#define blk_oldmarksp cx_u.cx_blk.blku_oldmarksp
175#define blk_oldscopesp cx_u.cx_blk.blku_oldscopesp
176#define blk_oldpm cx_u.cx_blk.blku_oldpm
177#define blk_gimme cx_u.cx_blk.blku_gimme
178#define blk_sub cx_u.cx_blk.blk_u.blku_sub
179#define blk_eval cx_u.cx_blk.blk_u.blku_eval
180#define blk_loop cx_u.cx_blk.blk_u.blku_loop
181
182/* Enter a block. */
8990e307 183#define PUSHBLOCK(cx,t,sp) CXINC, cx = &cxstack[cxstack_ix], \
79072805 184 cx->cx_type = t, \
3280af22 185 cx->blk_oldsp = sp - PL_stack_base, \
186 cx->blk_oldcop = PL_curcop, \
1aff0e91 187 cx->blk_oldmarksp = PL_markstack_ptr - PL_markstack, \
3280af22 188 cx->blk_oldscopesp = PL_scopestack_ix, \
1aff0e91 189 cx->blk_oldretsp = PL_retstack_ix, \
3280af22 190 cx->blk_oldpm = PL_curpm, \
79072805 191 cx->blk_gimme = gimme; \
760ac839 192 DEBUG_l( PerlIO_printf(PerlIO_stderr(), "Entering block %ld, type %s\n", \
1aff0e91 193 (long)cxstack_ix, PL_block_type[CxTYPE(cx)]); )
79072805 194
195/* Exit a block (RETURN and LAST). */
a0d0e21e 196#define POPBLOCK(cx,pm) cx = &cxstack[cxstack_ix--], \
1aff0e91 197 newsp = PL_stack_base + cx->blk_oldsp, \
3280af22 198 PL_curcop = cx->blk_oldcop, \
199 PL_markstack_ptr = PL_markstack + cx->blk_oldmarksp, \
200 PL_scopestack_ix = cx->blk_oldscopesp, \
201 PL_retstack_ix = cx->blk_oldretsp, \
202 pm = cx->blk_oldpm, \
203 gimme = cx->blk_gimme; \
760ac839 204 DEBUG_l( PerlIO_printf(PerlIO_stderr(), "Leaving block %ld, type %s\n", \
22c35a8c 205 (long)cxstack_ix+1,PL_block_type[CxTYPE(cx)]); )
79072805 206
207/* Continue a block elsewhere (NEXT and REDO). */
3280af22 208#define TOPBLOCK(cx) cx = &cxstack[cxstack_ix], \
1aff0e91 209 PL_stack_sp = PL_stack_base + cx->blk_oldsp, \
3280af22 210 PL_markstack_ptr = PL_markstack + cx->blk_oldmarksp, \
211 PL_scopestack_ix = cx->blk_oldscopesp, \
2158dd9b 212 PL_retstack_ix = cx->blk_oldretsp, \
213 PL_curpm = cx->blk_oldpm
79072805 214
215/* substitution context */
216struct subst {
217 I32 sbu_iters;
218 I32 sbu_maxiters;
22e551b9 219 I32 sbu_rflags;
4633a7c4 220 I32 sbu_oldsave;
71be2cbc 221 bool sbu_once;
222 bool sbu_rxtainted;
79072805 223 char * sbu_orig;
224 SV * sbu_dstr;
225 SV * sbu_targ;
226 char * sbu_s;
227 char * sbu_m;
228 char * sbu_strend;
c90c0ff4 229 void * sbu_rxres;
c07a80fd 230 REGEXP * sbu_rx;
79072805 231};
232#define sb_iters cx_u.cx_subst.sbu_iters
233#define sb_maxiters cx_u.cx_subst.sbu_maxiters
22e551b9 234#define sb_rflags cx_u.cx_subst.sbu_rflags
4633a7c4 235#define sb_oldsave cx_u.cx_subst.sbu_oldsave
71be2cbc 236#define sb_once cx_u.cx_subst.sbu_once
237#define sb_rxtainted cx_u.cx_subst.sbu_rxtainted
79072805 238#define sb_orig cx_u.cx_subst.sbu_orig
239#define sb_dstr cx_u.cx_subst.sbu_dstr
240#define sb_targ cx_u.cx_subst.sbu_targ
241#define sb_s cx_u.cx_subst.sbu_s
242#define sb_m cx_u.cx_subst.sbu_m
243#define sb_strend cx_u.cx_subst.sbu_strend
c90c0ff4 244#define sb_rxres cx_u.cx_subst.sbu_rxres
c07a80fd 245#define sb_rx cx_u.cx_subst.sbu_rx
79072805 246
247#define PUSHSUBST(cx) CXINC, cx = &cxstack[cxstack_ix], \
248 cx->sb_iters = iters, \
249 cx->sb_maxiters = maxiters, \
22e551b9 250 cx->sb_rflags = r_flags, \
4633a7c4 251 cx->sb_oldsave = oldsave, \
71be2cbc 252 cx->sb_once = once, \
253 cx->sb_rxtainted = rxtainted, \
79072805 254 cx->sb_orig = orig, \
255 cx->sb_dstr = dstr, \
256 cx->sb_targ = targ, \
257 cx->sb_s = s, \
258 cx->sb_m = m, \
259 cx->sb_strend = strend, \
c90c0ff4 260 cx->sb_rxres = Null(void*), \
c07a80fd 261 cx->sb_rx = rx, \
c90c0ff4 262 cx->cx_type = CXt_SUBST; \
263 rxres_save(&cx->sb_rxres, rx)
79072805 264
c90c0ff4 265#define POPSUBST(cx) cx = &cxstack[cxstack_ix--]; \
266 rxres_free(&cx->sb_rxres)
79072805 267
268struct context {
6b35e009 269 U32 cx_type; /* what kind of context this is */
79072805 270 union {
271 struct block cx_blk;
272 struct subst cx_subst;
273 } cx_u;
274};
6b35e009 275
276#define CXTYPEMASK 0xff
79072805 277#define CXt_NULL 0
278#define CXt_SUB 1
279#define CXt_EVAL 2
280#define CXt_LOOP 3
281#define CXt_SUBST 4
282#define CXt_BLOCK 5
283
6b35e009 284/* private flags for CXt_EVAL */
285#define CXp_REAL 0x00000100 /* truly eval'', not a lookalike */
286
287#define CxTYPE(c) ((c)->cx_type & CXTYPEMASK)
288#define CxREALEVAL(c) (((c)->cx_type & (CXt_EVAL|CXp_REAL)) == (CXt_EVAL|CXp_REAL))
289
79072805 290#define CXINC (cxstack_ix < cxstack_max ? ++cxstack_ix : (cxstack_ix = cxinc()))
291
292/* "gimme" values */
a0d0e21e 293#define G_SCALAR 0
294#define G_ARRAY 1
54310121 295#define G_VOID 128 /* skip this bit when adding flags below */
79072805 296
864dbfa3 297/* extra flags for Perl_call_* routines */
a0d0e21e 298#define G_DISCARD 2 /* Call FREETMPS. */
299#define G_EVAL 4 /* Assume eval {} around subroutine call. */
300#define G_NOARGS 8 /* Don't construct a @_ array. */
54310121 301#define G_KEEPERR 16 /* Append errors to $@, don't overwrite it */
491527d0 302#define G_NODEBUG 32 /* Disable debugging at toplevel. */
a7c6d244 303#define G_NOCATCH 64 /* Don't do CATCH_SET() */
e336de0d 304
faef0170 305/* flag bits for PL_in_eval */
306#define EVAL_NULL 0 /* not in an eval */
307#define EVAL_INEVAL 1 /* some enclosing scope is an eval */
308#define EVAL_WARNONLY 2 /* used by yywarn() when calling yyerror() */
864dbfa3 309#define EVAL_KEEPERR 4 /* set by Perl_call_sv if G_KEEPERR */
faef0170 310
e336de0d 311/* Support for switching (stack and block) contexts.
312 * This ensures magic doesn't invalidate local stack and cx pointers.
313 */
314
e788e7d3 315#define PERLSI_UNKNOWN -1
316#define PERLSI_UNDEF 0
317#define PERLSI_MAIN 1
318#define PERLSI_MAGIC 2
319#define PERLSI_SORT 3
320#define PERLSI_SIGNAL 4
321#define PERLSI_OVERLOAD 5
322#define PERLSI_DESTROY 6
323#define PERLSI_WARNHOOK 7
324#define PERLSI_DIEHOOK 8
325#define PERLSI_REQUIRE 9
e336de0d 326
327struct stackinfo {
328 AV * si_stack; /* stack for current runlevel */
329 PERL_CONTEXT * si_cxstack; /* context stack for runlevel */
330 I32 si_cxix; /* current context index */
331 I32 si_cxmax; /* maximum allocated index */
332 I32 si_type; /* type of runlevel */
333 struct stackinfo * si_prev;
334 struct stackinfo * si_next;
335 I32 * si_markbase; /* where markstack begins for us.
336 * currently used only with DEBUGGING,
337 * but not #ifdef-ed for bincompat */
338};
339
340typedef struct stackinfo PERL_SI;
341
3280af22 342#define cxstack (PL_curstackinfo->si_cxstack)
343#define cxstack_ix (PL_curstackinfo->si_cxix)
344#define cxstack_max (PL_curstackinfo->si_cxmax)
e336de0d 345
346#ifdef DEBUGGING
3280af22 347# define SET_MARKBASE PL_curstackinfo->si_markbase = PL_markstack_ptr
e336de0d 348#else
349# define SET_MARKBASE NOOP
350#endif
351
d3acc0f7 352#define PUSHSTACKi(type) \
e336de0d 353 STMT_START { \
3280af22 354 PERL_SI *next = PL_curstackinfo->si_next; \
e336de0d 355 if (!next) { \
356 next = new_stackinfo(32, 2048/sizeof(PERL_CONTEXT) - 1); \
3280af22 357 next->si_prev = PL_curstackinfo; \
358 PL_curstackinfo->si_next = next; \
e336de0d 359 } \
360 next->si_type = type; \
361 next->si_cxix = -1; \
362 AvFILLp(next->si_stack) = 0; \
3280af22 363 SWITCHSTACK(PL_curstack,next->si_stack); \
364 PL_curstackinfo = next; \
e336de0d 365 SET_MARKBASE; \
366 } STMT_END
367
e788e7d3 368#define PUSHSTACK PUSHSTACKi(PERLSI_UNKNOWN)
d3acc0f7 369
3095d977 370/* POPSTACK works with PL_stack_sp, so it may need to be bracketed by
371 * PUTBACK/SPAGAIN to flush/refresh any local SP that may be active */
d3acc0f7 372#define POPSTACK \
e336de0d 373 STMT_START { \
de616352 374 djSP; \
3280af22 375 PERL_SI *prev = PL_curstackinfo->si_prev; \
e336de0d 376 if (!prev) { \
377 PerlIO_printf(PerlIO_stderr(), "panic: POPSTACK\n"); \
378 my_exit(1); \
379 } \
3280af22 380 SWITCHSTACK(PL_curstack,prev->si_stack); \
e336de0d 381 /* don't free prev here, free them all at the END{} */ \
3280af22 382 PL_curstackinfo = prev; \
e336de0d 383 } STMT_END
384
385#define POPSTACK_TO(s) \
386 STMT_START { \
3280af22 387 while (PL_curstack != s) { \
bac4b2ad 388 dounwind(-1); \
d3acc0f7 389 POPSTACK; \
bac4b2ad 390 } \
e336de0d 391 } STMT_END