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