3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
9 * Control ops (cops) are one of the two ops OP_NEXTSTATE and OP_DBSTATE,
10 * that (loosely speaking) are statement separators.
11 * They hold information important for lexical state and error reporting.
12 * At run time, PL_curcop is set to point to the most recently executed cop,
13 * and thus can be used to determine our current state.
16 /* A jmpenv packages the state required to perform a proper non-local jump.
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
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
23 * null to ensure this).
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.
33 struct jmpenv * je_prev;
34 Sigjmp_buf je_buf; /* uninit if je_prev is NULL */
35 int je_ret; /* last exception thrown */
36 bool je_mustcatch; /* need to call longjmp()? */
37 U16 je_old_delaymagic; /* saved PL_delaymagic */
38 SSize_t je_old_stack_hwm;
41 typedef struct jmpenv JMPENV;
43 #if defined DEBUGGING && !defined DEBUGGING_RE_ONLY
44 # define JE_OLD_STACK_HWM_zero PL_start_env.je_old_stack_hwm = 0
45 # define JE_OLD_STACK_HWM_save(je) \
46 (je).je_old_stack_hwm = PL_curstackinfo->si_stack_hwm
47 # define JE_OLD_STACK_HWM_restore(je) \
48 if (PL_curstackinfo->si_stack_hwm < (je).je_old_stack_hwm) \
49 PL_curstackinfo->si_stack_hwm = (je).je_old_stack_hwm
51 # define JE_OLD_STACK_HWM_zero NOOP
52 # define JE_OLD_STACK_HWM_save(je) NOOP
53 # define JE_OLD_STACK_HWM_restore(je) NOOP
57 * How to build the first jmpenv.
59 * top_env needs to be non-zero. It points to an area
60 * in which longjmp() stuff is stored, as C callstack
61 * info there at least is thread specific this has to
62 * be per-thread. Otherwise a 'die' in a thread gives
63 * that thread the C stack of last thread to do an eval {}!
66 #define JMPENV_BOOTSTRAP \
68 PERL_POISON_EXPR(PoisonNew(&PL_start_env, 1, JMPENV));\
69 PL_top_env = &PL_start_env; \
70 PL_start_env.je_prev = NULL; \
71 PL_start_env.je_ret = -1; \
72 PL_start_env.je_mustcatch = TRUE; \
73 PL_start_env.je_old_delaymagic = 0; \
74 JE_OLD_STACK_HWM_zero; \
78 * PERL_FLEXIBLE_EXCEPTIONS
80 * All the flexible exceptions code has been removed.
81 * See the following threads for details:
83 * Message-Id: 20040713143217.GB1424@plum.flirble.org
84 * https://www.nntp.perl.org/group/perl.perl5.porters/2004/07/msg93041.html
86 * Joshua's original patches (which weren't applied) and discussion:
88 * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg01396.html
89 * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg01489.html
90 * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg01491.html
91 * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg01608.html
92 * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg02144.html
93 * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1998-02/msg02998.html
95 * Chip's reworked patch and discussion:
97 * http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/1999-03/msg00520.html
99 * The flaw in these patches (which went unnoticed at the time) was
100 * that they moved some code that could potentially die() out of the
101 * region protected by the setjmp()s. This caused exceptions within
102 * END blocks and such to not be handled by the correct setjmp().
104 * The original patches that introduces flexible exceptions were:
106 * https://github.com/Perl/perl5/commit/312caa8e97f1c7ee342a9895c2f0e749625b4929
107 * https://github.com/Perl/perl5/commit/14dd3ad8c9bf82cf09798a22cc89a9862dfd6d1a
111 #define dJMPENV JMPENV cur_env
113 #define JMPENV_PUSH(v) \
116 int i = 0; JMPENV *p = PL_top_env; \
117 while (p) { i++; p = p->je_prev; } \
118 Perl_deb(aTHX_ "JUMPENV_PUSH level=%d at %s:%d\n", \
119 i, __FILE__, __LINE__);}) \
120 cur_env.je_prev = PL_top_env; \
121 JE_OLD_STACK_HWM_save(cur_env); \
122 cur_env.je_ret = PerlProc_setjmp(cur_env.je_buf, SCOPE_SAVES_SIGNAL_MASK); \
123 JE_OLD_STACK_HWM_restore(cur_env); \
124 PL_top_env = &cur_env; \
125 cur_env.je_mustcatch = FALSE; \
126 cur_env.je_old_delaymagic = PL_delaymagic; \
127 (v) = cur_env.je_ret; \
133 int i = -1; JMPENV *p = PL_top_env; \
134 while (p) { i++; p = p->je_prev; } \
135 Perl_deb(aTHX_ "JUMPENV_POP level=%d at %s:%d\n", \
136 i, __FILE__, __LINE__);}) \
137 assert(PL_top_env == &cur_env); \
138 PL_delaymagic = cur_env.je_old_delaymagic; \
139 PL_top_env = cur_env.je_prev; \
142 #define JMPENV_JUMP(v) \
145 int i = -1; JMPENV *p = PL_top_env; \
146 while (p) { i++; p = p->je_prev; } \
147 Perl_deb(aTHX_ "JUMPENV_JUMP(%d) level=%d at %s:%d\n", \
148 (int)v, i, __FILE__, __LINE__);}) \
149 if (PL_top_env->je_prev) \
150 PerlProc_longjmp(PL_top_env->je_buf, (v)); \
152 PerlProc_exit(STATUS_EXIT); \
153 PerlIO_printf(PerlIO_stderr(), "panic: top_env, v=%d\n", (int)v); \
157 #define CATCH_GET (PL_top_env->je_mustcatch)
158 #define CATCH_SET(v) \
162 "JUMPLEVEL set catch %d => %d (for %p) at %s:%d\n", \
163 PL_top_env->je_mustcatch, v, (void*)PL_top_env, \
164 __FILE__, __LINE__);) \
165 PL_top_env->je_mustcatch = (v); \
169 =for apidoc_section $COP
172 typedef struct refcounted_he COPHH;
174 #define COPHH_KEY_UTF8 REFCOUNTED_HE_KEY_UTF8
177 =for apidoc Amx|SV *|cophh_fetch_pvn|const COPHH *cophh|const char *keypv|STRLEN keylen|U32 hash|U32 flags
179 Look up the entry in the cop hints hash C<cophh> with the key specified by
180 C<keypv> and C<keylen>. If C<flags> has the C<COPHH_KEY_UTF8> bit set,
181 the key octets are interpreted as UTF-8, otherwise they are interpreted
182 as Latin-1. C<hash> is a precomputed hash of the key string, or zero if
183 it has not been precomputed. Returns a mortal scalar copy of the value
184 associated with the key, or C<&PL_sv_placeholder> if there is no value
185 associated with the key.
187 =for apidoc Amnh||COPHH_KEY_UTF8
192 #define cophh_fetch_pvn(cophh, keypv, keylen, hash, flags) \
193 Perl_refcounted_he_fetch_pvn(aTHX_ cophh, keypv, keylen, hash, flags)
196 =for apidoc Amx|SV *|cophh_fetch_pvs|const COPHH *cophh|"key"|U32 flags
198 Like L</cophh_fetch_pvn>, but takes a literal string instead
199 of a string/length pair, and no precomputed hash.
204 #define cophh_fetch_pvs(cophh, key, flags) \
205 Perl_refcounted_he_fetch_pvn(aTHX_ cophh, STR_WITH_LEN(key), 0, flags)
208 =for apidoc Amx|SV *|cophh_fetch_pv|const COPHH *cophh|const char *key|U32 hash|U32 flags
210 Like L</cophh_fetch_pvn>, but takes a nul-terminated string instead of
211 a string/length pair.
216 #define cophh_fetch_pv(cophh, key, hash, flags) \
217 Perl_refcounted_he_fetch_pv(aTHX_ cophh, key, hash, flags)
220 =for apidoc Amx|SV *|cophh_fetch_sv|const COPHH *cophh|SV *key|U32 hash|U32 flags
222 Like L</cophh_fetch_pvn>, but takes a Perl scalar instead of a
228 #define cophh_fetch_sv(cophh, key, hash, flags) \
229 Perl_refcounted_he_fetch_sv(aTHX_ cophh, key, hash, flags)
232 =for apidoc Amx|HV *|cophh_2hv|const COPHH *cophh|U32 flags
234 Generates and returns a standard Perl hash representing the full set of
235 key/value pairs in the cop hints hash C<cophh>. C<flags> is currently
236 unused and must be zero.
241 #define cophh_2hv(cophh, flags) \
242 Perl_refcounted_he_chain_2hv(aTHX_ cophh, flags)
245 =for apidoc Amx|COPHH *|cophh_copy|COPHH *cophh
247 Make and return a complete copy of the cop hints hash C<cophh>.
252 #define cophh_copy(cophh) Perl_refcounted_he_inc(aTHX_ cophh)
255 =for apidoc Amx|void|cophh_free|COPHH *cophh
257 Discard the cop hints hash C<cophh>, freeing all resources associated
263 #define cophh_free(cophh) Perl_refcounted_he_free(aTHX_ cophh)
266 =for apidoc Amx|COPHH *|cophh_new_empty
268 Generate and return a fresh cop hints hash containing no entries.
273 #define cophh_new_empty() ((COPHH *)NULL)
276 =for apidoc Amx|COPHH *|cophh_store_pvn|COPHH *cophh|const char *keypv|STRLEN keylen|U32 hash|SV *value|U32 flags
278 Stores a value, associated with a key, in the cop hints hash C<cophh>,
279 and returns the modified hash. The returned hash pointer is in general
280 not the same as the hash pointer that was passed in. The input hash is
281 consumed by the function, and the pointer to it must not be subsequently
282 used. Use L</cophh_copy> if you need both hashes.
284 The key is specified by C<keypv> and C<keylen>. If C<flags> has the
285 C<COPHH_KEY_UTF8> bit set, the key octets are interpreted as UTF-8,
286 otherwise they are interpreted as Latin-1. C<hash> is a precomputed
287 hash of the key string, or zero if it has not been precomputed.
289 C<value> is the scalar value to store for this key. C<value> is copied
290 by this function, which thus does not take ownership of any reference
291 to it, and later changes to the scalar will not be reflected in the
292 value visible in the cop hints hash. Complex types of scalar will not
293 be stored with referential integrity, but will be coerced to strings.
298 #define cophh_store_pvn(cophh, keypv, keylen, hash, value, flags) \
299 Perl_refcounted_he_new_pvn(aTHX_ cophh, keypv, keylen, hash, value, flags)
302 =for apidoc Amx|COPHH *|cophh_store_pvs|COPHH *cophh|"key"|SV *value|U32 flags
304 Like L</cophh_store_pvn>, but takes a literal string instead
305 of a string/length pair, and no precomputed hash.
310 #define cophh_store_pvs(cophh, key, value, flags) \
311 Perl_refcounted_he_new_pvn(aTHX_ cophh, STR_WITH_LEN(key), 0, value, flags)
314 =for apidoc Amx|COPHH *|cophh_store_pv|COPHH *cophh|const char *key|U32 hash|SV *value|U32 flags
316 Like L</cophh_store_pvn>, but takes a nul-terminated string instead of
317 a string/length pair.
322 #define cophh_store_pv(cophh, key, hash, value, flags) \
323 Perl_refcounted_he_new_pv(aTHX_ cophh, key, hash, value, flags)
326 =for apidoc Amx|COPHH *|cophh_store_sv|COPHH *cophh|SV *key|U32 hash|SV *value|U32 flags
328 Like L</cophh_store_pvn>, but takes a Perl scalar instead of a
334 #define cophh_store_sv(cophh, key, hash, value, flags) \
335 Perl_refcounted_he_new_sv(aTHX_ cophh, key, hash, value, flags)
338 =for apidoc Amx|COPHH *|cophh_delete_pvn|COPHH *cophh|const char *keypv|STRLEN keylen|U32 hash|U32 flags
340 Delete a key and its associated value from the cop hints hash C<cophh>,
341 and returns the modified hash. The returned hash pointer is in general
342 not the same as the hash pointer that was passed in. The input hash is
343 consumed by the function, and the pointer to it must not be subsequently
344 used. Use L</cophh_copy> if you need both hashes.
346 The key is specified by C<keypv> and C<keylen>. If C<flags> has the
347 C<COPHH_KEY_UTF8> bit set, the key octets are interpreted as UTF-8,
348 otherwise they are interpreted as Latin-1. C<hash> is a precomputed
349 hash of the key string, or zero if it has not been precomputed.
354 #define cophh_delete_pvn(cophh, keypv, keylen, hash, flags) \
355 Perl_refcounted_he_new_pvn(aTHX_ cophh, keypv, keylen, hash, \
359 =for apidoc Amx|COPHH *|cophh_delete_pvs|COPHH *cophh|"key"|U32 flags
361 Like L</cophh_delete_pvn>, but takes a literal string instead
362 of a string/length pair, and no precomputed hash.
367 #define cophh_delete_pvs(cophh, key, flags) \
368 Perl_refcounted_he_new_pvn(aTHX_ cophh, STR_WITH_LEN(key), 0, \
372 =for apidoc Amx|COPHH *|cophh_delete_pv|COPHH *cophh|char *key|U32 hash|U32 flags
374 Like L</cophh_delete_pvn>, but takes a nul-terminated string instead of
375 a string/length pair.
380 #define cophh_delete_pv(cophh, key, hash, flags) \
381 Perl_refcounted_he_new_pv(aTHX_ cophh, key, hash, (SV *)NULL, flags)
384 =for apidoc Amx|COPHH *|cophh_delete_sv|COPHH *cophh|SV *key|U32 hash|U32 flags
386 Like L</cophh_delete_pvn>, but takes a Perl scalar instead of a
392 #define cophh_delete_sv(cophh, key, hash, flags) \
393 Perl_refcounted_he_new_sv(aTHX_ cophh, key, hash, (SV *)NULL, flags)
395 #include "mydtrace.h"
399 /* On LP64 putting this here takes advantage of the fact that BASEOP isn't
400 an exact multiple of 8 bytes to save structure padding. */
401 line_t cop_line; /* line # of this command */
402 /* label for this construct is now stored in cop_hints_hash */
404 PADOFFSET cop_stashoff; /* offset into PL_stashpad, for the
405 package the line was compiled in */
406 char * cop_file; /* name of file this command is from */
408 HV * cop_stash; /* package line was compiled in */
409 GV * cop_filegv; /* name of GV file this command is from */
411 U32 cop_hints; /* hints bits from pragmata */
412 U32 cop_seq; /* parse sequence number */
413 /* Beware. mg.c and warnings.pl assume the type of this is STRLEN *: */
414 STRLEN * cop_warnings; /* lexical warnings bitmask */
415 /* compile time state of %^H. See the comment in op.c for how this is
416 used to recreate a hash to return from caller. */
417 COPHH * cop_hints_hash;
418 /* for now just a bitmask stored here.
419 If we get sufficient features this may become a pointer.
420 How these flags are stored is subject to change without
421 notice. Use the macros to test for features.
427 =for apidoc Am|const char *|CopFILE|const COP * c
428 Returns the name of the file associated with the C<COP> C<c>
430 =for apidoc Am|STRLEN|CopLINE|const COP * c
431 Returns the line number in the source code associated with the C<COP> C<c>
433 =for apidoc Am|AV *|CopFILEAV|const COP * c
434 Returns the AV associated with the C<COP> C<c>
436 =for apidoc Am|SV *|CopFILESV|const COP * c
437 Returns the SV associated with the C<COP> C<c>
439 =for apidoc Am|void|CopFILE_set|COP * c|const char * pv
440 Makes C<pv> the name of the file associated with the C<COP> C<c>
442 =for apidoc Am|GV *|CopFILEGV|const COP * c
443 Returns the GV associated with the C<COP> C<c>
445 =for apidoc CopFILEGV_set
446 Available only on unthreaded perls. Makes C<pv> the name of the file
447 associated with the C<COP> C<c>
449 =for apidoc Am|HV *|CopSTASH|const COP * c
450 Returns the stash associated with C<c>.
452 =for apidoc Am|bool|CopSTASH_eq|const COP * c|const HV * hv
453 Returns a boolean as to whether or not C<hv> is the stash associated with C<c>.
455 =for apidoc Am|bool|CopSTASH_set|COP * c|HV * hv
456 Set the stash associated with C<c> to C<hv>.
458 =for apidoc Am|char *|CopSTASHPV|const COP * c
459 Returns the package name of the stash associated with C<c>, or C<NULL> if no
462 =for apidoc Am|void|CopSTASHPV_set|COP * c|const char * pv
463 Set the package name of the stash associated with C<c>, to the NUL-terminated C
464 string C<p>, creating the package if necessary.
470 # define CopFILE(c) ((c)->cop_file)
471 # define CopFILEGV(c) (CopFILE(c) \
472 ? gv_fetchfile(CopFILE(c)) : NULL)
475 # define CopFILE_set(c,pv) ((c)->cop_file = savepv(pv))
476 # define CopFILE_setn(c,pv,l) ((c)->cop_file = savepvn((pv),(l)))
478 # define CopFILE_set(c,pv) ((c)->cop_file = savesharedpv(pv))
479 # define CopFILE_setn(c,pv,l) ((c)->cop_file = savesharedpvn((pv),(l)))
482 # define CopFILESV(c) (CopFILE(c) \
483 ? GvSV(gv_fetchfile(CopFILE(c))) : NULL)
484 # define CopFILEAV(c) (CopFILE(c) \
485 ? GvAV(gv_fetchfile(CopFILE(c))) : NULL)
486 # define CopFILEAVx(c) (assert_(CopFILE(c)) \
487 GvAV(gv_fetchfile(CopFILE(c))))
489 # define CopSTASH(c) PL_stashpad[(c)->cop_stashoff]
490 # define CopSTASH_set(c,hv) ((c)->cop_stashoff = (hv) \
491 ? alloccopstash(hv) \
494 # define CopFILE_free(c) SAVECOPFILE_FREE(c)
496 # define CopFILE_free(c) (PerlMemShared_free(CopFILE(c)),(CopFILE(c) = NULL))
498 #else /* Above: no threads; Below yes threads */
499 # define CopFILEGV(c) ((c)->cop_filegv)
500 # define CopFILEGV_set(c,gv) ((c)->cop_filegv = (GV*)SvREFCNT_inc(gv))
501 # define CopFILE_set(c,pv) CopFILEGV_set((c), gv_fetchfile(pv))
502 # define CopFILE_setn(c,pv,l) CopFILEGV_set((c), gv_fetchfile_flags((pv),(l),0))
503 # define CopFILESV(c) (CopFILEGV(c) ? GvSV(CopFILEGV(c)) : NULL)
504 # define CopFILEAV(c) (CopFILEGV(c) ? GvAV(CopFILEGV(c)) : NULL)
506 # define CopFILEAVx(c) (assert(CopFILEGV(c)), GvAV(CopFILEGV(c)))
508 # define CopFILEAVx(c) (GvAV(CopFILEGV(c)))
510 # define CopFILE(c) (CopFILEGV(c) /* +2 for '_<' */ \
511 ? GvNAME(CopFILEGV(c))+2 : NULL)
512 # define CopSTASH(c) ((c)->cop_stash)
513 # define CopSTASH_set(c,hv) ((c)->cop_stash = (hv))
514 # define CopFILE_free(c) (SvREFCNT_dec(CopFILEGV(c)),(CopFILEGV(c) = NULL))
516 #endif /* USE_ITHREADS */
518 #define CopSTASHPV(c) (CopSTASH(c) ? HvNAME_get(CopSTASH(c)) : NULL)
519 /* cop_stash is not refcounted */
520 #define CopSTASHPV_set(c,pv) CopSTASH_set((c), gv_stashpv(pv,GV_ADD))
521 #define CopSTASH_eq(c,hv) (CopSTASH(c) == (hv))
523 #define CopHINTHASH_get(c) ((COPHH*)((c)->cop_hints_hash))
524 #define CopHINTHASH_set(c,h) ((c)->cop_hints_hash = (h))
527 =for apidoc Am|SV *|cop_hints_fetch_pvn|const COP *cop|const char *keypv|STRLEN keylen|U32 hash|U32 flags
529 Look up the hint entry in the cop C<cop> with the key specified by
530 C<keypv> and C<keylen>. If C<flags> has the C<COPHH_KEY_UTF8> bit set,
531 the key octets are interpreted as UTF-8, otherwise they are interpreted
532 as Latin-1. C<hash> is a precomputed hash of the key string, or zero if
533 it has not been precomputed. Returns a mortal scalar copy of the value
534 associated with the key, or C<&PL_sv_placeholder> if there is no value
535 associated with the key.
540 #define cop_hints_fetch_pvn(cop, keypv, keylen, hash, flags) \
541 cophh_fetch_pvn(CopHINTHASH_get(cop), keypv, keylen, hash, flags)
544 =for apidoc Am|SV *|cop_hints_fetch_pvs|const COP *cop|"key"|U32 flags
546 Like L</cop_hints_fetch_pvn>, but takes a literal string
547 instead of a string/length pair, and no precomputed hash.
552 #define cop_hints_fetch_pvs(cop, key, flags) \
553 cophh_fetch_pvs(CopHINTHASH_get(cop), key, flags)
556 =for apidoc Am|SV *|cop_hints_fetch_pv|const COP *cop|const char *key|U32 hash|U32 flags
558 Like L</cop_hints_fetch_pvn>, but takes a nul-terminated string instead
559 of a string/length pair.
564 #define cop_hints_fetch_pv(cop, key, hash, flags) \
565 cophh_fetch_pv(CopHINTHASH_get(cop), key, hash, flags)
568 =for apidoc Am|SV *|cop_hints_fetch_sv|const COP *cop|SV *key|U32 hash|U32 flags
570 Like L</cop_hints_fetch_pvn>, but takes a Perl scalar instead of a
576 #define cop_hints_fetch_sv(cop, key, hash, flags) \
577 cophh_fetch_sv(CopHINTHASH_get(cop), key, hash, flags)
580 =for apidoc Am|HV *|cop_hints_2hv|const COP *cop|U32 flags
582 Generates and returns a standard Perl hash representing the full set of
583 hint entries in the cop C<cop>. C<flags> is currently unused and must
589 #define cop_hints_2hv(cop, flags) \
590 cophh_2hv(CopHINTHASH_get(cop), flags)
593 =for apidoc Am|const char *|CopLABEL|COP *const cop
595 Returns the label attached to a cop.
597 =for apidoc Am|const char *|CopLABEL_len|COP *const cop|STRLEN *len
599 Returns the label attached to a cop, and stores its length in bytes into
602 =for apidoc Am|const char *|CopLABEL_len_flags|COP *const cop|STRLEN *len|U32 *flags
604 Returns the label attached to a cop, and stores its length in bytes into
605 C<*len>. Upon return, C<*flags> will be set to either C<SVf_UTF8> or 0.
610 #define CopLABEL(c) Perl_cop_fetch_label(aTHX_ (c), NULL, NULL)
611 #define CopLABEL_len(c,len) Perl_cop_fetch_label(aTHX_ (c), len, NULL)
612 #define CopLABEL_len_flags(c,len,flags) Perl_cop_fetch_label(aTHX_ (c), len, flags)
613 #define CopLABEL_alloc(pv) ((pv)?savepv(pv):NULL)
615 #define CopSTASH_ne(c,hv) (!CopSTASH_eq(c,hv))
616 #define CopLINE(c) ((c)->cop_line)
617 #define CopLINE_inc(c) (++CopLINE(c))
618 #define CopLINE_dec(c) (--CopLINE(c))
619 #define CopLINE_set(c,l) (CopLINE(c) = (l))
621 /* OutCopFILE() is CopFILE for output (caller, die, warn, etc.) */
622 #define OutCopFILE(c) CopFILE(c)
624 #define CopHINTS_get(c) ((c)->cop_hints + 0)
625 #define CopHINTS_set(c, h) STMT_START { \
626 (c)->cop_hints = (h); \
630 * Here we have some enormously heavy (or at least ponderous) wizardry.
633 /* subroutine context */
635 OP * retop; /* op to execute on exit from sub */
636 I32 old_cxsubix; /* previous value of si_cxsubix */
637 /* Above here is the same for sub, format and eval. */
638 PAD *prevcomppad; /* the caller's PL_comppad */
640 /* Above here is the same for sub and format. */
647 struct block_format {
648 OP * retop; /* op to execute on exit from sub */
649 I32 old_cxsubix; /* previous value of si_cxsubix */
650 /* Above here is the same for sub, format and eval. */
651 PAD *prevcomppad; /* the caller's PL_comppad */
653 /* Above here is the same for sub and format. */
658 /* return a pointer to the current context */
660 #define CX_CUR() (&cxstack[cxstack_ix])
662 /* free all savestack items back to the watermark of the specified context */
664 #define CX_LEAVE_SCOPE(cx) LEAVE_SCOPE(cx->blk_oldsaveix)
667 /* on debugging builds, poison cx afterwards so we know no code
668 * uses it - because after doing cxstack_ix--, any ties, exceptions etc
669 * may overwrite the current stack frame */
670 # define CX_POP(cx) \
671 assert(CX_CUR() == cx); \
675 # define CX_POP(cx) cxstack_ix--;
678 #define CX_PUSHSUB_GET_LVALUE_MASK(func) \
679 /* If the context is indeterminate, then only the lvalue */ \
680 /* flags that the caller also has are applicable. */ \
682 (PL_op->op_flags & OPf_WANT) \
683 ? OPpENTERSUB_LVAL_MASK \
684 : !(PL_op->op_private & OPpENTERSUB_LVAL_MASK) \
685 ? 0 : (U8)func(aTHX) \
689 #define CX_POP_SAVEARRAY(cx) \
691 AV *cx_pop_savearray_av = GvAV(PL_defgv); \
692 GvAV(PL_defgv) = cx->blk_sub.savearray; \
693 cx->blk_sub.savearray = NULL; \
694 SvREFCNT_dec(cx_pop_savearray_av); \
697 /* junk in @_ spells trouble when cloning CVs and in pp_caller(), so don't
698 * leave any (a fast av_clear(ary), basically) */
699 #define CLEAR_ARGARRAY(ary) \
701 AvMAX(ary) += AvARRAY(ary) - AvALLOC(ary); \
702 AvARRAY(ary) = AvALLOC(ary); \
709 OP * retop; /* op to execute on exit from eval */
710 I32 old_cxsubix; /* previous value of si_cxsubix */
711 /* Above here is the same for sub, format and eval. */
716 JMPENV * cur_top_env; /* value of PL_top_env when eval CX created */
719 /* If we ever need more than 512 op types, change the shift from 7.
720 blku_gimme is actually also only 2 bits, so could be merged with something.
723 /* blk_u16 bit usage for eval contexts: */
725 #define CxOLD_IN_EVAL(cx) (((cx)->blk_u16) & 0x3F) /* saved PL in_eval */
726 #define CxEVAL_TXT_REFCNTED(cx) (((cx)->blk_u16) & 0x40) /* cur_text rc++ */
727 #define CxOLD_OP_TYPE(cx) (((cx)->blk_u16) >> 7) /* type of eval op */
731 LOOP * my_op; /* My op, that contains redo, next and last ops. */
732 union { /* different ways of locating the iteration variable */
733 SV **svp; /* for lexicals: address of pad slot */
734 GV *gv; /* for package vars */
736 SV *itersave; /* the original iteration var */
738 struct { /* CXt_LOOP_ARY, C<for (@ary)> */
739 AV *ary; /* array being iterated over */
740 IV ix; /* index relative to base of array */
742 struct { /* CXt_LOOP_LIST, C<for (list)> */
743 I32 basesp; /* first element of list on stack */
744 IV ix; /* index relative to basesp */
746 struct { /* CXt_LOOP_LAZYIV, C<for (1..9)> */
750 struct { /* CXt_LOOP_LAZYSV C<for ('a'..'z')> */
752 SV * end; /* maxiumum value (or minimum in reverse) */
756 PAD *oldcomppad; /* needed to map itervar_u.svp during thread clone */
760 #define CxITERVAR(c) \
762 ? (c)->blk_loop.itervar_u.svp \
763 : ((c)->cx_type & CXp_FOR_GV) \
764 ? &GvSV((c)->blk_loop.itervar_u.gv) \
765 : (SV **)&(c)->blk_loop.itervar_u.gv)
767 #define CxLABEL(c) (0 + CopLABEL((c)->blk_oldcop))
768 #define CxLABEL_len(c,len) (0 + CopLABEL_len((c)->blk_oldcop, len))
769 #define CxLABEL_len_flags(c,len,flags) (0 + CopLABEL_len_flags((c)->blk_oldcop, len, flags))
770 #define CxHASARGS(c) (((c)->cx_type & CXp_HASARGS) == CXp_HASARGS)
772 /* CxLVAL(): the lval flags of the call site: the relevant flag bits from
773 * the op_private field of the calling pp_entersub (or its caller's caller
774 * if the caller's lvalue context isn't known):
775 * OPpLVAL_INTRO: sub used in lvalue context, e.g. f() = 1;
776 * OPpENTERSUB_INARGS (in conjunction with OPpLVAL_INTRO): the
777 * function is being used as a sub arg or as a referent, e.g.
778 * g(...,f(),...) or $r = \f()
779 * OPpDEREF: 2-bit mask indicating e.g. f()->[0].
780 * Note the contrast with CvLVALUE(), which is a property of the sub
781 * rather than the call site.
783 #define CxLVAL(c) (0 + ((c)->blk_u16 & 0xff))
787 /* given/when context */
788 struct block_givwhen {
790 SV *defsv_save; /* the original $_ */
795 /* context common to subroutines, evals and loops */
797 U8 blku_type; /* what kind of context this is */
798 U8 blku_gimme; /* is this block running in list context? */
799 U16 blku_u16; /* used by block_sub and block_eval (so far) */
800 I32 blku_oldsaveix; /* saved PL_savestack_ix */
801 /* all the fields above must be aligned with same-sized fields as sbu */
802 I32 blku_oldsp; /* current sp floor: where nextstate pops to */
803 I32 blku_oldmarksp; /* mark stack index */
804 COP * blku_oldcop; /* old curcop pointer */
805 PMOP * blku_oldpm; /* values of pattern match vars */
806 SSize_t blku_old_tmpsfloor; /* saved PL_tmps_floor */
807 I32 blku_oldscopesp; /* scope stack index */
810 struct block_sub blku_sub;
811 struct block_format blku_format;
812 struct block_eval blku_eval;
813 struct block_loop blku_loop;
814 struct block_givwhen blku_givwhen;
817 #define blk_oldsp cx_u.cx_blk.blku_oldsp
818 #define blk_oldcop cx_u.cx_blk.blku_oldcop
819 #define blk_oldmarksp cx_u.cx_blk.blku_oldmarksp
820 #define blk_oldscopesp cx_u.cx_blk.blku_oldscopesp
821 #define blk_oldpm cx_u.cx_blk.blku_oldpm
822 #define blk_gimme cx_u.cx_blk.blku_gimme
823 #define blk_u16 cx_u.cx_blk.blku_u16
824 #define blk_oldsaveix cx_u.cx_blk.blku_oldsaveix
825 #define blk_old_tmpsfloor cx_u.cx_blk.blku_old_tmpsfloor
826 #define blk_sub cx_u.cx_blk.blk_u.blku_sub
827 #define blk_format cx_u.cx_blk.blk_u.blku_format
828 #define blk_eval cx_u.cx_blk.blk_u.blku_eval
829 #define blk_loop cx_u.cx_blk.blk_u.blku_loop
830 #define blk_givwhen cx_u.cx_blk.blk_u.blku_givwhen
832 #define CX_DEBUG(cx, action) \
834 Perl_deb(aTHX_ "CX %ld %s %s (scope %ld,%ld) (save %ld,%ld) at %s:%d\n",\
837 PL_block_type[CxTYPE(cx)], \
838 (long)PL_scopestack_ix, \
839 (long)(cx->blk_oldscopesp), \
840 (long)PL_savestack_ix, \
841 (long)(cx->blk_oldsaveix), \
842 __FILE__, __LINE__));
846 /* substitution context */
848 U8 sbu_type; /* same as blku_type */
851 I32 sbu_oldsaveix; /* same as blku_oldsaveix */
852 /* all the fields above must be aligned with same-sized fields as blk_u */
854 SSize_t sbu_maxiters;
867 #define sb_iters cx_u.cx_subst.sbu_iters
868 #define sb_maxiters cx_u.cx_subst.sbu_maxiters
869 #define sb_rflags cx_u.cx_subst.sbu_rflags
870 #define sb_rxtainted cx_u.cx_subst.sbu_rxtainted
871 #define sb_orig cx_u.cx_subst.sbu_orig
872 #define sb_dstr cx_u.cx_subst.sbu_dstr
873 #define sb_targ cx_u.cx_subst.sbu_targ
874 #define sb_s cx_u.cx_subst.sbu_s
875 #define sb_m cx_u.cx_subst.sbu_m
876 #define sb_strend cx_u.cx_subst.sbu_strend
877 #define sb_rxres cx_u.cx_subst.sbu_rxres
878 #define sb_rx cx_u.cx_subst.sbu_rx
880 # define CX_PUSHSUBST(cx) CXINC, cx = CX_CUR(), \
881 cx->blk_oldsaveix = oldsave, \
882 cx->sb_iters = iters, \
883 cx->sb_maxiters = maxiters, \
884 cx->sb_rflags = r_flags, \
885 cx->sb_rxtainted = rxtainted, \
886 cx->sb_orig = orig, \
887 cx->sb_dstr = dstr, \
888 cx->sb_targ = targ, \
891 cx->sb_strend = strend, \
892 cx->sb_rxres = NULL, \
894 cx->cx_type = CXt_SUBST | (once ? CXp_ONCE : 0); \
895 rxres_save(&cx->sb_rxres, rx); \
896 (void)ReREFCNT_inc(rx); \
897 SvREFCNT_inc_void_NN(targ)
899 # define CX_POPSUBST(cx) \
902 assert(CxTYPE(cx) == CXt_SUBST); \
903 rxres_free(&cx->sb_rxres); \
907 SvREFCNT_dec_NN(cx->sb_targ); \
911 #define CxONCE(cx) ((cx)->cx_type & CXp_ONCE)
916 struct subst cx_subst;
919 #define cx_type cx_u.cx_subst.sbu_type
921 /* If you re-order these, there is also an array of uppercase names in perl.h
922 and a static array of context names in pp_ctl.c */
923 #define CXTYPEMASK 0xf
924 #define CXt_NULL 0 /* currently only used for sort BLOCK */
927 /* When micro-optimising :-) keep GIVEN next to the LOOPs, as these 5 share a
928 jump table in pp_ctl.c
929 The first 4 don't have a 'case' in at least one switch statement in pp_ctl.c
933 /* be careful of the ordering of these five. Macros like CxTYPE_is_LOOP,
934 * CxFOREACH compare ranges */
935 #define CXt_LOOP_ARY 4 /* for (@ary) { ...; } */
936 #define CXt_LOOP_LAZYSV 5 /* for ('a'..'z') { ...; } */
937 #define CXt_LOOP_LAZYIV 6 /* for (1..9) { ...; } */
938 #define CXt_LOOP_LIST 7 /* for (1,2,3) { ...; } */
939 #define CXt_LOOP_PLAIN 8 /* while (...) { ...; }
940 or plain block { ...; } */
942 #define CXt_FORMAT 10
945 /* SUBST doesn't feature in all switch statements. */
947 /* private flags for CXt_SUB and CXt_FORMAT */
948 #define CXp_MULTICALL 0x10 /* part of a multicall (so don't tear down
949 context on exit). (not CXt_FORMAT) */
950 #define CXp_HASARGS 0x20
951 #define CXp_SUB_RE 0x40 /* code called within regex, i.e. (?{}) */
952 #define CXp_SUB_RE_FAKE 0x80 /* fake sub CX for (?{}) in current scope */
954 /* private flags for CXt_EVAL */
955 #define CXp_REAL 0x20 /* truly eval'', not a lookalike */
956 #define CXp_TRYBLOCK 0x40 /* eval{}, not eval'' or similar */
958 /* private flags for CXt_LOOP */
960 /* this is only set in conjunction with CXp_FOR_GV */
961 #define CXp_FOR_DEF 0x10 /* foreach using $_ */
962 /* these 3 are mutually exclusive */
963 #define CXp_FOR_LVREF 0x20 /* foreach using \$var */
964 #define CXp_FOR_GV 0x40 /* foreach using package var */
965 #define CXp_FOR_PAD 0x80 /* foreach using lexical var */
967 #define CxPADLOOP(c) ((c)->cx_type & CXp_FOR_PAD)
969 /* private flags for CXt_SUBST */
970 #define CXp_ONCE 0x10 /* What was sbu_once in struct subst */
972 #define CxTYPE(c) ((c)->cx_type & CXTYPEMASK)
973 #define CxTYPE_is_LOOP(c) ( CxTYPE(cx) >= CXt_LOOP_ARY \
974 && CxTYPE(cx) <= CXt_LOOP_PLAIN)
975 #define CxMULTICALL(c) ((c)->cx_type & CXp_MULTICALL)
976 #define CxREALEVAL(c) (((c)->cx_type & (CXTYPEMASK|CXp_REAL)) \
977 == (CXt_EVAL|CXp_REAL))
978 #define CxTRYBLOCK(c) (((c)->cx_type & (CXTYPEMASK|CXp_TRYBLOCK)) \
979 == (CXt_EVAL|CXp_TRYBLOCK))
980 #define CxFOREACH(c) ( CxTYPE(cx) >= CXt_LOOP_ARY \
981 && CxTYPE(cx) <= CXt_LOOP_LIST)
983 #define CXINC (cxstack_ix < cxstack_max ? ++cxstack_ix : (cxstack_ix = cxinc()))
990 /* extra flags for Perl_call_* routines */
991 #define G_DISCARD 0x4 /* Call FREETMPS.
992 Don't change this without consulting the
993 hash actions codes defined in hv.h */
994 #define G_EVAL 0x8 /* Assume eval {} around subroutine call. */
995 #define G_NOARGS 0x10 /* Don't construct a @_ array. */
996 #define G_KEEPERR 0x20 /* Warn for errors, don't overwrite $@ */
997 #define G_NODEBUG 0x40 /* Disable debugging at toplevel. */
998 #define G_METHOD 0x80 /* Calling method. */
999 #define G_FAKINGEVAL 0x100 /* Faking an eval context for call_sv or
1001 #define G_UNDEF_FILL 0x200 /* Fill the stack with &PL_sv_undef
1002 A special case for UNSHIFT in
1003 Perl_magic_methcall(). */
1004 #define G_WRITING_TO_STDERR 0x400 /* Perl_write_to_stderr() is calling
1005 Perl_magic_methcall(). */
1006 #define G_RE_REPARSING 0x800 /* compiling a run-time /(?{..})/ */
1007 #define G_METHOD_NAMED 0x1000 /* calling named method, eg without :: or ' */
1008 #define G_RETHROW 0x2000 /* eval_sv(): re-throw any error */
1010 /* flag bits for PL_in_eval */
1011 #define EVAL_NULL 0 /* not in an eval */
1012 #define EVAL_INEVAL 1 /* some enclosing scope is an eval */
1013 #define EVAL_WARNONLY 2 /* used by yywarn() when calling yyerror() */
1014 #define EVAL_KEEPERR 4 /* set by Perl_call_sv if G_KEEPERR */
1015 #define EVAL_INREQUIRE 8 /* The code is being required. */
1016 #define EVAL_RE_REPARSING 0x10 /* eval_sv() called with G_RE_REPARSING */
1017 /* if adding extra bits, make sure they can fit in CxOLD_OP_TYPE() */
1019 /* Support for switching (stack and block) contexts.
1020 * This ensures magic doesn't invalidate local stack and cx pointers.
1021 * Which one to use (or add) is mostly, but not completely arbitrary: See
1022 * http://nntp.perl.org/group/perl.perl5.porters/257169
1025 #define PERLSI_UNKNOWN -1
1026 #define PERLSI_UNDEF 0
1027 #define PERLSI_MAIN 1
1028 #define PERLSI_MAGIC 2
1029 #define PERLSI_SORT 3
1030 #define PERLSI_SIGNAL 4
1031 #define PERLSI_OVERLOAD 5
1032 #define PERLSI_DESTROY 6
1033 #define PERLSI_WARNHOOK 7
1034 #define PERLSI_DIEHOOK 8
1035 #define PERLSI_REQUIRE 9
1036 #define PERLSI_MULTICALL 10
1037 #define PERLSI_REGCOMP 11
1040 AV * si_stack; /* stack for current runlevel */
1041 PERL_CONTEXT * si_cxstack; /* context stack for runlevel */
1042 struct stackinfo * si_prev;
1043 struct stackinfo * si_next;
1044 I32 si_cxix; /* current context index */
1045 I32 si_cxmax; /* maximum allocated index */
1046 I32 si_cxsubix; /* topmost sub/eval/format */
1047 I32 si_type; /* type of runlevel */
1048 I32 si_markoff; /* offset where markstack begins for us.
1049 * currently used only with DEBUGGING,
1050 * but not #ifdef-ed for bincompat */
1051 #if defined DEBUGGING && !defined DEBUGGING_RE_ONLY
1052 /* high water mark: for checking if the stack was correctly extended /
1053 * tested for extension by each pp function */
1054 SSize_t si_stack_hwm;
1060 =for apidoc Ay||PERL_SI
1061 Use this typedef to declare variables that are to hold C<struct stackinfo>.
1065 typedef struct stackinfo PERL_SI;
1067 #define cxstack (PL_curstackinfo->si_cxstack)
1068 #define cxstack_ix (PL_curstackinfo->si_cxix)
1069 #define cxstack_max (PL_curstackinfo->si_cxmax)
1072 # define SET_MARK_OFFSET \
1073 PL_curstackinfo->si_markoff = PL_markstack_ptr - PL_markstack
1075 # define SET_MARK_OFFSET NOOP
1078 #if defined DEBUGGING && !defined DEBUGGING_RE_ONLY
1079 # define PUSHSTACK_INIT_HWM(si) ((si)->si_stack_hwm = 0)
1081 # define PUSHSTACK_INIT_HWM(si) NOOP
1084 #define PUSHSTACKi(type) \
1086 PERL_SI *next = PL_curstackinfo->si_next; \
1088 int i = 0; PERL_SI *p = PL_curstackinfo; \
1089 while (p) { i++; p = p->si_prev; } \
1090 Perl_deb(aTHX_ "push STACKINFO %d at %s:%d\n", \
1091 i, __FILE__, __LINE__);}) \
1093 next = new_stackinfo(32, 2048/sizeof(PERL_CONTEXT) - 1); \
1094 next->si_prev = PL_curstackinfo; \
1095 PL_curstackinfo->si_next = next; \
1097 next->si_type = type; \
1098 next->si_cxix = -1; \
1099 next->si_cxsubix = -1; \
1100 PUSHSTACK_INIT_HWM(next); \
1101 AvFILLp(next->si_stack) = 0; \
1102 SWITCHSTACK(PL_curstack,next->si_stack); \
1103 PL_curstackinfo = next; \
1107 #define PUSHSTACK PUSHSTACKi(PERLSI_UNKNOWN)
1109 /* POPSTACK works with PL_stack_sp, so it may need to be bracketed by
1110 * PUTBACK/SPAGAIN to flush/refresh any local SP that may be active */
1114 PERL_SI * const prev = PL_curstackinfo->si_prev; \
1116 int i = -1; PERL_SI *p = PL_curstackinfo; \
1117 while (p) { i++; p = p->si_prev; } \
1118 Perl_deb(aTHX_ "pop STACKINFO %d at %s:%d\n", \
1119 i, __FILE__, __LINE__);}) \
1121 Perl_croak_popstack(); \
1123 SWITCHSTACK(PL_curstack,prev->si_stack); \
1124 /* don't free prev here, free them all at the END{} */ \
1125 PL_curstackinfo = prev; \
1128 #define POPSTACK_TO(s) \
1130 while (PL_curstack != s) { \
1137 =for apidoc_section $utility
1138 =for apidoc Amn|bool|IN_PERL_COMPILETIME
1139 Returns 1 if this macro is being called during the compilation phase of the
1140 program; otherwise 0;
1142 =for apidoc Amn|bool|IN_PERL_RUNTIME
1143 Returns 1 if this macro is being called during the execution phase of the
1144 program; otherwise 0;
1148 #define IN_PERL_COMPILETIME cBOOL(PL_curcop == &PL_compiling)
1149 #define IN_PERL_RUNTIME cBOOL(PL_curcop != &PL_compiling)
1152 =for apidoc_section $multicall
1154 =for apidoc Amns||dMULTICALL
1155 Declare local variables for a multicall. See L<perlcall/LIGHTWEIGHT CALLBACKS>.
1157 =for apidoc Ams||PUSH_MULTICALL|CV* the_cv
1158 Opening bracket for a lightweight callback.
1159 See L<perlcall/LIGHTWEIGHT CALLBACKS>.
1161 =for apidoc Amns||MULTICALL
1162 Make a lightweight callback. See L<perlcall/LIGHTWEIGHT CALLBACKS>.
1164 =for apidoc Amns||POP_MULTICALL
1165 Closing bracket for a lightweight callback.
1166 See L<perlcall/LIGHTWEIGHT CALLBACKS>.
1171 #define dMULTICALL \
1172 OP *multicall_cop; \
1173 bool multicall_oldcatch
1175 #define PUSH_MULTICALL(the_cv) \
1176 PUSH_MULTICALL_FLAGS(the_cv, 0)
1178 /* Like PUSH_MULTICALL, but allows you to specify extra flags
1179 * for the CX stack entry (this isn't part of the public API) */
1181 #define PUSH_MULTICALL_FLAGS(the_cv, flags) \
1184 CV * const _nOnclAshIngNamE_ = the_cv; \
1185 CV * const cv = _nOnclAshIngNamE_; \
1186 PADLIST * const padlist = CvPADLIST(cv); \
1187 multicall_oldcatch = CATCH_GET; \
1189 PUSHSTACKi(PERLSI_MULTICALL); \
1190 cx = cx_pushblock((CXt_SUB|CXp_MULTICALL|flags), (U8)gimme, \
1191 PL_stack_sp, PL_savestack_ix); \
1192 cx_pushsub(cx, cv, NULL, 0); \
1194 if (!(flags & CXp_SUB_RE_FAKE)) \
1196 if (CvDEPTH(cv) >= 2) \
1197 Perl_pad_push(aTHX_ padlist, CvDEPTH(cv)); \
1198 PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv)); \
1199 multicall_cop = CvSTART(cv); \
1204 PL_op = multicall_cop; \
1208 #define POP_MULTICALL \
1212 CX_LEAVE_SCOPE(cx); \
1213 cx_popsub_common(cx); \
1214 gimme = cx->blk_gimme; \
1215 PERL_UNUSED_VAR(gimme); /* for API */ \
1219 CATCH_SET(multicall_oldcatch); \
1223 /* Change the CV of an already-pushed MULTICALL CxSUB block.
1224 * (this isn't part of the public API) */
1226 #define CHANGE_MULTICALL_FLAGS(the_cv, flags) \
1228 CV * const _nOnclAshIngNamE_ = the_cv; \
1229 CV * const cv = _nOnclAshIngNamE_; \
1230 PADLIST * const padlist = CvPADLIST(cv); \
1231 PERL_CONTEXT *cx = CX_CUR(); \
1232 assert(CxMULTICALL(cx)); \
1233 cx_popsub_common(cx); \
1234 cx->cx_type = (CXt_SUB|CXp_MULTICALL|flags); \
1235 cx_pushsub(cx, cv, NULL, 0); \
1236 if (!(flags & CXp_SUB_RE_FAKE)) \
1238 if (CvDEPTH(cv) >= 2) \
1239 Perl_pad_push(aTHX_ padlist, CvDEPTH(cv)); \
1240 PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv)); \
1241 multicall_cop = CvSTART(cv); \
1244 * ex: set ts=8 sts=4 sw=4 et: