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