Commit | Line | Data |
a0d0e21e |
1 | /* scope.c |
79072805 |
2 | * |
1129b882 |
3 | * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
4 | * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others |
79072805 |
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 | * |
a0d0e21e |
9 | */ |
10 | |
11 | /* |
4ac71550 |
12 | * For the fashion of Minas Tirith was such that it was built on seven |
13 | * levels... |
14 | * |
15 | * [p.751 of _The Lord of the Rings_, V/i: "Minas Tirith"] |
79072805 |
16 | */ |
17 | |
ddfa107c |
18 | /* This file contains functions to manipulate several of Perl's stacks; |
166f8a29 |
19 | * in particular it contains code to push various types of things onto |
20 | * the savestack, then to pop them off and perform the correct restorative |
21 | * action for each one. This corresponds to the cleanup Perl does at |
22 | * each scope exit. |
23 | */ |
24 | |
79072805 |
25 | #include "EXTERN.h" |
864dbfa3 |
26 | #define PERL_IN_SCOPE_C |
79072805 |
27 | #include "perl.h" |
28 | |
a0d0e21e |
29 | SV** |
864dbfa3 |
30 | Perl_stack_grow(pTHX_ SV **sp, SV **p, int n) |
a0d0e21e |
31 | { |
97aff369 |
32 | dVAR; |
7918f24d |
33 | |
34 | PERL_ARGS_ASSERT_STACK_GROW; |
35 | |
3280af22 |
36 | PL_stack_sp = sp; |
2ce36478 |
37 | #ifndef STRESS_REALLOC |
3280af22 |
38 | av_extend(PL_curstack, (p - PL_stack_base) + (n) + 128); |
2ce36478 |
39 | #else |
6b88bc9c |
40 | av_extend(PL_curstack, (p - PL_stack_base) + (n) + 1); |
2ce36478 |
41 | #endif |
3280af22 |
42 | return PL_stack_sp; |
a0d0e21e |
43 | } |
44 | |
2ce36478 |
45 | #ifndef STRESS_REALLOC |
46 | #define GROW(old) ((old) * 3 / 2) |
47 | #else |
48 | #define GROW(old) ((old) + 1) |
49 | #endif |
50 | |
e336de0d |
51 | PERL_SI * |
864dbfa3 |
52 | Perl_new_stackinfo(pTHX_ I32 stitems, I32 cxitems) |
e336de0d |
53 | { |
97aff369 |
54 | dVAR; |
e336de0d |
55 | PERL_SI *si; |
a02a5408 |
56 | Newx(si, 1, PERL_SI); |
e336de0d |
57 | si->si_stack = newAV(); |
58 | AvREAL_off(si->si_stack); |
59 | av_extend(si->si_stack, stitems > 0 ? stitems-1 : 0); |
3280af22 |
60 | AvALLOC(si->si_stack)[0] = &PL_sv_undef; |
e336de0d |
61 | AvFILLp(si->si_stack) = 0; |
62 | si->si_prev = 0; |
63 | si->si_next = 0; |
64 | si->si_cxmax = cxitems - 1; |
65 | si->si_cxix = -1; |
e788e7d3 |
66 | si->si_type = PERLSI_UNDEF; |
a02a5408 |
67 | Newx(si->si_cxstack, cxitems, PERL_CONTEXT); |
9965345d |
68 | /* Without any kind of initialising PUSHSUBST() |
69 | * in pp_subst() will read uninitialised heap. */ |
7e337ee0 |
70 | PoisonNew(si->si_cxstack, cxitems, PERL_CONTEXT); |
e336de0d |
71 | return si; |
72 | } |
73 | |
79072805 |
74 | I32 |
864dbfa3 |
75 | Perl_cxinc(pTHX) |
79072805 |
76 | { |
97aff369 |
77 | dVAR; |
a3b680e6 |
78 | const IV old_max = cxstack_max; |
2ce36478 |
79 | cxstack_max = GROW(cxstack_max); |
c09156bb |
80 | Renew(cxstack, cxstack_max + 1, PERL_CONTEXT); /* XXX should fix CXINC macro */ |
9965345d |
81 | /* Without any kind of initialising deep enough recursion |
82 | * will end up reading uninitialised PERL_CONTEXTs. */ |
7e337ee0 |
83 | PoisonNew(cxstack + old_max + 1, cxstack_max - old_max, PERL_CONTEXT); |
79072805 |
84 | return cxstack_ix + 1; |
85 | } |
86 | |
79072805 |
87 | void |
864dbfa3 |
88 | Perl_push_scope(pTHX) |
79072805 |
89 | { |
97aff369 |
90 | dVAR; |
3280af22 |
91 | if (PL_scopestack_ix == PL_scopestack_max) { |
92 | PL_scopestack_max = GROW(PL_scopestack_max); |
93 | Renew(PL_scopestack, PL_scopestack_max, I32); |
79072805 |
94 | } |
3280af22 |
95 | PL_scopestack[PL_scopestack_ix++] = PL_savestack_ix; |
79072805 |
96 | |
97 | } |
98 | |
99 | void |
864dbfa3 |
100 | Perl_pop_scope(pTHX) |
79072805 |
101 | { |
97aff369 |
102 | dVAR; |
35a4481c |
103 | const I32 oldsave = PL_scopestack[--PL_scopestack_ix]; |
8990e307 |
104 | LEAVE_SCOPE(oldsave); |
79072805 |
105 | } |
106 | |
107 | void |
864dbfa3 |
108 | Perl_markstack_grow(pTHX) |
a0d0e21e |
109 | { |
97aff369 |
110 | dVAR; |
35a4481c |
111 | const I32 oldmax = PL_markstack_max - PL_markstack; |
112 | const I32 newmax = GROW(oldmax); |
a0d0e21e |
113 | |
3280af22 |
114 | Renew(PL_markstack, newmax, I32); |
115 | PL_markstack_ptr = PL_markstack + oldmax; |
116 | PL_markstack_max = PL_markstack + newmax; |
a0d0e21e |
117 | } |
118 | |
119 | void |
864dbfa3 |
120 | Perl_savestack_grow(pTHX) |
79072805 |
121 | { |
97aff369 |
122 | dVAR; |
8aacddc1 |
123 | PL_savestack_max = GROW(PL_savestack_max) + 4; |
3280af22 |
124 | Renew(PL_savestack, PL_savestack_max, ANY); |
79072805 |
125 | } |
126 | |
4b3c1a47 |
127 | void |
128 | Perl_savestack_grow_cnt(pTHX_ I32 need) |
129 | { |
97aff369 |
130 | dVAR; |
4b3c1a47 |
131 | PL_savestack_max = PL_savestack_ix + need; |
132 | Renew(PL_savestack, PL_savestack_max, ANY); |
133 | } |
134 | |
2ce36478 |
135 | #undef GROW |
136 | |
79072805 |
137 | void |
864dbfa3 |
138 | Perl_tmps_grow(pTHX_ I32 n) |
677b06e3 |
139 | { |
97aff369 |
140 | dVAR; |
677b06e3 |
141 | #ifndef STRESS_REALLOC |
142 | if (n < 128) |
143 | n = (PL_tmps_max < 512) ? 128 : 512; |
144 | #endif |
145 | PL_tmps_max = PL_tmps_ix + n + 1; |
146 | Renew(PL_tmps_stack, PL_tmps_max, SV*); |
147 | } |
148 | |
149 | |
150 | void |
864dbfa3 |
151 | Perl_free_tmps(pTHX) |
79072805 |
152 | { |
97aff369 |
153 | dVAR; |
79072805 |
154 | /* XXX should tmps_floor live in cxstack? */ |
35a4481c |
155 | const I32 myfloor = PL_tmps_floor; |
3280af22 |
156 | while (PL_tmps_ix > myfloor) { /* clean up after last statement */ |
901017d6 |
157 | SV* const sv = PL_tmps_stack[PL_tmps_ix]; |
a0714e2c |
158 | PL_tmps_stack[PL_tmps_ix--] = NULL; |
8aacddc1 |
159 | if (sv && sv != &PL_sv_undef) { |
463ee0b2 |
160 | SvTEMP_off(sv); |
8990e307 |
161 | SvREFCNT_dec(sv); /* note, can modify tmps_ix!!! */ |
463ee0b2 |
162 | } |
79072805 |
163 | } |
164 | } |
165 | |
76e3520e |
166 | STATIC SV * |
af7df257 |
167 | S_save_scalar_at(pTHX_ SV **sptr, const U32 flags) |
79072805 |
168 | { |
97aff369 |
169 | dVAR; |
901017d6 |
170 | SV * const osv = *sptr; |
561b68a9 |
171 | register SV * const sv = *sptr = newSV(0); |
79072805 |
172 | |
7918f24d |
173 | PERL_ARGS_ASSERT_SAVE_SCALAR_AT; |
174 | |
a0d0e21e |
175 | if (SvTYPE(osv) >= SVt_PVMG && SvMAGIC(osv) && SvTYPE(osv) != SVt_PVGV) { |
a0d0e21e |
176 | if (SvGMAGICAL(osv)) { |
35a4481c |
177 | const bool oldtainted = PL_tainted; |
a0d0e21e |
178 | SvFLAGS(osv) |= (SvFLAGS(osv) & |
c268c2a6 |
179 | (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT; |
3280af22 |
180 | PL_tainted = oldtainted; |
a0d0e21e |
181 | } |
af7df257 |
182 | mg_localize(osv, sv, (flags & SAVEf_SETMAGIC) != 0); |
79072805 |
183 | } |
184 | return sv; |
185 | } |
186 | |
7a4c00b4 |
187 | SV * |
864dbfa3 |
188 | Perl_save_scalar(pTHX_ GV *gv) |
7a4c00b4 |
189 | { |
97aff369 |
190 | dVAR; |
fb4fc1fa |
191 | SV ** const sptr = &GvSVn(gv); |
7918f24d |
192 | |
193 | PERL_ARGS_ASSERT_SAVE_SCALAR; |
194 | |
27cc343c |
195 | PL_localizing = 1; |
0cbee0a4 |
196 | SvGETMAGIC(*sptr); |
27cc343c |
197 | PL_localizing = 0; |
7a4c00b4 |
198 | SSCHECK(3); |
b37c2d43 |
199 | SSPUSHPTR(SvREFCNT_inc_simple(gv)); |
4e4c362e |
200 | SSPUSHPTR(SvREFCNT_inc(*sptr)); |
7a4c00b4 |
201 | SSPUSHINT(SAVEt_SV); |
af7df257 |
202 | return save_scalar_at(sptr, SAVEf_SETMAGIC); /* XXX - FIXME - see #60360 */ |
7a4c00b4 |
203 | } |
204 | |
f4dd75d9 |
205 | /* Like save_sptr(), but also SvREFCNT_dec()s the new value. Can be used to |
b9d12d37 |
206 | * restore a global SV to its prior contents, freeing new value. */ |
207 | void |
864dbfa3 |
208 | Perl_save_generic_svref(pTHX_ SV **sptr) |
b9d12d37 |
209 | { |
97aff369 |
210 | dVAR; |
7918f24d |
211 | |
212 | PERL_ARGS_ASSERT_SAVE_GENERIC_SVREF; |
213 | |
b9d12d37 |
214 | SSCHECK(3); |
215 | SSPUSHPTR(sptr); |
216 | SSPUSHPTR(SvREFCNT_inc(*sptr)); |
217 | SSPUSHINT(SAVEt_GENERIC_SVREF); |
218 | } |
219 | |
f4dd75d9 |
220 | /* Like save_pptr(), but also Safefree()s the new value if it is different |
221 | * from the old one. Can be used to restore a global char* to its prior |
222 | * contents, freeing new value. */ |
223 | void |
224 | Perl_save_generic_pvref(pTHX_ char **str) |
225 | { |
97aff369 |
226 | dVAR; |
7918f24d |
227 | |
228 | PERL_ARGS_ASSERT_SAVE_GENERIC_PVREF; |
229 | |
f4dd75d9 |
230 | SSCHECK(3); |
f4dd75d9 |
231 | SSPUSHPTR(*str); |
b03d03b0 |
232 | SSPUSHPTR(str); |
f4dd75d9 |
233 | SSPUSHINT(SAVEt_GENERIC_PVREF); |
234 | } |
235 | |
05ec9bb3 |
236 | /* Like save_generic_pvref(), but uses PerlMemShared_free() rather than Safefree(). |
237 | * Can be used to restore a shared global char* to its prior |
238 | * contents, freeing new value. */ |
239 | void |
240 | Perl_save_shared_pvref(pTHX_ char **str) |
241 | { |
97aff369 |
242 | dVAR; |
7918f24d |
243 | |
244 | PERL_ARGS_ASSERT_SAVE_SHARED_PVREF; |
245 | |
05ec9bb3 |
246 | SSCHECK(3); |
247 | SSPUSHPTR(str); |
248 | SSPUSHPTR(*str); |
249 | SSPUSHINT(SAVEt_SHARED_PVREF); |
250 | } |
251 | |
14f338dc |
252 | /* set the SvFLAGS specified by mask to the values in val */ |
253 | |
254 | void |
255 | Perl_save_set_svflags(pTHX_ SV* sv, U32 mask, U32 val) |
256 | { |
97aff369 |
257 | dVAR; |
7918f24d |
258 | |
259 | PERL_ARGS_ASSERT_SAVE_SET_SVFLAGS; |
260 | |
14f338dc |
261 | SSCHECK(4); |
262 | SSPUSHPTR(sv); |
263 | SSPUSHINT(mask); |
264 | SSPUSHINT(val); |
265 | SSPUSHINT(SAVEt_SET_SVFLAGS); |
266 | } |
267 | |
79072805 |
268 | void |
864dbfa3 |
269 | Perl_save_gp(pTHX_ GV *gv, I32 empty) |
79072805 |
270 | { |
97aff369 |
271 | dVAR; |
7918f24d |
272 | |
273 | PERL_ARGS_ASSERT_SAVE_GP; |
274 | |
576df6af |
275 | SSGROW(3); |
4633a7c4 |
276 | SSPUSHPTR(SvREFCNT_inc(gv)); |
5f05dabc |
277 | SSPUSHPTR(GvGP(gv)); |
79072805 |
278 | SSPUSHINT(SAVEt_GP); |
279 | |
5f05dabc |
280 | if (empty) { |
12816592 |
281 | GP *gp = Perl_newGP(aTHX_ gv); |
146174a9 |
282 | |
fae75791 |
283 | if (GvCVu(gv)) |
e1a479c5 |
284 | mro_method_changed_in(GvSTASH(gv)); /* taking a method out of circulation ("local")*/ |
146174a9 |
285 | if (GvIOp(gv) && (IoFLAGS(GvIOp(gv)) & IOf_ARGV)) { |
286 | gp->gp_io = newIO(); |
287 | IoFLAGS(gp->gp_io) |= IOf_ARGV|IOf_START; |
288 | } |
72651472 |
289 | #ifdef PERL_DONT_CREATE_GVSV |
290 | if (gv == PL_errgv) { |
291 | /* We could scatter this logic everywhere by changing the |
292 | definition of ERRSV from GvSV() to GvSVn(), but it seems more |
293 | efficient to do this check once here. */ |
294 | gp->gp_sv = newSV(0); |
295 | } |
296 | #endif |
12816592 |
297 | GvGP(gv) = gp; |
5f05dabc |
298 | } |
299 | else { |
44a8e56a |
300 | gp_ref(GvGP(gv)); |
5f05dabc |
301 | GvINTRO_on(gv); |
302 | } |
79072805 |
303 | } |
79072805 |
304 | |
79072805 |
305 | AV * |
864dbfa3 |
306 | Perl_save_ary(pTHX_ GV *gv) |
79072805 |
307 | { |
97aff369 |
308 | dVAR; |
901017d6 |
309 | AV * const oav = GvAVn(gv); |
67a38de0 |
310 | AV *av; |
fb73857a |
311 | |
7918f24d |
312 | PERL_ARGS_ASSERT_SAVE_ARY; |
313 | |
67a38de0 |
314 | if (!AvREAL(oav) && AvREIFY(oav)) |
315 | av_reify(oav); |
79072805 |
316 | SSCHECK(3); |
317 | SSPUSHPTR(gv); |
67a38de0 |
318 | SSPUSHPTR(oav); |
79072805 |
319 | SSPUSHINT(SAVEt_AV); |
320 | |
4608196e |
321 | GvAV(gv) = NULL; |
fb73857a |
322 | av = GvAVn(gv); |
0cbee0a4 |
323 | if (SvMAGIC(oav)) |
9711599e |
324 | mg_localize(MUTABLE_SV(oav), MUTABLE_SV(av), TRUE); |
fb73857a |
325 | return av; |
79072805 |
326 | } |
327 | |
328 | HV * |
864dbfa3 |
329 | Perl_save_hash(pTHX_ GV *gv) |
79072805 |
330 | { |
97aff369 |
331 | dVAR; |
fb73857a |
332 | HV *ohv, *hv; |
333 | |
7918f24d |
334 | PERL_ARGS_ASSERT_SAVE_HASH; |
335 | |
79072805 |
336 | SSCHECK(3); |
337 | SSPUSHPTR(gv); |
fb73857a |
338 | SSPUSHPTR(ohv = GvHVn(gv)); |
79072805 |
339 | SSPUSHINT(SAVEt_HV); |
340 | |
4608196e |
341 | GvHV(gv) = NULL; |
fb73857a |
342 | hv = GvHVn(gv); |
0cbee0a4 |
343 | if (SvMAGIC(ohv)) |
9711599e |
344 | mg_localize(MUTABLE_SV(ohv), MUTABLE_SV(hv), TRUE); |
fb73857a |
345 | return hv; |
79072805 |
346 | } |
347 | |
348 | void |
864dbfa3 |
349 | Perl_save_item(pTHX_ register SV *item) |
79072805 |
350 | { |
97aff369 |
351 | dVAR; |
901017d6 |
352 | register SV * const sv = newSVsv(item); |
79072805 |
353 | |
7918f24d |
354 | PERL_ARGS_ASSERT_SAVE_ITEM; |
355 | |
79072805 |
356 | SSCHECK(3); |
357 | SSPUSHPTR(item); /* remember the pointer */ |
79072805 |
358 | SSPUSHPTR(sv); /* remember the value */ |
359 | SSPUSHINT(SAVEt_ITEM); |
360 | } |
361 | |
362 | void |
864dbfa3 |
363 | Perl_save_int(pTHX_ int *intp) |
79072805 |
364 | { |
97aff369 |
365 | dVAR; |
7918f24d |
366 | |
367 | PERL_ARGS_ASSERT_SAVE_INT; |
368 | |
79072805 |
369 | SSCHECK(3); |
370 | SSPUSHINT(*intp); |
371 | SSPUSHPTR(intp); |
372 | SSPUSHINT(SAVEt_INT); |
373 | } |
374 | |
375 | void |
9febdf04 |
376 | Perl_save_bool(pTHX_ bool *boolp) |
377 | { |
97aff369 |
378 | dVAR; |
7918f24d |
379 | |
380 | PERL_ARGS_ASSERT_SAVE_BOOL; |
381 | |
9febdf04 |
382 | SSCHECK(3); |
383 | SSPUSHBOOL(*boolp); |
384 | SSPUSHPTR(boolp); |
385 | SSPUSHINT(SAVEt_BOOL); |
386 | } |
387 | |
388 | void |
58188858 |
389 | Perl_save_I8(pTHX_ I8 *bytep) |
390 | { |
391 | dVAR; |
7918f24d |
392 | |
393 | PERL_ARGS_ASSERT_SAVE_I8; |
394 | |
58188858 |
395 | SSCHECK(3); |
396 | SSPUSHINT(*bytep); |
397 | SSPUSHPTR(bytep); |
398 | SSPUSHINT(SAVEt_I8); |
399 | } |
400 | |
401 | void |
87a84751 |
402 | Perl_save_I16(pTHX_ I16 *intp) |
403 | { |
404 | dVAR; |
7918f24d |
405 | |
406 | PERL_ARGS_ASSERT_SAVE_I16; |
407 | |
87a84751 |
408 | SSCHECK(3); |
409 | SSPUSHINT(*intp); |
410 | SSPUSHPTR(intp); |
411 | SSPUSHINT(SAVEt_I16); |
412 | } |
413 | |
414 | void |
864dbfa3 |
415 | Perl_save_I32(pTHX_ I32 *intp) |
79072805 |
416 | { |
97aff369 |
417 | dVAR; |
7918f24d |
418 | |
419 | PERL_ARGS_ASSERT_SAVE_I32; |
420 | |
79072805 |
421 | SSCHECK(3); |
422 | SSPUSHINT(*intp); |
423 | SSPUSHPTR(intp); |
424 | SSPUSHINT(SAVEt_I32); |
425 | } |
426 | |
85e6fe83 |
427 | /* Cannot use save_sptr() to store a char* since the SV** cast will |
428 | * force word-alignment and we'll miss the pointer. |
429 | */ |
430 | void |
864dbfa3 |
431 | Perl_save_pptr(pTHX_ char **pptr) |
85e6fe83 |
432 | { |
97aff369 |
433 | dVAR; |
7918f24d |
434 | |
435 | PERL_ARGS_ASSERT_SAVE_PPTR; |
436 | |
85e6fe83 |
437 | SSCHECK(3); |
438 | SSPUSHPTR(*pptr); |
439 | SSPUSHPTR(pptr); |
440 | SSPUSHINT(SAVEt_PPTR); |
441 | } |
442 | |
79072805 |
443 | void |
146174a9 |
444 | Perl_save_vptr(pTHX_ void *ptr) |
445 | { |
97aff369 |
446 | dVAR; |
7918f24d |
447 | |
448 | PERL_ARGS_ASSERT_SAVE_VPTR; |
449 | |
146174a9 |
450 | SSCHECK(3); |
451 | SSPUSHPTR(*(char**)ptr); |
452 | SSPUSHPTR(ptr); |
453 | SSPUSHINT(SAVEt_VPTR); |
454 | } |
455 | |
456 | void |
864dbfa3 |
457 | Perl_save_sptr(pTHX_ SV **sptr) |
79072805 |
458 | { |
97aff369 |
459 | dVAR; |
7918f24d |
460 | |
461 | PERL_ARGS_ASSERT_SAVE_SPTR; |
462 | |
79072805 |
463 | SSCHECK(3); |
464 | SSPUSHPTR(*sptr); |
465 | SSPUSHPTR(sptr); |
466 | SSPUSHINT(SAVEt_SPTR); |
467 | } |
468 | |
c3564e5c |
469 | void |
09edbca0 |
470 | Perl_save_padsv_and_mortalize(pTHX_ PADOFFSET off) |
c3564e5c |
471 | { |
97aff369 |
472 | dVAR; |
c3564e5c |
473 | SSCHECK(4); |
f3548bdc |
474 | ASSERT_CURPAD_ACTIVE("save_padsv"); |
09edbca0 |
475 | SSPUSHPTR(SvREFCNT_inc_simple_NN(PL_curpad[off])); |
f3548bdc |
476 | SSPUSHPTR(PL_comppad); |
c3564e5c |
477 | SSPUSHLONG((long)off); |
09edbca0 |
478 | SSPUSHINT(SAVEt_PADSV_AND_MORTALIZE); |
c3564e5c |
479 | } |
480 | |
79072805 |
481 | void |
864dbfa3 |
482 | Perl_save_hptr(pTHX_ HV **hptr) |
79072805 |
483 | { |
97aff369 |
484 | dVAR; |
7918f24d |
485 | |
486 | PERL_ARGS_ASSERT_SAVE_HPTR; |
487 | |
79072805 |
488 | SSCHECK(3); |
85e6fe83 |
489 | SSPUSHPTR(*hptr); |
79072805 |
490 | SSPUSHPTR(hptr); |
491 | SSPUSHINT(SAVEt_HPTR); |
492 | } |
493 | |
494 | void |
864dbfa3 |
495 | Perl_save_aptr(pTHX_ AV **aptr) |
79072805 |
496 | { |
97aff369 |
497 | dVAR; |
7918f24d |
498 | |
499 | PERL_ARGS_ASSERT_SAVE_APTR; |
500 | |
79072805 |
501 | SSCHECK(3); |
85e6fe83 |
502 | SSPUSHPTR(*aptr); |
79072805 |
503 | SSPUSHPTR(aptr); |
504 | SSPUSHINT(SAVEt_APTR); |
505 | } |
506 | |
507 | void |
864dbfa3 |
508 | Perl_save_freesv(pTHX_ SV *sv) |
8990e307 |
509 | { |
97aff369 |
510 | dVAR; |
8990e307 |
511 | SSCHECK(2); |
512 | SSPUSHPTR(sv); |
513 | SSPUSHINT(SAVEt_FREESV); |
514 | } |
515 | |
516 | void |
26d9b02f |
517 | Perl_save_mortalizesv(pTHX_ SV *sv) |
518 | { |
97aff369 |
519 | dVAR; |
7918f24d |
520 | |
521 | PERL_ARGS_ASSERT_SAVE_MORTALIZESV; |
522 | |
26d9b02f |
523 | SSCHECK(2); |
524 | SSPUSHPTR(sv); |
525 | SSPUSHINT(SAVEt_MORTALIZESV); |
526 | } |
527 | |
528 | void |
864dbfa3 |
529 | Perl_save_freeop(pTHX_ OP *o) |
8990e307 |
530 | { |
97aff369 |
531 | dVAR; |
8990e307 |
532 | SSCHECK(2); |
11343788 |
533 | SSPUSHPTR(o); |
8990e307 |
534 | SSPUSHINT(SAVEt_FREEOP); |
535 | } |
536 | |
537 | void |
864dbfa3 |
538 | Perl_save_freepv(pTHX_ char *pv) |
8990e307 |
539 | { |
97aff369 |
540 | dVAR; |
8990e307 |
541 | SSCHECK(2); |
542 | SSPUSHPTR(pv); |
543 | SSPUSHINT(SAVEt_FREEPV); |
544 | } |
545 | |
546 | void |
864dbfa3 |
547 | Perl_save_clearsv(pTHX_ SV **svp) |
8990e307 |
548 | { |
97aff369 |
549 | dVAR; |
7918f24d |
550 | |
551 | PERL_ARGS_ASSERT_SAVE_CLEARSV; |
552 | |
f3548bdc |
553 | ASSERT_CURPAD_ACTIVE("save_clearsv"); |
8990e307 |
554 | SSCHECK(2); |
3280af22 |
555 | SSPUSHLONG((long)(svp-PL_curpad)); |
8990e307 |
556 | SSPUSHINT(SAVEt_CLEARSV); |
d9d18af6 |
557 | SvPADSTALE_off(*svp); /* mark lexical as active */ |
8990e307 |
558 | } |
559 | |
560 | void |
864dbfa3 |
561 | Perl_save_delete(pTHX_ HV *hv, char *key, I32 klen) |
8990e307 |
562 | { |
97aff369 |
563 | dVAR; |
7918f24d |
564 | |
565 | PERL_ARGS_ASSERT_SAVE_DELETE; |
566 | |
8990e307 |
567 | SSCHECK(4); |
568 | SSPUSHINT(klen); |
569 | SSPUSHPTR(key); |
b37c2d43 |
570 | SSPUSHPTR(SvREFCNT_inc_simple(hv)); |
8990e307 |
571 | SSPUSHINT(SAVEt_DELETE); |
572 | } |
573 | |
574 | void |
12ab1f58 |
575 | Perl_save_destructor(pTHX_ DESTRUCTORFUNC_NOCONTEXT_t f, void* p) |
576 | { |
577 | dVAR; |
7918f24d |
578 | |
579 | PERL_ARGS_ASSERT_SAVE_DESTRUCTOR; |
580 | |
12ab1f58 |
581 | SSCHECK(3); |
582 | SSPUSHDPTR(f); |
583 | SSPUSHPTR(p); |
584 | SSPUSHINT(SAVEt_DESTRUCTOR); |
585 | } |
586 | |
587 | void |
146174a9 |
588 | Perl_save_destructor_x(pTHX_ DESTRUCTORFUNC_t f, void* p) |
589 | { |
97aff369 |
590 | dVAR; |
146174a9 |
591 | SSCHECK(3); |
592 | SSPUSHDXPTR(f); |
593 | SSPUSHPTR(p); |
594 | SSPUSHINT(SAVEt_DESTRUCTOR_X); |
595 | } |
596 | |
597 | void |
59413342 |
598 | Perl_save_aelem(pTHX_ AV *av, I32 idx, SV **sptr) |
4e4c362e |
599 | { |
97aff369 |
600 | dVAR; |
bfc4de9f |
601 | SV *sv; |
7918f24d |
602 | |
603 | PERL_ARGS_ASSERT_SAVE_AELEM; |
604 | |
0cbee0a4 |
605 | SvGETMAGIC(*sptr); |
4e4c362e |
606 | SSCHECK(4); |
b37c2d43 |
607 | SSPUSHPTR(SvREFCNT_inc_simple(av)); |
4e4c362e |
608 | SSPUSHINT(idx); |
609 | SSPUSHPTR(SvREFCNT_inc(*sptr)); |
610 | SSPUSHINT(SAVEt_AELEM); |
5dd42e15 |
611 | /* if it gets reified later, the restore will have the wrong refcnt */ |
612 | if (!AvREAL(av) && AvREIFY(av)) |
b37c2d43 |
613 | SvREFCNT_inc_void(*sptr); |
af7df257 |
614 | save_scalar_at(sptr, SAVEf_SETMAGIC); /* XXX - FIXME - see #60360 */ |
bfc4de9f |
615 | sv = *sptr; |
616 | /* If we're localizing a tied array element, this new sv |
617 | * won't actually be stored in the array - so it won't get |
618 | * reaped when the localize ends. Ensure it gets reaped by |
619 | * mortifying it instead. DAPM */ |
620 | if (SvTIED_mg(sv, PERL_MAGIC_tiedelem)) |
621 | sv_2mortal(sv); |
4e4c362e |
622 | } |
623 | |
624 | void |
af7df257 |
625 | Perl_save_helem_flags(pTHX_ HV *hv, SV *key, SV **sptr, const U32 flags) |
4e4c362e |
626 | { |
97aff369 |
627 | dVAR; |
bfc4de9f |
628 | SV *sv; |
7918f24d |
629 | |
af7df257 |
630 | PERL_ARGS_ASSERT_SAVE_HELEM_FLAGS; |
7918f24d |
631 | |
0cbee0a4 |
632 | SvGETMAGIC(*sptr); |
4e4c362e |
633 | SSCHECK(4); |
b37c2d43 |
634 | SSPUSHPTR(SvREFCNT_inc_simple(hv)); |
b2096149 |
635 | SSPUSHPTR(newSVsv(key)); |
4e4c362e |
636 | SSPUSHPTR(SvREFCNT_inc(*sptr)); |
637 | SSPUSHINT(SAVEt_HELEM); |
af7df257 |
638 | save_scalar_at(sptr, flags); |
bfc4de9f |
639 | sv = *sptr; |
640 | /* If we're localizing a tied hash element, this new sv |
641 | * won't actually be stored in the hash - so it won't get |
642 | * reaped when the localize ends. Ensure it gets reaped by |
643 | * mortifying it instead. DAPM */ |
644 | if (SvTIED_mg(sv, PERL_MAGIC_tiedelem)) |
645 | sv_2mortal(sv); |
4e4c362e |
646 | } |
647 | |
2053acbf |
648 | SV* |
649 | Perl_save_svref(pTHX_ SV **sptr) |
650 | { |
651 | dVAR; |
7918f24d |
652 | |
653 | PERL_ARGS_ASSERT_SAVE_SVREF; |
654 | |
2053acbf |
655 | SvGETMAGIC(*sptr); |
656 | SSCHECK(3); |
657 | SSPUSHPTR(sptr); |
658 | SSPUSHPTR(SvREFCNT_inc(*sptr)); |
659 | SSPUSHINT(SAVEt_SVREF); |
af7df257 |
660 | return save_scalar_at(sptr, SAVEf_SETMAGIC); /* XXX - FIXME - see #60360 */ |
2053acbf |
661 | } |
662 | |
4e4c362e |
663 | void |
864dbfa3 |
664 | Perl_save_op(pTHX) |
462e5cf6 |
665 | { |
97aff369 |
666 | dVAR; |
462e5cf6 |
667 | SSCHECK(2); |
533c011a |
668 | SSPUSHPTR(PL_op); |
462e5cf6 |
669 | SSPUSHINT(SAVEt_OP); |
670 | } |
671 | |
455ece5e |
672 | I32 |
864dbfa3 |
673 | Perl_save_alloc(pTHX_ I32 size, I32 pad) |
455ece5e |
674 | { |
97aff369 |
675 | dVAR; |
35a4481c |
676 | register const I32 start = pad + ((char*)&PL_savestack[PL_savestack_ix] |
8aacddc1 |
677 | - (char*)PL_savestack); |
35a4481c |
678 | register const I32 elems = 1 + ((size + pad - 1) / sizeof(*PL_savestack)); |
455ece5e |
679 | |
1bb4c835 |
680 | SSGROW(elems + 2); |
455ece5e |
681 | |
682 | PL_savestack_ix += elems; |
683 | SSPUSHINT(elems); |
684 | SSPUSHINT(SAVEt_ALLOC); |
685 | return start; |
686 | } |
687 | |
462e5cf6 |
688 | void |
864dbfa3 |
689 | Perl_leave_scope(pTHX_ I32 base) |
79072805 |
690 | { |
97aff369 |
691 | dVAR; |
79072805 |
692 | register SV *sv; |
693 | register SV *value; |
694 | register GV *gv; |
695 | register AV *av; |
696 | register HV *hv; |
20454177 |
697 | void* ptr; |
f4dd75d9 |
698 | register char* str; |
161b7d16 |
699 | I32 i; |
79072805 |
700 | |
701 | if (base < -1) |
cea2e8a9 |
702 | Perl_croak(aTHX_ "panic: corrupt saved stack index"); |
3280af22 |
703 | while (PL_savestack_ix > base) { |
79072805 |
704 | switch (SSPOPINT) { |
705 | case SAVEt_ITEM: /* normal string */ |
ad64d0ec |
706 | value = MUTABLE_SV(SSPOPPTR); |
707 | sv = MUTABLE_SV(SSPOPPTR); |
79072805 |
708 | sv_replace(sv,value); |
3280af22 |
709 | PL_localizing = 2; |
79072805 |
710 | SvSETMAGIC(sv); |
3280af22 |
711 | PL_localizing = 0; |
79072805 |
712 | break; |
8aacddc1 |
713 | case SAVEt_SV: /* scalar reference */ |
ad64d0ec |
714 | value = MUTABLE_SV(SSPOPPTR); |
159b6efe |
715 | gv = MUTABLE_GV(SSPOPPTR); |
7a4c00b4 |
716 | ptr = &GvSV(gv); |
502c6561 |
717 | av = MUTABLE_AV(gv); /* what to refcnt_dec */ |
2053acbf |
718 | restore_sv: |
719 | sv = *(SV**)ptr; |
2053acbf |
720 | *(SV**)ptr = value; |
721 | SvREFCNT_dec(sv); |
722 | PL_localizing = 2; |
723 | SvSETMAGIC(value); |
724 | PL_localizing = 0; |
725 | SvREFCNT_dec(value); |
726 | if (av) /* actually an av, hv or gv */ |
727 | SvREFCNT_dec(av); |
728 | break; |
8aacddc1 |
729 | case SAVEt_GENERIC_PVREF: /* generic pv */ |
f4dd75d9 |
730 | ptr = SSPOPPTR; |
b03d03b0 |
731 | str = (char*)SSPOPPTR; |
f4dd75d9 |
732 | if (*(char**)ptr != str) { |
733 | Safefree(*(char**)ptr); |
734 | *(char**)ptr = str; |
735 | } |
736 | break; |
05ec9bb3 |
737 | case SAVEt_SHARED_PVREF: /* shared pv */ |
738 | str = (char*)SSPOPPTR; |
739 | ptr = SSPOPPTR; |
740 | if (*(char**)ptr != str) { |
5e54c26f |
741 | #ifdef NETWARE |
9ecbcc42 |
742 | PerlMem_free(*(char**)ptr); |
5e54c26f |
743 | #else |
05ec9bb3 |
744 | PerlMemShared_free(*(char**)ptr); |
5e54c26f |
745 | #endif |
05ec9bb3 |
746 | *(char**)ptr = str; |
747 | } |
748 | break; |
8aacddc1 |
749 | case SAVEt_GENERIC_SVREF: /* generic sv */ |
ad64d0ec |
750 | value = MUTABLE_SV(SSPOPPTR); |
b9d12d37 |
751 | ptr = SSPOPPTR; |
f4dd75d9 |
752 | sv = *(SV**)ptr; |
753 | *(SV**)ptr = value; |
754 | SvREFCNT_dec(sv); |
b9d12d37 |
755 | SvREFCNT_dec(value); |
756 | break; |
8aacddc1 |
757 | case SAVEt_AV: /* array reference */ |
502c6561 |
758 | av = MUTABLE_AV(SSPOPPTR); |
159b6efe |
759 | gv = MUTABLE_GV(SSPOPPTR); |
fb73857a |
760 | if (GvAV(gv)) { |
c4a7531d |
761 | SvREFCNT_dec(GvAV(gv)); |
fb73857a |
762 | } |
8aacddc1 |
763 | GvAV(gv) = av; |
fb73857a |
764 | if (SvMAGICAL(av)) { |
3280af22 |
765 | PL_localizing = 2; |
ad64d0ec |
766 | SvSETMAGIC(MUTABLE_SV(av)); |
3280af22 |
767 | PL_localizing = 0; |
fb73857a |
768 | } |
8aacddc1 |
769 | break; |
770 | case SAVEt_HV: /* hash reference */ |
85fbaab2 |
771 | hv = MUTABLE_HV(SSPOPPTR); |
159b6efe |
772 | gv = MUTABLE_GV(SSPOPPTR); |
fb73857a |
773 | if (GvHV(gv)) { |
c4a7531d |
774 | SvREFCNT_dec(GvHV(gv)); |
fb73857a |
775 | } |
8aacddc1 |
776 | GvHV(gv) = hv; |
fb73857a |
777 | if (SvMAGICAL(hv)) { |
3280af22 |
778 | PL_localizing = 2; |
ad64d0ec |
779 | SvSETMAGIC(MUTABLE_SV(hv)); |
3280af22 |
780 | PL_localizing = 0; |
fb73857a |
781 | } |
8aacddc1 |
782 | break; |
79072805 |
783 | case SAVEt_INT: /* int reference */ |
784 | ptr = SSPOPPTR; |
785 | *(int*)ptr = (int)SSPOPINT; |
786 | break; |
9febdf04 |
787 | case SAVEt_BOOL: /* bool reference */ |
788 | ptr = SSPOPPTR; |
789 | *(bool*)ptr = (bool)SSPOPBOOL; |
790 | break; |
79072805 |
791 | case SAVEt_I32: /* I32 reference */ |
792 | ptr = SSPOPPTR; |
3235b7a3 |
793 | #ifdef PERL_DEBUG_READONLY_OPS |
794 | { |
795 | const I32 val = SSPOPINT; |
796 | if (*(I32*)ptr != val) |
797 | *(I32*)ptr = val; |
798 | } |
799 | #else |
79072805 |
800 | *(I32*)ptr = (I32)SSPOPINT; |
3235b7a3 |
801 | #endif |
79072805 |
802 | break; |
803 | case SAVEt_SPTR: /* SV* reference */ |
804 | ptr = SSPOPPTR; |
ad64d0ec |
805 | *(SV**)ptr = MUTABLE_SV(SSPOPPTR); |
79072805 |
806 | break; |
146174a9 |
807 | case SAVEt_VPTR: /* random* reference */ |
85e6fe83 |
808 | case SAVEt_PPTR: /* char* reference */ |
809 | ptr = SSPOPPTR; |
810 | *(char**)ptr = (char*)SSPOPPTR; |
811 | break; |
79072805 |
812 | case SAVEt_HPTR: /* HV* reference */ |
813 | ptr = SSPOPPTR; |
85fbaab2 |
814 | *(HV**)ptr = MUTABLE_HV(SSPOPPTR); |
79072805 |
815 | break; |
816 | case SAVEt_APTR: /* AV* reference */ |
817 | ptr = SSPOPPTR; |
502c6561 |
818 | *(AV**)ptr = MUTABLE_AV(SSPOPPTR); |
79072805 |
819 | break; |
fb73857a |
820 | case SAVEt_GP: /* scalar reference */ |
79072805 |
821 | ptr = SSPOPPTR; |
159b6efe |
822 | gv = MUTABLE_GV(SSPOPPTR); |
8aacddc1 |
823 | gp_free(gv); |
824 | GvGP(gv) = (GP*)ptr; |
dd69841b |
825 | /* putting a method back into circulation ("local")*/ |
826 | if (GvCVu(gv) && (hv=GvSTASH(gv)) && HvNAME_get(hv)) |
827 | mro_method_changed_in(hv); |
4633a7c4 |
828 | SvREFCNT_dec(gv); |
8aacddc1 |
829 | break; |
8990e307 |
830 | case SAVEt_FREESV: |
831 | ptr = SSPOPPTR; |
ad64d0ec |
832 | SvREFCNT_dec(MUTABLE_SV(ptr)); |
8990e307 |
833 | break; |
26d9b02f |
834 | case SAVEt_MORTALIZESV: |
835 | ptr = SSPOPPTR; |
ad64d0ec |
836 | sv_2mortal(MUTABLE_SV(ptr)); |
26d9b02f |
837 | break; |
8990e307 |
838 | case SAVEt_FREEOP: |
839 | ptr = SSPOPPTR; |
f3548bdc |
840 | ASSERT_CURPAD_LEGAL("SAVEt_FREEOP"); /* XXX DAPM tmp */ |
8990e307 |
841 | op_free((OP*)ptr); |
842 | break; |
843 | case SAVEt_FREEPV: |
844 | ptr = SSPOPPTR; |
1df70142 |
845 | Safefree(ptr); |
8990e307 |
846 | break; |
847 | case SAVEt_CLEARSV: |
3280af22 |
848 | ptr = (void*)&PL_curpad[SSPOPLONG]; |
8990e307 |
849 | sv = *(SV**)ptr; |
dd2155a4 |
850 | |
851 | DEBUG_Xv(PerlIO_printf(Perl_debug_log, |
f3548bdc |
852 | "Pad 0x%"UVxf"[0x%"UVxf"] clearsv: %ld sv=0x%"UVxf"<%"IVdf"> %s\n", |
853 | PTR2UV(PL_comppad), PTR2UV(PL_curpad), |
854 | (long)((SV **)ptr-PL_curpad), PTR2UV(sv), (IV)SvREFCNT(sv), |
dd2155a4 |
855 | (SvREFCNT(sv) <= 1 && !SvOBJECT(sv)) ? "clear" : "abandon" |
856 | )); |
857 | |
bc44cdaf |
858 | /* Can clear pad variable in place? */ |
859 | if (SvREFCNT(sv) <= 1 && !SvOBJECT(sv)) { |
8aacddc1 |
860 | /* |
861 | * if a my variable that was made readonly is going out of |
862 | * scope, we want to remove the readonlyness so that it can |
863 | * go out of scope quietly |
8aacddc1 |
864 | */ |
a26e96df |
865 | if (SvPADMY(sv) && !SvFAKE(sv)) |
8aacddc1 |
866 | SvREADONLY_off(sv); |
867 | |
6fc92669 |
868 | if (SvTHINKFIRST(sv)) |
840a7b70 |
869 | sv_force_normal_flags(sv, SV_IMMEDIATE_UNREF); |
a0d0e21e |
870 | if (SvMAGICAL(sv)) |
871 | mg_free(sv); |
8990e307 |
872 | |
873 | switch (SvTYPE(sv)) { |
874 | case SVt_NULL: |
875 | break; |
876 | case SVt_PVAV: |
502c6561 |
877 | av_clear(MUTABLE_AV(sv)); |
8990e307 |
878 | break; |
879 | case SVt_PVHV: |
85fbaab2 |
880 | hv_clear(MUTABLE_HV(sv)); |
8990e307 |
881 | break; |
882 | case SVt_PVCV: |
cea2e8a9 |
883 | Perl_croak(aTHX_ "panic: leave_scope pad code"); |
8990e307 |
884 | default: |
0c34ef67 |
885 | SvOK_off(sv); |
8990e307 |
886 | break; |
887 | } |
d9d18af6 |
888 | SvPADSTALE_on(sv); /* mark as no longer live */ |
8990e307 |
889 | } |
890 | else { /* Someone has a claim on this, so abandon it. */ |
35a4481c |
891 | const U32 padflags = SvFLAGS(sv) & (SVs_PADMY|SVs_PADTMP); |
8990e307 |
892 | switch (SvTYPE(sv)) { /* Console ourselves with a new value */ |
ad64d0ec |
893 | case SVt_PVAV: *(SV**)ptr = MUTABLE_SV(newAV()); break; |
894 | case SVt_PVHV: *(SV**)ptr = MUTABLE_SV(newHV()); break; |
561b68a9 |
895 | default: *(SV**)ptr = newSV(0); break; |
8990e307 |
896 | } |
53868620 |
897 | SvREFCNT_dec(sv); /* Cast current value to the winds. */ |
d9d18af6 |
898 | /* preserve pad nature, but also mark as not live |
899 | * for any closure capturing */ |
2740392c |
900 | SvFLAGS(*(SV**)ptr) |= padflags | SVs_PADSTALE; |
8990e307 |
901 | } |
902 | break; |
903 | case SAVEt_DELETE: |
904 | ptr = SSPOPPTR; |
85fbaab2 |
905 | hv = MUTABLE_HV(ptr); |
8990e307 |
906 | ptr = SSPOPPTR; |
7d654f43 |
907 | (void)hv_delete(hv, (char*)ptr, (I32)SSPOPINT, G_DISCARD); |
4e4c362e |
908 | SvREFCNT_dec(hv); |
8aacddc1 |
909 | Safefree(ptr); |
8990e307 |
910 | break; |
146174a9 |
911 | case SAVEt_DESTRUCTOR_X: |
912 | ptr = SSPOPPTR; |
acfe0abc |
913 | (*SSPOPDXPTR)(aTHX_ ptr); |
a0d0e21e |
914 | break; |
915 | case SAVEt_REGCONTEXT: |
455ece5e |
916 | case SAVEt_ALLOC: |
161b7d16 |
917 | i = SSPOPINT; |
3280af22 |
918 | PL_savestack_ix -= i; /* regexp must have croaked */ |
a0d0e21e |
919 | break; |
55497cff |
920 | case SAVEt_STACK_POS: /* Position on Perl stack */ |
161b7d16 |
921 | i = SSPOPINT; |
3280af22 |
922 | PL_stack_sp = PL_stack_base + i; |
55497cff |
923 | break; |
ea8d6ae1 |
924 | case SAVEt_STACK_CXPOS: /* blk_oldsp on context stack */ |
925 | i = SSPOPINT; |
926 | cxstack[i].blk_oldsp = SSPOPINT; |
927 | break; |
161b7d16 |
928 | case SAVEt_AELEM: /* array element */ |
ad64d0ec |
929 | value = MUTABLE_SV(SSPOPPTR); |
161b7d16 |
930 | i = SSPOPINT; |
502c6561 |
931 | av = MUTABLE_AV(SSPOPPTR); |
658aef79 |
932 | ptr = av_fetch(av,i,1); |
5dd42e15 |
933 | if (!AvREAL(av) && AvREIFY(av)) /* undo reify guard */ |
934 | SvREFCNT_dec(value); |
4e4c362e |
935 | if (ptr) { |
936 | sv = *(SV**)ptr; |
3280af22 |
937 | if (sv && sv != &PL_sv_undef) { |
ad64d0ec |
938 | if (SvTIED_mg((const SV *)av, PERL_MAGIC_tied)) |
b37c2d43 |
939 | SvREFCNT_inc_void_NN(sv); |
4e4c362e |
940 | goto restore_sv; |
941 | } |
942 | } |
943 | SvREFCNT_dec(av); |
944 | SvREFCNT_dec(value); |
945 | break; |
161b7d16 |
946 | case SAVEt_HELEM: /* hash element */ |
ad64d0ec |
947 | value = MUTABLE_SV(SSPOPPTR); |
948 | sv = MUTABLE_SV(SSPOPPTR); |
85fbaab2 |
949 | hv = MUTABLE_HV(SSPOPPTR); |
161b7d16 |
950 | ptr = hv_fetch_ent(hv, sv, 1, 0); |
4e4c362e |
951 | if (ptr) { |
35a4481c |
952 | const SV * const oval = HeVAL((HE*)ptr); |
3280af22 |
953 | if (oval && oval != &PL_sv_undef) { |
4e4c362e |
954 | ptr = &HeVAL((HE*)ptr); |
ad64d0ec |
955 | if (SvTIED_mg((const SV *)hv, PERL_MAGIC_tied)) |
b37c2d43 |
956 | SvREFCNT_inc_void(*(SV**)ptr); |
4e4c362e |
957 | SvREFCNT_dec(sv); |
502c6561 |
958 | av = MUTABLE_AV(hv); /* what to refcnt_dec */ |
4e4c362e |
959 | goto restore_sv; |
960 | } |
961 | } |
962 | SvREFCNT_dec(hv); |
963 | SvREFCNT_dec(sv); |
964 | SvREFCNT_dec(value); |
965 | break; |
462e5cf6 |
966 | case SAVEt_OP: |
533c011a |
967 | PL_op = (OP*)SSPOPPTR; |
462e5cf6 |
968 | break; |
25eaa213 |
969 | case SAVEt_HINTS: |
045ac317 |
970 | if ((PL_hints & HINT_LOCALIZE_HH) && GvHV(PL_hintgv)) { |
ad64d0ec |
971 | SvREFCNT_dec(MUTABLE_SV(GvHV(PL_hintgv))); |
045ac317 |
972 | GvHV(PL_hintgv) = NULL; |
973 | } |
3280af22 |
974 | *(I32*)&PL_hints = (I32)SSPOPINT; |
c28fe1ec |
975 | Perl_refcounted_he_free(aTHX_ PL_compiling.cop_hints_hash); |
976 | PL_compiling.cop_hints_hash = (struct refcounted_he *) SSPOPPTR; |
dfa41748 |
977 | if (PL_hints & HINT_LOCALIZE_HH) { |
ad64d0ec |
978 | SvREFCNT_dec(MUTABLE_SV(GvHV(PL_hintgv))); |
85fbaab2 |
979 | GvHV(PL_hintgv) = MUTABLE_HV(SSPOPPTR); |
5b9c0671 |
980 | assert(GvHV(PL_hintgv)); |
981 | } else if (!GvHV(PL_hintgv)) { |
982 | /* Need to add a new one manually, else gv_fetchpv() can |
983 | add one in this code: |
984 | |
985 | if (SvTYPE(gv) == SVt_PVGV) { |
986 | if (add) { |
987 | GvMULTI_on(gv); |
988 | gv_init_sv(gv, sv_type); |
989 | if (*name=='!' && sv_type == SVt_PVHV && len==1) |
990 | require_errno(gv); |
991 | } |
992 | return gv; |
993 | } |
994 | |
995 | and it won't have the magic set. */ |
996 | |
997 | HV *const hv = newHV(); |
998 | hv_magic(hv, NULL, PERL_MAGIC_hints); |
999 | GvHV(PL_hintgv) = hv; |
dfa41748 |
1000 | } |
5b9c0671 |
1001 | assert(GvHV(PL_hintgv)); |
b3ac6de7 |
1002 | break; |
cb50131a |
1003 | case SAVEt_COMPPAD: |
f3548bdc |
1004 | PL_comppad = (PAD*)SSPOPPTR; |
58ed4fbe |
1005 | if (PL_comppad) |
cb50131a |
1006 | PL_curpad = AvARRAY(PL_comppad); |
1007 | else |
4608196e |
1008 | PL_curpad = NULL; |
cb50131a |
1009 | break; |
09edbca0 |
1010 | case SAVEt_PADSV_AND_MORTALIZE: |
c3564e5c |
1011 | { |
35a4481c |
1012 | const PADOFFSET off = (PADOFFSET)SSPOPLONG; |
09edbca0 |
1013 | SV **svp; |
c3564e5c |
1014 | ptr = SSPOPPTR; |
09edbca0 |
1015 | assert (ptr); |
1016 | svp = AvARRAY((PAD*)ptr) + off; |
1017 | /* This mortalizing used to be done by POPLOOP() via itersave. |
1018 | But as we have all the information here, we can do it here, |
1019 | save even having to have itersave in the struct. */ |
1020 | sv_2mortal(*svp); |
ad64d0ec |
1021 | *svp = MUTABLE_SV(SSPOPPTR); |
c3564e5c |
1022 | } |
1023 | break; |
8b7059b1 |
1024 | case SAVEt_SAVESWITCHSTACK: |
1025 | { |
1026 | dSP; |
502c6561 |
1027 | AV *const t = MUTABLE_AV(SSPOPPTR); |
1028 | AV *const f = MUTABLE_AV(SSPOPPTR); |
8b7059b1 |
1029 | SWITCHSTACK(t,f); |
1030 | PL_curstackinfo->si_stack = f; |
1031 | } |
1032 | break; |
14f338dc |
1033 | case SAVEt_SET_SVFLAGS: |
1034 | { |
35a4481c |
1035 | const U32 val = (U32)SSPOPINT; |
1036 | const U32 mask = (U32)SSPOPINT; |
ad64d0ec |
1037 | sv = MUTABLE_SV(SSPOPPTR); |
14f338dc |
1038 | SvFLAGS(sv) &= ~mask; |
1039 | SvFLAGS(sv) |= val; |
1040 | } |
1041 | break; |
95e06916 |
1042 | |
1043 | /* This would be a mathom, but Perl_save_svref() calls a static |
1044 | function, S_save_scalar_at(), so has to stay in this file. */ |
2053acbf |
1045 | case SAVEt_SVREF: /* scalar reference */ |
ad64d0ec |
1046 | value = MUTABLE_SV(SSPOPPTR); |
2053acbf |
1047 | ptr = SSPOPPTR; |
1048 | av = NULL; /* what to refcnt_dec */ |
1049 | goto restore_sv; |
95e06916 |
1050 | |
1051 | /* These are only saved in mathoms.c */ |
1052 | case SAVEt_NSTAB: |
159b6efe |
1053 | gv = MUTABLE_GV(SSPOPPTR); |
ad64d0ec |
1054 | (void)sv_clear(MUTABLE_SV(gv)); |
95e06916 |
1055 | break; |
2053acbf |
1056 | case SAVEt_LONG: /* long reference */ |
1057 | ptr = SSPOPPTR; |
1058 | *(long*)ptr = (long)SSPOPLONG; |
1059 | break; |
95e06916 |
1060 | case SAVEt_IV: /* IV reference */ |
1061 | ptr = SSPOPPTR; |
1062 | *(IV*)ptr = (IV)SSPOPIV; |
1063 | break; |
1064 | |
2053acbf |
1065 | case SAVEt_I16: /* I16 reference */ |
1066 | ptr = SSPOPPTR; |
1067 | *(I16*)ptr = (I16)SSPOPINT; |
1068 | break; |
1069 | case SAVEt_I8: /* I8 reference */ |
1070 | ptr = SSPOPPTR; |
1071 | *(I8*)ptr = (I8)SSPOPINT; |
1072 | break; |
2053acbf |
1073 | case SAVEt_DESTRUCTOR: |
1074 | ptr = SSPOPPTR; |
1075 | (*SSPOPDPTR)(ptr); |
1076 | break; |
fc15ae8f |
1077 | case SAVEt_COP_ARYBASE: |
1078 | ptr = SSPOPPTR; |
1079 | i = SSPOPINT; |
1080 | CopARYBASE_set((COP *)ptr, i); |
1081 | break; |
68da3b2f |
1082 | case SAVEt_COMPILE_WARNINGS: |
1083 | ptr = SSPOPPTR; |
72dc9ed5 |
1084 | |
68da3b2f |
1085 | if (!specialWARN(PL_compiling.cop_warnings)) |
1086 | PerlMemShared_free(PL_compiling.cop_warnings); |
72dc9ed5 |
1087 | |
10edeb5d |
1088 | PL_compiling.cop_warnings = (STRLEN*)ptr; |
72dc9ed5 |
1089 | break; |
1ade1aa1 |
1090 | case SAVEt_RE_STATE: |
1091 | { |
1092 | const struct re_save_state *const state |
1093 | = (struct re_save_state *) |
1094 | (PL_savestack + PL_savestack_ix |
1095 | - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE); |
1096 | PL_savestack_ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE; |
1097 | |
1ade1aa1 |
1098 | if (PL_reg_start_tmp != state->re_state_reg_start_tmp) { |
1099 | Safefree(PL_reg_start_tmp); |
1ade1aa1 |
1100 | } |
1ade1aa1 |
1101 | if (PL_reg_poscache != state->re_state_reg_poscache) { |
1102 | Safefree(PL_reg_poscache); |
1ade1aa1 |
1103 | } |
46ab3289 |
1104 | Copy(state, &PL_reg_state, 1, struct re_save_state); |
1ade1aa1 |
1105 | } |
1106 | break; |
7c197c94 |
1107 | case SAVEt_PARSER: |
1108 | ptr = SSPOPPTR; |
1109 | parser_free((yy_parser *) ptr); |
1110 | break; |
79072805 |
1111 | default: |
cea2e8a9 |
1112 | Perl_croak(aTHX_ "panic: leave_scope inconsistency"); |
79072805 |
1113 | } |
1114 | } |
1115 | } |
8990e307 |
1116 | |
8990e307 |
1117 | void |
864dbfa3 |
1118 | Perl_cx_dump(pTHX_ PERL_CONTEXT *cx) |
8990e307 |
1119 | { |
97aff369 |
1120 | dVAR; |
7918f24d |
1121 | |
1122 | PERL_ARGS_ASSERT_CX_DUMP; |
1123 | |
35ff7856 |
1124 | #ifdef DEBUGGING |
22c35a8c |
1125 | PerlIO_printf(Perl_debug_log, "CX %ld = %s\n", (long)(cx - cxstack), PL_block_type[CxTYPE(cx)]); |
6b35e009 |
1126 | if (CxTYPE(cx) != CXt_SUBST) { |
760ac839 |
1127 | PerlIO_printf(Perl_debug_log, "BLK_OLDSP = %ld\n", (long)cx->blk_oldsp); |
146174a9 |
1128 | PerlIO_printf(Perl_debug_log, "BLK_OLDCOP = 0x%"UVxf"\n", |
1129 | PTR2UV(cx->blk_oldcop)); |
760ac839 |
1130 | PerlIO_printf(Perl_debug_log, "BLK_OLDMARKSP = %ld\n", (long)cx->blk_oldmarksp); |
1131 | PerlIO_printf(Perl_debug_log, "BLK_OLDSCOPESP = %ld\n", (long)cx->blk_oldscopesp); |
146174a9 |
1132 | PerlIO_printf(Perl_debug_log, "BLK_OLDPM = 0x%"UVxf"\n", |
1133 | PTR2UV(cx->blk_oldpm)); |
760ac839 |
1134 | PerlIO_printf(Perl_debug_log, "BLK_GIMME = %s\n", cx->blk_gimme ? "LIST" : "SCALAR"); |
8990e307 |
1135 | } |
6b35e009 |
1136 | switch (CxTYPE(cx)) { |
8990e307 |
1137 | case CXt_NULL: |
1138 | case CXt_BLOCK: |
1139 | break; |
146174a9 |
1140 | case CXt_FORMAT: |
f9c764c5 |
1141 | PerlIO_printf(Perl_debug_log, "BLK_FORMAT.CV = 0x%"UVxf"\n", |
1142 | PTR2UV(cx->blk_format.cv)); |
1143 | PerlIO_printf(Perl_debug_log, "BLK_FORMAT.GV = 0x%"UVxf"\n", |
1144 | PTR2UV(cx->blk_format.gv)); |
1145 | PerlIO_printf(Perl_debug_log, "BLK_FORMAT.DFOUTGV = 0x%"UVxf"\n", |
1146 | PTR2UV(cx->blk_format.dfoutgv)); |
1147 | PerlIO_printf(Perl_debug_log, "BLK_FORMAT.HASARGS = %d\n", |
bafb2adc |
1148 | (int)CxHASARGS(cx)); |
f9c764c5 |
1149 | PerlIO_printf(Perl_debug_log, "BLK_FORMAT.RETOP = 0x%"UVxf"\n", |
1150 | PTR2UV(cx->blk_format.retop)); |
146174a9 |
1151 | break; |
8990e307 |
1152 | case CXt_SUB: |
146174a9 |
1153 | PerlIO_printf(Perl_debug_log, "BLK_SUB.CV = 0x%"UVxf"\n", |
1154 | PTR2UV(cx->blk_sub.cv)); |
760ac839 |
1155 | PerlIO_printf(Perl_debug_log, "BLK_SUB.OLDDEPTH = %ld\n", |
8990e307 |
1156 | (long)cx->blk_sub.olddepth); |
760ac839 |
1157 | PerlIO_printf(Perl_debug_log, "BLK_SUB.HASARGS = %d\n", |
bafb2adc |
1158 | (int)CxHASARGS(cx)); |
1159 | PerlIO_printf(Perl_debug_log, "BLK_SUB.LVAL = %d\n", (int)CxLVAL(cx)); |
f39bc417 |
1160 | PerlIO_printf(Perl_debug_log, "BLK_SUB.RETOP = 0x%"UVxf"\n", |
1161 | PTR2UV(cx->blk_sub.retop)); |
8990e307 |
1162 | break; |
1163 | case CXt_EVAL: |
760ac839 |
1164 | PerlIO_printf(Perl_debug_log, "BLK_EVAL.OLD_IN_EVAL = %ld\n", |
85a64632 |
1165 | (long)CxOLD_IN_EVAL(cx)); |
760ac839 |
1166 | PerlIO_printf(Perl_debug_log, "BLK_EVAL.OLD_OP_TYPE = %s (%s)\n", |
85a64632 |
1167 | PL_op_name[CxOLD_OP_TYPE(cx)], |
1168 | PL_op_desc[CxOLD_OP_TYPE(cx)]); |
0f79a09d |
1169 | if (cx->blk_eval.old_namesv) |
1170 | PerlIO_printf(Perl_debug_log, "BLK_EVAL.OLD_NAME = %s\n", |
aa07b2f6 |
1171 | SvPVX_const(cx->blk_eval.old_namesv)); |
146174a9 |
1172 | PerlIO_printf(Perl_debug_log, "BLK_EVAL.OLD_EVAL_ROOT = 0x%"UVxf"\n", |
1173 | PTR2UV(cx->blk_eval.old_eval_root)); |
f39bc417 |
1174 | PerlIO_printf(Perl_debug_log, "BLK_EVAL.RETOP = 0x%"UVxf"\n", |
1175 | PTR2UV(cx->blk_eval.retop)); |
8990e307 |
1176 | break; |
1177 | |
c6fdafd0 |
1178 | case CXt_LOOP_LAZYIV: |
d01136d6 |
1179 | case CXt_LOOP_LAZYSV: |
3b719c58 |
1180 | case CXt_LOOP_FOR: |
1181 | case CXt_LOOP_PLAIN: |
0cbdab38 |
1182 | PerlIO_printf(Perl_debug_log, "BLK_LOOP.LABEL = %s\n", CxLABEL(cx)); |
760ac839 |
1183 | PerlIO_printf(Perl_debug_log, "BLK_LOOP.RESETSP = %ld\n", |
8990e307 |
1184 | (long)cx->blk_loop.resetsp); |
022eaa24 |
1185 | PerlIO_printf(Perl_debug_log, "BLK_LOOP.MY_OP = 0x%"UVxf"\n", |
1186 | PTR2UV(cx->blk_loop.my_op)); |
146174a9 |
1187 | PerlIO_printf(Perl_debug_log, "BLK_LOOP.NEXT_OP = 0x%"UVxf"\n", |
022eaa24 |
1188 | PTR2UV(CX_LOOP_NEXTOP_GET(cx))); |
d01136d6 |
1189 | /* XXX: not accurate for LAZYSV/IV */ |
146174a9 |
1190 | PerlIO_printf(Perl_debug_log, "BLK_LOOP.ITERARY = 0x%"UVxf"\n", |
d01136d6 |
1191 | PTR2UV(cx->blk_loop.state_u.ary.ary)); |
1192 | PerlIO_printf(Perl_debug_log, "BLK_LOOP.ITERIX = %ld\n", |
1193 | (long)cx->blk_loop.state_u.ary.ix); |
146174a9 |
1194 | PerlIO_printf(Perl_debug_log, "BLK_LOOP.ITERVAR = 0x%"UVxf"\n", |
1195 | PTR2UV(CxITERVAR(cx))); |
8990e307 |
1196 | break; |
1197 | |
1198 | case CXt_SUBST: |
760ac839 |
1199 | PerlIO_printf(Perl_debug_log, "SB_ITERS = %ld\n", |
8990e307 |
1200 | (long)cx->sb_iters); |
760ac839 |
1201 | PerlIO_printf(Perl_debug_log, "SB_MAXITERS = %ld\n", |
8990e307 |
1202 | (long)cx->sb_maxiters); |
35ef4773 |
1203 | PerlIO_printf(Perl_debug_log, "SB_RFLAGS = %ld\n", |
1204 | (long)cx->sb_rflags); |
760ac839 |
1205 | PerlIO_printf(Perl_debug_log, "SB_ONCE = %ld\n", |
c5bed6a7 |
1206 | (long)CxONCE(cx)); |
760ac839 |
1207 | PerlIO_printf(Perl_debug_log, "SB_ORIG = %s\n", |
8990e307 |
1208 | cx->sb_orig); |
146174a9 |
1209 | PerlIO_printf(Perl_debug_log, "SB_DSTR = 0x%"UVxf"\n", |
1210 | PTR2UV(cx->sb_dstr)); |
1211 | PerlIO_printf(Perl_debug_log, "SB_TARG = 0x%"UVxf"\n", |
1212 | PTR2UV(cx->sb_targ)); |
1213 | PerlIO_printf(Perl_debug_log, "SB_S = 0x%"UVxf"\n", |
1214 | PTR2UV(cx->sb_s)); |
1215 | PerlIO_printf(Perl_debug_log, "SB_M = 0x%"UVxf"\n", |
1216 | PTR2UV(cx->sb_m)); |
1217 | PerlIO_printf(Perl_debug_log, "SB_STREND = 0x%"UVxf"\n", |
1218 | PTR2UV(cx->sb_strend)); |
1219 | PerlIO_printf(Perl_debug_log, "SB_RXRES = 0x%"UVxf"\n", |
1220 | PTR2UV(cx->sb_rxres)); |
8990e307 |
1221 | break; |
1222 | } |
65e66c80 |
1223 | #else |
96a5add6 |
1224 | PERL_UNUSED_CONTEXT; |
65e66c80 |
1225 | PERL_UNUSED_ARG(cx); |
17c3b450 |
1226 | #endif /* DEBUGGING */ |
35ff7856 |
1227 | } |
241d1a3b |
1228 | |
1229 | /* |
1230 | * Local variables: |
1231 | * c-indentation-style: bsd |
1232 | * c-basic-offset: 4 |
1233 | * indent-tabs-mode: t |
1234 | * End: |
1235 | * |
37442d52 |
1236 | * ex: set ts=8 sts=4 sw=4 noet: |
1237 | */ |