13 #define SAVEt_NSTAB 12
14 #define SAVEt_SVREF 13
16 #define SAVEt_FREESV 15
17 #define SAVEt_FREEOP 16
18 #define SAVEt_FREEPV 17
19 #define SAVEt_CLEARSV 18
20 #define SAVEt_DELETE 19
21 #define SAVEt_DESTRUCTOR 20
22 #define SAVEt_REGCONTEXT 21
23 #define SAVEt_STACK_POS 22
25 #define SAVEt_AELEM 24
26 #define SAVEt_HELEM 25
28 #define SAVEt_HINTS 27
29 #define SAVEt_ALLOC 28
30 #define SAVEt_GENERIC_SVREF 29
31 #define SAVEt_DESTRUCTOR_X 30
34 #define SAVEt_COMPPAD 33
35 #define SAVEt_GENERIC_PVREF 34
36 #define SAVEt_PADSV 35
37 #define SAVEt_MORTALIZESV 36
39 #ifndef SCOPE_SAVES_SIGNAL_MASK
40 #define SCOPE_SAVES_SIGNAL_MASK 0
43 #define SSCHECK(need) if (PL_savestack_ix + need > PL_savestack_max) savestack_grow()
44 #define SSPUSHINT(i) (PL_savestack[PL_savestack_ix++].any_i32 = (I32)(i))
45 #define SSPUSHLONG(i) (PL_savestack[PL_savestack_ix++].any_long = (long)(i))
46 #define SSPUSHIV(i) (PL_savestack[PL_savestack_ix++].any_iv = (IV)(i))
47 #define SSPUSHPTR(p) (PL_savestack[PL_savestack_ix++].any_ptr = (void*)(p))
48 #define SSPUSHDPTR(p) (PL_savestack[PL_savestack_ix++].any_dptr = (p))
49 #define SSPUSHDXPTR(p) (PL_savestack[PL_savestack_ix++].any_dxptr = (p))
50 #define SSPOPINT (PL_savestack[--PL_savestack_ix].any_i32)
51 #define SSPOPLONG (PL_savestack[--PL_savestack_ix].any_long)
52 #define SSPOPIV (PL_savestack[--PL_savestack_ix].any_iv)
53 #define SSPOPPTR (PL_savestack[--PL_savestack_ix].any_ptr)
54 #define SSPOPDPTR (PL_savestack[--PL_savestack_ix].any_dptr)
55 #define SSPOPDXPTR (PL_savestack[--PL_savestack_ix].any_dxptr)
58 =for apidoc Ams||SAVETMPS
59 Opening bracket for temporaries on a callback. See C<FREETMPS> and
62 =for apidoc Ams||FREETMPS
63 Closing bracket for temporaries on a callback. See C<SAVETMPS> and
66 =for apidoc Ams||ENTER
67 Opening bracket on a callback. See C<LEAVE> and L<perlcall>.
69 =for apidoc Ams||LEAVE
70 Closing bracket on a callback. See C<ENTER> and L<perlcall>.
75 #define SAVETMPS save_int((int*)&PL_tmps_floor), PL_tmps_floor = PL_tmps_ix
76 #define FREETMPS if (PL_tmps_ix > PL_tmps_floor) free_tmps()
82 DEBUG_l(WITH_THR(Perl_deb(aTHX_ "ENTER scope %ld at %s:%d\n", \
83 PL_scopestack_ix, __FILE__, __LINE__))); \
87 DEBUG_l(WITH_THR(Perl_deb(aTHX_ "LEAVE scope %ld at %s:%d\n", \
88 PL_scopestack_ix, __FILE__, __LINE__))); \
92 #define ENTER push_scope()
93 #define LEAVE pop_scope()
95 #define LEAVE_SCOPE(old) if (PL_savestack_ix > old) leave_scope(old)
98 * Not using SOFT_CAST on SAVESPTR, SAVEGENERICSV and SAVEFREESV
99 * because these are used for several kinds of pointer values
101 #define SAVEI8(i) save_I8(SOFT_CAST(I8*)&(i))
102 #define SAVEI16(i) save_I16(SOFT_CAST(I16*)&(i))
103 #define SAVEI32(i) save_I32(SOFT_CAST(I32*)&(i))
104 #define SAVEINT(i) save_int(SOFT_CAST(int*)&(i))
105 #define SAVEIV(i) save_iv(SOFT_CAST(IV*)&(i))
106 #define SAVELONG(l) save_long(SOFT_CAST(long*)&(l))
107 #define SAVESPTR(s) save_sptr((SV**)&(s))
108 #define SAVEPPTR(s) save_pptr(SOFT_CAST(char**)&(s))
109 #define SAVEVPTR(s) save_vptr((void*)&(s))
110 #define SAVEPADSV(s) save_padsv(s)
111 #define SAVEFREESV(s) save_freesv((SV*)(s))
112 #define SAVEMORTALIZESV(s) save_mortalizesv((SV*)(s))
113 #define SAVEFREEOP(o) save_freeop(SOFT_CAST(OP*)(o))
114 #define SAVEFREEPV(p) save_freepv(SOFT_CAST(char*)(p))
115 #define SAVECLEARSV(sv) save_clearsv(SOFT_CAST(SV**)&(sv))
116 #define SAVEGENERICSV(s) save_generic_svref((SV**)&(s))
117 #define SAVEGENERICPV(s) save_generic_pvref((char**)&(s))
118 #define SAVEDELETE(h,k,l) \
119 save_delete(SOFT_CAST(HV*)(h), SOFT_CAST(char*)(k), (I32)(l))
120 #define SAVEDESTRUCTOR(f,p) \
121 save_destructor((DESTRUCTORFUNC_NOCONTEXT_t)(f), SOFT_CAST(void*)(p))
123 #define SAVEDESTRUCTOR_X(f,p) \
124 save_destructor_x((DESTRUCTORFUNC_t)(f), SOFT_CAST(void*)(p))
126 #define SAVESTACK_POS() \
129 SSPUSHINT(PL_stack_sp - PL_stack_base); \
130 SSPUSHINT(SAVEt_STACK_POS); \
133 #define SAVEOP() save_op()
135 #define SAVEHINTS() \
137 if (PL_hints & HINT_LOCALIZE_HH) \
141 SSPUSHINT(PL_hints); \
142 SSPUSHINT(SAVEt_HINTS); \
146 #define SAVECOMPPAD() \
148 if (PL_comppad && PL_curpad == AvARRAY(PL_comppad)) { \
150 SSPUSHPTR((SV*)PL_comppad); \
151 SSPUSHINT(SAVEt_COMPPAD); \
154 SAVEVPTR(PL_curpad); \
155 SAVESPTR(PL_comppad); \
160 # define SAVECOPSTASH(c) SAVEPPTR(CopSTASHPV(c))
161 # define SAVECOPSTASH_FREE(c) SAVEGENERICPV(CopSTASHPV(c))
162 # define SAVECOPFILE(c) SAVEPPTR(CopFILE(c))
163 # define SAVECOPFILE_FREE(c) SAVEGENERICPV(CopFILE(c))
165 # define SAVECOPSTASH(c) SAVESPTR(CopSTASH(c))
166 # define SAVECOPSTASH_FREE(c) SAVECOPSTASH(c) /* XXX not refcounted */
167 # define SAVECOPFILE(c) SAVESPTR(CopFILEGV(c))
168 # define SAVECOPFILE_FREE(c) SAVEGENERICSV(CopFILEGV(c))
171 #define SAVECOPLINE(c) SAVEI16(CopLINE(c))
173 /* SSNEW() temporarily allocates a specified number of bytes of data on the
174 * savestack. It returns an integer index into the savestack, because a
175 * pointer would get broken if the savestack is moved on reallocation.
176 * SSNEWa() works like SSNEW(), but also aligns the data to the specified
177 * number of bytes. MEM_ALIGNBYTES is perhaps the most useful. The
178 * alignment will be preserved therough savestack reallocation *only* if
179 * realloc returns data aligned to a size divisible by `align'!
181 * SSPTR() converts the index returned by SSNEW/SSNEWa() into a pointer.
184 #define SSNEW(size) Perl_save_alloc(aTHX_ (size), 0)
185 #define SSNEWt(n,t) SSNEW((n)*sizeof(t))
186 #define SSNEWa(size,align) Perl_save_alloc(aTHX_ (size), \
187 (align - ((int)((caddr_t)&PL_savestack[PL_savestack_ix]) % align)) % align)
188 #define SSNEWat(n,t,align) SSNEWa((n)*sizeof(t), align)
190 #define SSPTR(off,type) ((type) ((char*)PL_savestack + off))
191 #define SSPTRt(off,type) ((type*) ((char*)PL_savestack + off))
193 /* A jmpenv packages the state required to perform a proper non-local jump.
194 * Note that there is a start_env initialized when perl starts, and top_env
195 * points to this initially, so top_env should always be non-null.
197 * Existence of a non-null top_env->je_prev implies it is valid to call
198 * longjmp() at that runlevel (we make sure start_env.je_prev is always
199 * null to ensure this).
201 * je_mustcatch, when set at any runlevel to TRUE, means eval ops must
202 * establish a local jmpenv to handle exception traps. Care must be taken
203 * to restore the previous value of je_mustcatch before exiting the
204 * stack frame iff JMPENV_PUSH was not called in that stack frame.
209 struct jmpenv * je_prev;
210 Sigjmp_buf je_buf; /* only for use if !je_throw */
211 int je_ret; /* last exception thrown */
212 bool je_mustcatch; /* need to call longjmp()? */
213 #ifdef PERL_FLEXIBLE_EXCEPTIONS
214 void (*je_throw)(int v); /* last for bincompat */
215 bool je_noset; /* no need for setjmp() */
219 typedef struct jmpenv JMPENV;
221 #ifdef OP_IN_REGISTER
222 #define OP_REG_TO_MEM PL_opsave = op
223 #define OP_MEM_TO_REG op = PL_opsave
225 #define OP_REG_TO_MEM NOOP
226 #define OP_MEM_TO_REG NOOP
230 * How to build the first jmpenv.
232 * top_env needs to be non-zero. It points to an area
233 * in which longjmp() stuff is stored, as C callstack
234 * info there at least is thread specific this has to
235 * be per-thread. Otherwise a 'die' in a thread gives
236 * that thread the C stack of last thread to do an eval {}!
239 #define JMPENV_BOOTSTRAP \
241 Zero(&PL_start_env, 1, JMPENV); \
242 PL_start_env.je_ret = -1; \
243 PL_start_env.je_mustcatch = TRUE; \
244 PL_top_env = &PL_start_env; \
247 #ifdef PERL_FLEXIBLE_EXCEPTIONS
250 * These exception-handling macros are split up to
251 * ease integration with C++ exceptions.
253 * To use C++ try+catch to catch Perl exceptions, an extension author
254 * needs to first write an extern "C" function to throw an appropriate
255 * exception object; typically it will be or contain an integer,
256 * because Perl's internals use integers to track exception types:
257 * extern "C" { static void thrower(int i) { throw i; } }
259 * Then (as shown below) the author needs to use, not the simple
260 * JMPENV_PUSH, but several of its constitutent macros, to arrange for
261 * the Perl internals to call thrower() rather than longjmp() to
265 * JMPENV_PUSH_INIT(thrower);
267 * ... stuff that may throw exceptions ...
269 * catch (int why) { // or whatever matches thrower()
273 * ... // handle various Perl exception codes
276 * JMPENV_POP; // don't forget this!
280 * Function that catches/throws, and its callback for the
281 * body of protected processing.
283 typedef void *(CPERLscope(*protect_body_t)) (pTHX_ va_list);
284 typedef void *(CPERLscope(*protect_proc_t)) (pTHX_ volatile JMPENV *pcur_env,
285 int *, protect_body_t, ...);
287 #define dJMPENV JMPENV cur_env; \
288 volatile JMPENV *pcur_env = ((cur_env.je_noset = 0),&cur_env)
290 #define JMPENV_PUSH_INIT_ENV(ce,THROWFUNC) \
292 (ce).je_throw = (THROWFUNC); \
294 (ce).je_mustcatch = FALSE; \
295 (ce).je_prev = PL_top_env; \
296 PL_top_env = &(ce); \
300 #define JMPENV_PUSH_INIT(THROWFUNC) JMPENV_PUSH_INIT_ENV(*(JMPENV*)pcur_env,THROWFUNC)
302 #define JMPENV_POST_CATCH_ENV(ce) \
305 PL_top_env = &(ce); \
308 #define JMPENV_POST_CATCH JMPENV_POST_CATCH_ENV(*(JMPENV*)pcur_env)
310 #define JMPENV_PUSH_ENV(ce,v) \
312 if (!(ce).je_noset) { \
313 DEBUG_l(Perl_deb(aTHX_ "Setting up jumplevel %p, was %p\n", \
315 JMPENV_PUSH_INIT_ENV(ce,NULL); \
316 EXCEPT_SET_ENV(ce,PerlProc_setjmp((ce).je_buf, SCOPE_SAVES_SIGNAL_MASK));\
320 EXCEPT_SET_ENV(ce,0); \
321 JMPENV_POST_CATCH_ENV(ce); \
322 (v) = EXCEPT_GET_ENV(ce); \
325 #define JMPENV_PUSH(v) JMPENV_PUSH_ENV(*(JMPENV*)pcur_env,v)
327 #define JMPENV_POP_ENV(ce) \
329 if (PL_top_env == &(ce)) \
330 PL_top_env = (ce).je_prev; \
333 #define JMPENV_POP JMPENV_POP_ENV(*(JMPENV*)pcur_env)
335 #define JMPENV_JUMP(v) \
338 if (PL_top_env->je_prev) { \
339 if (PL_top_env->je_throw) \
340 PL_top_env->je_throw(v); \
342 PerlProc_longjmp(PL_top_env->je_buf, (v)); \
345 PerlProc_exit(STATUS_NATIVE_EXPORT); \
346 PerlIO_printf(Perl_error_log, "panic: top_env\n"); \
350 #define EXCEPT_GET_ENV(ce) ((ce).je_ret)
351 #define EXCEPT_GET EXCEPT_GET_ENV(*(JMPENV*)pcur_env)
352 #define EXCEPT_SET_ENV(ce,v) ((ce).je_ret = (v))
353 #define EXCEPT_SET(v) EXCEPT_SET_ENV(*(JMPENV*)pcur_env,v)
355 #else /* !PERL_FLEXIBLE_EXCEPTIONS */
357 #define dJMPENV JMPENV cur_env
359 #define JMPENV_PUSH(v) \
361 DEBUG_l(Perl_deb(aTHX_ "Setting up jumplevel %p, was %p\n", \
362 &cur_env, PL_top_env)); \
363 cur_env.je_prev = PL_top_env; \
365 cur_env.je_ret = PerlProc_setjmp(cur_env.je_buf, SCOPE_SAVES_SIGNAL_MASK); \
367 PL_top_env = &cur_env; \
368 cur_env.je_mustcatch = FALSE; \
369 (v) = cur_env.je_ret; \
373 STMT_START { PL_top_env = cur_env.je_prev; } STMT_END
375 #define JMPENV_JUMP(v) \
378 if (PL_top_env->je_prev) \
379 PerlProc_longjmp(PL_top_env->je_buf, (v)); \
381 PerlProc_exit(STATUS_NATIVE_EXPORT); \
382 PerlIO_printf(PerlIO_stderr(), "panic: top_env\n"); \
386 #endif /* PERL_FLEXIBLE_EXCEPTIONS */
388 #define CATCH_GET (PL_top_env->je_mustcatch)
389 #define CATCH_SET(v) (PL_top_env->je_mustcatch = (v))