Commit | Line | Data |
---|---|---|
a0d0e21e LW |
1 | /* pp_hot.c |
2 | * | |
1129b882 NC |
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 | |
a0d0e21e LW |
5 | * |
6 | * You may distribute under the terms of either the GNU General Public | |
7 | * License or the Artistic License, as specified in the README file. | |
8 | * | |
9 | */ | |
10 | ||
11 | /* | |
12 | * Then he heard Merry change the note, and up went the Horn-cry of Buckland, | |
13 | * shaking the air. | |
14 | * | |
4ac71550 TC |
15 | * Awake! Awake! Fear, Fire, Foes! Awake! |
16 | * Fire, Foes! Awake! | |
17 | * | |
18 | * [p.1007 of _The Lord of the Rings_, VI/viii: "The Scouring of the Shire"] | |
a0d0e21e LW |
19 | */ |
20 | ||
166f8a29 DM |
21 | /* This file contains 'hot' pp ("push/pop") functions that |
22 | * execute the opcodes that make up a perl program. A typical pp function | |
23 | * expects to find its arguments on the stack, and usually pushes its | |
24 | * results onto the stack, hence the 'pp' terminology. Each OP structure | |
25 | * contains a pointer to the relevant pp_foo() function. | |
26 | * | |
27 | * By 'hot', we mean common ops whose execution speed is critical. | |
28 | * By gathering them together into a single file, we encourage | |
29 | * CPU cache hits on hot code. Also it could be taken as a warning not to | |
30 | * change any code in this file unless you're sure it won't affect | |
31 | * performance. | |
32 | */ | |
33 | ||
a0d0e21e | 34 | #include "EXTERN.h" |
864dbfa3 | 35 | #define PERL_IN_PP_HOT_C |
a0d0e21e LW |
36 | #include "perl.h" |
37 | ||
38 | /* Hot code. */ | |
39 | ||
40 | PP(pp_const) | |
41 | { | |
97aff369 | 42 | dVAR; |
39644a26 | 43 | dSP; |
996c9baa | 44 | XPUSHs(cSVOP_sv); |
a0d0e21e LW |
45 | RETURN; |
46 | } | |
47 | ||
48 | PP(pp_nextstate) | |
49 | { | |
97aff369 | 50 | dVAR; |
533c011a | 51 | PL_curcop = (COP*)PL_op; |
a0d0e21e | 52 | TAINT_NOT; /* Each statement is presumed innocent */ |
3280af22 | 53 | PL_stack_sp = PL_stack_base + cxstack[cxstack_ix].blk_oldsp; |
a0d0e21e | 54 | FREETMPS; |
f410a211 | 55 | PERL_ASYNC_CHECK(); |
a0d0e21e LW |
56 | return NORMAL; |
57 | } | |
58 | ||
59 | PP(pp_gvsv) | |
60 | { | |
97aff369 | 61 | dVAR; |
39644a26 | 62 | dSP; |
924508f0 | 63 | EXTEND(SP,1); |
533c011a | 64 | if (PL_op->op_private & OPpLVAL_INTRO) |
1d7c1841 | 65 | PUSHs(save_scalar(cGVOP_gv)); |
a0d0e21e | 66 | else |
c69033f2 | 67 | PUSHs(GvSVn(cGVOP_gv)); |
a0d0e21e LW |
68 | RETURN; |
69 | } | |
70 | ||
71 | PP(pp_null) | |
72 | { | |
97aff369 | 73 | dVAR; |
a0d0e21e LW |
74 | return NORMAL; |
75 | } | |
76 | ||
5d8673bc | 77 | /* This is sometimes called directly by pp_coreargs and pp_grepstart. */ |
a0d0e21e LW |
78 | PP(pp_pushmark) |
79 | { | |
97aff369 | 80 | dVAR; |
3280af22 | 81 | PUSHMARK(PL_stack_sp); |
a0d0e21e LW |
82 | return NORMAL; |
83 | } | |
84 | ||
85 | PP(pp_stringify) | |
86 | { | |
97aff369 | 87 | dVAR; dSP; dTARGET; |
4cc783ef DD |
88 | SV * const sv = TOPs; |
89 | SETs(TARG); | |
90 | sv_copypv(TARG, sv); | |
91 | SvSETMAGIC(TARG); | |
92 | /* no PUTBACK, SETs doesn't inc/dec SP */ | |
93 | return NORMAL; | |
a0d0e21e LW |
94 | } |
95 | ||
96 | PP(pp_gv) | |
97 | { | |
97aff369 | 98 | dVAR; dSP; |
ad64d0ec | 99 | XPUSHs(MUTABLE_SV(cGVOP_gv)); |
a0d0e21e LW |
100 | RETURN; |
101 | } | |
102 | ||
103 | PP(pp_and) | |
104 | { | |
4cc783ef | 105 | dVAR; |
f410a211 | 106 | PERL_ASYNC_CHECK(); |
4cc783ef DD |
107 | { |
108 | /* SP is not used to remove a variable that is saved across the | |
109 | sv_2bool_flags call in SvTRUE_NN, if a RISC/CISC or low/high machine | |
110 | register or load/store vs direct mem ops macro is introduced, this | |
111 | should be a define block between direct PL_stack_sp and dSP operations, | |
112 | presently, using PL_stack_sp is bias towards CISC cpus */ | |
113 | SV * const sv = *PL_stack_sp; | |
114 | if (!SvTRUE_NN(sv)) | |
115 | return NORMAL; | |
116 | else { | |
117 | if (PL_op->op_type == OP_AND) | |
118 | --PL_stack_sp; | |
119 | return cLOGOP->op_other; | |
120 | } | |
a0d0e21e LW |
121 | } |
122 | } | |
123 | ||
124 | PP(pp_sassign) | |
125 | { | |
3e75a3c4 RU |
126 | dVAR; dSP; |
127 | /* sassign keeps its args in the optree traditionally backwards. | |
128 | So we pop them differently. | |
129 | */ | |
130 | SV *left = POPs; SV *right = TOPs; | |
748a9306 | 131 | |
533c011a | 132 | if (PL_op->op_private & OPpASSIGN_BACKWARDS) { |
0bd48802 AL |
133 | SV * const temp = left; |
134 | left = right; right = temp; | |
a0d0e21e | 135 | } |
284167a5 | 136 | if (TAINTING_get && TAINT_get && !SvTAINTED(right)) |
a0d0e21e | 137 | TAINT_NOT; |
e26df76a | 138 | if (PL_op->op_private & OPpASSIGN_CV_TO_GV) { |
3e75a3c4 | 139 | SV * const cv = SvRV(right); |
e26df76a | 140 | const U32 cv_type = SvTYPE(cv); |
3e75a3c4 | 141 | const bool is_gv = isGV_with_GP(left); |
6136c704 | 142 | const bool got_coderef = cv_type == SVt_PVCV || cv_type == SVt_PVFM; |
e26df76a NC |
143 | |
144 | if (!got_coderef) { | |
145 | assert(SvROK(cv)); | |
146 | } | |
147 | ||
3e75a3c4 RU |
148 | /* Can do the optimisation if left (LVALUE) is not a typeglob, |
149 | right (RVALUE) is a reference to something, and we're in void | |
e26df76a | 150 | context. */ |
13be902c | 151 | if (!got_coderef && !is_gv && GIMME_V == G_VOID) { |
e26df76a | 152 | /* Is the target symbol table currently empty? */ |
3e75a3c4 | 153 | GV * const gv = gv_fetchsv_nomg(left, GV_NOINIT, SVt_PVGV); |
bb112e5a | 154 | if (SvTYPE(gv) != SVt_PVGV && !SvOK(gv)) { |
e26df76a NC |
155 | /* Good. Create a new proxy constant subroutine in the target. |
156 | The gv becomes a(nother) reference to the constant. */ | |
157 | SV *const value = SvRV(cv); | |
158 | ||
ad64d0ec | 159 | SvUPGRADE(MUTABLE_SV(gv), SVt_IV); |
1ccdb730 | 160 | SvPCS_IMPORTED_on(gv); |
e26df76a | 161 | SvRV_set(gv, value); |
b37c2d43 | 162 | SvREFCNT_inc_simple_void(value); |
3e75a3c4 | 163 | SETs(left); |
e26df76a NC |
164 | RETURN; |
165 | } | |
166 | } | |
167 | ||
168 | /* Need to fix things up. */ | |
13be902c | 169 | if (!is_gv) { |
e26df76a | 170 | /* Need to fix GV. */ |
3e75a3c4 | 171 | left = MUTABLE_SV(gv_fetchsv_nomg(left,GV_ADD, SVt_PVGV)); |
e26df76a NC |
172 | } |
173 | ||
174 | if (!got_coderef) { | |
175 | /* We've been returned a constant rather than a full subroutine, | |
176 | but they expect a subroutine reference to apply. */ | |
53a42478 | 177 | if (SvROK(cv)) { |
d343c3ef | 178 | ENTER_with_name("sassign_coderef"); |
53a42478 NC |
179 | SvREFCNT_inc_void(SvRV(cv)); |
180 | /* newCONSTSUB takes a reference count on the passed in SV | |
181 | from us. We set the name to NULL, otherwise we get into | |
182 | all sorts of fun as the reference to our new sub is | |
183 | donated to the GV that we're about to assign to. | |
184 | */ | |
3e75a3c4 | 185 | SvRV_set(right, MUTABLE_SV(newCONSTSUB(GvSTASH(left), NULL, |
ad64d0ec | 186 | SvRV(cv)))); |
fc2b2dca | 187 | SvREFCNT_dec_NN(cv); |
d343c3ef | 188 | LEAVE_with_name("sassign_coderef"); |
53a42478 NC |
189 | } else { |
190 | /* What can happen for the corner case *{"BONK"} = \&{"BONK"}; | |
191 | is that | |
192 | First: ops for \&{"BONK"}; return us the constant in the | |
193 | symbol table | |
194 | Second: ops for *{"BONK"} cause that symbol table entry | |
195 | (and our reference to it) to be upgraded from RV | |
196 | to typeblob) | |
197 | Thirdly: We get here. cv is actually PVGV now, and its | |
198 | GvCV() is actually the subroutine we're looking for | |
199 | ||
200 | So change the reference so that it points to the subroutine | |
201 | of that typeglob, as that's what they were after all along. | |
202 | */ | |
159b6efe | 203 | GV *const upgraded = MUTABLE_GV(cv); |
53a42478 NC |
204 | CV *const source = GvCV(upgraded); |
205 | ||
206 | assert(source); | |
207 | assert(CvFLAGS(source) & CVf_CONST); | |
208 | ||
209 | SvREFCNT_inc_void(source); | |
fc2b2dca | 210 | SvREFCNT_dec_NN(upgraded); |
3e75a3c4 | 211 | SvRV_set(right, MUTABLE_SV(source)); |
53a42478 | 212 | } |
e26df76a | 213 | } |
53a42478 | 214 | |
e26df76a | 215 | } |
8fe85e3f | 216 | if ( |
3e75a3c4 RU |
217 | SvTEMP(left) && !SvSMAGICAL(left) && SvREFCNT(left) == 1 && |
218 | (!isGV_with_GP(left) || SvFAKE(left)) && ckWARN(WARN_MISC) | |
8fe85e3f FC |
219 | ) |
220 | Perl_warner(aTHX_ | |
221 | packWARN(WARN_MISC), "Useless assignment to a temporary" | |
222 | ); | |
3e75a3c4 RU |
223 | SvSetMagicSV(left, right); |
224 | SETs(left); | |
a0d0e21e LW |
225 | RETURN; |
226 | } | |
227 | ||
228 | PP(pp_cond_expr) | |
229 | { | |
97aff369 | 230 | dVAR; dSP; |
f410a211 | 231 | PERL_ASYNC_CHECK(); |
a0d0e21e | 232 | if (SvTRUEx(POPs)) |
1a67a97c | 233 | RETURNOP(cLOGOP->op_other); |
a0d0e21e | 234 | else |
1a67a97c | 235 | RETURNOP(cLOGOP->op_next); |
a0d0e21e LW |
236 | } |
237 | ||
238 | PP(pp_unstack) | |
239 | { | |
97aff369 | 240 | dVAR; |
8f3964af | 241 | PERL_ASYNC_CHECK(); |
a0d0e21e | 242 | TAINT_NOT; /* Each statement is presumed innocent */ |
3280af22 | 243 | PL_stack_sp = PL_stack_base + cxstack[cxstack_ix].blk_oldsp; |
a0d0e21e | 244 | FREETMPS; |
eae48c89 Z |
245 | if (!(PL_op->op_flags & OPf_SPECIAL)) { |
246 | I32 oldsave = PL_scopestack[PL_scopestack_ix - 1]; | |
247 | LEAVE_SCOPE(oldsave); | |
248 | } | |
a0d0e21e LW |
249 | return NORMAL; |
250 | } | |
251 | ||
a0d0e21e LW |
252 | PP(pp_concat) |
253 | { | |
6f1401dc | 254 | dVAR; dSP; dATARGET; tryAMAGICbin_MG(concat_amg, AMGf_assign); |
748a9306 LW |
255 | { |
256 | dPOPTOPssrl; | |
8d6d96c1 HS |
257 | bool lbyte; |
258 | STRLEN rlen; | |
d4c19fe8 | 259 | const char *rpv = NULL; |
a6b599c7 | 260 | bool rbyte = FALSE; |
a9c4fd4e | 261 | bool rcopied = FALSE; |
8d6d96c1 | 262 | |
6f1401dc DM |
263 | if (TARG == right && right != left) { /* $r = $l.$r */ |
264 | rpv = SvPV_nomg_const(right, rlen); | |
c75ab21a | 265 | rbyte = !DO_UTF8(right); |
59cd0e26 | 266 | right = newSVpvn_flags(rpv, rlen, SVs_TEMP); |
349d4f2f | 267 | rpv = SvPV_const(right, rlen); /* no point setting UTF-8 here */ |
db79b45b | 268 | rcopied = TRUE; |
8d6d96c1 | 269 | } |
7889fe52 | 270 | |
89734059 | 271 | if (TARG != left) { /* not $l .= $r */ |
a9c4fd4e | 272 | STRLEN llen; |
6f1401dc | 273 | const char* const lpv = SvPV_nomg_const(left, llen); |
90f5826e | 274 | lbyte = !DO_UTF8(left); |
8d6d96c1 HS |
275 | sv_setpvn(TARG, lpv, llen); |
276 | if (!lbyte) | |
277 | SvUTF8_on(TARG); | |
278 | else | |
279 | SvUTF8_off(TARG); | |
280 | } | |
89734059 | 281 | else { /* $l .= $r */ |
c75ab21a | 282 | if (!SvOK(TARG)) { |
89734059 | 283 | if (left == right && ckWARN(WARN_UNINITIALIZED)) /* $l .= $l */ |
c75ab21a | 284 | report_uninit(right); |
76f68e9b | 285 | sv_setpvs(left, ""); |
c75ab21a | 286 | } |
583a5589 FC |
287 | SvPV_force_nomg_nolen(left); |
288 | lbyte = !DO_UTF8(left); | |
90f5826e ST |
289 | if (IN_BYTES) |
290 | SvUTF8_off(TARG); | |
8d6d96c1 | 291 | } |
a12c0f56 | 292 | |
c75ab21a | 293 | if (!rcopied) { |
6f1401dc | 294 | if (left == right) |
89734059 | 295 | /* $r.$r: do magic twice: tied might return different 2nd time */ |
6f1401dc DM |
296 | SvGETMAGIC(right); |
297 | rpv = SvPV_nomg_const(right, rlen); | |
c75ab21a RH |
298 | rbyte = !DO_UTF8(right); |
299 | } | |
8d6d96c1 | 300 | if (lbyte != rbyte) { |
e3393f51 NT |
301 | /* sv_utf8_upgrade_nomg() may reallocate the stack */ |
302 | PUTBACK; | |
8d6d96c1 HS |
303 | if (lbyte) |
304 | sv_utf8_upgrade_nomg(TARG); | |
305 | else { | |
db79b45b | 306 | if (!rcopied) |
59cd0e26 | 307 | right = newSVpvn_flags(rpv, rlen, SVs_TEMP); |
8d6d96c1 | 308 | sv_utf8_upgrade_nomg(right); |
6f1401dc | 309 | rpv = SvPV_nomg_const(right, rlen); |
69b47968 | 310 | } |
e3393f51 | 311 | SPAGAIN; |
a0d0e21e | 312 | } |
8d6d96c1 | 313 | sv_catpvn_nomg(TARG, rpv, rlen); |
43ebc500 | 314 | |
a0d0e21e LW |
315 | SETTARG; |
316 | RETURN; | |
748a9306 | 317 | } |
a0d0e21e LW |
318 | } |
319 | ||
d5524600 DM |
320 | /* push the elements of av onto the stack. |
321 | * XXX Note that padav has similar code but without the mg_get(). | |
322 | * I suspect that the mg_get is no longer needed, but while padav | |
323 | * differs, it can't share this function */ | |
324 | ||
f9ae8fb6 | 325 | STATIC void |
d5524600 DM |
326 | S_pushav(pTHX_ AV* const av) |
327 | { | |
328 | dSP; | |
329 | const I32 maxarg = AvFILL(av) + 1; | |
330 | EXTEND(SP, maxarg); | |
331 | if (SvRMAGICAL(av)) { | |
332 | U32 i; | |
333 | for (i=0; i < (U32)maxarg; i++) { | |
334 | SV ** const svp = av_fetch(av, i, FALSE); | |
335 | /* See note in pp_helem, and bug id #27839 */ | |
336 | SP[i+1] = svp | |
337 | ? SvGMAGICAL(*svp) ? (mg_get(*svp), *svp) : *svp | |
338 | : &PL_sv_undef; | |
339 | } | |
340 | } | |
341 | else { | |
342 | Copy(AvARRAY(av), SP+1, maxarg, SV*); | |
343 | } | |
344 | SP += maxarg; | |
345 | PUTBACK; | |
346 | } | |
347 | ||
348 | ||
a7fd8ef6 DM |
349 | /* ($lex1,@lex2,...) or my ($lex1,@lex2,...) */ |
350 | ||
351 | PP(pp_padrange) | |
352 | { | |
353 | dVAR; dSP; | |
354 | PADOFFSET base = PL_op->op_targ; | |
355 | int count = (int)(PL_op->op_private) & OPpPADRANGE_COUNTMASK; | |
356 | int i; | |
d5524600 DM |
357 | if (PL_op->op_flags & OPf_SPECIAL) { |
358 | /* fake the RHS of my ($x,$y,..) = @_ */ | |
359 | PUSHMARK(SP); | |
360 | S_pushav(aTHX_ GvAVn(PL_defgv)); | |
361 | SPAGAIN; | |
362 | } | |
363 | ||
a7fd8ef6 DM |
364 | /* note, this is only skipped for compile-time-known void cxt */ |
365 | if ((PL_op->op_flags & OPf_WANT) != OPf_WANT_VOID) { | |
366 | EXTEND(SP, count); | |
367 | PUSHMARK(SP); | |
368 | for (i = 0; i <count; i++) | |
369 | *++SP = PAD_SV(base+i); | |
370 | } | |
371 | if (PL_op->op_private & OPpLVAL_INTRO) { | |
4e09461c DM |
372 | SV **svp = &(PAD_SVl(base)); |
373 | const UV payload = (UV)( | |
374 | (base << (OPpPADRANGE_COUNTSHIFT + SAVE_TIGHT_SHIFT)) | |
375 | | (count << SAVE_TIGHT_SHIFT) | |
376 | | SAVEt_CLEARPADRANGE); | |
377 | assert(OPpPADRANGE_COUNTMASK + 1 == (1 <<OPpPADRANGE_COUNTSHIFT)); | |
378 | assert((payload >> (OPpPADRANGE_COUNTSHIFT+SAVE_TIGHT_SHIFT)) == base); | |
a3444cc5 DM |
379 | { |
380 | dSS_ADD; | |
381 | SS_ADD_UV(payload); | |
382 | SS_ADD_END(1); | |
383 | } | |
4e09461c | 384 | |
a7fd8ef6 | 385 | for (i = 0; i <count; i++) |
4e09461c | 386 | SvPADSTALE_off(*svp++); /* mark lexical as active */ |
a7fd8ef6 DM |
387 | } |
388 | RETURN; | |
389 | } | |
390 | ||
391 | ||
a0d0e21e LW |
392 | PP(pp_padsv) |
393 | { | |
6c28b496 DD |
394 | dVAR; dSP; |
395 | EXTEND(SP, 1); | |
396 | { | |
397 | OP * const op = PL_op; | |
398 | /* access PL_curpad once */ | |
399 | SV ** const padentry = &(PAD_SVl(op->op_targ)); | |
400 | { | |
401 | dTARG; | |
402 | TARG = *padentry; | |
403 | PUSHs(TARG); | |
404 | PUTBACK; /* no pop/push after this, TOPs ok */ | |
8ec5e241 | 405 | } |
6c28b496 DD |
406 | if (op->op_flags & OPf_MOD) { |
407 | if (op->op_private & OPpLVAL_INTRO) | |
408 | if (!(op->op_private & OPpPAD_STATE)) | |
409 | save_clearsv(padentry); | |
410 | if (op->op_private & OPpDEREF) { | |
8f90a16d FC |
411 | /* TOPs is equivalent to TARG here. Using TOPs (SP) rather |
412 | than TARG reduces the scope of TARG, so it does not | |
413 | span the call to save_clearsv, resulting in smaller | |
414 | machine code. */ | |
6c28b496 DD |
415 | TOPs = vivify_ref(TOPs, op->op_private & OPpDEREF); |
416 | } | |
417 | } | |
418 | return op->op_next; | |
4633a7c4 | 419 | } |
a0d0e21e LW |
420 | } |
421 | ||
422 | PP(pp_readline) | |
423 | { | |
97aff369 | 424 | dVAR; |
30901a8a FC |
425 | dSP; |
426 | if (TOPs) { | |
427 | SvGETMAGIC(TOPs); | |
fc99edcf | 428 | tryAMAGICunTARGETlist(iter_amg, 0); |
30901a8a FC |
429 | PL_last_in_gv = MUTABLE_GV(*PL_stack_sp--); |
430 | } | |
431 | else PL_last_in_gv = PL_argvgv, PL_stack_sp--; | |
6e592b3a BM |
432 | if (!isGV_with_GP(PL_last_in_gv)) { |
433 | if (SvROK(PL_last_in_gv) && isGV_with_GP(SvRV(PL_last_in_gv))) | |
159b6efe | 434 | PL_last_in_gv = MUTABLE_GV(SvRV(PL_last_in_gv)); |
8efb3254 | 435 | else { |
f5284f61 | 436 | dSP; |
ad64d0ec | 437 | XPUSHs(MUTABLE_SV(PL_last_in_gv)); |
f5284f61 | 438 | PUTBACK; |
897d3989 | 439 | Perl_pp_rv2gv(aTHX); |
159b6efe | 440 | PL_last_in_gv = MUTABLE_GV(*PL_stack_sp--); |
f5284f61 IZ |
441 | } |
442 | } | |
a0d0e21e LW |
443 | return do_readline(); |
444 | } | |
445 | ||
446 | PP(pp_eq) | |
447 | { | |
6f1401dc | 448 | dVAR; dSP; |
33efebe6 DM |
449 | SV *left, *right; |
450 | ||
a42d0242 | 451 | tryAMAGICbin_MG(eq_amg, AMGf_set|AMGf_numeric); |
33efebe6 DM |
452 | right = POPs; |
453 | left = TOPs; | |
454 | SETs(boolSV( | |
455 | (SvIOK_notUV(left) && SvIOK_notUV(right)) | |
456 | ? (SvIVX(left) == SvIVX(right)) | |
457 | : ( do_ncmp(left, right) == 0) | |
458 | )); | |
459 | RETURN; | |
a0d0e21e LW |
460 | } |
461 | ||
462 | PP(pp_preinc) | |
463 | { | |
97aff369 | 464 | dVAR; dSP; |
17058fe0 FC |
465 | const bool inc = |
466 | PL_op->op_type == OP_PREINC || PL_op->op_type == OP_I_PREINC; | |
60092ce4 | 467 | if (SvTYPE(TOPs) >= SVt_PVAV || (isGV_with_GP(TOPs) && !SvFAKE(TOPs))) |
cb077ed2 | 468 | Perl_croak_no_modify(); |
4bac9ae4 | 469 | if (!SvREADONLY(TOPs) && !SvGMAGICAL(TOPs) && SvIOK_notUV(TOPs) && !SvNOK(TOPs) && !SvPOK(TOPs) |
17058fe0 | 470 | && SvIVX(TOPs) != (inc ? IV_MAX : IV_MIN)) |
55497cff | 471 | { |
17058fe0 | 472 | SvIV_set(TOPs, SvIVX(TOPs) + (inc ? 1 : -1)); |
55497cff | 473 | SvFLAGS(TOPs) &= ~(SVp_NOK|SVp_POK); |
748a9306 | 474 | } |
28e5dec8 | 475 | else /* Do all the PERL_PRESERVE_IVUV conditionals in sv_inc */ |
17058fe0 FC |
476 | if (inc) sv_inc(TOPs); |
477 | else sv_dec(TOPs); | |
a0d0e21e LW |
478 | SvSETMAGIC(TOPs); |
479 | return NORMAL; | |
480 | } | |
481 | ||
482 | PP(pp_or) | |
483 | { | |
97aff369 | 484 | dVAR; dSP; |
f410a211 | 485 | PERL_ASYNC_CHECK(); |
a0d0e21e LW |
486 | if (SvTRUE(TOPs)) |
487 | RETURN; | |
488 | else { | |
c960fc3b SP |
489 | if (PL_op->op_type == OP_OR) |
490 | --SP; | |
a0d0e21e LW |
491 | RETURNOP(cLOGOP->op_other); |
492 | } | |
493 | } | |
494 | ||
25a55bd7 | 495 | PP(pp_defined) |
c963b151 | 496 | { |
97aff369 | 497 | dVAR; dSP; |
eb578fdb | 498 | SV* sv; |
6136c704 | 499 | bool defined; |
25a55bd7 | 500 | const int op_type = PL_op->op_type; |
ea5195b7 | 501 | const bool is_dor = (op_type == OP_DOR || op_type == OP_DORASSIGN); |
c963b151 | 502 | |
6136c704 | 503 | if (is_dor) { |
f410a211 | 504 | PERL_ASYNC_CHECK(); |
25a55bd7 SP |
505 | sv = TOPs; |
506 | if (!sv || !SvANY(sv)) { | |
2bd49cfc NC |
507 | if (op_type == OP_DOR) |
508 | --SP; | |
25a55bd7 SP |
509 | RETURNOP(cLOGOP->op_other); |
510 | } | |
b7c44293 RGS |
511 | } |
512 | else { | |
513 | /* OP_DEFINED */ | |
25a55bd7 SP |
514 | sv = POPs; |
515 | if (!sv || !SvANY(sv)) | |
516 | RETPUSHNO; | |
b7c44293 | 517 | } |
25a55bd7 | 518 | |
6136c704 | 519 | defined = FALSE; |
c963b151 BD |
520 | switch (SvTYPE(sv)) { |
521 | case SVt_PVAV: | |
522 | if (AvMAX(sv) >= 0 || SvGMAGICAL(sv) || (SvRMAGICAL(sv) && mg_find(sv, PERL_MAGIC_tied))) | |
25a55bd7 | 523 | defined = TRUE; |
c963b151 BD |
524 | break; |
525 | case SVt_PVHV: | |
526 | if (HvARRAY(sv) || SvGMAGICAL(sv) || (SvRMAGICAL(sv) && mg_find(sv, PERL_MAGIC_tied))) | |
25a55bd7 | 527 | defined = TRUE; |
c963b151 BD |
528 | break; |
529 | case SVt_PVCV: | |
530 | if (CvROOT(sv) || CvXSUB(sv)) | |
25a55bd7 | 531 | defined = TRUE; |
c963b151 BD |
532 | break; |
533 | default: | |
5b295bef | 534 | SvGETMAGIC(sv); |
c963b151 | 535 | if (SvOK(sv)) |
25a55bd7 | 536 | defined = TRUE; |
6136c704 | 537 | break; |
c963b151 | 538 | } |
6136c704 AL |
539 | |
540 | if (is_dor) { | |
c960fc3b SP |
541 | if(defined) |
542 | RETURN; | |
543 | if(op_type == OP_DOR) | |
544 | --SP; | |
25a55bd7 | 545 | RETURNOP(cLOGOP->op_other); |
25a55bd7 | 546 | } |
d9aa96a4 SP |
547 | /* assuming OP_DEFINED */ |
548 | if(defined) | |
549 | RETPUSHYES; | |
550 | RETPUSHNO; | |
c963b151 BD |
551 | } |
552 | ||
a0d0e21e LW |
553 | PP(pp_add) |
554 | { | |
800401ee | 555 | dVAR; dSP; dATARGET; bool useleft; SV *svl, *svr; |
6f1401dc DM |
556 | tryAMAGICbin_MG(add_amg, AMGf_assign|AMGf_numeric); |
557 | svr = TOPs; | |
558 | svl = TOPm1s; | |
559 | ||
800401ee | 560 | useleft = USE_LEFT(svl); |
28e5dec8 JH |
561 | #ifdef PERL_PRESERVE_IVUV |
562 | /* We must see if we can perform the addition with integers if possible, | |
563 | as the integer code detects overflow while the NV code doesn't. | |
564 | If either argument hasn't had a numeric conversion yet attempt to get | |
565 | the IV. It's important to do this now, rather than just assuming that | |
566 | it's not IOK as a PV of "9223372036854775806" may not take well to NV | |
567 | addition, and an SV which is NOK, NV=6.0 ought to be coerced to | |
568 | integer in case the second argument is IV=9223372036854775806 | |
569 | We can (now) rely on sv_2iv to do the right thing, only setting the | |
570 | public IOK flag if the value in the NV (or PV) slot is truly integer. | |
571 | ||
572 | A side effect is that this also aggressively prefers integer maths over | |
7dca457a NC |
573 | fp maths for integer values. |
574 | ||
a00b5bd3 | 575 | How to detect overflow? |
7dca457a NC |
576 | |
577 | C 99 section 6.2.6.1 says | |
578 | ||
579 | The range of nonnegative values of a signed integer type is a subrange | |
580 | of the corresponding unsigned integer type, and the representation of | |
581 | the same value in each type is the same. A computation involving | |
582 | unsigned operands can never overflow, because a result that cannot be | |
583 | represented by the resulting unsigned integer type is reduced modulo | |
584 | the number that is one greater than the largest value that can be | |
585 | represented by the resulting type. | |
586 | ||
587 | (the 9th paragraph) | |
588 | ||
589 | which I read as "unsigned ints wrap." | |
590 | ||
591 | signed integer overflow seems to be classed as "exception condition" | |
592 | ||
593 | If an exceptional condition occurs during the evaluation of an | |
594 | expression (that is, if the result is not mathematically defined or not | |
595 | in the range of representable values for its type), the behavior is | |
596 | undefined. | |
597 | ||
598 | (6.5, the 5th paragraph) | |
599 | ||
600 | I had assumed that on 2s complement machines signed arithmetic would | |
601 | wrap, hence coded pp_add and pp_subtract on the assumption that | |
602 | everything perl builds on would be happy. After much wailing and | |
603 | gnashing of teeth it would seem that irix64 knows its ANSI spec well, | |
604 | knows that it doesn't need to, and doesn't. Bah. Anyway, the all- | |
605 | unsigned code below is actually shorter than the old code. :-) | |
606 | */ | |
607 | ||
01f91bf2 | 608 | if (SvIV_please_nomg(svr)) { |
28e5dec8 JH |
609 | /* Unless the left argument is integer in range we are going to have to |
610 | use NV maths. Hence only attempt to coerce the right argument if | |
611 | we know the left is integer. */ | |
eb578fdb | 612 | UV auv = 0; |
9c5ffd7c | 613 | bool auvok = FALSE; |
7dca457a NC |
614 | bool a_valid = 0; |
615 | ||
28e5dec8 | 616 | if (!useleft) { |
7dca457a NC |
617 | auv = 0; |
618 | a_valid = auvok = 1; | |
619 | /* left operand is undef, treat as zero. + 0 is identity, | |
620 | Could SETi or SETu right now, but space optimise by not adding | |
621 | lots of code to speed up what is probably a rarish case. */ | |
622 | } else { | |
623 | /* Left operand is defined, so is it IV? */ | |
01f91bf2 | 624 | if (SvIV_please_nomg(svl)) { |
800401ee JH |
625 | if ((auvok = SvUOK(svl))) |
626 | auv = SvUVX(svl); | |
7dca457a | 627 | else { |
eb578fdb | 628 | const IV aiv = SvIVX(svl); |
7dca457a NC |
629 | if (aiv >= 0) { |
630 | auv = aiv; | |
631 | auvok = 1; /* Now acting as a sign flag. */ | |
632 | } else { /* 2s complement assumption for IV_MIN */ | |
633 | auv = (UV)-aiv; | |
634 | } | |
635 | } | |
636 | a_valid = 1; | |
28e5dec8 JH |
637 | } |
638 | } | |
7dca457a NC |
639 | if (a_valid) { |
640 | bool result_good = 0; | |
641 | UV result; | |
eb578fdb | 642 | UV buv; |
800401ee | 643 | bool buvok = SvUOK(svr); |
a00b5bd3 | 644 | |
7dca457a | 645 | if (buvok) |
800401ee | 646 | buv = SvUVX(svr); |
7dca457a | 647 | else { |
eb578fdb | 648 | const IV biv = SvIVX(svr); |
7dca457a NC |
649 | if (biv >= 0) { |
650 | buv = biv; | |
651 | buvok = 1; | |
652 | } else | |
653 | buv = (UV)-biv; | |
654 | } | |
655 | /* ?uvok if value is >= 0. basically, flagged as UV if it's +ve, | |
602f51c4 | 656 | else "IV" now, independent of how it came in. |
7dca457a NC |
657 | if a, b represents positive, A, B negative, a maps to -A etc |
658 | a + b => (a + b) | |
659 | A + b => -(a - b) | |
660 | a + B => (a - b) | |
661 | A + B => -(a + b) | |
662 | all UV maths. negate result if A negative. | |
663 | add if signs same, subtract if signs differ. */ | |
664 | ||
665 | if (auvok ^ buvok) { | |
666 | /* Signs differ. */ | |
667 | if (auv >= buv) { | |
668 | result = auv - buv; | |
669 | /* Must get smaller */ | |
670 | if (result <= auv) | |
671 | result_good = 1; | |
672 | } else { | |
673 | result = buv - auv; | |
674 | if (result <= buv) { | |
675 | /* result really should be -(auv-buv). as its negation | |
676 | of true value, need to swap our result flag */ | |
677 | auvok = !auvok; | |
678 | result_good = 1; | |
28e5dec8 JH |
679 | } |
680 | } | |
7dca457a NC |
681 | } else { |
682 | /* Signs same */ | |
683 | result = auv + buv; | |
684 | if (result >= auv) | |
685 | result_good = 1; | |
686 | } | |
687 | if (result_good) { | |
688 | SP--; | |
689 | if (auvok) | |
28e5dec8 | 690 | SETu( result ); |
7dca457a NC |
691 | else { |
692 | /* Negate result */ | |
693 | if (result <= (UV)IV_MIN) | |
694 | SETi( -(IV)result ); | |
695 | else { | |
696 | /* result valid, but out of range for IV. */ | |
697 | SETn( -(NV)result ); | |
28e5dec8 JH |
698 | } |
699 | } | |
7dca457a NC |
700 | RETURN; |
701 | } /* Overflow, drop through to NVs. */ | |
28e5dec8 JH |
702 | } |
703 | } | |
704 | #endif | |
a0d0e21e | 705 | { |
6f1401dc | 706 | NV value = SvNV_nomg(svr); |
4efa5a16 | 707 | (void)POPs; |
28e5dec8 JH |
708 | if (!useleft) { |
709 | /* left operand is undef, treat as zero. + 0.0 is identity. */ | |
710 | SETn(value); | |
711 | RETURN; | |
712 | } | |
6f1401dc | 713 | SETn( value + SvNV_nomg(svl) ); |
28e5dec8 | 714 | RETURN; |
a0d0e21e LW |
715 | } |
716 | } | |
717 | ||
718 | PP(pp_aelemfast) | |
719 | { | |
97aff369 | 720 | dVAR; dSP; |
93bad3fd | 721 | AV * const av = PL_op->op_type == OP_AELEMFAST_LEX |
8f878375 | 722 | ? MUTABLE_AV(PAD_SV(PL_op->op_targ)) : GvAVn(cGVOP_gv); |
a3b680e6 | 723 | const U32 lval = PL_op->op_flags & OPf_MOD; |
0bd48802 | 724 | SV** const svp = av_fetch(av, PL_op->op_private, lval); |
3280af22 | 725 | SV *sv = (svp ? *svp : &PL_sv_undef); |
6ff81951 | 726 | EXTEND(SP, 1); |
39cf747a | 727 | if (!lval && SvRMAGICAL(av) && SvGMAGICAL(sv)) /* see note in pp_helem() */ |
fd69380d | 728 | mg_get(sv); |
be6c24e0 | 729 | PUSHs(sv); |
a0d0e21e LW |
730 | RETURN; |
731 | } | |
732 | ||
733 | PP(pp_join) | |
734 | { | |
97aff369 | 735 | dVAR; dSP; dMARK; dTARGET; |
a0d0e21e LW |
736 | MARK++; |
737 | do_join(TARG, *MARK, MARK, SP); | |
738 | SP = MARK; | |
739 | SETs(TARG); | |
740 | RETURN; | |
741 | } | |
742 | ||
743 | PP(pp_pushre) | |
744 | { | |
97aff369 | 745 | dVAR; dSP; |
44a8e56a PP |
746 | #ifdef DEBUGGING |
747 | /* | |
748 | * We ass_u_me that LvTARGOFF() comes first, and that two STRLENs | |
749 | * will be enough to hold an OP*. | |
750 | */ | |
c4420975 | 751 | SV* const sv = sv_newmortal(); |
44a8e56a PP |
752 | sv_upgrade(sv, SVt_PVLV); |
753 | LvTYPE(sv) = '/'; | |
533c011a | 754 | Copy(&PL_op, &LvTARGOFF(sv), 1, OP*); |
44a8e56a PP |
755 | XPUSHs(sv); |
756 | #else | |
ad64d0ec | 757 | XPUSHs(MUTABLE_SV(PL_op)); |
44a8e56a | 758 | #endif |
a0d0e21e LW |
759 | RETURN; |
760 | } | |
761 | ||
762 | /* Oversized hot code. */ | |
763 | ||
764 | PP(pp_print) | |
765 | { | |
27da23d5 | 766 | dVAR; dSP; dMARK; dORIGMARK; |
eb578fdb | 767 | PerlIO *fp; |
236988e4 | 768 | MAGIC *mg; |
159b6efe NC |
769 | GV * const gv |
770 | = (PL_op->op_flags & OPf_STACKED) ? MUTABLE_GV(*++MARK) : PL_defoutgv; | |
9c9f25b8 | 771 | IO *io = GvIO(gv); |
5b468f54 | 772 | |
9c9f25b8 | 773 | if (io |
ad64d0ec | 774 | && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar))) |
5b468f54 | 775 | { |
01bb7c6d | 776 | had_magic: |
68dc0745 | 777 | if (MARK == ORIGMARK) { |
1c846c1f | 778 | /* If using default handle then we need to make space to |
a60c0954 NIS |
779 | * pass object as 1st arg, so move other args up ... |
780 | */ | |
4352c267 | 781 | MEXTEND(SP, 1); |
68dc0745 PP |
782 | ++MARK; |
783 | Move(MARK, MARK + 1, (SP - MARK) + 1, SV*); | |
784 | ++SP; | |
785 | } | |
3e0cb5de | 786 | return Perl_tied_method(aTHX_ SV_CONST(PRINT), mark - 1, MUTABLE_SV(io), |
94bc412f NC |
787 | mg, |
788 | (G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK | |
789 | | (PL_op->op_type == OP_SAY | |
790 | ? TIED_METHOD_SAY : 0)), sp - mark); | |
236988e4 | 791 | } |
9c9f25b8 | 792 | if (!io) { |
68b590d9 | 793 | if ( gv && GvEGVx(gv) && (io = GvIO(GvEGV(gv))) |
ad64d0ec | 794 | && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar))) |
01bb7c6d | 795 | goto had_magic; |
51087808 | 796 | report_evil_fh(gv); |
93189314 | 797 | SETERRNO(EBADF,RMS_IFI); |
a0d0e21e LW |
798 | goto just_say_no; |
799 | } | |
800 | else if (!(fp = IoOFP(io))) { | |
7716c5c5 NC |
801 | if (IoIFP(io)) |
802 | report_wrongway_fh(gv, '<'); | |
51087808 | 803 | else |
7716c5c5 | 804 | report_evil_fh(gv); |
93189314 | 805 | SETERRNO(EBADF,IoIFP(io)?RMS_FAC:RMS_IFI); |
a0d0e21e LW |
806 | goto just_say_no; |
807 | } | |
808 | else { | |
e23d9e2f | 809 | SV * const ofs = GvSV(PL_ofsgv); /* $, */ |
a0d0e21e | 810 | MARK++; |
e23d9e2f | 811 | if (ofs && (SvGMAGICAL(ofs) || SvOK(ofs))) { |
a0d0e21e LW |
812 | while (MARK <= SP) { |
813 | if (!do_print(*MARK, fp)) | |
814 | break; | |
815 | MARK++; | |
816 | if (MARK <= SP) { | |
e23d9e2f CS |
817 | /* don't use 'ofs' here - it may be invalidated by magic callbacks */ |
818 | if (!do_print(GvSV(PL_ofsgv), fp)) { | |
a0d0e21e LW |
819 | MARK--; |
820 | break; | |
821 | } | |
822 | } | |
823 | } | |
824 | } | |
825 | else { | |
826 | while (MARK <= SP) { | |
827 | if (!do_print(*MARK, fp)) | |
828 | break; | |
829 | MARK++; | |
830 | } | |
831 | } | |
832 | if (MARK <= SP) | |
833 | goto just_say_no; | |
834 | else { | |
cfc4a7da GA |
835 | if (PL_op->op_type == OP_SAY) { |
836 | if (PerlIO_write(fp, "\n", 1) == 0 || PerlIO_error(fp)) | |
837 | goto just_say_no; | |
838 | } | |
839 | else if (PL_ors_sv && SvOK(PL_ors_sv)) | |
7889fe52 | 840 | if (!do_print(PL_ors_sv, fp)) /* $\ */ |
a0d0e21e LW |
841 | goto just_say_no; |
842 | ||
843 | if (IoFLAGS(io) & IOf_FLUSH) | |
760ac839 | 844 | if (PerlIO_flush(fp) == EOF) |
a0d0e21e LW |
845 | goto just_say_no; |
846 | } | |
847 | } | |
848 | SP = ORIGMARK; | |
e52fd6f4 | 849 | XPUSHs(&PL_sv_yes); |
a0d0e21e LW |
850 | RETURN; |
851 | ||
852 | just_say_no: | |
853 | SP = ORIGMARK; | |
e52fd6f4 | 854 | XPUSHs(&PL_sv_undef); |
a0d0e21e LW |
855 | RETURN; |
856 | } | |
857 | ||
858 | PP(pp_rv2av) | |
859 | { | |
97aff369 | 860 | dVAR; dSP; dTOPss; |
cde874ca | 861 | const I32 gimme = GIMME_V; |
17ab7946 NC |
862 | static const char an_array[] = "an ARRAY"; |
863 | static const char a_hash[] = "a HASH"; | |
864 | const bool is_pp_rv2av = PL_op->op_type == OP_RV2AV; | |
d83b45b8 | 865 | const svtype type = is_pp_rv2av ? SVt_PVAV : SVt_PVHV; |
a0d0e21e | 866 | |
9026059d | 867 | SvGETMAGIC(sv); |
a0d0e21e | 868 | if (SvROK(sv)) { |
93d7320b DM |
869 | if (SvAMAGIC(sv)) { |
870 | sv = amagic_deref_call(sv, is_pp_rv2av ? to_av_amg : to_hv_amg); | |
93d7320b | 871 | } |
17ab7946 NC |
872 | sv = SvRV(sv); |
873 | if (SvTYPE(sv) != type) | |
dcbac5bb | 874 | /* diag_listed_as: Not an ARRAY reference */ |
17ab7946 | 875 | DIE(aTHX_ "Not %s reference", is_pp_rv2av ? an_array : a_hash); |
3da99855 FC |
876 | else if (PL_op->op_flags & OPf_MOD |
877 | && PL_op->op_private & OPpLVAL_INTRO) | |
878 | Perl_croak(aTHX_ "%s", PL_no_localize_ref); | |
a0d0e21e | 879 | } |
9f527363 | 880 | else if (SvTYPE(sv) != type) { |
67955e0c | 881 | GV *gv; |
1c846c1f | 882 | |
6e592b3a | 883 | if (!isGV_with_GP(sv)) { |
dc3c76f8 NC |
884 | gv = Perl_softref2xv(aTHX_ sv, is_pp_rv2av ? an_array : a_hash, |
885 | type, &sp); | |
886 | if (!gv) | |
887 | RETURN; | |
35cd451c GS |
888 | } |
889 | else { | |
159b6efe | 890 | gv = MUTABLE_GV(sv); |
a0d0e21e | 891 | } |
ad64d0ec | 892 | sv = is_pp_rv2av ? MUTABLE_SV(GvAVn(gv)) : MUTABLE_SV(GvHVn(gv)); |
533c011a | 893 | if (PL_op->op_private & OPpLVAL_INTRO) |
ad64d0ec | 894 | sv = is_pp_rv2av ? MUTABLE_SV(save_ary(gv)) : MUTABLE_SV(save_hash(gv)); |
9f527363 FC |
895 | } |
896 | if (PL_op->op_flags & OPf_REF) { | |
17ab7946 | 897 | SETs(sv); |
a0d0e21e | 898 | RETURN; |
9f527363 FC |
899 | } |
900 | else if (PL_op->op_private & OPpMAYBE_LVSUB) { | |
40c94d11 FC |
901 | const I32 flags = is_lvalue_sub(); |
902 | if (flags && !(flags & OPpENTERSUB_INARGS)) { | |
cde874ca | 903 | if (gimme != G_ARRAY) |
042560a6 | 904 | goto croak_cant_return; |
17ab7946 | 905 | SETs(sv); |
78f9721b | 906 | RETURN; |
40c94d11 | 907 | } |
a0d0e21e LW |
908 | } |
909 | ||
17ab7946 | 910 | if (is_pp_rv2av) { |
502c6561 | 911 | AV *const av = MUTABLE_AV(sv); |
486ec47a | 912 | /* The guts of pp_rv2av, with no intending change to preserve history |
17ab7946 NC |
913 | (until such time as we get tools that can do blame annotation across |
914 | whitespace changes. */ | |
96913b52 | 915 | if (gimme == G_ARRAY) { |
d5524600 DM |
916 | SP--; |
917 | PUTBACK; | |
918 | S_pushav(aTHX_ av); | |
919 | SPAGAIN; | |
1c846c1f | 920 | } |
96913b52 VP |
921 | else if (gimme == G_SCALAR) { |
922 | dTARGET; | |
923 | const I32 maxarg = AvFILL(av) + 1; | |
924 | SETi(maxarg); | |
93965878 | 925 | } |
17ab7946 NC |
926 | } else { |
927 | /* The guts of pp_rv2hv */ | |
96913b52 VP |
928 | if (gimme == G_ARRAY) { /* array wanted */ |
929 | *PL_stack_sp = sv; | |
981b7185 | 930 | return Perl_do_kv(aTHX); |
96913b52 | 931 | } |
c8fe3bdf | 932 | else if ((PL_op->op_private & OPpTRUEBOOL |
adc42c31 | 933 | || ( PL_op->op_private & OPpMAYBE_TRUEBOOL |
c8fe3bdf FC |
934 | && block_gimme() == G_VOID )) |
935 | && (!SvRMAGICAL(sv) || !mg_find(sv, PERL_MAGIC_tied))) | |
936 | SETs(HvUSEDKEYS(sv) ? &PL_sv_yes : sv_2mortal(newSViv(0))); | |
96913b52 VP |
937 | else if (gimme == G_SCALAR) { |
938 | dTARGET; | |
939 | TARG = Perl_hv_scalar(aTHX_ MUTABLE_HV(sv)); | |
940 | SPAGAIN; | |
941 | SETTARG; | |
942 | } | |
17ab7946 | 943 | } |
be85d344 | 944 | RETURN; |
042560a6 NC |
945 | |
946 | croak_cant_return: | |
947 | Perl_croak(aTHX_ "Can't return %s to lvalue scalar context", | |
948 | is_pp_rv2av ? "array" : "hash"); | |
77e217c6 | 949 | RETURN; |
a0d0e21e LW |
950 | } |
951 | ||
10c8fecd | 952 | STATIC void |
fb8f4cf8 | 953 | S_do_oddball(pTHX_ SV **oddkey, SV **firstkey) |
10c8fecd | 954 | { |
97aff369 | 955 | dVAR; |
7918f24d NC |
956 | |
957 | PERL_ARGS_ASSERT_DO_ODDBALL; | |
958 | ||
fb8f4cf8 | 959 | if (*oddkey) { |
6d822dc4 | 960 | if (ckWARN(WARN_MISC)) { |
a3b680e6 | 961 | const char *err; |
fb8f4cf8 RZ |
962 | if (oddkey == firstkey && |
963 | SvROK(*oddkey) && | |
964 | (SvTYPE(SvRV(*oddkey)) == SVt_PVAV || | |
965 | SvTYPE(SvRV(*oddkey)) == SVt_PVHV)) | |
10c8fecd | 966 | { |
a3b680e6 | 967 | err = "Reference found where even-sized list expected"; |
10c8fecd GS |
968 | } |
969 | else | |
a3b680e6 | 970 | err = "Odd number of elements in hash assignment"; |
f1f66076 | 971 | Perl_warner(aTHX_ packWARN(WARN_MISC), "%s", err); |
10c8fecd | 972 | } |
6d822dc4 | 973 | |
10c8fecd GS |
974 | } |
975 | } | |
976 | ||
a0d0e21e LW |
977 | PP(pp_aassign) |
978 | { | |
27da23d5 | 979 | dVAR; dSP; |
3280af22 NIS |
980 | SV **lastlelem = PL_stack_sp; |
981 | SV **lastrelem = PL_stack_base + POPMARK; | |
982 | SV **firstrelem = PL_stack_base + POPMARK + 1; | |
a0d0e21e LW |
983 | SV **firstlelem = lastrelem + 1; |
984 | ||
eb578fdb KW |
985 | SV **relem; |
986 | SV **lelem; | |
a0d0e21e | 987 | |
eb578fdb KW |
988 | SV *sv; |
989 | AV *ary; | |
a0d0e21e | 990 | |
54310121 | 991 | I32 gimme; |
a0d0e21e LW |
992 | HV *hash; |
993 | I32 i; | |
994 | int magic; | |
88e2091b | 995 | U32 lval = 0; |
5637b936 | 996 | |
3280af22 | 997 | PL_delaymagic = DM_DELAY; /* catch simultaneous items */ |
ca65944e | 998 | gimme = GIMME_V; |
88e2091b RZ |
999 | if (gimme == G_ARRAY) |
1000 | lval = PL_op->op_flags & OPf_MOD || LVRET; | |
a0d0e21e LW |
1001 | |
1002 | /* If there's a common identifier on both sides we have to take | |
1003 | * special care that assigning the identifier on the left doesn't | |
1004 | * clobber a value on the right that's used later in the list. | |
acdea6f0 | 1005 | * Don't bother if LHS is just an empty hash or array. |
a0d0e21e | 1006 | */ |
acdea6f0 DM |
1007 | |
1008 | if ( (PL_op->op_private & OPpASSIGN_COMMON) | |
1009 | && ( | |
1010 | firstlelem != lastlelem | |
1011 | || ! ((sv = *firstlelem)) | |
1012 | || SvMAGICAL(sv) | |
1013 | || ! (SvTYPE(sv) == SVt_PVAV || SvTYPE(sv) == SVt_PVHV) | |
1014 | || (SvTYPE(sv) == SVt_PVAV && AvFILL((AV*)sv) != -1) | |
1b95d04f | 1015 | || (SvTYPE(sv) == SVt_PVHV && HvUSEDKEYS((HV*)sv) != 0) |
acdea6f0 DM |
1016 | ) |
1017 | ) { | |
cc5e57d2 | 1018 | EXTEND_MORTAL(lastrelem - firstrelem + 1); |
10c8fecd | 1019 | for (relem = firstrelem; relem <= lastrelem; relem++) { |
155aba94 | 1020 | if ((sv = *relem)) { |
a1f49e72 | 1021 | TAINT_NOT; /* Each item is independent */ |
61e5f455 NC |
1022 | |
1023 | /* Dear TODO test in t/op/sort.t, I love you. | |
1024 | (It's relying on a panic, not a "semi-panic" from newSVsv() | |
1025 | and then an assertion failure below.) */ | |
1026 | if (SvIS_FREED(sv)) { | |
1027 | Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p", | |
1028 | (void*)sv); | |
1029 | } | |
2203fb5a FC |
1030 | /* Not newSVsv(), as it does not allow copy-on-write, |
1031 | resulting in wasteful copies. We need a second copy of | |
1032 | a temp here, hence the SV_NOSTEAL. */ | |
1033 | *relem = sv_mortalcopy_flags(sv,SV_GMAGIC|SV_DO_COW_SVSETSV | |
1034 | |SV_NOSTEAL); | |
a1f49e72 | 1035 | } |
10c8fecd | 1036 | } |
a0d0e21e LW |
1037 | } |
1038 | ||
1039 | relem = firstrelem; | |
1040 | lelem = firstlelem; | |
4608196e RGS |
1041 | ary = NULL; |
1042 | hash = NULL; | |
10c8fecd | 1043 | |
a0d0e21e | 1044 | while (lelem <= lastlelem) { |
bbce6d69 | 1045 | TAINT_NOT; /* Each item stands on its own, taintwise. */ |
a0d0e21e LW |
1046 | sv = *lelem++; |
1047 | switch (SvTYPE(sv)) { | |
1048 | case SVt_PVAV: | |
60edcf09 | 1049 | ary = MUTABLE_AV(sv); |
748a9306 | 1050 | magic = SvMAGICAL(ary) != 0; |
60edcf09 FC |
1051 | ENTER; |
1052 | SAVEFREESV(SvREFCNT_inc_simple_NN(sv)); | |
a0d0e21e | 1053 | av_clear(ary); |
7e42bd57 | 1054 | av_extend(ary, lastrelem - relem); |
a0d0e21e LW |
1055 | i = 0; |
1056 | while (relem <= lastrelem) { /* gobble up all the rest */ | |
5117ca91 | 1057 | SV **didstore; |
a0d0e21e | 1058 | assert(*relem); |
18024492 FC |
1059 | SvGETMAGIC(*relem); /* before newSV, in case it dies */ |
1060 | sv = newSV(0); | |
1061 | sv_setsv_nomg(sv, *relem); | |
a0d0e21e | 1062 | *(relem++) = sv; |
5117ca91 GS |
1063 | didstore = av_store(ary,i++,sv); |
1064 | if (magic) { | |
18024492 FC |
1065 | if (!didstore) |
1066 | sv_2mortal(sv); | |
8ef24240 | 1067 | if (SvSMAGICAL(sv)) |
fb73857a | 1068 | mg_set(sv); |
5117ca91 | 1069 | } |
bbce6d69 | 1070 | TAINT_NOT; |
a0d0e21e | 1071 | } |
354b0578 | 1072 | if (PL_delaymagic & DM_ARRAY_ISA) |
ad64d0ec | 1073 | SvSETMAGIC(MUTABLE_SV(ary)); |
60edcf09 | 1074 | LEAVE; |
a0d0e21e | 1075 | break; |
10c8fecd | 1076 | case SVt_PVHV: { /* normal hash */ |
a0d0e21e | 1077 | SV *tmpstr; |
1c4ea384 RZ |
1078 | int odd; |
1079 | int duplicates = 0; | |
45960564 | 1080 | SV** topelem = relem; |
1c4ea384 | 1081 | SV **firsthashrelem = relem; |
a0d0e21e | 1082 | |
60edcf09 | 1083 | hash = MUTABLE_HV(sv); |
748a9306 | 1084 | magic = SvMAGICAL(hash) != 0; |
1c4ea384 RZ |
1085 | |
1086 | odd = ((lastrelem - firsthashrelem)&1)? 0 : 1; | |
1087 | if ( odd ) { | |
fb8f4cf8 | 1088 | do_oddball(lastrelem, firsthashrelem); |
1d2b3927 HS |
1089 | /* we have firstlelem to reuse, it's not needed anymore |
1090 | */ | |
1c4ea384 RZ |
1091 | *(lastrelem+1) = &PL_sv_undef; |
1092 | } | |
1093 | ||
60edcf09 FC |
1094 | ENTER; |
1095 | SAVEFREESV(SvREFCNT_inc_simple_NN(sv)); | |
a0d0e21e | 1096 | hv_clear(hash); |
1c4ea384 | 1097 | while (relem < lastrelem+odd) { /* gobble up all the rest */ |
5117ca91 | 1098 | HE *didstore; |
1c4ea384 | 1099 | assert(*relem); |
632b9d6f FC |
1100 | /* Copy the key if aassign is called in lvalue context, |
1101 | to avoid having the next op modify our rhs. Copy | |
1102 | it also if it is gmagical, lest it make the | |
1103 | hv_store_ent call below croak, leaking the value. */ | |
1104 | sv = lval || SvGMAGICAL(*relem) | |
1105 | ? sv_mortalcopy(*relem) | |
1106 | : *relem; | |
45960564 | 1107 | relem++; |
1c4ea384 | 1108 | assert(*relem); |
632b9d6f FC |
1109 | SvGETMAGIC(*relem); |
1110 | tmpstr = newSV(0); | |
1111 | sv_setsv_nomg(tmpstr,*relem++); /* value */ | |
a88bf2bc | 1112 | if (gimme == G_ARRAY) { |
45960564 DM |
1113 | if (hv_exists_ent(hash, sv, 0)) |
1114 | /* key overwrites an existing entry */ | |
1115 | duplicates += 2; | |
a88bf2bc | 1116 | else { |
45960564 | 1117 | /* copy element back: possibly to an earlier |
1d2b3927 HS |
1118 | * stack location if we encountered dups earlier, |
1119 | * possibly to a later stack location if odd */ | |
45960564 DM |
1120 | *topelem++ = sv; |
1121 | *topelem++ = tmpstr; | |
1122 | } | |
1123 | } | |
5117ca91 | 1124 | didstore = hv_store_ent(hash,sv,tmpstr,0); |
632b9d6f FC |
1125 | if (magic) { |
1126 | if (!didstore) sv_2mortal(tmpstr); | |
1127 | SvSETMAGIC(tmpstr); | |
1128 | } | |
bbce6d69 | 1129 | TAINT_NOT; |
8e07c86e | 1130 | } |
60edcf09 | 1131 | LEAVE; |
1c4ea384 RZ |
1132 | if (duplicates && gimme == G_ARRAY) { |
1133 | /* at this point we have removed the duplicate key/value | |
1134 | * pairs from the stack, but the remaining values may be | |
1135 | * wrong; i.e. with (a 1 a 2 b 3) on the stack we've removed | |
1136 | * the (a 2), but the stack now probably contains | |
1137 | * (a <freed> b 3), because { hv_save(a,1); hv_save(a,2) } | |
1138 | * obliterates the earlier key. So refresh all values. */ | |
1139 | lastrelem -= duplicates; | |
1140 | relem = firsthashrelem; | |
1141 | while (relem < lastrelem+odd) { | |
1142 | HE *he; | |
1143 | he = hv_fetch_ent(hash, *relem++, 0, 0); | |
1144 | *relem++ = (he ? HeVAL(he) : &PL_sv_undef); | |
1145 | } | |
1146 | } | |
1147 | if (odd && gimme == G_ARRAY) lastrelem++; | |
a0d0e21e LW |
1148 | } |
1149 | break; | |
1150 | default: | |
6fc92669 GS |
1151 | if (SvIMMORTAL(sv)) { |
1152 | if (relem <= lastrelem) | |
1153 | relem++; | |
1154 | break; | |
a0d0e21e LW |
1155 | } |
1156 | if (relem <= lastrelem) { | |
1c70fb82 FC |
1157 | if ( |
1158 | SvTEMP(sv) && !SvSMAGICAL(sv) && SvREFCNT(sv) == 1 && | |
1159 | (!isGV_with_GP(sv) || SvFAKE(sv)) && ckWARN(WARN_MISC) | |
1160 | ) | |
1161 | Perl_warner(aTHX_ | |
1162 | packWARN(WARN_MISC), | |
1163 | "Useless assignment to a temporary" | |
1164 | ); | |
a0d0e21e LW |
1165 | sv_setsv(sv, *relem); |
1166 | *(relem++) = sv; | |
1167 | } | |
1168 | else | |
3280af22 | 1169 | sv_setsv(sv, &PL_sv_undef); |
8ef24240 | 1170 | SvSETMAGIC(sv); |
a0d0e21e LW |
1171 | break; |
1172 | } | |
1173 | } | |
3280af22 | 1174 | if (PL_delaymagic & ~DM_DELAY) { |
985213f2 | 1175 | /* Will be used to set PL_tainting below */ |
dfff4baf BF |
1176 | Uid_t tmp_uid = PerlProc_getuid(); |
1177 | Uid_t tmp_euid = PerlProc_geteuid(); | |
1178 | Gid_t tmp_gid = PerlProc_getgid(); | |
1179 | Gid_t tmp_egid = PerlProc_getegid(); | |
985213f2 | 1180 | |
3280af22 | 1181 | if (PL_delaymagic & DM_UID) { |
a0d0e21e | 1182 | #ifdef HAS_SETRESUID |
985213f2 AB |
1183 | (void)setresuid((PL_delaymagic & DM_RUID) ? PL_delaymagic_uid : (Uid_t)-1, |
1184 | (PL_delaymagic & DM_EUID) ? PL_delaymagic_euid : (Uid_t)-1, | |
fb934a90 | 1185 | (Uid_t)-1); |
56febc5e AD |
1186 | #else |
1187 | # ifdef HAS_SETREUID | |
985213f2 AB |
1188 | (void)setreuid((PL_delaymagic & DM_RUID) ? PL_delaymagic_uid : (Uid_t)-1, |
1189 | (PL_delaymagic & DM_EUID) ? PL_delaymagic_euid : (Uid_t)-1); | |
56febc5e AD |
1190 | # else |
1191 | # ifdef HAS_SETRUID | |
b28d0864 | 1192 | if ((PL_delaymagic & DM_UID) == DM_RUID) { |
985213f2 | 1193 | (void)setruid(PL_delaymagic_uid); |
b28d0864 | 1194 | PL_delaymagic &= ~DM_RUID; |
a0d0e21e | 1195 | } |
56febc5e AD |
1196 | # endif /* HAS_SETRUID */ |
1197 | # ifdef HAS_SETEUID | |
b28d0864 | 1198 | if ((PL_delaymagic & DM_UID) == DM_EUID) { |
985213f2 | 1199 | (void)seteuid(PL_delaymagic_euid); |
b28d0864 | 1200 | PL_delaymagic &= ~DM_EUID; |
a0d0e21e | 1201 | } |
56febc5e | 1202 | # endif /* HAS_SETEUID */ |
b28d0864 | 1203 | if (PL_delaymagic & DM_UID) { |
985213f2 | 1204 | if (PL_delaymagic_uid != PL_delaymagic_euid) |
cea2e8a9 | 1205 | DIE(aTHX_ "No setreuid available"); |
985213f2 | 1206 | (void)PerlProc_setuid(PL_delaymagic_uid); |
a0d0e21e | 1207 | } |
56febc5e AD |
1208 | # endif /* HAS_SETREUID */ |
1209 | #endif /* HAS_SETRESUID */ | |
985213f2 AB |
1210 | tmp_uid = PerlProc_getuid(); |
1211 | tmp_euid = PerlProc_geteuid(); | |
a0d0e21e | 1212 | } |
3280af22 | 1213 | if (PL_delaymagic & DM_GID) { |
a0d0e21e | 1214 | #ifdef HAS_SETRESGID |
985213f2 AB |
1215 | (void)setresgid((PL_delaymagic & DM_RGID) ? PL_delaymagic_gid : (Gid_t)-1, |
1216 | (PL_delaymagic & DM_EGID) ? PL_delaymagic_egid : (Gid_t)-1, | |
fb934a90 | 1217 | (Gid_t)-1); |
56febc5e AD |
1218 | #else |
1219 | # ifdef HAS_SETREGID | |
985213f2 AB |
1220 | (void)setregid((PL_delaymagic & DM_RGID) ? PL_delaymagic_gid : (Gid_t)-1, |
1221 | (PL_delaymagic & DM_EGID) ? PL_delaymagic_egid : (Gid_t)-1); | |
56febc5e AD |
1222 | # else |
1223 | # ifdef HAS_SETRGID | |
b28d0864 | 1224 | if ((PL_delaymagic & DM_GID) == DM_RGID) { |
985213f2 | 1225 | (void)setrgid(PL_delaymagic_gid); |
b28d0864 | 1226 | PL_delaymagic &= ~DM_RGID; |
a0d0e21e | 1227 | } |
56febc5e AD |
1228 | # endif /* HAS_SETRGID */ |
1229 | # ifdef HAS_SETEGID | |
b28d0864 | 1230 | if ((PL_delaymagic & DM_GID) == DM_EGID) { |
985213f2 | 1231 | (void)setegid(PL_delaymagic_egid); |
b28d0864 | 1232 | PL_delaymagic &= ~DM_EGID; |
a0d0e21e | 1233 | } |
56febc5e | 1234 | # endif /* HAS_SETEGID */ |
b28d0864 | 1235 | if (PL_delaymagic & DM_GID) { |
985213f2 | 1236 | if (PL_delaymagic_gid != PL_delaymagic_egid) |
cea2e8a9 | 1237 | DIE(aTHX_ "No setregid available"); |
985213f2 | 1238 | (void)PerlProc_setgid(PL_delaymagic_gid); |
a0d0e21e | 1239 | } |
56febc5e AD |
1240 | # endif /* HAS_SETREGID */ |
1241 | #endif /* HAS_SETRESGID */ | |
985213f2 AB |
1242 | tmp_gid = PerlProc_getgid(); |
1243 | tmp_egid = PerlProc_getegid(); | |
a0d0e21e | 1244 | } |
284167a5 | 1245 | TAINTING_set( TAINTING_get | (tmp_uid && (tmp_euid != tmp_uid || tmp_egid != tmp_gid)) ); |
9a9b5ec9 DM |
1246 | #ifdef NO_TAINT_SUPPORT |
1247 | PERL_UNUSED_VAR(tmp_uid); | |
1248 | PERL_UNUSED_VAR(tmp_euid); | |
1249 | PERL_UNUSED_VAR(tmp_gid); | |
1250 | PERL_UNUSED_VAR(tmp_egid); | |
1251 | #endif | |
a0d0e21e | 1252 | } |
3280af22 | 1253 | PL_delaymagic = 0; |
54310121 | 1254 | |
54310121 PP |
1255 | if (gimme == G_VOID) |
1256 | SP = firstrelem - 1; | |
1257 | else if (gimme == G_SCALAR) { | |
1258 | dTARGET; | |
1259 | SP = firstrelem; | |
231cbeb2 | 1260 | SETi(lastrelem - firstrelem + 1); |
54310121 PP |
1261 | } |
1262 | else { | |
1c4ea384 | 1263 | if (ary || hash) |
1d2b3927 HS |
1264 | /* note that in this case *firstlelem may have been overwritten |
1265 | by sv_undef in the odd hash case */ | |
a0d0e21e | 1266 | SP = lastrelem; |
1c4ea384 | 1267 | else { |
a0d0e21e | 1268 | SP = firstrelem + (lastlelem - firstlelem); |
1c4ea384 RZ |
1269 | lelem = firstlelem + (relem - firstrelem); |
1270 | while (relem <= SP) | |
1271 | *relem++ = (lelem <= lastlelem) ? *lelem++ : &PL_sv_undef; | |
1272 | } | |
a0d0e21e | 1273 | } |
08aeb9f7 | 1274 | |
54310121 | 1275 | RETURN; |
a0d0e21e LW |
1276 | } |
1277 | ||
8782bef2 GB |
1278 | PP(pp_qr) |
1279 | { | |
97aff369 | 1280 | dVAR; dSP; |
eb578fdb | 1281 | PMOP * const pm = cPMOP; |
fe578d7f | 1282 | REGEXP * rx = PM_GETRE(pm); |
10599a69 | 1283 | SV * const pkg = rx ? CALLREG_PACKAGE(rx) : NULL; |
c4420975 | 1284 | SV * const rv = sv_newmortal(); |
d63c20f2 DM |
1285 | CV **cvp; |
1286 | CV *cv; | |
288b8c02 NC |
1287 | |
1288 | SvUPGRADE(rv, SVt_IV); | |
c2123ae3 NC |
1289 | /* For a subroutine describing itself as "This is a hacky workaround" I'm |
1290 | loathe to use it here, but it seems to be the right fix. Or close. | |
1291 | The key part appears to be that it's essential for pp_qr to return a new | |
1292 | object (SV), which implies that there needs to be an effective way to | |
1293 | generate a new SV from the existing SV that is pre-compiled in the | |
1294 | optree. */ | |
1295 | SvRV_set(rv, MUTABLE_SV(reg_temp_copy(NULL, rx))); | |
288b8c02 NC |
1296 | SvROK_on(rv); |
1297 | ||
8d919b0a | 1298 | cvp = &( ReANY((REGEXP *)SvRV(rv))->qr_anoncv); |
d63c20f2 DM |
1299 | if ((cv = *cvp) && CvCLONE(*cvp)) { |
1300 | *cvp = cv_clone(cv); | |
fc2b2dca | 1301 | SvREFCNT_dec_NN(cv); |
d63c20f2 DM |
1302 | } |
1303 | ||
288b8c02 | 1304 | if (pkg) { |
f815daf2 | 1305 | HV *const stash = gv_stashsv(pkg, GV_ADD); |
fc2b2dca | 1306 | SvREFCNT_dec_NN(pkg); |
288b8c02 NC |
1307 | (void)sv_bless(rv, stash); |
1308 | } | |
1309 | ||
284167a5 | 1310 | if (RX_ISTAINTED(rx)) { |
e08e52cf | 1311 | SvTAINTED_on(rv); |
9274aefd DM |
1312 | SvTAINTED_on(SvRV(rv)); |
1313 | } | |
c8c13c22 | 1314 | XPUSHs(rv); |
1315 | RETURN; | |
8782bef2 GB |
1316 | } |
1317 | ||
a0d0e21e LW |
1318 | PP(pp_match) |
1319 | { | |
97aff369 | 1320 | dVAR; dSP; dTARG; |
eb578fdb | 1321 | PMOP *pm = cPMOP; |
d65afb4b | 1322 | PMOP *dynpm = pm; |
eb578fdb KW |
1323 | const char *t; |
1324 | const char *s; | |
5c144d81 | 1325 | const char *strend; |
a0d0e21e | 1326 | I32 global; |
7fadf4a7 | 1327 | U8 r_flags = 0; |
5c144d81 | 1328 | const char *truebase; /* Start of string */ |
eb578fdb | 1329 | REGEXP *rx = PM_GETRE(pm); |
b3eb6a9b | 1330 | bool rxtainted; |
a3b680e6 | 1331 | const I32 gimme = GIMME; |
a0d0e21e | 1332 | STRLEN len; |
748a9306 | 1333 | I32 minmatch = 0; |
a3b680e6 | 1334 | const I32 oldsave = PL_savestack_ix; |
f86702cc | 1335 | I32 update_minmatch = 1; |
e60df1fa | 1336 | I32 had_zerolen = 0; |
a0d0e21e | 1337 | |
533c011a | 1338 | if (PL_op->op_flags & OPf_STACKED) |
a0d0e21e | 1339 | TARG = POPs; |
59f00321 RGS |
1340 | else if (PL_op->op_private & OPpTARGET_MY) |
1341 | GETTARGET; | |
a0d0e21e | 1342 | else { |
54b9620d | 1343 | TARG = DEFSV; |
a0d0e21e LW |
1344 | EXTEND(SP,1); |
1345 | } | |
d9f424b2 | 1346 | |
c277df42 | 1347 | PUTBACK; /* EVAL blocks need stack_sp. */ |
69dc4b30 FC |
1348 | /* Skip get-magic if this is a qr// clone, because regcomp has |
1349 | already done it. */ | |
8d919b0a | 1350 | s = ReANY(rx)->mother_re |
69dc4b30 FC |
1351 | ? SvPV_nomg_const(TARG, len) |
1352 | : SvPV_const(TARG, len); | |
a0d0e21e | 1353 | if (!s) |
2269b42e | 1354 | DIE(aTHX_ "panic: pp_match"); |
890ce7af | 1355 | strend = s + len; |
284167a5 SM |
1356 | rxtainted = (RX_ISTAINTED(rx) || |
1357 | (TAINT_get && (pm->op_pmflags & PMf_RETAINT))); | |
9212bbba | 1358 | TAINT_NOT; |
a0d0e21e | 1359 | |
6c864ec2 | 1360 | /* We need to know this in case we fail out early - pos() must be reset */ |
de0df3c0 MH |
1361 | global = dynpm->op_pmflags & PMf_GLOBAL; |
1362 | ||
d65afb4b | 1363 | /* PMdf_USED is set after a ?? matches once */ |
c737faaf YO |
1364 | if ( |
1365 | #ifdef USE_ITHREADS | |
1366 | SvREADONLY(PL_regex_pad[pm->op_pmoffset]) | |
1367 | #else | |
1368 | pm->op_pmflags & PMf_USED | |
1369 | #endif | |
1370 | ) { | |
e5dc5375 | 1371 | DEBUG_r(PerlIO_printf(Perl_debug_log, "?? already matched once")); |
de0df3c0 | 1372 | goto nope; |
a0d0e21e LW |
1373 | } |
1374 | ||
7e313637 FC |
1375 | /* empty pattern special-cased to use last successful pattern if |
1376 | possible, except for qr// */ | |
8d919b0a | 1377 | if (!ReANY(rx)->mother_re && !RX_PRELEN(rx) |
7e313637 | 1378 | && PL_curpm) { |
3280af22 | 1379 | pm = PL_curpm; |
aaa362c4 | 1380 | rx = PM_GETRE(pm); |
a0d0e21e | 1381 | } |
d65afb4b | 1382 | |
e5dc5375 KW |
1383 | if (RX_MINLEN(rx) > (I32)len) { |
1384 | DEBUG_r(PerlIO_printf(Perl_debug_log, "String shorter than min possible regex match\n")); | |
de0df3c0 | 1385 | goto nope; |
e5dc5375 | 1386 | } |
c277df42 | 1387 | |
a0d0e21e | 1388 | truebase = t = s; |
ad94a511 IZ |
1389 | |
1390 | /* XXXX What part of this is needed with true \G-support? */ | |
de0df3c0 | 1391 | if (global) { |
96c2a8ff | 1392 | MAGIC * const mg = mg_find_mglob(TARG); |
07bc277f | 1393 | RX_OFFS(rx)[0].start = -1; |
96c2a8ff | 1394 | if (mg && mg->mg_len >= 0) { |
07bc277f NC |
1395 | if (!(RX_EXTFLAGS(rx) & RXf_GPOS_SEEN)) |
1396 | RX_OFFS(rx)[0].end = RX_OFFS(rx)[0].start = mg->mg_len; | |
1397 | else if (RX_EXTFLAGS(rx) & RXf_ANCH_GPOS) { | |
0ef3e39e | 1398 | r_flags |= REXEC_IGNOREPOS; |
07bc277f | 1399 | RX_OFFS(rx)[0].end = RX_OFFS(rx)[0].start = mg->mg_len; |
d058ec57 DM |
1400 | } |
1401 | else if (!(RX_EXTFLAGS(rx) & RXf_GPOS_FLOAT)) | |
07bc277f NC |
1402 | RX_OFFS(rx)[0].end = RX_OFFS(rx)[0].start = mg->mg_len; |
1403 | minmatch = (mg->mg_flags & MGf_MINMATCH) ? RX_GOFS(rx) + 1 : 0; | |
f86702cc | 1404 | update_minmatch = 0; |
a0d0e21e LW |
1405 | } |
1406 | } | |
6e240d0b | 1407 | #ifdef PERL_SAWAMPERSAND |
a41aa44d | 1408 | if ( RX_NPARENS(rx) |
6502e081 | 1409 | || PL_sawampersand |
6502e081 | 1410 | || (RX_EXTFLAGS(rx) & (RXf_EVAL_SEEN|RXf_PMf_KEEPCOPY)) |
6e240d0b FC |
1411 | ) |
1412 | #endif | |
1413 | { | |
6502e081 DM |
1414 | r_flags |= (REXEC_COPY_STR|REXEC_COPY_SKIP_PRE); |
1415 | /* in @a =~ /(.)/g, we iterate multiple times, but copy the buffer | |
1416 | * only on the first iteration. Therefore we need to copy $' as well | |
1417 | * as $&, to make the rest of the string available for captures in | |
1418 | * subsequent iterations */ | |
1419 | if (! (global && gimme == G_ARRAY)) | |
1420 | r_flags |= REXEC_COPY_SKIP_POST; | |
1421 | }; | |
22e551b9 | 1422 | |
d7be1480 | 1423 | play_it_again: |
07bc277f NC |
1424 | if (global && RX_OFFS(rx)[0].start != -1) { |
1425 | t = s = RX_OFFS(rx)[0].end + truebase - RX_GOFS(rx); | |
e5dc5375 KW |
1426 | if ((s + RX_MINLEN(rx)) > strend || s < truebase) { |
1427 | DEBUG_r(PerlIO_printf(Perl_debug_log, "Regex match can't succeed, so not even tried\n")); | |
a0d0e21e | 1428 | goto nope; |
e5dc5375 | 1429 | } |
f86702cc | 1430 | if (update_minmatch++) |
e60df1fa | 1431 | minmatch = had_zerolen; |
a0d0e21e | 1432 | } |
f722798b | 1433 | |
77da2310 | 1434 | if (!CALLREGEXEC(rx, (char*)s, (char *)strend, (char*)truebase, |
d058ec57 | 1435 | minmatch, TARG, NULL, r_flags)) |
03b6c93d | 1436 | goto nope; |
77da2310 NC |
1437 | |
1438 | PL_curpm = pm; | |
1439 | if (dynpm->op_pmflags & PMf_ONCE) { | |
c737faaf | 1440 | #ifdef USE_ITHREADS |
77da2310 | 1441 | SvREADONLY_on(PL_regex_pad[dynpm->op_pmoffset]); |
c737faaf | 1442 | #else |
77da2310 | 1443 | dynpm->op_pmflags |= PMf_USED; |
c737faaf | 1444 | #endif |
a0d0e21e | 1445 | } |
a0d0e21e | 1446 | |
72311751 GS |
1447 | if (rxtainted) |
1448 | RX_MATCH_TAINTED_on(rx); | |
1449 | TAINT_IF(RX_MATCH_TAINTED(rx)); | |
35c2ccc3 DM |
1450 | |
1451 | /* update pos */ | |
1452 | ||
1453 | if (global && (gimme != G_ARRAY || (dynpm->op_pmflags & PMf_CONTINUE))) { | |
1454 | MAGIC *mg = mg_find_mglob(TARG); | |
1455 | if (!mg) { | |
1456 | mg = sv_magicext_mglob(TARG); | |
1457 | } | |
1458 | if (RX_OFFS(rx)[0].start != -1) { | |
1459 | mg->mg_len = RX_OFFS(rx)[0].end; | |
1460 | if (RX_OFFS(rx)[0].start + RX_GOFS(rx) == (UV)RX_OFFS(rx)[0].end) | |
1461 | mg->mg_flags |= MGf_MINMATCH; | |
1462 | else | |
1463 | mg->mg_flags &= ~MGf_MINMATCH; | |
1464 | } | |
1465 | } | |
1466 | ||
bf9dff51 DM |
1467 | if ((!RX_NPARENS(rx) && !global) || gimme != G_ARRAY) { |
1468 | LEAVE_SCOPE(oldsave); | |
1469 | RETPUSHYES; | |
1470 | } | |
1471 | ||
88ab22af DM |
1472 | /* push captures on stack */ |
1473 | ||
bf9dff51 | 1474 | { |
07bc277f | 1475 | const I32 nparens = RX_NPARENS(rx); |
a3b680e6 | 1476 | I32 i = (global && !nparens) ? 1 : 0; |
a0d0e21e | 1477 | |
c277df42 | 1478 | SPAGAIN; /* EVAL blocks could move the stack. */ |
ffc61ed2 JH |
1479 | EXTEND(SP, nparens + i); |
1480 | EXTEND_MORTAL(nparens + i); | |
1481 | for (i = !i; i <= nparens; i++) { | |
a0d0e21e | 1482 | PUSHs(sv_newmortal()); |
07bc277f NC |
1483 | if ((RX_OFFS(rx)[i].start != -1) && RX_OFFS(rx)[i].end != -1 ) { |
1484 | const I32 len = RX_OFFS(rx)[i].end - RX_OFFS(rx)[i].start; | |
1485 | s = RX_OFFS(rx)[i].start + truebase; | |
1486 | if (RX_OFFS(rx)[i].end < 0 || RX_OFFS(rx)[i].start < 0 || | |
290deeac | 1487 | len < 0 || len > strend - s) |
5637ef5b NC |
1488 | DIE(aTHX_ "panic: pp_match start/end pointers, i=%ld, " |
1489 | "start=%ld, end=%ld, s=%p, strend=%p, len=%"UVuf, | |
1490 | (long) i, (long) RX_OFFS(rx)[i].start, | |
1491 | (long)RX_OFFS(rx)[i].end, s, strend, (UV) len); | |
a0d0e21e | 1492 | sv_setpvn(*SP, s, len); |
cce850e4 | 1493 | if (DO_UTF8(TARG) && is_utf8_string((U8*)s, len)) |
a197cbdd | 1494 | SvUTF8_on(*SP); |
a0d0e21e LW |
1495 | } |
1496 | } | |
1497 | if (global) { | |
07bc277f NC |
1498 | had_zerolen = (RX_OFFS(rx)[0].start != -1 |
1499 | && (RX_OFFS(rx)[0].start + RX_GOFS(rx) | |
1500 | == (UV)RX_OFFS(rx)[0].end)); | |
c277df42 | 1501 | PUTBACK; /* EVAL blocks may use stack */ |
cf93c79d | 1502 | r_flags |= REXEC_IGNOREPOS | REXEC_NOT_FIRST; |
a0d0e21e LW |
1503 | goto play_it_again; |
1504 | } | |
4633a7c4 | 1505 | LEAVE_SCOPE(oldsave); |
a0d0e21e LW |
1506 | RETURN; |
1507 | } | |
88ab22af | 1508 | /* NOTREACHED */ |
a0d0e21e LW |
1509 | |
1510 | nope: | |
d65afb4b | 1511 | if (global && !(dynpm->op_pmflags & PMf_CONTINUE)) { |
96c2a8ff | 1512 | MAGIC* const mg = mg_find_mglob(TARG); |
a0d0e21e | 1513 | if (mg) |
565764a8 | 1514 | mg->mg_len = -1; |
a0d0e21e | 1515 | } |
4633a7c4 | 1516 | LEAVE_SCOPE(oldsave); |
a0d0e21e LW |
1517 | if (gimme == G_ARRAY) |
1518 | RETURN; | |
1519 | RETPUSHNO; | |
1520 | } | |
1521 | ||
1522 | OP * | |
864dbfa3 | 1523 | Perl_do_readline(pTHX) |
a0d0e21e | 1524 | { |
27da23d5 | 1525 | dVAR; dSP; dTARGETSTACKED; |
eb578fdb | 1526 | SV *sv; |
a0d0e21e LW |
1527 | STRLEN tmplen = 0; |
1528 | STRLEN offset; | |
760ac839 | 1529 | PerlIO *fp; |
eb578fdb KW |
1530 | IO * const io = GvIO(PL_last_in_gv); |
1531 | const I32 type = PL_op->op_type; | |
a3b680e6 | 1532 | const I32 gimme = GIMME_V; |
a0d0e21e | 1533 | |
6136c704 | 1534 | if (io) { |
50db69d8 | 1535 | const MAGIC *const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar); |
6136c704 | 1536 | if (mg) { |
3e0cb5de | 1537 | Perl_tied_method(aTHX_ SV_CONST(READLINE), SP, MUTABLE_SV(io), mg, gimme, 0); |
6136c704 | 1538 | if (gimme == G_SCALAR) { |
50db69d8 NC |
1539 | SPAGAIN; |
1540 | SvSetSV_nosteal(TARG, TOPs); | |
1541 | SETTARG; | |
6136c704 | 1542 | } |
50db69d8 | 1543 | return NORMAL; |
0b7c7b4f | 1544 | } |
e79b0511 | 1545 | } |
4608196e | 1546 | fp = NULL; |
a0d0e21e LW |
1547 | if (io) { |
1548 | fp = IoIFP(io); | |
1549 | if (!fp) { | |
1550 | if (IoFLAGS(io) & IOf_ARGV) { | |
1551 | if (IoFLAGS(io) & IOf_START) { | |
a0d0e21e | 1552 | IoLINES(io) = 0; |
3280af22 | 1553 | if (av_len(GvAVn(PL_last_in_gv)) < 0) { |
1d7c1841 | 1554 | IoFLAGS(io) &= ~IOf_START; |
4608196e | 1555 | do_open(PL_last_in_gv,"-",1,FALSE,O_RDONLY,0,NULL); |
4bac9ae4 | 1556 | SvTAINTED_off(GvSVn(PL_last_in_gv)); /* previous tainting irrelevant */ |
76f68e9b | 1557 | sv_setpvs(GvSVn(PL_last_in_gv), "-"); |
3280af22 | 1558 | SvSETMAGIC(GvSV(PL_last_in_gv)); |
a2008d6d GS |
1559 | fp = IoIFP(io); |
1560 | goto have_fp; | |
a0d0e21e LW |
1561 | } |
1562 | } | |
3280af22 | 1563 | fp = nextargv(PL_last_in_gv); |
a0d0e21e | 1564 | if (!fp) { /* Note: fp != IoIFP(io) */ |
3280af22 | 1565 | (void)do_close(PL_last_in_gv, FALSE); /* now it does*/ |
a0d0e21e LW |
1566 | } |
1567 | } | |
0d44d22b NC |
1568 | else if (type == OP_GLOB) |
1569 | fp = Perl_start_glob(aTHX_ POPs, io); | |
a0d0e21e LW |
1570 | } |
1571 | else if (type == OP_GLOB) | |
1572 | SP--; | |
7716c5c5 | 1573 | else if (IoTYPE(io) == IoTYPE_WRONLY) { |
a5390457 | 1574 | report_wrongway_fh(PL_last_in_gv, '>'); |
a00b5bd3 | 1575 | } |
a0d0e21e LW |
1576 | } |
1577 | if (!fp) { | |
041457d9 DM |
1578 | if ((!io || !(IoFLAGS(io) & IOf_START)) |
1579 | && ckWARN2(WARN_GLOB, WARN_CLOSED)) | |
1580 | { | |
3f4520fe | 1581 | if (type == OP_GLOB) |
63922903 | 1582 | Perl_ck_warner_d(aTHX_ packWARN(WARN_GLOB), |
af8c498a GS |
1583 | "glob failed (can't start child: %s)", |
1584 | Strerror(errno)); | |
69282e91 | 1585 | else |
831e4cc3 | 1586 | report_evil_fh(PL_last_in_gv); |
3f4520fe | 1587 | } |
54310121 | 1588 | if (gimme == G_SCALAR) { |
79628082 | 1589 | /* undef TARG, and push that undefined value */ |
ba92458f AE |
1590 | if (type != OP_RCATLINE) { |
1591 | SV_CHECK_THINKFIRST_COW_DROP(TARG); | |
0c34ef67 | 1592 | SvOK_off(TARG); |
ba92458f | 1593 | } |
a0d0e21e LW |
1594 | PUSHTARG; |
1595 | } | |
1596 | RETURN; | |
1597 | } | |
a2008d6d | 1598 | have_fp: |
54310121 | 1599 | if (gimme == G_SCALAR) { |
a0d0e21e | 1600 | sv = TARG; |
0f722b55 RGS |
1601 | if (type == OP_RCATLINE && SvGMAGICAL(sv)) |
1602 | mg_get(sv); | |
48de12d9 RGS |
1603 | if (SvROK(sv)) { |
1604 | if (type == OP_RCATLINE) | |
5668452f | 1605 | SvPV_force_nomg_nolen(sv); |
48de12d9 RGS |
1606 | else |
1607 | sv_unref(sv); | |
1608 | } | |
f7877b28 | 1609 | else if (isGV_with_GP(sv)) { |
5668452f | 1610 | SvPV_force_nomg_nolen(sv); |
f7877b28 | 1611 | } |
862a34c6 | 1612 | SvUPGRADE(sv, SVt_PV); |
a0d0e21e | 1613 | tmplen = SvLEN(sv); /* remember if already alloced */ |
e3918bb7 | 1614 | if (!tmplen && !SvREADONLY(sv) && !SvIsCOW(sv)) { |
f72e8700 JJ |
1615 | /* try short-buffering it. Please update t/op/readline.t |
1616 | * if you change the growth length. | |
1617 | */ | |
1618 | Sv_Grow(sv, 80); | |
1619 | } | |
2b5e58c4 AMS |
1620 | offset = 0; |
1621 | if (type == OP_RCATLINE && SvOK(sv)) { | |
1622 | if (!SvPOK(sv)) { | |
5668452f | 1623 | SvPV_force_nomg_nolen(sv); |
2b5e58c4 | 1624 | } |
a0d0e21e | 1625 | offset = SvCUR(sv); |
2b5e58c4 | 1626 | } |
a0d0e21e | 1627 | } |
54310121 | 1628 | else { |
561b68a9 | 1629 | sv = sv_2mortal(newSV(80)); |
54310121 PP |
1630 | offset = 0; |
1631 | } | |
fbad3eb5 | 1632 | |
3887d568 AP |
1633 | /* This should not be marked tainted if the fp is marked clean */ |
1634 | #define MAYBE_TAINT_LINE(io, sv) \ | |
1635 | if (!(IoFLAGS(io) & IOf_UNTAINT)) { \ | |
1636 | TAINT; \ | |
1637 | SvTAINTED_on(sv); \ | |
1638 | } | |
1639 | ||
684bef36 | 1640 | /* delay EOF state for a snarfed empty file */ |
fbad3eb5 | 1641 | #define SNARF_EOF(gimme,rs,io,sv) \ |
684bef36 | 1642 | (gimme != G_SCALAR || SvCUR(sv) \ |
b9fee9ba | 1643 | || (IoFLAGS(io) & IOf_NOLINE) || !RsSNARF(rs)) |
fbad3eb5 | 1644 | |
a0d0e21e | 1645 | for (;;) { |
09e8efcc | 1646 | PUTBACK; |
fbad3eb5 | 1647 | if (!sv_gets(sv, fp, offset) |
2d726892 TF |
1648 | && (type == OP_GLOB |
1649 | || SNARF_EOF(gimme, PL_rs, io, sv) | |
1650 | || PerlIO_error(fp))) | |
fbad3eb5 | 1651 | { |
760ac839 | 1652 | PerlIO_clearerr(fp); |
a0d0e21e | 1653 | if (IoFLAGS(io) & IOf_ARGV) { |
3280af22 | 1654 | fp = nextargv(PL_last_in_gv); |
a0d0e21e LW |
1655 | if (fp) |
1656 | continue; | |
3280af22 | 1657 | (void)do_close(PL_last_in_gv, FALSE); |
a0d0e21e LW |
1658 | } |
1659 | else if (type == OP_GLOB) { | |
a2a5de95 NC |
1660 | if (!do_close(PL_last_in_gv, FALSE)) { |
1661 | Perl_ck_warner(aTHX_ packWARN(WARN_GLOB), | |
1662 | "glob failed (child exited with status %d%s)", | |
1663 | (int)(STATUS_CURRENT >> 8), | |
1664 | (STATUS_CURRENT & 0x80) ? ", core dumped" : ""); | |
4eb79ab5 | 1665 | } |
a0d0e21e | 1666 | } |
54310121 | 1667 | if (gimme == G_SCALAR) { |
ba92458f AE |
1668 | if (type != OP_RCATLINE) { |
1669 | SV_CHECK_THINKFIRST_COW_DROP(TARG); | |
0c34ef67 | 1670 | SvOK_off(TARG); |
ba92458f | 1671 | } |
09e8efcc | 1672 | SPAGAIN; |
a0d0e21e LW |
1673 | PUSHTARG; |
1674 | } | |
3887d568 | 1675 | MAYBE_TAINT_LINE(io, sv); |
a0d0e21e LW |
1676 | RETURN; |
1677 | } | |
3887d568 | 1678 | MAYBE_TAINT_LINE(io, sv); |
a0d0e21e | 1679 | IoLINES(io)++; |
b9fee9ba | 1680 | IoFLAGS(io) |= IOf_NOLINE; |
71be2cbc | 1681 | SvSETMAGIC(sv); |
09e8efcc | 1682 | SPAGAIN; |
a0d0e21e | 1683 | XPUSHs(sv); |
a0d0e21e | 1684 | if (type == OP_GLOB) { |
349d4f2f | 1685 | const char *t1; |
a0d0e21e | 1686 | |
3280af22 | 1687 | if (SvCUR(sv) > 0 && SvCUR(PL_rs) > 0) { |
6136c704 | 1688 | char * const tmps = SvEND(sv) - 1; |
aa07b2f6 | 1689 | if (*tmps == *SvPVX_const(PL_rs)) { |
c07a80fd | 1690 | *tmps = '\0'; |
b162af07 | 1691 | SvCUR_set(sv, SvCUR(sv) - 1); |
c07a80fd PP |
1692 | } |
1693 | } | |
349d4f2f | 1694 | for (t1 = SvPVX_const(sv); *t1; t1++) |
15861f94 | 1695 | if (!isALPHANUMERIC(*t1) && |
349d4f2f | 1696 | strchr("$&*(){}[]'\";\\|?<>~`", *t1)) |
a0d0e21e | 1697 | break; |
349d4f2f | 1698 | if (*t1 && PerlLIO_lstat(SvPVX_const(sv), &PL_statbuf) < 0) { |
a0d0e21e LW |
1699 | (void)POPs; /* Unmatched wildcard? Chuck it... */ |
1700 | continue; | |
1701 | } | |
2d79bf7f | 1702 | } else if (SvUTF8(sv)) { /* OP_READLINE, OP_RCATLINE */ |
d4c19fe8 AL |
1703 | if (ckWARN(WARN_UTF8)) { |
1704 | const U8 * const s = (const U8*)SvPVX_const(sv) + offset; | |
1705 | const STRLEN len = SvCUR(sv) - offset; | |
1706 | const U8 *f; | |
1707 | ||
1708 | if (!is_utf8_string_loc(s, len, &f)) | |
1709 | /* Emulate :encoding(utf8) warning in the same case. */ | |
1710 | Perl_warner(aTHX_ packWARN(WARN_UTF8), | |
1711 | "utf8 \"\\x%02X\" does not map to Unicode", | |
1712 | f < (U8*)SvEND(sv) ? *f : 0); | |
1713 | } | |
a0d0e21e | 1714 | } |
54310121 | 1715 | if (gimme == G_ARRAY) { |
a0d0e21e | 1716 | if (SvLEN(sv) - SvCUR(sv) > 20) { |
1da4ca5f | 1717 | SvPV_shrink_to_cur(sv); |
a0d0e21e | 1718 | } |
561b68a9 | 1719 | sv = sv_2mortal(newSV(80)); |
a0d0e21e LW |
1720 | continue; |
1721 | } | |
54310121 | 1722 | else if (gimme == G_SCALAR && !tmplen && SvLEN(sv) - SvCUR(sv) > 80) { |
a0d0e21e | 1723 | /* try to reclaim a bit of scalar space (only on 1st alloc) */ |
d5b5861b NC |
1724 | const STRLEN new_len |
1725 | = SvCUR(sv) < 60 ? 80 : SvCUR(sv)+40; /* allow some slop */ | |
1da4ca5f | 1726 | SvPV_renew(sv, new_len); |
a0d0e21e LW |
1727 | } |
1728 | RETURN; | |
1729 | } | |
1730 | } | |
1731 | ||
a0d0e21e LW |
1732 | PP(pp_helem) |
1733 | { | |
97aff369 | 1734 | dVAR; dSP; |
760ac839 | 1735 | HE* he; |
ae77835f | 1736 | SV **svp; |
c445ea15 | 1737 | SV * const keysv = POPs; |
85fbaab2 | 1738 | HV * const hv = MUTABLE_HV(POPs); |
a3b680e6 AL |
1739 | const U32 lval = PL_op->op_flags & OPf_MOD || LVRET; |
1740 | const U32 defer = PL_op->op_private & OPpLVAL_DEFER; | |
be6c24e0 | 1741 | SV *sv; |
92970b93 | 1742 | const bool localizing = PL_op->op_private & OPpLVAL_INTRO; |
d30e492c | 1743 | bool preeminent = TRUE; |
a0d0e21e | 1744 | |
d4c19fe8 | 1745 | if (SvTYPE(hv) != SVt_PVHV) |
a0d0e21e | 1746 | RETPUSHUNDEF; |
d4c19fe8 | 1747 | |
92970b93 | 1748 | if (localizing) { |
d4c19fe8 AL |
1749 | MAGIC *mg; |
1750 | HV *stash; | |
d30e492c VP |
1751 | |
1752 | /* If we can determine whether the element exist, | |
1753 | * Try to preserve the existenceness of a tied hash | |
1754 | * element by using EXISTS and DELETE if possible. | |
1755 | * Fallback to FETCH and STORE otherwise. */ | |
2c5f48c2 | 1756 | if (SvCANEXISTDELETE(hv)) |
d30e492c | 1757 | preeminent = hv_exists_ent(hv, keysv, 0); |
d4c19fe8 | 1758 | } |
d30e492c | 1759 | |
5f9d7e2b | 1760 | he = hv_fetch_ent(hv, keysv, lval && !defer, 0); |
d4c19fe8 | 1761 | svp = he ? &HeVAL(he) : NULL; |
a0d0e21e | 1762 | if (lval) { |
746f6409 | 1763 | if (!svp || !*svp || *svp == &PL_sv_undef) { |
68dc0745 PP |
1764 | SV* lv; |
1765 | SV* key2; | |
2d8e6c8d | 1766 | if (!defer) { |
be2597df | 1767 | DIE(aTHX_ PL_no_helem_sv, SVfARG(keysv)); |
2d8e6c8d | 1768 | } |
68dc0745 PP |
1769 | lv = sv_newmortal(); |
1770 | sv_upgrade(lv, SVt_PVLV); | |
1771 | LvTYPE(lv) = 'y'; | |
6136c704 | 1772 | sv_magic(lv, key2 = newSVsv(keysv), PERL_MAGIC_defelem, NULL, 0); |
fc2b2dca | 1773 | SvREFCNT_dec_NN(key2); /* sv_magic() increments refcount */ |
b37c2d43 | 1774 | LvTARG(lv) = SvREFCNT_inc_simple(hv); |
68dc0745 PP |
1775 | LvTARGLEN(lv) = 1; |
1776 | PUSHs(lv); | |
1777 | RETURN; | |
1778 | } | |
92970b93 | 1779 | if (localizing) { |
bfcb3514 | 1780 | if (HvNAME_get(hv) && isGV(*svp)) |
159b6efe | 1781 | save_gp(MUTABLE_GV(*svp), !(PL_op->op_flags & OPf_SPECIAL)); |
47cfc530 VP |
1782 | else if (preeminent) |
1783 | save_helem_flags(hv, keysv, svp, | |
1784 | (PL_op->op_flags & OPf_SPECIAL) ? 0 : SAVEf_SETMAGIC); | |
1785 | else | |
1786 | SAVEHDELETE(hv, keysv); | |
5f05dabc | 1787 | } |
9026059d GG |
1788 | else if (PL_op->op_private & OPpDEREF) { |
1789 | PUSHs(vivify_ref(*svp, PL_op->op_private & OPpDEREF)); | |
1790 | RETURN; | |
1791 | } | |
a0d0e21e | 1792 | } |
746f6409 | 1793 | sv = (svp && *svp ? *svp : &PL_sv_undef); |
fd69380d DM |
1794 | /* Originally this did a conditional C<sv = sv_mortalcopy(sv)>; this |
1795 | * was to make C<local $tied{foo} = $tied{foo}> possible. | |
1796 | * However, it seems no longer to be needed for that purpose, and | |
1797 | * introduced a new bug: stuff like C<while ($hash{taintedval} =~ /.../g> | |
1798 | * would loop endlessly since the pos magic is getting set on the | |
1799 | * mortal copy and lost. However, the copy has the effect of | |
1800 | * triggering the get magic, and losing it altogether made things like | |
1801 | * c<$tied{foo};> in void context no longer do get magic, which some | |
1802 | * code relied on. Also, delayed triggering of magic on @+ and friends | |
1803 | * meant the original regex may be out of scope by now. So as a | |
1804 | * compromise, do the get magic here. (The MGf_GSKIP flag will stop it | |
1805 | * being called too many times). */ | |
39cf747a | 1806 | if (!lval && SvRMAGICAL(hv) && SvGMAGICAL(sv)) |
fd69380d | 1807 | mg_get(sv); |
be6c24e0 | 1808 | PUSHs(sv); |
a0d0e21e LW |
1809 | RETURN; |
1810 | } | |
1811 | ||
a0d0e21e LW |
1812 | PP(pp_iter) |
1813 | { | |
97aff369 | 1814 | dVAR; dSP; |
eb578fdb | 1815 | PERL_CONTEXT *cx; |
7d6c2cef | 1816 | SV *oldsv; |
1d7c1841 | 1817 | SV **itersvp; |
a0d0e21e | 1818 | |
924508f0 | 1819 | EXTEND(SP, 1); |
a0d0e21e | 1820 | cx = &cxstack[cxstack_ix]; |
1d7c1841 | 1821 | itersvp = CxITERVAR(cx); |
a48ce6be DM |
1822 | |
1823 | switch (CxTYPE(cx)) { | |
17c91640 | 1824 | |
b552b52c DM |
1825 | case CXt_LOOP_LAZYSV: /* string increment */ |
1826 | { | |
1827 | SV* cur = cx->blk_loop.state_u.lazysv.cur; | |
1828 | SV *end = cx->blk_loop.state_u.lazysv.end; | |
1829 | /* If the maximum is !SvOK(), pp_enteriter substitutes PL_sv_no. | |
1830 | It has SvPVX of "" and SvCUR of 0, which is what we want. */ | |
1831 | STRLEN maxlen = 0; | |
1832 | const char *max = SvPV_const(end, maxlen); | |
1833 | if (SvNIOK(cur) || SvCUR(cur) > maxlen) | |
1834 | RETPUSHNO; | |
1835 | ||
1836 | oldsv = *itersvp; | |
1837 | if (SvREFCNT(oldsv) == 1 && !SvMAGICAL(oldsv)) { | |
1838 | /* safe to reuse old SV */ | |
1839 | sv_setsv(oldsv, cur); | |
a48ce6be | 1840 | } |
b552b52c DM |
1841 | else |
1842 | { | |
1843 | /* we need a fresh SV every time so that loop body sees a | |
1844 | * completely new SV for closures/references to work as | |
1845 | * they used to */ | |
1846 | *itersvp = newSVsv(cur); | |
fc2b2dca | 1847 | SvREFCNT_dec_NN(oldsv); |
b552b52c DM |
1848 | } |
1849 | if (strEQ(SvPVX_const(cur), max)) | |
1850 | sv_setiv(cur, 0); /* terminate next time */ | |
1851 | else | |
1852 | sv_inc(cur); | |
1853 | break; | |
1854 | } | |
a48ce6be | 1855 | |
fcef60b4 DM |
1856 | case CXt_LOOP_LAZYIV: /* integer increment */ |
1857 | { | |
1858 | IV cur = cx->blk_loop.state_u.lazyiv.cur; | |
1859 | if (cur > cx->blk_loop.state_u.lazyiv.end) | |
89ea2908 | 1860 | RETPUSHNO; |
7f61b687 | 1861 | |
fcef60b4 | 1862 | oldsv = *itersvp; |
3db8f154 | 1863 | /* don't risk potential race */ |
fcef60b4 | 1864 | if (SvREFCNT(oldsv) == 1 && !SvMAGICAL(oldsv)) { |
eaa5c2d6 | 1865 | /* safe to reuse old SV */ |
fcef60b4 | 1866 | sv_setiv(oldsv, cur); |
eaa5c2d6 | 1867 | } |
1c846c1f | 1868 | else |
eaa5c2d6 GA |
1869 | { |
1870 | /* we need a fresh SV every time so that loop body sees a | |
1871 | * completely new SV for closures/references to work as they | |
1872 | * used to */ | |
fcef60b4 | 1873 | *itersvp = newSViv(cur); |
fc2b2dca | 1874 | SvREFCNT_dec_NN(oldsv); |
eaa5c2d6 | 1875 | } |
a2309040 | 1876 | |
fcef60b4 | 1877 | if (cur == IV_MAX) { |
cdc1aa42 NC |
1878 | /* Handle end of range at IV_MAX */ |
1879 | cx->blk_loop.state_u.lazyiv.end = IV_MIN; | |
1880 | } else | |
1881 | ++cx->blk_loop.state_u.lazyiv.cur; | |
a48ce6be | 1882 | break; |
fcef60b4 | 1883 | } |
a48ce6be | 1884 | |
b552b52c | 1885 | case CXt_LOOP_FOR: /* iterate array */ |
7d6c2cef | 1886 | { |
89ea2908 | 1887 | |
7d6c2cef DM |
1888 | AV *av = cx->blk_loop.state_u.ary.ary; |
1889 | SV *sv; | |
1890 | bool av_is_stack = FALSE; | |
a8a20bb6 | 1891 | IV ix; |
7d6c2cef | 1892 | |
de080daa DM |
1893 | if (!av) { |
1894 | av_is_stack = TRUE; | |
1895 | av = PL_curstack; | |
1896 | } | |
1897 | if (PL_op->op_private & OPpITER_REVERSED) { | |
a8a20bb6 DM |
1898 | ix = --cx->blk_loop.state_u.ary.ix; |
1899 | if (ix <= (av_is_stack ? cx->blk_loop.resetsp : -1)) | |
de080daa | 1900 | RETPUSHNO; |
de080daa DM |
1901 | } |
1902 | else { | |
a8a20bb6 DM |
1903 | ix = ++cx->blk_loop.state_u.ary.ix; |
1904 | if (ix > (av_is_stack ? cx->blk_oldsp : AvFILL(av))) | |
de080daa | 1905 | RETPUSHNO; |
a8a20bb6 | 1906 | } |
de080daa | 1907 | |
a8a20bb6 DM |
1908 | if (SvMAGICAL(av) || AvREIFY(av)) { |
1909 | SV * const * const svp = av_fetch(av, ix, FALSE); | |
1910 | sv = svp ? *svp : NULL; | |
1911 | } | |
1912 | else { | |
1913 | sv = AvARRAY(av)[ix]; | |
de080daa | 1914 | } |
ef3e5ea9 | 1915 | |
de080daa | 1916 | if (sv) { |
f38aa882 DM |
1917 | if (SvIS_FREED(sv)) { |
1918 | *itersvp = NULL; | |
1919 | Perl_croak(aTHX_ "Use of freed value in iteration"); | |
1920 | } | |
8e079c2a FC |
1921 | if (SvPADTMP(sv) && !IS_PADGV(sv)) |
1922 | sv = newSVsv(sv); | |
1923 | else { | |
1924 | SvTEMP_off(sv); | |
1925 | SvREFCNT_inc_simple_void_NN(sv); | |
1926 | } | |
de080daa DM |
1927 | } |
1928 | else | |
1929 | sv = &PL_sv_undef; | |
f38aa882 | 1930 | |
de080daa DM |
1931 | if (!av_is_stack && sv == &PL_sv_undef) { |
1932 | SV *lv = newSV_type(SVt_PVLV); | |
1933 | LvTYPE(lv) = 'y'; | |
1934 | sv_magic(lv, NULL, PERL_MAGIC_defelem, NULL, 0); | |
1935 | LvTARG(lv) = SvREFCNT_inc_simple(av); | |
f38aa882 | 1936 | LvTARGOFF(lv) = ix; |
de080daa DM |
1937 | LvTARGLEN(lv) = (STRLEN)UV_MAX; |
1938 | sv = lv; | |
1939 | } | |
a0d0e21e | 1940 | |
de080daa DM |
1941 | oldsv = *itersvp; |
1942 | *itersvp = sv; | |
1943 | SvREFCNT_dec(oldsv); | |
de080daa | 1944 | break; |
7d6c2cef | 1945 | } |
a48ce6be DM |
1946 | |
1947 | default: | |
1948 | DIE(aTHX_ "panic: pp_iter, type=%u", CxTYPE(cx)); | |
1949 | } | |
b552b52c | 1950 | RETPUSHYES; |
a0d0e21e LW |
1951 | } |
1952 | ||
ef07e810 DM |
1953 | /* |
1954 | A description of how taint works in pattern matching and substitution. | |
1955 | ||
284167a5 SM |
1956 | This is all conditional on NO_TAINT_SUPPORT not being defined. Under |
1957 | NO_TAINT_SUPPORT, taint-related operations should become no-ops. | |
1958 | ||
4e19c54b | 1959 | While the pattern is being assembled/concatenated and then compiled, |
284167a5 SM |
1960 | PL_tainted will get set (via TAINT_set) if any component of the pattern |
1961 | is tainted, e.g. /.*$tainted/. At the end of pattern compilation, | |
1962 | the RXf_TAINTED flag is set on the pattern if PL_tainted is set (via | |
1963 | TAINT_get). | |
ef07e810 | 1964 | |
0ab462a6 DM |
1965 | When the pattern is copied, e.g. $r = qr/..../, the SV holding the ref to |
1966 | the pattern is marked as tainted. This means that subsequent usage, such | |
284167a5 SM |
1967 | as /x$r/, will set PL_tainted using TAINT_set, and thus RXf_TAINTED, |
1968 | on the new pattern too. | |
ef07e810 | 1969 | |
272d35c9 | 1970 | At the start of execution of a pattern, the RXf_TAINTED_SEEN flag on the |
ca143fe8 | 1971 | regex is cleared; during execution, locale-variant ops such as POSIXL may |
272d35c9 | 1972 | set RXf_TAINTED_SEEN. |
ef07e810 | 1973 | |
272d35c9 | 1974 | RXf_TAINTED_SEEN is used post-execution by the get magic code |
ef07e810 DM |
1975 | of $1 et al to indicate whether the returned value should be tainted. |
1976 | It is the responsibility of the caller of the pattern (i.e. pp_match, | |
1977 | pp_subst etc) to set this flag for any other circumstances where $1 needs | |
1978 | to be tainted. | |
1979 | ||
1980 | The taint behaviour of pp_subst (and pp_substcont) is quite complex. | |
1981 | ||
1982 | There are three possible sources of taint | |
1983 | * the source string | |
1984 | * the pattern (both compile- and run-time, RXf_TAINTED / RXf_TAINTED_SEEN) | |
1985 | * the replacement string (or expression under /e) | |
1986 | ||
1987 | There are four destinations of taint and they are affected by the sources | |
1988 | according to the rules below: | |
1989 | ||
1990 | * the return value (not including /r): | |
1991 | tainted by the source string and pattern, but only for the | |
1992 | number-of-iterations case; boolean returns aren't tainted; | |
1993 | * the modified string (or modified copy under /r): | |
1994 | tainted by the source string, pattern, and replacement strings; | |
1995 | * $1 et al: | |
1996 | tainted by the pattern, and under 'use re "taint"', by the source | |
1997 | string too; | |
1998 | * PL_taint - i.e. whether subsequent code (e.g. in a /e block) is tainted: | |
1999 | should always be unset before executing subsequent code. | |
2000 | ||
2001 | The overall action of pp_subst is: | |
2002 | ||
2003 | * at the start, set bits in rxtainted indicating the taint status of | |
2004 | the various sources. | |
2005 | ||
2006 | * After each pattern execution, update the SUBST_TAINT_PAT bit in | |
2007 | rxtainted if RXf_TAINTED_SEEN has been set, to indicate that the | |
2008 | pattern has subsequently become tainted via locale ops. | |
2009 | ||
2010 | * If control is being passed to pp_substcont to execute a /e block, | |
2011 | save rxtainted in the CXt_SUBST block, for future use by | |
2012 | pp_substcont. | |
2013 | ||
2014 | * Whenever control is being returned to perl code (either by falling | |
2015 | off the "end" of pp_subst/pp_substcont, or by entering a /e block), | |
2016 | use the flag bits in rxtainted to make all the appropriate types of | |
0ab462a6 DM |
2017 | destination taint visible; e.g. set RXf_TAINTED_SEEN so that $1 |
2018 | et al will appear tainted. | |
ef07e810 DM |
2019 | |
2020 | pp_match is just a simpler version of the above. | |
2021 | ||
2022 | */ | |
2023 | ||
a0d0e21e LW |
2024 | PP(pp_subst) |
2025 | { | |
97aff369 | 2026 | dVAR; dSP; dTARG; |
eb578fdb | 2027 | PMOP *pm = cPMOP; |
a0d0e21e | 2028 | PMOP *rpm = pm; |
eb578fdb | 2029 | char *s; |
a0d0e21e | 2030 | char *strend; |
eb578fdb | 2031 | char *m; |
5c144d81 | 2032 | const char *c; |
eb578fdb | 2033 | char *d; |
a0d0e21e LW |
2034 | STRLEN clen; |
2035 | I32 iters = 0; | |
2036 | I32 maxiters; | |
eb578fdb | 2037 | I32 i; |
a0d0e21e | 2038 | bool once; |
ef07e810 DM |
2039 | U8 rxtainted = 0; /* holds various SUBST_TAINT_* flag bits. |
2040 | See "how taint works" above */ | |
a0d0e21e | 2041 | char *orig; |
1ed74d04 | 2042 | U8 r_flags; |
eb578fdb | 2043 | REGEXP *rx = PM_GETRE(pm); |
a0d0e21e LW |
2044 | STRLEN len; |
2045 | int force_on_match = 0; | |
0bcc34c2 | 2046 | const I32 oldsave = PL_savestack_ix; |
792b2c16 | 2047 | STRLEN slen; |
26a74523 | 2048 | bool doutf8 = FALSE; /* whether replacement is in utf8 */ |
db2c6cb3 | 2049 | #ifdef PERL_ANY_COW |
ed252734 NC |
2050 | bool is_cow; |
2051 | #endif | |
a0714e2c | 2052 | SV *nsv = NULL; |
b770e143 | 2053 | /* known replacement string? */ |
eb578fdb | 2054 | SV *dstr = (pm->op_pmflags & PMf_CONST) ? POPs : NULL; |
a0d0e21e | 2055 | |
f410a211 NC |
2056 | PERL_ASYNC_CHECK(); |
2057 | ||
533c011a | 2058 | if (PL_op->op_flags & OPf_STACKED) |
a0d0e21e | 2059 | TARG = POPs; |
59f00321 RGS |
2060 | else if (PL_op->op_private & OPpTARGET_MY) |
2061 | GETTARGET; | |
a0d0e21e | 2062 | else { |
54b9620d | 2063 | TARG = DEFSV; |
a0d0e21e | 2064 | EXTEND(SP,1); |
1c846c1f | 2065 | } |
d9f424b2 | 2066 | |
64534138 | 2067 | SvGETMAGIC(TARG); /* must come before cow check */ |
db2c6cb3 | 2068 | #ifdef PERL_ANY_COW |
ed252734 NC |
2069 | /* Awooga. Awooga. "bool" types that are actually char are dangerous, |
2070 | because they make integers such as 256 "false". */ | |
2071 | is_cow = SvIsCOW(TARG) ? TRUE : FALSE; | |
2072 | #else | |
765f542d NC |
2073 | if (SvIsCOW(TARG)) |
2074 | sv_force_normal_flags(TARG,0); | |
ed252734 | 2075 | #endif |
8ca8a454 | 2076 | if (!(rpm->op_pmflags & PMf_NONDESTRUCT) |
db2c6cb3 | 2077 | #ifdef PERL_ANY_COW |
8ca8a454 | 2078 | && !is_cow |
ed252734 | 2079 | #endif |
8ca8a454 NC |
2080 | && (SvREADONLY(TARG) |
2081 | || ( ((SvTYPE(TARG) == SVt_PVGV && isGV_with_GP(TARG)) | |
2082 | || SvTYPE(TARG) > SVt_PVLV) | |
2083 | && !(SvTYPE(TARG) == SVt_PVGV && SvFAKE(TARG))))) | |
cb077ed2 | 2084 | Perl_croak_no_modify(); |
8ec5e241 NIS |
2085 | PUTBACK; |
2086 | ||
64534138 | 2087 | s = SvPV_nomg(TARG, len); |
4499db73 | 2088 | if (!SvPOKp(TARG) || SvTYPE(TARG) == SVt_PVGV || SvVOK(TARG)) |
a0d0e21e | 2089 | force_on_match = 1; |
20be6587 DM |
2090 | |
2091 | /* only replace once? */ | |
2092 | once = !(rpm->op_pmflags & PMf_GLOBAL); | |
2093 | ||
ef07e810 | 2094 | /* See "how taint works" above */ |
284167a5 | 2095 | if (TAINTING_get) { |
20be6587 DM |
2096 | rxtainted = ( |
2097 | (SvTAINTED(TARG) ? SUBST_TAINT_STR : 0) | |
284167a5 | 2098 | | (RX_ISTAINTED(rx) ? SUBST_TAINT_PAT : 0) |
20be6587 DM |
2099 | | ((pm->op_pmflags & PMf_RETAINT) ? SUBST_TAINT_RETAINT : 0) |
2100 | | ((once && !(rpm->op_pmflags & PMf_NONDESTRUCT)) | |
2101 | ? SUBST_TAINT_BOOLRET : 0)); | |
2102 | TAINT_NOT; | |
2103 | } | |
a12c0f56 | 2104 | |
a0d0e21e LW |
2105 | force_it: |
2106 | if (!pm || !s) | |
5637ef5b | 2107 | DIE(aTHX_ "panic: pp_subst, pm=%p, s=%p", pm, s); |
a0d0e21e LW |
2108 | |
2109 | strend = s + len; | |
0603fe5c | 2110 | slen = DO_UTF8(TARG) ? utf8_length((U8*)s, (U8*)strend) : len; |
792b2c16 JH |
2111 | maxiters = 2 * slen + 10; /* We can match twice at each |
2112 | position, once with zero-length, | |
2113 | second time with non-zero. */ | |
a0d0e21e | 2114 | |
6a97c51d | 2115 | if (!RX_PRELEN(rx) && PL_curpm |
8d919b0a | 2116 | && !ReANY(rx)->mother_re) { |
3280af22 | 2117 | pm = PL_curpm; |
aaa362c4 | 2118 | rx = PM_GETRE(pm); |
a0d0e21e | 2119 | } |
6502e081 | 2120 | |
6e240d0b | 2121 | #ifdef PERL_SAWAMPERSAND |
6502e081 DM |
2122 | r_flags = ( RX_NPARENS(rx) |
2123 | || PL_sawampersand | |
6502e081 DM |
2124 | || (RX_EXTFLAGS(rx) & (RXf_EVAL_SEEN|RXf_PMf_KEEPCOPY)) |
2125 | ) | |
2126 | ? REXEC_COPY_STR | |
2127 | : 0; | |
6e240d0b FC |
2128 | #else |
2129 | r_flags = REXEC_COPY_STR; | |
2130 | #endif | |
7fba1cd6 | 2131 | |
a0d0e21e | 2132 | orig = m = s; |
71be2cbc | 2133 | |
c147a04b | 2134 | if (!CALLREGEXEC(rx, s, strend, orig, 0, TARG, NULL, r_flags)) |
8b64c330 | 2135 | { |
5e79dfb9 DM |
2136 | SPAGAIN; |
2137 | PUSHs(rpm->op_pmflags & PMf_NONDESTRUCT ? TARG : &PL_sv_no); | |
2138 | LEAVE_SCOPE(oldsave); | |
2139 | RETURN; | |
2140 | } | |
c147a04b | 2141 | s = RX_OFFS(rx)[0].start + orig; |
5e79dfb9 | 2142 | |
1754320d FC |
2143 | PL_curpm = pm; |
2144 | ||
71be2cbc | 2145 | /* known replacement string? */ |
f272994b | 2146 | if (dstr) { |
8514a05a JH |
2147 | /* replacement needing upgrading? */ |
2148 | if (DO_UTF8(TARG) && !doutf8) { | |
db79b45b | 2149 | nsv = sv_newmortal(); |
4a176938 | 2150 | SvSetSV(nsv, dstr); |
8514a05a JH |
2151 | if (PL_encoding) |
2152 | sv_recode_to_utf8(nsv, PL_encoding); | |
2153 | else | |
2154 | sv_utf8_upgrade(nsv); | |
5c144d81 | 2155 | c = SvPV_const(nsv, clen); |
4a176938 JH |
2156 | doutf8 = TRUE; |
2157 | } | |
2158 | else { | |
5c144d81 | 2159 | c = SvPV_const(dstr, clen); |
4a176938 | 2160 | doutf8 = DO_UTF8(dstr); |
8514a05a | 2161 | } |
bb933b9b FC |
2162 | |
2163 | if (SvTAINTED(dstr)) | |
2164 | rxtainted |= SUBST_TAINT_REPL; | |
f272994b A |
2165 | } |
2166 | else { | |
6136c704 | 2167 | c = NULL; |
f272994b A |
2168 | doutf8 = FALSE; |
2169 | } | |
2170 | ||
71be2cbc | 2171 | /* can do inplace substitution? */ |
ed252734 | 2172 | if (c |
db2c6cb3 | 2173 | #ifdef PERL_ANY_COW |
ed252734 NC |
2174 | && !is_cow |
2175 | #endif | |
fbfb1899 DM |
2176 | && (I32)clen <= RX_MINLENRET(rx) |
2177 | && (once || !(r_flags & REXEC_COPY_STR)) | |
dbc200c5 | 2178 | && !(RX_EXTFLAGS(rx) & RXf_NO_INPLACE_SUBST) |
8ca8a454 NC |
2179 | && (!doutf8 || SvUTF8(TARG)) |
2180 | && !(rpm->op_pmflags & PMf_NONDESTRUCT)) | |
8b030b38 | 2181 | { |
ec911639 | 2182 | |
db2c6cb3 | 2183 | #ifdef PERL_ANY_COW |
ed252734 | 2184 | if (SvIsCOW(TARG)) { |
f7a8268c | 2185 | if (!force_on_match) |
ed252734 | 2186 | goto have_a_cow; |
f7a8268c | 2187 | assert(SvVOK(TARG)); |
ed252734 NC |
2188 | } |
2189 | #endif | |
71be2cbc PP |
2190 | if (force_on_match) { |
2191 | force_on_match = 0; | |
5c1648b0 | 2192 | s = SvPV_force_nomg(TARG, len); |
71be2cbc PP |
2193 | goto force_it; |
2194 | } | |
71be2cbc | 2195 | d = s; |
71be2cbc | 2196 | if (once) { |
20be6587 DM |
2197 | if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */ |
2198 | rxtainted |= SUBST_TAINT_PAT; | |
07bc277f NC |
2199 | m = orig + RX_OFFS(rx)[0].start; |
2200 | d = orig + RX_OFFS(rx)[0].end; | |
71be2cbc PP |
2201 | s = orig; |
2202 | if (m - s > strend - d) { /* faster to shorten from end */ | |
2203 | if (clen) { | |
2204 | Copy(c, m, clen, char); | |
2205 | m += clen; | |
a0d0e21e | 2206 | } |
71be2cbc PP |
2207 | i = strend - d; |
2208 | if (i > 0) { | |
2209 | Move(d, m, i, char); | |
2210 | m += i; | |
a0d0e21e | 2211 | } |
71be2cbc PP |
2212 | *m = '\0'; |
2213 | SvCUR_set(TARG, m - s); | |
2214 | } | |
155aba94 | 2215 | else if ((i = m - s)) { /* faster from front */ |
71be2cbc PP |
2216 | d -= clen; |
2217 | m = d; | |
0d3c21b0 | 2218 | Move(s, d - i, i, char); |
71be2cbc | 2219 | sv_chop(TARG, d-i); |
71be2cbc PP |
2220 | if (clen) |
2221 | Copy(c, m, clen, char); | |
2222 | } | |
2223 | else if (clen) { | |
2224 | d -= clen; | |
2225 | sv_chop(TARG, d); | |
2226 | Copy(c, d, clen, char); | |
2227 | } | |
2228 | else { | |
2229 | sv_chop(TARG, d); | |
2230 | } | |
8ec5e241 | 2231 | SPAGAIN; |
8ca8a454 | 2232 | PUSHs(&PL_sv_yes); |
71be2cbc PP |
2233 | } |
2234 | else { | |
71be2cbc PP |
2235 | do { |
2236 | if (iters++ > maxiters) | |
cea2e8a9 | 2237 | DIE(aTHX_ "Substitution loop"); |
20be6587 DM |
2238 | if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */ |
2239 | rxtainted |= SUBST_TAINT_PAT; | |
07bc277f | 2240 | m = RX_OFFS(rx)[0].start + orig; |
155aba94 | 2241 | if ((i = m - s)) { |
71be2cbc PP |
2242 | if (s != d) |
2243 | Move(s, d, i, char); | |
2244 | d += i; | |
a0d0e21e | 2245 | } |
71be2cbc PP |
2246 | if (clen) { |
2247 | Copy(c, d, clen, char); | |
2248 | d += clen; | |
2249 | } | |
07bc277f | 2250 | s = RX_OFFS(rx)[0].end + orig; |
f9f4320a | 2251 | } while (CALLREGEXEC(rx, s, strend, orig, s == m, |
f722798b IZ |
2252 | TARG, NULL, |
2253 | /* don't match same null twice */ | |
2254 | REXEC_NOT_FIRST|REXEC_IGNOREPOS)); | |
71be2cbc PP |
2255 | if (s != d) { |
2256 | i = strend - s; | |
aa07b2f6 | 2257 | SvCUR_set(TARG, d - SvPVX_const(TARG) + i); |
71be2cbc | 2258 | Move(s, d, i+1, char); /* include the NUL */ |
a0d0e21e | 2259 | } |
8ec5e241 | 2260 | SPAGAIN; |
8ca8a454 | 2261 | mPUSHi((I32)iters); |
a0d0e21e LW |
2262 | } |
2263 | } | |
ff6e92e8 | 2264 | else { |
1754320d FC |
2265 | bool first; |
2266 | SV *repl; | |
a0d0e21e LW |
2267 | if (force_on_match) { |
2268 | force_on_match = 0; | |
0c1438a1 NC |
2269 | if (rpm->op_pmflags & PMf_NONDESTRUCT) { |
2270 | /* I feel that it should be possible to avoid this mortal copy | |
2271 | given that the code below copies into a new destination. | |
2272 | However, I suspect it isn't worth the complexity of | |
2273 | unravelling the C<goto force_it> for the small number of | |
2274 | cases where it would be viable to drop into the copy code. */ | |
2275 | TARG = sv_2mortal(newSVsv(TARG)); | |
2276 | } | |
5c1648b0 | 2277 | s = SvPV_force_nomg(TARG, len); |
a0d0e21e LW |
2278 | goto force_it; |
2279 | } | |
db2c6cb3 | 2280 | #ifdef PERL_ANY_COW |
ed252734 NC |
2281 | have_a_cow: |
2282 | #endif | |
20be6587 DM |
2283 | if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */ |
2284 | rxtainted |= SUBST_TAINT_PAT; | |
1754320d | 2285 | repl = dstr; |
815dd406 | 2286 | dstr = newSVpvn_flags(m, s-m, SVs_TEMP | (DO_UTF8(TARG) ? SVf_UTF8 : 0)); |
a0d0e21e | 2287 | if (!c) { |
eb578fdb | 2288 | PERL_CONTEXT *cx; |
8ec5e241 | 2289 | SPAGAIN; |
20be6587 DM |
2290 | /* note that a whole bunch of local vars are saved here for |
2291 | * use by pp_substcont: here's a list of them in case you're | |
2292 | * searching for places in this sub that uses a particular var: | |
2293 | * iters maxiters r_flags oldsave rxtainted orig dstr targ | |
2294 | * s m strend rx once */ | |
a0d0e21e | 2295 | PUSHSUBST(cx); |
20e98b0f | 2296 | RETURNOP(cPMOP->op_pmreplrootu.op_pmreplroot); |
a0d0e21e | 2297 | } |
cf93c79d | 2298 | r_flags |= REXEC_IGNOREPOS | REXEC_NOT_FIRST; |
1754320d | 2299 | first = TRUE; |
a0d0e21e LW |
2300 | do { |
2301 | if (iters++ > maxiters) | |
cea2e8a9 | 2302 | DIE(aTHX_ "Substitution loop"); |
20be6587 DM |
2303 | if (RX_MATCH_TAINTED(rx)) |
2304 | rxtainted |= SUBST_TAINT_PAT; | |
07bc277f | 2305 | if (RX_MATCH_COPIED(rx) && RX_SUBBEG(rx) != orig) { |
a0d0e21e LW |
2306 | m = s; |
2307 | s = orig; | |
6502e081 | 2308 | assert(RX_SUBOFFSET(rx) == 0); |
07bc277f | 2309 | orig = RX_SUBBEG(rx); |
a0d0e21e LW |
2310 | s = orig + (m - s); |
2311 | strend = s + (strend - m); | |
2312 | } | |
07bc277f | 2313 | m = RX_OFFS(rx)[0].start + orig; |
64534138 | 2314 | sv_catpvn_nomg_maybeutf8(dstr, s, m - s, DO_UTF8(TARG)); |
07bc277f | 2315 | s = RX_OFFS(rx)[0].end + orig; |
1754320d FC |
2316 | if (first) { |
2317 | /* replacement already stringified */ | |
2318 | if (clen) | |
64534138 | 2319 | sv_catpvn_nomg_maybeutf8(dstr, c, clen, doutf8); |
1754320d FC |
2320 | first = FALSE; |
2321 | } | |
2322 | else { | |
1754320d FC |
2323 | if (PL_encoding) { |
2324 | if (!nsv) nsv = sv_newmortal(); | |
2325 | sv_copypv(nsv, repl); | |
2326 | if (!DO_UTF8(nsv)) sv_recode_to_utf8(nsv, PL_encoding); | |
2327 | sv_catsv(dstr, nsv); | |
2328 | } | |
2329 | else sv_catsv(dstr, repl); | |
bb933b9b FC |
2330 | if (SvTAINTED(repl)) |
2331 | rxtainted |= SUBST_TAINT_REPL; | |
1754320d | 2332 | } |
a0d0e21e LW |
2333 | if (once) |
2334 | break; | |
f9f4320a | 2335 | } while (CALLREGEXEC(rx, s, strend, orig, s == m, |
ffc61ed2 | 2336 | TARG, NULL, r_flags)); |
64534138 | 2337 | sv_catpvn_nomg_maybeutf8(dstr, s, strend - s, DO_UTF8(TARG)); |
748a9306 | 2338 | |
8ca8a454 NC |
2339 | if (rpm->op_pmflags & PMf_NONDESTRUCT) { |
2340 | /* From here on down we're using the copy, and leaving the original | |
2341 | untouched. */ | |
2342 | TARG = dstr; | |
2343 | SPAGAIN; | |
2344 | PUSHs(dstr); | |
2345 | } else { | |
db2c6cb3 | 2346 | #ifdef PERL_ANY_COW |
8ca8a454 NC |
2347 | /* The match may make the string COW. If so, brilliant, because |
2348 | that's just saved us one malloc, copy and free - the regexp has | |
2349 | donated the old buffer, and we malloc an entirely new one, rather | |
2350 | than the regexp malloc()ing a buffer and copying our original, | |
2351 | only for us to throw it away here during the substitution. */ | |
2352 | if (SvIsCOW(TARG)) { | |
2353 | sv_force_normal_flags(TARG, SV_COW_DROP_PV); | |
2354 | } else | |
ed252734 | 2355 | #endif |
8ca8a454 NC |
2356 | { |
2357 | SvPV_free(TARG); | |
2358 | } | |
2359 | SvPV_set(TARG, SvPVX(dstr)); | |
2360 | SvCUR_set(TARG, SvCUR(dstr)); | |
2361 | SvLEN_set(TARG, SvLEN(dstr)); | |
64534138 | 2362 | SvFLAGS(TARG) |= SvUTF8(dstr); |
8ca8a454 | 2363 | SvPV_set(dstr, NULL); |
748a9306 | 2364 | |
8ca8a454 | 2365 | SPAGAIN; |
4f4d7508 | 2366 | mPUSHi((I32)iters); |
8ca8a454 NC |
2367 | } |
2368 | } | |
2369 | ||
2370 | if (!(rpm->op_pmflags & PMf_NONDESTRUCT)) { | |
2371 | (void)SvPOK_only_UTF8(TARG); | |
a0d0e21e | 2372 | } |
20be6587 | 2373 | |
ef07e810 | 2374 | /* See "how taint works" above */ |
284167a5 | 2375 | if (TAINTING_get) { |
20be6587 DM |
2376 | if ((rxtainted & SUBST_TAINT_PAT) || |
2377 | ((rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT)) == | |
2378 | (SUBST_TAINT_STR|SUBST_TAINT_RETAINT)) | |
2379 | ) | |
2380 | (RX_MATCH_TAINTED_on(rx)); /* taint $1 et al */ | |
2381 | ||
2382 | if (!(rxtainted & SUBST_TAINT_BOOLRET) | |
2383 | && (rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT)) | |
2384 | ) | |
2385 | SvTAINTED_on(TOPs); /* taint return value */ | |
2386 | else | |
2387 | SvTAINTED_off(TOPs); /* may have got tainted earlier */ | |
2388 | ||
2389 | /* needed for mg_set below */ | |
284167a5 SM |
2390 | TAINT_set( |
2391 | cBOOL(rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL)) | |
2392 | ); | |
20be6587 DM |
2393 | SvTAINT(TARG); |
2394 | } | |
2395 | SvSETMAGIC(TARG); /* PL_tainted must be correctly set for this mg_set */ | |
2396 | TAINT_NOT; | |
f1a76097 DM |
2397 | LEAVE_SCOPE(oldsave); |
2398 | RETURN; | |
a0d0e21e LW |
2399 | } |
2400 | ||
2401 | PP(pp_grepwhile) | |
2402 | { | |
27da23d5 | 2403 | dVAR; dSP; |
a0d0e21e LW |
2404 | |
2405 | if (SvTRUEx(POPs)) | |
3280af22 NIS |
2406 | PL_stack_base[PL_markstack_ptr[-1]++] = PL_stack_base[*PL_markstack_ptr]; |
2407 | ++*PL_markstack_ptr; | |
b2a2a901 | 2408 | FREETMPS; |
d343c3ef | 2409 | LEAVE_with_name("grep_item"); /* exit inner scope */ |
a0d0e21e LW |
2410 | |
2411 | /* All done yet? */ | |
3280af22 | 2412 | if (PL_stack_base + *PL_markstack_ptr > SP) { |
a0d0e21e | 2413 | I32 items; |
c4420975 | 2414 | const I32 gimme = GIMME_V; |
a0d0e21e | 2415 | |
d343c3ef | 2416 | LEAVE_with_name("grep"); /* exit outer scope */ |
a0d0e21e | 2417 | (void)POPMARK; /* pop src */ |
3280af22 | 2418 | items = --*PL_markstack_ptr - PL_markstack_ptr[-1]; |
a0d0e21e | 2419 | (void)POPMARK; /* pop dst */ |
3280af22 | 2420 | SP = PL_stack_base + POPMARK; /* pop original mark */ |
54310121 | 2421 | if (gimme == G_SCALAR) { |
7cc47870 | 2422 | if (PL_op->op_private & OPpGREP_LEX) { |
c4420975 | 2423 | SV* const sv = sv_newmortal(); |
7cc47870 RGS |
2424 | sv_setiv(sv, items); |
2425 | PUSHs(sv); | |
2426 | } | |
2427 | else { | |
2428 | dTARGET; | |
2429 | XPUSHi(items); | |
2430 | } | |
a0d0e21e | 2431 | } |
54310121 PP |
2432 | else if (gimme == G_ARRAY) |
2433 | SP += items; | |
a0d0e21e LW |
2434 | RETURN; |
2435 | } | |
2436 | else { | |
2437 | SV *src; | |
2438 | ||
d343c3ef | 2439 | ENTER_with_name("grep_item"); /* enter inner scope */ |
1d7c1841 | 2440 | SAVEVPTR(PL_curpm); |
a0d0e21e | 2441 | |
3280af22 | 2442 | src = PL_stack_base[*PL_markstack_ptr]; |
a0ed822e FC |
2443 | if (SvPADTMP(src) && !IS_PADGV(src)) { |
2444 | src = PL_stack_base[*PL_markstack_ptr] = sv_mortalcopy(src); | |
2445 | PL_tmps_floor++; | |
2446 | } | |
a0d0e21e | 2447 | SvTEMP_off(src); |
59f00321 RGS |
2448 | if (PL_op->op_private & OPpGREP_LEX) |
2449 | PAD_SVl(PL_op->op_targ) = src; | |
2450 | else | |
414bf5ae | 2451 | DEFSV_set(src); |
a0d0e21e LW |
2452 | |
2453 | RETURNOP(cLOGOP->op_other); | |
2454 | } | |
2455 | } | |
2456 | ||
2457 | PP(pp_leavesub) | |
2458 | { | |
27da23d5 | 2459 | dVAR; dSP; |
a0d0e21e LW |
2460 | SV **mark; |
2461 | SV **newsp; | |
2462 | PMOP *newpm; | |
2463 | I32 gimme; | |
eb578fdb | 2464 | PERL_CONTEXT *cx; |
b0d9ce38 | 2465 | SV *sv; |
a0d0e21e | 2466 | |
9850bf21 RH |
2467 | if (CxMULTICALL(&cxstack[cxstack_ix])) |
2468 | return 0; | |
2469 | ||
a0d0e21e | 2470 | POPBLOCK(cx,newpm); |
5dd42e15 | 2471 | cxstack_ix++; /* temporarily protect top context */ |
1c846c1f | 2472 | |
a1f49e72 | 2473 | TAINT_NOT; |
a0d0e21e LW |
2474 | if (gimme == G_SCALAR) { |
2475 | MARK = newsp + 1; | |
a29cdaf0 | 2476 | if (MARK <= SP) { |
a8bba7fa | 2477 | if (cx->blk_sub.cv && CvDEPTH(cx->blk_sub.cv) > 1) { |
6f48390a FC |
2478 | if (SvTEMP(TOPs) && SvREFCNT(TOPs) == 1 |
2479 | && !SvMAGICAL(TOPs)) { | |
a29cdaf0 IZ |
2480 | *MARK = SvREFCNT_inc(TOPs); |
2481 | FREETMPS; | |
2482 | sv_2mortal(*MARK); | |
cd06dffe GS |
2483 | } |
2484 | else { | |
959e3673 | 2485 | sv = SvREFCNT_inc(TOPs); /* FREETMPS could clobber it */ |
a29cdaf0 | 2486 | FREETMPS; |
959e3673 | 2487 | *MARK = sv_mortalcopy(sv); |
fc2b2dca | 2488 | SvREFCNT_dec_NN(sv); |
a29cdaf0 | 2489 | } |
cd06dffe | 2490 | } |
6f48390a FC |
2491 | else if (SvTEMP(TOPs) && SvREFCNT(TOPs) == 1 |
2492 | && !SvMAGICAL(TOPs)) { | |
767eda44 | 2493 | *MARK = TOPs; |
767eda44 | 2494 | } |
cd06dffe | 2495 | else |
767eda44 | 2496 | *MARK = sv_mortalcopy(TOPs); |
cd06dffe GS |
2497 | } |
2498 | else { | |
f86702cc | 2499 | MEXTEND(MARK, 0); |
3280af22 | 2500 | *MARK = &PL_sv_undef; |
a0d0e21e LW |
2501 | } |
2502 | SP = MARK; | |
2503 | } | |
54310121 | 2504 | else if (gimme == G_ARRAY) { |
f86702cc | 2505 | for (MARK = newsp + 1; MARK <= SP; MARK++) { |
6f48390a FC |
2506 | if (!SvTEMP(*MARK) || SvREFCNT(*MARK) != 1 |
2507 | || SvMAGICAL(*MARK)) { | |
f86702cc | 2508 | *MARK = sv_mortalcopy(*MARK); |
a1f49e72 CS |
2509 | TAINT_NOT; /* Each item is independent */ |
2510 | } | |
f86702cc | 2511 | } |
a0d0e21e | 2512 | } |
f86702cc | 2513 | PUTBACK; |
1c846c1f | 2514 | |
a57c6685 | 2515 | LEAVE; |
5dd42e15 | 2516 | cxstack_ix--; |
b0d9ce38 | 2517 | POPSUB(cx,sv); /* Stack values are safe: release CV and @_ ... */ |
3280af22 | 2518 | PL_curpm = newpm; /* ... and pop $1 et al */ |
a0d0e21e | 2519 | |
b0d9ce38 | 2520 | LEAVESUB(sv); |
f39bc417 | 2521 | return cx->blk_sub.retop; |
a0d0e21e LW |
2522 | } |
2523 | ||
2524 | PP(pp_entersub) | |
2525 | { | |
27da23d5 | 2526 | dVAR; dSP; dPOPss; |
a0d0e21e | 2527 | GV *gv; |
eb578fdb KW |
2528 | CV *cv; |
2529 | PERL_CONTEXT *cx; | |
5d94fbed | 2530 | I32 gimme; |
a9c4fd4e | 2531 | const bool hasargs = (PL_op->op_flags & OPf_STACKED) != 0; |
a0d0e21e LW |
2532 | |
2533 | if (!sv) | |
cea2e8a9 | 2534 | DIE(aTHX_ "Not a CODE reference"); |
a0d0e21e | 2535 | switch (SvTYPE(sv)) { |
f1025168 NC |
2536 | /* This is overwhelming the most common case: */ |
2537 | case SVt_PVGV: | |
13be902c | 2538 | we_have_a_glob: |
159b6efe | 2539 | if (!(cv = GvCVu((const GV *)sv))) { |
f730a42d | 2540 | HV *stash; |
f2c0649b | 2541 | cv = sv_2cv(sv, &stash, &gv, 0); |
f730a42d | 2542 | } |
f1025168 | 2543 | if (!cv) { |
a57c6685 | 2544 | ENTER; |
f1025168 NC |
2545 | SAVETMPS; |
2546 | goto try_autoload; | |
2547 | } | |
2548 | break; | |
13be902c FC |
2549 | case SVt_PVLV: |
2550 | if(isGV_with_GP(sv)) goto we_have_a_glob; | |
2551 | /*FALLTHROUGH*/ | |
a0d0e21e | 2552 | default: |
7c75014e DM |
2553 | if (sv == &PL_sv_yes) { /* unfound import, ignore */ |
2554 | if (hasargs) | |
2555 | SP = PL_stack_base + POPMARK; | |
4d198de3 DM |
2556 | else |
2557 | (void)POPMARK; | |
7c75014e DM |
2558 | RETURN; |
2559 | } | |
2560 | SvGETMAGIC(sv); | |
2561 | if (SvROK(sv)) { | |
93d7320b DM |
2562 | if (SvAMAGIC(sv)) { |
2563 | sv = amagic_deref_call(sv, to_cv_amg); | |
2564 | /* Don't SPAGAIN here. */ | |
2565 | } | |
7c75014e DM |
2566 | } |
2567 | else { | |
a9c4fd4e | 2568 | const char *sym; |
780a5241 | 2569 | STRLEN len; |
79a3e5ea | 2570 | if (!SvOK(sv)) |
cea2e8a9 | 2571 | DIE(aTHX_ PL_no_usym, "a subroutine"); |
79a3e5ea | 2572 | sym = SvPV_nomg_const(sv, len); |
533c011a | 2573 | if (PL_op->op_private & HINT_STRICT_REFS) |
b375e37b | 2574 | DIE(aTHX_ "Can't use string (\"%" SVf32 "\"%s) as a subroutine ref while \"strict refs\" in use", sv, len>32 ? "..." : ""); |
780a5241 | 2575 | cv = get_cvn_flags(sym, len, GV_ADD|SvUTF8(sv)); |
a0d0e21e LW |
2576 | break; |
2577 | } | |
ea726b52 | 2578 | cv = MUTABLE_CV(SvRV(sv)); |
a0d0e21e LW |
2579 | if (SvTYPE(cv) == SVt_PVCV) |
2580 | break; | |
2581 | /* FALL THROUGH */ | |
2582 | case SVt_PVHV: | |
2583 | case SVt_PVAV: | |
cea2e8a9 | 2584 | DIE(aTHX_ "Not a CODE reference"); |
f1025168 | 2585 | /* This is the second most common case: */ |
a0d0e21e | 2586 | case SVt_PVCV: |
ea726b52 | 2587 | cv = MUTABLE_CV(sv); |
a0d0e21e | 2588 | break; |
a0d0e21e LW |
2589 | } |
2590 | ||
a57c6685 | 2591 | ENTER; |
a0d0e21e LW |
2592 | |
2593 | retry: | |
541ed3a9 FC |
2594 | if (CvCLONE(cv) && ! CvCLONED(cv)) |
2595 | DIE(aTHX_ "Closure prototype called"); | |
a0d0e21e | 2596 | if (!CvROOT(cv) && !CvXSUB(cv)) { |
2f349aa0 NC |
2597 | GV* autogv; |
2598 | SV* sub_name; | |
2599 | ||
2600 | /* anonymous or undef'd function leaves us no recourse */ | |
7d2057d8 FC |
2601 | if (CvANON(cv) || !(gv = CvGV(cv))) { |
2602 | if (CvNAMED(cv)) | |
2603 | DIE(aTHX_ "Undefined subroutine &%"HEKf" called", | |
2604 | HEKfARG(CvNAME_HEK(cv))); | |
2f349aa0 | 2605 | DIE(aTHX_ "Undefined subroutine called"); |
7d2057d8 | 2606 | } |
2f349aa0 NC |
2607 | |
2608 | /* autoloaded stub? */ | |
2609 | if (cv != GvCV(gv)) { | |
2610 | cv = GvCV(gv); | |
2611 | } | |
2612 | /* should call AUTOLOAD now? */ | |
2613 | else { | |
7e623da3 | 2614 | try_autoload: |
d1089224 BF |
2615 | if ((autogv = gv_autoload_pvn(GvSTASH(gv), GvNAME(gv), GvNAMELEN(gv), |
2616 | GvNAMEUTF8(gv) ? SVf_UTF8 : 0))) | |
2f349aa0 NC |
2617 | { |
2618 | cv = GvCV(autogv); | |
2619 | } | |
2f349aa0 | 2620 | else { |
c220e1a1 | 2621 | sorry: |
2f349aa0 | 2622 | sub_name = sv_newmortal(); |
6136c704 | 2623 | gv_efullname3(sub_name, gv, NULL); |
be2597df | 2624 | DIE(aTHX_ "Undefined subroutine &%"SVf" called", SVfARG(sub_name)); |
2f349aa0 NC |
2625 | } |
2626 | } | |
2627 | if (!cv) | |
c220e1a1 | 2628 | goto sorry; |
2f349aa0 | 2629 | goto retry; |
a0d0e21e LW |
2630 | } |
2631 | ||
54310121 | 2632 | gimme = GIMME_V; |
67caa1fe | 2633 | if ((PL_op->op_private & OPpENTERSUB_DB) && GvCV(PL_DBsub) && !CvNODEBUG(cv)) { |
005a8a35 | 2634 | Perl_get_db_sub(aTHX_ &sv, cv); |
a9ef256d NC |
2635 | if (CvISXSUB(cv)) |
2636 | PL_curcopdb = PL_curcop; | |
1ad62f64 | 2637 | if (CvLVALUE(cv)) { |
2638 | /* check for lsub that handles lvalue subroutines */ | |
ae5c1e95 | 2639 | cv = GvCV(gv_HVadd(gv_fetchpvs("DB::lsub", GV_ADDMULTI, SVt_PVHV))); |
1ad62f64 | 2640 | /* if lsub not found then fall back to DB::sub */ |
2641 | if (!cv) cv = GvCV(PL_DBsub); | |
2642 | } else { | |
2643 | cv = GvCV(PL_DBsub); | |
2644 | } | |
a9ef256d | 2645 | |
ccafdc96 RGS |
2646 | if (!cv || (!CvXSUB(cv) && !CvSTART(cv))) |
2647 | DIE(aTHX_ "No DB::sub routine defined"); | |
67caa1fe | 2648 | } |
a0d0e21e | 2649 | |
aed2304a | 2650 | if (!(CvISXSUB(cv))) { |
f1025168 | 2651 | /* This path taken at least 75% of the time */ |
a0d0e21e | 2652 | dMARK; |
eb578fdb | 2653 | I32 items = SP - MARK; |
b70d5558 | 2654 | PADLIST * const padlist = CvPADLIST(cv); |
a0d0e21e LW |
2655 | PUSHBLOCK(cx, CXt_SUB, MARK); |
2656 | PUSHSUB(cx); | |
f39bc417 | 2657 | cx->blk_sub.retop = PL_op->op_next; |
a0d0e21e | 2658 | CvDEPTH(cv)++; |
3a76ca88 RGS |
2659 | if (CvDEPTH(cv) >= 2) { |
2660 | PERL_STACK_OVERFLOW_CHECK(); | |
2661 | pad_push(padlist, CvDEPTH(cv)); | |
a0d0e21e | 2662 | } |
3a76ca88 RGS |
2663 | SAVECOMPPAD(); |
2664 | PAD_SET_CUR_NOSAVE(padlist, CvDEPTH(cv)); | |
2665 | if (hasargs) { | |
10533ace | 2666 | AV *const av = MUTABLE_AV(PAD_SVl(0)); |
221373f0 GS |
2667 | if (AvREAL(av)) { |
2668 | /* @_ is normally not REAL--this should only ever | |
2669 | * happen when DB::sub() calls things that modify @_ */ | |
2670 | av_clear(av); | |
2671 | AvREAL_off(av); | |
2672 | AvREIFY_on(av); | |
2673 | } | |
3280af22 | 2674 | cx->blk_sub.savearray = GvAV(PL_defgv); |
502c6561 | 2675 | GvAV(PL_defgv) = MUTABLE_AV(SvREFCNT_inc_simple(av)); |
dd2155a4 | 2676 | CX_CURPAD_SAVE(cx->blk_sub); |
6d4ff0d2 | 2677 | cx->blk_sub.argarray = av; |
a0d0e21e LW |
2678 | ++MARK; |
2679 | ||
77d27ef6 SF |
2680 | if (items - 1 > AvMAX(av)) { |
2681 | SV **ary = AvALLOC(av); | |
2682 | AvMAX(av) = items - 1; | |
2683 | Renew(ary, items, SV*); | |
2684 | AvALLOC(av) = ary; | |
2685 | AvARRAY(av) = ary; | |
2686 | } | |
2687 | ||
a0d0e21e | 2688 | Copy(MARK,AvARRAY(av),items,SV*); |
93965878 | 2689 | AvFILLp(av) = items - 1; |
1c846c1f | 2690 | |
b479c9f2 | 2691 | MARK = AvARRAY(av); |
a0d0e21e LW |
2692 | while (items--) { |
2693 | if (*MARK) | |
b479c9f2 FC |
2694 | { |
2695 | if (SvPADTMP(*MARK) && !IS_PADGV(*MARK)) | |
2696 | *MARK = sv_mortalcopy(*MARK); | |
a0d0e21e | 2697 | SvTEMP_off(*MARK); |
b479c9f2 | 2698 | } |
a0d0e21e LW |
2699 | MARK++; |
2700 | } | |
2701 | } | |
b479c9f2 | 2702 | SAVETMPS; |
da1dff94 FC |
2703 | if ((cx->blk_u16 & OPpENTERSUB_LVAL_MASK) == OPpLVAL_INTRO && |
2704 | !CvLVALUE(cv)) | |
2705 | DIE(aTHX_ "Can't modify non-lvalue subroutine call"); | |
4a925ff6 GS |
2706 | /* warning must come *after* we fully set up the context |
2707 | * stuff so that __WARN__ handlers can safely dounwind() | |
2708 | * if they want to | |
2709 | */ | |
2b9dff67 | 2710 | if (CvDEPTH(cv) == PERL_SUB_DEPTH_WARN && ckWARN(WARN_RECURSION) |
4a925ff6 GS |
2711 | && !(PERLDB_SUB && cv == GvCV(PL_DBsub))) |
2712 | sub_crush_depth(cv); | |
a0d0e21e LW |
2713 | RETURNOP(CvSTART(cv)); |
2714 | } | |
f1025168 | 2715 | else { |
3a76ca88 | 2716 | I32 markix = TOPMARK; |
f1025168 | 2717 | |
b479c9f2 | 2718 | SAVETMPS; |
3a76ca88 | 2719 | PUTBACK; |
f1025168 | 2720 | |
4587c532 FC |
2721 | if (((PL_op->op_private |
2722 | & PUSHSUB_GET_LVALUE_MASK(Perl_is_lvalue_sub) | |
2723 | ) & OPpENTERSUB_LVAL_MASK) == OPpLVAL_INTRO && | |
2724 | !CvLVALUE(cv)) | |
2725 | DIE(aTHX_ "Can't modify non-lvalue subroutine call"); | |
2726 | ||
3a76ca88 RGS |
2727 | if (!hasargs) { |
2728 | /* Need to copy @_ to stack. Alternative may be to | |
2729 | * switch stack to @_, and copy return values | |
2730 | * back. This would allow popping @_ in XSUB, e.g.. XXXX */ | |
2731 | AV * const av = GvAV(PL_defgv); | |
2732 | const I32 items = AvFILLp(av) + 1; /* @_ is not tieable */ | |
2733 | ||
2734 | if (items) { | |
2735 | /* Mark is at the end of the stack. */ | |
2736 | EXTEND(SP, items); | |
2737 | Copy(AvARRAY(av), SP + 1, items, SV*); | |
2738 | SP += items; | |
2739 | PUTBACK ; | |
2740 | } | |
2741 | } | |
2742 | /* We assume first XSUB in &DB::sub is the called one. */ | |
2743 | if (PL_curcopdb) { | |
2744 | SAVEVPTR(PL_curcop); | |
2745 | PL_curcop = PL_curcopdb; | |
2746 | PL_curcopdb = NULL; | |
2747 | } | |
2748 | /* Do we need to open block here? XXXX */ | |
72df79cf | 2749 | |
2750 | /* CvXSUB(cv) must not be NULL because newXS() refuses NULL xsub address */ | |
2751 | assert(CvXSUB(cv)); | |
16c91539 | 2752 | CvXSUB(cv)(aTHX_ cv); |
3a76ca88 RGS |
2753 | |
2754 | /* Enforce some sanity in scalar context. */ | |
2755 | if (gimme == G_SCALAR && ++markix != PL_stack_sp - PL_stack_base ) { | |
2756 | if (markix > PL_stack_sp - PL_stack_base) | |
2757 | *(PL_stack_base + markix) = &PL_sv_undef; | |
2758 | else | |
2759 | *(PL_stack_base + markix) = *PL_stack_sp; | |
2760 | PL_stack_sp = PL_stack_base + markix; | |
2761 | } | |
a57c6685 | 2762 | LEAVE; |
f1025168 NC |
2763 | return NORMAL; |
2764 | } | |
a0d0e21e LW |
2765 | } |
2766 | ||
44a8e56a | 2767 | void |
864dbfa3 | 2768 | Perl_sub_crush_depth(pTHX_ CV *cv) |
44a8e56a | 2769 | { |
7918f24d NC |
2770 | PERL_ARGS_ASSERT_SUB_CRUSH_DEPTH; |
2771 | ||
44a8e56a | 2772 | if (CvANON(cv)) |
9014280d | 2773 | Perl_warner(aTHX_ packWARN(WARN_RECURSION), "Deep recursion on anonymous subroutine"); |
44a8e56a | 2774 | else { |
07b2687d LM |
2775 | HEK *const hek = CvNAME_HEK(cv); |
2776 | SV *tmpstr; | |
2777 | if (hek) { | |
2778 | tmpstr = sv_2mortal(newSVhek(hek)); | |
2779 | } | |
2780 | else { | |
2781 | tmpstr = sv_newmortal(); | |
2782 | gv_efullname3(tmpstr, CvGV(cv), NULL); | |
2783 | } | |
35c1215d | 2784 | Perl_warner(aTHX_ packWARN(WARN_RECURSION), "Deep recursion on subroutine \"%"SVf"\"", |
be2597df | 2785 | SVfARG(tmpstr)); |
44a8e56a PP |
2786 | } |
2787 | } | |
2788 | ||
a0d0e21e LW |
2789 | PP(pp_aelem) |
2790 | { | |
97aff369 | 2791 | dVAR; dSP; |
a0d0e21e | 2792 | SV** svp; |
a3b680e6 | 2793 | SV* const elemsv = POPs; |
d804643f | 2794 | IV elem = SvIV(elemsv); |
502c6561 | 2795 | AV *const av = MUTABLE_AV(POPs); |
e1ec3a88 AL |
2796 | const U32 lval = PL_op->op_flags & OPf_MOD || LVRET; |
2797 | const U32 defer = (PL_op->op_private & OPpLVAL_DEFER) && (elem > av_len(av)); | |
4ad10a0b VP |
2798 | const bool localizing = PL_op->op_private & OPpLVAL_INTRO; |
2799 | bool preeminent = TRUE; | |
be6c24e0 | 2800 | SV *sv; |
a0d0e21e | 2801 | |
e35c1634 | 2802 | if (SvROK(elemsv) && !SvGAMAGIC(elemsv) && ckWARN(WARN_MISC)) |
95b63a38 JH |
2803 | Perl_warner(aTHX_ packWARN(WARN_MISC), |
2804 | "Use of reference \"%"SVf"\" as array index", | |
be2597df | 2805 | SVfARG(elemsv)); |
a0d0e21e LW |
2806 | if (SvTYPE(av) != SVt_PVAV) |
2807 | RETPUSHUNDEF; | |
4ad10a0b VP |
2808 | |
2809 | if (localizing) { | |
2810 | MAGIC *mg; | |
2811 | HV *stash; | |
2812 | ||
2813 | /* If we can determine whether the element exist, | |
2814 | * Try to preserve the existenceness of a tied array | |
2815 | * element by using EXISTS and DELETE if possible. | |
2816 | * Fallback to FETCH and STORE otherwise. */ | |
2817 | if (SvCANEXISTDELETE(av)) | |
2818 | preeminent = av_exists(av, elem); | |
2819 | } | |
2820 | ||
68dc0745 | 2821 | svp = av_fetch(av, elem, lval && !defer); |
a0d0e21e | 2822 | if (lval) { |
2b573ace | 2823 | #ifdef PERL_MALLOC_WRAP |
2b573ace | 2824 | if (SvUOK(elemsv)) { |
a9c4fd4e | 2825 | const UV uv = SvUV(elemsv); |
2b573ace JH |
2826 | elem = uv > IV_MAX ? IV_MAX : uv; |
2827 | } | |
2828 | else if (SvNOK(elemsv)) | |
2829 | elem = (IV)SvNV(elemsv); | |
a3b680e6 AL |
2830 | if (elem > 0) { |
2831 | static const char oom_array_extend[] = | |
2832 | "Out of memory during array extend"; /* Duplicated in av.c */ | |
2b573ace | 2833 | MEM_WRAP_CHECK_1(elem,SV*,oom_array_extend); |
a3b680e6 | 2834 | } |
2b573ace | 2835 | #endif |
3280af22 | 2836 | if (!svp || *svp == &PL_sv_undef) { |
68dc0745 PP |
2837 | SV* lv; |
2838 | if (!defer) | |
cea2e8a9 | 2839 | DIE(aTHX_ PL_no_aelem, elem); |
68dc0745 PP |
2840 | lv = sv_newmortal(); |
2841 | sv_upgrade(lv, SVt_PVLV); | |
2842 | LvTYPE(lv) = 'y'; | |
a0714e2c | 2843 | sv_magic(lv, NULL, PERL_MAGIC_defelem, NULL, 0); |
b37c2d43 | 2844 | LvTARG(lv) = SvREFCNT_inc_simple(av); |
68dc0745 PP |
2845 | LvTARGOFF(lv) = elem; |
2846 | LvTARGLEN(lv) = 1; | |
2847 | PUSHs(lv); | |
2848 | RETURN; | |
2849 | } | |
4ad10a0b VP |
2850 | if (localizing) { |
2851 | if (preeminent) | |
2852 | save_aelem(av, elem, svp); | |
2853 | else | |
2854 | SAVEADELETE(av, elem); | |
2855 | } | |
9026059d GG |
2856 | else if (PL_op->op_private & OPpDEREF) { |
2857 | PUSHs(vivify_ref(*svp, PL_op->op_private & OPpDEREF)); | |
2858 | RETURN; | |
2859 | } | |
a0d0e21e | 2860 | } |
3280af22 | 2861 | sv = (svp ? *svp : &PL_sv_undef); |
39cf747a | 2862 | if (!lval && SvRMAGICAL(av) && SvGMAGICAL(sv)) /* see note in pp_helem() */ |
fd69380d | 2863 | mg_get(sv); |
be6c24e0 | 2864 | PUSHs(sv); |
a0d0e21e LW |
2865 | RETURN; |
2866 | } | |
2867 | ||
9026059d | 2868 | SV* |
864dbfa3 | 2869 | Perl_vivify_ref(pTHX_ SV *sv, U32 to_what) |
02a9e968 | 2870 | { |
7918f24d NC |
2871 | PERL_ARGS_ASSERT_VIVIFY_REF; |
2872 | ||
5b295bef | 2873 | SvGETMAGIC(sv); |
02a9e968 CS |
2874 | if (!SvOK(sv)) { |
2875 | if (SvREADONLY(sv)) | |
cb077ed2 | 2876 | Perl_croak_no_modify(); |
43230e26 | 2877 | prepare_SV_for_RV(sv); |
68dc0745 | 2878 | switch (to_what) { |
5f05dabc | 2879 | case OPpDEREF_SV: |
561b68a9 | 2880 | SvRV_set(sv, newSV(0)); |
5f05dabc PP |
2881 | break; |
2882 | case OPpDEREF_AV: | |
ad64d0ec | 2883 | SvRV_set(sv, MUTABLE_SV(newAV())); |
5f05dabc PP |
2884 | break; |
2885 | case OPpDEREF_HV: | |
ad64d0ec | 2886 | SvRV_set(sv, MUTABLE_SV(newHV())); |
5f05dabc PP |
2887 | break; |
2888 | } | |
02a9e968 CS |
2889 | SvROK_on(sv); |
2890 | SvSETMAGIC(sv); | |
7e482323 | 2891 | SvGETMAGIC(sv); |
02a9e968 | 2892 | } |
9026059d GG |
2893 | if (SvGMAGICAL(sv)) { |
2894 | /* copy the sv without magic to prevent magic from being | |
2895 | executed twice */ | |
2896 | SV* msv = sv_newmortal(); | |
2897 | sv_setsv_nomg(msv, sv); | |
2898 | return msv; | |
2899 | } | |
2900 | return sv; | |
02a9e968 CS |
2901 | } |
2902 | ||
a0d0e21e LW |
2903 | PP(pp_method) |
2904 | { | |
97aff369 | 2905 | dVAR; dSP; |
890ce7af | 2906 | SV* const sv = TOPs; |
f5d5a27c CS |
2907 | |
2908 | if (SvROK(sv)) { | |
890ce7af | 2909 | SV* const rsv = SvRV(sv); |
f5d5a27c CS |
2910 | if (SvTYPE(rsv) == SVt_PVCV) { |
2911 | SETs(rsv); | |
2912 | RETURN; | |
2913 | } | |
2914 | } | |
2915 | ||
4608196e | 2916 | SETs(method_common(sv, NULL)); |
f5d5a27c CS |
2917 | RETURN; |
2918 | } | |
2919 | ||
2920 | PP(pp_method_named) | |
2921 | { | |
97aff369 | 2922 | dVAR; dSP; |
890ce7af | 2923 | SV* const sv = cSVOP_sv; |
c158a4fd | 2924 | U32 hash = SvSHARED_HASH(sv); |
f5d5a27c CS |
2925 | |
2926 | XPUSHs(method_common(sv, &hash)); | |
2927 | RETURN; | |
2928 | } | |
2929 | ||
2930 | STATIC SV * | |
2931 | S_method_common(pTHX_ SV* meth, U32* hashp) | |
2932 | { | |
97aff369 | 2933 | dVAR; |
a0d0e21e LW |
2934 | SV* ob; |
2935 | GV* gv; | |
56304f61 | 2936 | HV* stash; |
a0714e2c | 2937 | SV *packsv = NULL; |
f226e9be FC |
2938 | SV * const sv = PL_stack_base + TOPMARK == PL_stack_sp |
2939 | ? (Perl_croak(aTHX_ "Can't call method \"%"SVf"\" without a " | |
2940 | "package or object reference", SVfARG(meth)), | |
2941 | (SV *)NULL) | |
2942 | : *(PL_stack_base + TOPMARK + 1); | |
f5d5a27c | 2943 | |
7918f24d NC |
2944 | PERL_ARGS_ASSERT_METHOD_COMMON; |
2945 | ||
4f1b7578 | 2946 | if (!sv) |
7156e69a | 2947 | undefined: |
a214957f VP |
2948 | Perl_croak(aTHX_ "Can't call method \"%"SVf"\" on an undefined value", |
2949 | SVfARG(meth)); | |
4f1b7578 | 2950 | |
5b295bef | 2951 | SvGETMAGIC(sv); |
a0d0e21e | 2952 | if (SvROK(sv)) |
ad64d0ec | 2953 | ob = MUTABLE_SV(SvRV(sv)); |
7156e69a | 2954 | else if (!SvOK(sv)) goto undefined; |
a77c16f7 FC |
2955 | else if (isGV_with_GP(sv)) { |
2956 | if (!GvIO(sv)) | |
2957 | Perl_croak(aTHX_ "Can't call method \"%"SVf"\" " | |
2958 | "without a package or object reference", | |
2959 | SVfARG(meth)); | |
2960 | ob = sv; | |
2961 | if (SvTYPE(ob) == SVt_PVLV && LvTYPE(ob) == 'y') { | |
2962 | assert(!LvTARGLEN(ob)); | |
2963 | ob = LvTARG(ob); | |
2964 | assert(ob); | |
2965 | } | |
2966 | *(PL_stack_base + TOPMARK + 1) = sv_2mortal(newRV(ob)); | |
2967 | } | |
a0d0e21e | 2968 | else { |
89269094 | 2969 | /* this isn't a reference */ |
a0d0e21e | 2970 | GV* iogv; |
f937af42 | 2971 | STRLEN packlen; |
89269094 | 2972 | const char * const packname = SvPV_nomg_const(sv, packlen); |
b3ebc221 | 2973 | const bool packname_is_utf8 = !!SvUTF8(sv); |
89269094 | 2974 | const HE* const he = |
b3ebc221 NC |
2975 | (const HE *)hv_common( |
2976 | PL_stashcache, NULL, packname, packlen, | |
2977 | packname_is_utf8 ? HVhek_UTF8 : 0, 0, NULL, 0 | |
da6b625f FC |
2978 | ); |
2979 | ||
89269094 | 2980 | if (he) { |
5e6396ae | 2981 | stash = INT2PTR(HV*,SvIV(HeVAL(he))); |
103f5a36 NC |
2982 | DEBUG_o(Perl_deb(aTHX_ "PL_stashcache hit %p for '%"SVf"'\n", |
2983 | stash, sv)); | |
081fc587 | 2984 | goto fetch; |
081fc587 AB |
2985 | } |
2986 | ||
89269094 | 2987 | if (!(iogv = gv_fetchpvn_flags( |
da6b625f FC |
2988 | packname, packlen, SVf_UTF8 * packname_is_utf8, SVt_PVIO |
2989 | )) || | |
ad64d0ec | 2990 | !(ob=MUTABLE_SV(GvIO(iogv)))) |
a0d0e21e | 2991 | { |
af09ea45 | 2992 | /* this isn't the name of a filehandle either */ |
89269094 | 2993 | if (!packlen) |
834a4ddd | 2994 | { |
7156e69a FC |
2995 | Perl_croak(aTHX_ "Can't call method \"%"SVf"\" " |
2996 | "without a package or object reference", | |
2997 | SVfARG(meth)); | |
834a4ddd | 2998 | } |
af09ea45 | 2999 | /* assume it's a package name */ |
f937af42 | 3000 | stash = gv_stashpvn(packname, packlen, packname_is_utf8 ? SVf_UTF8 : 0); |
0dae17bd GS |
3001 | if (!stash) |
3002 | packsv = sv; | |
081fc587 | 3003 | else { |
d4c19fe8 | 3004 | SV* const ref = newSViv(PTR2IV(stash)); |
f937af42 | 3005 | (void)hv_store(PL_stashcache, packname, |
c60dbbc3 | 3006 | packname_is_utf8 ? -(I32)packlen : (I32)packlen, ref, 0); |
103f5a36 NC |
3007 | DEBUG_o(Perl_deb(aTHX_ "PL_stashcache caching %p for '%"SVf"'\n", |
3008 | stash, sv)); | |
7e8961ec | 3009 | } |
ac91690f | 3010 | goto fetch; |
a0d0e21e | 3011 | } |
af09ea45 | 3012 | /* it _is_ a filehandle name -- replace with a reference */ |
ad64d0ec | 3013 | *(PL_stack_base + TOPMARK + 1) = sv_2mortal(newRV(MUTABLE_SV(iogv))); |
a0d0e21e LW |
3014 | } |
3015 | ||
1f3ffe4c | 3016 | /* if we got here, ob should be an object or a glob */ |
f0d43078 | 3017 | if (!ob || !(SvOBJECT(ob) |
a77c16f7 | 3018 | || (isGV_with_GP(ob) |
159b6efe | 3019 | && (ob = MUTABLE_SV(GvIO((const GV *)ob))) |
f0d43078 GS |
3020 | && SvOBJECT(ob)))) |
3021 | { | |
b375e37b BF |
3022 | Perl_croak(aTHX_ "Can't call method \"%"SVf"\" on unblessed reference", |
3023 | SVfARG((SvSCREAM(meth) && strEQ(SvPV_nolen_const(meth),"isa")) | |
3024 | ? newSVpvs_flags("DOES", SVs_TEMP) | |
3025 | : meth)); | |
f0d43078 | 3026 | } |
a0d0e21e | 3027 | |
56304f61 | 3028 | stash = SvSTASH(ob); |
a0d0e21e | 3029 | |
ac91690f | 3030 | fetch: |
af09ea45 IK |
3031 | /* NOTE: stash may be null, hope hv_fetch_ent and |
3032 | gv_fetchmethod can cope (it seems they can) */ | |
3033 | ||
f5d5a27c CS |
3034 | /* shortcut for simple names */ |
3035 | if (hashp) { | |
b464bac0 | 3036 | const HE* const he = hv_fetch_ent(stash, meth, 0, *hashp); |
f5d5a27c | 3037 | if (he) { |
159b6efe | 3038 | gv = MUTABLE_GV(HeVAL(he)); |
f5d5a27c | 3039 | if (isGV(gv) && GvCV(gv) && |
e1a479c5 | 3040 | (!GvCVGEN(gv) || GvCVGEN(gv) |
dd69841b | 3041 | == (PL_sub_generation + HvMROMETA(stash)->cache_gen))) |
ad64d0ec | 3042 | return MUTABLE_SV(GvCV(gv)); |
f5d5a27c CS |
3043 | } |
3044 | } | |
3045 | ||
f937af42 BF |
3046 | gv = gv_fetchmethod_sv_flags(stash ? stash : MUTABLE_HV(packsv), |
3047 | meth, GV_AUTOLOAD | GV_CROAK); | |
9b9d0b15 | 3048 | |
256d1bb2 | 3049 | assert(gv); |
9b9d0b15 | 3050 | |
ad64d0ec | 3051 | return isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv); |
a0d0e21e | 3052 | } |
241d1a3b NC |
3053 | |
3054 | /* | |
3055 | * Local variables: | |
3056 | * c-indentation-style: bsd | |
3057 | * c-basic-offset: 4 | |
14d04a33 | 3058 | * indent-tabs-mode: nil |
241d1a3b NC |
3059 | * End: |
3060 | * | |
14d04a33 | 3061 | * ex: set ts=8 sts=4 sw=4 et: |
37442d52 | 3062 | */ |