Commit | Line | Data |
---|---|---|
a0d0e21e | 1 | /* cop.h |
79072805 | 2 | * |
1129b882 | 3 | * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
8622e0e2 | 4 | * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 | * | |
8622e0e2 RU |
9 | * Control ops (cops) are one of the two ops OP_NEXTSTATE and OP_DBSTATE, |
10 | * that (loosely speaking) are separate statements. | |
3ffa1527 JH |
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 | ||
0d2925a6 | 16 | /* A jmpenv packages the state required to perform a proper non-local jump. |
1c98cc53 DM |
17 | * Note that there is a PL_start_env initialized when perl starts, and |
18 | * PL_top_env points to this initially, so PL_top_env should always be | |
19 | * non-null. | |
0d2925a6 | 20 | * |
1c98cc53 DM |
21 | * Existence of a non-null PL_top_env->je_prev implies it is valid to call |
22 | * longjmp() at that runlevel (we make sure PL_start_env.je_prev is always | |
0d2925a6 DM |
23 | * null to ensure this). |
24 | * | |
25 | * je_mustcatch, when set at any runlevel to TRUE, means eval ops must | |
26 | * establish a local jmpenv to handle exception traps. Care must be taken | |
27 | * to restore the previous value of je_mustcatch before exiting the | |
28 | * stack frame iff JMPENV_PUSH was not called in that stack frame. | |
29 | * GSAR 97-03-27 | |
30 | */ | |
31 | ||
32 | struct jmpenv { | |
33 | struct jmpenv * je_prev; | |
caa674f3 | 34 | Sigjmp_buf je_buf; /* uninit if je_prev is NULL */ |
0d2925a6 DM |
35 | int je_ret; /* last exception thrown */ |
36 | bool je_mustcatch; /* need to call longjmp()? */ | |
37 | }; | |
38 | ||
39 | typedef struct jmpenv JMPENV; | |
40 | ||
0d2925a6 DM |
41 | /* |
42 | * How to build the first jmpenv. | |
43 | * | |
44 | * top_env needs to be non-zero. It points to an area | |
45 | * in which longjmp() stuff is stored, as C callstack | |
46 | * info there at least is thread specific this has to | |
47 | * be per-thread. Otherwise a 'die' in a thread gives | |
48 | * that thread the C stack of last thread to do an eval {}! | |
49 | */ | |
50 | ||
51 | #define JMPENV_BOOTSTRAP \ | |
52 | STMT_START { \ | |
caa674f3 DD |
53 | PERL_POISON_EXPR(PoisonNew(&PL_start_env, 1, JMPENV));\ |
54 | PL_top_env = &PL_start_env; \ | |
55 | PL_start_env.je_prev = NULL; \ | |
0d2925a6 DM |
56 | PL_start_env.je_ret = -1; \ |
57 | PL_start_env.je_mustcatch = TRUE; \ | |
0d2925a6 DM |
58 | } STMT_END |
59 | ||
60 | /* | |
61 | * PERL_FLEXIBLE_EXCEPTIONS | |
62 | * | |
63 | * All the flexible exceptions code has been removed. | |
64 | * See the following threads for details: | |
65 | * | |
66 | * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-07/msg00378.html | |
67 | * | |
68 | * Joshua's original patches (which weren't applied) and discussion: | |
69 | * | |
70 | * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg01396.html | |
71 | * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg01489.html | |
72 | * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg01491.html | |
73 | * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg01608.html | |
74 | * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg02144.html | |
75 | * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg02998.html | |
76 | * | |
77 | * Chip's reworked patch and discussion: | |
78 | * | |
79 | * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1999-03/msg00520.html | |
80 | * | |
81 | * The flaw in these patches (which went unnoticed at the time) was | |
82 | * that they moved some code that could potentially die() out of the | |
83 | * region protected by the setjmp()s. This caused exceptions within | |
84 | * END blocks and such to not be handled by the correct setjmp(). | |
85 | * | |
86 | * The original patches that introduces flexible exceptions were: | |
87 | * | |
ff7e9008 MS |
88 | * http://perl5.git.perl.org/perl.git/commit/312caa8e97f1c7ee342a9895c2f0e749625b4929 |
89 | * http://perl5.git.perl.org/perl.git/commit/14dd3ad8c9bf82cf09798a22cc89a9862dfd6d1a | |
90 | * | |
0d2925a6 DM |
91 | */ |
92 | ||
93 | #define dJMPENV JMPENV cur_env | |
94 | ||
95 | #define JMPENV_PUSH(v) \ | |
96 | STMT_START { \ | |
1c98cc53 DM |
97 | DEBUG_l({ \ |
98 | int i = 0; JMPENV *p = PL_top_env; \ | |
99 | while (p) { i++; p = p->je_prev; } \ | |
91e35ba1 DM |
100 | Perl_deb(aTHX_ "JUMPENV_PUSH level=%d at %s:%d\n", \ |
101 | i, __FILE__, __LINE__);}) \ | |
0d2925a6 | 102 | cur_env.je_prev = PL_top_env; \ |
0d2925a6 | 103 | cur_env.je_ret = PerlProc_setjmp(cur_env.je_buf, SCOPE_SAVES_SIGNAL_MASK); \ |
0d2925a6 DM |
104 | PL_top_env = &cur_env; \ |
105 | cur_env.je_mustcatch = FALSE; \ | |
106 | (v) = cur_env.je_ret; \ | |
107 | } STMT_END | |
108 | ||
109 | #define JMPENV_POP \ | |
110 | STMT_START { \ | |
1c98cc53 DM |
111 | DEBUG_l({ \ |
112 | int i = -1; JMPENV *p = PL_top_env; \ | |
113 | while (p) { i++; p = p->je_prev; } \ | |
91e35ba1 DM |
114 | Perl_deb(aTHX_ "JUMPENV_POP level=%d at %s:%d\n", \ |
115 | i, __FILE__, __LINE__);}) \ | |
d3ab86be | 116 | assert(PL_top_env == &cur_env); \ |
0d2925a6 DM |
117 | PL_top_env = cur_env.je_prev; \ |
118 | } STMT_END | |
119 | ||
120 | #define JMPENV_JUMP(v) \ | |
121 | STMT_START { \ | |
1c98cc53 DM |
122 | DEBUG_l({ \ |
123 | int i = -1; JMPENV *p = PL_top_env; \ | |
124 | while (p) { i++; p = p->je_prev; } \ | |
91e35ba1 DM |
125 | Perl_deb(aTHX_ "JUMPENV_JUMP(%d) level=%d at %s:%d\n", \ |
126 | (int)v, i, __FILE__, __LINE__);}) \ | |
0d2925a6 DM |
127 | if (PL_top_env->je_prev) \ |
128 | PerlProc_longjmp(PL_top_env->je_buf, (v)); \ | |
129 | if ((v) == 2) \ | |
37038d91 | 130 | PerlProc_exit(STATUS_EXIT); \ |
5637ef5b | 131 | PerlIO_printf(PerlIO_stderr(), "panic: top_env, v=%d\n", (int)v); \ |
0d2925a6 DM |
132 | PerlProc_exit(1); \ |
133 | } STMT_END | |
134 | ||
135 | #define CATCH_GET (PL_top_env->je_mustcatch) | |
1c98cc53 DM |
136 | #define CATCH_SET(v) \ |
137 | STMT_START { \ | |
138 | DEBUG_l( \ | |
139 | Perl_deb(aTHX_ \ | |
140 | "JUMPLEVEL set catch %d => %d (for %p) at %s:%d\n", \ | |
141 | PL_top_env->je_mustcatch, v, (void*)PL_top_env, \ | |
142 | __FILE__, __LINE__);) \ | |
143 | PL_top_env->je_mustcatch = (v); \ | |
144 | } STMT_END | |
0d2925a6 | 145 | |
20439bc7 Z |
146 | /* |
147 | =head1 COP Hint Hashes | |
148 | */ | |
149 | ||
150 | typedef struct refcounted_he COPHH; | |
151 | ||
152 | #define COPHH_KEY_UTF8 REFCOUNTED_HE_KEY_UTF8 | |
153 | ||
154 | /* | |
ffd08bbf | 155 | =for apidoc Amx|SV *|cophh_fetch_pvn|const COPHH *cophh|const char *keypv|STRLEN keylen|U32 hash|U32 flags |
20439bc7 Z |
156 | |
157 | Look up the entry in the cop hints hash I<cophh> with the key specified by | |
158 | I<keypv> and I<keylen>. If I<flags> has the C<COPHH_KEY_UTF8> bit set, | |
159 | the key octets are interpreted as UTF-8, otherwise they are interpreted | |
160 | as Latin-1. I<hash> is a precomputed hash of the key string, or zero if | |
161 | it has not been precomputed. Returns a mortal scalar copy of the value | |
162 | associated with the key, or C<&PL_sv_placeholder> if there is no value | |
163 | associated with the key. | |
164 | ||
165 | =cut | |
166 | */ | |
167 | ||
168 | #define cophh_fetch_pvn(cophh, keypv, keylen, hash, flags) \ | |
169 | Perl_refcounted_he_fetch_pvn(aTHX_ cophh, keypv, keylen, hash, flags) | |
170 | ||
171 | /* | |
ffd08bbf | 172 | =for apidoc Amx|SV *|cophh_fetch_pvs|const COPHH *cophh|const char *key|U32 flags |
20439bc7 Z |
173 | |
174 | Like L</cophh_fetch_pvn>, but takes a literal string instead of a | |
175 | string/length pair, and no precomputed hash. | |
176 | ||
177 | =cut | |
178 | */ | |
179 | ||
180 | #define cophh_fetch_pvs(cophh, key, flags) \ | |
181 | Perl_refcounted_he_fetch_pvn(aTHX_ cophh, STR_WITH_LEN(key), 0, flags) | |
182 | ||
183 | /* | |
ffd08bbf | 184 | =for apidoc Amx|SV *|cophh_fetch_pv|const COPHH *cophh|const char *key|U32 hash|U32 flags |
20439bc7 Z |
185 | |
186 | Like L</cophh_fetch_pvn>, but takes a nul-terminated string instead of | |
187 | a string/length pair. | |
188 | ||
189 | =cut | |
190 | */ | |
191 | ||
192 | #define cophh_fetch_pv(cophh, key, hash, flags) \ | |
193 | Perl_refcounted_he_fetch_pv(aTHX_ cophh, key, hash, flags) | |
194 | ||
195 | /* | |
ffd08bbf | 196 | =for apidoc Amx|SV *|cophh_fetch_sv|const COPHH *cophh|SV *key|U32 hash|U32 flags |
20439bc7 Z |
197 | |
198 | Like L</cophh_fetch_pvn>, but takes a Perl scalar instead of a | |
199 | string/length pair. | |
200 | ||
201 | =cut | |
202 | */ | |
203 | ||
204 | #define cophh_fetch_sv(cophh, key, hash, flags) \ | |
205 | Perl_refcounted_he_fetch_sv(aTHX_ cophh, key, hash, flags) | |
206 | ||
207 | /* | |
ffd08bbf | 208 | =for apidoc Amx|HV *|cophh_2hv|const COPHH *cophh|U32 flags |
20439bc7 Z |
209 | |
210 | Generates and returns a standard Perl hash representing the full set of | |
211 | key/value pairs in the cop hints hash I<cophh>. I<flags> is currently | |
212 | unused and must be zero. | |
213 | ||
214 | =cut | |
215 | */ | |
216 | ||
217 | #define cophh_2hv(cophh, flags) \ | |
218 | Perl_refcounted_he_chain_2hv(aTHX_ cophh, flags) | |
219 | ||
220 | /* | |
ffd08bbf | 221 | =for apidoc Amx|COPHH *|cophh_copy|COPHH *cophh |
20439bc7 Z |
222 | |
223 | Make and return a complete copy of the cop hints hash I<cophh>. | |
224 | ||
225 | =cut | |
226 | */ | |
227 | ||
228 | #define cophh_copy(cophh) Perl_refcounted_he_inc(aTHX_ cophh) | |
229 | ||
230 | /* | |
ffd08bbf | 231 | =for apidoc Amx|void|cophh_free|COPHH *cophh |
20439bc7 Z |
232 | |
233 | Discard the cop hints hash I<cophh>, freeing all resources associated | |
234 | with it. | |
235 | ||
236 | =cut | |
237 | */ | |
238 | ||
239 | #define cophh_free(cophh) Perl_refcounted_he_free(aTHX_ cophh) | |
240 | ||
241 | /* | |
ffd08bbf | 242 | =for apidoc Amx|COPHH *|cophh_new_empty |
20439bc7 Z |
243 | |
244 | Generate and return a fresh cop hints hash containing no entries. | |
245 | ||
246 | =cut | |
247 | */ | |
248 | ||
249 | #define cophh_new_empty() ((COPHH *)NULL) | |
250 | ||
251 | /* | |
ffd08bbf | 252 | =for apidoc Amx|COPHH *|cophh_store_pvn|COPHH *cophh|const char *keypv|STRLEN keylen|U32 hash|SV *value|U32 flags |
20439bc7 Z |
253 | |
254 | Stores a value, associated with a key, in the cop hints hash I<cophh>, | |
255 | and returns the modified hash. The returned hash pointer is in general | |
256 | not the same as the hash pointer that was passed in. The input hash is | |
257 | consumed by the function, and the pointer to it must not be subsequently | |
258 | used. Use L</cophh_copy> if you need both hashes. | |
259 | ||
260 | The key is specified by I<keypv> and I<keylen>. If I<flags> has the | |
261 | C<COPHH_KEY_UTF8> bit set, the key octets are interpreted as UTF-8, | |
262 | otherwise they are interpreted as Latin-1. I<hash> is a precomputed | |
263 | hash of the key string, or zero if it has not been precomputed. | |
264 | ||
265 | I<value> is the scalar value to store for this key. I<value> is copied | |
266 | by this function, which thus does not take ownership of any reference | |
267 | to it, and later changes to the scalar will not be reflected in the | |
268 | value visible in the cop hints hash. Complex types of scalar will not | |
269 | be stored with referential integrity, but will be coerced to strings. | |
270 | ||
271 | =cut | |
272 | */ | |
273 | ||
274 | #define cophh_store_pvn(cophh, keypv, keylen, hash, value, flags) \ | |
275 | Perl_refcounted_he_new_pvn(aTHX_ cophh, keypv, keylen, hash, value, flags) | |
276 | ||
277 | /* | |
ffd08bbf | 278 | =for apidoc Amx|COPHH *|cophh_store_pvs|const COPHH *cophh|const char *key|SV *value|U32 flags |
20439bc7 Z |
279 | |
280 | Like L</cophh_store_pvn>, but takes a literal string instead of a | |
281 | string/length pair, and no precomputed hash. | |
282 | ||
283 | =cut | |
284 | */ | |
285 | ||
286 | #define cophh_store_pvs(cophh, key, value, flags) \ | |
287 | Perl_refcounted_he_new_pvn(aTHX_ cophh, STR_WITH_LEN(key), 0, value, flags) | |
288 | ||
289 | /* | |
ffd08bbf | 290 | =for apidoc Amx|COPHH *|cophh_store_pv|const COPHH *cophh|const char *key|U32 hash|SV *value|U32 flags |
20439bc7 Z |
291 | |
292 | Like L</cophh_store_pvn>, but takes a nul-terminated string instead of | |
293 | a string/length pair. | |
294 | ||
295 | =cut | |
296 | */ | |
297 | ||
298 | #define cophh_store_pv(cophh, key, hash, value, flags) \ | |
299 | Perl_refcounted_he_new_pv(aTHX_ cophh, key, hash, value, flags) | |
300 | ||
301 | /* | |
ffd08bbf | 302 | =for apidoc Amx|COPHH *|cophh_store_sv|const COPHH *cophh|SV *key|U32 hash|SV *value|U32 flags |
20439bc7 Z |
303 | |
304 | Like L</cophh_store_pvn>, but takes a Perl scalar instead of a | |
305 | string/length pair. | |
306 | ||
307 | =cut | |
308 | */ | |
309 | ||
310 | #define cophh_store_sv(cophh, key, hash, value, flags) \ | |
311 | Perl_refcounted_he_new_sv(aTHX_ cophh, key, hash, value, flags) | |
312 | ||
313 | /* | |
ffd08bbf | 314 | =for apidoc Amx|COPHH *|cophh_delete_pvn|COPHH *cophh|const char *keypv|STRLEN keylen|U32 hash|U32 flags |
20439bc7 Z |
315 | |
316 | Delete a key and its associated value from the cop hints hash I<cophh>, | |
317 | and returns the modified hash. The returned hash pointer is in general | |
318 | not the same as the hash pointer that was passed in. The input hash is | |
319 | consumed by the function, and the pointer to it must not be subsequently | |
320 | used. Use L</cophh_copy> if you need both hashes. | |
321 | ||
322 | The key is specified by I<keypv> and I<keylen>. If I<flags> has the | |
323 | C<COPHH_KEY_UTF8> bit set, the key octets are interpreted as UTF-8, | |
324 | otherwise they are interpreted as Latin-1. I<hash> is a precomputed | |
325 | hash of the key string, or zero if it has not been precomputed. | |
326 | ||
327 | =cut | |
328 | */ | |
329 | ||
330 | #define cophh_delete_pvn(cophh, keypv, keylen, hash, flags) \ | |
331 | Perl_refcounted_he_new_pvn(aTHX_ cophh, keypv, keylen, hash, \ | |
332 | (SV *)NULL, flags) | |
333 | ||
334 | /* | |
ffd08bbf | 335 | =for apidoc Amx|COPHH *|cophh_delete_pvs|const COPHH *cophh|const char *key|U32 flags |
20439bc7 Z |
336 | |
337 | Like L</cophh_delete_pvn>, but takes a literal string instead of a | |
338 | string/length pair, and no precomputed hash. | |
339 | ||
340 | =cut | |
341 | */ | |
342 | ||
343 | #define cophh_delete_pvs(cophh, key, flags) \ | |
344 | Perl_refcounted_he_new_pvn(aTHX_ cophh, STR_WITH_LEN(key), 0, \ | |
345 | (SV *)NULL, flags) | |
346 | ||
347 | /* | |
ffd08bbf | 348 | =for apidoc Amx|COPHH *|cophh_delete_pv|const COPHH *cophh|const char *key|U32 hash|U32 flags |
20439bc7 Z |
349 | |
350 | Like L</cophh_delete_pvn>, but takes a nul-terminated string instead of | |
351 | a string/length pair. | |
352 | ||
353 | =cut | |
354 | */ | |
355 | ||
356 | #define cophh_delete_pv(cophh, key, hash, flags) \ | |
357 | Perl_refcounted_he_new_pv(aTHX_ cophh, key, hash, (SV *)NULL, flags) | |
358 | ||
359 | /* | |
ffd08bbf | 360 | =for apidoc Amx|COPHH *|cophh_delete_sv|const COPHH *cophh|SV *key|U32 hash|U32 flags |
20439bc7 Z |
361 | |
362 | Like L</cophh_delete_pvn>, but takes a Perl scalar instead of a | |
363 | string/length pair. | |
364 | ||
365 | =cut | |
366 | */ | |
367 | ||
368 | #define cophh_delete_sv(cophh, key, hash, flags) \ | |
369 | Perl_refcounted_he_new_sv(aTHX_ cophh, key, hash, (SV *)NULL, flags) | |
0d2925a6 | 370 | |
5ac1e9b2 | 371 | #include "mydtrace.h" |
0d2925a6 | 372 | |
57843af0 | 373 | #ifdef USE_ITHREADS |
c1cec775 FC |
374 | # define _COP_STASH_N_FILE \ |
375 | PADOFFSET cop_stashoff; /* offset into PL_stashpad, for the \ | |
376 | package the line was compiled in */ \ | |
1dc74fdb | 377 | char * cop_file; /* file name the following line # is from */ |
57843af0 | 378 | #else |
c1cec775 FC |
379 | # define _COP_STASH_N_FILE \ |
380 | HV * cop_stash; /* package line was compiled in */ \ | |
79072805 | 381 | GV * cop_filegv; /* file the following line # is from */ |
57843af0 | 382 | #endif |
c1cec775 FC |
383 | |
384 | #define _COP_FIELDS \ | |
385 | /* On LP64 putting this here takes advantage of the fact that BASEOP \ | |
386 | isn't an exact multiple of 8 bytes to save structure padding. */ \ | |
387 | line_t cop_line; /* line # of this command */ \ | |
388 | /* label for this construct is now stored in cop_hints_hash */ \ | |
389 | _COP_STASH_N_FILE \ | |
390 | U32 cop_hints; /* hints bits from pragmata */ \ | |
391 | U32 cop_seq; /* parse sequence number */ \ | |
392 | /* Beware. mg.c and warnings.pl assume the type of this \ | |
393 | is STRLEN *: */ \ | |
394 | STRLEN * cop_warnings; /* lexical warnings bitmask */ \ | |
395 | /* compile time state of %^H. See the comment in op.c for how this \ | |
396 | is used to recreate a hash to return from caller. */ \ | |
20439bc7 | 397 | COPHH * cop_hints_hash; |
c1cec775 FC |
398 | |
399 | struct cop { | |
400 | BASEOP | |
401 | _COP_FIELDS | |
402 | }; | |
403 | ||
404 | struct dbop { | |
405 | BASEOP | |
406 | _COP_FIELDS | |
407 | size_t dbop_seq; /* sequence number for breakpoint */ | |
79072805 LW |
408 | }; |
409 | ||
57843af0 | 410 | #ifdef USE_ITHREADS |
1dc74fdb FC |
411 | # define CopFILE(c) ((c)->cop_file) |
412 | # define CopFILEGV(c) (CopFILE(c) \ | |
413 | ? gv_fetchfile(CopFILE(c)) : NULL) | |
414 | ||
415 | # ifdef NETWARE | |
416 | # define CopFILE_set(c,pv) ((c)->cop_file = savepv(pv)) | |
417 | # define CopFILE_setn(c,pv,l) ((c)->cop_file = savepv((pv),(l))) | |
418 | # else | |
419 | # define CopFILE_set(c,pv) ((c)->cop_file = savesharedpv(pv)) | |
420 | # define CopFILE_setn(c,pv,l) ((c)->cop_file = savesharedpvn((pv),(l))) | |
421 | # endif | |
422 | ||
423 | # define CopFILESV(c) (CopFILE(c) \ | |
424 | ? GvSV(gv_fetchfile(CopFILE(c))) : NULL) | |
425 | # define CopFILEAV(c) (CopFILE(c) \ | |
426 | ? GvAV(gv_fetchfile(CopFILE(c))) : NULL) | |
427 | # define CopFILEAVx(c) (assert_(CopFILE(c)) \ | |
428 | GvAV(gv_fetchfile(CopFILE(c)))) | |
083fcd59 | 429 | |
d4d03940 FC |
430 | # define CopSTASH(c) PL_stashpad[(c)->cop_stashoff] |
431 | # define CopSTASH_set(c,hv) ((c)->cop_stashoff = (hv) \ | |
432 | ? alloccopstash(hv) \ | |
433 | : 0) | |
1dc74fdb FC |
434 | # ifdef NETWARE |
435 | # define CopFILE_free(c) SAVECOPFILE_FREE(c) | |
436 | # else | |
437 | # define CopFILE_free(c) (PerlMemShared_free(CopFILE(c)),(CopFILE(c) = NULL)) | |
438 | # endif | |
57843af0 GS |
439 | #else |
440 | # define CopFILEGV(c) ((c)->cop_filegv) | |
f4dd75d9 | 441 | # define CopFILEGV_set(c,gv) ((c)->cop_filegv = (GV*)SvREFCNT_inc(gv)) |
1dc74fdb FC |
442 | # define CopFILE_set(c,pv) CopFILEGV_set((c), gv_fetchfile(pv)) |
443 | # define CopFILE_setn(c,pv,l) CopFILEGV_set((c), gv_fetchfile_flags((pv),(l),0)) | |
444 | # define CopFILESV(c) (CopFILEGV(c) ? GvSV(CopFILEGV(c)) : NULL) | |
445 | # define CopFILEAV(c) (CopFILEGV(c) ? GvAV(CopFILEGV(c)) : NULL) | |
446 | # ifdef DEBUGGING | |
447 | # define CopFILEAVx(c) (assert(CopFILEGV(c)), GvAV(CopFILEGV(c))) | |
448 | # else | |
449 | # define CopFILEAVx(c) (GvAV(CopFILEGV(c))) | |
450 | # endif | |
451 | # define CopFILE(c) (CopFILEGV(c) \ | |
452 | ? GvNAME(CopFILEGV(c))+2 : NULL) | |
57843af0 | 453 | # define CopSTASH(c) ((c)->cop_stash) |
f4dd75d9 | 454 | # define CopSTASH_set(c,hv) ((c)->cop_stash = (hv)) |
a0714e2c | 455 | # define CopFILE_free(c) (SvREFCNT_dec(CopFILEGV(c)),(CopFILEGV(c) = NULL)) |
05ec9bb3 | 456 | |
57843af0 | 457 | #endif /* USE_ITHREADS */ |
20439bc7 | 458 | |
d4d03940 FC |
459 | #define CopSTASHPV(c) (CopSTASH(c) ? HvNAME_get(CopSTASH(c)) : NULL) |
460 | /* cop_stash is not refcounted */ | |
461 | #define CopSTASHPV_set(c,pv) CopSTASH_set((c), gv_stashpv(pv,GV_ADD)) | |
462 | #define CopSTASH_eq(c,hv) (CopSTASH(c) == (hv)) | |
d4d03940 | 463 | |
20439bc7 Z |
464 | #define CopHINTHASH_get(c) ((COPHH*)((c)->cop_hints_hash)) |
465 | #define CopHINTHASH_set(c,h) ((c)->cop_hints_hash = (h)) | |
466 | ||
467 | /* | |
468 | =head1 COP Hint Reading | |
469 | */ | |
470 | ||
471 | /* | |
472 | =for apidoc Am|SV *|cop_hints_fetch_pvn|const COP *cop|const char *keypv|STRLEN keylen|U32 hash|U32 flags | |
473 | ||
474 | Look up the hint entry in the cop I<cop> with the key specified by | |
475 | I<keypv> and I<keylen>. If I<flags> has the C<COPHH_KEY_UTF8> bit set, | |
476 | the key octets are interpreted as UTF-8, otherwise they are interpreted | |
477 | as Latin-1. I<hash> is a precomputed hash of the key string, or zero if | |
478 | it has not been precomputed. Returns a mortal scalar copy of the value | |
479 | associated with the key, or C<&PL_sv_placeholder> if there is no value | |
480 | associated with the key. | |
481 | ||
482 | =cut | |
483 | */ | |
484 | ||
485 | #define cop_hints_fetch_pvn(cop, keypv, keylen, hash, flags) \ | |
486 | cophh_fetch_pvn(CopHINTHASH_get(cop), keypv, keylen, hash, flags) | |
487 | ||
488 | /* | |
489 | =for apidoc Am|SV *|cop_hints_fetch_pvs|const COP *cop|const char *key|U32 flags | |
490 | ||
491 | Like L</cop_hints_fetch_pvn>, but takes a literal string instead of a | |
492 | string/length pair, and no precomputed hash. | |
493 | ||
494 | =cut | |
495 | */ | |
496 | ||
497 | #define cop_hints_fetch_pvs(cop, key, flags) \ | |
498 | cophh_fetch_pvs(CopHINTHASH_get(cop), key, flags) | |
499 | ||
500 | /* | |
501 | =for apidoc Am|SV *|cop_hints_fetch_pv|const COP *cop|const char *key|U32 hash|U32 flags | |
502 | ||
503 | Like L</cop_hints_fetch_pvn>, but takes a nul-terminated string instead | |
504 | of a string/length pair. | |
505 | ||
506 | =cut | |
507 | */ | |
508 | ||
509 | #define cop_hints_fetch_pv(cop, key, hash, flags) \ | |
510 | cophh_fetch_pv(CopHINTHASH_get(cop), key, hash, flags) | |
511 | ||
512 | /* | |
513 | =for apidoc Am|SV *|cop_hints_fetch_sv|const COP *cop|SV *key|U32 hash|U32 flags | |
514 | ||
515 | Like L</cop_hints_fetch_pvn>, but takes a Perl scalar instead of a | |
516 | string/length pair. | |
517 | ||
518 | =cut | |
519 | */ | |
520 | ||
521 | #define cop_hints_fetch_sv(cop, key, hash, flags) \ | |
522 | cophh_fetch_sv(CopHINTHASH_get(cop), key, hash, flags) | |
523 | ||
524 | /* | |
525 | =for apidoc Am|HV *|cop_hints_2hv|const COP *cop|U32 flags | |
526 | ||
527 | Generates and returns a standard Perl hash representing the full set of | |
528 | hint entries in the cop I<cop>. I<flags> is currently unused and must | |
529 | be zero. | |
530 | ||
531 | =cut | |
532 | */ | |
533 | ||
534 | #define cop_hints_2hv(cop, flags) \ | |
535 | cophh_2hv(CopHINTHASH_get(cop), flags) | |
536 | ||
aebc0cbe | 537 | #define CopLABEL(c) Perl_cop_fetch_label(aTHX_ (c), NULL, NULL) |
5db1eb8d BF |
538 | #define CopLABEL_len(c,len) Perl_cop_fetch_label(aTHX_ (c), len, NULL) |
539 | #define CopLABEL_len_flags(c,len,flags) Perl_cop_fetch_label(aTHX_ (c), len, flags) | |
dca6062a | 540 | #define CopLABEL_alloc(pv) ((pv)?savepv(pv):NULL) |
57843af0 | 541 | |
ed094faf | 542 | #define CopSTASH_ne(c,hv) (!CopSTASH_eq(c,hv)) |
cc49e20b | 543 | #define CopLINE(c) ((c)->cop_line) |
57843af0 GS |
544 | #define CopLINE_inc(c) (++CopLINE(c)) |
545 | #define CopLINE_dec(c) (--CopLINE(c)) | |
546 | #define CopLINE_set(c,l) (CopLINE(c) = (l)) | |
cc49e20b | 547 | |
248c2a4d | 548 | /* OutCopFILE() is CopFILE for output (caller, die, warn, etc.) */ |
e37778c2 | 549 | #define OutCopFILE(c) CopFILE(c) |
248c2a4d | 550 | |
d5ec2987 | 551 | #define CopHINTS_get(c) ((c)->cop_hints + 0) |
623e6609 | 552 | #define CopHINTS_set(c, h) STMT_START { \ |
d5ec2987 | 553 | (c)->cop_hints = (h); \ |
623e6609 NC |
554 | } STMT_END |
555 | ||
79072805 LW |
556 | /* |
557 | * Here we have some enormously heavy (or at least ponderous) wizardry. | |
558 | */ | |
559 | ||
560 | /* subroutine context */ | |
561 | struct block_sub { | |
f9c764c5 | 562 | OP * retop; /* op to execute on exit from sub */ |
8e663997 NC |
563 | /* Above here is the same for sub, format and eval. */ |
564 | CV * cv; | |
f9c764c5 | 565 | /* Above here is the same for sub and format. */ |
79072805 LW |
566 | AV * savearray; |
567 | AV * argarray; | |
bb172083 | 568 | I32 olddepth; |
f3548bdc | 569 | PAD *oldcomppad; |
f9c764c5 NC |
570 | }; |
571 | ||
572 | ||
573 | /* format context */ | |
574 | struct block_format { | |
f39bc417 | 575 | OP * retop; /* op to execute on exit from sub */ |
8e663997 NC |
576 | /* Above here is the same for sub, format and eval. */ |
577 | CV * cv; | |
f9c764c5 NC |
578 | /* Above here is the same for sub and format. */ |
579 | GV * gv; | |
580 | GV * dfoutgv; | |
79072805 LW |
581 | }; |
582 | ||
b36bdeca DM |
583 | /* base for the next two macros. Don't use directly. |
584 | * Note that the refcnt of the cv is incremented twice; The CX one is | |
585 | * decremented by LEAVESUB, the other by LEAVE. */ | |
586 | ||
ee98a1d6 | 587 | #define PUSHSUB_BASE(cx) \ |
88dbe4af FC |
588 | ENTRY_PROBE(CvNAMED(cv) \ |
589 | ? HEK_KEY(CvNAME_HEK(cv)) \ | |
590 | : GvENAME(CvGV(cv)), \ | |
c6903450 | 591 | CopFILE((const COP *)CvSTART(cv)), \ |
3e2413e5 DL |
592 | CopLINE((const COP *)CvSTART(cv)), \ |
593 | CopSTASHPV((const COP *)CvSTART(cv))); \ | |
5ac1e9b2 | 594 | \ |
79072805 | 595 | cx->blk_sub.cv = cv; \ |
b8f55b69 | 596 | cx->blk_sub.olddepth = CvDEPTH(cv); \ |
ae423868 | 597 | cx->cx_type |= (hasargs) ? CXp_HASARGS : 0; \ |
5f66b61c | 598 | cx->blk_sub.retop = NULL; \ |
b36bdeca | 599 | if (!CvDEPTH(cv)) { \ |
74c765eb AL |
600 | SvREFCNT_inc_simple_void_NN(cv); \ |
601 | SvREFCNT_inc_simple_void_NN(cv); \ | |
b36bdeca DM |
602 | SAVEFREESV(cv); \ |
603 | } | |
604 | ||
4587c532 | 605 | #define PUSHSUB_GET_LVALUE_MASK(func) \ |
777d9014 FC |
606 | /* If the context is indeterminate, then only the lvalue */ \ |
607 | /* flags that the caller also has are applicable. */ \ | |
4587c532 | 608 | ( \ |
777d9014 FC |
609 | (PL_op->op_flags & OPf_WANT) \ |
610 | ? OPpENTERSUB_LVAL_MASK \ | |
611 | : !(PL_op->op_private & OPpENTERSUB_LVAL_MASK) \ | |
4587c532 FC |
612 | ? 0 : (U8)func(aTHX) \ |
613 | ) | |
614 | ||
615 | #define PUSHSUB(cx) \ | |
616 | { \ | |
617 | U8 phlags = PUSHSUB_GET_LVALUE_MASK(Perl_was_lvalue_sub); \ | |
ee98a1d6 | 618 | PUSHSUB_BASE(cx) \ |
446d0787 | 619 | cx->blk_u16 = PL_op->op_private & \ |
0e9700df | 620 | (phlags|OPpDEREF); \ |
777d9014 | 621 | } |
79072805 | 622 | |
ee98a1d6 DM |
623 | /* variant for use by OP_DBSTATE, where op_private holds hint bits */ |
624 | #define PUSHSUB_DB(cx) \ | |
625 | PUSHSUB_BASE(cx) \ | |
446d0787 | 626 | cx->blk_u16 = 0; |
ee98a1d6 DM |
627 | |
628 | ||
10067d9a | 629 | #define PUSHFORMAT(cx, retop) \ |
f9c764c5 NC |
630 | cx->blk_format.cv = cv; \ |
631 | cx->blk_format.gv = gv; \ | |
632 | cx->blk_format.retop = (retop); \ | |
f9c764c5 | 633 | cx->blk_format.dfoutgv = PL_defoutgv; \ |
ee23553f | 634 | if (!CvDEPTH(cv)) SvREFCNT_inc_simple_void_NN(cv); \ |
f32c7e86 | 635 | CvDEPTH(cv)++; \ |
f9c764c5 | 636 | SvREFCNT_inc_void(cx->blk_format.dfoutgv) |
79072805 | 637 | |
3db8f154 | 638 | #define POP_SAVEARRAY() \ |
6d4ff0d2 | 639 | STMT_START { \ |
3280af22 | 640 | SvREFCNT_dec(GvAV(PL_defgv)); \ |
a8bba7fa | 641 | GvAV(PL_defgv) = cx->blk_sub.savearray; \ |
6d4ff0d2 | 642 | } STMT_END |
6d4ff0d2 | 643 | |
ecf8e9dd | 644 | /* junk in @_ spells trouble when cloning CVs and in pp_caller(), so don't |
8e09340b GS |
645 | * leave any (a fast av_clear(ary), basically) */ |
646 | #define CLEAR_ARGARRAY(ary) \ | |
647 | STMT_START { \ | |
648 | AvMAX(ary) += AvARRAY(ary) - AvALLOC(ary); \ | |
9c6bc640 | 649 | AvARRAY(ary) = AvALLOC(ary); \ |
8e09340b GS |
650 | AvFILLp(ary) = -1; \ |
651 | } STMT_END | |
7766f137 | 652 | |
b0d9ce38 GS |
653 | #define POPSUB(cx,sv) \ |
654 | STMT_START { \ | |
25375124 | 655 | const I32 olddepth = cx->blk_sub.olddepth; \ |
88dbe4af FC |
656 | RETURN_PROBE(CvNAMED(cx->blk_sub.cv) \ |
657 | ? HEK_KEY(CvNAME_HEK(cx->blk_sub.cv)) \ | |
658 | : GvENAME(CvGV(cx->blk_sub.cv)), \ | |
8f629a87 | 659 | CopFILE((COP*)CvSTART((const CV*)cx->blk_sub.cv)), \ |
3e2413e5 DL |
660 | CopLINE((COP*)CvSTART((const CV*)cx->blk_sub.cv)), \ |
661 | CopSTASHPV((COP*)CvSTART((const CV*)cx->blk_sub.cv))); \ | |
5ac1e9b2 | 662 | \ |
bafb2adc | 663 | if (CxHASARGS(cx)) { \ |
7766f137 | 664 | POP_SAVEARRAY(); \ |
d8b46c1b | 665 | /* abandon @_ if it got reified */ \ |
a8bba7fa | 666 | if (AvREAL(cx->blk_sub.argarray)) { \ |
e2d306cb | 667 | const SSize_t fill = AvFILLp(cx->blk_sub.argarray); \ |
2f995715 | 668 | SvREFCNT_dec_NN(cx->blk_sub.argarray); \ |
a8bba7fa GS |
669 | cx->blk_sub.argarray = newAV(); \ |
670 | av_extend(cx->blk_sub.argarray, fill); \ | |
11ca45c0 | 671 | AvREIFY_only(cx->blk_sub.argarray); \ |
b1bc3f34 | 672 | CX_CURPAD_SV(cx->blk_sub, 0) = MUTABLE_SV(cx->blk_sub.argarray); \ |
d8b46c1b | 673 | } \ |
7766f137 | 674 | else { \ |
8e09340b | 675 | CLEAR_ARGARRAY(cx->blk_sub.argarray); \ |
7766f137 | 676 | } \ |
79072805 | 677 | } \ |
b1bc3f34 | 678 | sv = MUTABLE_SV(cx->blk_sub.cv); \ |
25375124 FC |
679 | LEAVE_SCOPE(PL_scopestack[cx->blk_oldscopesp-1]); \ |
680 | if (sv && (CvDEPTH((const CV*)sv) = olddepth)) \ | |
a0714e2c | 681 | sv = NULL; \ |
b0d9ce38 GS |
682 | } STMT_END |
683 | ||
684 | #define LEAVESUB(sv) \ | |
685 | STMT_START { \ | |
d2687c98 | 686 | SvREFCNT_dec(sv); \ |
b0d9ce38 | 687 | } STMT_END |
79072805 LW |
688 | |
689 | #define POPFORMAT(cx) \ | |
25375124 FC |
690 | STMT_START { \ |
691 | CV * const cv = cx->blk_format.cv; \ | |
692 | GV * const dfuot = cx->blk_format.dfoutgv; \ | |
693 | setdefout(dfuot); \ | |
694 | LEAVE_SCOPE(PL_scopestack[cx->blk_oldscopesp-1]); \ | |
695 | if (!--CvDEPTH(cv)) \ | |
2f995715 | 696 | SvREFCNT_dec_NN(cx->blk_format.cv); \ |
25375124 FC |
697 | SvREFCNT_dec_NN(dfuot); \ |
698 | } STMT_END | |
79072805 LW |
699 | |
700 | /* eval context */ | |
701 | struct block_eval { | |
8e663997 NC |
702 | OP * retop; /* op to execute on exit from eval */ |
703 | /* Above here is the same for sub, format and eval. */ | |
0f79a09d | 704 | SV * old_namesv; |
79072805 | 705 | OP * old_eval_root; |
748a9306 | 706 | SV * cur_text; |
2090ab20 | 707 | CV * cv; |
abd70938 | 708 | JMPENV * cur_top_env; /* value of PL_top_env when eval CX created */ |
79072805 LW |
709 | }; |
710 | ||
17347a51 NC |
711 | /* If we ever need more than 512 op types, change the shift from 7. |
712 | blku_gimme is actually also only 2 bits, so could be merged with something. | |
713 | */ | |
714 | ||
715 | #define CxOLD_IN_EVAL(cx) (((cx)->blk_u16) & 0x7F) | |
716 | #define CxOLD_OP_TYPE(cx) (((cx)->blk_u16) >> 7) | |
85a64632 | 717 | |
6b75f042 | 718 | #define PUSHEVAL(cx,n) \ |
0f79a09d | 719 | STMT_START { \ |
17347a51 NC |
720 | assert(!(PL_in_eval & ~0x7F)); \ |
721 | assert(!(PL_op->op_type & ~0x1FF)); \ | |
722 | cx->blk_u16 = (PL_in_eval & 0x7F) | ((U16)PL_op->op_type << 7); \ | |
a0714e2c | 723 | cx->blk_eval.old_namesv = (n ? newSVpv(n,0) : NULL); \ |
a8bba7fa | 724 | cx->blk_eval.old_eval_root = PL_eval_root; \ |
bdc0bf6f | 725 | cx->blk_eval.cur_text = PL_parser ? PL_parser->linestr : NULL; \ |
601f1833 | 726 | cx->blk_eval.cv = NULL; /* set by doeval(), as applicable */ \ |
5f66b61c | 727 | cx->blk_eval.retop = NULL; \ |
abd70938 | 728 | cx->blk_eval.cur_top_env = PL_top_env; \ |
0f79a09d | 729 | } STMT_END |
79072805 LW |
730 | |
731 | #define POPEVAL(cx) \ | |
0f79a09d | 732 | STMT_START { \ |
85a64632 NC |
733 | PL_in_eval = CxOLD_IN_EVAL(cx); \ |
734 | optype = CxOLD_OP_TYPE(cx); \ | |
7766f137 | 735 | PL_eval_root = cx->blk_eval.old_eval_root; \ |
d37427bc | 736 | if (cx->blk_eval.cur_text && SvSCREAM(cx->blk_eval.cur_text)) \ |
2f995715 | 737 | SvREFCNT_dec_NN(cx->blk_eval.cur_text); \ |
0f79a09d GS |
738 | if (cx->blk_eval.old_namesv) \ |
739 | sv_2mortal(cx->blk_eval.old_namesv); \ | |
740 | } STMT_END | |
79072805 LW |
741 | |
742 | /* loop context */ | |
743 | struct block_loop { | |
79072805 | 744 | I32 resetsp; |
022eaa24 | 745 | LOOP * my_op; /* My op, that contains redo, next and last ops. */ |
df530c37 DM |
746 | union { /* different ways of locating the iteration variable */ |
747 | SV **svp; | |
748 | GV *gv; | |
749 | PAD *oldcomppad; /* only used in ITHREADS */ | |
750 | } itervar_u; | |
493b0a3c | 751 | union { |
d01136d6 BS |
752 | struct { /* valid if type is LOOP_FOR or LOOP_PLAIN (but {NULL,0})*/ |
753 | AV * ary; /* use the stack if this is NULL */ | |
754 | IV ix; | |
755 | } ary; | |
756 | struct { /* valid if type is LOOP_LAZYIV */ | |
757 | IV cur; | |
758 | IV end; | |
759 | } lazyiv; | |
760 | struct { /* valid if type if LOOP_LAZYSV */ | |
761 | SV * cur; | |
762 | SV * end; /* maxiumum value (or minimum in reverse) */ | |
763 | } lazysv; | |
764 | } state_u; | |
79072805 LW |
765 | }; |
766 | ||
7766f137 | 767 | #ifdef USE_ITHREADS |
f83b46a0 DM |
768 | # define CxITERVAR_PADSV(c) \ |
769 | &CX_CURPAD_SV( (c)->blk_loop.itervar_u, (c)->blk_loop.my_op->op_targ) | |
770 | #else | |
771 | # define CxITERVAR_PADSV(c) ((c)->blk_loop.itervar_u.svp) | |
772 | #endif | |
773 | ||
774 | #define CxITERVAR(c) \ | |
df530c37 | 775 | ((c)->blk_loop.itervar_u.oldcomppad \ |
e846cb92 | 776 | ? (CxPADLOOP(c) \ |
f83b46a0 | 777 | ? CxITERVAR_PADSV(c) \ |
df530c37 | 778 | : &GvSV((c)->blk_loop.itervar_u.gv)) \ |
7766f137 | 779 | : (SV**)NULL) |
f83b46a0 | 780 | |
b1cf8b36 | 781 | #define CxLABEL(c) (0 + CopLABEL((c)->blk_oldcop)) |
5db1eb8d BF |
782 | #define CxLABEL_len(c,len) (0 + CopLABEL_len((c)->blk_oldcop, len)) |
783 | #define CxLABEL_len_flags(c,len,flags) (0 + CopLABEL_len_flags((c)->blk_oldcop, len, flags)) | |
ae423868 | 784 | #define CxHASARGS(c) (((c)->cx_type & CXp_HASARGS) == CXp_HASARGS) |
446d0787 | 785 | #define CxLVAL(c) (0 + (c)->blk_u16) |
7766f137 | 786 | |
3b719c58 NC |
787 | #define PUSHLOOP_PLAIN(cx, s) \ |
788 | cx->blk_loop.resetsp = s - PL_stack_base; \ | |
789 | cx->blk_loop.my_op = cLOOP; \ | |
d01136d6 BS |
790 | cx->blk_loop.state_u.ary.ary = NULL; \ |
791 | cx->blk_loop.state_u.ary.ix = 0; \ | |
df530c37 | 792 | cx->blk_loop.itervar_u.svp = NULL; |
3b719c58 | 793 | |
df530c37 | 794 | #define PUSHLOOP_FOR(cx, ivar, s) \ |
38a230cb | 795 | cx->blk_loop.resetsp = s - PL_stack_base; \ |
022eaa24 | 796 | cx->blk_loop.my_op = cLOOP; \ |
d01136d6 BS |
797 | cx->blk_loop.state_u.ary.ary = NULL; \ |
798 | cx->blk_loop.state_u.ary.ix = 0; \ | |
df530c37 | 799 | cx->blk_loop.itervar_u.svp = (SV**)(ivar); |
79072805 LW |
800 | |
801 | #define POPLOOP(cx) \ | |
d01136d6 | 802 | if (CxTYPE(cx) == CXt_LOOP_LAZYSV) { \ |
2f995715 FC |
803 | SvREFCNT_dec_NN(cx->blk_loop.state_u.lazysv.cur); \ |
804 | SvREFCNT_dec_NN(cx->blk_loop.state_u.lazysv.end); \ | |
d01136d6 | 805 | } \ |
d01136d6 BS |
806 | if (CxTYPE(cx) == CXt_LOOP_FOR) \ |
807 | SvREFCNT_dec(cx->blk_loop.state_u.ary.ary); | |
79072805 | 808 | |
0d863452 RH |
809 | /* given/when context */ |
810 | struct block_givwhen { | |
811 | OP *leave_op; | |
812 | }; | |
813 | ||
814 | #define PUSHGIVEN(cx) \ | |
815 | cx->blk_givwhen.leave_op = cLOGOP->op_other; | |
816 | ||
817 | #define PUSHWHEN PUSHGIVEN | |
818 | ||
79072805 LW |
819 | /* context common to subroutines, evals and loops */ |
820 | struct block { | |
446d0787 | 821 | U8 blku_type; /* what kind of context this is */ |
2e0df0e8 | 822 | U8 blku_gimme; /* is this block running in list context? */ |
17347a51 | 823 | U16 blku_u16; /* used by block_sub and block_eval (so far) */ |
79072805 LW |
824 | I32 blku_oldsp; /* stack pointer to copy stuff down to */ |
825 | COP * blku_oldcop; /* old curcop pointer */ | |
79072805 LW |
826 | I32 blku_oldmarksp; /* mark stack index */ |
827 | I32 blku_oldscopesp; /* scope stack index */ | |
828 | PMOP * blku_oldpm; /* values of pattern match vars */ | |
79072805 LW |
829 | |
830 | union { | |
831 | struct block_sub blku_sub; | |
f9c764c5 | 832 | struct block_format blku_format; |
79072805 LW |
833 | struct block_eval blku_eval; |
834 | struct block_loop blku_loop; | |
0d863452 | 835 | struct block_givwhen blku_givwhen; |
79072805 LW |
836 | } blk_u; |
837 | }; | |
838 | #define blk_oldsp cx_u.cx_blk.blku_oldsp | |
839 | #define blk_oldcop cx_u.cx_blk.blku_oldcop | |
79072805 LW |
840 | #define blk_oldmarksp cx_u.cx_blk.blku_oldmarksp |
841 | #define blk_oldscopesp cx_u.cx_blk.blku_oldscopesp | |
842 | #define blk_oldpm cx_u.cx_blk.blku_oldpm | |
843 | #define blk_gimme cx_u.cx_blk.blku_gimme | |
446d0787 | 844 | #define blk_u16 cx_u.cx_blk.blku_u16 |
79072805 | 845 | #define blk_sub cx_u.cx_blk.blk_u.blku_sub |
f9c764c5 | 846 | #define blk_format cx_u.cx_blk.blk_u.blku_format |
79072805 LW |
847 | #define blk_eval cx_u.cx_blk.blk_u.blku_eval |
848 | #define blk_loop cx_u.cx_blk.blk_u.blku_loop | |
0d863452 | 849 | #define blk_givwhen cx_u.cx_blk.blk_u.blku_givwhen |
79072805 | 850 | |
1c98cc53 | 851 | #define DEBUG_CX(action) \ |
d9f81b50 | 852 | DEBUG_l( \ |
1c98cc53 DM |
853 | Perl_deb(aTHX_ "CX %ld %s %s (scope %ld,%ld) at %s:%d\n", \ |
854 | (long)cxstack_ix, \ | |
855 | action, \ | |
856 | PL_block_type[CxTYPE(&cxstack[cxstack_ix])], \ | |
857 | (long)PL_scopestack_ix, \ | |
858 | (long)(cxstack[cxstack_ix].blk_oldscopesp), \ | |
d9f81b50 | 859 | __FILE__, __LINE__)); |
1c98cc53 | 860 | |
79072805 | 861 | /* Enter a block. */ |
8990e307 | 862 | #define PUSHBLOCK(cx,t,sp) CXINC, cx = &cxstack[cxstack_ix], \ |
79072805 | 863 | cx->cx_type = t, \ |
3280af22 NIS |
864 | cx->blk_oldsp = sp - PL_stack_base, \ |
865 | cx->blk_oldcop = PL_curcop, \ | |
1aff0e91 | 866 | cx->blk_oldmarksp = PL_markstack_ptr - PL_markstack, \ |
3280af22 | 867 | cx->blk_oldscopesp = PL_scopestack_ix, \ |
3280af22 | 868 | cx->blk_oldpm = PL_curpm, \ |
eb160463 | 869 | cx->blk_gimme = (U8)gimme; \ |
1c98cc53 | 870 | DEBUG_CX("PUSH"); |
79072805 LW |
871 | |
872 | /* Exit a block (RETURN and LAST). */ | |
1c98cc53 DM |
873 | #define POPBLOCK(cx,pm) \ |
874 | DEBUG_CX("POP"); \ | |
875 | cx = &cxstack[cxstack_ix--], \ | |
1aff0e91 | 876 | newsp = PL_stack_base + cx->blk_oldsp, \ |
3280af22 NIS |
877 | PL_curcop = cx->blk_oldcop, \ |
878 | PL_markstack_ptr = PL_markstack + cx->blk_oldmarksp, \ | |
879 | PL_scopestack_ix = cx->blk_oldscopesp, \ | |
3280af22 | 880 | pm = cx->blk_oldpm, \ |
1c98cc53 | 881 | gimme = cx->blk_gimme; |
79072805 LW |
882 | |
883 | /* Continue a block elsewhere (NEXT and REDO). */ | |
1c98cc53 DM |
884 | #define TOPBLOCK(cx) \ |
885 | DEBUG_CX("TOP"); \ | |
886 | cx = &cxstack[cxstack_ix], \ | |
1aff0e91 | 887 | PL_stack_sp = PL_stack_base + cx->blk_oldsp, \ |
3280af22 NIS |
888 | PL_markstack_ptr = PL_markstack + cx->blk_oldmarksp, \ |
889 | PL_scopestack_ix = cx->blk_oldscopesp, \ | |
1c98cc53 | 890 | PL_curpm = cx->blk_oldpm; |
79072805 LW |
891 | |
892 | /* substitution context */ | |
893 | struct subst { | |
446d0787 | 894 | U8 sbu_type; /* what kind of context this is */ |
1ed74d04 | 895 | U8 sbu_rflags; |
446d0787 | 896 | U16 sbu_rxtainted; /* matches struct block */ |
79072805 LW |
897 | I32 sbu_iters; |
898 | I32 sbu_maxiters; | |
4633a7c4 | 899 | I32 sbu_oldsave; |
79072805 LW |
900 | char * sbu_orig; |
901 | SV * sbu_dstr; | |
902 | SV * sbu_targ; | |
903 | char * sbu_s; | |
904 | char * sbu_m; | |
905 | char * sbu_strend; | |
c90c0ff4 | 906 | void * sbu_rxres; |
c07a80fd | 907 | REGEXP * sbu_rx; |
79072805 LW |
908 | }; |
909 | #define sb_iters cx_u.cx_subst.sbu_iters | |
910 | #define sb_maxiters cx_u.cx_subst.sbu_maxiters | |
22e551b9 | 911 | #define sb_rflags cx_u.cx_subst.sbu_rflags |
4633a7c4 | 912 | #define sb_oldsave cx_u.cx_subst.sbu_oldsave |
71be2cbc | 913 | #define sb_rxtainted cx_u.cx_subst.sbu_rxtainted |
79072805 LW |
914 | #define sb_orig cx_u.cx_subst.sbu_orig |
915 | #define sb_dstr cx_u.cx_subst.sbu_dstr | |
916 | #define sb_targ cx_u.cx_subst.sbu_targ | |
917 | #define sb_s cx_u.cx_subst.sbu_s | |
918 | #define sb_m cx_u.cx_subst.sbu_m | |
919 | #define sb_strend cx_u.cx_subst.sbu_strend | |
c90c0ff4 | 920 | #define sb_rxres cx_u.cx_subst.sbu_rxres |
c07a80fd | 921 | #define sb_rx cx_u.cx_subst.sbu_rx |
79072805 | 922 | |
9c105995 NC |
923 | #ifdef PERL_CORE |
924 | # define PUSHSUBST(cx) CXINC, cx = &cxstack[cxstack_ix], \ | |
79072805 LW |
925 | cx->sb_iters = iters, \ |
926 | cx->sb_maxiters = maxiters, \ | |
22e551b9 | 927 | cx->sb_rflags = r_flags, \ |
4633a7c4 | 928 | cx->sb_oldsave = oldsave, \ |
71be2cbc | 929 | cx->sb_rxtainted = rxtainted, \ |
79072805 LW |
930 | cx->sb_orig = orig, \ |
931 | cx->sb_dstr = dstr, \ | |
932 | cx->sb_targ = targ, \ | |
933 | cx->sb_s = s, \ | |
934 | cx->sb_m = m, \ | |
935 | cx->sb_strend = strend, \ | |
4608196e | 936 | cx->sb_rxres = NULL, \ |
c07a80fd | 937 | cx->sb_rx = rx, \ |
1ed74d04 | 938 | cx->cx_type = CXt_SUBST | (once ? CXp_ONCE : 0); \ |
e22ae1e2 | 939 | rxres_save(&cx->sb_rxres, rx); \ |
b69b0499 | 940 | (void)ReREFCNT_inc(rx) |
79072805 | 941 | |
9c105995 | 942 | # define POPSUBST(cx) cx = &cxstack[cxstack_ix--]; \ |
e22ae1e2 DM |
943 | rxres_free(&cx->sb_rxres); \ |
944 | ReREFCNT_dec(cx->sb_rx) | |
9c105995 NC |
945 | #endif |
946 | ||
947 | #define CxONCE(cx) ((cx)->cx_type & CXp_ONCE) | |
79072805 LW |
948 | |
949 | struct context { | |
79072805 LW |
950 | union { |
951 | struct block cx_blk; | |
952 | struct subst cx_subst; | |
953 | } cx_u; | |
954 | }; | |
2e0df0e8 | 955 | #define cx_type cx_u.cx_subst.sbu_type |
6b35e009 | 956 | |
76753e7f NC |
957 | /* If you re-order these, there is also an array of uppercase names in perl.h |
958 | and a static array of context names in pp_ctl.c */ | |
3701055e | 959 | #define CXTYPEMASK 0xf |
79072805 | 960 | #define CXt_NULL 0 |
76753e7f NC |
961 | #define CXt_WHEN 1 |
962 | #define CXt_BLOCK 2 | |
963 | /* When micro-optimising :-) keep GIVEN next to the LOOPs, as these 5 share a | |
964 | jump table in pp_ctl.c | |
965 | The first 4 don't have a 'case' in at least one switch statement in pp_ctl.c | |
966 | */ | |
967 | #define CXt_GIVEN 3 | |
c6fdafd0 | 968 | /* This is first so that CXt_LOOP_FOR|CXt_LOOP_LAZYIV is CXt_LOOP_LAZYIV */ |
76753e7f NC |
969 | #define CXt_LOOP_FOR 4 |
970 | #define CXt_LOOP_PLAIN 5 | |
971 | #define CXt_LOOP_LAZYSV 6 | |
972 | #define CXt_LOOP_LAZYIV 7 | |
973 | #define CXt_SUB 8 | |
974 | #define CXt_FORMAT 9 | |
975 | #define CXt_EVAL 10 | |
976 | #define CXt_SUBST 11 | |
977 | /* SUBST doesn't feature in all switch statements. */ | |
79072805 | 978 | |
3701055e NC |
979 | /* private flags for CXt_SUB and CXt_NULL |
980 | However, this is checked in many places which do not check the type, so | |
981 | this bit needs to be kept clear for most everything else. For reasons I | |
982 | haven't investigated, it can coexist with CXp_FOR_DEF */ | |
1f27d788 NC |
983 | #define CXp_MULTICALL 0x10 /* part of a multicall (so don't |
984 | tear down context on exit). */ | |
9850bf21 | 985 | |
ae423868 | 986 | /* private flags for CXt_SUB and CXt_FORMAT */ |
1f27d788 | 987 | #define CXp_HASARGS 0x20 |
b0065247 DM |
988 | #define CXp_SUB_RE 0x40 /* code called within regex, i.e. (?{}) */ |
989 | #define CXp_SUB_RE_FAKE 0x80 /* fake sub CX for (?{}) in current scope */ | |
ae423868 | 990 | |
6b35e009 | 991 | /* private flags for CXt_EVAL */ |
1f27d788 NC |
992 | #define CXp_REAL 0x20 /* truly eval'', not a lookalike */ |
993 | #define CXp_TRYBLOCK 0x40 /* eval{}, not eval'' or similar */ | |
6b35e009 | 994 | |
7766f137 | 995 | /* private flags for CXt_LOOP */ |
1f27d788 | 996 | #define CXp_FOR_DEF 0x10 /* foreach using $_ */ |
56b98d0f | 997 | #define CxPADLOOP(c) ((c)->blk_loop.my_op->op_targ) |
e846cb92 | 998 | |
1ed74d04 NC |
999 | /* private flags for CXt_SUBST */ |
1000 | #define CXp_ONCE 0x10 /* What was sbu_once in struct subst */ | |
7766f137 | 1001 | |
6b35e009 | 1002 | #define CxTYPE(c) ((c)->cx_type & CXTYPEMASK) |
76753e7f | 1003 | #define CxTYPE_is_LOOP(c) (((c)->cx_type & 0xC) == 0x4) |
9850bf21 RH |
1004 | #define CxMULTICALL(c) (((c)->cx_type & CXp_MULTICALL) \ |
1005 | == CXp_MULTICALL) | |
0588a150 | 1006 | #define CxREALEVAL(c) (((c)->cx_type & (CXTYPEMASK|CXp_REAL)) \ |
7766f137 | 1007 | == (CXt_EVAL|CXp_REAL)) |
0588a150 | 1008 | #define CxTRYBLOCK(c) (((c)->cx_type & (CXTYPEMASK|CXp_TRYBLOCK)) \ |
1d76a5c3 | 1009 | == (CXt_EVAL|CXp_TRYBLOCK)) |
3b719c58 NC |
1010 | #define CxFOREACH(c) (CxTYPE_is_LOOP(c) && CxTYPE(c) != CXt_LOOP_PLAIN) |
1011 | #define CxFOREACHDEF(c) ((CxTYPE_is_LOOP(c) && CxTYPE(c) != CXt_LOOP_PLAIN) \ | |
1012 | && ((c)->cx_type & CXp_FOR_DEF)) | |
6b35e009 | 1013 | |
109bf713 | 1014 | #define CXINC (cxstack_ix < cxstack_max ? ++cxstack_ix : (cxstack_ix = cxinc())) |
79072805 | 1015 | |
ccfc67b7 JH |
1016 | /* |
1017 | =head1 "Gimme" Values | |
1018 | */ | |
954c1994 GS |
1019 | |
1020 | /* | |
1021 | =for apidoc AmU||G_SCALAR | |
1022 | Used to indicate scalar context. See C<GIMME_V>, C<GIMME>, and | |
1023 | L<perlcall>. | |
1024 | ||
1025 | =for apidoc AmU||G_ARRAY | |
91e74348 | 1026 | Used to indicate list context. See C<GIMME_V>, C<GIMME> and |
954c1994 GS |
1027 | L<perlcall>. |
1028 | ||
1029 | =for apidoc AmU||G_VOID | |
1030 | Used to indicate void context. See C<GIMME_V> and L<perlcall>. | |
1031 | ||
1032 | =for apidoc AmU||G_DISCARD | |
1033 | Indicates that arguments returned from a callback should be discarded. See | |
1034 | L<perlcall>. | |
1035 | ||
1036 | =for apidoc AmU||G_EVAL | |
1037 | ||
1038 | Used to force a Perl C<eval> wrapper around a callback. See | |
1039 | L<perlcall>. | |
1040 | ||
1041 | =for apidoc AmU||G_NOARGS | |
1042 | ||
1043 | Indicates that no arguments are being sent to a callback. See | |
1044 | L<perlcall>. | |
1045 | ||
1046 | =cut | |
1047 | */ | |
1048 | ||
2f8edad0 NC |
1049 | #define G_SCALAR 2 |
1050 | #define G_ARRAY 3 | |
1051 | #define G_VOID 1 | |
1052 | #define G_WANT 3 | |
79072805 | 1053 | |
864dbfa3 | 1054 | /* extra flags for Perl_call_* routines */ |
2f8edad0 | 1055 | #define G_DISCARD 4 /* Call FREETMPS. |
b54b4831 NC |
1056 | Don't change this without consulting the |
1057 | hash actions codes defined in hv.h */ | |
2f8edad0 NC |
1058 | #define G_EVAL 8 /* Assume eval {} around subroutine call. */ |
1059 | #define G_NOARGS 16 /* Don't construct a @_ array. */ | |
7ce09284 | 1060 | #define G_KEEPERR 32 /* Warn for errors, don't overwrite $@ */ |
2f8edad0 NC |
1061 | #define G_NODEBUG 64 /* Disable debugging at toplevel. */ |
1062 | #define G_METHOD 128 /* Calling method. */ | |
c40f1585 | 1063 | #define G_FAKINGEVAL 256 /* Faking an eval context for call_sv or |
edb2152a | 1064 | fold_constants. */ |
67549bd2 NC |
1065 | #define G_UNDEF_FILL 512 /* Fill the stack with &PL_sv_undef |
1066 | A special case for UNSHIFT in | |
1067 | Perl_magic_methcall(). */ | |
d1d7a15d NC |
1068 | #define G_WRITING_TO_STDERR 1024 /* Perl_write_to_stderr() is calling |
1069 | Perl_magic_methcall(). */ | |
a1941760 | 1070 | #define G_RE_REPARSING 0x800 /* compiling a run-time /(?{..})/ */ |
c106c2be | 1071 | #define G_METHOD_NAMED 4096 /* calling named method, eg without :: or ' */ |
e336de0d | 1072 | |
faef0170 HS |
1073 | /* flag bits for PL_in_eval */ |
1074 | #define EVAL_NULL 0 /* not in an eval */ | |
1075 | #define EVAL_INEVAL 1 /* some enclosing scope is an eval */ | |
1076 | #define EVAL_WARNONLY 2 /* used by yywarn() when calling yyerror() */ | |
864dbfa3 | 1077 | #define EVAL_KEEPERR 4 /* set by Perl_call_sv if G_KEEPERR */ |
6dc8a9e4 | 1078 | #define EVAL_INREQUIRE 8 /* The code is being required. */ |
a1941760 | 1079 | #define EVAL_RE_REPARSING 0x10 /* eval_sv() called with G_RE_REPARSING */ |
faef0170 | 1080 | |
e336de0d GS |
1081 | /* Support for switching (stack and block) contexts. |
1082 | * This ensures magic doesn't invalidate local stack and cx pointers. | |
1083 | */ | |
1084 | ||
e788e7d3 GS |
1085 | #define PERLSI_UNKNOWN -1 |
1086 | #define PERLSI_UNDEF 0 | |
1087 | #define PERLSI_MAIN 1 | |
1088 | #define PERLSI_MAGIC 2 | |
1089 | #define PERLSI_SORT 3 | |
1090 | #define PERLSI_SIGNAL 4 | |
1091 | #define PERLSI_OVERLOAD 5 | |
1092 | #define PERLSI_DESTROY 6 | |
1093 | #define PERLSI_WARNHOOK 7 | |
1094 | #define PERLSI_DIEHOOK 8 | |
1095 | #define PERLSI_REQUIRE 9 | |
e336de0d GS |
1096 | |
1097 | struct stackinfo { | |
1098 | AV * si_stack; /* stack for current runlevel */ | |
1099 | PERL_CONTEXT * si_cxstack; /* context stack for runlevel */ | |
9bd87817 NC |
1100 | struct stackinfo * si_prev; |
1101 | struct stackinfo * si_next; | |
e336de0d GS |
1102 | I32 si_cxix; /* current context index */ |
1103 | I32 si_cxmax; /* maximum allocated index */ | |
1104 | I32 si_type; /* type of runlevel */ | |
ce2f7c3b | 1105 | I32 si_markoff; /* offset where markstack begins for us. |
e336de0d GS |
1106 | * currently used only with DEBUGGING, |
1107 | * but not #ifdef-ed for bincompat */ | |
1108 | }; | |
1109 | ||
1110 | typedef struct stackinfo PERL_SI; | |
1111 | ||
3280af22 NIS |
1112 | #define cxstack (PL_curstackinfo->si_cxstack) |
1113 | #define cxstack_ix (PL_curstackinfo->si_cxix) | |
1114 | #define cxstack_max (PL_curstackinfo->si_cxmax) | |
e336de0d GS |
1115 | |
1116 | #ifdef DEBUGGING | |
ce2f7c3b GS |
1117 | # define SET_MARK_OFFSET \ |
1118 | PL_curstackinfo->si_markoff = PL_markstack_ptr - PL_markstack | |
e336de0d | 1119 | #else |
ce2f7c3b | 1120 | # define SET_MARK_OFFSET NOOP |
e336de0d GS |
1121 | #endif |
1122 | ||
d3acc0f7 | 1123 | #define PUSHSTACKi(type) \ |
e336de0d | 1124 | STMT_START { \ |
3280af22 | 1125 | PERL_SI *next = PL_curstackinfo->si_next; \ |
1c98cc53 DM |
1126 | DEBUG_l({ \ |
1127 | int i = 0; PERL_SI *p = PL_curstackinfo; \ | |
1128 | while (p) { i++; p = p->si_prev; } \ | |
1129 | Perl_deb(aTHX_ "push STACKINFO %d at %s:%d\n", \ | |
1130 | i, __FILE__, __LINE__);}) \ | |
e336de0d GS |
1131 | if (!next) { \ |
1132 | next = new_stackinfo(32, 2048/sizeof(PERL_CONTEXT) - 1); \ | |
3280af22 NIS |
1133 | next->si_prev = PL_curstackinfo; \ |
1134 | PL_curstackinfo->si_next = next; \ | |
e336de0d GS |
1135 | } \ |
1136 | next->si_type = type; \ | |
1137 | next->si_cxix = -1; \ | |
1138 | AvFILLp(next->si_stack) = 0; \ | |
3280af22 NIS |
1139 | SWITCHSTACK(PL_curstack,next->si_stack); \ |
1140 | PL_curstackinfo = next; \ | |
ce2f7c3b | 1141 | SET_MARK_OFFSET; \ |
e336de0d GS |
1142 | } STMT_END |
1143 | ||
e788e7d3 | 1144 | #define PUSHSTACK PUSHSTACKi(PERLSI_UNKNOWN) |
d3acc0f7 | 1145 | |
3095d977 GS |
1146 | /* POPSTACK works with PL_stack_sp, so it may need to be bracketed by |
1147 | * PUTBACK/SPAGAIN to flush/refresh any local SP that may be active */ | |
d3acc0f7 | 1148 | #define POPSTACK \ |
e336de0d | 1149 | STMT_START { \ |
39644a26 | 1150 | dSP; \ |
c4420975 | 1151 | PERL_SI * const prev = PL_curstackinfo->si_prev; \ |
1c98cc53 DM |
1152 | DEBUG_l({ \ |
1153 | int i = -1; PERL_SI *p = PL_curstackinfo; \ | |
1154 | while (p) { i++; p = p->si_prev; } \ | |
1155 | Perl_deb(aTHX_ "pop STACKINFO %d at %s:%d\n", \ | |
1156 | i, __FILE__, __LINE__);}) \ | |
e336de0d | 1157 | if (!prev) { \ |
3d04513d | 1158 | Perl_croak_popstack(); \ |
e336de0d | 1159 | } \ |
3280af22 | 1160 | SWITCHSTACK(PL_curstack,prev->si_stack); \ |
e336de0d | 1161 | /* don't free prev here, free them all at the END{} */ \ |
3280af22 | 1162 | PL_curstackinfo = prev; \ |
e336de0d GS |
1163 | } STMT_END |
1164 | ||
1165 | #define POPSTACK_TO(s) \ | |
1166 | STMT_START { \ | |
3280af22 | 1167 | while (PL_curstack != s) { \ |
bac4b2ad | 1168 | dounwind(-1); \ |
d3acc0f7 | 1169 | POPSTACK; \ |
bac4b2ad | 1170 | } \ |
e336de0d | 1171 | } STMT_END |
923e4eb5 JH |
1172 | |
1173 | #define IN_PERL_COMPILETIME (PL_curcop == &PL_compiling) | |
1174 | #define IN_PERL_RUNTIME (PL_curcop != &PL_compiling) | |
1175 | ||
9850bf21 RH |
1176 | /* |
1177 | =head1 Multicall Functions | |
1178 | ||
1179 | =for apidoc Ams||dMULTICALL | |
0eda4409 | 1180 | Declare local variables for a multicall. See L<perlcall/LIGHTWEIGHT CALLBACKS>. |
9850bf21 RH |
1181 | |
1182 | =for apidoc Ams||PUSH_MULTICALL | |
1183 | Opening bracket for a lightweight callback. | |
0eda4409 | 1184 | See L<perlcall/LIGHTWEIGHT CALLBACKS>. |
9850bf21 RH |
1185 | |
1186 | =for apidoc Ams||MULTICALL | |
0eda4409 | 1187 | Make a lightweight callback. See L<perlcall/LIGHTWEIGHT CALLBACKS>. |
9850bf21 RH |
1188 | |
1189 | =for apidoc Ams||POP_MULTICALL | |
1190 | Closing bracket for a lightweight callback. | |
0eda4409 | 1191 | See L<perlcall/LIGHTWEIGHT CALLBACKS>. |
9850bf21 RH |
1192 | |
1193 | =cut | |
1194 | */ | |
1195 | ||
1196 | #define dMULTICALL \ | |
1197 | SV **newsp; /* set by POPBLOCK */ \ | |
1198 | PERL_CONTEXT *cx; \ | |
82f35e8b | 1199 | CV *multicall_cv; \ |
9850bf21 RH |
1200 | OP *multicall_cop; \ |
1201 | bool multicall_oldcatch; \ | |
1202 | U8 hasargs = 0 /* used by PUSHSUB */ | |
1203 | ||
82f35e8b | 1204 | #define PUSH_MULTICALL(the_cv) \ |
b0065247 | 1205 | PUSH_MULTICALL_FLAGS(the_cv, 0) |
81ed78b2 | 1206 | |
b0065247 DM |
1207 | /* Like PUSH_MULTICALL, but allows you to specify extra flags |
1208 | * for the CX stack entry (this isn't part of the public API) */ | |
81ed78b2 | 1209 | |
b0065247 | 1210 | #define PUSH_MULTICALL_FLAGS(the_cv, flags) \ |
9850bf21 | 1211 | STMT_START { \ |
0bcc34c2 AL |
1212 | CV * const _nOnclAshIngNamE_ = the_cv; \ |
1213 | CV * const cv = _nOnclAshIngNamE_; \ | |
b70d5558 | 1214 | PADLIST * const padlist = CvPADLIST(cv); \ |
9850bf21 RH |
1215 | ENTER; \ |
1216 | multicall_oldcatch = CATCH_GET; \ | |
1217 | SAVETMPS; SAVEVPTR(PL_op); \ | |
1218 | CATCH_SET(TRUE); \ | |
1bbbfc50 | 1219 | PUSHSTACKi(PERLSI_SORT); \ |
b0065247 | 1220 | PUSHBLOCK(cx, (CXt_SUB|CXp_MULTICALL|flags), PL_stack_sp); \ |
9850bf21 | 1221 | PUSHSUB(cx); \ |
b0065247 DM |
1222 | if (!(flags & CXp_SUB_RE_FAKE)) \ |
1223 | CvDEPTH(cv)++; \ | |
81ed78b2 | 1224 | if (CvDEPTH(cv) >= 2) { \ |
9850bf21 RH |
1225 | PERL_STACK_OVERFLOW_CHECK(); \ |
1226 | Perl_pad_push(aTHX_ padlist, CvDEPTH(cv)); \ | |
1227 | } \ | |
1228 | SAVECOMPPAD(); \ | |
1229 | PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv)); \ | |
82f35e8b | 1230 | multicall_cv = cv; \ |
9850bf21 RH |
1231 | multicall_cop = CvSTART(cv); \ |
1232 | } STMT_END | |
1233 | ||
1234 | #define MULTICALL \ | |
1235 | STMT_START { \ | |
1236 | PL_op = multicall_cop; \ | |
1237 | CALLRUNOPS(aTHX); \ | |
1238 | } STMT_END | |
1239 | ||
1240 | #define POP_MULTICALL \ | |
1241 | STMT_START { \ | |
3d26b81e DM |
1242 | cx = &cxstack[cxstack_ix]; \ |
1243 | if (! ((CvDEPTH(multicall_cv) = cx->blk_sub.olddepth)) ) { \ | |
81ed78b2 DM |
1244 | LEAVESUB(multicall_cv); \ |
1245 | } \ | |
9850bf21 | 1246 | POPBLOCK(cx,PL_curpm); \ |
1bbbfc50 | 1247 | POPSTACK; \ |
9850bf21 RH |
1248 | CATCH_SET(multicall_oldcatch); \ |
1249 | LEAVE; \ | |
1bbbfc50 | 1250 | SPAGAIN; \ |
9850bf21 | 1251 | } STMT_END |
b3ca2e83 | 1252 | |
81ed78b2 DM |
1253 | /* Change the CV of an already-pushed MULTICALL CxSUB block. |
1254 | * (this isn't part of the public API) */ | |
1255 | ||
b0065247 | 1256 | #define CHANGE_MULTICALL_FLAGS(the_cv, flags) \ |
81ed78b2 DM |
1257 | STMT_START { \ |
1258 | CV * const _nOnclAshIngNamE_ = the_cv; \ | |
1259 | CV * const cv = _nOnclAshIngNamE_; \ | |
b70d5558 | 1260 | PADLIST * const padlist = CvPADLIST(cv); \ |
81ed78b2 DM |
1261 | cx = &cxstack[cxstack_ix]; \ |
1262 | assert(cx->cx_type & CXp_MULTICALL); \ | |
1263 | if (! ((CvDEPTH(multicall_cv) = cx->blk_sub.olddepth)) ) { \ | |
1264 | LEAVESUB(multicall_cv); \ | |
1265 | } \ | |
b0065247 | 1266 | cx->cx_type = (CXt_SUB|CXp_MULTICALL|flags); \ |
81ed78b2 | 1267 | PUSHSUB(cx); \ |
b0065247 DM |
1268 | if (!(flags & CXp_SUB_RE_FAKE)) \ |
1269 | CvDEPTH(cv)++; \ | |
81ed78b2 DM |
1270 | if (CvDEPTH(cv) >= 2) { \ |
1271 | PERL_STACK_OVERFLOW_CHECK(); \ | |
1272 | Perl_pad_push(aTHX_ padlist, CvDEPTH(cv)); \ | |
1273 | } \ | |
1274 | SAVECOMPPAD(); \ | |
1275 | PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv)); \ | |
1276 | multicall_cv = cv; \ | |
1277 | multicall_cop = CvSTART(cv); \ | |
1278 | } STMT_END | |
b3ca2e83 NC |
1279 | /* |
1280 | * Local variables: | |
1281 | * c-indentation-style: bsd | |
1282 | * c-basic-offset: 4 | |
14d04a33 | 1283 | * indent-tabs-mode: nil |
b3ca2e83 NC |
1284 | * End: |
1285 | * | |
14d04a33 | 1286 | * ex: set ts=8 sts=4 sw=4 et: |
b3ca2e83 | 1287 | */ |