This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: Move some alleged 'enhancements' to 'incompatible changes'
[perl5.git] / pp_hot.c
CommitLineData
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
40PP(pp_const)
41{
39644a26 42 dSP;
996c9baa 43 XPUSHs(cSVOP_sv);
a0d0e21e
LW
44 RETURN;
45}
46
47PP(pp_nextstate)
48{
533c011a 49 PL_curcop = (COP*)PL_op;
a0d0e21e 50 TAINT_NOT; /* Each statement is presumed innocent */
4ebe6e95 51 PL_stack_sp = PL_stack_base + CX_CUR()->blk_oldsp;
a0d0e21e 52 FREETMPS;
f410a211 53 PERL_ASYNC_CHECK();
a0d0e21e
LW
54 return NORMAL;
55}
56
57PP(pp_gvsv)
58{
39644a26 59 dSP;
924508f0 60 EXTEND(SP,1);
5d9574c1 61 if (UNLIKELY(PL_op->op_private & OPpLVAL_INTRO))
1d7c1841 62 PUSHs(save_scalar(cGVOP_gv));
a0d0e21e 63 else
c69033f2 64 PUSHs(GvSVn(cGVOP_gv));
a0d0e21e
LW
65 RETURN;
66}
67
b1c05ba5
DM
68
69/* also used for: pp_lineseq() pp_regcmaybe() pp_scalar() pp_scope() */
70
a0d0e21e
LW
71PP(pp_null)
72{
73 return NORMAL;
74}
75
3dd9d4e4
FC
76/* This is sometimes called directly by pp_coreargs, pp_grepstart and
77 amagic_call. */
a0d0e21e
LW
78PP(pp_pushmark)
79{
3280af22 80 PUSHMARK(PL_stack_sp);
a0d0e21e
LW
81 return NORMAL;
82}
83
84PP(pp_stringify)
85{
20b7effb 86 dSP; dTARGET;
4cc783ef
DD
87 SV * const sv = TOPs;
88 SETs(TARG);
89 sv_copypv(TARG, sv);
90 SvSETMAGIC(TARG);
91 /* no PUTBACK, SETs doesn't inc/dec SP */
92 return NORMAL;
a0d0e21e
LW
93}
94
95PP(pp_gv)
96{
20b7effb 97 dSP;
ad64d0ec 98 XPUSHs(MUTABLE_SV(cGVOP_gv));
a0d0e21e
LW
99 RETURN;
100}
101
b1c05ba5
DM
102
103/* also used for: pp_andassign() */
104
a0d0e21e
LW
105PP(pp_and)
106{
f410a211 107 PERL_ASYNC_CHECK();
4cc783ef
DD
108 {
109 /* SP is not used to remove a variable that is saved across the
110 sv_2bool_flags call in SvTRUE_NN, if a RISC/CISC or low/high machine
111 register or load/store vs direct mem ops macro is introduced, this
112 should be a define block between direct PL_stack_sp and dSP operations,
113 presently, using PL_stack_sp is bias towards CISC cpus */
114 SV * const sv = *PL_stack_sp;
115 if (!SvTRUE_NN(sv))
116 return NORMAL;
117 else {
118 if (PL_op->op_type == OP_AND)
119 --PL_stack_sp;
120 return cLOGOP->op_other;
121 }
a0d0e21e
LW
122 }
123}
124
125PP(pp_sassign)
126{
20b7effb 127 dSP;
3e75a3c4
RU
128 /* sassign keeps its args in the optree traditionally backwards.
129 So we pop them differently.
130 */
131 SV *left = POPs; SV *right = TOPs;
748a9306 132
354eabfa 133 if (PL_op->op_private & OPpASSIGN_BACKWARDS) { /* {or,and,dor}assign */
0bd48802
AL
134 SV * const temp = left;
135 left = right; right = temp;
a0d0e21e 136 }
d48c660d
DM
137 assert(TAINTING_get || !TAINT_get);
138 if (UNLIKELY(TAINT_get) && !SvTAINTED(right))
a0d0e21e 139 TAINT_NOT;
5d9574c1
DM
140 if (UNLIKELY(PL_op->op_private & OPpASSIGN_CV_TO_GV)) {
141 /* *foo =\&bar */
3e75a3c4 142 SV * const cv = SvRV(right);
e26df76a 143 const U32 cv_type = SvTYPE(cv);
3e75a3c4 144 const bool is_gv = isGV_with_GP(left);
6136c704 145 const bool got_coderef = cv_type == SVt_PVCV || cv_type == SVt_PVFM;
e26df76a
NC
146
147 if (!got_coderef) {
148 assert(SvROK(cv));
149 }
150
3e75a3c4
RU
151 /* Can do the optimisation if left (LVALUE) is not a typeglob,
152 right (RVALUE) is a reference to something, and we're in void
e26df76a 153 context. */
13be902c 154 if (!got_coderef && !is_gv && GIMME_V == G_VOID) {
e26df76a 155 /* Is the target symbol table currently empty? */
3e75a3c4 156 GV * const gv = gv_fetchsv_nomg(left, GV_NOINIT, SVt_PVGV);
bb112e5a 157 if (SvTYPE(gv) != SVt_PVGV && !SvOK(gv)) {
e26df76a
NC
158 /* Good. Create a new proxy constant subroutine in the target.
159 The gv becomes a(nother) reference to the constant. */
160 SV *const value = SvRV(cv);
161
ad64d0ec 162 SvUPGRADE(MUTABLE_SV(gv), SVt_IV);
1ccdb730 163 SvPCS_IMPORTED_on(gv);
e26df76a 164 SvRV_set(gv, value);
b37c2d43 165 SvREFCNT_inc_simple_void(value);
3e75a3c4 166 SETs(left);
e26df76a
NC
167 RETURN;
168 }
169 }
170
171 /* Need to fix things up. */
13be902c 172 if (!is_gv) {
e26df76a 173 /* Need to fix GV. */
3e75a3c4 174 left = MUTABLE_SV(gv_fetchsv_nomg(left,GV_ADD, SVt_PVGV));
e26df76a
NC
175 }
176
177 if (!got_coderef) {
178 /* We've been returned a constant rather than a full subroutine,
179 but they expect a subroutine reference to apply. */
53a42478 180 if (SvROK(cv)) {
d343c3ef 181 ENTER_with_name("sassign_coderef");
53a42478
NC
182 SvREFCNT_inc_void(SvRV(cv));
183 /* newCONSTSUB takes a reference count on the passed in SV
184 from us. We set the name to NULL, otherwise we get into
185 all sorts of fun as the reference to our new sub is
186 donated to the GV that we're about to assign to.
187 */
3e75a3c4 188 SvRV_set(right, MUTABLE_SV(newCONSTSUB(GvSTASH(left), NULL,
ad64d0ec 189 SvRV(cv))));
fc2b2dca 190 SvREFCNT_dec_NN(cv);
d343c3ef 191 LEAVE_with_name("sassign_coderef");
53a42478
NC
192 } else {
193 /* What can happen for the corner case *{"BONK"} = \&{"BONK"};
194 is that
195 First: ops for \&{"BONK"}; return us the constant in the
196 symbol table
197 Second: ops for *{"BONK"} cause that symbol table entry
198 (and our reference to it) to be upgraded from RV
199 to typeblob)
200 Thirdly: We get here. cv is actually PVGV now, and its
201 GvCV() is actually the subroutine we're looking for
202
203 So change the reference so that it points to the subroutine
204 of that typeglob, as that's what they were after all along.
205 */
159b6efe 206 GV *const upgraded = MUTABLE_GV(cv);
53a42478
NC
207 CV *const source = GvCV(upgraded);
208
209 assert(source);
210 assert(CvFLAGS(source) & CVf_CONST);
211
0ad694a7 212 SvREFCNT_inc_simple_void_NN(source);
fc2b2dca 213 SvREFCNT_dec_NN(upgraded);
3e75a3c4 214 SvRV_set(right, MUTABLE_SV(source));
53a42478 215 }
e26df76a 216 }
53a42478 217
e26df76a 218 }
8fe85e3f 219 if (
5d9574c1 220 UNLIKELY(SvTEMP(left)) && !SvSMAGICAL(left) && SvREFCNT(left) == 1 &&
3e75a3c4 221 (!isGV_with_GP(left) || SvFAKE(left)) && ckWARN(WARN_MISC)
8fe85e3f
FC
222 )
223 Perl_warner(aTHX_
224 packWARN(WARN_MISC), "Useless assignment to a temporary"
225 );
3e75a3c4
RU
226 SvSetMagicSV(left, right);
227 SETs(left);
a0d0e21e
LW
228 RETURN;
229}
230
231PP(pp_cond_expr)
232{
20b7effb 233 dSP;
f410a211 234 PERL_ASYNC_CHECK();
a0d0e21e 235 if (SvTRUEx(POPs))
1a67a97c 236 RETURNOP(cLOGOP->op_other);
a0d0e21e 237 else
1a67a97c 238 RETURNOP(cLOGOP->op_next);
a0d0e21e
LW
239}
240
241PP(pp_unstack)
242{
f5319de9 243 PERL_CONTEXT *cx;
8f3964af 244 PERL_ASYNC_CHECK();
a0d0e21e 245 TAINT_NOT; /* Each statement is presumed innocent */
4ebe6e95 246 cx = CX_CUR();
f5319de9 247 PL_stack_sp = PL_stack_base + cx->blk_oldsp;
a0d0e21e 248 FREETMPS;
eae48c89 249 if (!(PL_op->op_flags & OPf_SPECIAL)) {
93661e56 250 assert(CxTYPE(cx) == CXt_BLOCK || CxTYPE_is_LOOP(cx));
dfe0f39b 251 CX_LEAVE_SCOPE(cx);
eae48c89 252 }
a0d0e21e
LW
253 return NORMAL;
254}
255
a0d0e21e
LW
256PP(pp_concat)
257{
20b7effb 258 dSP; dATARGET; tryAMAGICbin_MG(concat_amg, AMGf_assign);
748a9306
LW
259 {
260 dPOPTOPssrl;
8d6d96c1
HS
261 bool lbyte;
262 STRLEN rlen;
d4c19fe8 263 const char *rpv = NULL;
a6b599c7 264 bool rbyte = FALSE;
a9c4fd4e 265 bool rcopied = FALSE;
8d6d96c1 266
6f1401dc
DM
267 if (TARG == right && right != left) { /* $r = $l.$r */
268 rpv = SvPV_nomg_const(right, rlen);
c75ab21a 269 rbyte = !DO_UTF8(right);
59cd0e26 270 right = newSVpvn_flags(rpv, rlen, SVs_TEMP);
349d4f2f 271 rpv = SvPV_const(right, rlen); /* no point setting UTF-8 here */
db79b45b 272 rcopied = TRUE;
8d6d96c1 273 }
7889fe52 274
89734059 275 if (TARG != left) { /* not $l .= $r */
a9c4fd4e 276 STRLEN llen;
6f1401dc 277 const char* const lpv = SvPV_nomg_const(left, llen);
90f5826e 278 lbyte = !DO_UTF8(left);
8d6d96c1
HS
279 sv_setpvn(TARG, lpv, llen);
280 if (!lbyte)
281 SvUTF8_on(TARG);
282 else
283 SvUTF8_off(TARG);
284 }
18ea7bf2
S
285 else { /* $l .= $r and left == TARG */
286 if (!SvOK(left)) {
51f69a24
AC
287 if ((left == right /* $l .= $l */
288 || (PL_op->op_private & OPpTARGET_MY)) /* $l = $l . $r */
289 && ckWARN(WARN_UNINITIALIZED)
290 )
291 report_uninit(left);
adf14ec6 292 SvPVCLEAR(left);
c75ab21a 293 }
18ea7bf2
S
294 else {
295 SvPV_force_nomg_nolen(left);
296 }
583a5589 297 lbyte = !DO_UTF8(left);
90f5826e 298 if (IN_BYTES)
18ea7bf2 299 SvUTF8_off(left);
8d6d96c1 300 }
a12c0f56 301
c75ab21a 302 if (!rcopied) {
6f1401dc 303 rpv = SvPV_nomg_const(right, rlen);
c75ab21a
RH
304 rbyte = !DO_UTF8(right);
305 }
8d6d96c1
HS
306 if (lbyte != rbyte) {
307 if (lbyte)
308 sv_utf8_upgrade_nomg(TARG);
309 else {
db79b45b 310 if (!rcopied)
59cd0e26 311 right = newSVpvn_flags(rpv, rlen, SVs_TEMP);
8d6d96c1 312 sv_utf8_upgrade_nomg(right);
6f1401dc 313 rpv = SvPV_nomg_const(right, rlen);
69b47968 314 }
a0d0e21e 315 }
8d6d96c1 316 sv_catpvn_nomg(TARG, rpv, rlen);
43ebc500 317
a0d0e21e
LW
318 SETTARG;
319 RETURN;
748a9306 320 }
a0d0e21e
LW
321}
322
d5524600
DM
323/* push the elements of av onto the stack.
324 * XXX Note that padav has similar code but without the mg_get().
325 * I suspect that the mg_get is no longer needed, but while padav
326 * differs, it can't share this function */
327
f9ae8fb6 328STATIC void
d5524600
DM
329S_pushav(pTHX_ AV* const av)
330{
331 dSP;
c70927a6 332 const SSize_t maxarg = AvFILL(av) + 1;
d5524600 333 EXTEND(SP, maxarg);
5d9574c1 334 if (UNLIKELY(SvRMAGICAL(av))) {
c70927a6
FC
335 PADOFFSET i;
336 for (i=0; i < (PADOFFSET)maxarg; i++) {
d5524600
DM
337 SV ** const svp = av_fetch(av, i, FALSE);
338 /* See note in pp_helem, and bug id #27839 */
339 SP[i+1] = svp
340 ? SvGMAGICAL(*svp) ? (mg_get(*svp), *svp) : *svp
341 : &PL_sv_undef;
342 }
343 }
344 else {
c70927a6
FC
345 PADOFFSET i;
346 for (i=0; i < (PADOFFSET)maxarg; i++) {
ce0d59fd 347 SV * const sv = AvARRAY(av)[i];
5d9574c1 348 SP[i+1] = LIKELY(sv) ? sv : &PL_sv_undef;
ce0d59fd 349 }
d5524600
DM
350 }
351 SP += maxarg;
352 PUTBACK;
353}
354
355
a7fd8ef6
DM
356/* ($lex1,@lex2,...) or my ($lex1,@lex2,...) */
357
358PP(pp_padrange)
359{
20b7effb 360 dSP;
a7fd8ef6
DM
361 PADOFFSET base = PL_op->op_targ;
362 int count = (int)(PL_op->op_private) & OPpPADRANGE_COUNTMASK;
d5524600
DM
363 if (PL_op->op_flags & OPf_SPECIAL) {
364 /* fake the RHS of my ($x,$y,..) = @_ */
365 PUSHMARK(SP);
366 S_pushav(aTHX_ GvAVn(PL_defgv));
367 SPAGAIN;
368 }
369
a7fd8ef6
DM
370 /* note, this is only skipped for compile-time-known void cxt */
371 if ((PL_op->op_flags & OPf_WANT) != OPf_WANT_VOID) {
19742f39
AL
372 int i;
373
a7fd8ef6
DM
374 EXTEND(SP, count);
375 PUSHMARK(SP);
376 for (i = 0; i <count; i++)
377 *++SP = PAD_SV(base+i);
378 }
379 if (PL_op->op_private & OPpLVAL_INTRO) {
4e09461c
DM
380 SV **svp = &(PAD_SVl(base));
381 const UV payload = (UV)(
382 (base << (OPpPADRANGE_COUNTSHIFT + SAVE_TIGHT_SHIFT))
383 | (count << SAVE_TIGHT_SHIFT)
384 | SAVEt_CLEARPADRANGE);
19742f39
AL
385 int i;
386
6d59e610 387 STATIC_ASSERT_STMT(OPpPADRANGE_COUNTMASK + 1 == (1 << OPpPADRANGE_COUNTSHIFT));
d081a355
DM
388 assert((payload >> (OPpPADRANGE_COUNTSHIFT+SAVE_TIGHT_SHIFT))
389 == (Size_t)base);
a3444cc5
DM
390 {
391 dSS_ADD;
392 SS_ADD_UV(payload);
393 SS_ADD_END(1);
394 }
4e09461c 395
a7fd8ef6 396 for (i = 0; i <count; i++)
4e09461c 397 SvPADSTALE_off(*svp++); /* mark lexical as active */
a7fd8ef6
DM
398 }
399 RETURN;
400}
401
402
a0d0e21e
LW
403PP(pp_padsv)
404{
20b7effb 405 dSP;
6c28b496
DD
406 EXTEND(SP, 1);
407 {
408 OP * const op = PL_op;
409 /* access PL_curpad once */
410 SV ** const padentry = &(PAD_SVl(op->op_targ));
411 {
412 dTARG;
413 TARG = *padentry;
414 PUSHs(TARG);
415 PUTBACK; /* no pop/push after this, TOPs ok */
8ec5e241 416 }
6c28b496
DD
417 if (op->op_flags & OPf_MOD) {
418 if (op->op_private & OPpLVAL_INTRO)
419 if (!(op->op_private & OPpPAD_STATE))
420 save_clearsv(padentry);
421 if (op->op_private & OPpDEREF) {
8f90a16d
FC
422 /* TOPs is equivalent to TARG here. Using TOPs (SP) rather
423 than TARG reduces the scope of TARG, so it does not
424 span the call to save_clearsv, resulting in smaller
425 machine code. */
6c28b496
DD
426 TOPs = vivify_ref(TOPs, op->op_private & OPpDEREF);
427 }
428 }
429 return op->op_next;
4633a7c4 430 }
a0d0e21e
LW
431}
432
433PP(pp_readline)
434{
30901a8a
FC
435 dSP;
436 if (TOPs) {
437 SvGETMAGIC(TOPs);
fc99edcf 438 tryAMAGICunTARGETlist(iter_amg, 0);
30901a8a
FC
439 PL_last_in_gv = MUTABLE_GV(*PL_stack_sp--);
440 }
441 else PL_last_in_gv = PL_argvgv, PL_stack_sp--;
6e592b3a
BM
442 if (!isGV_with_GP(PL_last_in_gv)) {
443 if (SvROK(PL_last_in_gv) && isGV_with_GP(SvRV(PL_last_in_gv)))
159b6efe 444 PL_last_in_gv = MUTABLE_GV(SvRV(PL_last_in_gv));
8efb3254 445 else {
f5284f61 446 dSP;
ad64d0ec 447 XPUSHs(MUTABLE_SV(PL_last_in_gv));
f5284f61 448 PUTBACK;
897d3989 449 Perl_pp_rv2gv(aTHX);
159b6efe 450 PL_last_in_gv = MUTABLE_GV(*PL_stack_sp--);
84ee769f
FC
451 if (PL_last_in_gv == (GV *)&PL_sv_undef)
452 PL_last_in_gv = NULL;
453 else
454 assert(isGV_with_GP(PL_last_in_gv));
f5284f61
IZ
455 }
456 }
a0d0e21e
LW
457 return do_readline();
458}
459
460PP(pp_eq)
461{
20b7effb 462 dSP;
33efebe6
DM
463 SV *left, *right;
464
a42d0242 465 tryAMAGICbin_MG(eq_amg, AMGf_set|AMGf_numeric);
33efebe6
DM
466 right = POPs;
467 left = TOPs;
468 SETs(boolSV(
469 (SvIOK_notUV(left) && SvIOK_notUV(right))
470 ? (SvIVX(left) == SvIVX(right))
471 : ( do_ncmp(left, right) == 0)
472 ));
473 RETURN;
a0d0e21e
LW
474}
475
b1c05ba5 476
4c2c3128 477/* also used for: pp_i_preinc() */
b1c05ba5 478
a0d0e21e
LW
479PP(pp_preinc)
480{
4c2c3128
DM
481 SV *sv = *PL_stack_sp;
482
483 if (LIKELY(((sv->sv_flags &
484 (SVf_THINKFIRST|SVs_GMG|SVf_IVisUV|
485 SVf_IOK|SVf_NOK|SVf_POK|SVp_NOK|SVp_POK|SVf_ROK))
486 == SVf_IOK))
487 && SvIVX(sv) != IV_MAX)
488 {
489 SvIV_set(sv, SvIVX(sv) + 1);
490 }
491 else /* Do all the PERL_PRESERVE_IVUV and hard cases in sv_inc */
492 sv_inc(sv);
493 SvSETMAGIC(sv);
494 return NORMAL;
495}
496
497
498/* also used for: pp_i_predec() */
499
500PP(pp_predec)
501{
502 SV *sv = *PL_stack_sp;
503
504 if (LIKELY(((sv->sv_flags &
505 (SVf_THINKFIRST|SVs_GMG|SVf_IVisUV|
506 SVf_IOK|SVf_NOK|SVf_POK|SVp_NOK|SVp_POK|SVf_ROK))
507 == SVf_IOK))
508 && SvIVX(sv) != IV_MIN)
55497cff 509 {
4c2c3128 510 SvIV_set(sv, SvIVX(sv) - 1);
748a9306 511 }
4c2c3128
DM
512 else /* Do all the PERL_PRESERVE_IVUV and hard cases in sv_dec */
513 sv_dec(sv);
514 SvSETMAGIC(sv);
a0d0e21e
LW
515 return NORMAL;
516}
517
b1c05ba5
DM
518
519/* also used for: pp_orassign() */
520
a0d0e21e
LW
521PP(pp_or)
522{
20b7effb 523 dSP;
f410a211 524 PERL_ASYNC_CHECK();
a0d0e21e
LW
525 if (SvTRUE(TOPs))
526 RETURN;
527 else {
c960fc3b
SP
528 if (PL_op->op_type == OP_OR)
529 --SP;
a0d0e21e
LW
530 RETURNOP(cLOGOP->op_other);
531 }
532}
533
b1c05ba5
DM
534
535/* also used for: pp_dor() pp_dorassign() */
536
25a55bd7 537PP(pp_defined)
c963b151 538{
20b7effb 539 dSP;
eb578fdb 540 SV* sv;
6136c704 541 bool defined;
25a55bd7 542 const int op_type = PL_op->op_type;
ea5195b7 543 const bool is_dor = (op_type == OP_DOR || op_type == OP_DORASSIGN);
c963b151 544
6136c704 545 if (is_dor) {
f410a211 546 PERL_ASYNC_CHECK();
25a55bd7 547 sv = TOPs;
5d9574c1 548 if (UNLIKELY(!sv || !SvANY(sv))) {
2bd49cfc
NC
549 if (op_type == OP_DOR)
550 --SP;
25a55bd7
SP
551 RETURNOP(cLOGOP->op_other);
552 }
b7c44293
RGS
553 }
554 else {
555 /* OP_DEFINED */
25a55bd7 556 sv = POPs;
5d9574c1 557 if (UNLIKELY(!sv || !SvANY(sv)))
25a55bd7 558 RETPUSHNO;
b7c44293 559 }
25a55bd7 560
6136c704 561 defined = FALSE;
c963b151
BD
562 switch (SvTYPE(sv)) {
563 case SVt_PVAV:
564 if (AvMAX(sv) >= 0 || SvGMAGICAL(sv) || (SvRMAGICAL(sv) && mg_find(sv, PERL_MAGIC_tied)))
25a55bd7 565 defined = TRUE;
c963b151
BD
566 break;
567 case SVt_PVHV:
568 if (HvARRAY(sv) || SvGMAGICAL(sv) || (SvRMAGICAL(sv) && mg_find(sv, PERL_MAGIC_tied)))
25a55bd7 569 defined = TRUE;
c963b151
BD
570 break;
571 case SVt_PVCV:
572 if (CvROOT(sv) || CvXSUB(sv))
25a55bd7 573 defined = TRUE;
c963b151
BD
574 break;
575 default:
5b295bef 576 SvGETMAGIC(sv);
c963b151 577 if (SvOK(sv))
25a55bd7 578 defined = TRUE;
6136c704 579 break;
c963b151 580 }
6136c704
AL
581
582 if (is_dor) {
c960fc3b
SP
583 if(defined)
584 RETURN;
585 if(op_type == OP_DOR)
586 --SP;
25a55bd7 587 RETURNOP(cLOGOP->op_other);
25a55bd7 588 }
d9aa96a4
SP
589 /* assuming OP_DEFINED */
590 if(defined)
591 RETPUSHYES;
592 RETPUSHNO;
c963b151
BD
593}
594
230ee21f
DM
595
596
a0d0e21e
LW
597PP(pp_add)
598{
20b7effb 599 dSP; dATARGET; bool useleft; SV *svl, *svr;
230ee21f 600
6f1401dc
DM
601 tryAMAGICbin_MG(add_amg, AMGf_assign|AMGf_numeric);
602 svr = TOPs;
603 svl = TOPm1s;
604
28e5dec8 605#ifdef PERL_PRESERVE_IVUV
230ee21f
DM
606
607 /* special-case some simple common cases */
608 if (!((svl->sv_flags|svr->sv_flags) & (SVf_IVisUV|SVs_GMG))) {
609 IV il, ir;
610 U32 flags = (svl->sv_flags & svr->sv_flags);
611 if (flags & SVf_IOK) {
612 /* both args are simple IVs */
613 UV topl, topr;
614 il = SvIVX(svl);
615 ir = SvIVX(svr);
616 do_iv:
617 topl = ((UV)il) >> (UVSIZE * 8 - 2);
618 topr = ((UV)ir) >> (UVSIZE * 8 - 2);
619
620 /* if both are in a range that can't under/overflow, do a
621 * simple integer add: if the top of both numbers
622 * are 00 or 11, then it's safe */
623 if (!( ((topl+1) | (topr+1)) & 2)) {
624 SP--;
625 TARGi(il + ir, 0); /* args not GMG, so can't be tainted */
626 SETs(TARG);
627 RETURN;
628 }
629 goto generic;
630 }
631 else if (flags & SVf_NOK) {
632 /* both args are NVs */
633 NV nl = SvNVX(svl);
634 NV nr = SvNVX(svr);
635
3336af0b
DD
636 if (
637#if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
638 !Perl_isnan(nl) && nl == (NV)(il = (IV)nl)
639 && !Perl_isnan(nr) && nr == (NV)(ir = (IV)nr)
640#else
641 nl == (NV)(il = (IV)nl) && nr == (NV)(ir = (IV)nr)
642#endif
643 )
230ee21f
DM
644 /* nothing was lost by converting to IVs */
645 goto do_iv;
646 SP--;
647 TARGn(nl + nr, 0); /* args not GMG, so can't be tainted */
648 SETs(TARG);
649 RETURN;
650 }
651 }
652
653 generic:
654
655 useleft = USE_LEFT(svl);
28e5dec8
JH
656 /* We must see if we can perform the addition with integers if possible,
657 as the integer code detects overflow while the NV code doesn't.
658 If either argument hasn't had a numeric conversion yet attempt to get
659 the IV. It's important to do this now, rather than just assuming that
660 it's not IOK as a PV of "9223372036854775806" may not take well to NV
661 addition, and an SV which is NOK, NV=6.0 ought to be coerced to
662 integer in case the second argument is IV=9223372036854775806
663 We can (now) rely on sv_2iv to do the right thing, only setting the
664 public IOK flag if the value in the NV (or PV) slot is truly integer.
665
666 A side effect is that this also aggressively prefers integer maths over
7dca457a
NC
667 fp maths for integer values.
668
a00b5bd3 669 How to detect overflow?
7dca457a
NC
670
671 C 99 section 6.2.6.1 says
672
673 The range of nonnegative values of a signed integer type is a subrange
674 of the corresponding unsigned integer type, and the representation of
675 the same value in each type is the same. A computation involving
676 unsigned operands can never overflow, because a result that cannot be
677 represented by the resulting unsigned integer type is reduced modulo
678 the number that is one greater than the largest value that can be
679 represented by the resulting type.
680
681 (the 9th paragraph)
682
683 which I read as "unsigned ints wrap."
684
685 signed integer overflow seems to be classed as "exception condition"
686
687 If an exceptional condition occurs during the evaluation of an
688 expression (that is, if the result is not mathematically defined or not
689 in the range of representable values for its type), the behavior is
690 undefined.
691
692 (6.5, the 5th paragraph)
693
694 I had assumed that on 2s complement machines signed arithmetic would
695 wrap, hence coded pp_add and pp_subtract on the assumption that
696 everything perl builds on would be happy. After much wailing and
697 gnashing of teeth it would seem that irix64 knows its ANSI spec well,
698 knows that it doesn't need to, and doesn't. Bah. Anyway, the all-
699 unsigned code below is actually shorter than the old code. :-)
700 */
701
01f91bf2 702 if (SvIV_please_nomg(svr)) {
28e5dec8
JH
703 /* Unless the left argument is integer in range we are going to have to
704 use NV maths. Hence only attempt to coerce the right argument if
705 we know the left is integer. */
eb578fdb 706 UV auv = 0;
9c5ffd7c 707 bool auvok = FALSE;
7dca457a
NC
708 bool a_valid = 0;
709
28e5dec8 710 if (!useleft) {
7dca457a
NC
711 auv = 0;
712 a_valid = auvok = 1;
713 /* left operand is undef, treat as zero. + 0 is identity,
714 Could SETi or SETu right now, but space optimise by not adding
715 lots of code to speed up what is probably a rarish case. */
716 } else {
717 /* Left operand is defined, so is it IV? */
01f91bf2 718 if (SvIV_please_nomg(svl)) {
800401ee
JH
719 if ((auvok = SvUOK(svl)))
720 auv = SvUVX(svl);
7dca457a 721 else {
eb578fdb 722 const IV aiv = SvIVX(svl);
7dca457a
NC
723 if (aiv >= 0) {
724 auv = aiv;
725 auvok = 1; /* Now acting as a sign flag. */
53e2bfb7
DM
726 } else {
727 auv = (aiv == IV_MIN) ? (UV)aiv : (UV)(-aiv);
7dca457a
NC
728 }
729 }
730 a_valid = 1;
28e5dec8
JH
731 }
732 }
7dca457a
NC
733 if (a_valid) {
734 bool result_good = 0;
735 UV result;
eb578fdb 736 UV buv;
800401ee 737 bool buvok = SvUOK(svr);
a00b5bd3 738
7dca457a 739 if (buvok)
800401ee 740 buv = SvUVX(svr);
7dca457a 741 else {
eb578fdb 742 const IV biv = SvIVX(svr);
7dca457a
NC
743 if (biv >= 0) {
744 buv = biv;
745 buvok = 1;
746 } else
53e2bfb7 747 buv = (biv == IV_MIN) ? (UV)biv : (UV)(-biv);
7dca457a
NC
748 }
749 /* ?uvok if value is >= 0. basically, flagged as UV if it's +ve,
602f51c4 750 else "IV" now, independent of how it came in.
7dca457a
NC
751 if a, b represents positive, A, B negative, a maps to -A etc
752 a + b => (a + b)
753 A + b => -(a - b)
754 a + B => (a - b)
755 A + B => -(a + b)
756 all UV maths. negate result if A negative.
757 add if signs same, subtract if signs differ. */
758
759 if (auvok ^ buvok) {
760 /* Signs differ. */
761 if (auv >= buv) {
762 result = auv - buv;
763 /* Must get smaller */
764 if (result <= auv)
765 result_good = 1;
766 } else {
767 result = buv - auv;
768 if (result <= buv) {
769 /* result really should be -(auv-buv). as its negation
770 of true value, need to swap our result flag */
771 auvok = !auvok;
772 result_good = 1;
28e5dec8
JH
773 }
774 }
7dca457a
NC
775 } else {
776 /* Signs same */
777 result = auv + buv;
778 if (result >= auv)
779 result_good = 1;
780 }
781 if (result_good) {
782 SP--;
783 if (auvok)
28e5dec8 784 SETu( result );
7dca457a
NC
785 else {
786 /* Negate result */
787 if (result <= (UV)IV_MIN)
53e2bfb7
DM
788 SETi(result == (UV)IV_MIN
789 ? IV_MIN : -(IV)result);
7dca457a
NC
790 else {
791 /* result valid, but out of range for IV. */
792 SETn( -(NV)result );
28e5dec8
JH
793 }
794 }
7dca457a
NC
795 RETURN;
796 } /* Overflow, drop through to NVs. */
28e5dec8
JH
797 }
798 }
230ee21f
DM
799
800#else
801 useleft = USE_LEFT(svl);
28e5dec8 802#endif
230ee21f 803
a0d0e21e 804 {
6f1401dc 805 NV value = SvNV_nomg(svr);
4efa5a16 806 (void)POPs;
28e5dec8
JH
807 if (!useleft) {
808 /* left operand is undef, treat as zero. + 0.0 is identity. */
809 SETn(value);
810 RETURN;
811 }
6f1401dc 812 SETn( value + SvNV_nomg(svl) );
28e5dec8 813 RETURN;
a0d0e21e
LW
814 }
815}
816
b1c05ba5
DM
817
818/* also used for: pp_aelemfast_lex() */
819
a0d0e21e
LW
820PP(pp_aelemfast)
821{
20b7effb 822 dSP;
93bad3fd 823 AV * const av = PL_op->op_type == OP_AELEMFAST_LEX
8f878375 824 ? MUTABLE_AV(PAD_SV(PL_op->op_targ)) : GvAVn(cGVOP_gv);
a3b680e6 825 const U32 lval = PL_op->op_flags & OPf_MOD;
7e169e84
DM
826 const I8 key = (I8)PL_op->op_private;
827 SV** svp;
828 SV *sv;
829
830 assert(SvTYPE(av) == SVt_PVAV);
831
f4484b87
DM
832 EXTEND(SP, 1);
833
7e169e84
DM
834 /* inlined av_fetch() for simple cases ... */
835 if (!SvRMAGICAL(av) && key >= 0 && key <= AvFILLp(av)) {
836 sv = AvARRAY(av)[key];
9fb994be 837 if (sv) {
7e169e84
DM
838 PUSHs(sv);
839 RETURN;
840 }
841 }
842
843 /* ... else do it the hard way */
844 svp = av_fetch(av, key, lval);
845 sv = (svp ? *svp : &PL_sv_undef);
b024352e
DM
846
847 if (UNLIKELY(!svp && lval))
7e169e84 848 DIE(aTHX_ PL_no_aelem, (int)key);
b024352e 849
39cf747a 850 if (!lval && SvRMAGICAL(av) && SvGMAGICAL(sv)) /* see note in pp_helem() */
fd69380d 851 mg_get(sv);
be6c24e0 852 PUSHs(sv);
a0d0e21e
LW
853 RETURN;
854}
855
856PP(pp_join)
857{
20b7effb 858 dSP; dMARK; dTARGET;
a0d0e21e
LW
859 MARK++;
860 do_join(TARG, *MARK, MARK, SP);
861 SP = MARK;
862 SETs(TARG);
863 RETURN;
864}
865
a0d0e21e
LW
866/* Oversized hot code. */
867
b1c05ba5
DM
868/* also used for: pp_say() */
869
a0d0e21e
LW
870PP(pp_print)
871{
20b7effb 872 dSP; dMARK; dORIGMARK;
eb578fdb 873 PerlIO *fp;
236988e4 874 MAGIC *mg;
159b6efe
NC
875 GV * const gv
876 = (PL_op->op_flags & OPf_STACKED) ? MUTABLE_GV(*++MARK) : PL_defoutgv;
9c9f25b8 877 IO *io = GvIO(gv);
5b468f54 878
9c9f25b8 879 if (io
ad64d0ec 880 && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
5b468f54 881 {
01bb7c6d 882 had_magic:
68dc0745 883 if (MARK == ORIGMARK) {
1c846c1f 884 /* If using default handle then we need to make space to
a60c0954
NIS
885 * pass object as 1st arg, so move other args up ...
886 */
4352c267 887 MEXTEND(SP, 1);
68dc0745 888 ++MARK;
889 Move(MARK, MARK + 1, (SP - MARK) + 1, SV*);
890 ++SP;
891 }
3e0cb5de 892 return Perl_tied_method(aTHX_ SV_CONST(PRINT), mark - 1, MUTABLE_SV(io),
94bc412f
NC
893 mg,
894 (G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK
895 | (PL_op->op_type == OP_SAY
896 ? TIED_METHOD_SAY : 0)), sp - mark);
236988e4 897 }
9c9f25b8 898 if (!io) {
68b590d9 899 if ( gv && GvEGVx(gv) && (io = GvIO(GvEGV(gv)))
ad64d0ec 900 && (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
01bb7c6d 901 goto had_magic;
51087808 902 report_evil_fh(gv);
93189314 903 SETERRNO(EBADF,RMS_IFI);
a0d0e21e
LW
904 goto just_say_no;
905 }
906 else if (!(fp = IoOFP(io))) {
7716c5c5
NC
907 if (IoIFP(io))
908 report_wrongway_fh(gv, '<');
51087808 909 else
7716c5c5 910 report_evil_fh(gv);
93189314 911 SETERRNO(EBADF,IoIFP(io)?RMS_FAC:RMS_IFI);
a0d0e21e
LW
912 goto just_say_no;
913 }
914 else {
e23d9e2f 915 SV * const ofs = GvSV(PL_ofsgv); /* $, */
a0d0e21e 916 MARK++;
e23d9e2f 917 if (ofs && (SvGMAGICAL(ofs) || SvOK(ofs))) {
a0d0e21e
LW
918 while (MARK <= SP) {
919 if (!do_print(*MARK, fp))
920 break;
921 MARK++;
922 if (MARK <= SP) {
e23d9e2f
CS
923 /* don't use 'ofs' here - it may be invalidated by magic callbacks */
924 if (!do_print(GvSV(PL_ofsgv), fp)) {
a0d0e21e
LW
925 MARK--;
926 break;
927 }
928 }
929 }
930 }
931 else {
932 while (MARK <= SP) {
933 if (!do_print(*MARK, fp))
934 break;
935 MARK++;
936 }
937 }
938 if (MARK <= SP)
939 goto just_say_no;
940 else {
cfc4a7da
GA
941 if (PL_op->op_type == OP_SAY) {
942 if (PerlIO_write(fp, "\n", 1) == 0 || PerlIO_error(fp))
943 goto just_say_no;
944 }
945 else if (PL_ors_sv && SvOK(PL_ors_sv))
7889fe52 946 if (!do_print(PL_ors_sv, fp)) /* $\ */
a0d0e21e
LW
947 goto just_say_no;
948
949 if (IoFLAGS(io) & IOf_FLUSH)
760ac839 950 if (PerlIO_flush(fp) == EOF)
a0d0e21e
LW
951 goto just_say_no;
952 }
953 }
954 SP = ORIGMARK;
e52fd6f4 955 XPUSHs(&PL_sv_yes);
a0d0e21e
LW
956 RETURN;
957
958 just_say_no:
959 SP = ORIGMARK;
e52fd6f4 960 XPUSHs(&PL_sv_undef);
a0d0e21e
LW
961 RETURN;
962}
963
b1c05ba5
DM
964
965/* also used for: pp_rv2hv() */
bdaf10a5 966/* also called directly by pp_lvavref */
b1c05ba5 967
a0d0e21e
LW
968PP(pp_rv2av)
969{
20b7effb 970 dSP; dTOPss;
1c23e2bd 971 const U8 gimme = GIMME_V;
13c59d41
MH
972 static const char an_array[] = "an ARRAY";
973 static const char a_hash[] = "a HASH";
bdaf10a5
FC
974 const bool is_pp_rv2av = PL_op->op_type == OP_RV2AV
975 || PL_op->op_type == OP_LVAVREF;
d83b45b8 976 const svtype type = is_pp_rv2av ? SVt_PVAV : SVt_PVHV;
a0d0e21e 977
9026059d 978 SvGETMAGIC(sv);
a0d0e21e 979 if (SvROK(sv)) {
5d9574c1 980 if (UNLIKELY(SvAMAGIC(sv))) {
93d7320b 981 sv = amagic_deref_call(sv, is_pp_rv2av ? to_av_amg : to_hv_amg);
93d7320b 982 }
17ab7946 983 sv = SvRV(sv);
5d9574c1 984 if (UNLIKELY(SvTYPE(sv) != type))
dcbac5bb 985 /* diag_listed_as: Not an ARRAY reference */
13c59d41 986 DIE(aTHX_ "Not %s reference", is_pp_rv2av ? an_array : a_hash);
5d9574c1
DM
987 else if (UNLIKELY(PL_op->op_flags & OPf_MOD
988 && PL_op->op_private & OPpLVAL_INTRO))
3da99855 989 Perl_croak(aTHX_ "%s", PL_no_localize_ref);
a0d0e21e 990 }
5d9574c1 991 else if (UNLIKELY(SvTYPE(sv) != type)) {
67955e0c 992 GV *gv;
1c846c1f 993
6e592b3a 994 if (!isGV_with_GP(sv)) {
13c59d41 995 gv = Perl_softref2xv(aTHX_ sv, is_pp_rv2av ? an_array : a_hash,
dc3c76f8
NC
996 type, &sp);
997 if (!gv)
998 RETURN;
35cd451c
GS
999 }
1000 else {
159b6efe 1001 gv = MUTABLE_GV(sv);
a0d0e21e 1002 }
ad64d0ec 1003 sv = is_pp_rv2av ? MUTABLE_SV(GvAVn(gv)) : MUTABLE_SV(GvHVn(gv));
533c011a 1004 if (PL_op->op_private & OPpLVAL_INTRO)
ad64d0ec 1005 sv = is_pp_rv2av ? MUTABLE_SV(save_ary(gv)) : MUTABLE_SV(save_hash(gv));
9f527363
FC
1006 }
1007 if (PL_op->op_flags & OPf_REF) {
17ab7946 1008 SETs(sv);
a0d0e21e 1009 RETURN;
9f527363 1010 }
5d9574c1 1011 else if (UNLIKELY(PL_op->op_private & OPpMAYBE_LVSUB)) {
40c94d11
FC
1012 const I32 flags = is_lvalue_sub();
1013 if (flags && !(flags & OPpENTERSUB_INARGS)) {
cde874ca 1014 if (gimme != G_ARRAY)
042560a6 1015 goto croak_cant_return;
17ab7946 1016 SETs(sv);
78f9721b 1017 RETURN;
40c94d11 1018 }
a0d0e21e
LW
1019 }
1020
17ab7946 1021 if (is_pp_rv2av) {
502c6561 1022 AV *const av = MUTABLE_AV(sv);
636fe681 1023 /* The guts of pp_rv2av */
96913b52 1024 if (gimme == G_ARRAY) {
d5524600
DM
1025 SP--;
1026 PUTBACK;
1027 S_pushav(aTHX_ av);
1028 SPAGAIN;
1c846c1f 1029 }
96913b52
VP
1030 else if (gimme == G_SCALAR) {
1031 dTARGET;
c70927a6 1032 const SSize_t maxarg = AvFILL(av) + 1;
96913b52 1033 SETi(maxarg);
93965878 1034 }
17ab7946
NC
1035 } else {
1036 /* The guts of pp_rv2hv */
96913b52
VP
1037 if (gimme == G_ARRAY) { /* array wanted */
1038 *PL_stack_sp = sv;
981b7185 1039 return Perl_do_kv(aTHX);
96913b52 1040 }
c8fe3bdf 1041 else if ((PL_op->op_private & OPpTRUEBOOL
adc42c31 1042 || ( PL_op->op_private & OPpMAYBE_TRUEBOOL
c8fe3bdf
FC
1043 && block_gimme() == G_VOID ))
1044 && (!SvRMAGICAL(sv) || !mg_find(sv, PERL_MAGIC_tied)))
1186f821 1045 SETs(HvUSEDKEYS(MUTABLE_HV(sv)) ? &PL_sv_yes : &PL_sv_no);
96913b52 1046 else if (gimme == G_SCALAR) {
1a8bdda9 1047 dTARG;
96913b52 1048 TARG = Perl_hv_scalar(aTHX_ MUTABLE_HV(sv));
96913b52
VP
1049 SETTARG;
1050 }
17ab7946 1051 }
be85d344 1052 RETURN;
042560a6
NC
1053
1054 croak_cant_return:
1055 Perl_croak(aTHX_ "Can't return %s to lvalue scalar context",
1056 is_pp_rv2av ? "array" : "hash");
77e217c6 1057 RETURN;
a0d0e21e
LW
1058}
1059
10c8fecd 1060STATIC void
fb8f4cf8 1061S_do_oddball(pTHX_ SV **oddkey, SV **firstkey)
10c8fecd 1062{
7918f24d
NC
1063 PERL_ARGS_ASSERT_DO_ODDBALL;
1064
fb8f4cf8 1065 if (*oddkey) {
6d822dc4 1066 if (ckWARN(WARN_MISC)) {
a3b680e6 1067 const char *err;
fb8f4cf8
RZ
1068 if (oddkey == firstkey &&
1069 SvROK(*oddkey) &&
1070 (SvTYPE(SvRV(*oddkey)) == SVt_PVAV ||
1071 SvTYPE(SvRV(*oddkey)) == SVt_PVHV))
10c8fecd 1072 {
a3b680e6 1073 err = "Reference found where even-sized list expected";
10c8fecd
GS
1074 }
1075 else
a3b680e6 1076 err = "Odd number of elements in hash assignment";
f1f66076 1077 Perl_warner(aTHX_ packWARN(WARN_MISC), "%s", err);
10c8fecd 1078 }
6d822dc4 1079
10c8fecd
GS
1080 }
1081}
1082
a5f48505
DM
1083
1084/* Do a mark and sweep with the SVf_BREAK flag to detect elements which
1085 * are common to both the LHS and RHS of an aassign, and replace them
1086 * with copies. All these copies are made before the actual list assign is
1087 * done.
1088 *
1089 * For example in ($a,$b) = ($b,$a), assigning the value of the first RHS
1090 * element ($b) to the first LH element ($a), modifies $a; when the
1091 * second assignment is done, the second RH element now has the wrong
1092 * value. So we initially replace the RHS with ($b, mortalcopy($a)).
1093 * Note that we don't need to make a mortal copy of $b.
1094 *
1095 * The algorithm below works by, for every RHS element, mark the
1096 * corresponding LHS target element with SVf_BREAK. Then if the RHS
1097 * element is found with SVf_BREAK set, it means it would have been
1098 * modified, so make a copy.
1099 * Note that by scanning both LHS and RHS in lockstep, we avoid
1100 * unnecessary copies (like $b above) compared with a naive
1101 * "mark all LHS; copy all marked RHS; unmark all LHS".
1102 *
1103 * If the LHS element is a 'my' declaration' and has a refcount of 1, then
1104 * it can't be common and can be skipped.
ebc643ce
DM
1105 *
1106 * On DEBUGGING builds it takes an extra boolean, fake. If true, it means
1107 * that we thought we didn't need to call S_aassign_copy_common(), but we
1108 * have anyway for sanity checking. If we find we need to copy, then panic.
a5f48505
DM
1109 */
1110
1111PERL_STATIC_INLINE void
1112S_aassign_copy_common(pTHX_ SV **firstlelem, SV **lastlelem,
ebc643ce
DM
1113 SV **firstrelem, SV **lastrelem
1114#ifdef DEBUGGING
1115 , bool fake
1116#endif
1117)
a5f48505
DM
1118{
1119 dVAR;
1120 SV **relem;
1121 SV **lelem;
1122 SSize_t lcount = lastlelem - firstlelem + 1;
1123 bool marked = FALSE; /* have we marked any LHS with SVf_BREAK ? */
1124 bool const do_rc1 = cBOOL(PL_op->op_private & OPpASSIGN_COMMON_RC1);
beb08a1e 1125 bool copy_all = FALSE;
a5f48505
DM
1126
1127 assert(!PL_in_clean_all); /* SVf_BREAK not already in use */
1128 assert(firstlelem < lastlelem); /* at least 2 LH elements */
1129 assert(firstrelem < lastrelem); /* at least 2 RH elements */
1130
ebc643ce
DM
1131
1132 lelem = firstlelem;
a5f48505
DM
1133 /* we never have to copy the first RH element; it can't be corrupted
1134 * by assigning something to the corresponding first LH element.
1135 * So this scan does in a loop: mark LHS[N]; test RHS[N+1]
1136 */
ebc643ce 1137 relem = firstrelem + 1;
a5f48505
DM
1138
1139 for (; relem <= lastrelem; relem++) {
1140 SV *svr;
1141
1142 /* mark next LH element */
1143
1144 if (--lcount >= 0) {
1145 SV *svl = *lelem++;
1146
1147 if (UNLIKELY(!svl)) {/* skip AV alias marker */
1148 assert (lelem <= lastlelem);
1149 svl = *lelem++;
1150 lcount--;
1151 }
1152
1153 assert(svl);
beb08a1e
TC
1154 if (SvSMAGICAL(svl)) {
1155 copy_all = TRUE;
1156 }
a5f48505
DM
1157 if (SvTYPE(svl) == SVt_PVAV || SvTYPE(svl) == SVt_PVHV) {
1158 if (!marked)
1159 return;
1160 /* this LH element will consume all further args;
1161 * no need to mark any further LH elements (if any).
1162 * But we still need to scan any remaining RHS elements;
1163 * set lcount negative to distinguish from lcount == 0,
1164 * so the loop condition continues being true
1165 */
1166 lcount = -1;
1167 lelem--; /* no need to unmark this element */
1168 }
94a5f659 1169 else if (!(do_rc1 && SvREFCNT(svl) == 1) && !SvIMMORTAL(svl)) {
a5f48505
DM
1170 SvFLAGS(svl) |= SVf_BREAK;
1171 marked = TRUE;
1172 }
1173 else if (!marked) {
1174 /* don't check RH element if no SVf_BREAK flags set yet */
1175 if (!lcount)
1176 break;
1177 continue;
1178 }
1179 }
1180
1181 /* see if corresponding RH element needs copying */
1182
1183 assert(marked);
1184 svr = *relem;
1185 assert(svr);
1186
5c1db569 1187 if (UNLIKELY(SvFLAGS(svr) & (SVf_BREAK|SVs_GMG) || copy_all)) {
1050723f 1188 U32 brk = (SvFLAGS(svr) & SVf_BREAK);
a5f48505 1189
ebc643ce
DM
1190#ifdef DEBUGGING
1191 if (fake) {
9ae0115f 1192 /* op_dump(PL_op); */
ebc643ce
DM
1193 Perl_croak(aTHX_
1194 "panic: aassign skipped needed copy of common RH elem %"
1195 UVuf, (UV)(relem - firstrelem));
1196 }
1197#endif
1198
a5f48505
DM
1199 TAINT_NOT; /* Each item is independent */
1200
1201 /* Dear TODO test in t/op/sort.t, I love you.
1202 (It's relying on a panic, not a "semi-panic" from newSVsv()
1203 and then an assertion failure below.) */
1204 if (UNLIKELY(SvIS_FREED(svr))) {
1205 Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p",
1206 (void*)svr);
1207 }
1208 /* avoid break flag while copying; otherwise COW etc
1209 * disabled... */
1210 SvFLAGS(svr) &= ~SVf_BREAK;
1211 /* Not newSVsv(), as it does not allow copy-on-write,
8c1e192f
DM
1212 resulting in wasteful copies.
1213 Also, we use SV_NOSTEAL in case the SV is used more than
1214 once, e.g. (...) = (f())[0,0]
1215 Where the same SV appears twice on the RHS without a ref
1216 count bump. (Although I suspect that the SV won't be
1217 stealable here anyway - DAPM).
1218 */
a5f48505
DM
1219 *relem = sv_mortalcopy_flags(svr,
1220 SV_GMAGIC|SV_DO_COW_SVSETSV|SV_NOSTEAL);
1221 /* ... but restore afterwards in case it's needed again,
1222 * e.g. ($a,$b,$c) = (1,$a,$a)
1223 */
1050723f 1224 SvFLAGS(svr) |= brk;
a5f48505
DM
1225 }
1226
1227 if (!lcount)
1228 break;
1229 }
1230
1231 if (!marked)
1232 return;
1233
1234 /*unmark LHS */
1235
1236 while (lelem > firstlelem) {
1237 SV * const svl = *(--lelem);
1238 if (svl)
1239 SvFLAGS(svl) &= ~SVf_BREAK;
1240 }
1241}
1242
1243
1244
a0d0e21e
LW
1245PP(pp_aassign)
1246{
27da23d5 1247 dVAR; dSP;
3280af22
NIS
1248 SV **lastlelem = PL_stack_sp;
1249 SV **lastrelem = PL_stack_base + POPMARK;
1250 SV **firstrelem = PL_stack_base + POPMARK + 1;
a0d0e21e
LW
1251 SV **firstlelem = lastrelem + 1;
1252
eb578fdb
KW
1253 SV **relem;
1254 SV **lelem;
1c23e2bd 1255 U8 gimme;
a68090fe
DM
1256 /* PL_delaymagic is restored by JUMPENV_POP on dieing, so we
1257 * only need to save locally, not on the save stack */
1258 U16 old_delaymagic = PL_delaymagic;
ebc643ce
DM
1259#ifdef DEBUGGING
1260 bool fake = 0;
1261#endif
5637b936 1262
3280af22 1263 PL_delaymagic = DM_DELAY; /* catch simultaneous items */
a0d0e21e
LW
1264
1265 /* If there's a common identifier on both sides we have to take
1266 * special care that assigning the identifier on the left doesn't
1267 * clobber a value on the right that's used later in the list.
1268 */
acdea6f0 1269
beb08a1e
TC
1270 /* at least 2 LH and RH elements, or commonality isn't an issue */
1271 if (firstlelem < lastlelem && firstrelem < lastrelem) {
5c1db569
TC
1272 for (relem = firstrelem+1; relem <= lastrelem; relem++) {
1273 if (SvGMAGICAL(*relem))
1274 goto do_scan;
1275 }
beb08a1e
TC
1276 for (lelem = firstlelem; lelem <= lastlelem; lelem++) {
1277 if (*lelem && SvSMAGICAL(*lelem))
1278 goto do_scan;
a5f48505 1279 }
beb08a1e
TC
1280 if ( PL_op->op_private & (OPpASSIGN_COMMON_SCALAR|OPpASSIGN_COMMON_RC1) ) {
1281 if (PL_op->op_private & OPpASSIGN_COMMON_RC1) {
1282 /* skip the scan if all scalars have a ref count of 1 */
1283 for (lelem = firstlelem; lelem <= lastlelem; lelem++) {
8b0c3377 1284 SV *sv = *lelem;
beb08a1e
TC
1285 if (!sv || SvREFCNT(sv) == 1)
1286 continue;
1287 if (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVAV)
1288 goto do_scan;
1289 break;
1290 }
1291 }
1292 else {
1293 do_scan:
1294 S_aassign_copy_common(aTHX_
1295 firstlelem, lastlelem, firstrelem, lastrelem
ebc643ce 1296#ifdef DEBUGGING
beb08a1e 1297 , fake
ebc643ce 1298#endif
beb08a1e
TC
1299 );
1300 }
a5f48505 1301 }
a0d0e21e 1302 }
ebc643ce
DM
1303#ifdef DEBUGGING
1304 else {
1305 /* on debugging builds, do the scan even if we've concluded we
1306 * don't need to, then panic if we find commonality. Note that the
1307 * scanner assumes at least 2 elements */
1308 if (firstlelem < lastlelem && firstrelem < lastrelem) {
1309 fake = 1;
1310 goto do_scan;
1311 }
1312 }
1313#endif
a0d0e21e 1314
a5f48505 1315 gimme = GIMME_V;
a0d0e21e
LW
1316 relem = firstrelem;
1317 lelem = firstlelem;
10c8fecd 1318
8b0c3377
DM
1319 if (relem > lastrelem)
1320 goto no_relems;
1321
1322 /* first lelem loop while there are still relems */
5d9574c1 1323 while (LIKELY(lelem <= lastlelem)) {
bdaf10a5 1324 bool alias = FALSE;
8b0c3377
DM
1325 SV *lsv = *lelem++;
1326
c73f612f
DM
1327 TAINT_NOT; /* Each item stands on its own, taintwise. */
1328
8b0c3377
DM
1329 assert(relem <= lastrelem);
1330 if (UNLIKELY(!lsv)) {
bdaf10a5 1331 alias = TRUE;
8b0c3377
DM
1332 lsv = *lelem++;
1333 ASSUME(SvTYPE(lsv) == SVt_PVAV);
bdaf10a5 1334 }
a5f48505 1335
8b0c3377
DM
1336 switch (SvTYPE(lsv)) {
1337 case SVt_PVAV: {
1338 SV **svp;
1339 SSize_t i;
1340 SSize_t tmps_base;
1341 SSize_t nelems = lastrelem - relem + 1;
b09ed995 1342 AV *ary = MUTABLE_AV(lsv);
8b0c3377
DM
1343
1344 /* Assigning to an aggregate is tricky. First there is the
1345 * issue of commonality, e.g. @a = ($a[0]). Since the
1346 * stack isn't refcounted, clearing @a prior to storing
1347 * elements will free $a[0]. Similarly with
1348 * sub FETCH { $status[$_[1]] } @status = @tied[0,1];
1349 *
1350 * The way to avoid these issues is to make the copy of each
1351 * SV (and we normally store a *copy* in the array) *before*
1352 * clearing the array. But this has a problem in that
1353 * if the code croaks during copying, the not-yet-stored copies
1354 * could leak. One way to avoid this is to make all the copies
1355 * mortal, but that's quite expensive.
1356 *
1357 * The current solution to these issues is to use a chunk
1358 * of the tmps stack as a temporary refcounted-stack. SVs
1359 * will be put on there during processing to avoid leaks,
1360 * but will be removed again before the end of this block,
1361 * so free_tmps() is never normally called. Also, the
1362 * sv_refcnt of the SVs doesn't have to be manipulated, since
1363 * the ownership of 1 reference count is transferred directly
1364 * from the tmps stack to the AV when the SV is stored.
1365 *
1366 * We disarm slots in the temps stack by storing PL_sv_undef
1367 * there: it doesn't matter if that SV's refcount is
1368 * repeatedly decremented during a croak. But usually this is
1369 * only an interim measure. By the end of this code block
1370 * we try where possible to not leave any PL_sv_undef's on the
1371 * tmps stack e.g. by shuffling newer entries down.
1372 *
1373 * There is one case where we don't copy: non-magical
1374 * SvTEMP(sv)'s with a ref count of 1. The only owner of these
1375 * is on the tmps stack, so its safe to directly steal the SV
1376 * rather than copying. This is common in things like function
1377 * returns, map etc, which all return a list of such SVs.
1378 *
1379 * Note however something like @a = (f())[0,0], where there is
1380 * a danger of the same SV being shared: this avoided because
1381 * when the SV is stored as $a[0], its ref count gets bumped,
1382 * so the RC==1 test fails and the second element is copied
1383 * instead.
1384 *
1385 * We also use one slot in the tmps stack to hold an extra
1386 * ref to the array, to ensure it doesn't get prematurely
1387 * freed. Again, this is removed before the end of this block.
1388 *
1389 * Note that OPpASSIGN_COMMON_AGG is used to flag a possible
1390 * @a = ($a[0]) case, but the current implementation uses the
1391 * same algorithm regardless, so ignores that flag. (It *is*
1392 * used in the hash branch below, however).
1393 */
1394
1395 /* Reserve slots for ary, plus the elems we're about to copy,
1396 * then protect ary and temporarily void the remaining slots
1397 * with &PL_sv_undef */
1398 EXTEND_MORTAL(nelems + 1);
1399 PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple_NN(ary);
1400 tmps_base = PL_tmps_ix + 1;
1401 for (i = 0; i < nelems; i++)
1402 PL_tmps_stack[tmps_base + i] = &PL_sv_undef;
1403 PL_tmps_ix += nelems;
1404
1405 /* Make a copy of each RHS elem and save on the tmps_stack
1406 * (or pass through where we can optimise away the copy) */
1407
1408 if (UNLIKELY(alias)) {
1409 U32 lval = (gimme == G_ARRAY)
1410 ? (PL_op->op_flags & OPf_MOD || LVRET) : 0;
a5f48505 1411 for (svp = relem; svp <= lastrelem; svp++) {
8b0c3377
DM
1412 SV *rsv = *svp;
1413
1414 SvGETMAGIC(rsv);
1415 if (!SvROK(rsv))
1416 DIE(aTHX_ "Assigned value is not a reference");
1417 if (SvTYPE(SvRV(rsv)) > SVt_PVLV)
1418 /* diag_listed_as: Assigned value is not %s reference */
1419 DIE(aTHX_
1420 "Assigned value is not a SCALAR reference");
1421 if (lval)
1422 *svp = rsv = sv_mortalcopy(rsv);
1423 /* XXX else check for weak refs? */
1424 rsv = SvREFCNT_inc_NN(SvRV(rsv));
1425 assert(tmps_base <= PL_tmps_max);
1426 PL_tmps_stack[tmps_base++] = rsv;
a5f48505 1427 }
a5f48505 1428 }
8b0c3377
DM
1429 else {
1430 for (svp = relem; svp <= lastrelem; svp++) {
1431 SV *rsv = *svp;
a5f48505 1432
8b0c3377
DM
1433 if (SvTEMP(rsv) && !SvGMAGICAL(rsv) && SvREFCNT(rsv) == 1) {
1434 /* can skip the copy */
1435 SvREFCNT_inc_simple_void_NN(rsv);
1436 SvTEMP_off(rsv);
1437 }
a5f48505 1438 else {
8b0c3377
DM
1439 SV *nsv;
1440 /* do get before newSV, in case it dies and leaks */
1441 SvGETMAGIC(rsv);
1442 nsv = newSV(0);
8c1e192f
DM
1443 /* see comment in S_aassign_copy_common about
1444 * SV_NOSTEAL */
8b0c3377
DM
1445 sv_setsv_flags(nsv, rsv,
1446 (SV_DO_COW_SVSETSV|SV_NOSTEAL));
1447 rsv = *svp = nsv;
a5f48505 1448 }
8b0c3377
DM
1449
1450 assert(tmps_base <= PL_tmps_max);
1451 PL_tmps_stack[tmps_base++] = rsv;
1452 }
1453 }
1454
1455 if (SvRMAGICAL(ary) || AvFILLp(ary) >= 0) /* may be non-empty */
1456 av_clear(ary);
1457
1458 /* store in the array, the SVs that are in the tmps stack */
1459
1460 tmps_base -= nelems;
1461
80c1439f 1462 if (SvMAGICAL(ary) || SvREADONLY(ary) || !AvREAL(ary)) {
8b0c3377
DM
1463 /* for arrays we can't cheat with, use the official API */
1464 av_extend(ary, nelems - 1);
1465 for (i = 0; i < nelems; i++) {
1466 SV **svp = &(PL_tmps_stack[tmps_base + i]);
1467 SV *rsv = *svp;
1468 /* A tied store won't take ownership of rsv, so keep
1469 * the 1 refcnt on the tmps stack; otherwise disarm
1470 * the tmps stack entry */
1471 if (av_store(ary, i, rsv))
1472 *svp = &PL_sv_undef;
1473 /* av_store() may have added set magic to rsv */;
1474 SvSETMAGIC(rsv);
1475 }
1476 /* disarm ary refcount: see comments below about leak */
1477 PL_tmps_stack[tmps_base - 1] = &PL_sv_undef;
1478 }
1479 else {
1480 /* directly access/set the guts of the AV */
1481 SSize_t fill = nelems - 1;
1482 if (fill > AvMAX(ary))
1483 av_extend_guts(ary, fill, &AvMAX(ary), &AvALLOC(ary),
1484 &AvARRAY(ary));
1485 AvFILLp(ary) = fill;
1486 Copy(&(PL_tmps_stack[tmps_base]), AvARRAY(ary), nelems, SV*);
1487 /* Quietly remove all the SVs from the tmps stack slots,
1488 * since ary has now taken ownership of the refcnt.
1489 * Also remove ary: which will now leak if we die before
1490 * the SvREFCNT_dec_NN(ary) below */
1491 if (UNLIKELY(PL_tmps_ix >= tmps_base + nelems))
1492 Move(&PL_tmps_stack[tmps_base + nelems],
1493 &PL_tmps_stack[tmps_base - 1],
1494 PL_tmps_ix - (tmps_base + nelems) + 1,
1495 SV*);
1496 PL_tmps_ix -= (nelems + 1);
1497 }
1498
5d9574c1 1499 if (UNLIKELY(PL_delaymagic & DM_ARRAY_ISA))
8b0c3377 1500 /* its assumed @ISA set magic can't die and leak ary */
ad64d0ec 1501 SvSETMAGIC(MUTABLE_SV(ary));
8b0c3377
DM
1502 SvREFCNT_dec_NN(ary);
1503
1504 relem = lastrelem + 1;
1505 goto no_relems;
a5f48505
DM
1506 }
1507
10c8fecd 1508 case SVt_PVHV: { /* normal hash */
8b0c3377
DM
1509
1510 SV **svp;
1511 bool dirty_tmps;
1512 SSize_t i;
1513 SSize_t tmps_base;
1514 SSize_t nelems = lastrelem - relem + 1;
b09ed995 1515 HV *hash = MUTABLE_HV(lsv);
8b0c3377
DM
1516
1517 if (UNLIKELY(nelems & 1)) {
1518 do_oddball(lastrelem, relem);
1519 /* we have firstlelem to reuse, it's not needed any more */
1520 *++lastrelem = &PL_sv_undef;
1521 nelems++;
1522 }
1523
1524 /* See the SVt_PVAV branch above for a long description of
1525 * how the following all works. The main difference for hashes
1526 * is that we treat keys and values separately (and have
1527 * separate loops for them): as for arrays, values are always
1528 * copied (except for the SvTEMP optimisation), since they
1529 * need to be stored in the hash; while keys are only
1530 * processed where they might get prematurely freed or
1531 * whatever. */
1532
1533 /* tmps stack slots:
1534 * * reserve a slot for the hash keepalive;
1535 * * reserve slots for the hash values we're about to copy;
1536 * * preallocate for the keys we'll possibly copy or refcount bump
1537 * later;
1538 * then protect hash and temporarily void the remaining
1539 * value slots with &PL_sv_undef */
1540 EXTEND_MORTAL(nelems + 1);
1541
1542 /* convert to number of key/value pairs */
1543 nelems >>= 1;
1544
1545 PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple_NN(hash);
1546 tmps_base = PL_tmps_ix + 1;
1547 for (i = 0; i < nelems; i++)
1548 PL_tmps_stack[tmps_base + i] = &PL_sv_undef;
1549 PL_tmps_ix += nelems;
1550
1551 /* Make a copy of each RHS hash value and save on the tmps_stack
1552 * (or pass through where we can optimise away the copy) */
1553
1554 for (svp = relem + 1; svp <= lastrelem; svp += 2) {
1555 SV *rsv = *svp;
1556
1557 if (SvTEMP(rsv) && !SvGMAGICAL(rsv) && SvREFCNT(rsv) == 1) {
1558 /* can skip the copy */
1559 SvREFCNT_inc_simple_void_NN(rsv);
1560 SvTEMP_off(rsv);
1561 }
1562 else {
1563 SV *nsv;
1564 /* do get before newSV, in case it dies and leaks */
1565 SvGETMAGIC(rsv);
1566 nsv = newSV(0);
1567 /* see comment in S_aassign_copy_common about
1568 * SV_NOSTEAL */
1569 sv_setsv_flags(nsv, rsv,
1570 (SV_DO_COW_SVSETSV|SV_NOSTEAL));
1571 rsv = *svp = nsv;
1c4ea384
RZ
1572 }
1573
8b0c3377
DM
1574 assert(tmps_base <= PL_tmps_max);
1575 PL_tmps_stack[tmps_base++] = rsv;
1576 }
1577 tmps_base -= nelems;
a5f48505 1578
a5f48505 1579
8b0c3377
DM
1580 /* possibly protect keys */
1581
1582 if (UNLIKELY(gimme == G_ARRAY)) {
1583 /* handle e.g.
1584 * @a = ((%h = ($$r, 1)), $r = "x");
1585 * $_++ for %h = (1,2,3,4);
1586 */
1587 EXTEND_MORTAL(nelems);
1588 for (svp = relem; svp <= lastrelem; svp += 2)
1589 *svp = sv_mortalcopy_flags(*svp,
1590 SV_GMAGIC|SV_DO_COW_SVSETSV|SV_NOSTEAL);
1591 }
1592 else if (PL_op->op_private & OPpASSIGN_COMMON_AGG) {
1593 /* for possible commonality, e.g.
1594 * %h = ($h{a},1)
1595 * avoid premature freeing RHS keys by mortalising
1596 * them.
1597 * For a magic element, make a copy so that its magic is
1598 * called *before* the hash is emptied (which may affect
1599 * a tied value for example).
1600 * In theory we should check for magic keys in all
1601 * cases, not just under OPpASSIGN_COMMON_AGG, but in
1602 * practice, !OPpASSIGN_COMMON_AGG implies only
1603 * constants or padtmps on the RHS.
1604 */
1605 EXTEND_MORTAL(nelems);
1606 for (svp = relem; svp <= lastrelem; svp += 2) {
1607 SV *rsv = *svp;
1608 if (UNLIKELY(SvGMAGICAL(rsv))) {
1609 SSize_t n;
a5f48505
DM
1610 *svp = sv_mortalcopy_flags(*svp,
1611 SV_GMAGIC|SV_DO_COW_SVSETSV|SV_NOSTEAL);
8b0c3377
DM
1612 /* allow other branch to continue pushing
1613 * onto tmps stack without checking each time */
1614 n = (lastrelem - relem) >> 1;
1615 EXTEND_MORTAL(n);
a5f48505 1616 }
8b0c3377
DM
1617 else
1618 PL_tmps_stack[++PL_tmps_ix] =
1619 SvREFCNT_inc_simple_NN(rsv);
a5f48505 1620 }
8b0c3377 1621 }
a5f48505 1622
8b0c3377
DM
1623 if (SvRMAGICAL(hash) || HvUSEDKEYS(hash))
1624 hv_clear(hash);
a5f48505 1625
8b0c3377
DM
1626 /* now assign the keys and values to the hash */
1627
1628 dirty_tmps = FALSE;
1629
1630 if (UNLIKELY(gimme == G_ARRAY)) {
1631 /* @a = (%h = (...)) etc */
1632 SV **svp;
1633 SV **topelem = relem;
1634
1635 for (i = 0, svp = relem; svp <= lastrelem; i++, svp++) {
1636 SV *key = *svp++;
1637 SV *val = *svp;
1638 /* remove duplicates from list we return */
1639 if (!hv_exists_ent(hash, key, 0)) {
1640 /* copy key back: possibly to an earlier
1641 * stack location if we encountered dups earlier,
1642 * The values will be updated later
1643 */
1644 *topelem = key;
1645 topelem += 2;
632b9d6f 1646 }
8b0c3377
DM
1647 /* A tied store won't take ownership of val, so keep
1648 * the 1 refcnt on the tmps stack; otherwise disarm
1649 * the tmps stack entry */
1650 if (hv_store_ent(hash, key, val, 0))
1651 PL_tmps_stack[tmps_base + i] = &PL_sv_undef;
1652 else
1653 dirty_tmps = TRUE;
1654 /* hv_store_ent() may have added set magic to val */;
1655 SvSETMAGIC(val);
1656 }
1657 if (topelem < svp) {
1c4ea384
RZ
1658 /* at this point we have removed the duplicate key/value
1659 * pairs from the stack, but the remaining values may be
1660 * wrong; i.e. with (a 1 a 2 b 3) on the stack we've removed
1661 * the (a 2), but the stack now probably contains
1662 * (a <freed> b 3), because { hv_save(a,1); hv_save(a,2) }
1663 * obliterates the earlier key. So refresh all values. */
8b0c3377
DM
1664 lastrelem = topelem - 1;
1665 while (relem < lastrelem) {
1c4ea384
RZ
1666 HE *he;
1667 he = hv_fetch_ent(hash, *relem++, 0, 0);
1668 *relem++ = (he ? HeVAL(he) : &PL_sv_undef);
1669 }
1670 }
8b0c3377
DM
1671 }
1672 else {
1673 SV **svp;
1674 for (i = 0, svp = relem; svp <= lastrelem; i++, svp++) {
1675 SV *key = *svp++;
1676 SV *val = *svp;
1677 if (hv_store_ent(hash, key, val, 0))
1678 PL_tmps_stack[tmps_base + i] = &PL_sv_undef;
1679 else
1680 dirty_tmps = TRUE;
1681 /* hv_store_ent() may have added set magic to val */;
1682 SvSETMAGIC(val);
1683 }
1684 }
1685
1686 if (dirty_tmps) {
1687 /* there are still some 'live' recounts on the tmps stack
1688 * - usually caused by storing into a tied hash. So let
1689 * free_tmps() do the proper but slow job later.
1690 * Just disarm hash refcount: see comments below about leak
1691 */
1692 PL_tmps_stack[tmps_base - 1] = &PL_sv_undef;
1693 }
1694 else {
1695 /* Quietly remove all the SVs from the tmps stack slots,
1696 * since hash has now taken ownership of the refcnt.
1697 * Also remove hash: which will now leak if we die before
1698 * the SvREFCNT_dec_NN(hash) below */
1699 if (UNLIKELY(PL_tmps_ix >= tmps_base + nelems))
1700 Move(&PL_tmps_stack[tmps_base + nelems],
1701 &PL_tmps_stack[tmps_base - 1],
1702 PL_tmps_ix - (tmps_base + nelems) + 1,
1703 SV*);
1704 PL_tmps_ix -= (nelems + 1);
1705 }
1706
1707 SvREFCNT_dec_NN(hash);
1708
1709 relem = lastrelem + 1;
1710 goto no_relems;
1711 }
1712
a0d0e21e 1713 default:
8b0c3377 1714 if (!SvIMMORTAL(lsv)) {
d24e3eb1
DM
1715 SV *ref;
1716
8b0c3377
DM
1717 if (UNLIKELY(
1718 SvTEMP(lsv) && !SvSMAGICAL(lsv) && SvREFCNT(lsv) == 1 &&
1719 (!isGV_with_GP(lsv) || SvFAKE(lsv)) && ckWARN(WARN_MISC)
1720 ))
1721 Perl_warner(aTHX_
1722 packWARN(WARN_MISC),
1723 "Useless assignment to a temporary"
1724 );
d24e3eb1
DM
1725
1726 /* avoid freeing $$lsv if it might be needed for further
1727 * elements, e.g. ($ref, $foo) = (1, $$ref) */
1728 if ( SvROK(lsv)
1729 && ( ((ref = SvRV(lsv)), SvREFCNT(ref)) == 1)
1730 && lelem <= lastlelem
1731 ) {
1732 SSize_t ix;
1733 SvREFCNT_inc_simple_void_NN(ref);
1734 /* an unrolled sv_2mortal */
1735 ix = ++PL_tmps_ix;
1736 if (UNLIKELY(ix >= PL_tmps_max))
1737 /* speculatively grow enough to cover other
1738 * possible refs */
1739 ix = tmps_grow_p(ix + (lastlelem - lelem));
1740 PL_tmps_stack[ix] = ref;
1741 }
1742
8b0c3377
DM
1743 sv_setsv(lsv, *relem);
1744 *relem = lsv;
1745 SvSETMAGIC(lsv);
1746 }
1747 if (++relem > lastrelem)
1748 goto no_relems;
a0d0e21e 1749 break;
8b0c3377
DM
1750 } /* switch */
1751 } /* while */
1752
1753
1754 no_relems:
1755
1756 /* simplified lelem loop for when there are no relems left */
1757 while (LIKELY(lelem <= lastlelem)) {
1758 SV *lsv = *lelem++;
c73f612f
DM
1759
1760 TAINT_NOT; /* Each item stands on its own, taintwise. */
1761
8b0c3377
DM
1762 if (UNLIKELY(!lsv)) {
1763 lsv = *lelem++;
1764 ASSUME(SvTYPE(lsv) == SVt_PVAV);
a0d0e21e 1765 }
8b0c3377
DM
1766
1767 switch (SvTYPE(lsv)) {
1768 case SVt_PVAV:
b09ed995
DM
1769 if (SvRMAGICAL(lsv) || AvFILLp((SV*)lsv) >= 0) {
1770 av_clear((AV*)lsv);
8b0c3377 1771 if (UNLIKELY(PL_delaymagic & DM_ARRAY_ISA))
b09ed995 1772 SvSETMAGIC(lsv);
8b0c3377
DM
1773 }
1774 break;
1775
1776 case SVt_PVHV:
b09ed995
DM
1777 if (SvRMAGICAL(lsv) || HvUSEDKEYS((HV*)lsv))
1778 hv_clear((HV*)lsv);
8b0c3377
DM
1779 break;
1780
1781 default:
1782 if (!SvIMMORTAL(lsv)) {
e03e82a0 1783 sv_set_undef(lsv);
8b0c3377 1784 SvSETMAGIC(lsv);
b09ed995 1785 *relem++ = lsv;
8b0c3377
DM
1786 }
1787 break;
1788 } /* switch */
1789 } /* while */
1790
c73f612f
DM
1791 TAINT_NOT; /* result of list assign isn't tainted */
1792
5d9574c1 1793 if (UNLIKELY(PL_delaymagic & ~DM_DELAY)) {
985213f2 1794 /* Will be used to set PL_tainting below */
dfff4baf
BF
1795 Uid_t tmp_uid = PerlProc_getuid();
1796 Uid_t tmp_euid = PerlProc_geteuid();
1797 Gid_t tmp_gid = PerlProc_getgid();
1798 Gid_t tmp_egid = PerlProc_getegid();
985213f2 1799
b469f1e0 1800 /* XXX $> et al currently silently ignore failures */
3280af22 1801 if (PL_delaymagic & DM_UID) {
a0d0e21e 1802#ifdef HAS_SETRESUID
b469f1e0
JH
1803 PERL_UNUSED_RESULT(
1804 setresuid((PL_delaymagic & DM_RUID) ? PL_delaymagic_uid : (Uid_t)-1,
1805 (PL_delaymagic & DM_EUID) ? PL_delaymagic_euid : (Uid_t)-1,
1806 (Uid_t)-1));
56febc5e
AD
1807#else
1808# ifdef HAS_SETREUID
b469f1e0
JH
1809 PERL_UNUSED_RESULT(
1810 setreuid((PL_delaymagic & DM_RUID) ? PL_delaymagic_uid : (Uid_t)-1,
1811 (PL_delaymagic & DM_EUID) ? PL_delaymagic_euid : (Uid_t)-1));
56febc5e
AD
1812# else
1813# ifdef HAS_SETRUID
b28d0864 1814 if ((PL_delaymagic & DM_UID) == DM_RUID) {
b469f1e0 1815 PERL_UNUSED_RESULT(setruid(PL_delaymagic_uid));
b28d0864 1816 PL_delaymagic &= ~DM_RUID;
a0d0e21e 1817 }
56febc5e
AD
1818# endif /* HAS_SETRUID */
1819# ifdef HAS_SETEUID
b28d0864 1820 if ((PL_delaymagic & DM_UID) == DM_EUID) {
b469f1e0 1821 PERL_UNUSED_RESULT(seteuid(PL_delaymagic_euid));
b28d0864 1822 PL_delaymagic &= ~DM_EUID;
a0d0e21e 1823 }
56febc5e 1824# endif /* HAS_SETEUID */
b28d0864 1825 if (PL_delaymagic & DM_UID) {
985213f2 1826 if (PL_delaymagic_uid != PL_delaymagic_euid)
cea2e8a9 1827 DIE(aTHX_ "No setreuid available");
b469f1e0 1828 PERL_UNUSED_RESULT(PerlProc_setuid(PL_delaymagic_uid));
a0d0e21e 1829 }
56febc5e
AD
1830# endif /* HAS_SETREUID */
1831#endif /* HAS_SETRESUID */
04783dc7 1832
985213f2
AB
1833 tmp_uid = PerlProc_getuid();
1834 tmp_euid = PerlProc_geteuid();
a0d0e21e 1835 }
b469f1e0 1836 /* XXX $> et al currently silently ignore failures */
3280af22 1837 if (PL_delaymagic & DM_GID) {
a0d0e21e 1838#ifdef HAS_SETRESGID
b469f1e0
JH
1839 PERL_UNUSED_RESULT(
1840 setresgid((PL_delaymagic & DM_RGID) ? PL_delaymagic_gid : (Gid_t)-1,
1841 (PL_delaymagic & DM_EGID) ? PL_delaymagic_egid : (Gid_t)-1,
1842 (Gid_t)-1));
56febc5e
AD
1843#else
1844# ifdef HAS_SETREGID
b469f1e0
JH
1845 PERL_UNUSED_RESULT(
1846 setregid((PL_delaymagic & DM_RGID) ? PL_delaymagic_gid : (Gid_t)-1,
1847 (PL_delaymagic & DM_EGID) ? PL_delaymagic_egid : (Gid_t)-1));
56febc5e
AD
1848# else
1849# ifdef HAS_SETRGID
b28d0864 1850 if ((PL_delaymagic & DM_GID) == DM_RGID) {
b469f1e0 1851 PERL_UNUSED_RESULT(setrgid(PL_delaymagic_gid));
b28d0864 1852 PL_delaymagic &= ~DM_RGID;
a0d0e21e 1853 }
56febc5e
AD
1854# endif /* HAS_SETRGID */
1855# ifdef HAS_SETEGID
b28d0864 1856 if ((PL_delaymagic & DM_GID) == DM_EGID) {
b469f1e0 1857 PERL_UNUSED_RESULT(setegid(PL_delaymagic_egid));
b28d0864 1858 PL_delaymagic &= ~DM_EGID;
a0d0e21e 1859 }
56febc5e 1860# endif /* HAS_SETEGID */
b28d0864 1861 if (PL_delaymagic & DM_GID) {
985213f2 1862 if (PL_delaymagic_gid != PL_delaymagic_egid)
cea2e8a9 1863 DIE(aTHX_ "No setregid available");
b469f1e0 1864 PERL_UNUSED_RESULT(PerlProc_setgid(PL_delaymagic_gid));
a0d0e21e 1865 }
56febc5e
AD
1866# endif /* HAS_SETREGID */
1867#endif /* HAS_SETRESGID */
04783dc7 1868
985213f2
AB
1869 tmp_gid = PerlProc_getgid();
1870 tmp_egid = PerlProc_getegid();
a0d0e21e 1871 }
284167a5 1872 TAINTING_set( TAINTING_get | (tmp_uid && (tmp_euid != tmp_uid || tmp_egid != tmp_gid)) );
9a9b5ec9
DM
1873#ifdef NO_TAINT_SUPPORT
1874 PERL_UNUSED_VAR(tmp_uid);
1875 PERL_UNUSED_VAR(tmp_euid);
1876 PERL_UNUSED_VAR(tmp_gid);
1877 PERL_UNUSED_VAR(tmp_egid);
1878#endif
a0d0e21e 1879 }
a68090fe 1880 PL_delaymagic = old_delaymagic;
54310121 1881
54310121 1882 if (gimme == G_VOID)
1883 SP = firstrelem - 1;
1884 else if (gimme == G_SCALAR) {
1885 dTARGET;
1886 SP = firstrelem;
b09ed995 1887 EXTEND(SP,1);
8b0c3377 1888 SETi(firstlelem - firstrelem);
54310121 1889 }
b09ed995
DM
1890 else
1891 SP = relem - 1;
08aeb9f7 1892
54310121 1893 RETURN;
a0d0e21e
LW
1894}
1895
8782bef2
GB
1896PP(pp_qr)
1897{
20b7effb 1898 dSP;
eb578fdb 1899 PMOP * const pm = cPMOP;
fe578d7f 1900 REGEXP * rx = PM_GETRE(pm);
10599a69 1901 SV * const pkg = rx ? CALLREG_PACKAGE(rx) : NULL;
c4420975 1902 SV * const rv = sv_newmortal();
d63c20f2
DM
1903 CV **cvp;
1904 CV *cv;
288b8c02
NC
1905
1906 SvUPGRADE(rv, SVt_IV);
c2123ae3
NC
1907 /* For a subroutine describing itself as "This is a hacky workaround" I'm
1908 loathe to use it here, but it seems to be the right fix. Or close.
1909 The key part appears to be that it's essential for pp_qr to return a new
1910 object (SV), which implies that there needs to be an effective way to
1911 generate a new SV from the existing SV that is pre-compiled in the
1912 optree. */
1913 SvRV_set(rv, MUTABLE_SV(reg_temp_copy(NULL, rx)));
288b8c02
NC
1914 SvROK_on(rv);
1915
8d919b0a 1916 cvp = &( ReANY((REGEXP *)SvRV(rv))->qr_anoncv);
5d9574c1 1917 if (UNLIKELY((cv = *cvp) && CvCLONE(*cvp))) {
d63c20f2 1918 *cvp = cv_clone(cv);
fc2b2dca 1919 SvREFCNT_dec_NN(cv);
d63c20f2
DM
1920 }
1921
288b8c02 1922 if (pkg) {
f815daf2 1923 HV *const stash = gv_stashsv(pkg, GV_ADD);
fc2b2dca 1924 SvREFCNT_dec_NN(pkg);
288b8c02
NC
1925 (void)sv_bless(rv, stash);
1926 }
1927
5d9574c1 1928 if (UNLIKELY(RX_ISTAINTED(rx))) {
e08e52cf 1929 SvTAINTED_on(rv);
9274aefd
DM
1930 SvTAINTED_on(SvRV(rv));
1931 }
c8c13c22
JB
1932 XPUSHs(rv);
1933 RETURN;
8782bef2
GB
1934}
1935
a0d0e21e
LW
1936PP(pp_match)
1937{
20b7effb 1938 dSP; dTARG;
eb578fdb 1939 PMOP *pm = cPMOP;
d65afb4b 1940 PMOP *dynpm = pm;
eb578fdb 1941 const char *s;
5c144d81 1942 const char *strend;
99a90e59 1943 SSize_t curpos = 0; /* initial pos() or current $+[0] */
a0d0e21e 1944 I32 global;
7fadf4a7 1945 U8 r_flags = 0;
5c144d81 1946 const char *truebase; /* Start of string */
eb578fdb 1947 REGEXP *rx = PM_GETRE(pm);
b3eb6a9b 1948 bool rxtainted;
1c23e2bd 1949 const U8 gimme = GIMME_V;
a0d0e21e 1950 STRLEN len;
a3b680e6 1951 const I32 oldsave = PL_savestack_ix;
e60df1fa 1952 I32 had_zerolen = 0;
b1422d62 1953 MAGIC *mg = NULL;
a0d0e21e 1954
533c011a 1955 if (PL_op->op_flags & OPf_STACKED)
a0d0e21e 1956 TARG = POPs;
6ffceeb7 1957 else if (ARGTARG)
59f00321 1958 GETTARGET;
a0d0e21e 1959 else {
54b9620d 1960 TARG = DEFSV;
a0d0e21e
LW
1961 EXTEND(SP,1);
1962 }
d9f424b2 1963
c277df42 1964 PUTBACK; /* EVAL blocks need stack_sp. */
69dc4b30
FC
1965 /* Skip get-magic if this is a qr// clone, because regcomp has
1966 already done it. */
f1d31338 1967 truebase = ReANY(rx)->mother_re
69dc4b30
FC
1968 ? SvPV_nomg_const(TARG, len)
1969 : SvPV_const(TARG, len);
f1d31338 1970 if (!truebase)
2269b42e 1971 DIE(aTHX_ "panic: pp_match");
f1d31338 1972 strend = truebase + len;
284167a5
S
1973 rxtainted = (RX_ISTAINTED(rx) ||
1974 (TAINT_get && (pm->op_pmflags & PMf_RETAINT)));
9212bbba 1975 TAINT_NOT;
a0d0e21e 1976
6c864ec2 1977 /* We need to know this in case we fail out early - pos() must be reset */
de0df3c0
MH
1978 global = dynpm->op_pmflags & PMf_GLOBAL;
1979
d65afb4b 1980 /* PMdf_USED is set after a ?? matches once */
c737faaf
YO
1981 if (
1982#ifdef USE_ITHREADS
1983 SvREADONLY(PL_regex_pad[pm->op_pmoffset])
1984#else
1985 pm->op_pmflags & PMf_USED
1986#endif
1987 ) {
e5dc5375 1988 DEBUG_r(PerlIO_printf(Perl_debug_log, "?? already matched once"));
de0df3c0 1989 goto nope;
a0d0e21e
LW
1990 }
1991
5585e758
YO
1992 /* handle the empty pattern */
1993 if (!RX_PRELEN(rx) && PL_curpm && !ReANY(rx)->mother_re) {
1994 if (PL_curpm == PL_reg_curpm) {
1995 if (PL_curpm_under) {
1996 if (PL_curpm_under == PL_reg_curpm) {
1997 Perl_croak(aTHX_ "Infinite recursion via empty pattern");
1998 } else {
1999 pm = PL_curpm_under;
2000 }
2001 }
2002 } else {
2003 pm = PL_curpm;
2004 }
2005 rx = PM_GETRE(pm);
a0d0e21e 2006 }
d65afb4b 2007
389ecb56 2008 if (RX_MINLEN(rx) >= 0 && (STRLEN)RX_MINLEN(rx) > len) {
75d43e96 2009 DEBUG_r(PerlIO_printf(Perl_debug_log, "String shorter than min possible regex match (%"
147e3846 2010 UVuf " < %" IVdf ")\n",
75d43e96 2011 (UV)len, (IV)RX_MINLEN(rx)));
de0df3c0 2012 goto nope;
e5dc5375 2013 }
c277df42 2014
8ef97b0e 2015 /* get pos() if //g */
de0df3c0 2016 if (global) {
b1422d62 2017 mg = mg_find_mglob(TARG);
8ef97b0e 2018 if (mg && mg->mg_len >= 0) {
25fdce4a 2019 curpos = MgBYTEPOS(mg, TARG, truebase, len);
8ef97b0e
DM
2020 /* last time pos() was set, it was zero-length match */
2021 if (mg->mg_flags & MGf_MINMATCH)
2022 had_zerolen = 1;
2023 }
a0d0e21e 2024 }
8ef97b0e 2025
6e240d0b 2026#ifdef PERL_SAWAMPERSAND
a41aa44d 2027 if ( RX_NPARENS(rx)
6502e081 2028 || PL_sawampersand
6502e081 2029 || (RX_EXTFLAGS(rx) & (RXf_EVAL_SEEN|RXf_PMf_KEEPCOPY))
5b0e71e9 2030 || (dynpm->op_pmflags & PMf_KEEPCOPY)
6e240d0b
FC
2031 )
2032#endif
2033 {
6502e081
DM
2034 r_flags |= (REXEC_COPY_STR|REXEC_COPY_SKIP_PRE);
2035 /* in @a =~ /(.)/g, we iterate multiple times, but copy the buffer
2036 * only on the first iteration. Therefore we need to copy $' as well
2037 * as $&, to make the rest of the string available for captures in
2038 * subsequent iterations */
2039 if (! (global && gimme == G_ARRAY))
2040 r_flags |= REXEC_COPY_SKIP_POST;
2041 };
5b0e71e9
DM
2042#ifdef PERL_SAWAMPERSAND
2043 if (dynpm->op_pmflags & PMf_KEEPCOPY)
2044 /* handle KEEPCOPY in pmop but not rx, eg $r=qr/a/; /$r/p */
2045 r_flags &= ~(REXEC_COPY_SKIP_PRE|REXEC_COPY_SKIP_POST);
2046#endif
22e551b9 2047
f1d31338
DM
2048 s = truebase;
2049
d7be1480 2050 play_it_again:
985afbc1 2051 if (global)
03c83e26 2052 s = truebase + curpos;
f722798b 2053
77da2310 2054 if (!CALLREGEXEC(rx, (char*)s, (char *)strend, (char*)truebase,
03c83e26 2055 had_zerolen, TARG, NULL, r_flags))
03b6c93d 2056 goto nope;
77da2310
NC
2057
2058 PL_curpm = pm;
985afbc1 2059 if (dynpm->op_pmflags & PMf_ONCE)
c737faaf 2060#ifdef USE_ITHREADS
77da2310 2061 SvREADONLY_on(PL_regex_pad[dynpm->op_pmoffset]);
c737faaf 2062#else
77da2310 2063 dynpm->op_pmflags |= PMf_USED;
c737faaf 2064#endif
a0d0e21e 2065
72311751
GS
2066 if (rxtainted)
2067 RX_MATCH_TAINTED_on(rx);
2068 TAINT_IF(RX_MATCH_TAINTED(rx));
35c2ccc3
DM
2069
2070 /* update pos */
2071
2072 if (global && (gimme != G_ARRAY || (dynpm->op_pmflags & PMf_CONTINUE))) {
b1422d62 2073 if (!mg)
35c2ccc3 2074 mg = sv_magicext_mglob(TARG);
25fdce4a 2075 MgBYTEPOS_set(mg, TARG, truebase, RX_OFFS(rx)[0].end);
adf51885
DM
2076 if (RX_ZERO_LEN(rx))
2077 mg->mg_flags |= MGf_MINMATCH;
2078 else
2079 mg->mg_flags &= ~MGf_MINMATCH;
35c2ccc3
DM
2080 }
2081
bf9dff51
DM
2082 if ((!RX_NPARENS(rx) && !global) || gimme != G_ARRAY) {
2083 LEAVE_SCOPE(oldsave);
2084 RETPUSHYES;
2085 }
2086
88ab22af
DM
2087 /* push captures on stack */
2088
bf9dff51 2089 {
07bc277f 2090 const I32 nparens = RX_NPARENS(rx);
a3b680e6 2091 I32 i = (global && !nparens) ? 1 : 0;
a0d0e21e 2092
c277df42 2093 SPAGAIN; /* EVAL blocks could move the stack. */
ffc61ed2
JH
2094 EXTEND(SP, nparens + i);
2095 EXTEND_MORTAL(nparens + i);
2096 for (i = !i; i <= nparens; i++) {
a0d0e21e 2097 PUSHs(sv_newmortal());
5d9574c1
DM
2098 if (LIKELY((RX_OFFS(rx)[i].start != -1)
2099 && RX_OFFS(rx)[i].end != -1 ))
2100 {
07bc277f 2101 const I32 len = RX_OFFS(rx)[i].end - RX_OFFS(rx)[i].start;
f1d31338 2102 const char * const s = RX_OFFS(rx)[i].start + truebase;
5d9574c1
DM
2103 if (UNLIKELY(RX_OFFS(rx)[i].end < 0 || RX_OFFS(rx)[i].start < 0
2104 || len < 0 || len > strend - s))
5637ef5b 2105 DIE(aTHX_ "panic: pp_match start/end pointers, i=%ld, "
147e3846 2106 "start=%ld, end=%ld, s=%p, strend=%p, len=%" UVuf,
5637ef5b
NC
2107 (long) i, (long) RX_OFFS(rx)[i].start,
2108 (long)RX_OFFS(rx)[i].end, s, strend, (UV) len);
a0d0e21e 2109 sv_setpvn(*SP, s, len);
cce850e4 2110 if (DO_UTF8(TARG) && is_utf8_string((U8*)s, len))
a197cbdd 2111 SvUTF8_on(*SP);
a0d0e21e
LW
2112 }
2113 }
2114 if (global) {
0e0b3e82 2115 curpos = (UV)RX_OFFS(rx)[0].end;
03c83e26 2116 had_zerolen = RX_ZERO_LEN(rx);
c277df42 2117 PUTBACK; /* EVAL blocks may use stack */
cf93c79d 2118 r_flags |= REXEC_IGNOREPOS | REXEC_NOT_FIRST;
a0d0e21e
LW
2119 goto play_it_again;
2120 }
4633a7c4 2121 LEAVE_SCOPE(oldsave);
a0d0e21e
LW
2122 RETURN;
2123 }
e5964223 2124 NOT_REACHED; /* NOTREACHED */
a0d0e21e 2125
7b52d656 2126 nope:
d65afb4b 2127 if (global && !(dynpm->op_pmflags & PMf_CONTINUE)) {
b1422d62
DM
2128 if (!mg)
2129 mg = mg_find_mglob(TARG);
2130 if (mg)
2131 mg->mg_len = -1;
a0d0e21e 2132 }
4633a7c4 2133 LEAVE_SCOPE(oldsave);
a0d0e21e
LW
2134 if (gimme == G_ARRAY)
2135 RETURN;
2136 RETPUSHNO;
2137}
2138
2139OP *
864dbfa3 2140Perl_do_readline(pTHX)
a0d0e21e 2141{
20b7effb 2142 dSP; dTARGETSTACKED;
eb578fdb 2143 SV *sv;
a0d0e21e
LW
2144 STRLEN tmplen = 0;
2145 STRLEN offset;
760ac839 2146 PerlIO *fp;
eb578fdb
KW
2147 IO * const io = GvIO(PL_last_in_gv);
2148 const I32 type = PL_op->op_type;
1c23e2bd 2149 const U8 gimme = GIMME_V;
a0d0e21e 2150
6136c704 2151 if (io) {
50db69d8 2152 const MAGIC *const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
6136c704 2153 if (mg) {
3e0cb5de 2154 Perl_tied_method(aTHX_ SV_CONST(READLINE), SP, MUTABLE_SV(io), mg, gimme, 0);
6136c704 2155 if (gimme == G_SCALAR) {
50db69d8
NC
2156 SPAGAIN;
2157 SvSetSV_nosteal(TARG, TOPs);
2158 SETTARG;
6136c704 2159 }
50db69d8 2160 return NORMAL;
0b7c7b4f 2161 }
e79b0511 2162 }
4608196e 2163 fp = NULL;
a0d0e21e
LW
2164 if (io) {
2165 fp = IoIFP(io);
2166 if (!fp) {
2167 if (IoFLAGS(io) & IOf_ARGV) {
2168 if (IoFLAGS(io) & IOf_START) {
a0d0e21e 2169 IoLINES(io) = 0;
b9f2b683 2170 if (av_tindex(GvAVn(PL_last_in_gv)) < 0) {
1d7c1841 2171 IoFLAGS(io) &= ~IOf_START;
d5eb9a46 2172 do_open6(PL_last_in_gv, "-", 1, NULL, NULL, 0);
4bac9ae4 2173 SvTAINTED_off(GvSVn(PL_last_in_gv)); /* previous tainting irrelevant */
76f68e9b 2174 sv_setpvs(GvSVn(PL_last_in_gv), "-");
3280af22 2175 SvSETMAGIC(GvSV(PL_last_in_gv));
a2008d6d
GS
2176 fp = IoIFP(io);
2177 goto have_fp;
a0d0e21e
LW
2178 }
2179 }
157fb5a1 2180 fp = nextargv(PL_last_in_gv, PL_op->op_flags & OPf_SPECIAL);
a0d0e21e 2181 if (!fp) { /* Note: fp != IoIFP(io) */
3280af22 2182 (void)do_close(PL_last_in_gv, FALSE); /* now it does*/
a0d0e21e
LW
2183 }
2184 }
0d44d22b
NC
2185 else if (type == OP_GLOB)
2186 fp = Perl_start_glob(aTHX_ POPs, io);
a0d0e21e
LW
2187 }
2188 else if (type == OP_GLOB)
2189 SP--;
7716c5c5 2190 else if (IoTYPE(io) == IoTYPE_WRONLY) {
a5390457 2191 report_wrongway_fh(PL_last_in_gv, '>');
a00b5bd3 2192 }
a0d0e21e
LW
2193 }
2194 if (!fp) {
041457d9 2195 if ((!io || !(IoFLAGS(io) & IOf_START))
de7dabb6
TC
2196 && ckWARN(WARN_CLOSED)
2197 && type != OP_GLOB)
041457d9 2198 {
de7dabb6 2199 report_evil_fh(PL_last_in_gv);
3f4520fe 2200 }
54310121 2201 if (gimme == G_SCALAR) {
79628082 2202 /* undef TARG, and push that undefined value */
ba92458f 2203 if (type != OP_RCATLINE) {
aab1202a 2204 sv_setsv(TARG,NULL);
ba92458f 2205 }
a0d0e21e
LW
2206 PUSHTARG;
2207 }
2208 RETURN;
2209 }
a2008d6d 2210 have_fp:
54310121 2211 if (gimme == G_SCALAR) {
a0d0e21e 2212 sv = TARG;
0f722b55
RGS
2213 if (type == OP_RCATLINE && SvGMAGICAL(sv))
2214 mg_get(sv);
48de12d9
RGS
2215 if (SvROK(sv)) {
2216 if (type == OP_RCATLINE)
5668452f 2217 SvPV_force_nomg_nolen(sv);
48de12d9
RGS
2218 else
2219 sv_unref(sv);
2220 }
f7877b28 2221 else if (isGV_with_GP(sv)) {
5668452f 2222 SvPV_force_nomg_nolen(sv);
f7877b28 2223 }
862a34c6 2224 SvUPGRADE(sv, SVt_PV);
a0d0e21e 2225 tmplen = SvLEN(sv); /* remember if already alloced */
e3918bb7 2226 if (!tmplen && !SvREADONLY(sv) && !SvIsCOW(sv)) {
f72e8700
JJ
2227 /* try short-buffering it. Please update t/op/readline.t
2228 * if you change the growth length.
2229 */
2230 Sv_Grow(sv, 80);
2231 }
2b5e58c4
AMS
2232 offset = 0;
2233 if (type == OP_RCATLINE && SvOK(sv)) {
2234 if (!SvPOK(sv)) {
5668452f 2235 SvPV_force_nomg_nolen(sv);
2b5e58c4 2236 }
a0d0e21e 2237 offset = SvCUR(sv);
2b5e58c4 2238 }
a0d0e21e 2239 }
54310121 2240 else {
561b68a9 2241 sv = sv_2mortal(newSV(80));
54310121 2242 offset = 0;
2243 }
fbad3eb5 2244
3887d568
AP
2245 /* This should not be marked tainted if the fp is marked clean */
2246#define MAYBE_TAINT_LINE(io, sv) \
2247 if (!(IoFLAGS(io) & IOf_UNTAINT)) { \
2248 TAINT; \
2249 SvTAINTED_on(sv); \
2250 }
2251
684bef36 2252/* delay EOF state for a snarfed empty file */
fbad3eb5 2253#define SNARF_EOF(gimme,rs,io,sv) \
684bef36 2254 (gimme != G_SCALAR || SvCUR(sv) \
b9fee9ba 2255 || (IoFLAGS(io) & IOf_NOLINE) || !RsSNARF(rs))
fbad3eb5 2256
a0d0e21e 2257 for (;;) {
09e8efcc 2258 PUTBACK;
fbad3eb5 2259 if (!sv_gets(sv, fp, offset)
2d726892
TF
2260 && (type == OP_GLOB
2261 || SNARF_EOF(gimme, PL_rs, io, sv)
2262 || PerlIO_error(fp)))
fbad3eb5 2263 {
760ac839 2264 PerlIO_clearerr(fp);
a0d0e21e 2265 if (IoFLAGS(io) & IOf_ARGV) {
157fb5a1 2266 fp = nextargv(PL_last_in_gv, PL_op->op_flags & OPf_SPECIAL);
a0d0e21e
LW
2267 if (fp)
2268 continue;
3280af22 2269 (void)do_close(PL_last_in_gv, FALSE);
a0d0e21e
LW
2270 }
2271 else if (type == OP_GLOB) {
a2a5de95
NC
2272 if (!do_close(PL_last_in_gv, FALSE)) {
2273 Perl_ck_warner(aTHX_ packWARN(WARN_GLOB),
2274 "glob failed (child exited with status %d%s)",
2275 (int)(STATUS_CURRENT >> 8),
2276 (STATUS_CURRENT & 0x80) ? ", core dumped" : "");
4eb79ab5 2277 }
a0d0e21e 2278 }
54310121 2279 if (gimme == G_SCALAR) {
ba92458f
AE
2280 if (type != OP_RCATLINE) {
2281 SV_CHECK_THINKFIRST_COW_DROP(TARG);
0c34ef67 2282 SvOK_off(TARG);
ba92458f 2283 }
09e8efcc 2284 SPAGAIN;
a0d0e21e
LW
2285 PUSHTARG;
2286 }
3887d568 2287 MAYBE_TAINT_LINE(io, sv);
a0d0e21e
LW
2288 RETURN;
2289 }
3887d568 2290 MAYBE_TAINT_LINE(io, sv);
a0d0e21e 2291 IoLINES(io)++;
b9fee9ba 2292 IoFLAGS(io) |= IOf_NOLINE;
71be2cbc 2293 SvSETMAGIC(sv);
09e8efcc 2294 SPAGAIN;
a0d0e21e 2295 XPUSHs(sv);
a0d0e21e 2296 if (type == OP_GLOB) {
349d4f2f 2297 const char *t1;
45a23732 2298 Stat_t statbuf;
a0d0e21e 2299
3280af22 2300 if (SvCUR(sv) > 0 && SvCUR(PL_rs) > 0) {
6136c704 2301 char * const tmps = SvEND(sv) - 1;
aa07b2f6 2302 if (*tmps == *SvPVX_const(PL_rs)) {
c07a80fd 2303 *tmps = '\0';
b162af07 2304 SvCUR_set(sv, SvCUR(sv) - 1);
c07a80fd 2305 }
2306 }
349d4f2f 2307 for (t1 = SvPVX_const(sv); *t1; t1++)
b51c3e77
CB
2308#ifdef __VMS
2309 if (strchr("*%?", *t1))
2310#else
7ad1e72d 2311 if (strchr("$&*(){}[]'\";\\|?<>~`", *t1))
b51c3e77 2312#endif
a0d0e21e 2313 break;
45a23732 2314 if (*t1 && PerlLIO_lstat(SvPVX_const(sv), &statbuf) < 0) {
a0d0e21e
LW
2315 (void)POPs; /* Unmatched wildcard? Chuck it... */
2316 continue;
2317 }
2d79bf7f 2318 } else if (SvUTF8(sv)) { /* OP_READLINE, OP_RCATLINE */
d4c19fe8
AL
2319 if (ckWARN(WARN_UTF8)) {
2320 const U8 * const s = (const U8*)SvPVX_const(sv) + offset;
2321 const STRLEN len = SvCUR(sv) - offset;
2322 const U8 *f;
2323
2324 if (!is_utf8_string_loc(s, len, &f))
2325 /* Emulate :encoding(utf8) warning in the same case. */
2326 Perl_warner(aTHX_ packWARN(WARN_UTF8),
2327 "utf8 \"\\x%02X\" does not map to Unicode",
2328 f < (U8*)SvEND(sv) ? *f : 0);
2329 }
a0d0e21e 2330 }
54310121 2331 if (gimme == G_ARRAY) {
a0d0e21e 2332 if (SvLEN(sv) - SvCUR(sv) > 20) {
1da4ca5f 2333 SvPV_shrink_to_cur(sv);
a0d0e21e 2334 }
561b68a9 2335 sv = sv_2mortal(newSV(80));
a0d0e21e
LW
2336 continue;
2337 }
54310121 2338 else if (gimme == G_SCALAR && !tmplen && SvLEN(sv) - SvCUR(sv) > 80) {
a0d0e21e 2339 /* try to reclaim a bit of scalar space (only on 1st alloc) */
d5b5861b
NC
2340 const STRLEN new_len
2341 = SvCUR(sv) < 60 ? 80 : SvCUR(sv)+40; /* allow some slop */
1da4ca5f 2342 SvPV_renew(sv, new_len);
a0d0e21e
LW
2343 }
2344 RETURN;
2345 }
2346}
2347
a0d0e21e
LW
2348PP(pp_helem)
2349{
20b7effb 2350 dSP;
760ac839 2351 HE* he;
ae77835f 2352 SV **svp;
c445ea15 2353 SV * const keysv = POPs;
85fbaab2 2354 HV * const hv = MUTABLE_HV(POPs);
a3b680e6
AL
2355 const U32 lval = PL_op->op_flags & OPf_MOD || LVRET;
2356 const U32 defer = PL_op->op_private & OPpLVAL_DEFER;
be6c24e0 2357 SV *sv;
92970b93 2358 const bool localizing = PL_op->op_private & OPpLVAL_INTRO;
d30e492c 2359 bool preeminent = TRUE;
a0d0e21e 2360
6dfc73ea
S
2361 if (SvTYPE(hv) != SVt_PVHV)
2362 RETPUSHUNDEF;
d4c19fe8 2363
92970b93 2364 if (localizing) {
d4c19fe8
AL
2365 MAGIC *mg;
2366 HV *stash;
d30e492c
VP
2367
2368 /* If we can determine whether the element exist,
2369 * Try to preserve the existenceness of a tied hash
2370 * element by using EXISTS and DELETE if possible.
2371 * Fallback to FETCH and STORE otherwise. */
2c5f48c2 2372 if (SvCANEXISTDELETE(hv))
d30e492c 2373 preeminent = hv_exists_ent(hv, keysv, 0);
d4c19fe8 2374 }
d30e492c 2375
5f9d7e2b 2376 he = hv_fetch_ent(hv, keysv, lval && !defer, 0);
d4c19fe8 2377 svp = he ? &HeVAL(he) : NULL;
a0d0e21e 2378 if (lval) {
746f6409 2379 if (!svp || !*svp || *svp == &PL_sv_undef) {
68dc0745 2380 SV* lv;
2381 SV* key2;
2d8e6c8d 2382 if (!defer) {
be2597df 2383 DIE(aTHX_ PL_no_helem_sv, SVfARG(keysv));
2d8e6c8d 2384 }
68dc0745 2385 lv = sv_newmortal();
2386 sv_upgrade(lv, SVt_PVLV);
2387 LvTYPE(lv) = 'y';
6136c704 2388 sv_magic(lv, key2 = newSVsv(keysv), PERL_MAGIC_defelem, NULL, 0);
fc2b2dca 2389 SvREFCNT_dec_NN(key2); /* sv_magic() increments refcount */
0ad694a7 2390 LvTARG(lv) = SvREFCNT_inc_simple_NN(hv);
68dc0745 2391 LvTARGLEN(lv) = 1;
2392 PUSHs(lv);
2393 RETURN;
2394 }
92970b93 2395 if (localizing) {
bfcb3514 2396 if (HvNAME_get(hv) && isGV(*svp))
159b6efe 2397 save_gp(MUTABLE_GV(*svp), !(PL_op->op_flags & OPf_SPECIAL));
47cfc530
VP
2398 else if (preeminent)
2399 save_helem_flags(hv, keysv, svp,
2400 (PL_op->op_flags & OPf_SPECIAL) ? 0 : SAVEf_SETMAGIC);
2401 else
2402 SAVEHDELETE(hv, keysv);
5f05dabc 2403 }
9026059d
GG
2404 else if (PL_op->op_private & OPpDEREF) {
2405 PUSHs(vivify_ref(*svp, PL_op->op_private & OPpDEREF));
2406 RETURN;
2407 }
a0d0e21e 2408 }
746f6409 2409 sv = (svp && *svp ? *svp : &PL_sv_undef);
fd69380d
DM
2410 /* Originally this did a conditional C<sv = sv_mortalcopy(sv)>; this
2411 * was to make C<local $tied{foo} = $tied{foo}> possible.
2412 * However, it seems no longer to be needed for that purpose, and
2413 * introduced a new bug: stuff like C<while ($hash{taintedval} =~ /.../g>
2414 * would loop endlessly since the pos magic is getting set on the
2415 * mortal copy and lost. However, the copy has the effect of
2416 * triggering the get magic, and losing it altogether made things like
2417 * c<$tied{foo};> in void context no longer do get magic, which some
2418 * code relied on. Also, delayed triggering of magic on @+ and friends
2419 * meant the original regex may be out of scope by now. So as a
2420 * compromise, do the get magic here. (The MGf_GSKIP flag will stop it
2421 * being called too many times). */
39cf747a 2422 if (!lval && SvRMAGICAL(hv) && SvGMAGICAL(sv))
fd69380d 2423 mg_get(sv);
be6c24e0 2424 PUSHs(sv);
a0d0e21e
LW
2425 RETURN;
2426}
2427
fedf30e1
DM
2428
2429/* a stripped-down version of Perl_softref2xv() for use by
2430 * pp_multideref(), which doesn't use PL_op->op_flags */
2431
f9db5646 2432STATIC GV *
fedf30e1
DM
2433S_softref2xv_lite(pTHX_ SV *const sv, const char *const what,
2434 const svtype type)
2435{
2436 if (PL_op->op_private & HINT_STRICT_REFS) {
2437 if (SvOK(sv))
2438 Perl_die(aTHX_ PL_no_symref_sv, sv,
2439 (SvPOKp(sv) && SvCUR(sv)>32 ? "..." : ""), what);
2440 else
2441 Perl_die(aTHX_ PL_no_usym, what);
2442 }
2443 if (!SvOK(sv))
2444 Perl_die(aTHX_ PL_no_usym, what);
2445 return gv_fetchsv_nomg(sv, GV_ADD, type);
2446}
2447
2448
79815f56
DM
2449/* Handle one or more aggregate derefs and array/hash indexings, e.g.
2450 * $h->{foo} or $a[0]{$key}[$i] or f()->[1]
fedf30e1
DM
2451 *
2452 * op_aux points to an array of unions of UV / IV / SV* / PADOFFSET.
79815f56
DM
2453 * Each of these either contains a set of actions, or an argument, such as
2454 * an IV to use as an array index, or a lexical var to retrieve.
2455 * Several actions re stored per UV; we keep shifting new actions off the
2456 * one UV, and only reload when it becomes zero.
fedf30e1
DM
2457 */
2458
2459PP(pp_multideref)
2460{
2461 SV *sv = NULL; /* init to avoid spurious 'may be used uninitialized' */
2462 UNOP_AUX_item *items = cUNOP_AUXx(PL_op)->op_aux;
2463 UV actions = items->uv;
2464
2465 assert(actions);
2466 /* this tells find_uninit_var() where we're up to */
2467 PL_multideref_pc = items;
2468
2469 while (1) {
2470 /* there are three main classes of action; the first retrieve
2471 * the initial AV or HV from a variable or the stack; the second
2472 * does the equivalent of an unrolled (/DREFAV, rv2av, aelem),
2473 * the third an unrolled (/DREFHV, rv2hv, helem).
2474 */
2475 switch (actions & MDEREF_ACTION_MASK) {
2476
2477 case MDEREF_reload:
2478 actions = (++items)->uv;
2479 continue;
2480
2481 case MDEREF_AV_padav_aelem: /* $lex[...] */
2482 sv = PAD_SVl((++items)->pad_offset);
2483 goto do_AV_aelem;
2484
2485 case MDEREF_AV_gvav_aelem: /* $pkg[...] */
2486 sv = UNOP_AUX_item_sv(++items);
2487 assert(isGV_with_GP(sv));
2488 sv = (SV*)GvAVn((GV*)sv);
2489 goto do_AV_aelem;
2490
2491 case MDEREF_AV_pop_rv2av_aelem: /* expr->[...] */
2492 {
2493 dSP;
2494 sv = POPs;
2495 PUTBACK;
2496 goto do_AV_rv2av_aelem;
2497 }
2498
2499 case MDEREF_AV_gvsv_vivify_rv2av_aelem: /* $pkg->[...] */
2500 sv = UNOP_AUX_item_sv(++items);
2501 assert(isGV_with_GP(sv));
2502 sv = GvSVn((GV*)sv);
2503 goto do_AV_vivify_rv2av_aelem;
2504
2505 case MDEREF_AV_padsv_vivify_rv2av_aelem: /* $lex->[...] */
2506 sv = PAD_SVl((++items)->pad_offset);
2507 /* FALLTHROUGH */
2508
2509 do_AV_vivify_rv2av_aelem:
2510 case MDEREF_AV_vivify_rv2av_aelem: /* vivify, ->[...] */
2511 /* this is the OPpDEREF action normally found at the end of
2512 * ops like aelem, helem, rv2sv */
2513 sv = vivify_ref(sv, OPpDEREF_AV);
2514 /* FALLTHROUGH */
2515
2516 do_AV_rv2av_aelem:
2517 /* this is basically a copy of pp_rv2av when it just has the
2518 * sKR/1 flags */
2519 SvGETMAGIC(sv);
2520 if (LIKELY(SvROK(sv))) {
2521 if (UNLIKELY(SvAMAGIC(sv))) {
2522 sv = amagic_deref_call(sv, to_av_amg);
2523 }
2524 sv = SvRV(sv);
2525 if (UNLIKELY(SvTYPE(sv) != SVt_PVAV))
2526 DIE(aTHX_ "Not an ARRAY reference");
2527 }
2528 else if (SvTYPE(sv) != SVt_PVAV) {
2529 if (!isGV_with_GP(sv))
2530 sv = (SV*)S_softref2xv_lite(aTHX_ sv, "an ARRAY", SVt_PVAV);
2531 sv = MUTABLE_SV(GvAVn((GV*)sv));
2532 }
2533 /* FALLTHROUGH */
2534
2535 do_AV_aelem:
2536 {
2537 /* retrieve the key; this may be either a lexical or package
2538 * var (whose index/ptr is stored as an item) or a signed
2539 * integer constant stored as an item.
2540 */
2541 SV *elemsv;
2542 IV elem = 0; /* to shut up stupid compiler warnings */
2543
2544
2545 assert(SvTYPE(sv) == SVt_PVAV);
2546
2547 switch (actions & MDEREF_INDEX_MASK) {
2548 case MDEREF_INDEX_none:
2549 goto finish;
2550 case MDEREF_INDEX_const:
2551 elem = (++items)->iv;
2552 break;
2553 case MDEREF_INDEX_padsv:
2554 elemsv = PAD_SVl((++items)->pad_offset);
2555 goto check_elem;
2556 case MDEREF_INDEX_gvsv:
2557 elemsv = UNOP_AUX_item_sv(++items);
2558 assert(isGV_with_GP(elemsv));
2559 elemsv = GvSVn((GV*)elemsv);
2560 check_elem:
2561 if (UNLIKELY(SvROK(elemsv) && !SvGAMAGIC(elemsv)
2562 && ckWARN(WARN_MISC)))
2563 Perl_warner(aTHX_ packWARN(WARN_MISC),
147e3846 2564 "Use of reference \"%" SVf "\" as array index",
fedf30e1
DM
2565 SVfARG(elemsv));
2566 /* the only time that S_find_uninit_var() needs this
2567 * is to determine which index value triggered the
2568 * undef warning. So just update it here. Note that
2569 * since we don't save and restore this var (e.g. for
2570 * tie or overload execution), its value will be
2571 * meaningless apart from just here */
2572 PL_multideref_pc = items;
2573 elem = SvIV(elemsv);
2574 break;
2575 }
2576
2577
2578 /* this is basically a copy of pp_aelem with OPpDEREF skipped */
2579
2580 if (!(actions & MDEREF_FLAG_last)) {
2581 SV** svp = av_fetch((AV*)sv, elem, 1);
2582 if (!svp || ! (sv=*svp))
2583 DIE(aTHX_ PL_no_aelem, elem);
2584 break;
2585 }
2586
2587 if (PL_op->op_private &
2588 (OPpMULTIDEREF_EXISTS|OPpMULTIDEREF_DELETE))
2589 {
2590 if (PL_op->op_private & OPpMULTIDEREF_EXISTS) {
2591 sv = av_exists((AV*)sv, elem) ? &PL_sv_yes : &PL_sv_no;
2592 }
2593 else {
2594 I32 discard = (GIMME_V == G_VOID) ? G_DISCARD : 0;
2595 sv = av_delete((AV*)sv, elem, discard);
2596 if (discard)
2597 return NORMAL;
2598 if (!sv)
2599 sv = &PL_sv_undef;
2600 }
2601 }
2602 else {
2603 const U32 lval = PL_op->op_flags & OPf_MOD || LVRET;
2604 const U32 defer = PL_op->op_private & OPpLVAL_DEFER;
2605 const bool localizing = PL_op->op_private & OPpLVAL_INTRO;
2606 bool preeminent = TRUE;
2607 AV *const av = (AV*)sv;
2608 SV** svp;
2609
2610 if (UNLIKELY(localizing)) {
2611 MAGIC *mg;
2612 HV *stash;
2613
2614 /* If we can determine whether the element exist,
2615 * Try to preserve the existenceness of a tied array
2616 * element by using EXISTS and DELETE if possible.
2617 * Fallback to FETCH and STORE otherwise. */
2618 if (SvCANEXISTDELETE(av))
2619 preeminent = av_exists(av, elem);
2620 }
2621
2622 svp = av_fetch(av, elem, lval && !defer);
2623
2624 if (lval) {
2625 if (!svp || !(sv = *svp)) {
2626 IV len;
2627 if (!defer)
2628 DIE(aTHX_ PL_no_aelem, elem);
2629 len = av_tindex(av);
2630 sv = sv_2mortal(newSVavdefelem(av,
2631 /* Resolve a negative index now, unless it points
2632 * before the beginning of the array, in which
2633 * case record it for error reporting in
2634 * magic_setdefelem. */
2635 elem < 0 && len + elem >= 0
2636 ? len + elem : elem, 1));
2637 }
2638 else {
2639 if (UNLIKELY(localizing)) {
2640 if (preeminent) {
2641 save_aelem(av, elem, svp);
2642 sv = *svp; /* may have changed */
2643 }
2644 else
2645 SAVEADELETE(av, elem);
2646 }
2647 }
2648 }
2649 else {
2650 sv = (svp ? *svp : &PL_sv_undef);
2651 /* see note in pp_helem() */
2652 if (SvRMAGICAL(av) && SvGMAGICAL(sv))
2653 mg_get(sv);
2654 }
2655 }
2656
2657 }
2658 finish:
2659 {
2660 dSP;
2661 XPUSHs(sv);
2662 RETURN;
2663 }
2664 /* NOTREACHED */
2665
2666
2667
2668
2669 case MDEREF_HV_padhv_helem: /* $lex{...} */
2670 sv = PAD_SVl((++items)->pad_offset);
2671 goto do_HV_helem;
2672
2673 case MDEREF_HV_gvhv_helem: /* $pkg{...} */
2674 sv = UNOP_AUX_item_sv(++items);
2675 assert(isGV_with_GP(sv));
2676 sv = (SV*)GvHVn((GV*)sv);
2677 goto do_HV_helem;
2678
2679 case MDEREF_HV_pop_rv2hv_helem: /* expr->{...} */
2680 {
2681 dSP;
2682 sv = POPs;
2683 PUTBACK;
2684 goto do_HV_rv2hv_helem;
2685 }
2686
2687 case MDEREF_HV_gvsv_vivify_rv2hv_helem: /* $pkg->{...} */
2688 sv = UNOP_AUX_item_sv(++items);
2689 assert(isGV_with_GP(sv));
2690 sv = GvSVn((GV*)sv);
2691 goto do_HV_vivify_rv2hv_helem;
2692
2693 case MDEREF_HV_padsv_vivify_rv2hv_helem: /* $lex->{...} */
2694 sv = PAD_SVl((++items)->pad_offset);
2695 /* FALLTHROUGH */
2696
2697 do_HV_vivify_rv2hv_helem:
2698 case MDEREF_HV_vivify_rv2hv_helem: /* vivify, ->{...} */
2699 /* this is the OPpDEREF action normally found at the end of
2700 * ops like aelem, helem, rv2sv */
2701 sv = vivify_ref(sv, OPpDEREF_HV);
2702 /* FALLTHROUGH */
2703
2704 do_HV_rv2hv_helem:
2705 /* this is basically a copy of pp_rv2hv when it just has the
2706 * sKR/1 flags (and pp_rv2hv is aliased to pp_rv2av) */
2707
2708 SvGETMAGIC(sv);
2709 if (LIKELY(SvROK(sv))) {
2710 if (UNLIKELY(SvAMAGIC(sv))) {
2711 sv = amagic_deref_call(sv, to_hv_amg);
2712 }
2713 sv = SvRV(sv);
2714 if (UNLIKELY(SvTYPE(sv) != SVt_PVHV))
2715 DIE(aTHX_ "Not a HASH reference");
2716 }
2717 else if (SvTYPE(sv) != SVt_PVHV) {
2718 if (!isGV_with_GP(sv))
2719 sv = (SV*)S_softref2xv_lite(aTHX_ sv, "a HASH", SVt_PVHV);
2720 sv = MUTABLE_SV(GvHVn((GV*)sv));
2721 }
2722 /* FALLTHROUGH */
2723
2724 do_HV_helem:
2725 {
2726 /* retrieve the key; this may be either a lexical / package
2727 * var or a string constant, whose index/ptr is stored as an
2728 * item
2729 */
2730 SV *keysv = NULL; /* to shut up stupid compiler warnings */
2731
2732 assert(SvTYPE(sv) == SVt_PVHV);
2733
2734 switch (actions & MDEREF_INDEX_MASK) {
2735 case MDEREF_INDEX_none:
2736 goto finish;
2737
2738 case MDEREF_INDEX_const:
2739 keysv = UNOP_AUX_item_sv(++items);
2740 break;
2741
2742 case MDEREF_INDEX_padsv:
2743 keysv = PAD_SVl((++items)->pad_offset);
2744 break;
2745
2746 case MDEREF_INDEX_gvsv:
2747 keysv = UNOP_AUX_item_sv(++items);
2748 keysv = GvSVn((GV*)keysv);
2749 break;
2750 }
2751
2752 /* see comment above about setting this var */
2753 PL_multideref_pc = items;
2754
2755
2756 /* ensure that candidate CONSTs have been HEKified */
2757 assert( ((actions & MDEREF_INDEX_MASK) != MDEREF_INDEX_const)
2758 || SvTYPE(keysv) >= SVt_PVMG
2759 || !SvOK(keysv)
2760 || SvROK(keysv)
2761 || SvIsCOW_shared_hash(keysv));
2762
2763 /* this is basically a copy of pp_helem with OPpDEREF skipped */
2764
2765 if (!(actions & MDEREF_FLAG_last)) {
2766 HE *he = hv_fetch_ent((HV*)sv, keysv, 1, 0);
2767 if (!he || !(sv=HeVAL(he)) || sv == &PL_sv_undef)
2768 DIE(aTHX_ PL_no_helem_sv, SVfARG(keysv));
2769 break;
2770 }
2771
2772 if (PL_op->op_private &
2773 (OPpMULTIDEREF_EXISTS|OPpMULTIDEREF_DELETE))
2774 {
2775 if (PL_op->op_private & OPpMULTIDEREF_EXISTS) {
2776 sv = hv_exists_ent((HV*)sv, keysv, 0)
2777 ? &PL_sv_yes : &PL_sv_no;
2778 }
2779 else {
2780 I32 discard = (GIMME_V == G_VOID) ? G_DISCARD : 0;
2781 sv = hv_delete_ent((HV*)sv, keysv, discard, 0);
2782 if (discard)
2783 return NORMAL;
2784 if (!sv)
2785 sv = &PL_sv_undef;
2786 }
2787 }
2788 else {
2789 const U32 lval = PL_op->op_flags & OPf_MOD || LVRET;
2790 const U32 defer = PL_op->op_private & OPpLVAL_DEFER;
2791 const bool localizing = PL_op->op_private & OPpLVAL_INTRO;
2792 bool preeminent = TRUE;
2793 SV **svp;
2794 HV * const hv = (HV*)sv;
2795 HE* he;
2796
2797 if (UNLIKELY(localizing)) {
2798 MAGIC *mg;
2799 HV *stash;
2800
2801 /* If we can determine whether the element exist,
2802 * Try to preserve the existenceness of a tied hash
2803 * element by using EXISTS and DELETE if possible.
2804 * Fallback to FETCH and STORE otherwise. */
2805 if (SvCANEXISTDELETE(hv))
2806 preeminent = hv_exists_ent(hv, keysv, 0);
2807 }
2808
2809 he = hv_fetch_ent(hv, keysv, lval && !defer, 0);
2810 svp = he ? &HeVAL(he) : NULL;
2811
2812
2813 if (lval) {
2814 if (!svp || !(sv = *svp) || sv == &PL_sv_undef) {
2815 SV* lv;
2816 SV* key2;
2817 if (!defer)
2818 DIE(aTHX_ PL_no_helem_sv, SVfARG(keysv));
2819 lv = sv_newmortal();
2820 sv_upgrade(lv, SVt_PVLV);
2821 LvTYPE(lv) = 'y';
2822 sv_magic(lv, key2 = newSVsv(keysv),
2823 PERL_MAGIC_defelem, NULL, 0);
2824 /* sv_magic() increments refcount */
2825 SvREFCNT_dec_NN(key2);
0ad694a7 2826 LvTARG(lv) = SvREFCNT_inc_simple_NN(hv);
fedf30e1
DM
2827 LvTARGLEN(lv) = 1;
2828 sv = lv;
2829 }
2830 else {
2831 if (localizing) {
2832 if (HvNAME_get(hv) && isGV(sv))
2833 save_gp(MUTABLE_GV(sv),
2834 !(PL_op->op_flags & OPf_SPECIAL));
2835 else if (preeminent) {
2836 save_helem_flags(hv, keysv, svp,
2837 (PL_op->op_flags & OPf_SPECIAL)
2838 ? 0 : SAVEf_SETMAGIC);
2839 sv = *svp; /* may have changed */
2840 }
2841 else
2842 SAVEHDELETE(hv, keysv);
2843 }
2844 }
2845 }
2846 else {
2847 sv = (svp && *svp ? *svp : &PL_sv_undef);
2848 /* see note in pp_helem() */
2849 if (SvRMAGICAL(hv) && SvGMAGICAL(sv))
2850 mg_get(sv);
2851 }
2852 }
2853 goto finish;
2854 }
2855
2856 } /* switch */
2857
2858 actions >>= MDEREF_SHIFT;
2859 } /* while */
2860 /* NOTREACHED */
2861}
2862
2863
a0d0e21e
LW
2864PP(pp_iter)
2865{
eb578fdb 2866 PERL_CONTEXT *cx;
7d6c2cef 2867 SV *oldsv;
1d7c1841 2868 SV **itersvp;
8a1f10dd 2869 SV *retsv;
a0d0e21e 2870
84f05d57
JH
2871 SV *sv;
2872 AV *av;
2873 IV ix;
2874 IV inc;
2875
4ebe6e95 2876 cx = CX_CUR();
1d7c1841 2877 itersvp = CxITERVAR(cx);
4b5c941e 2878 assert(itersvp);
a48ce6be
DM
2879
2880 switch (CxTYPE(cx)) {
17c91640 2881
b552b52c
DM
2882 case CXt_LOOP_LAZYSV: /* string increment */
2883 {
2884 SV* cur = cx->blk_loop.state_u.lazysv.cur;
2885 SV *end = cx->blk_loop.state_u.lazysv.end;
2886 /* If the maximum is !SvOK(), pp_enteriter substitutes PL_sv_no.
2887 It has SvPVX of "" and SvCUR of 0, which is what we want. */
2888 STRLEN maxlen = 0;
2889 const char *max = SvPV_const(end, maxlen);
d6c970c7
AC
2890 if (DO_UTF8(end) && IN_UNI_8_BIT)
2891 maxlen = sv_len_utf8_nomg(end);
5d9574c1 2892 if (UNLIKELY(SvNIOK(cur) || SvCUR(cur) > maxlen))
8a1f10dd 2893 goto retno;
b552b52c
DM
2894
2895 oldsv = *itersvp;
6d3ca00e
DM
2896 /* NB: on the first iteration, oldsv will have a ref count of at
2897 * least 2 (one extra from blk_loop.itersave), so the GV or pad
2898 * slot will get localised; on subsequent iterations the RC==1
2899 * optimisation may kick in and the SV will be reused. */
2900 if (oldsv && LIKELY(SvREFCNT(oldsv) == 1 && !SvMAGICAL(oldsv))) {
b552b52c
DM
2901 /* safe to reuse old SV */
2902 sv_setsv(oldsv, cur);
a48ce6be 2903 }
b552b52c
DM
2904 else
2905 {
2906 /* we need a fresh SV every time so that loop body sees a
2907 * completely new SV for closures/references to work as
2908 * they used to */
2909 *itersvp = newSVsv(cur);
6d3ca00e 2910 SvREFCNT_dec(oldsv);
b552b52c
DM
2911 }
2912 if (strEQ(SvPVX_const(cur), max))
2913 sv_setiv(cur, 0); /* terminate next time */
2914 else
2915 sv_inc(cur);
2916 break;
2917 }
a48ce6be 2918
fcef60b4
DM
2919 case CXt_LOOP_LAZYIV: /* integer increment */
2920 {
2921 IV cur = cx->blk_loop.state_u.lazyiv.cur;
5d9574c1 2922 if (UNLIKELY(cur > cx->blk_loop.state_u.lazyiv.end))
8a1f10dd 2923 goto retno;
7f61b687 2924
fcef60b4 2925 oldsv = *itersvp;
6d3ca00e
DM
2926 /* see NB comment above */
2927 if (oldsv && LIKELY(SvREFCNT(oldsv) == 1 && !SvMAGICAL(oldsv))) {
eaa5c2d6 2928 /* safe to reuse old SV */
47b96a1e
DM
2929
2930 if ( (SvFLAGS(oldsv) & (SVTYPEMASK|SVf_THINKFIRST|SVf_IVisUV))
2931 == SVt_IV)
2932 {
2933 /* Cheap SvIOK_only().
2934 * Assert that flags which SvIOK_only() would test or
2935 * clear can't be set, because we're SVt_IV */
2936 assert(!(SvFLAGS(oldsv) &
2937 (SVf_OOK|SVf_UTF8|(SVf_OK & ~(SVf_IOK|SVp_IOK)))));
2938 SvFLAGS(oldsv) |= (SVf_IOK|SVp_IOK);
2939 /* SvIV_set() where sv_any points to head */
2940 oldsv->sv_u.svu_iv = cur;
2941
2942 }
2943 else
2944 sv_setiv(oldsv, cur);
eaa5c2d6 2945 }
1c846c1f 2946 else
eaa5c2d6
GA
2947 {
2948 /* we need a fresh SV every time so that loop body sees a
2949 * completely new SV for closures/references to work as they
2950 * used to */
fcef60b4 2951 *itersvp = newSViv(cur);
6d3ca00e 2952 SvREFCNT_dec(oldsv);
eaa5c2d6 2953 }
a2309040 2954
5d9574c1 2955 if (UNLIKELY(cur == IV_MAX)) {
cdc1aa42
NC
2956 /* Handle end of range at IV_MAX */
2957 cx->blk_loop.state_u.lazyiv.end = IV_MIN;
2958 } else
2959 ++cx->blk_loop.state_u.lazyiv.cur;
a48ce6be 2960 break;
fcef60b4 2961 }
a48ce6be 2962
93661e56
DM
2963 case CXt_LOOP_LIST: /* for (1,2,3) */
2964
2965 assert(OPpITER_REVERSED == 2); /* so inc becomes -1 or 1 */
2966 inc = 1 - (PL_op->op_private & OPpITER_REVERSED);
2967 ix = (cx->blk_loop.state_u.stack.ix += inc);
2968 if (UNLIKELY(inc > 0
2969 ? ix > cx->blk_oldsp
2970 : ix <= cx->blk_loop.state_u.stack.basesp)
2971 )
8a1f10dd 2972 goto retno;
93661e56
DM
2973
2974 sv = PL_stack_base[ix];
2975 av = NULL;
2976 goto loop_ary_common;
2977
2978 case CXt_LOOP_ARY: /* for (@ary) */
2979
2980 av = cx->blk_loop.state_u.ary.ary;
2981 inc = 1 - (PL_op->op_private & OPpITER_REVERSED);
2982 ix = (cx->blk_loop.state_u.ary.ix += inc);
2983 if (UNLIKELY(inc > 0
2984 ? ix > AvFILL(av)
2985 : ix < 0)
2986 )
8a1f10dd 2987 goto retno;
de080daa 2988
9d1ee8e0 2989 if (UNLIKELY(SvRMAGICAL(av))) {
a8a20bb6
DM
2990 SV * const * const svp = av_fetch(av, ix, FALSE);
2991 sv = svp ? *svp : NULL;
2992 }
2993 else {
2994 sv = AvARRAY(av)[ix];
de080daa 2995 }
ef3e5ea9 2996
93661e56
DM
2997 loop_ary_common:
2998
d39c26a6
FC
2999 if (UNLIKELY(cx->cx_type & CXp_FOR_LVREF)) {
3000 SvSetMagicSV(*itersvp, sv);
3001 break;
3002 }
3003
5d9574c1
DM
3004 if (LIKELY(sv)) {
3005 if (UNLIKELY(SvIS_FREED(sv))) {
f38aa882
DM
3006 *itersvp = NULL;
3007 Perl_croak(aTHX_ "Use of freed value in iteration");
3008 }
60779a30 3009 if (SvPADTMP(sv)) {
8e079c2a 3010 sv = newSVsv(sv);
60779a30 3011 }
8e079c2a
FC
3012 else {
3013 SvTEMP_off(sv);
3014 SvREFCNT_inc_simple_void_NN(sv);
3015 }
de080daa 3016 }
93661e56 3017 else if (av) {
199f858d 3018 sv = newSVavdefelem(av, ix, 0);
de080daa 3019 }
a600f7e6
FC
3020 else
3021 sv = &PL_sv_undef;
a0d0e21e 3022
de080daa
DM
3023 oldsv = *itersvp;
3024 *itersvp = sv;
3025 SvREFCNT_dec(oldsv);
de080daa 3026 break;
a48ce6be
DM
3027
3028 default:
3029 DIE(aTHX_ "panic: pp_iter, type=%u", CxTYPE(cx));
3030 }
8a1f10dd
DM
3031
3032 retsv = &PL_sv_yes;
3033 if (0) {
3034 retno:
3035 retsv = &PL_sv_no;
3036 }
3037 /* pp_enteriter should have pre-extended the stack */
3038 assert(PL_stack_sp < PL_stack_max);
3039 *++PL_stack_sp =retsv;
3040
3041 return PL_op->op_next;
a0d0e21e
LW
3042}
3043
ef07e810
DM
3044/*
3045A description of how taint works in pattern matching and substitution.
3046
284167a5
S
3047This is all conditional on NO_TAINT_SUPPORT not being defined. Under
3048NO_TAINT_SUPPORT, taint-related operations should become no-ops.
3049
4e19c54b 3050While the pattern is being assembled/concatenated and then compiled,
284167a5
S
3051PL_tainted will get set (via TAINT_set) if any component of the pattern
3052is tainted, e.g. /.*$tainted/. At the end of pattern compilation,
3053the RXf_TAINTED flag is set on the pattern if PL_tainted is set (via
1738e041
DM
3054TAINT_get). It will also be set if any component of the pattern matches
3055based on locale-dependent behavior.
ef07e810 3056
0ab462a6
DM
3057When the pattern is copied, e.g. $r = qr/..../, the SV holding the ref to
3058the pattern is marked as tainted. This means that subsequent usage, such
284167a5
S
3059as /x$r/, will set PL_tainted using TAINT_set, and thus RXf_TAINTED,
3060on the new pattern too.
ef07e810 3061
272d35c9 3062RXf_TAINTED_SEEN is used post-execution by the get magic code
ef07e810
DM
3063of $1 et al to indicate whether the returned value should be tainted.
3064It is the responsibility of the caller of the pattern (i.e. pp_match,
3065pp_subst etc) to set this flag for any other circumstances where $1 needs
3066to be tainted.
3067
3068The taint behaviour of pp_subst (and pp_substcont) is quite complex.
3069
3070There are three possible sources of taint
3071 * the source string
3072 * the pattern (both compile- and run-time, RXf_TAINTED / RXf_TAINTED_SEEN)
3073 * the replacement string (or expression under /e)
3074
3075There are four destinations of taint and they are affected by the sources
3076according to the rules below:
3077
3078 * the return value (not including /r):
3079 tainted by the source string and pattern, but only for the
3080 number-of-iterations case; boolean returns aren't tainted;
3081 * the modified string (or modified copy under /r):
3082 tainted by the source string, pattern, and replacement strings;
3083 * $1 et al:
3084 tainted by the pattern, and under 'use re "taint"', by the source
3085 string too;
3086 * PL_taint - i.e. whether subsequent code (e.g. in a /e block) is tainted:
3087 should always be unset before executing subsequent code.
3088
3089The overall action of pp_subst is:
3090
3091 * at the start, set bits in rxtainted indicating the taint status of
3092 the various sources.
3093
3094 * After each pattern execution, update the SUBST_TAINT_PAT bit in
3095 rxtainted if RXf_TAINTED_SEEN has been set, to indicate that the
3096 pattern has subsequently become tainted via locale ops.
3097
3098 * If control is being passed to pp_substcont to execute a /e block,
3099 save rxtainted in the CXt_SUBST block, for future use by
3100 pp_substcont.
3101
3102 * Whenever control is being returned to perl code (either by falling
3103 off the "end" of pp_subst/pp_substcont, or by entering a /e block),
3104 use the flag bits in rxtainted to make all the appropriate types of
0ab462a6
DM
3105 destination taint visible; e.g. set RXf_TAINTED_SEEN so that $1
3106 et al will appear tainted.
ef07e810
DM
3107
3108pp_match is just a simpler version of the above.
3109
3110*/
3111
a0d0e21e
LW
3112PP(pp_subst)
3113{
20b7effb 3114 dSP; dTARG;
eb578fdb 3115 PMOP *pm = cPMOP;
a0d0e21e 3116 PMOP *rpm = pm;
eb578fdb 3117 char *s;
a0d0e21e 3118 char *strend;
5c144d81 3119 const char *c;
a0d0e21e 3120 STRLEN clen;
3c6ef0a5
FC
3121 SSize_t iters = 0;
3122 SSize_t maxiters;
a0d0e21e 3123 bool once;
ef07e810
DM
3124 U8 rxtainted = 0; /* holds various SUBST_TAINT_* flag bits.
3125 See "how taint works" above */
a0d0e21e 3126 char *orig;
1ed74d04 3127 U8 r_flags;
eb578fdb 3128 REGEXP *rx = PM_GETRE(pm);
a0d0e21e
LW
3129 STRLEN len;
3130 int force_on_match = 0;
0bcc34c2 3131 const I32 oldsave = PL_savestack_ix;
792b2c16 3132 STRLEN slen;
26a74523 3133 bool doutf8 = FALSE; /* whether replacement is in utf8 */
db2c6cb3 3134#ifdef PERL_ANY_COW
106d9a13 3135 bool was_cow;
ed252734 3136#endif
a0714e2c 3137 SV *nsv = NULL;
b770e143 3138 /* known replacement string? */
eb578fdb 3139 SV *dstr = (pm->op_pmflags & PMf_CONST) ? POPs : NULL;
a0d0e21e 3140
f410a211
NC
3141 PERL_ASYNC_CHECK();
3142
533c011a 3143 if (PL_op->op_flags & OPf_STACKED)
a0d0e21e 3144 TARG = POPs;
6ffceeb7 3145 else if (ARGTARG)
59f00321 3146 GETTARGET;
a0d0e21e 3147 else {
54b9620d 3148 TARG = DEFSV;
a0d0e21e 3149 EXTEND(SP,1);
1c846c1f 3150 }
d9f424b2 3151
64534138 3152 SvGETMAGIC(TARG); /* must come before cow check */
db2c6cb3 3153#ifdef PERL_ANY_COW
106d9a13
DM
3154 /* note that a string might get converted to COW during matching */
3155 was_cow = cBOOL(SvIsCOW(TARG));
ed252734 3156#endif
d13a5d3b
TC
3157 if (!(rpm->op_pmflags & PMf_NONDESTRUCT)) {
3158#ifndef PERL_ANY_COW
3159 if (SvIsCOW(TARG))
3160 sv_force_normal_flags(TARG,0);
3161#endif
3162 if ((SvREADONLY(TARG)
3163 || ( ((SvTYPE(TARG) == SVt_PVGV && isGV_with_GP(TARG))
3164 || SvTYPE(TARG) > SVt_PVLV)
3165 && !(SvTYPE(TARG) == SVt_PVGV && SvFAKE(TARG)))))
3166 Perl_croak_no_modify();
3167 }
8ec5e241
NIS
3168 PUTBACK;
3169
6ac6605d
DM
3170 orig = SvPV_nomg(TARG, len);
3171 /* note we don't (yet) force the var into being a string; if we fail
92711104 3172 * to match, we leave as-is; on successful match however, we *will*
6ac6605d 3173 * coerce into a string, then repeat the match */
4499db73 3174 if (!SvPOKp(TARG) || SvTYPE(TARG) == SVt_PVGV || SvVOK(TARG))
a0d0e21e 3175 force_on_match = 1;
20be6587
DM
3176
3177 /* only replace once? */
3178 once = !(rpm->op_pmflags & PMf_GLOBAL);
3179
ef07e810 3180 /* See "how taint works" above */
284167a5 3181 if (TAINTING_get) {
20be6587
DM
3182 rxtainted = (
3183 (SvTAINTED(TARG) ? SUBST_TAINT_STR : 0)
284167a5 3184 | (RX_ISTAINTED(rx) ? SUBST_TAINT_PAT : 0)
20be6587
DM
3185 | ((pm->op_pmflags & PMf_RETAINT) ? SUBST_TAINT_RETAINT : 0)
3186 | ((once && !(rpm->op_pmflags & PMf_NONDESTRUCT))
3187 ? SUBST_TAINT_BOOLRET : 0));
3188 TAINT_NOT;
3189 }
a12c0f56 3190
a0d0e21e 3191 force_it:
6ac6605d
DM
3192 if (!pm || !orig)
3193 DIE(aTHX_ "panic: pp_subst, pm=%p, orig=%p", pm, orig);
a0d0e21e 3194
6ac6605d
DM
3195 strend = orig + len;
3196 slen = DO_UTF8(TARG) ? utf8_length((U8*)orig, (U8*)strend) : len;
792b2c16
JH
3197 maxiters = 2 * slen + 10; /* We can match twice at each
3198 position, once with zero-length,
3199 second time with non-zero. */
a0d0e21e 3200
794826f4
YO
3201 /* handle the empty pattern */
3202 if (!RX_PRELEN(rx) && PL_curpm && !ReANY(rx)->mother_re) {
5585e758
YO
3203 if (PL_curpm == PL_reg_curpm) {
3204 if (PL_curpm_under) {
3205 if (PL_curpm_under == PL_reg_curpm) {
3206 Perl_croak(aTHX_ "Infinite recursion via empty pattern");
3207 } else {
3208 pm = PL_curpm_under;
3209 }
3210 }
3211 } else {
3212 pm = PL_curpm;
3213 }
3214 rx = PM_GETRE(pm);
a0d0e21e 3215 }
6502e081 3216
6e240d0b 3217#ifdef PERL_SAWAMPERSAND
6502e081
DM
3218 r_flags = ( RX_NPARENS(rx)
3219 || PL_sawampersand
6502e081 3220 || (RX_EXTFLAGS(rx) & (RXf_EVAL_SEEN|RXf_PMf_KEEPCOPY))
5b0e71e9 3221 || (rpm->op_pmflags & PMf_KEEPCOPY)
6502e081
DM
3222 )
3223 ? REXEC_COPY_STR
3224 : 0;
6e240d0b
FC
3225#else
3226 r_flags = REXEC_COPY_STR;
3227#endif
7fba1cd6 3228
0395280b 3229 if (!CALLREGEXEC(rx, orig, strend, orig, 0, TARG, NULL, r_flags))
8b64c330 3230 {
5e79dfb9
DM
3231 SPAGAIN;
3232 PUSHs(rpm->op_pmflags & PMf_NONDESTRUCT ? TARG : &PL_sv_no);
3233 LEAVE_SCOPE(oldsave);
3234 RETURN;
3235 }
1754320d
FC
3236 PL_curpm = pm;
3237
71be2cbc 3238 /* known replacement string? */
f272994b 3239 if (dstr) {
8514a05a
JH
3240 /* replacement needing upgrading? */
3241 if (DO_UTF8(TARG) && !doutf8) {
db79b45b 3242 nsv = sv_newmortal();
4a176938 3243 SvSetSV(nsv, dstr);
8df0e7a2 3244 sv_utf8_upgrade(nsv);
5c144d81 3245 c = SvPV_const(nsv, clen);
4a176938
JH
3246 doutf8 = TRUE;
3247 }
3248 else {
5c144d81 3249 c = SvPV_const(dstr, clen);
4a176938 3250 doutf8 = DO_UTF8(dstr);
8514a05a 3251 }
bb933b9b
FC
3252
3253 if (SvTAINTED(dstr))
3254 rxtainted |= SUBST_TAINT_REPL;
f272994b
A
3255 }
3256 else {
6136c704 3257 c = NULL;
f272994b
A
3258 doutf8 = FALSE;
3259 }
3260
71be2cbc 3261 /* can do inplace substitution? */
ed252734 3262 if (c
db2c6cb3 3263#ifdef PERL_ANY_COW
106d9a13 3264 && !was_cow
ed252734 3265#endif
fbfb1899 3266 && (I32)clen <= RX_MINLENRET(rx)
9cefd268
FC
3267 && ( once
3268 || !(r_flags & REXEC_COPY_STR)
3269 || (!SvGMAGICAL(dstr) && !(RX_EXTFLAGS(rx) & RXf_EVAL_SEEN))
3270 )
dbc200c5 3271 && !(RX_EXTFLAGS(rx) & RXf_NO_INPLACE_SUBST)
8ca8a454
NC
3272 && (!doutf8 || SvUTF8(TARG))
3273 && !(rpm->op_pmflags & PMf_NONDESTRUCT))
8b030b38 3274 {
ec911639 3275
db2c6cb3 3276#ifdef PERL_ANY_COW
106d9a13 3277 /* string might have got converted to COW since we set was_cow */
ed252734 3278 if (SvIsCOW(TARG)) {
f7a8268c 3279 if (!force_on_match)
ed252734 3280 goto have_a_cow;
f7a8268c 3281 assert(SvVOK(TARG));
ed252734
NC
3282 }
3283#endif
71be2cbc 3284 if (force_on_match) {
6ac6605d
DM
3285 /* redo the first match, this time with the orig var
3286 * forced into being a string */
71be2cbc 3287 force_on_match = 0;
6ac6605d 3288 orig = SvPV_force_nomg(TARG, len);
71be2cbc 3289 goto force_it;
3290 }
39b40493 3291
71be2cbc 3292 if (once) {
c67ab8f2 3293 char *d, *m;
20be6587
DM
3294 if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */
3295 rxtainted |= SUBST_TAINT_PAT;
07bc277f
NC
3296 m = orig + RX_OFFS(rx)[0].start;
3297 d = orig + RX_OFFS(rx)[0].end;
71be2cbc 3298 s = orig;
3299 if (m - s > strend - d) { /* faster to shorten from end */
2ec7214c 3300 I32 i;
71be2cbc 3301 if (clen) {
3302 Copy(c, m, clen, char);
3303 m += clen;
a0d0e21e 3304 }
71be2cbc 3305 i = strend - d;
3306 if (i > 0) {
3307 Move(d, m, i, char);
3308 m += i;
a0d0e21e 3309 }
71be2cbc 3310 *m = '\0';
3311 SvCUR_set(TARG, m - s);
3312 }
2ec7214c
DM
3313 else { /* faster from front */
3314 I32 i = m - s;
71be2cbc 3315 d -= clen;
2ec7214c
DM
3316 if (i > 0)
3317 Move(s, d - i, i, char);
71be2cbc 3318 sv_chop(TARG, d-i);
71be2cbc 3319 if (clen)
c947cd8d 3320 Copy(c, d, clen, char);
71be2cbc 3321 }
8ec5e241 3322 SPAGAIN;
8ca8a454 3323 PUSHs(&PL_sv_yes);
71be2cbc 3324 }
3325 else {
c67ab8f2 3326 char *d, *m;
0395280b 3327 d = s = RX_OFFS(rx)[0].start + orig;
71be2cbc 3328 do {
2b25edcf 3329 I32 i;
5d9574c1 3330 if (UNLIKELY(iters++ > maxiters))
cea2e8a9 3331 DIE(aTHX_ "Substitution loop");
5d9574c1 3332 if (UNLIKELY(RX_MATCH_TAINTED(rx))) /* run time pattern taint, eg locale */
20be6587 3333 rxtainted |= SUBST_TAINT_PAT;
07bc277f 3334 m = RX_OFFS(rx)[0].start + orig;
155aba94 3335 if ((i = m - s)) {
71be2cbc 3336 if (s != d)
3337 Move(s, d, i, char);
3338 d += i;
a0d0e21e 3339 }
71be2cbc 3340 if (clen) {
3341 Copy(c, d, clen, char);
3342 d += clen;
3343 }
07bc277f 3344 s = RX_OFFS(rx)[0].end + orig;
7ce41e5c
FC
3345 } while (CALLREGEXEC(rx, s, strend, orig,
3346 s == m, /* don't match same null twice */
f722798b 3347 TARG, NULL,
d5e7783a 3348 REXEC_NOT_FIRST|REXEC_IGNOREPOS|REXEC_FAIL_ON_UNDERFLOW));
71be2cbc 3349 if (s != d) {
2b25edcf 3350 I32 i = strend - s;
aa07b2f6 3351 SvCUR_set(TARG, d - SvPVX_const(TARG) + i);
71be2cbc 3352 Move(s, d, i+1, char); /* include the NUL */
a0d0e21e 3353 }
8ec5e241 3354 SPAGAIN;
3c6ef0a5 3355 mPUSHi(iters);
a0d0e21e
LW
3356 }
3357 }
ff6e92e8 3358 else {
1754320d 3359 bool first;
c67ab8f2 3360 char *m;
1754320d 3361 SV *repl;
a0d0e21e 3362 if (force_on_match) {
6ac6605d
DM
3363 /* redo the first match, this time with the orig var
3364 * forced into being a string */
a0d0e21e 3365 force_on_match = 0;
0c1438a1
NC
3366 if (rpm->op_pmflags & PMf_NONDESTRUCT) {
3367 /* I feel that it should be possible to avoid this mortal copy
3368 given that the code below copies into a new destination.
3369 However, I suspect it isn't worth the complexity of
3370 unravelling the C<goto force_it> for the small number of
3371 cases where it would be viable to drop into the copy code. */
3372 TARG = sv_2mortal(newSVsv(TARG));
3373 }
6ac6605d 3374 orig = SvPV_force_nomg(TARG, len);
a0d0e21e
LW
3375 goto force_it;
3376 }
db2c6cb3 3377#ifdef PERL_ANY_COW
ed252734
NC
3378 have_a_cow:
3379#endif
20be6587
DM
3380 if (RX_MATCH_TAINTED(rx)) /* run time pattern taint, eg locale */
3381 rxtainted |= SUBST_TAINT_PAT;
1754320d 3382 repl = dstr;
0395280b
DM
3383 s = RX_OFFS(rx)[0].start + orig;
3384 dstr = newSVpvn_flags(orig, s-orig,
3385 SVs_TEMP | (DO_UTF8(TARG) ? SVf_UTF8 : 0));
a0d0e21e 3386 if (!c) {
eb578fdb 3387 PERL_CONTEXT *cx;
8ec5e241 3388 SPAGAIN;
0395280b 3389 m = orig;
20be6587
DM
3390 /* note that a whole bunch of local vars are saved here for
3391 * use by pp_substcont: here's a list of them in case you're
3392 * searching for places in this sub that uses a particular var:
3393 * iters maxiters r_flags oldsave rxtainted orig dstr targ
3394 * s m strend rx once */
490576d1 3395 CX_PUSHSUBST(cx);
20e98b0f 3396 RETURNOP(cPMOP->op_pmreplrootu.op_pmreplroot);
a0d0e21e 3397 }
1754320d 3398 first = TRUE;
a0d0e21e 3399 do {
5d9574c1 3400 if (UNLIKELY(iters++ > maxiters))
cea2e8a9 3401 DIE(aTHX_ "Substitution loop");
5d9574c1 3402 if (UNLIKELY(RX_MATCH_TAINTED(rx)))
20be6587 3403 rxtainted |= SUBST_TAINT_PAT;
07bc277f 3404 if (RX_MATCH_COPIED(rx) && RX_SUBBEG(rx) != orig) {
c67ab8f2
DM
3405 char *old_s = s;
3406 char *old_orig = orig;
6502e081 3407 assert(RX_SUBOFFSET(rx) == 0);
c67ab8f2 3408
07bc277f 3409 orig = RX_SUBBEG(rx);
c67ab8f2
DM
3410 s = orig + (old_s - old_orig);
3411 strend = s + (strend - old_s);
a0d0e21e 3412 }
07bc277f 3413 m = RX_OFFS(rx)[0].start + orig;
64534138 3414 sv_catpvn_nomg_maybeutf8(dstr, s, m - s, DO_UTF8(TARG));
07bc277f 3415 s = RX_OFFS(rx)[0].end + orig;
1754320d
FC
3416 if (first) {
3417 /* replacement already stringified */
3418 if (clen)
64534138 3419 sv_catpvn_nomg_maybeutf8(dstr, c, clen, doutf8);
1754320d
FC
3420 first = FALSE;
3421 }
3422 else {
8df0e7a2 3423 sv_catsv(dstr, repl);
5d9574c1 3424 if (UNLIKELY(SvTAINTED(repl)))
bb933b9b 3425 rxtainted |= SUBST_TAINT_REPL;
1754320d 3426 }
a0d0e21e
LW
3427 if (once)
3428 break;
ff27773b
KW
3429 } while (CALLREGEXEC(rx, s, strend, orig,
3430 s == m, /* Yields minend of 0 or 1 */
d5e7783a
DM
3431 TARG, NULL,
3432 REXEC_NOT_FIRST|REXEC_IGNOREPOS|REXEC_FAIL_ON_UNDERFLOW));
aba224f7 3433 assert(strend >= s);
64534138 3434 sv_catpvn_nomg_maybeutf8(dstr, s, strend - s, DO_UTF8(TARG));
748a9306 3435
8ca8a454
NC
3436 if (rpm->op_pmflags & PMf_NONDESTRUCT) {
3437 /* From here on down we're using the copy, and leaving the original
3438 untouched. */
3439 TARG = dstr;
3440 SPAGAIN;
3441 PUSHs(dstr);
3442 } else {
db2c6cb3 3443#ifdef PERL_ANY_COW
8ca8a454
NC
3444 /* The match may make the string COW. If so, brilliant, because
3445 that's just saved us one malloc, copy and free - the regexp has
3446 donated the old buffer, and we malloc an entirely new one, rather
3447 than the regexp malloc()ing a buffer and copying our original,
3448 only for us to throw it away here during the substitution. */
3449 if (SvIsCOW(TARG)) {
3450 sv_force_normal_flags(TARG, SV_COW_DROP_PV);
3451 } else
ed252734 3452#endif
8ca8a454
NC
3453 {
3454 SvPV_free(TARG);
3455 }
3456 SvPV_set(TARG, SvPVX(dstr));
3457 SvCUR_set(TARG, SvCUR(dstr));
3458 SvLEN_set(TARG, SvLEN(dstr));
64534138 3459 SvFLAGS(TARG) |= SvUTF8(dstr);
8ca8a454 3460 SvPV_set(dstr, NULL);
748a9306 3461
8ca8a454 3462 SPAGAIN;
3c6ef0a5 3463 mPUSHi(iters);
8ca8a454
NC
3464 }
3465 }
3466
3467 if (!(rpm->op_pmflags & PMf_NONDESTRUCT)) {
3468 (void)SvPOK_only_UTF8(TARG);
a0d0e21e 3469 }
20be6587 3470
ef07e810 3471 /* See "how taint works" above */
284167a5 3472 if (TAINTING_get) {
20be6587
DM
3473 if ((rxtainted & SUBST_TAINT_PAT) ||
3474 ((rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT)) ==
3475 (SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
3476 )
3477 (RX_MATCH_TAINTED_on(rx)); /* taint $1 et al */
3478
3479 if (!(rxtainted & SUBST_TAINT_BOOLRET)
3480 && (rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT))
3481 )
3482 SvTAINTED_on(TOPs); /* taint return value */
3483 else
3484 SvTAINTED_off(TOPs); /* may have got tainted earlier */
3485
3486 /* needed for mg_set below */
284167a5
S
3487 TAINT_set(
3488 cBOOL(rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL))
3489 );
20be6587
DM
3490 SvTAINT(TARG);
3491 }
3492 SvSETMAGIC(TARG); /* PL_tainted must be correctly set for this mg_set */
3493 TAINT_NOT;
f1a76097
DM
3494 LEAVE_SCOPE(oldsave);
3495 RETURN;
a0d0e21e
LW
3496}
3497
3498PP(pp_grepwhile)
3499{
20b7effb 3500 dSP;
a0d0e21e
LW
3501
3502 if (SvTRUEx(POPs))
3280af22
NIS
3503 PL_stack_base[PL_markstack_ptr[-1]++] = PL_stack_base[*PL_markstack_ptr];
3504 ++*PL_markstack_ptr;
b2a2a901 3505 FREETMPS;
d343c3ef 3506 LEAVE_with_name("grep_item"); /* exit inner scope */
a0d0e21e
LW
3507
3508 /* All done yet? */
5d9574c1 3509 if (UNLIKELY(PL_stack_base + *PL_markstack_ptr > SP)) {
a0d0e21e 3510 I32 items;
1c23e2bd 3511 const U8 gimme = GIMME_V;
a0d0e21e 3512
d343c3ef 3513 LEAVE_with_name("grep"); /* exit outer scope */
a0d0e21e 3514 (void)POPMARK; /* pop src */
3280af22 3515 items = --*PL_markstack_ptr - PL_markstack_ptr[-1];
a0d0e21e 3516 (void)POPMARK; /* pop dst */
3280af22 3517 SP = PL_stack_base + POPMARK; /* pop original mark */
54310121 3518 if (gimme == G_SCALAR) {
7cc47870
RGS
3519 dTARGET;
3520 XPUSHi(items);
a0d0e21e 3521 }
54310121 3522 else if (gimme == G_ARRAY)
3523 SP += items;
a0d0e21e
LW
3524 RETURN;
3525 }
3526 else {
3527 SV *src;
3528
d343c3ef 3529 ENTER_with_name("grep_item"); /* enter inner scope */
1d7c1841 3530 SAVEVPTR(PL_curpm);
a0d0e21e 3531
6cae08a8 3532 src = PL_stack_base[TOPMARK];
60779a30 3533 if (SvPADTMP(src)) {
6cae08a8 3534 src = PL_stack_base[TOPMARK] = sv_mortalcopy(src);
a0ed822e
FC
3535 PL_tmps_floor++;
3536 }
a0d0e21e 3537 SvTEMP_off(src);
ffd49c98 3538 DEFSV_set(src);
a0d0e21e
LW
3539
3540 RETURNOP(cLOGOP->op_other);
3541 }
3542}
3543
799da9d7 3544/* leave_adjust_stacks():
f7a874b8 3545 *
e02ce34b
DM
3546 * Process a scope's return args (in the range from_sp+1 .. PL_stack_sp),
3547 * positioning them at to_sp+1 onwards, and do the equivalent of a
3548 * FREEMPS and TAINT_NOT.
3549 *
f7a874b8
DM
3550 * Not intended to be called in void context.
3551 *
799da9d7
DM
3552 * When leaving a sub, eval, do{} or other scope, the things that need
3553 * doing to process the return args are:
f7a874b8 3554 * * in scalar context, only return the last arg (or PL_sv_undef if none);
799da9d7
DM
3555 * * for the types of return that return copies of their args (such
3556 * as rvalue sub return), make a mortal copy of every return arg,
3557 * except where we can optimise the copy away without it being
3558 * semantically visible;
3559 * * make sure that the arg isn't prematurely freed; in the case of an
3560 * arg not copied, this may involve mortalising it. For example, in
f7a874b8
DM
3561 * C<sub f { my $x = ...; $x }>, $x would be freed when we do
3562 * CX_LEAVE_SCOPE(cx) unless it's protected or copied.
3563 *
799da9d7
DM
3564 * What condition to use when deciding whether to pass the arg through
3565 * or make a copy, is determined by the 'pass' arg; its valid values are:
3566 * 0: rvalue sub/eval exit
3567 * 1: other rvalue scope exit
3568 * 2: :lvalue sub exit in rvalue context
3569 * 3: :lvalue sub exit in lvalue context and other lvalue scope exits
3570 *
f7a874b8 3571 * There is a big issue with doing a FREETMPS. We would like to free any
799da9d7 3572 * temps created by the last statement which the sub executed, rather than
f7a874b8
DM
3573 * leaving them for the caller. In a situation where a sub call isn't
3574 * soon followed by a nextstate (e.g. nested recursive calls, a la
3575 * fibonacci()), temps can accumulate, causing memory and performance
3576 * issues.
3577 *
3578 * On the other hand, we don't want to free any TEMPs which are keeping
799da9d7
DM
3579 * alive any return args that we skipped copying; nor do we wish to undo
3580 * any mortalising done here.
f7a874b8
DM
3581 *
3582 * The solution is to split the temps stack frame into two, with a cut
3583 * point delineating the two halves. We arrange that by the end of this
3584 * function, all the temps stack frame entries we wish to keep are in the
799da9d7 3585 * range PL_tmps_floor+1.. tmps_base-1, while the ones to free now are in
f7a874b8
DM
3586 * the range tmps_base .. PL_tmps_ix. During the course of this
3587 * function, tmps_base starts off as PL_tmps_floor+1, then increases
3588 * whenever we find or create a temp that we know should be kept. In
3589 * general the stuff above tmps_base is undecided until we reach the end,
3590 * and we may need a sort stage for that.
3591 *
3592 * To determine whether a TEMP is keeping a return arg alive, every
3593 * arg that is kept rather than copied and which has the SvTEMP flag
3594 * set, has the flag temporarily unset, to mark it. At the end we scan
799da9d7 3595 * the temps stack frame above the cut for entries without SvTEMP and
f7a874b8 3596 * keep them, while turning SvTEMP on again. Note that if we die before
799da9d7 3597 * the SvTEMPs flags are set again, its safe: at worst, subsequent use of
f7a874b8
DM
3598 * those SVs may be slightly less efficient.
3599 *
3600 * In practice various optimisations for some common cases mean we can
3601 * avoid most of the scanning and swapping about with the temps stack.
3602 */
3603
799da9d7 3604void
1c23e2bd 3605Perl_leave_adjust_stacks(pTHX_ SV **from_sp, SV **to_sp, U8 gimme, int pass)
a0d0e21e 3606{
263e0548 3607 dVAR;
20b7effb 3608 dSP;
f7a874b8
DM
3609 SSize_t tmps_base; /* lowest index into tmps stack that needs freeing now */
3610 SSize_t nargs;
3611
799da9d7
DM
3612 PERL_ARGS_ASSERT_LEAVE_ADJUST_STACKS;
3613
f7a874b8
DM
3614 TAINT_NOT;
3615
3616 if (gimme == G_ARRAY) {
e02ce34b
DM
3617 nargs = SP - from_sp;
3618 from_sp++;
f7a874b8
DM
3619 }
3620 else {
3621 assert(gimme == G_SCALAR);
e02ce34b 3622 if (UNLIKELY(from_sp >= SP)) {
f7a874b8 3623 /* no return args */
e02ce34b 3624 assert(from_sp == SP);
f7a874b8
DM
3625 EXTEND(SP, 1);
3626 *++SP = &PL_sv_undef;
e02ce34b 3627 to_sp = SP;
f7a874b8
DM
3628 nargs = 0;
3629 }
3630 else {
3631 from_sp = SP;
3632 nargs = 1;
3633 }
3634 }
3635
3636 /* common code for G_SCALAR and G_ARRAY */
3637
3638 tmps_base = PL_tmps_floor + 1;
3639
3640 assert(nargs >= 0);
3641 if (nargs) {
3642 /* pointer version of tmps_base. Not safe across temp stack
3643 * reallocs. */
3644 SV **tmps_basep;
3645
3646 EXTEND_MORTAL(nargs); /* one big extend for worst-case scenario */
3647 tmps_basep = PL_tmps_stack + tmps_base;
f7a874b8
DM
3648
3649 /* process each return arg */
3650
3651 do {
3652 SV *sv = *from_sp++;
3653
3654 assert(PL_tmps_ix + nargs < PL_tmps_max);
3645bb38
DM
3655#ifdef DEBUGGING
3656 /* PADTMPs with container set magic shouldn't appear in the
3657 * wild. This assert is more important for pp_leavesublv(),
3658 * but by testing for it here, we're more likely to catch
3659 * bad cases (what with :lvalue subs not being widely
3660 * deployed). The two issues are that for something like
3661 * sub :lvalue { $tied{foo} }
3662 * or
3663 * sub :lvalue { substr($foo,1,2) }
3664 * pp_leavesublv() will croak if the sub returns a PADTMP,
3665 * and currently functions like pp_substr() return a mortal
3666 * rather than using their PADTMP when returning a PVLV.
3667 * This is because the PVLV will hold a ref to $foo,
3668 * so $foo would get delayed in being freed while
3669 * the PADTMP SV remained in the PAD.
3670 * So if this assert fails it means either:
3671 * 1) there is pp code similar to pp_substr that is
3672 * returning a PADTMP instead of a mortal, and probably
3673 * needs fixing, or
5d9c1c9a 3674 * 2) pp_leavesublv is making unwarranted assumptions
3645bb38
DM
3675 * about always croaking on a PADTMP
3676 */
3677 if (SvPADTMP(sv) && SvSMAGICAL(sv)) {
3678 MAGIC *mg;
3679 for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) {
3680 assert(PERL_MAGIC_TYPE_IS_VALUE_MAGIC(mg->mg_type));
3681 }
3682 }
3683#endif
f7a874b8 3684
799da9d7
DM
3685 if (
3686 pass == 0 ? (SvTEMP(sv) && !SvMAGICAL(sv) && SvREFCNT(sv) == 1)
3687 : pass == 1 ? ((SvTEMP(sv) || SvPADTMP(sv)) && !SvMAGICAL(sv) && SvREFCNT(sv) == 1)
3688 : pass == 2 ? (!SvPADTMP(sv))
3689 : 1)
3690 {
3691 /* pass through: skip copy for logic or optimisation
3692 * reasons; instead mortalise it, except that ... */
e02ce34b 3693 *++to_sp = sv;
f7a874b8 3694
799da9d7
DM
3695 if (SvTEMP(sv)) {
3696 /* ... since this SV is an SvTEMP , we don't need to
3697 * re-mortalise it; instead we just need to ensure
3698 * that its existing entry in the temps stack frame
3699 * ends up below the cut and so avoids being freed
3700 * this time round. We mark it as needing to be kept
3701 * by temporarily unsetting SvTEMP; then at the end,
3702 * we shuffle any !SvTEMP entries on the tmps stack
3703 * back below the cut.
3704 * However, there's a significant chance that there's
3705 * a 1:1 correspondence between the first few (or all)
3706 * elements in the return args stack frame and those
3707 * in the temps stack frame; e,g.:
3708 * sub f { ....; map {...} .... },
3709 * or if we're exiting multiple scopes and one of the
3710 * inner scopes has already made mortal copies of each
3711 * return arg.
3712 *
3713 * If so, this arg sv will correspond to the next item
3714 * on the tmps stack above the cut, and so can be kept
3715 * merely by moving the cut boundary up one, rather
3716 * than messing with SvTEMP. If all args are 1:1 then
3717 * we can avoid the sorting stage below completely.
977d0c81
DM
3718 *
3719 * If there are no items above the cut on the tmps
3720 * stack, then the SvTEMP must comne from an item
3721 * below the cut, so there's nothing to do.
799da9d7 3722 */
977d0c81
DM
3723 if (tmps_basep <= &PL_tmps_stack[PL_tmps_ix]) {
3724 if (sv == *tmps_basep)
3725 tmps_basep++;
3726 else
3727 SvTEMP_off(sv);
3728 }
799da9d7 3729 }
75bc488d 3730 else if (!SvPADTMP(sv)) {
799da9d7 3731 /* mortalise arg to avoid it being freed during save
75bc488d 3732 * stack unwinding. Pad tmps don't need mortalising as
977d0c81
DM
3733 * they're never freed. This is the equivalent of
3734 * sv_2mortal(SvREFCNT_inc(sv)), except that:
799da9d7
DM
3735 * * it assumes that the temps stack has already been
3736 * extended;
3737 * * it puts the new item at the cut rather than at
3738 * ++PL_tmps_ix, moving the previous occupant there
3739 * instead.
3740 */
3741 if (!SvIMMORTAL(sv)) {
977d0c81 3742 SvREFCNT_inc_simple_void_NN(sv);
799da9d7 3743 SvTEMP_on(sv);
977d0c81
DM
3744 /* Note that if there's nothing above the cut,
3745 * this copies the garbage one slot above
3746 * PL_tmps_ix onto itself. This is harmless (the
3747 * stack's already been extended), but might in
3748 * theory trigger warnings from tools like ASan
3749 */
799da9d7
DM
3750 PL_tmps_stack[++PL_tmps_ix] = *tmps_basep;
3751 *tmps_basep++ = sv;
3752 }
3753 }
f7a874b8
DM
3754 }
3755 else {
3756 /* Make a mortal copy of the SV.
3757 * The following code is the equivalent of sv_mortalcopy()
3758 * except that:
3759 * * it assumes the temps stack has already been extended;
3760 * * it optimises the copying for some simple SV types;
3761 * * it puts the new item at the cut rather than at
3762 * ++PL_tmps_ix, moving the previous occupant there
3763 * instead.
3764 */
3765 SV *newsv = newSV(0);
3766
3767 PL_tmps_stack[++PL_tmps_ix] = *tmps_basep;
3768 /* put it on the tmps stack early so it gets freed if we die */
3769 *tmps_basep++ = newsv;
e02ce34b 3770 *++to_sp = newsv;
f7a874b8
DM
3771
3772 if (SvTYPE(sv) <= SVt_IV) {
3773 /* arg must be one of undef, IV/UV, or RV: skip
3774 * sv_setsv_flags() and do the copy directly */
3775 U32 dstflags;
3776 U32 srcflags = SvFLAGS(sv);
3777
3778 assert(!SvGMAGICAL(sv));
3779 if (srcflags & (SVf_IOK|SVf_ROK)) {
3780 SET_SVANY_FOR_BODYLESS_IV(newsv);
3781
3782 if (srcflags & SVf_ROK) {
3783 newsv->sv_u.svu_rv = SvREFCNT_inc(SvRV(sv));
3784 /* SV type plus flags */
3785 dstflags = (SVt_IV|SVf_ROK|SVs_TEMP);
3786 }
3787 else {
3788 /* both src and dst are <= SVt_IV, so sv_any
3789 * points to the head; so access the heads
3790 * directly rather than going via sv_any.
3791 */
3792 assert( &(sv->sv_u.svu_iv)
3793 == &(((XPVIV*) SvANY(sv))->xiv_iv));
3794 assert( &(newsv->sv_u.svu_iv)
3795 == &(((XPVIV*) SvANY(newsv))->xiv_iv));
3796 newsv->sv_u.svu_iv = sv->sv_u.svu_iv;
3797 /* SV type plus flags */
3798 dstflags = (SVt_IV|SVf_IOK|SVp_IOK|SVs_TEMP
3799 |(srcflags & SVf_IVisUV));
3800 }
3801 }
3802 else {
3803 assert(!(srcflags & SVf_OK));
3804 dstflags = (SVt_NULL|SVs_TEMP); /* SV type plus flags */
3805 }
3806 SvFLAGS(newsv) = dstflags;
3807
3808 }
3809 else {
3810 /* do the full sv_setsv() */
3811 SSize_t old_base;
3812
3813 SvTEMP_on(newsv);
3814 old_base = tmps_basep - PL_tmps_stack;
3815 SvGETMAGIC(sv);
3816 sv_setsv_flags(newsv, sv, SV_DO_COW_SVSETSV);
799da9d7 3817 /* the mg_get or sv_setsv might have created new temps
f7a874b8
DM
3818 * or realloced the tmps stack; regrow and reload */
3819 EXTEND_MORTAL(nargs);
3820 tmps_basep = PL_tmps_stack + old_base;
3821 TAINT_NOT; /* Each item is independent */
3822 }
3823
3824 }
3825 } while (--nargs);
3826
3827 /* If there are any temps left above the cut, we need to sort
3828 * them into those to keep and those to free. The only ones to
3829 * keep are those for which we've temporarily unset SvTEMP.
3830 * Work inwards from the two ends at tmps_basep .. PL_tmps_ix,
3831 * swapping pairs as necessary. Stop when we meet in the middle.
3832 */
3833 {
3834 SV **top = PL_tmps_stack + PL_tmps_ix;
3835 while (tmps_basep <= top) {
3836 SV *sv = *top;
3837 if (SvTEMP(sv))
3838 top--;
3839 else {
3840 SvTEMP_on(sv);
3841 *top = *tmps_basep;
3842 *tmps_basep = sv;
3843 tmps_basep++;
3844 }
3845 }
3846 }
3847
3848 tmps_base = tmps_basep - PL_tmps_stack;
3849 }
3850
e02ce34b 3851 PL_stack_sp = to_sp;
f7a874b8
DM
3852
3853 /* unrolled FREETMPS() but using tmps_base-1 rather than PL_tmps_floor */
3854 while (PL_tmps_ix >= tmps_base) {
3855 SV* const sv = PL_tmps_stack[PL_tmps_ix--];
3856#ifdef PERL_POISON
3857 PoisonWith(PL_tmps_stack + PL_tmps_ix + 1, 1, SV *, 0xAB);
3858#endif
3859 if (LIKELY(sv)) {
3860 SvTEMP_off(sv);
3861 SvREFCNT_dec_NN(sv); /* note, can modify tmps_ix!!! */
3862 }
3863 }
3864}
3865
3866
c349b9a0
DM
3867/* also tail-called by pp_return */
3868
f7a874b8
DM
3869PP(pp_leavesub)
3870{
1c23e2bd 3871 U8 gimme;
eb578fdb 3872 PERL_CONTEXT *cx;
f7a874b8 3873 SV **oldsp;
5da525e9 3874 OP *retop;
a0d0e21e 3875
4ebe6e95 3876 cx = CX_CUR();
61d3b95a
DM
3877 assert(CxTYPE(cx) == CXt_SUB);
3878
3879 if (CxMULTICALL(cx)) {
1f0ba93b
DM
3880 /* entry zero of a stack is always PL_sv_undef, which
3881 * simplifies converting a '()' return into undef in scalar context */
3882 assert(PL_stack_sp > PL_stack_base || *PL_stack_base == &PL_sv_undef);
9850bf21 3883 return 0;
1f0ba93b 3884 }
9850bf21 3885
61d3b95a 3886 gimme = cx->blk_gimme;
f7a874b8 3887 oldsp = PL_stack_base + cx->blk_oldsp; /* last arg of previous frame */
1c846c1f 3888
f7a874b8
DM
3889 if (gimme == G_VOID)
3890 PL_stack_sp = oldsp;
3891 else
e02ce34b 3892 leave_adjust_stacks(oldsp, oldsp, gimme, 0);
1c846c1f 3893
2f450c1b 3894 CX_LEAVE_SCOPE(cx);
a73d8813 3895 cx_popsub(cx); /* Stack values are safe: release CV and @_ ... */
ed8ff0f3 3896 cx_popblock(cx);
5da525e9
DM
3897 retop = cx->blk_sub.retop;
3898 CX_POP(cx);
a0d0e21e 3899
5da525e9 3900 return retop;
a0d0e21e
LW
3901}
3902
6e45d846
DM
3903
3904/* clear (if possible) or abandon the current @_. If 'abandon' is true,
3905 * forces an abandon */
3906
3907void
3908Perl_clear_defarray(pTHX_ AV* av, bool abandon)
3909{
3910 const SSize_t fill = AvFILLp(av);
3911
3912 PERL_ARGS_ASSERT_CLEAR_DEFARRAY;
3913
656457d0 3914 if (LIKELY(!abandon && SvREFCNT(av) == 1 && !SvMAGICAL(av))) {
c3d969bf 3915 av_clear(av);
656457d0
DM
3916 AvREIFY_only(av);
3917 }
c3d969bf 3918 else {
656457d0
DM
3919 AV *newav = newAV();
3920 av_extend(newav, fill);
3921 AvREIFY_only(newav);
3922 PAD_SVl(0) = MUTABLE_SV(newav);
c3d969bf 3923 SvREFCNT_dec_NN(av);
c3d969bf 3924 }
6e45d846
DM
3925}
3926
3927
a0d0e21e
LW
3928PP(pp_entersub)
3929{
20b7effb 3930 dSP; dPOPss;
a0d0e21e 3931 GV *gv;
eb578fdb
KW
3932 CV *cv;
3933 PERL_CONTEXT *cx;
8ae997c5 3934 I32 old_savestack_ix;
a0d0e21e 3935
f5719c02 3936 if (UNLIKELY(!sv))
1ff56747
DM
3937 goto do_die;
3938
3939 /* Locate the CV to call:
3940 * - most common case: RV->CV: f(), $ref->():
3941 * note that if a sub is compiled before its caller is compiled,
3942 * the stash entry will be a ref to a CV, rather than being a GV.
3943 * - second most common case: CV: $ref->method()
3944 */
3945
3946 /* a non-magic-RV -> CV ? */
3947 if (LIKELY( (SvFLAGS(sv) & (SVf_ROK|SVs_GMG)) == SVf_ROK)) {
3948 cv = MUTABLE_CV(SvRV(sv));
3949 if (UNLIKELY(SvOBJECT(cv))) /* might be overloaded */
3950 goto do_ref;
3951 }
3952 else
3953 cv = MUTABLE_CV(sv);
3954
3955 /* a CV ? */
3956 if (UNLIKELY(SvTYPE(cv) != SVt_PVCV)) {
3957 /* handle all the weird cases */
313107ce 3958 switch (SvTYPE(sv)) {
1ff56747
DM
3959 case SVt_PVLV:
3960 if (!isGV_with_GP(sv))
3961 goto do_default;
3962 /* FALLTHROUGH */
313107ce 3963 case SVt_PVGV:
1ff56747
DM
3964 cv = GvCVu((const GV *)sv);
3965 if (UNLIKELY(!cv)) {
313107ce
DM
3966 HV *stash;
3967 cv = sv_2cv(sv, &stash, &gv, 0);
1ff56747
DM
3968 if (!cv) {
3969 old_savestack_ix = PL_savestack_ix;
3970 goto try_autoload;
3971 }
313107ce
DM
3972 }
3973 break;
1ff56747 3974
313107ce 3975 default:
1ff56747 3976 do_default:
313107ce
DM
3977 SvGETMAGIC(sv);
3978 if (SvROK(sv)) {
1ff56747
DM
3979 do_ref:
3980 if (UNLIKELY(SvAMAGIC(sv))) {
313107ce
DM
3981 sv = amagic_deref_call(sv, to_cv_amg);
3982 /* Don't SPAGAIN here. */
3983 }
3984 }
3985 else {
3986 const char *sym;
3987 STRLEN len;
1ff56747 3988 if (UNLIKELY(!SvOK(sv)))
313107ce 3989 DIE(aTHX_ PL_no_usym, "a subroutine");
1ff56747
DM
3990
3991 if (UNLIKELY(sv == &PL_sv_yes)) { /* unfound import, ignore */
44dd5d49 3992 if (PL_op->op_flags & OPf_STACKED) /* hasargs */
1ff56747
DM
3993 SP = PL_stack_base + POPMARK;
3994 else
3995 (void)POPMARK;
3996 if (GIMME_V == G_SCALAR)
3997 PUSHs(&PL_sv_undef);
3998 RETURN;
3999 }
4000
313107ce
DM
4001 sym = SvPV_nomg_const(sv, len);
4002 if (PL_op->op_private & HINT_STRICT_REFS)
4003 DIE(aTHX_ "Can't use string (\"%" SVf32 "\"%s) as a subroutine ref while \"strict refs\" in use", sv, len>32 ? "..." : "");
4004 cv = get_cvn_flags(sym, len, GV_ADD|SvUTF8(sv));
4005 break;
4006 }
4007 cv = MUTABLE_CV(SvRV(sv));
1ff56747 4008 if (LIKELY(SvTYPE(cv) == SVt_PVCV))
313107ce 4009 break;
924ba076 4010 /* FALLTHROUGH */
313107ce
DM
4011 case SVt_PVHV:
4012 case SVt_PVAV:
1ff56747 4013 do_die:
313107ce 4014 DIE(aTHX_ "Not a CODE reference");
313107ce 4015 }
f5719c02 4016 }
a0d0e21e 4017
8ae997c5 4018 /* At this point we want to save PL_savestack_ix, either by doing a
a73d8813 4019 * cx_pushsub(), or for XS, doing an ENTER. But we don't yet know the final
8ae997c5 4020 * CV we will be using (so we don't know whether its XS, so we can't
a73d8813 4021 * cx_pushsub() or ENTER yet), and determining cv may itself push stuff on
8ae997c5
DM
4022 * the save stack. So remember where we are currently on the save
4023 * stack, and later update the CX or scopestack entry accordingly. */
4024 old_savestack_ix = PL_savestack_ix;
a0d0e21e 4025
f29834c6
DM
4026 /* these two fields are in a union. If they ever become separate,
4027 * we have to test for both of them being null below */
9a28816a 4028 assert(cv);
f29834c6
DM
4029 assert((void*)&CvROOT(cv) == (void*)&CvXSUB(cv));
4030 while (UNLIKELY(!CvROOT(cv))) {
2f349aa0
NC
4031 GV* autogv;
4032 SV* sub_name;
4033
4034 /* anonymous or undef'd function leaves us no recourse */
ae77754a 4035 if (CvLEXICAL(cv) && CvHASGV(cv))
147e3846 4036 DIE(aTHX_ "Undefined subroutine &%" SVf " called",
ecf05a58 4037 SVfARG(cv_name(cv, NULL, 0)));
ae77754a 4038 if (CvANON(cv) || !CvHASGV(cv)) {
2f349aa0 4039 DIE(aTHX_ "Undefined subroutine called");
7d2057d8 4040 }
2f349aa0
NC
4041
4042 /* autoloaded stub? */
ae77754a 4043 if (cv != GvCV(gv = CvGV(cv))) {
2f349aa0
NC
4044 cv = GvCV(gv);
4045 }
4046 /* should call AUTOLOAD now? */
4047 else {
7b52d656 4048 try_autoload:
b4b431d9 4049 autogv = gv_autoload_pvn(GvSTASH(gv), GvNAME(gv), GvNAMELEN(gv),
1de22db2
FC
4050 (GvNAMEUTF8(gv) ? SVf_UTF8 : 0)
4051 |(PL_op->op_flags & OPf_REF
4052 ? GV_AUTOLOAD_ISMETHOD
4053 : 0));
b4b431d9 4054 cv = autogv ? GvCV(autogv) : NULL;
2f349aa0 4055 }
b4b431d9
DM
4056 if (!cv) {
4057 sub_name = sv_newmortal();
4058 gv_efullname3(sub_name, gv, NULL);
147e3846 4059 DIE(aTHX_ "Undefined subroutine &%" SVf " called", SVfARG(sub_name));
b4b431d9 4060 }
a0d0e21e
LW
4061 }
4062
4f25d042
DM
4063 /* unrolled "CvCLONE(cv) && ! CvCLONED(cv)" */
4064 if (UNLIKELY((CvFLAGS(cv) & (CVf_CLONE|CVf_CLONED)) == CVf_CLONE))
654c6d71
DM
4065 DIE(aTHX_ "Closure prototype called");
4066
f5719c02
DM
4067 if (UNLIKELY((PL_op->op_private & OPpENTERSUB_DB) && GvCV(PL_DBsub)
4068 && !CvNODEBUG(cv)))
4069 {
005a8a35 4070 Perl_get_db_sub(aTHX_ &sv, cv);
a9ef256d
NC
4071 if (CvISXSUB(cv))
4072 PL_curcopdb = PL_curcop;
1ad62f64
BR
4073 if (CvLVALUE(cv)) {
4074 /* check for lsub that handles lvalue subroutines */
07b605e5 4075 cv = GvCV(gv_fetchpvs("DB::lsub", GV_ADDMULTI, SVt_PVCV));
1ad62f64
BR
4076 /* if lsub not found then fall back to DB::sub */
4077 if (!cv) cv = GvCV(PL_DBsub);
4078 } else {
4079 cv = GvCV(PL_DBsub);
4080 }
a9ef256d 4081
ccafdc96
RGS
4082 if (!cv || (!CvXSUB(cv) && !CvSTART(cv)))
4083 DIE(aTHX_ "No DB::sub routine defined");
67caa1fe 4084 }
a0d0e21e 4085
aed2304a 4086 if (!(CvISXSUB(cv))) {
f1025168 4087 /* This path taken at least 75% of the time */
a0d0e21e 4088 dMARK;
c53244ca 4089 PADLIST *padlist;
3689ad62 4090 I32 depth;
44dd5d49 4091 bool hasargs;
1c23e2bd 4092 U8 gimme;
f5719c02 4093
20448bad
DM
4094 /* keep PADTMP args alive throughout the call (we need to do this
4095 * because @_ isn't refcounted). Note that we create the mortals
4096 * in the caller's tmps frame, so they won't be freed until after
4097 * we return from the sub.
4098 */
91bab027 4099 {
20448bad
DM
4100 SV **svp = MARK;
4101 while (svp < SP) {
4102 SV *sv = *++svp;
4103 if (!sv)
4104 continue;
4105 if (SvPADTMP(sv))
4106 *svp = sv = sv_mortalcopy(sv);
4107 SvTEMP_off(sv);
4108 }
4109 }
4110
801bbf61 4111 gimme = GIMME_V;
ed8ff0f3 4112 cx = cx_pushblock(CXt_SUB, gimme, MARK, old_savestack_ix);
44dd5d49 4113 hasargs = cBOOL(PL_op->op_flags & OPf_STACKED);
a73d8813 4114 cx_pushsub(cx, cv, PL_op->op_next, hasargs);
8ae997c5 4115
c53244ca 4116 padlist = CvPADLIST(cv);
d2af2719 4117 if (UNLIKELY((depth = ++CvDEPTH(cv)) >= 2))
3689ad62 4118 pad_push(padlist, depth);
3689ad62 4119 PAD_SET_CUR_NOSAVE(padlist, depth);
f5719c02 4120 if (LIKELY(hasargs)) {
10533ace 4121 AV *const av = MUTABLE_AV(PAD_SVl(0));
bdf02c57
DM
4122 SSize_t items;
4123 AV **defavp;
4124
bdf02c57
DM
4125 defavp = &GvAV(PL_defgv);
4126 cx->blk_sub.savearray = *defavp;
4127 *defavp = MUTABLE_AV(SvREFCNT_inc_simple_NN(av));
a0d0e21e 4128
72f28af4
DM
4129 /* it's the responsibility of whoever leaves a sub to ensure
4130 * that a clean, empty AV is left in pad[0]. This is normally
a73d8813 4131 * done by cx_popsub() */
72f28af4
DM
4132 assert(!AvREAL(av) && AvFILLp(av) == -1);
4133
4134 items = SP - MARK;
f5719c02 4135 if (UNLIKELY(items - 1 > AvMAX(av))) {
77d27ef6 4136 SV **ary = AvALLOC(av);
77d27ef6 4137 Renew(ary, items, SV*);
00195859 4138 AvMAX(av) = items - 1;
77d27ef6
SF
4139 AvALLOC(av) = ary;
4140 AvARRAY(av) = ary;
4141 }
4142
bdf02c57 4143 Copy(MARK+1,AvARRAY(av),items,SV*);
93965878 4144 AvFILLp(av) = items - 1;
a0d0e21e 4145 }
f5719c02
DM
4146 if (UNLIKELY((cx->blk_u16 & OPpENTERSUB_LVAL_MASK) == OPpLVAL_INTRO &&
4147 !CvLVALUE(cv)))
147e3846 4148 DIE(aTHX_ "Can't modify non-lvalue subroutine call of &%" SVf,
0f948285 4149 SVfARG(cv_name(cv, NULL, 0)));
4a925ff6
GS
4150 /* warning must come *after* we fully set up the context
4151 * stuff so that __WARN__ handlers can safely dounwind()
4152 * if they want to
4153 */
3689ad62 4154 if (UNLIKELY(depth == PERL_SUB_DEPTH_WARN
f5719c02
DM
4155 && ckWARN(WARN_RECURSION)
4156 && !(PERLDB_SUB && cv == GvCV(PL_DBsub))))
4a925ff6 4157 sub_crush_depth(cv);
a0d0e21e
LW
4158 RETURNOP(CvSTART(cv));
4159 }
f1025168 4160 else {
de935cc9 4161 SSize_t markix = TOPMARK;
71d19c37 4162 bool is_scalar;
f1025168 4163
8ae997c5
DM
4164 ENTER;
4165 /* pretend we did the ENTER earlier */
4166 PL_scopestack[PL_scopestack_ix - 1] = old_savestack_ix;
4167
b479c9f2 4168 SAVETMPS;
3a76ca88 4169 PUTBACK;
f1025168 4170
f5719c02 4171 if (UNLIKELY(((PL_op->op_private
490576d1 4172 & CX_PUSHSUB_GET_LVALUE_MASK(Perl_is_lvalue_sub)
4587c532 4173 ) & OPpENTERSUB_LVAL_MASK) == OPpLVAL_INTRO &&
f5719c02 4174 !CvLVALUE(cv)))
147e3846 4175 DIE(aTHX_ "Can't modify non-lvalue subroutine call of &%" SVf,
0f948285 4176 SVfARG(cv_name(cv, NULL, 0)));
4587c532 4177
44dd5d49 4178 if (UNLIKELY(!(PL_op->op_flags & OPf_STACKED) && GvAV(PL_defgv))) {
3a76ca88
RGS
4179 /* Need to copy @_ to stack. Alternative may be to
4180 * switch stack to @_, and copy return values
4181 * back. This would allow popping @_ in XSUB, e.g.. XXXX */
4182 AV * const av = GvAV(PL_defgv);
ad39f3a2 4183 const SSize_t items = AvFILL(av) + 1;
3a76ca88
RGS
4184
4185 if (items) {
dd2a7f90 4186 SSize_t i = 0;
ad39f3a2 4187 const bool m = cBOOL(SvRMAGICAL(av));
3a76ca88
RGS
4188 /* Mark is at the end of the stack. */
4189 EXTEND(SP, items);
dd2a7f90 4190 for (; i < items; ++i)
ad39f3a2
FC
4191 {
4192 SV *sv;
4193 if (m) {
4194 SV ** const svp = av_fetch(av, i, 0);
4195 sv = svp ? *svp : NULL;
4196 }
4197 else sv = AvARRAY(av)[i];
4198 if (sv) SP[i+1] = sv;
dd2a7f90 4199 else {
199f858d 4200 SP[i+1] = newSVavdefelem(av, i, 1);
dd2a7f90 4201 }
ad39f3a2 4202 }
3a76ca88
RGS
4203 SP += items;
4204 PUTBACK ;
4205 }
4206 }
3455055f
FC
4207 else {
4208 SV **mark = PL_stack_base + markix;
de935cc9 4209 SSize_t items = SP - mark;
3455055f
FC
4210 while (items--) {
4211 mark++;
60779a30 4212 if (*mark && SvPADTMP(*mark)) {
3455055f 4213 *mark = sv_mortalcopy(*mark);
60779a30 4214 }
3455055f
FC
4215 }
4216 }
3a76ca88 4217 /* We assume first XSUB in &DB::sub is the called one. */
f5719c02 4218 if (UNLIKELY(PL_curcopdb)) {
3a76ca88
RGS
4219 SAVEVPTR(PL_curcop);
4220 PL_curcop = PL_curcopdb;
4221 PL_curcopdb = NULL;
4222 }
4223 /* Do we need to open block here? XXXX */
72df79cf 4224
71d19c37
DM
4225 /* calculate gimme here as PL_op might get changed and then not
4226 * restored until the LEAVE further down */
4227 is_scalar = (GIMME_V == G_SCALAR);
4228
72df79cf
GF
4229 /* CvXSUB(cv) must not be NULL because newXS() refuses NULL xsub address */
4230 assert(CvXSUB(cv));
16c91539 4231 CvXSUB(cv)(aTHX_ cv);
3a76ca88
RGS
4232
4233 /* Enforce some sanity in scalar context. */
71d19c37 4234 if (is_scalar) {
89a18b40
DM
4235 SV **svp = PL_stack_base + markix + 1;
4236 if (svp != PL_stack_sp) {
4237 *svp = svp > PL_stack_sp ? &PL_sv_undef : *PL_stack_sp;
4238 PL_stack_sp = svp;
4239 }
3a76ca88 4240 }
a57c6685 4241 LEAVE;
f1025168
NC
4242 return NORMAL;
4243 }
a0d0e21e
LW
4244}
4245
44a8e56a 4246void
864dbfa3 4247Perl_sub_crush_depth(pTHX_ CV *cv)
44a8e56a 4248{
7918f24d
NC
4249 PERL_ARGS_ASSERT_SUB_CRUSH_DEPTH;
4250
44a8e56a 4251 if (CvANON(cv))
9014280d 4252 Perl_warner(aTHX_ packWARN(WARN_RECURSION), "Deep recursion on anonymous subroutine");
44a8e56a 4253 else {
147e3846 4254 Perl_warner(aTHX_ packWARN(WARN_RECURSION), "Deep recursion on subroutine \"%" SVf "\"",
ecf05a58 4255 SVfARG(cv_name(cv,NULL,0)));
44a8e56a 4256 }
4257}
4258
4fa06845
DM
4259
4260
4261/* like croak, but report in context of caller */
4262
4263void
4264Perl_croak_caller(const char *pat, ...)
4265{
4266 dTHX;
4267 va_list args;
4268 const PERL_CONTEXT *cx = caller_cx(0, NULL);
4269
4270 /* make error appear at call site */
4271 assert(cx);
4272 PL_curcop = cx->blk_oldcop;
4273
4274 va_start(args, pat);
4275 vcroak(pat, &args);
4276 NOT_REACHED; /* NOTREACHED */
4277 va_end(args);
4278}
4279
4280
a0d0e21e
LW
4281PP(pp_aelem)
4282{
20b7effb 4283 dSP;
a0d0e21e 4284 SV** svp;
a3b680e6 4285 SV* const elemsv = POPs;
d804643f 4286 IV elem = SvIV(elemsv);
502c6561 4287 AV *const av = MUTABLE_AV(POPs);
e1ec3a88 4288 const U32 lval = PL_op->op_flags & OPf_MOD || LVRET;
bbfdc870 4289 const U32 defer = PL_op->op_private & OPpLVAL_DEFER;
4ad10a0b
VP
4290 const bool localizing = PL_op->op_private & OPpLVAL_INTRO;
4291 bool preeminent = TRUE;
be6c24e0 4292 SV *sv;
a0d0e21e 4293
5d9574c1 4294 if (UNLIKELY(SvROK(elemsv) && !SvGAMAGIC(elemsv) && ckWARN(WARN_MISC)))
95b63a38 4295 Perl_warner(aTHX_ packWARN(WARN_MISC),
147e3846 4296 "Use of reference \"%" SVf "\" as array index",
be2597df 4297 SVfARG(elemsv));
5d9574c1 4298 if (UNLIKELY(SvTYPE(av) != SVt_PVAV))
a0d0e21e 4299 RETPUSHUNDEF;
4ad10a0b 4300
5d9574c1 4301 if (UNLIKELY(localizing)) {
4ad10a0b
VP
4302 MAGIC *mg;
4303 HV *stash;
4304
4305 /* If we can determine whether the element exist,
4306 * Try to preserve the existenceness of a tied array
4307 * element by using EXISTS and DELETE if possible.
4308 * Fallback to FETCH and STORE otherwise. */
4309 if (SvCANEXISTDELETE(av))
4310 preeminent = av_exists(av, elem);
4311 }
4312
68dc0745 4313 svp = av_fetch(av, elem, lval && !defer);
a0d0e21e 4314 if (lval) {
2b573ace 4315#ifdef PERL_MALLOC_WRAP
2b573ace 4316 if (SvUOK(elemsv)) {
a9c4fd4e 4317 const UV uv = SvUV(elemsv);
2b573ace
JH
4318 elem = uv > IV_MAX ? IV_MAX : uv;
4319 }
4320 else if (SvNOK(elemsv))
4321 elem = (IV)SvNV(elemsv);
a3b680e6
AL
4322 if (elem > 0) {
4323 static const char oom_array_extend[] =
4324 "Out of memory during array extend"; /* Duplicated in av.c */
2b573ace 4325 MEM_WRAP_CHECK_1(elem,SV*,oom_array_extend);
a3b680e6 4326 }
2b573ace 4327#endif
ce0d59fd 4328 if (!svp || !*svp) {
bbfdc870 4329 IV len;
68dc0745 4330 if (!defer)
cea2e8a9 4331 DIE(aTHX_ PL_no_aelem, elem);
b9f2b683 4332 len = av_tindex(av);
199f858d 4333 mPUSHs(newSVavdefelem(av,
bbfdc870
FC
4334 /* Resolve a negative index now, unless it points before the
4335 beginning of the array, in which case record it for error
4336 reporting in magic_setdefelem. */
199f858d
FC
4337 elem < 0 && len + elem >= 0 ? len + elem : elem,
4338 1));
68dc0745 4339 RETURN;
4340 }
5d9574c1 4341 if (UNLIKELY(localizing)) {
4ad10a0b
VP
4342 if (preeminent)
4343 save_aelem(av, elem, svp);
4344 else
4345 SAVEADELETE(av, elem);
4346 }
9026059d
GG
4347 else if (PL_op->op_private & OPpDEREF) {
4348 PUSHs(vivify_ref(*svp, PL_op->op_private & OPpDEREF));
4349 RETURN;
4350 }
a0d0e21e 4351 }
3280af22 4352 sv = (svp ? *svp : &PL_sv_undef);
39cf747a 4353 if (!lval && SvRMAGICAL(av) && SvGMAGICAL(sv)) /* see note in pp_helem() */
fd69380d 4354 mg_get(sv);
be6c24e0 4355 PUSHs(sv);
a0d0e21e
LW
4356 RETURN;
4357}
4358
9026059d 4359SV*
864dbfa3 4360Perl_vivify_ref(pTHX_ SV *sv, U32 to_what)
02a9e968 4361{
7918f24d
NC
4362 PERL_ARGS_ASSERT_VIVIFY_REF;
4363
5b295bef 4364 SvGETMAGIC(sv);
02a9e968
CS
4365 if (!SvOK(sv)) {
4366 if (SvREADONLY(sv))
cb077ed2 4367 Perl_croak_no_modify();
43230e26 4368 prepare_SV_for_RV(sv);
68dc0745 4369 switch (to_what) {
5f05dabc 4370 case OPpDEREF_SV:
561b68a9 4371 SvRV_set(sv, newSV(0));
5f05dabc 4372 break;
4373 case OPpDEREF_AV:
ad64d0ec 4374 SvRV_set(sv, MUTABLE_SV(newAV()));
5f05dabc 4375 break;
4376 case OPpDEREF_HV:
ad64d0ec 4377 SvRV_set(sv, MUTABLE_SV(newHV()));
5f05dabc 4378 break;
4379 }
02a9e968
CS
4380 SvROK_on(sv);
4381 SvSETMAGIC(sv);
7e482323 4382 SvGETMAGIC(sv);
02a9e968 4383 }
9026059d
GG
4384 if (SvGMAGICAL(sv)) {
4385 /* copy the sv without magic to prevent magic from being
4386 executed twice */
4387 SV* msv = sv_newmortal();
4388 sv_setsv_nomg(msv, sv);
4389 return msv;
4390 }
4391 return sv;
02a9e968
CS
4392}
4393
7d6c333c 4394PERL_STATIC_INLINE HV *
4395S_opmethod_stash(pTHX_ SV* meth)
f5d5a27c 4396{
a0d0e21e 4397 SV* ob;
56304f61 4398 HV* stash;
b55b14d0 4399
d648ffcb 4400 SV* const sv = PL_stack_base + TOPMARK == PL_stack_sp
147e3846 4401 ? (Perl_croak(aTHX_ "Can't call method \"%" SVf "\" without a "
f226e9be
FC
4402 "package or object reference", SVfARG(meth)),
4403 (SV *)NULL)
4404 : *(PL_stack_base + TOPMARK + 1);
f5d5a27c 4405
7d6c333c 4406 PERL_ARGS_ASSERT_OPMETHOD_STASH;
d648ffcb 4407
5d9574c1 4408 if (UNLIKELY(!sv))
7156e69a 4409 undefined:
147e3846 4410 Perl_croak(aTHX_ "Can't call method \"%" SVf "\" on an undefined value",
a214957f 4411 SVfARG(meth));
4f1b7578 4412
d648ffcb 4413 if (UNLIKELY(SvGMAGICAL(sv))) mg_get(sv);
4414 else if (SvIsCOW_shared_hash(sv)) { /* MyClass->meth() */
4415 stash = gv_stashsv(sv, GV_CACHE_ONLY);
7d6c333c 4416 if (stash) return stash;
d648ffcb 4417 }
4418
a0d0e21e 4419 if (SvROK(sv))
ad64d0ec 4420 ob = MUTABLE_SV(SvRV(sv));
7156e69a 4421 else if (!SvOK(sv)) goto undefined;
a77c16f7
FC
4422 else if (isGV_with_GP(sv)) {
4423 if (!GvIO(sv))
147e3846 4424 Perl_croak(aTHX_ "Can't call method \"%" SVf "\" "
a77c16f7
FC
4425 "without a package or object reference",
4426 SVfARG(meth));
4427 ob = sv;
4428 if (SvTYPE(ob) == SVt_PVLV && LvTYPE(ob) == 'y') {
4429 assert(!LvTARGLEN(ob));
4430 ob = LvTARG(ob);
4431 assert(ob);
4432 }
4433 *(PL_stack_base + TOPMARK + 1) = sv_2mortal(newRV(ob));
4434 }
a0d0e21e 4435 else {
89269094 4436 /* this isn't a reference */
a0d0e21e 4437 GV* iogv;
f937af42 4438 STRLEN packlen;
89269094 4439 const char * const packname = SvPV_nomg_const(sv, packlen);
d283e876 4440 const U32 packname_utf8 = SvUTF8(sv);
4441 stash = gv_stashpvn(packname, packlen, packname_utf8 | GV_CACHE_ONLY);
7d6c333c 4442 if (stash) return stash;
081fc587 4443
89269094 4444 if (!(iogv = gv_fetchpvn_flags(
d283e876 4445 packname, packlen, packname_utf8, SVt_PVIO
da6b625f 4446 )) ||
ad64d0ec 4447 !(ob=MUTABLE_SV(GvIO(iogv))))
a0d0e21e 4448 {
af09ea45 4449 /* this isn't the name of a filehandle either */
89269094 4450 if (!packlen)
834a4ddd 4451 {
147e3846 4452 Perl_croak(aTHX_ "Can't call method \"%" SVf "\" "
7156e69a
FC
4453 "without a package or object reference",
4454 SVfARG(meth));
834a4ddd 4455 }
af09ea45 4456 /* assume it's a package name */
d283e876 4457 stash = gv_stashpvn(packname, packlen, packname_utf8);
7d6c333c 4458 if (stash) return stash;
4459 else return MUTABLE_HV(sv);
a0d0e21e 4460 }
af09ea45 4461 /* it _is_ a filehandle name -- replace with a reference */
ad64d0ec 4462 *(PL_stack_base + TOPMARK + 1) = sv_2mortal(newRV(MUTABLE_SV(iogv)));
a0d0e21e
LW
4463 }
4464
1f3ffe4c 4465 /* if we got here, ob should be an object or a glob */
f0d43078 4466 if (!ob || !(SvOBJECT(ob)
a77c16f7 4467 || (isGV_with_GP(ob)
159b6efe 4468 && (ob = MUTABLE_SV(GvIO((const GV *)ob)))
f0d43078
GS
4469 && SvOBJECT(ob))))
4470 {
147e3846 4471 Perl_croak(aTHX_ "Can't call method \"%" SVf "\" on unblessed reference",
323dbd00 4472 SVfARG((SvPOK(meth) && SvPVX(meth) == PL_isa_DOES)
b375e37b
BF
4473 ? newSVpvs_flags("DOES", SVs_TEMP)
4474 : meth));
f0d43078 4475 }
a0d0e21e 4476
7d6c333c 4477 return SvSTASH(ob);
4478}
4479
4480PP(pp_method)
4481{
4482 dSP;
4483 GV* gv;
4484 HV* stash;
4485 SV* const meth = TOPs;
4486
4487 if (SvROK(meth)) {
4488 SV* const rmeth = SvRV(meth);
4489 if (SvTYPE(rmeth) == SVt_PVCV) {
4490 SETs(rmeth);
4491 RETURN;
4492 }
4493 }
a0d0e21e 4494
7d6c333c 4495 stash = opmethod_stash(meth);
af09ea45 4496
7d6c333c 4497 gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK);
4498 assert(gv);
4499
4500 SETs(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
4501 RETURN;
4502}
4503
810bd8b7 4504#define METHOD_CHECK_CACHE(stash,cache,meth) \
4505 const HE* const he = hv_fetch_ent(cache, meth, 0, 0); \
4506 if (he) { \
4507 gv = MUTABLE_GV(HeVAL(he)); \
4508 if (isGV(gv) && GvCV(gv) && (!GvCVGEN(gv) || GvCVGEN(gv) \
4509 == (PL_sub_generation + HvMROMETA(stash)->cache_gen))) \
4510 { \
4511 XPUSHs(MUTABLE_SV(GvCV(gv))); \
4512 RETURN; \
4513 } \
4514 } \
4515
7d6c333c 4516PP(pp_method_named)
4517{
4518 dSP;
4519 GV* gv;
4520 SV* const meth = cMETHOPx_meth(PL_op);
4521 HV* const stash = opmethod_stash(meth);
4522
4523 if (LIKELY(SvTYPE(stash) == SVt_PVHV)) {
810bd8b7 4524 METHOD_CHECK_CACHE(stash, stash, meth);
f5d5a27c
CS
4525 }
4526
7d6c333c 4527 gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK);
256d1bb2 4528 assert(gv);
9b9d0b15 4529
7d6c333c 4530 XPUSHs(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
4531 RETURN;
4532}
4533
4534PP(pp_method_super)
4535{
4536 dSP;
4537 GV* gv;
4538 HV* cache;
4539 SV* const meth = cMETHOPx_meth(PL_op);
4540 HV* const stash = CopSTASH(PL_curcop);
4541 /* Actually, SUPER doesn't need real object's (or class') stash at all,
4542 * as it uses CopSTASH. However, we must ensure that object(class) is
4543 * correct (this check is done by S_opmethod_stash) */
4544 opmethod_stash(meth);
4545
4546 if ((cache = HvMROMETA(stash)->super)) {
810bd8b7 4547 METHOD_CHECK_CACHE(stash, cache, meth);
4548 }
4549
4550 gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK|GV_SUPER);
4551 assert(gv);
4552
4553 XPUSHs(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
4554 RETURN;
4555}
4556
4557PP(pp_method_redir)
4558{
4559 dSP;
4560 GV* gv;
4561 SV* const meth = cMETHOPx_meth(PL_op);
4562 HV* stash = gv_stashsv(cMETHOPx_rclass(PL_op), 0);
4563 opmethod_stash(meth); /* not used but needed for error checks */
4564
4565 if (stash) { METHOD_CHECK_CACHE(stash, stash, meth); }
4566 else stash = MUTABLE_HV(cMETHOPx_rclass(PL_op));
4567
4568 gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK);
4569 assert(gv);
4570
4571 XPUSHs(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
4572 RETURN;
4573}
4574
4575PP(pp_method_redir_super)
4576{
4577 dSP;
4578 GV* gv;
4579 HV* cache;
4580 SV* const meth = cMETHOPx_meth(PL_op);
4581 HV* stash = gv_stashsv(cMETHOPx_rclass(PL_op), 0);
4582 opmethod_stash(meth); /* not used but needed for error checks */
4583
4584 if (UNLIKELY(!stash)) stash = MUTABLE_HV(cMETHOPx_rclass(PL_op));
4585 else if ((cache = HvMROMETA(stash)->super)) {
4586 METHOD_CHECK_CACHE(stash, cache, meth);
7d6c333c 4587 }
4588
4589 gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK|GV_SUPER);
4590 assert(gv);
4591
4592 XPUSHs(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
4593 RETURN;
a0d0e21e 4594}
241d1a3b
NC
4595
4596/*
14d04a33 4597 * ex: set ts=8 sts=4 sw=4 et:
37442d52 4598 */