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
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.
12 * 'It's a big house this, and very peculiar. Always a bit more
13 * to discover, and no knowing what you'll find round a corner.
14 * And Elves, sir!' --Samwise Gamgee
16 * [p.225 of _The Lord of the Rings_, II/i: "Many Meetings"]
19 /* This file contains general pp ("push/pop") functions that execute the
20 * opcodes that make up a perl program. A typical pp function expects to
21 * find its arguments on the stack, and usually pushes its results onto
22 * the stack, hence the 'pp' terminology. Each OP structure contains
23 * a pointer to the relevant pp_foo() function.
31 #include "invlist_inline.h"
33 #include "regcharclass.h"
35 /* variations on pp_null */
40 if (GIMME_V == G_SCALAR)
52 assert(SvTYPE(TARG) == SVt_PVCV);
67 CV * const protocv = PadnamePROTOCV(
68 PadlistNAMESARRAY(CvPADLIST(find_runcv(NULL)))[ARGTARG]
70 assert(SvTYPE(TARG) == SVt_PVCV);
72 if (CvISXSUB(protocv)) { /* constant */
73 /* XXX Should we clone it here? */
74 /* If this changes to use SAVECLEARSV, we can move the SAVECLEARSV
75 to introcv and remove the SvPADSTALE_off. */
76 SAVEPADSVANDMORTALIZE(ARGTARG);
77 PAD_SVl(ARGTARG) = SvREFCNT_inc_simple_NN(protocv);
80 if (CvROOT(protocv)) {
81 assert(CvCLONE(protocv));
82 assert(!CvCLONED(protocv));
84 cv_clone_into(protocv,(CV *)TARG);
85 SAVECLEARSV(PAD_SVl(ARGTARG));
92 /* In some cases this function inspects PL_op. If this function is called
93 for new op types, more bool parameters may need to be added in place of
96 When noinit is true, the absence of a gv will cause a retval of undef.
97 This is unrelated to the cv-to-gv assignment case.
101 S_rv2gv(pTHX_ SV *sv, const bool vivify_sv, const bool strict,
104 if (!isGV(sv) || SvFAKE(sv)) SvGETMAGIC(sv);
107 sv = amagic_deref_call(sv, to_gv_amg);
111 if (SvTYPE(sv) == SVt_PVIO) {
112 GV * const gv = MUTABLE_GV(sv_newmortal());
113 gv_init(gv, 0, "__ANONIO__", 10, 0);
114 GvIOp(gv) = MUTABLE_IO(sv);
115 SvREFCNT_inc_void_NN(sv);
118 else if (!isGV_with_GP(sv)) {
119 Perl_die(aTHX_ "Not a GLOB reference");
123 if (!isGV_with_GP(sv)) {
125 /* If this is a 'my' scalar and flag is set then vivify
128 if (vivify_sv && sv != &PL_sv_undef) {
132 Perl_croak_no_modify();
133 gv = MUTABLE_GV(newSV(0));
134 stash = CopSTASH(PL_curcop);
135 if (SvTYPE(stash) != SVt_PVHV) stash = NULL;
136 if (cUNOP->op_targ) {
137 SV * const namesv = PAD_SV(cUNOP->op_targ);
138 gv_init_sv(gv, stash, namesv, 0);
141 gv_init_pv(gv, stash, "__ANONIO__", 0);
143 prepare_SV_for_RV(sv);
144 SvRV_set(sv, MUTABLE_SV(gv));
149 if (PL_op->op_flags & OPf_REF || strict) {
150 Perl_die(aTHX_ PL_no_usym, "a symbol");
152 if (ckWARN(WARN_UNINITIALIZED))
158 if (!(sv = MUTABLE_SV(gv_fetchsv_nomg(
159 sv, GV_ADDMG, SVt_PVGV
168 (SvPOKp(sv) && SvCUR(sv)>32 ? "..." : ""),
172 if ((PL_op->op_private & (OPpLVAL_INTRO|OPpDONT_INIT_GV))
173 == OPpDONT_INIT_GV) {
174 /* We are the target of a coderef assignment. Return
175 the scalar unchanged, and let pp_sasssign deal with
179 sv = MUTABLE_SV(gv_fetchsv_nomg(sv, GV_ADD, SVt_PVGV));
181 /* FAKE globs in the symbol table cause weird bugs (#77810) */
185 if (SvFAKE(sv) && !(PL_op->op_private & OPpALLOW_FAKE)) {
186 SV *newsv = sv_newmortal();
187 sv_setsv_flags(newsv, sv, 0);
199 sv, PL_op->op_private & OPpDEREF,
200 PL_op->op_private & HINT_STRICT_REFS,
201 ((PL_op->op_flags & OPf_SPECIAL) && !(PL_op->op_flags & OPf_MOD))
202 || PL_op->op_type == OP_READLINE
204 if (PL_op->op_private & OPpLVAL_INTRO)
205 save_gp(MUTABLE_GV(sv), !(PL_op->op_flags & OPf_SPECIAL));
210 /* Helper function for pp_rv2sv and pp_rv2av */
212 Perl_softref2xv(pTHX_ SV *const sv, const char *const what,
213 const svtype type, SV ***spp)
217 PERL_ARGS_ASSERT_SOFTREF2XV;
219 if (PL_op->op_private & HINT_STRICT_REFS) {
221 Perl_die(aTHX_ PL_no_symref_sv, sv,
222 (SvPOKp(sv) && SvCUR(sv)>32 ? "..." : ""), what);
224 Perl_die(aTHX_ PL_no_usym, what);
228 PL_op->op_flags & OPf_REF
230 Perl_die(aTHX_ PL_no_usym, what);
231 if (ckWARN(WARN_UNINITIALIZED))
233 if (type != SVt_PV && GIMME_V == G_ARRAY) {
237 **spp = &PL_sv_undef;
240 if ((PL_op->op_flags & OPf_SPECIAL) &&
241 !(PL_op->op_flags & OPf_MOD))
243 if (!(gv = gv_fetchsv_nomg(sv, GV_ADDMG, type)))
245 **spp = &PL_sv_undef;
250 gv = gv_fetchsv_nomg(sv, GV_ADD, type);
263 sv = amagic_deref_call(sv, to_sv_amg);
267 if (SvTYPE(sv) >= SVt_PVAV)
268 DIE(aTHX_ "Not a SCALAR reference");
273 if (!isGV_with_GP(gv)) {
274 gv = Perl_softref2xv(aTHX_ sv, "a SCALAR", SVt_PV, &sp);
280 if (PL_op->op_flags & OPf_MOD) {
281 if (PL_op->op_private & OPpLVAL_INTRO) {
282 if (cUNOP->op_first->op_type == OP_NULL)
283 sv = save_scalar(MUTABLE_GV(TOPs));
285 sv = save_scalar(gv);
287 Perl_croak(aTHX_ "%s", PL_no_localize_ref);
289 else if (PL_op->op_private & OPpDEREF)
290 sv = vivify_ref(sv, PL_op->op_private & OPpDEREF);
292 SPAGAIN; /* in case chasing soft refs reallocated the stack */
300 AV * const av = MUTABLE_AV(TOPs);
301 const I32 lvalue = PL_op->op_flags & OPf_MOD || LVRET;
303 SV ** const svp = Perl_av_arylen_p(aTHX_ MUTABLE_AV(av));
305 *svp = newSV_type(SVt_PVMG);
306 sv_magic(*svp, MUTABLE_SV(av), PERL_MAGIC_arylen, NULL, 0);
310 SETs(sv_2mortal(newSViv(AvFILL(MUTABLE_AV(av)))));
319 if (PL_op->op_flags & OPf_MOD || LVRET) {
320 SV * const ret = sv_2mortal(newSV_type(SVt_PVLV));/* Not TARG RT#67838 */
321 sv_magic(ret, NULL, PERL_MAGIC_pos, NULL, 0);
323 LvTARG(ret) = SvREFCNT_inc_simple(sv);
324 SETs(ret); /* no SvSETMAGIC */
327 const MAGIC * const mg = mg_find_mglob(sv);
328 if (mg && mg->mg_len != -1) {
329 STRLEN i = mg->mg_len;
330 if (PL_op->op_private & OPpTRUEBOOL)
331 SETs(i ? &PL_sv_yes : &PL_sv_zero);
334 if (mg->mg_flags & MGf_BYTES && DO_UTF8(sv))
335 i = sv_pos_b2u_flags(sv, i, SV_GMAGIC|SV_CONST_RETURN);
350 const I32 flags = (PL_op->op_flags & OPf_SPECIAL)
352 : ((PL_op->op_private & (OPpLVAL_INTRO|OPpMAY_RETURN_CONSTANT))
353 == OPpMAY_RETURN_CONSTANT)
356 /* We usually try to add a non-existent subroutine in case of AUTOLOAD. */
357 /* (But not in defined().) */
359 CV *cv = sv_2cv(TOPs, &stash_unused, &gv, flags);
361 else if ((flags == (GV_ADD|GV_NOEXPAND)) && gv && SvROK(gv)) {
362 cv = SvTYPE(SvRV(gv)) == SVt_PVCV
363 ? MUTABLE_CV(SvRV(gv))
367 cv = MUTABLE_CV(&PL_sv_undef);
368 SETs(MUTABLE_SV(cv));
378 SV *ret = &PL_sv_undef;
380 if (SvGMAGICAL(TOPs)) SETs(sv_mortalcopy(TOPs));
381 if (SvPOK(TOPs) && SvCUR(TOPs) >= 7) {
382 const char * s = SvPVX_const(TOPs);
383 if (memBEGINs(s, SvCUR(TOPs), "CORE::")) {
384 const int code = keyword(s + 6, SvCUR(TOPs) - 6, 1);
386 DIE(aTHX_ "Can't find an opnumber for \"%" UTF8f "\"",
387 UTF8fARG(SvFLAGS(TOPs) & SVf_UTF8, SvCUR(TOPs)-6, s+6));
389 SV * const sv = core_prototype(NULL, s + 6, code, NULL);
395 cv = sv_2cv(TOPs, &stash, &gv, 0);
397 ret = newSVpvn_flags(
398 CvPROTO(cv), CvPROTOLEN(cv), SVs_TEMP | SvUTF8(cv)
408 CV *cv = MUTABLE_CV(PAD_SV(PL_op->op_targ));
410 cv = MUTABLE_CV(sv_2mortal(MUTABLE_SV(cv_clone(cv))));
412 PUSHs(MUTABLE_SV(cv));
426 if (GIMME_V != G_ARRAY) {
432 *MARK = &PL_sv_undef;
434 *MARK = refto(*MARK);
438 EXTEND_MORTAL(SP - MARK);
440 *MARK = refto(*MARK);
445 S_refto(pTHX_ SV *sv)
449 PERL_ARGS_ASSERT_REFTO;
451 if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y') {
454 if (!(sv = LvTARG(sv)))
457 SvREFCNT_inc_void_NN(sv);
459 else if (SvTYPE(sv) == SVt_PVAV) {
460 if (!AvREAL((const AV *)sv) && AvREIFY((const AV *)sv))
461 av_reify(MUTABLE_AV(sv));
463 SvREFCNT_inc_void_NN(sv);
465 else if (SvPADTMP(sv)) {
468 else if (UNLIKELY(SvSMAGICAL(sv) && mg_find(sv, PERL_MAGIC_nonelem)))
469 sv_unmagic(SvREFCNT_inc_simple_NN(sv), PERL_MAGIC_nonelem);
472 SvREFCNT_inc_void_NN(sv);
475 sv_upgrade(rv, SVt_IV);
484 SV * const sv = TOPs;
492 /* op is in boolean context? */
493 if ( (PL_op->op_private & OPpTRUEBOOL)
494 || ( (PL_op->op_private & OPpMAYBE_TRUEBOOL)
495 && block_gimme() == G_VOID))
497 /* refs are always true - unless it's to an object blessed into a
498 * class with a false name, i.e. "0". So we have to check for
499 * that remote possibility. The following is is basically an
500 * unrolled SvTRUE(sv_reftype(rv)) */
501 SV * const rv = SvRV(sv);
503 HV *stash = SvSTASH(rv);
504 HEK *hek = HvNAME_HEK(stash);
506 I32 len = HEK_LEN(hek);
507 /* bail out and do it the hard way? */
510 || (len == 1 && HEK_KEY(hek)[0] == '0')
523 sv_ref(TARG, SvRV(sv), TRUE);
539 stash = CopSTASH(PL_curcop);
540 if (SvTYPE(stash) != SVt_PVHV)
541 Perl_croak(aTHX_ "Attempt to bless into a freed package");
544 SV * const ssv = POPs;
548 if (!ssv) goto curstash;
551 if (!SvAMAGIC(ssv)) {
553 Perl_croak(aTHX_ "Attempt to bless into a reference");
555 /* SvAMAGIC is on here, but it only means potentially overloaded,
556 so after stringification: */
557 ptr = SvPV_nomg_const(ssv,len);
558 /* We need to check the flag again: */
559 if (!SvAMAGIC(ssv)) goto frog;
561 else ptr = SvPV_nomg_const(ssv,len);
563 Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
564 "Explicit blessing to '' (assuming package main)");
565 stash = gv_stashpvn(ptr, len, GV_ADD|SvUTF8(ssv));
568 (void)sv_bless(TOPs, stash);
578 const char * const elem = SvPV_const(sv, len);
579 GV * const gv = MUTABLE_GV(TOPs);
584 /* elem will always be NUL terminated. */
587 if (memEQs(elem, len, "ARRAY"))
589 tmpRef = MUTABLE_SV(GvAV(gv));
590 if (tmpRef && !AvREAL((const AV *)tmpRef)
591 && AvREIFY((const AV *)tmpRef))
592 av_reify(MUTABLE_AV(tmpRef));
596 if (memEQs(elem, len, "CODE"))
597 tmpRef = MUTABLE_SV(GvCVu(gv));
600 if (memEQs(elem, len, "FILEHANDLE")) {
601 tmpRef = MUTABLE_SV(GvIOp(gv));
604 if (memEQs(elem, len, "FORMAT"))
605 tmpRef = MUTABLE_SV(GvFORM(gv));
608 if (memEQs(elem, len, "GLOB"))
609 tmpRef = MUTABLE_SV(gv);
612 if (memEQs(elem, len, "HASH"))
613 tmpRef = MUTABLE_SV(GvHV(gv));
616 if (memEQs(elem, len, "IO"))
617 tmpRef = MUTABLE_SV(GvIOp(gv));
620 if (memEQs(elem, len, "NAME"))
621 sv = newSVhek(GvNAME_HEK(gv));
624 if (memEQs(elem, len, "PACKAGE")) {
625 const HV * const stash = GvSTASH(gv);
626 const HEK * const hek = stash ? HvNAME_HEK(stash) : NULL;
627 sv = hek ? newSVhek(hek) : newSVpvs("__ANON__");
631 if (memEQs(elem, len, "SCALAR"))
646 /* Pattern matching */
654 if (len == 0 || len > I32_MAX || !SvPOK(sv) || SvUTF8(sv) || SvVALID(sv)) {
655 /* Historically, study was skipped in these cases. */
660 /* Make study a no-op. It's no longer useful and its existence
661 complicates matters elsewhere. */
667 /* also used for: pp_transr() */
674 if (PL_op->op_flags & OPf_STACKED)
679 sv = PAD_SV(ARGTARG);
684 if(PL_op->op_type == OP_TRANSR) {
686 const char * const pv = SvPV(sv,len);
687 SV * const newsv = newSVpvn_flags(pv, len, SVs_TEMP|SvUTF8(sv));
692 Size_t i = do_trans(sv);
698 /* Lvalue operators. */
701 S_do_chomp(pTHX_ SV *retval, SV *sv, bool chomping)
707 PERL_ARGS_ASSERT_DO_CHOMP;
709 if (chomping && (RsSNARF(PL_rs) || RsRECORD(PL_rs)))
711 if (SvTYPE(sv) == SVt_PVAV) {
713 AV *const av = MUTABLE_AV(sv);
714 const I32 max = AvFILL(av);
716 for (i = 0; i <= max; i++) {
717 sv = MUTABLE_SV(av_fetch(av, i, FALSE));
718 if (sv && ((sv = *(SV**)sv), sv != &PL_sv_undef))
719 count += do_chomp(retval, sv, chomping);
723 else if (SvTYPE(sv) == SVt_PVHV) {
724 HV* const hv = MUTABLE_HV(sv);
726 (void)hv_iterinit(hv);
727 while ((entry = hv_iternext(hv)))
728 count += do_chomp(retval, hv_iterval(hv,entry), chomping);
731 else if (SvREADONLY(sv)) {
732 Perl_croak_no_modify();
738 char *temp_buffer = NULL;
743 goto nope_free_nothing;
745 while (len && s[-1] == '\n') {
752 STRLEN rslen, rs_charlen;
753 const char *rsptr = SvPV_const(PL_rs, rslen);
755 rs_charlen = SvUTF8(PL_rs)
759 if (SvUTF8(PL_rs) != SvUTF8(sv)) {
760 /* Assumption is that rs is shorter than the scalar. */
762 /* RS is utf8, scalar is 8 bit. */
764 temp_buffer = (char*)bytes_from_utf8((U8*)rsptr,
767 /* Cannot downgrade, therefore cannot possibly match.
768 At this point, temp_buffer is not alloced, and
769 is the buffer inside PL_rs, so dont free it.
771 assert (temp_buffer == rsptr);
777 /* RS is 8 bit, scalar is utf8. */
778 temp_buffer = (char*)bytes_to_utf8((U8*)rsptr, &rslen);
792 if (memNE(s, rsptr, rslen))
797 SvPV_force_nomg_nolen(sv);
804 Safefree(temp_buffer);
806 SvREFCNT_dec(svrecode);
810 if (len && (!SvPOK(sv) || SvIsCOW(sv)))
811 s = SvPV_force_nomg(sv, len);
814 char * const send = s + len;
815 char * const start = s;
817 while (s > start && UTF8_IS_CONTINUATION(*s))
819 if (is_utf8_string((U8*)s, send - s)) {
820 sv_setpvn(retval, s, send - s);
822 SvCUR_set(sv, s - start);
832 sv_setpvn(retval, s, 1);
846 /* also used for: pp_schomp() */
851 const bool chomping = PL_op->op_type == OP_SCHOMP;
853 const size_t count = do_chomp(TARG, TOPs, chomping);
855 sv_setiv(TARG, count);
861 /* also used for: pp_chomp() */
865 dSP; dMARK; dTARGET; dORIGMARK;
866 const bool chomping = PL_op->op_type == OP_CHOMP;
870 count += do_chomp(TARG, *++MARK, chomping);
872 sv_setiv(TARG, count);
883 if (!PL_op->op_private) {
895 if (SvTHINKFIRST(sv))
896 sv_force_normal_flags(sv, SV_COW_DROP_PV|SV_IMMEDIATE_UNREF);
898 switch (SvTYPE(sv)) {
902 av_undef(MUTABLE_AV(sv));
905 hv_undef(MUTABLE_HV(sv));
908 if (cv_const_sv((const CV *)sv))
909 Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
910 "Constant subroutine %" SVf " undefined",
911 SVfARG(CvANON((const CV *)sv)
912 ? newSVpvs_flags("(anonymous)", SVs_TEMP)
913 : sv_2mortal(newSVhek(
915 ? CvNAME_HEK((CV *)sv)
916 : GvENAME_HEK(CvGV((const CV *)sv))
921 /* let user-undef'd sub keep its identity */
922 cv_undef_flags(MUTABLE_CV(sv), CV_UNDEF_KEEP_NAME);
925 assert(isGV_with_GP(sv));
931 /* undef *Pkg::meth_name ... */
933 = GvCVu((const GV *)sv) && (stash = GvSTASH((const GV *)sv))
934 && HvENAME_get(stash);
936 if((stash = GvHV((const GV *)sv))) {
937 if(HvENAME_get(stash))
938 SvREFCNT_inc_simple_void_NN(sv_2mortal((SV *)stash));
942 SvREFCNT_inc_simple_void_NN(sv_2mortal(sv));
943 gp_free(MUTABLE_GV(sv));
945 GvGP_set(sv, gp_ref(gp));
946 #ifndef PERL_DONT_CREATE_GVSV
949 GvLINE(sv) = CopLINE(PL_curcop);
950 GvEGV(sv) = MUTABLE_GV(sv);
954 mro_package_moved(NULL, stash, (const GV *)sv, 0);
956 /* undef *Foo::ISA */
957 if( strEQ(GvNAME((const GV *)sv), "ISA")
958 && (stash = GvSTASH((const GV *)sv))
959 && (method_changed || HvENAME(stash)) )
960 mro_isa_changed_in(stash);
961 else if(method_changed)
962 mro_method_changed_in(
963 GvSTASH((const GV *)sv)
969 if (SvTYPE(sv) >= SVt_PV && SvPVX_const(sv) && SvLEN(sv)) {
983 /* common "slow" code for pp_postinc and pp_postdec */
986 S_postincdec_common(pTHX_ SV *sv, SV *targ)
990 PL_op->op_type == OP_POSTINC || PL_op->op_type == OP_I_POSTINC;
993 TARG = sv_newmortal();
1000 /* special case for undef: see thread at 2003-03/msg00536.html in archive */
1001 if (inc && !SvOK(TARG))
1008 /* also used for: pp_i_postinc() */
1015 /* special-case sv being a simple integer */
1016 if (LIKELY(((sv->sv_flags &
1017 (SVf_THINKFIRST|SVs_GMG|SVf_IVisUV|
1018 SVf_IOK|SVf_NOK|SVf_POK|SVp_NOK|SVp_POK|SVf_ROK))
1020 && SvIVX(sv) != IV_MAX)
1023 SvIV_set(sv, iv + 1);
1024 TARGi(iv, 0); /* arg not GMG, so can't be tainted */
1029 return S_postincdec_common(aTHX_ sv, TARG);
1033 /* also used for: pp_i_postdec() */
1040 /* special-case sv being a simple integer */
1041 if (LIKELY(((sv->sv_flags &
1042 (SVf_THINKFIRST|SVs_GMG|SVf_IVisUV|
1043 SVf_IOK|SVf_NOK|SVf_POK|SVp_NOK|SVp_POK|SVf_ROK))
1045 && SvIVX(sv) != IV_MIN)
1048 SvIV_set(sv, iv - 1);
1049 TARGi(iv, 0); /* arg not GMG, so can't be tainted */
1054 return S_postincdec_common(aTHX_ sv, TARG);
1058 /* Ordinary operators. */
1062 dSP; dATARGET; SV *svl, *svr;
1063 #ifdef PERL_PRESERVE_IVUV
1066 tryAMAGICbin_MG(pow_amg, AMGf_assign|AMGf_numeric);
1069 #ifdef PERL_PRESERVE_IVUV
1070 /* For integer to integer power, we do the calculation by hand wherever
1071 we're sure it is safe; otherwise we call pow() and try to convert to
1072 integer afterwards. */
1073 if (SvIV_please_nomg(svr) && SvIV_please_nomg(svl)) {
1081 const IV iv = SvIVX(svr);
1085 goto float_it; /* Can't do negative powers this way. */
1089 baseuok = SvUOK(svl);
1091 baseuv = SvUVX(svl);
1093 const IV iv = SvIVX(svl);
1096 baseuok = TRUE; /* effectively it's a UV now */
1098 baseuv = -iv; /* abs, baseuok == false records sign */
1101 /* now we have integer ** positive integer. */
1104 /* foo & (foo - 1) is zero only for a power of 2. */
1105 if (!(baseuv & (baseuv - 1))) {
1106 /* We are raising power-of-2 to a positive integer.
1107 The logic here will work for any base (even non-integer
1108 bases) but it can be less accurate than
1109 pow (base,power) or exp (power * log (base)) when the
1110 intermediate values start to spill out of the mantissa.
1111 With powers of 2 we know this can't happen.
1112 And powers of 2 are the favourite thing for perl
1113 programmers to notice ** not doing what they mean. */
1115 NV base = baseuok ? baseuv : -(NV)baseuv;
1120 while (power >>= 1) {
1128 SvIV_please_nomg(svr);
1131 unsigned int highbit = 8 * sizeof(UV);
1132 unsigned int diff = 8 * sizeof(UV);
1133 while (diff >>= 1) {
1135 if (baseuv >> highbit) {
1139 /* we now have baseuv < 2 ** highbit */
1140 if (power * highbit <= 8 * sizeof(UV)) {
1141 /* result will definitely fit in UV, so use UV math
1142 on same algorithm as above */
1145 const bool odd_power = cBOOL(power & 1);
1149 while (power >>= 1) {
1156 if (baseuok || !odd_power)
1157 /* answer is positive */
1159 else if (result <= (UV)IV_MAX)
1160 /* answer negative, fits in IV */
1161 SETi( -(IV)result );
1162 else if (result == (UV)IV_MIN)
1163 /* 2's complement assumption: special case IV_MIN */
1166 /* answer negative, doesn't fit */
1167 SETn( -(NV)result );
1175 NV right = SvNV_nomg(svr);
1176 NV left = SvNV_nomg(svl);
1179 #if defined(USE_LONG_DOUBLE) && defined(HAS_AIX_POWL_NEG_BASE_BUG)
1181 We are building perl with long double support and are on an AIX OS
1182 afflicted with a powl() function that wrongly returns NaNQ for any
1183 negative base. This was reported to IBM as PMR #23047-379 on
1184 03/06/2006. The problem exists in at least the following versions
1185 of AIX and the libm fileset, and no doubt others as well:
1187 AIX 4.3.3-ML10 bos.adt.libm 4.3.3.50
1188 AIX 5.1.0-ML04 bos.adt.libm 5.1.0.29
1189 AIX 5.2.0 bos.adt.libm 5.2.0.85
1191 So, until IBM fixes powl(), we provide the following workaround to
1192 handle the problem ourselves. Our logic is as follows: for
1193 negative bases (left), we use fmod(right, 2) to check if the
1194 exponent is an odd or even integer:
1196 - if odd, powl(left, right) == -powl(-left, right)
1197 - if even, powl(left, right) == powl(-left, right)
1199 If the exponent is not an integer, the result is rightly NaNQ, so
1200 we just return that (as NV_NAN).
1204 NV mod2 = Perl_fmod( right, 2.0 );
1205 if (mod2 == 1.0 || mod2 == -1.0) { /* odd integer */
1206 SETn( -Perl_pow( -left, right) );
1207 } else if (mod2 == 0.0) { /* even integer */
1208 SETn( Perl_pow( -left, right) );
1209 } else { /* fractional power */
1213 SETn( Perl_pow( left, right) );
1216 SETn( Perl_pow( left, right) );
1217 #endif /* HAS_AIX_POWL_NEG_BASE_BUG */
1219 #ifdef PERL_PRESERVE_IVUV
1221 SvIV_please_nomg(svr);
1229 dSP; dATARGET; SV *svl, *svr;
1230 tryAMAGICbin_MG(mult_amg, AMGf_assign|AMGf_numeric);
1234 #ifdef PERL_PRESERVE_IVUV
1236 /* special-case some simple common cases */
1237 if (!((svl->sv_flags|svr->sv_flags) & (SVf_IVisUV|SVs_GMG))) {
1239 U32 flags = (svl->sv_flags & svr->sv_flags);
1240 if (flags & SVf_IOK) {
1241 /* both args are simple IVs */
1246 topl = ((UV)il) >> (UVSIZE * 4 - 1);
1247 topr = ((UV)ir) >> (UVSIZE * 4 - 1);
1249 /* if both are in a range that can't under/overflow, do a
1250 * simple integer multiply: if the top halves(*) of both numbers
1251 * are 00...00 or 11...11, then it's safe.
1252 * (*) for 32-bits, the "top half" is the top 17 bits,
1253 * for 64-bits, its 33 bits */
1255 ((topl+1) | (topr+1))
1256 & ( (((UV)1) << (UVSIZE * 4 + 1)) - 2) /* 11..110 */
1259 TARGi(il * ir, 0); /* args not GMG, so can't be tainted */
1265 else if (flags & SVf_NOK) {
1266 /* both args are NVs */
1271 if (lossless_NV_to_IV(nl, &il) && lossless_NV_to_IV(nr, &ir)) {
1272 /* nothing was lost by converting to IVs */
1277 # if defined(__sgi) && defined(USE_LONG_DOUBLE) && LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE && NVSIZE == 16
1278 if (Perl_isinf(result)) {
1279 Zero((U8*)&result + 8, 8, U8);
1282 TARGn(result, 0); /* args not GMG, so can't be tainted */
1290 if (SvIV_please_nomg(svr)) {
1291 /* Unless the left argument is integer in range we are going to have to
1292 use NV maths. Hence only attempt to coerce the right argument if
1293 we know the left is integer. */
1294 /* Left operand is defined, so is it IV? */
1295 if (SvIV_please_nomg(svl)) {
1296 bool auvok = SvUOK(svl);
1297 bool buvok = SvUOK(svr);
1298 const UV topmask = (~ (UV)0) << (4 * sizeof (UV));
1299 const UV botmask = ~((~ (UV)0) << (4 * sizeof (UV)));
1308 const IV aiv = SvIVX(svl);
1311 auvok = TRUE; /* effectively it's a UV now */
1313 /* abs, auvok == false records sign; Using 0- here and
1314 * later to silence bogus warning from MS VC */
1315 alow = (UV) (0 - (UV) aiv);
1321 const IV biv = SvIVX(svr);
1324 buvok = TRUE; /* effectively it's a UV now */
1326 /* abs, buvok == false records sign */
1327 blow = (UV) (0 - (UV) biv);
1331 /* If this does sign extension on unsigned it's time for plan B */
1332 ahigh = alow >> (4 * sizeof (UV));
1334 bhigh = blow >> (4 * sizeof (UV));
1336 if (ahigh && bhigh) {
1338 /* eg 32 bit is at least 0x10000 * 0x10000 == 0x100000000
1339 which is overflow. Drop to NVs below. */
1340 } else if (!ahigh && !bhigh) {
1341 /* eg 32 bit is at most 0xFFFF * 0xFFFF == 0xFFFE0001
1342 so the unsigned multiply cannot overflow. */
1343 const UV product = alow * blow;
1344 if (auvok == buvok) {
1345 /* -ve * -ve or +ve * +ve gives a +ve result. */
1349 } else if (product <= (UV)IV_MIN) {
1350 /* 2s complement assumption that (UV)-IV_MIN is correct. */
1351 /* -ve result, which could overflow an IV */
1353 /* can't negate IV_MIN, but there are aren't two
1354 * integers such that !ahigh && !bhigh, where the
1355 * product equals 0x800....000 */
1356 assert(product != (UV)IV_MIN);
1357 SETi( -(IV)product );
1359 } /* else drop to NVs below. */
1361 /* One operand is large, 1 small */
1364 /* swap the operands */
1366 bhigh = blow; /* bhigh now the temp var for the swap */
1370 /* now, ((ahigh * blow) << half_UV_len) + (alow * blow)
1371 multiplies can't overflow. shift can, add can, -ve can. */
1372 product_middle = ahigh * blow;
1373 if (!(product_middle & topmask)) {
1374 /* OK, (ahigh * blow) won't lose bits when we shift it. */
1376 product_middle <<= (4 * sizeof (UV));
1377 product_low = alow * blow;
1379 /* as for pp_add, UV + something mustn't get smaller.
1380 IIRC ANSI mandates this wrapping *behaviour* for
1381 unsigned whatever the actual representation*/
1382 product_low += product_middle;
1383 if (product_low >= product_middle) {
1384 /* didn't overflow */
1385 if (auvok == buvok) {
1386 /* -ve * -ve or +ve * +ve gives a +ve result. */
1388 SETu( product_low );
1390 } else if (product_low <= (UV)IV_MIN) {
1391 /* 2s complement assumption again */
1392 /* -ve result, which could overflow an IV */
1394 SETi(product_low == (UV)IV_MIN
1395 ? IV_MIN : -(IV)product_low);
1397 } /* else drop to NVs below. */
1399 } /* product_middle too large */
1400 } /* ahigh && bhigh */
1405 NV right = SvNV_nomg(svr);
1406 NV left = SvNV_nomg(svl);
1407 NV result = left * right;
1410 #if defined(__sgi) && defined(USE_LONG_DOUBLE) && LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BE_BE && NVSIZE == 16
1411 if (Perl_isinf(result)) {
1412 Zero((U8*)&result + 8, 8, U8);
1422 dSP; dATARGET; SV *svl, *svr;
1423 tryAMAGICbin_MG(div_amg, AMGf_assign|AMGf_numeric);
1426 /* Only try to do UV divide first
1427 if ((SLOPPYDIVIDE is true) or
1428 (PERL_PRESERVE_IVUV is true and one or both SV is a UV too large
1430 The assumption is that it is better to use floating point divide
1431 whenever possible, only doing integer divide first if we can't be sure.
1432 If NV_PRESERVES_UV is true then we know at compile time that no UV
1433 can be too large to preserve, so don't need to compile the code to
1434 test the size of UVs. */
1436 #if defined(SLOPPYDIVIDE) || (defined(PERL_PRESERVE_IVUV) && !defined(NV_PRESERVES_UV))
1437 # define PERL_TRY_UV_DIVIDE
1438 /* ensure that 20./5. == 4. */
1441 #ifdef PERL_TRY_UV_DIVIDE
1442 if (SvIV_please_nomg(svr) && SvIV_please_nomg(svl)) {
1443 bool left_non_neg = SvUOK(svl);
1444 bool right_non_neg = SvUOK(svr);
1448 if (right_non_neg) {
1452 const IV biv = SvIVX(svr);
1455 right_non_neg = TRUE; /* effectively it's a UV now */
1461 /* historically undef()/0 gives a "Use of uninitialized value"
1462 warning before dieing, hence this test goes here.
1463 If it were immediately before the second SvIV_please, then
1464 DIE() would be invoked before left was even inspected, so
1465 no inspection would give no warning. */
1467 DIE(aTHX_ "Illegal division by zero");
1473 const IV aiv = SvIVX(svl);
1476 left_non_neg = TRUE; /* effectively it's a UV now */
1485 /* For sloppy divide we always attempt integer division. */
1487 /* Otherwise we only attempt it if either or both operands
1488 would not be preserved by an NV. If both fit in NVs
1489 we fall through to the NV divide code below. However,
1490 as left >= right to ensure integer result here, we know that
1491 we can skip the test on the right operand - right big
1492 enough not to be preserved can't get here unless left is
1495 && (left > ((UV)1 << NV_PRESERVES_UV_BITS))
1498 /* Integer division can't overflow, but it can be imprecise. */
1500 /* Modern compilers optimize division followed by
1501 * modulo into a single div instruction */
1502 const UV result = left / right;
1503 if (left % right == 0) {
1504 SP--; /* result is valid */
1505 if (left_non_neg == right_non_neg) {
1506 /* signs identical, result is positive. */
1510 /* 2s complement assumption */
1511 if (result <= (UV)IV_MIN)
1512 SETi(result == (UV)IV_MIN ? IV_MIN : -(IV)result);
1514 /* It's exact but too negative for IV. */
1515 SETn( -(NV)result );
1518 } /* tried integer divide but it was not an integer result */
1519 } /* else (PERL_ABS(result) < 1.0) or (both UVs in range for NV) */
1520 } /* one operand wasn't SvIOK */
1521 #endif /* PERL_TRY_UV_DIVIDE */
1523 NV right = SvNV_nomg(svr);
1524 NV left = SvNV_nomg(svl);
1525 (void)POPs;(void)POPs;
1526 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
1527 if (! Perl_isnan(right) && right == 0.0)
1531 DIE(aTHX_ "Illegal division by zero");
1532 PUSHn( left / right );
1540 tryAMAGICbin_MG(modulo_amg, AMGf_assign|AMGf_numeric);
1544 bool left_neg = FALSE;
1545 bool right_neg = FALSE;
1546 bool use_double = FALSE;
1547 bool dright_valid = FALSE;
1550 SV * const svr = TOPs;
1551 SV * const svl = TOPm1s;
1552 if (SvIV_please_nomg(svr)) {
1553 right_neg = !SvUOK(svr);
1557 const IV biv = SvIVX(svr);
1560 right_neg = FALSE; /* effectively it's a UV now */
1562 right = (UV) (0 - (UV) biv);
1567 dright = SvNV_nomg(svr);
1568 right_neg = dright < 0;
1571 if (dright < UV_MAX_P1) {
1572 right = U_V(dright);
1573 dright_valid = TRUE; /* In case we need to use double below. */
1579 /* At this point use_double is only true if right is out of range for
1580 a UV. In range NV has been rounded down to nearest UV and
1581 use_double false. */
1582 if (!use_double && SvIV_please_nomg(svl)) {
1583 left_neg = !SvUOK(svl);
1587 const IV aiv = SvIVX(svl);
1590 left_neg = FALSE; /* effectively it's a UV now */
1592 left = (UV) (0 - (UV) aiv);
1597 dleft = SvNV_nomg(svl);
1598 left_neg = dleft < 0;
1602 /* This should be exactly the 5.6 behaviour - if left and right are
1603 both in range for UV then use U_V() rather than floor. */
1605 if (dleft < UV_MAX_P1) {
1606 /* right was in range, so is dleft, so use UVs not double.
1610 /* left is out of range for UV, right was in range, so promote
1611 right (back) to double. */
1613 /* The +0.5 is used in 5.6 even though it is not strictly
1614 consistent with the implicit +0 floor in the U_V()
1615 inside the #if 1. */
1616 dleft = Perl_floor(dleft + 0.5);
1619 dright = Perl_floor(dright + 0.5);
1630 DIE(aTHX_ "Illegal modulus zero");
1632 dans = Perl_fmod(dleft, dright);
1633 if ((left_neg != right_neg) && dans)
1634 dans = dright - dans;
1637 sv_setnv(TARG, dans);
1643 DIE(aTHX_ "Illegal modulus zero");
1646 if ((left_neg != right_neg) && ans)
1649 /* XXX may warn: unary minus operator applied to unsigned type */
1650 /* could change -foo to be (~foo)+1 instead */
1651 if (ans <= ~((UV)IV_MAX)+1)
1652 sv_setiv(TARG, ~ans+1);
1654 sv_setnv(TARG, -(NV)ans);
1657 sv_setuv(TARG, ans);
1669 bool infnan = FALSE;
1670 const U8 gimme = GIMME_V;
1672 if (gimme == G_ARRAY && PL_op->op_private & OPpREPEAT_DOLIST) {
1673 /* TODO: think of some way of doing list-repeat overloading ??? */
1678 if (UNLIKELY(PL_op->op_private & OPpREPEAT_DOLIST)) {
1679 /* The parser saw this as a list repeat, and there
1680 are probably several items on the stack. But we're
1681 in scalar/void context, and there's no pp_list to save us
1682 now. So drop the rest of the items -- robin@kitsite.com
1685 if (MARK + 1 < SP) {
1691 ASSUME(MARK + 1 == SP);
1694 MARK[1] = &PL_sv_undef;
1698 tryAMAGICbin_MG(repeat_amg, AMGf_assign);
1704 const UV uv = SvUV_nomg(sv);
1706 count = IV_MAX; /* The best we can do? */
1710 count = SvIV_nomg(sv);
1713 else if (SvNOKp(sv)) {
1714 const NV nv = SvNV_nomg(sv);
1715 infnan = Perl_isinfnan(nv);
1716 if (UNLIKELY(infnan)) {
1720 count = -1; /* An arbitrary negative integer */
1726 count = SvIV_nomg(sv);
1729 Perl_ck_warner(aTHX_ packWARN(WARN_NUMERIC),
1730 "Non-finite repeat count does nothing");
1731 } else if (count < 0) {
1733 Perl_ck_warner(aTHX_ packWARN(WARN_NUMERIC),
1734 "Negative repeat count does nothing");
1737 if (gimme == G_ARRAY && PL_op->op_private & OPpREPEAT_DOLIST) {
1739 const SSize_t items = SP - MARK;
1740 const U8 mod = PL_op->op_flags & OPf_MOD;
1745 if ( items > SSize_t_MAX / count /* max would overflow */
1746 /* repeatcpy would overflow */
1747 || items > I32_MAX / (I32)sizeof(SV *)
1749 Perl_croak(aTHX_ "%s","Out of memory during list extend");
1750 max = items * count;
1755 if (mod && SvPADTMP(*SP)) {
1756 *SP = sv_mortalcopy(*SP);
1763 repeatcpy((char*)(MARK + items), (char*)MARK,
1764 items * sizeof(const SV *), count - 1);
1767 else if (count <= 0)
1770 else { /* Note: mark already snarfed by pp_list */
1771 SV * const tmpstr = POPs;
1776 sv_setsv_nomg(TARG, tmpstr);
1777 SvPV_force_nomg(TARG, len);
1778 isutf = DO_UTF8(TARG);
1785 if ( len > (MEM_SIZE_MAX-1) / (UV)count /* max would overflow */
1786 || len > (U32)I32_MAX /* repeatcpy would overflow */
1788 Perl_croak(aTHX_ "%s",
1789 "Out of memory during string extend");
1790 max = (UV)count * len + 1;
1793 repeatcpy(SvPVX(TARG) + len, SvPVX(TARG), len, count - 1);
1794 SvCUR_set(TARG, SvCUR(TARG) * count);
1796 *SvEND(TARG) = '\0';
1799 (void)SvPOK_only_UTF8(TARG);
1801 (void)SvPOK_only(TARG);
1810 dSP; dATARGET; bool useleft; SV *svl, *svr;
1811 tryAMAGICbin_MG(subtr_amg, AMGf_assign|AMGf_numeric);
1815 #ifdef PERL_PRESERVE_IVUV
1817 /* special-case some simple common cases */
1818 if (!((svl->sv_flags|svr->sv_flags) & (SVf_IVisUV|SVs_GMG))) {
1820 U32 flags = (svl->sv_flags & svr->sv_flags);
1821 if (flags & SVf_IOK) {
1822 /* both args are simple IVs */
1827 topl = ((UV)il) >> (UVSIZE * 8 - 2);
1828 topr = ((UV)ir) >> (UVSIZE * 8 - 2);
1830 /* if both are in a range that can't under/overflow, do a
1831 * simple integer subtract: if the top of both numbers
1832 * are 00 or 11, then it's safe */
1833 if (!( ((topl+1) | (topr+1)) & 2)) {
1835 TARGi(il - ir, 0); /* args not GMG, so can't be tainted */
1841 else if (flags & SVf_NOK) {
1842 /* both args are NVs */
1846 if (lossless_NV_to_IV(nl, &il) && lossless_NV_to_IV(nr, &ir)) {
1847 /* nothing was lost by converting to IVs */
1851 TARGn(nl - nr, 0); /* args not GMG, so can't be tainted */
1859 useleft = USE_LEFT(svl);
1860 /* See comments in pp_add (in pp_hot.c) about Overflow, and how
1861 "bad things" happen if you rely on signed integers wrapping. */
1862 if (SvIV_please_nomg(svr)) {
1863 /* Unless the left argument is integer in range we are going to have to
1864 use NV maths. Hence only attempt to coerce the right argument if
1865 we know the left is integer. */
1872 a_valid = auvok = 1;
1873 /* left operand is undef, treat as zero. */
1875 /* Left operand is defined, so is it IV? */
1876 if (SvIV_please_nomg(svl)) {
1877 if ((auvok = SvUOK(svl)))
1880 const IV aiv = SvIVX(svl);
1883 auvok = 1; /* Now acting as a sign flag. */
1885 auv = (UV) (0 - (UV) aiv);
1892 bool result_good = 0;
1895 bool buvok = SvUOK(svr);
1900 const IV biv = SvIVX(svr);
1905 buv = (UV) (0 - (UV) biv);
1907 /* ?uvok if value is >= 0. basically, flagged as UV if it's +ve,
1908 else "IV" now, independent of how it came in.
1909 if a, b represents positive, A, B negative, a maps to -A etc
1914 all UV maths. negate result if A negative.
1915 subtract if signs same, add if signs differ. */
1917 if (auvok ^ buvok) {
1926 /* Must get smaller */
1931 if (result <= buv) {
1932 /* result really should be -(auv-buv). as its negation
1933 of true value, need to swap our result flag */
1945 if (result <= (UV)IV_MIN)
1946 SETi(result == (UV)IV_MIN
1947 ? IV_MIN : -(IV)result);
1949 /* result valid, but out of range for IV. */
1950 SETn( -(NV)result );
1954 } /* Overflow, drop through to NVs. */
1958 useleft = USE_LEFT(svl);
1961 NV value = SvNV_nomg(svr);
1965 /* left operand is undef, treat as zero - value */
1969 SETn( SvNV_nomg(svl) - value );
1974 #define IV_BITS (IVSIZE * 8)
1976 static UV S_uv_shift(UV uv, int shift, bool left)
1982 if (UNLIKELY(shift >= IV_BITS)) {
1985 return left ? uv << shift : uv >> shift;
1988 static IV S_iv_shift(IV iv, int shift, bool left)
1995 if (UNLIKELY(shift >= IV_BITS)) {
1996 return iv < 0 && !left ? -1 : 0;
1999 /* For left shifts, perl 5 has chosen to treat the value as unsigned for
2000 * the * purposes of shifting, then cast back to signed. This is very
2001 * different from perl 6:
2003 * $ perl6 -e 'say -2 +< 5'
2006 * $ ./perl -le 'print -2 << 5'
2007 * 18446744073709551552
2010 if (iv == IV_MIN) { /* Casting this to a UV is undefined behavior */
2013 return (IV) (((UV) iv) << shift);
2016 /* Here is right shift */
2020 #define UV_LEFT_SHIFT(uv, shift) S_uv_shift(uv, shift, TRUE)
2021 #define UV_RIGHT_SHIFT(uv, shift) S_uv_shift(uv, shift, FALSE)
2022 #define IV_LEFT_SHIFT(iv, shift) S_iv_shift(iv, shift, TRUE)
2023 #define IV_RIGHT_SHIFT(iv, shift) S_iv_shift(iv, shift, FALSE)
2027 dSP; dATARGET; SV *svl, *svr;
2028 tryAMAGICbin_MG(lshift_amg, AMGf_assign|AMGf_numeric);
2032 const IV shift = SvIV_nomg(svr);
2033 if (PL_op->op_private & HINT_INTEGER) {
2034 SETi(IV_LEFT_SHIFT(SvIV_nomg(svl), shift));
2037 SETu(UV_LEFT_SHIFT(SvUV_nomg(svl), shift));
2045 dSP; dATARGET; SV *svl, *svr;
2046 tryAMAGICbin_MG(rshift_amg, AMGf_assign|AMGf_numeric);
2050 const IV shift = SvIV_nomg(svr);
2051 if (PL_op->op_private & HINT_INTEGER) {
2052 SETi(IV_RIGHT_SHIFT(SvIV_nomg(svl), shift));
2055 SETu(UV_RIGHT_SHIFT(SvUV_nomg(svl), shift));
2066 tryAMAGICbin_MG(lt_amg, AMGf_numeric);
2070 (SvIOK_notUV(left) && SvIOK_notUV(right))
2071 ? (SvIVX(left) < SvIVX(right))
2072 : (do_ncmp(left, right) == -1)
2082 tryAMAGICbin_MG(gt_amg, AMGf_numeric);
2086 (SvIOK_notUV(left) && SvIOK_notUV(right))
2087 ? (SvIVX(left) > SvIVX(right))
2088 : (do_ncmp(left, right) == 1)
2098 tryAMAGICbin_MG(le_amg, AMGf_numeric);
2102 (SvIOK_notUV(left) && SvIOK_notUV(right))
2103 ? (SvIVX(left) <= SvIVX(right))
2104 : (do_ncmp(left, right) <= 0)
2114 tryAMAGICbin_MG(ge_amg, AMGf_numeric);
2118 (SvIOK_notUV(left) && SvIOK_notUV(right))
2119 ? (SvIVX(left) >= SvIVX(right))
2120 : ( (do_ncmp(left, right) & 2) == 0)
2130 tryAMAGICbin_MG(ne_amg, AMGf_numeric);
2134 (SvIOK_notUV(left) && SvIOK_notUV(right))
2135 ? (SvIVX(left) != SvIVX(right))
2136 : (do_ncmp(left, right) != 0)
2141 /* compare left and right SVs. Returns:
2145 * 2: left or right was a NaN
2148 Perl_do_ncmp(pTHX_ SV* const left, SV * const right)
2150 PERL_ARGS_ASSERT_DO_NCMP;
2151 #ifdef PERL_PRESERVE_IVUV
2152 /* Fortunately it seems NaN isn't IOK */
2153 if (SvIV_please_nomg(right) && SvIV_please_nomg(left)) {
2155 const IV leftiv = SvIVX(left);
2156 if (!SvUOK(right)) {
2157 /* ## IV <=> IV ## */
2158 const IV rightiv = SvIVX(right);
2159 return (leftiv > rightiv) - (leftiv < rightiv);
2161 /* ## IV <=> UV ## */
2163 /* As (b) is a UV, it's >=0, so it must be < */
2166 const UV rightuv = SvUVX(right);
2167 return ((UV)leftiv > rightuv) - ((UV)leftiv < rightuv);
2172 /* ## UV <=> UV ## */
2173 const UV leftuv = SvUVX(left);
2174 const UV rightuv = SvUVX(right);
2175 return (leftuv > rightuv) - (leftuv < rightuv);
2177 /* ## UV <=> IV ## */
2179 const IV rightiv = SvIVX(right);
2181 /* As (a) is a UV, it's >=0, so it cannot be < */
2184 const UV leftuv = SvUVX(left);
2185 return (leftuv > (UV)rightiv) - (leftuv < (UV)rightiv);
2188 NOT_REACHED; /* NOTREACHED */
2192 NV const rnv = SvNV_nomg(right);
2193 NV const lnv = SvNV_nomg(left);
2195 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2196 if (Perl_isnan(lnv) || Perl_isnan(rnv)) {
2199 return (lnv > rnv) - (lnv < rnv);
2218 tryAMAGICbin_MG(ncmp_amg, AMGf_numeric);
2221 value = do_ncmp(left, right);
2233 /* also used for: pp_sge() pp_sgt() pp_slt() */
2239 int amg_type = sle_amg;
2243 switch (PL_op->op_type) {
2262 tryAMAGICbin_MG(amg_type, 0);
2266 #ifdef USE_LOCALE_COLLATE
2267 (IN_LC_RUNTIME(LC_COLLATE))
2268 ? sv_cmp_locale_flags(left, right, 0)
2271 sv_cmp_flags(left, right, 0);
2272 SETs(boolSV(cmp * multiplier < rhs));
2280 tryAMAGICbin_MG(seq_amg, 0);
2283 SETs(boolSV(sv_eq_flags(left, right, 0)));
2291 tryAMAGICbin_MG(sne_amg, 0);
2294 SETs(boolSV(!sv_eq_flags(left, right, 0)));
2302 tryAMAGICbin_MG(scmp_amg, 0);
2306 #ifdef USE_LOCALE_COLLATE
2307 (IN_LC_RUNTIME(LC_COLLATE))
2308 ? sv_cmp_locale_flags(left, right, 0)
2311 sv_cmp_flags(left, right, 0);
2320 tryAMAGICbin_MG(band_amg, AMGf_assign);
2323 if (SvNIOKp(left) || SvNIOKp(right)) {
2324 const bool left_ro_nonnum = !SvNIOKp(left) && SvREADONLY(left);
2325 const bool right_ro_nonnum = !SvNIOKp(right) && SvREADONLY(right);
2326 if (PL_op->op_private & HINT_INTEGER) {
2327 const IV i = SvIV_nomg(left) & SvIV_nomg(right);
2331 const UV u = SvUV_nomg(left) & SvUV_nomg(right);
2334 if (left_ro_nonnum && left != TARG) SvNIOK_off(left);
2335 if (right_ro_nonnum) SvNIOK_off(right);
2338 do_vop(PL_op->op_type, TARG, left, right);
2348 tryAMAGICbin_MG(band_amg, AMGf_assign|AMGf_numarg);
2350 dATARGET; dPOPTOPssrl;
2351 if (PL_op->op_private & HINT_INTEGER) {
2352 const IV i = SvIV_nomg(left) & SvIV_nomg(right);
2356 const UV u = SvUV_nomg(left) & SvUV_nomg(right);
2366 tryAMAGICbin_MG(sband_amg, AMGf_assign);
2368 dATARGET; dPOPTOPssrl;
2369 do_vop(OP_BIT_AND, TARG, left, right);
2374 /* also used for: pp_bit_xor() */
2379 const int op_type = PL_op->op_type;
2381 tryAMAGICbin_MG((op_type == OP_BIT_OR ? bor_amg : bxor_amg), AMGf_assign);
2384 if (SvNIOKp(left) || SvNIOKp(right)) {
2385 const bool left_ro_nonnum = !SvNIOKp(left) && SvREADONLY(left);
2386 const bool right_ro_nonnum = !SvNIOKp(right) && SvREADONLY(right);
2387 if (PL_op->op_private & HINT_INTEGER) {
2388 const IV l = (USE_LEFT(left) ? SvIV_nomg(left) : 0);
2389 const IV r = SvIV_nomg(right);
2390 const IV result = op_type == OP_BIT_OR ? (l | r) : (l ^ r);
2394 const UV l = (USE_LEFT(left) ? SvUV_nomg(left) : 0);
2395 const UV r = SvUV_nomg(right);
2396 const UV result = op_type == OP_BIT_OR ? (l | r) : (l ^ r);
2399 if (left_ro_nonnum && left != TARG) SvNIOK_off(left);
2400 if (right_ro_nonnum) SvNIOK_off(right);
2403 do_vop(op_type, TARG, left, right);
2410 /* also used for: pp_nbit_xor() */
2415 const int op_type = PL_op->op_type;
2417 tryAMAGICbin_MG((op_type == OP_NBIT_OR ? bor_amg : bxor_amg),
2418 AMGf_assign|AMGf_numarg);
2420 dATARGET; dPOPTOPssrl;
2421 if (PL_op->op_private & HINT_INTEGER) {
2422 const IV l = (USE_LEFT(left) ? SvIV_nomg(left) : 0);
2423 const IV r = SvIV_nomg(right);
2424 const IV result = op_type == OP_NBIT_OR ? (l | r) : (l ^ r);
2428 const UV l = (USE_LEFT(left) ? SvUV_nomg(left) : 0);
2429 const UV r = SvUV_nomg(right);
2430 const UV result = op_type == OP_NBIT_OR ? (l | r) : (l ^ r);
2437 /* also used for: pp_sbit_xor() */
2442 const int op_type = PL_op->op_type;
2444 tryAMAGICbin_MG((op_type == OP_SBIT_OR ? sbor_amg : sbxor_amg),
2447 dATARGET; dPOPTOPssrl;
2448 do_vop(op_type == OP_SBIT_OR ? OP_BIT_OR : OP_BIT_XOR, TARG, left,
2454 PERL_STATIC_INLINE bool
2455 S_negate_string(pTHX)
2460 SV * const sv = TOPs;
2461 if (!SvPOKp(sv) || SvNIOK(sv) || (!SvPOK(sv) && SvNIOKp(sv)))
2463 s = SvPV_nomg_const(sv, len);
2464 if (isIDFIRST(*s)) {
2465 sv_setpvs(TARG, "-");
2468 else if (*s == '+' || (*s == '-' && !looks_like_number(sv))) {
2469 sv_setsv_nomg(TARG, sv);
2470 *SvPV_force_nomg(TARG, len) = *s == '-' ? '+' : '-';
2480 tryAMAGICun_MG(neg_amg, AMGf_numeric);
2481 if (S_negate_string(aTHX)) return NORMAL;
2483 SV * const sv = TOPs;
2486 /* It's publicly an integer */
2489 if (SvIVX(sv) == IV_MIN) {
2490 /* 2s complement assumption. */
2491 SETi(SvIVX(sv)); /* special case: -((UV)IV_MAX+1) ==
2495 else if (SvUVX(sv) <= IV_MAX) {
2500 else if (SvIVX(sv) != IV_MIN) {
2504 #ifdef PERL_PRESERVE_IVUV
2511 if (SvNIOKp(sv) && (SvNIOK(sv) || !SvPOK(sv)))
2512 SETn(-SvNV_nomg(sv));
2513 else if (SvPOKp(sv) && SvIV_please_nomg(sv))
2514 goto oops_its_an_int;
2516 SETn(-SvNV_nomg(sv));
2526 tryAMAGICun_MG(not_amg, 0);
2528 *PL_stack_sp = boolSV(!SvTRUE_nomg_NN(sv));
2533 S_scomplement(pTHX_ SV *targ, SV *sv)
2539 sv_copypv_nomg(TARG, sv);
2540 tmps = (U8*)SvPV_nomg(TARG, len);
2543 if (len && ! utf8_to_bytes(tmps, &len)) {
2544 Perl_croak(aTHX_ FATAL_ABOVE_FF_MSG, PL_op_desc[PL_op->op_type]);
2555 for ( ; anum && (unsigned long)tmps % sizeof(long); anum--, tmps++)
2558 for ( ; anum >= (I32)sizeof(long); anum -= (I32)sizeof(long), tmpl++)
2563 for ( ; anum > 0; anum--, tmps++)
2570 tryAMAGICun_MG(compl_amg, AMGf_numeric);
2574 if (PL_op->op_private & HINT_INTEGER) {
2575 const IV i = ~SvIV_nomg(sv);
2579 const UV u = ~SvUV_nomg(sv);
2584 S_scomplement(aTHX_ TARG, sv);
2594 tryAMAGICun_MG(compl_amg, AMGf_numeric|AMGf_numarg);
2597 if (PL_op->op_private & HINT_INTEGER) {
2598 const IV i = ~SvIV_nomg(sv);
2602 const UV u = ~SvUV_nomg(sv);
2612 tryAMAGICun_MG(scompl_amg, AMGf_numeric);
2615 S_scomplement(aTHX_ TARG, sv);
2621 /* integer versions of some of the above */
2626 tryAMAGICbin_MG(mult_amg, AMGf_assign);
2629 SETi( left * right );
2638 tryAMAGICbin_MG(div_amg, AMGf_assign);
2641 IV value = SvIV_nomg(right);
2643 DIE(aTHX_ "Illegal division by zero");
2644 num = SvIV_nomg(left);
2646 /* avoid FPE_INTOVF on some platforms when num is IV_MIN */
2650 value = num / value;
2658 /* This is the vanilla old i_modulo. */
2660 tryAMAGICbin_MG(modulo_amg, AMGf_assign);
2664 DIE(aTHX_ "Illegal modulus zero");
2665 /* avoid FPE_INTOVF on some platforms when left is IV_MIN */
2669 SETi( left % right );
2674 #if defined(__GLIBC__) && IVSIZE == 8 \
2675 && ( __GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 8))
2677 PP(pp_i_modulo_glibc_bugfix)
2679 /* This is the i_modulo with the workaround for the _moddi3 bug
2680 * in (at least) glibc 2.2.5 (the PERL_ABS() the workaround).
2681 * See below for pp_i_modulo. */
2683 tryAMAGICbin_MG(modulo_amg, AMGf_assign);
2687 DIE(aTHX_ "Illegal modulus zero");
2688 /* avoid FPE_INTOVF on some platforms when left is IV_MIN */
2692 SETi( left % PERL_ABS(right) );
2701 tryAMAGICbin_MG(add_amg, AMGf_assign);
2703 dPOPTOPiirl_ul_nomg;
2704 SETi( left + right );
2712 tryAMAGICbin_MG(subtr_amg, AMGf_assign);
2714 dPOPTOPiirl_ul_nomg;
2715 SETi( left - right );
2723 tryAMAGICbin_MG(lt_amg, 0);
2726 SETs(boolSV(left < right));
2734 tryAMAGICbin_MG(gt_amg, 0);
2737 SETs(boolSV(left > right));
2745 tryAMAGICbin_MG(le_amg, 0);
2748 SETs(boolSV(left <= right));
2756 tryAMAGICbin_MG(ge_amg, 0);
2759 SETs(boolSV(left >= right));
2767 tryAMAGICbin_MG(eq_amg, 0);
2770 SETs(boolSV(left == right));
2778 tryAMAGICbin_MG(ne_amg, 0);
2781 SETs(boolSV(left != right));
2789 tryAMAGICbin_MG(ncmp_amg, 0);
2796 else if (left < right)
2808 tryAMAGICun_MG(neg_amg, 0);
2809 if (S_negate_string(aTHX)) return NORMAL;
2811 SV * const sv = TOPs;
2812 IV const i = SvIV_nomg(sv);
2818 /* High falutin' math. */
2823 tryAMAGICbin_MG(atan2_amg, 0);
2826 SETn(Perl_atan2(left, right));
2832 /* also used for: pp_cos() pp_exp() pp_log() pp_sqrt() */
2837 int amg_type = fallback_amg;
2838 const char *neg_report = NULL;
2839 const int op_type = PL_op->op_type;
2842 case OP_SIN: amg_type = sin_amg; break;
2843 case OP_COS: amg_type = cos_amg; break;
2844 case OP_EXP: amg_type = exp_amg; break;
2845 case OP_LOG: amg_type = log_amg; neg_report = "log"; break;
2846 case OP_SQRT: amg_type = sqrt_amg; neg_report = "sqrt"; break;
2849 assert(amg_type != fallback_amg);
2851 tryAMAGICun_MG(amg_type, 0);
2853 SV * const arg = TOPs;
2854 const NV value = SvNV_nomg(arg);
2860 if (neg_report) { /* log or sqrt */
2862 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2863 ! Perl_isnan(value) &&
2865 (op_type == OP_LOG ? (value <= 0.0) : (value < 0.0))) {
2866 SET_NUMERIC_STANDARD();
2867 /* diag_listed_as: Can't take log of %g */
2868 DIE(aTHX_ "Can't take %s of %" NVgf, neg_report, value);
2873 case OP_SIN: result = Perl_sin(value); break;
2874 case OP_COS: result = Perl_cos(value); break;
2875 case OP_EXP: result = Perl_exp(value); break;
2876 case OP_LOG: result = Perl_log(value); break;
2877 case OP_SQRT: result = Perl_sqrt(value); break;
2884 /* Support Configure command-line overrides for rand() functions.
2885 After 5.005, perhaps we should replace this by Configure support
2886 for drand48(), random(), or rand(). For 5.005, though, maintain
2887 compatibility by calling rand() but allow the user to override it.
2888 See INSTALL for details. --Andy Dougherty 15 July 1998
2890 /* Now it's after 5.005, and Configure supports drand48() and random(),
2891 in addition to rand(). So the overrides should not be needed any more.
2892 --Jarkko Hietaniemi 27 September 1998
2897 if (!PL_srand_called) {
2898 (void)seedDrand01((Rand_seed_t)seed());
2899 PL_srand_called = TRUE;
2911 SV * const sv = POPs;
2917 /* 1 of 2 things can be carried through SvNV, SP or TARG, SP was carried */
2918 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2919 if (! Perl_isnan(value) && value == 0.0)
2929 sv_setnv_mg(TARG, value);
2940 if (MAXARG >= 1 && (TOPs || POPs)) {
2947 pv = SvPV(top, len);
2948 flags = grok_number(pv, len, &anum);
2950 if (!(flags & IS_NUMBER_IN_UV)) {
2951 Perl_ck_warner_d(aTHX_ packWARN(WARN_OVERFLOW),
2952 "Integer overflow in srand");
2960 (void)seedDrand01((Rand_seed_t)anum);
2961 PL_srand_called = TRUE;
2965 /* Historically srand always returned true. We can avoid breaking
2967 sv_setpvs(TARG, "0 but true");
2976 tryAMAGICun_MG(int_amg, AMGf_numeric);
2978 SV * const sv = TOPs;
2979 const IV iv = SvIV_nomg(sv);
2980 /* XXX it's arguable that compiler casting to IV might be subtly
2981 different from modf (for numbers inside (IV_MIN,UV_MAX)) in which
2982 else preferring IV has introduced a subtle behaviour change bug. OTOH
2983 relying on floating point to be accurate is a bug. */
2988 else if (SvIOK(sv)) {
2990 SETu(SvUV_nomg(sv));
2995 const NV value = SvNV_nomg(sv);
2996 if (UNLIKELY(Perl_isinfnan(value)))
2998 else if (value >= 0.0) {
2999 if (value < (NV)UV_MAX + 0.5) {
3002 SETn(Perl_floor(value));
3006 if (value > (NV)IV_MIN - 0.5) {
3009 SETn(Perl_ceil(value));
3020 tryAMAGICun_MG(abs_amg, AMGf_numeric);
3022 SV * const sv = TOPs;
3023 /* This will cache the NV value if string isn't actually integer */
3024 const IV iv = SvIV_nomg(sv);
3029 else if (SvIOK(sv)) {
3030 /* IVX is precise */
3032 SETu(SvUV_nomg(sv)); /* force it to be numeric only */
3040 /* 2s complement assumption. Also, not really needed as
3041 IV_MIN and -IV_MIN should both be %100...00 and NV-able */
3047 const NV value = SvNV_nomg(sv);
3058 /* also used for: pp_hex() */
3064 I32 flags = PERL_SCAN_ALLOW_UNDERSCORES;
3068 SV* const sv = TOPs;
3070 tmps = (SvPV_const(sv, len));
3072 /* If Unicode, try to downgrade
3073 * If not possible, croak. */
3074 SV* const tsv = sv_2mortal(newSVsv(sv));
3077 sv_utf8_downgrade(tsv, FALSE);
3078 tmps = SvPV_const(tsv, len);
3080 if (PL_op->op_type == OP_HEX)
3083 while (*tmps && len && isSPACE(*tmps))
3087 if (isALPHA_FOLD_EQ(*tmps, 'x')) {
3089 result_uv = grok_hex (tmps, &len, &flags, &result_nv);
3091 else if (isALPHA_FOLD_EQ(*tmps, 'b'))
3092 result_uv = grok_bin (tmps, &len, &flags, &result_nv);
3094 result_uv = grok_oct (tmps, &len, &flags, &result_nv);
3096 if (flags & PERL_SCAN_GREATER_THAN_UV_MAX) {
3111 SV * const sv = TOPs;
3113 U32 in_bytes = IN_BYTES;
3114 /* Simplest case shortcut:
3115 * set svflags to just the SVf_POK|SVs_GMG|SVf_UTF8 from the SV,
3116 * with the SVf_UTF8 flag inverted if under 'use bytes' (HINT_BYTES
3119 U32 svflags = (SvFLAGS(sv) ^ (in_bytes << 26)) & (SVf_POK|SVs_GMG|SVf_UTF8);
3121 STATIC_ASSERT_STMT(SVf_UTF8 == (HINT_BYTES << 26));
3124 if (LIKELY(svflags == SVf_POK))
3127 if (svflags & SVs_GMG)
3132 if (!IN_BYTES) { /* reread to avoid using an C auto/register */
3133 if ((SvFLAGS(sv) & (SVf_POK|SVf_UTF8)) == SVf_POK)
3135 if ( SvPOK(sv) && (PL_op->op_private & OPpTRUEBOOL)) {
3136 /* no need to convert from bytes to chars */
3140 len = sv_len_utf8_nomg(sv);
3143 /* unrolled SvPV_nomg_const(sv,len) */
3144 if (SvPOK_nog(sv)) {
3147 if (PL_op->op_private & OPpTRUEBOOL) {
3149 SETs(len ? &PL_sv_yes : &PL_sv_zero);
3154 (void)sv_2pv_flags(sv, &len, 0|SV_CONST_RETURN);
3157 TARGi((IV)(len), 1);
3160 if (!SvPADTMP(TARG)) {
3161 /* OPpTARGET_MY: targ is var in '$lex = length()' */
3166 /* TARG is on stack at this point and is overwriten by SETs.
3167 * This branch is the odd one out, so put TARG by default on
3168 * stack earlier to let local SP go out of liveness sooner */
3171 return NORMAL; /* no putback, SP didn't move in this opcode */
3175 /* Returns false if substring is completely outside original string.
3176 No length is indicated by len_iv = 0 and len_is_uv = 0. len_is_uv must
3177 always be true for an explicit 0.
3180 Perl_translate_substr_offsets( STRLEN curlen, IV pos1_iv,
3181 bool pos1_is_uv, IV len_iv,
3182 bool len_is_uv, STRLEN *posp,
3188 PERL_ARGS_ASSERT_TRANSLATE_SUBSTR_OFFSETS;
3190 if (!pos1_is_uv && pos1_iv < 0 && curlen) {
3191 pos1_is_uv = curlen-1 > ~(UV)pos1_iv;
3194 if ((pos1_is_uv || pos1_iv > 0) && (UV)pos1_iv > curlen)
3197 if (len_iv || len_is_uv) {
3198 if (!len_is_uv && len_iv < 0) {
3199 pos2_iv = curlen + len_iv;
3201 pos2_is_uv = curlen-1 > ~(UV)len_iv;
3204 } else { /* len_iv >= 0 */
3205 if (!pos1_is_uv && pos1_iv < 0) {
3206 pos2_iv = pos1_iv + len_iv;
3207 pos2_is_uv = (UV)len_iv > (UV)IV_MAX;
3209 if ((UV)len_iv > curlen-(UV)pos1_iv)
3212 pos2_iv = pos1_iv+len_iv;
3222 if (!pos2_is_uv && pos2_iv < 0) {
3223 if (!pos1_is_uv && pos1_iv < 0)
3227 else if (!pos1_is_uv && pos1_iv < 0)
3230 if ((UV)pos2_iv < (UV)pos1_iv)
3232 if ((UV)pos2_iv > curlen)
3235 /* pos1_iv and pos2_iv both in 0..curlen, so the cast is safe */
3236 *posp = (STRLEN)( (UV)pos1_iv );
3237 *lenp = (STRLEN)( (UV)pos2_iv - (UV)pos1_iv );
3254 I32 lvalue = PL_op->op_flags & OPf_MOD || LVRET;
3255 const bool rvalue = (GIMME_V != G_VOID);
3258 const char *repl = NULL;
3260 int num_args = PL_op->op_private & 7;
3261 bool repl_need_utf8_upgrade = FALSE;
3265 if(!(repl_sv = POPs)) num_args--;
3267 if ((len_sv = POPs)) {
3268 len_iv = SvIV(len_sv);
3269 len_is_uv = len_iv ? SvIOK_UV(len_sv) : 1;
3274 pos1_iv = SvIV(pos_sv);
3275 pos1_is_uv = SvIOK_UV(pos_sv);
3277 if (PL_op->op_private & OPpSUBSTR_REPL_FIRST) {
3281 if (lvalue && !repl_sv) {
3283 ret = sv_2mortal(newSV_type(SVt_PVLV)); /* Not TARG RT#67838 */
3284 sv_magic(ret, NULL, PERL_MAGIC_substr, NULL, 0);
3286 LvTARG(ret) = SvREFCNT_inc_simple(sv);
3288 pos1_is_uv || pos1_iv >= 0
3289 ? (STRLEN)(UV)pos1_iv
3290 : (LvFLAGS(ret) |= LVf_NEG_OFF, (STRLEN)(UV)-pos1_iv);
3292 len_is_uv || len_iv > 0
3293 ? (STRLEN)(UV)len_iv
3294 : (LvFLAGS(ret) |= LVf_NEG_LEN, (STRLEN)(UV)-len_iv);
3296 PUSHs(ret); /* avoid SvSETMAGIC here */
3300 repl = SvPV_const(repl_sv, repl_len);
3303 Perl_ck_warner(aTHX_ packWARN(WARN_SUBSTR),
3304 "Attempt to use reference as lvalue in substr"
3306 tmps = SvPV_force_nomg(sv, curlen);
3307 if (DO_UTF8(repl_sv) && repl_len) {
3309 /* Upgrade the dest, and recalculate tmps in case the buffer
3310 * got reallocated; curlen may also have been changed */
3311 sv_utf8_upgrade_nomg(sv);
3312 tmps = SvPV_nomg(sv, curlen);
3315 else if (DO_UTF8(sv))
3316 repl_need_utf8_upgrade = TRUE;
3318 else tmps = SvPV_const(sv, curlen);
3320 utf8_curlen = sv_or_pv_len_utf8(sv, tmps, curlen);
3321 if (utf8_curlen == curlen)
3324 curlen = utf8_curlen;
3330 STRLEN pos, len, byte_len, byte_pos;
3332 if (!translate_substr_offsets(
3333 curlen, pos1_iv, pos1_is_uv, len_iv, len_is_uv, &pos, &len
3337 byte_pos = utf8_curlen
3338 ? sv_or_pv_pos_u2b(sv, tmps, pos, &byte_len) : pos;
3343 SvTAINTED_off(TARG); /* decontaminate */
3344 SvUTF8_off(TARG); /* decontaminate */
3345 sv_setpvn(TARG, tmps, byte_len);
3346 #ifdef USE_LOCALE_COLLATE
3347 sv_unmagic(TARG, PERL_MAGIC_collxfrm);
3354 SV* repl_sv_copy = NULL;
3356 if (repl_need_utf8_upgrade) {
3357 repl_sv_copy = newSVsv(repl_sv);
3358 sv_utf8_upgrade(repl_sv_copy);
3359 repl = SvPV_const(repl_sv_copy, repl_len);
3363 sv_insert_flags(sv, byte_pos, byte_len, repl, repl_len, 0);
3364 SvREFCNT_dec(repl_sv_copy);
3367 if (PL_op->op_private & OPpSUBSTR_REPL_FIRST)
3377 Perl_croak(aTHX_ "substr outside of string");
3378 Perl_ck_warner(aTHX_ packWARN(WARN_SUBSTR), "substr outside of string");
3385 const IV size = POPi;
3386 SV* offsetsv = POPs;
3387 SV * const src = POPs;
3388 const I32 lvalue = PL_op->op_flags & OPf_MOD || LVRET;
3394 /* extract a STRLEN-ranged integer value from offsetsv into offset,
3395 * or flag that its out of range */
3397 IV iv = SvIV(offsetsv);
3399 /* avoid a large UV being wrapped to a negative value */
3400 if (SvIOK_UV(offsetsv) && SvUVX(offsetsv) > (UV)IV_MAX)
3401 errflags = LVf_OUT_OF_RANGE;
3403 errflags = (LVf_NEG_OFF|LVf_OUT_OF_RANGE);
3404 #if PTRSIZE < IVSIZE
3405 else if (iv > Size_t_MAX)
3406 errflags = LVf_OUT_OF_RANGE;
3409 offset = (STRLEN)iv;
3412 retuv = errflags ? 0 : do_vecget(src, offset, size);
3414 if (lvalue) { /* it's an lvalue! */
3415 ret = sv_2mortal(newSV_type(SVt_PVLV)); /* Not TARG RT#67838 */
3416 sv_magic(ret, NULL, PERL_MAGIC_vec, NULL, 0);
3418 LvTARG(ret) = SvREFCNT_inc_simple(src);
3419 LvTARGOFF(ret) = offset;
3420 LvTARGLEN(ret) = size;
3421 LvFLAGS(ret) = errflags;
3425 SvTAINTED_off(TARG); /* decontaminate */
3429 sv_setuv(ret, retuv);
3437 /* also used for: pp_rindex() */
3450 const char *little_p;
3453 const bool is_index = PL_op->op_type == OP_INDEX;
3454 const bool threeargs = MAXARG >= 3 && (TOPs || ((void)POPs,0));
3460 big_p = SvPV_const(big, biglen);
3461 little_p = SvPV_const(little, llen);
3463 big_utf8 = DO_UTF8(big);
3464 little_utf8 = DO_UTF8(little);
3465 if (big_utf8 ^ little_utf8) {
3466 /* One needs to be upgraded. */
3468 /* Well, maybe instead we might be able to downgrade the small
3470 char * const pv = (char*)bytes_from_utf8((U8 *)little_p, &llen,
3473 /* If the large string is ISO-8859-1, and it's not possible to
3474 convert the small string to ISO-8859-1, then there is no
3475 way that it could be found anywhere by index. */
3480 /* At this point, pv is a malloc()ed string. So donate it to temp
3481 to ensure it will get free()d */
3482 little = temp = newSV(0);
3483 sv_usepvn(temp, pv, llen);
3484 little_p = SvPVX(little);
3486 temp = newSVpvn(little_p, llen);
3488 sv_utf8_upgrade(temp);
3490 little_p = SvPV_const(little, llen);
3493 if (SvGAMAGIC(big)) {
3494 /* Life just becomes a lot easier if I use a temporary here.
3495 Otherwise I need to avoid calls to sv_pos_u2b(), which (dangerously)
3496 will trigger magic and overloading again, as will fbm_instr()
3498 big = newSVpvn_flags(big_p, biglen,
3499 SVs_TEMP | (big_utf8 ? SVf_UTF8 : 0));
3502 if (SvGAMAGIC(little) || (is_index && !SvOK(little))) {
3503 /* index && SvOK() is a hack. fbm_instr() calls SvPV_const, which will
3504 warn on undef, and we've already triggered a warning with the
3505 SvPV_const some lines above. We can't remove that, as we need to
3506 call some SvPV to trigger overloading early and find out if the
3508 This is all getting too messy. The API isn't quite clean enough,
3509 because data access has side effects.
3511 little = newSVpvn_flags(little_p, llen,
3512 SVs_TEMP | (little_utf8 ? SVf_UTF8 : 0));
3513 little_p = SvPVX(little);
3517 offset = is_index ? 0 : biglen;
3519 if (big_utf8 && offset > 0)
3520 offset = sv_pos_u2b_flags(big, offset, 0, SV_CONST_RETURN);
3526 else if (offset > (SSize_t)biglen)
3528 if (!(little_p = is_index
3529 ? fbm_instr((unsigned char*)big_p + offset,
3530 (unsigned char*)big_p + biglen, little, 0)
3531 : rninstr(big_p, big_p + offset,
3532 little_p, little_p + llen)))
3535 retval = little_p - big_p;
3536 if (retval > 1 && big_utf8)
3537 retval = sv_pos_b2u_flags(big, retval, SV_CONST_RETURN);
3542 /* OPpTRUEBOOL indicates an '== -1' has been optimised away */
3543 if (PL_op->op_private & OPpTRUEBOOL) {
3544 PUSHs( ((retval != -1) ^ cBOOL(PL_op->op_private & OPpINDEX_BOOLNEG))
3545 ? &PL_sv_yes : &PL_sv_no);
3546 if (PL_op->op_private & OPpTARGET_MY)
3547 /* $lex = (index() == -1) */
3548 sv_setsv(TARG, TOPs);
3557 dSP; dMARK; dORIGMARK; dTARGET;
3558 SvTAINTED_off(TARG);
3559 do_sprintf(TARG, SP-MARK, MARK+1);
3560 TAINT_IF(SvTAINTED(TARG));
3572 const U8 *s = (U8*)SvPV_const(argsv, len);
3575 ? (len ? utf8n_to_uvchr(s, len, 0, UTF8_ALLOW_ANYUV) : 0)
3589 if (UNLIKELY(SvAMAGIC(top)))
3591 if (UNLIKELY(isinfnansv(top)))
3592 Perl_croak(aTHX_ "Cannot chr %" NVgf, SvNV(top));
3594 if (!IN_BYTES /* under bytes, chr(-1) eq chr(0xff), etc. */
3595 && ((SvIOKp(top) && !SvIsUV(top) && SvIV_nomg(top) < 0)
3597 ((SvNOKp(top) || (SvOK(top) && !SvIsUV(top)))
3598 && SvNV_nomg(top) < 0.0)))
3600 if (ckWARN(WARN_UTF8)) {
3601 if (SvGMAGICAL(top)) {
3602 SV *top2 = sv_newmortal();
3603 sv_setsv_nomg(top2, top);
3606 Perl_warner(aTHX_ packWARN(WARN_UTF8),
3607 "Invalid negative number (%" SVf ") in chr", SVfARG(top));
3609 value = UNICODE_REPLACEMENT;
3611 value = SvUV_nomg(top);
3615 SvUPGRADE(TARG,SVt_PV);
3617 if (value > 255 && !IN_BYTES) {
3618 SvGROW(TARG, (STRLEN)UVCHR_SKIP(value)+1);
3619 tmps = (char*)uvchr_to_utf8_flags((U8*)SvPVX(TARG), value, 0);
3620 SvCUR_set(TARG, tmps - SvPVX_const(TARG));
3622 (void)SvPOK_only(TARG);
3631 *tmps++ = (char)value;
3633 (void)SvPOK_only(TARG);
3645 const char *tmps = SvPV_const(left, len);
3647 if (DO_UTF8(left)) {
3648 /* If Unicode, try to downgrade.
3649 * If not possible, croak.
3650 * Yes, we made this up. */
3651 SV* const tsv = newSVpvn_flags(tmps, len, SVf_UTF8|SVs_TEMP);
3653 sv_utf8_downgrade(tsv, FALSE);
3654 tmps = SvPV_const(tsv, len);
3656 # ifdef USE_ITHREADS
3658 if (!PL_reentrant_buffer->_crypt_struct_buffer) {
3659 /* This should be threadsafe because in ithreads there is only
3660 * one thread per interpreter. If this would not be true,
3661 * we would need a mutex to protect this malloc. */
3662 PL_reentrant_buffer->_crypt_struct_buffer =
3663 (struct crypt_data *)safemalloc(sizeof(struct crypt_data));
3664 #if defined(__GLIBC__) || defined(__EMX__)
3665 if (PL_reentrant_buffer->_crypt_struct_buffer) {
3666 PL_reentrant_buffer->_crypt_struct_buffer->initialized = 0;
3667 #if (defined(__GLIBC__) && __GLIBC__ == 2) && \
3668 (defined(__GLIBC_MINOR__) && __GLIBC_MINOR__ >= 2 && __GLIBC_MINOR__ < 4)
3669 /* work around glibc-2.2.5 bug, has been fixed at some
3670 * time in glibc-2.3.X */
3671 PL_reentrant_buffer->_crypt_struct_buffer->current_saltbits = 0;
3676 # endif /* HAS_CRYPT_R */
3677 # endif /* USE_ITHREADS */
3679 sv_setpv(TARG, fcrypt(tmps, SvPV_nolen_const(right)));
3681 sv_setpv(TARG, PerlProc_crypt(tmps, SvPV_nolen_const(right)));
3688 "The crypt() function is unimplemented due to excessive paranoia.");
3692 /* Generally UTF-8 and UTF-EBCDIC are indistinguishable at this level. So
3693 * most comments below say UTF-8, when in fact they mean UTF-EBCDIC as well */
3696 /* also used for: pp_lcfirst() */
3700 /* Actually is both lcfirst() and ucfirst(). Only the first character
3701 * changes. This means that possibly we can change in-place, ie., just
3702 * take the source and change that one character and store it back, but not
3703 * if read-only etc, or if the length changes */
3707 STRLEN slen; /* slen is the byte length of the whole SV. */
3710 bool inplace; /* ? Convert first char only, in-place */
3711 bool doing_utf8 = FALSE; /* ? using utf8 */
3712 bool convert_source_to_utf8 = FALSE; /* ? need to convert */
3713 const int op_type = PL_op->op_type;
3716 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
3717 STRLEN ulen; /* ulen is the byte length of the original Unicode character
3718 * stored as UTF-8 at s. */
3719 STRLEN tculen; /* tculen is the byte length of the freshly titlecased (or
3720 * lowercased) character stored in tmpbuf. May be either
3721 * UTF-8 or not, but in either case is the number of bytes */
3722 bool remove_dot_above = FALSE;
3724 s = (const U8*)SvPV_const(source, slen);
3726 /* We may be able to get away with changing only the first character, in
3727 * place, but not if read-only, etc. Later we may discover more reasons to
3728 * not convert in-place. */
3729 inplace = !SvREADONLY(source) && SvPADTMP(source);
3731 #ifdef USE_LOCALE_CTYPE
3733 if (IN_LC_RUNTIME(LC_CTYPE)) {
3734 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
3739 /* First calculate what the changed first character should be. This affects
3740 * whether we can just swap it out, leaving the rest of the string unchanged,
3741 * or even if have to convert the dest to UTF-8 when the source isn't */
3743 if (! slen) { /* If empty */
3744 need = 1; /* still need a trailing NUL */
3748 else if (DO_UTF8(source)) { /* Is the source utf8? */
3752 if (op_type == OP_UCFIRST) {
3753 #ifdef USE_LOCALE_CTYPE
3754 _toTITLE_utf8_flags(s, s +slen, tmpbuf, &tculen, IN_LC_RUNTIME(LC_CTYPE));
3756 _toTITLE_utf8_flags(s, s +slen, tmpbuf, &tculen, 0);
3761 #ifdef USE_LOCALE_CTYPE
3763 _toLOWER_utf8_flags(s, s + slen, tmpbuf, &tculen, IN_LC_RUNTIME(LC_CTYPE));
3765 /* In turkic locales, lower casing an 'I' normally yields U+0131,
3766 * LATIN SMALL LETTER DOTLESS I, but not if the grapheme also
3767 * contains a COMBINING DOT ABOVE. Instead it is treated like
3768 * LATIN CAPITAL LETTER I WITH DOT ABOVE lowercased to 'i'. The
3769 * call to lowercase above has handled this. But SpecialCasing.txt
3770 * says we are supposed to remove the COMBINING DOT ABOVE. We can
3771 * tell if we have this situation if I ==> i in a turkic locale. */
3772 if ( UNLIKELY(PL_in_utf8_turkic_locale)
3773 && IN_LC_RUNTIME(LC_CTYPE)
3774 && (UNLIKELY(*s == 'I' && tmpbuf[0] == 'i')))
3776 /* Here, we know there was a COMBINING DOT ABOVE. We won't be
3777 * able to handle this in-place. */
3780 /* It seems likely that the DOT will immediately follow the
3781 * 'I'. If so, we can remove it simply by indicating to the
3782 * code below to start copying the source just beyond the DOT.
3783 * We know its length is 2 */
3784 if (LIKELY(memBEGINs(s + 1, s + slen, COMBINING_DOT_ABOVE_UTF8))) {
3787 else { /* But if it doesn't follow immediately, set a flag for
3789 remove_dot_above = TRUE;
3793 PERL_UNUSED_VAR(remove_dot_above);
3795 _toLOWER_utf8_flags(s, s + slen, tmpbuf, &tculen, 0);
3800 /* we can't do in-place if the length changes. */
3801 if (ulen != tculen) inplace = FALSE;
3802 need = slen + 1 - ulen + tculen;
3804 else { /* Non-zero length, non-UTF-8, Need to consider locale and if
3805 * latin1 is treated as caseless. Note that a locale takes
3807 ulen = 1; /* Original character is 1 byte */
3808 tculen = 1; /* Most characters will require one byte, but this will
3809 * need to be overridden for the tricky ones */
3813 #ifdef USE_LOCALE_CTYPE
3815 if (IN_LC_RUNTIME(LC_CTYPE)) {
3816 if ( UNLIKELY(PL_in_utf8_turkic_locale)
3817 && ( (op_type == OP_LCFIRST && UNLIKELY(*s == 'I'))
3818 || (op_type == OP_UCFIRST && UNLIKELY(*s == 'i'))))
3820 if (*s == 'I') { /* lcfirst('I') */
3821 tmpbuf[0] = UTF8_TWO_BYTE_HI(LATIN_SMALL_LETTER_DOTLESS_I);
3822 tmpbuf[1] = UTF8_TWO_BYTE_LO(LATIN_SMALL_LETTER_DOTLESS_I);
3824 else { /* ucfirst('i') */
3825 tmpbuf[0] = UTF8_TWO_BYTE_HI(LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE);
3826 tmpbuf[1] = UTF8_TWO_BYTE_LO(LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE);
3831 convert_source_to_utf8 = TRUE;
3832 need += variant_under_utf8_count(s, s + slen);
3834 else if (op_type == OP_LCFIRST) {
3836 /* For lc, there are no gotchas for UTF-8 locales (other than
3837 * the turkish ones already handled above) */
3838 *tmpbuf = toLOWER_LC(*s);
3840 else { /* ucfirst */
3842 /* But for uc, some characters require special handling */
3843 if (IN_UTF8_CTYPE_LOCALE) {
3847 /* This would be a bug if any locales have upper and title case
3849 *tmpbuf = (U8) toUPPER_LC(*s);
3854 /* Here, not in locale. If not using Unicode rules, is a simple
3855 * lower/upper, depending */
3856 if (! IN_UNI_8_BIT) {
3857 *tmpbuf = (op_type == OP_LCFIRST)
3861 else if (op_type == OP_LCFIRST) {
3862 /* lower case the first letter: no trickiness for any character */
3863 *tmpbuf = toLOWER_LATIN1(*s);
3866 /* Here, is ucfirst non-UTF-8, not in locale (unless that locale is
3867 * non-turkic UTF-8, which we treat as not in locale), and cased
3870 #ifdef USE_LOCALE_CTYPE
3874 title_ord = _to_upper_title_latin1(*s, tmpbuf, &tculen, 's');
3876 assert(tculen == 2);
3878 /* If the result is an upper Latin1-range character, it can
3879 * still be represented in one byte, which is its ordinal */
3880 if (UTF8_IS_DOWNGRADEABLE_START(*tmpbuf)) {
3881 *tmpbuf = (U8) title_ord;
3885 /* Otherwise it became more than one ASCII character (in
3886 * the case of LATIN_SMALL_LETTER_SHARP_S) or changed to
3887 * beyond Latin1, so the number of bytes changed, so can't
3888 * replace just the first character in place. */
3891 /* If the result won't fit in a byte, the entire result
3892 * will have to be in UTF-8. Allocate enough space for the
3893 * expanded first byte, and if UTF-8, the rest of the input
3894 * string, some or all of which may also expand to two
3895 * bytes, plus the terminating NUL. */
3896 if (title_ord > 255) {
3898 convert_source_to_utf8 = TRUE;
3900 + variant_under_utf8_count(s, s + slen)
3903 /* The (converted) UTF-8 and UTF-EBCDIC lengths of all
3904 * characters whose title case is above 255 is
3908 else { /* LATIN_SMALL_LETTER_SHARP_S expands by 1 byte */
3909 need = slen + 1 + 1;
3913 } /* End of use Unicode (Latin1) semantics */
3914 } /* End of changing the case of the first character */
3916 /* Here, have the first character's changed case stored in tmpbuf. Ready to
3917 * generate the result */
3920 /* We can convert in place. This means we change just the first
3921 * character without disturbing the rest; no need to grow */
3923 s = d = (U8*)SvPV_force_nomg(source, slen);
3929 /* Here, we can't convert in place; we earlier calculated how much
3930 * space we will need, so grow to accommodate that */
3931 SvUPGRADE(dest, SVt_PV);
3932 d = (U8*)SvGROW(dest, need);
3933 (void)SvPOK_only(dest);
3940 if (! convert_source_to_utf8) {
3942 /* Here both source and dest are in UTF-8, but have to create
3943 * the entire output. We initialize the result to be the
3944 * title/lower cased first character, and then append the rest
3946 sv_setpvn(dest, (char*)tmpbuf, tculen);
3949 /* But this boolean being set means we are in a turkic
3950 * locale, and there is a DOT character that needs to be
3951 * removed, and it isn't immediately after the current
3952 * character. Keep concatenating characters to the output
3953 * one at a time, until we find the DOT, which we simply
3955 if (UNLIKELY(remove_dot_above)) {
3957 Size_t this_len = UTF8SKIP(s + ulen);
3959 sv_catpvn(dest, (char*)(s + ulen), this_len);
3962 if (memBEGINs(s + ulen, s + slen, COMBINING_DOT_ABOVE_UTF8)) {
3966 } while (s + ulen < s + slen);
3969 /* The rest of the string can be concatenated unchanged,
3971 sv_catpvn(dest, (char*)(s + ulen), slen - ulen);
3975 const U8 *const send = s + slen;
3977 /* Here the dest needs to be in UTF-8, but the source isn't,
3978 * except we earlier UTF-8'd the first character of the source
3979 * into tmpbuf. First put that into dest, and then append the
3980 * rest of the source, converting it to UTF-8 as we go. */
3982 /* Assert tculen is 2 here because the only characters that
3983 * get to this part of the code have 2-byte UTF-8 equivalents */
3984 assert(tculen == 2);
3986 *d++ = *(tmpbuf + 1);
3987 s++; /* We have just processed the 1st char */
3990 append_utf8_from_native_byte(*s, &d);
3995 SvCUR_set(dest, d - (U8*)SvPVX_const(dest));
3999 else { /* in-place UTF-8. Just overwrite the first character */
4000 Copy(tmpbuf, d, tculen, U8);
4001 SvCUR_set(dest, need - 1);
4005 else { /* Neither source nor dest are, nor need to be UTF-8 */
4007 if (inplace) { /* in-place, only need to change the 1st char */
4010 else { /* Not in-place */
4012 /* Copy the case-changed character(s) from tmpbuf */
4013 Copy(tmpbuf, d, tculen, U8);
4014 d += tculen - 1; /* Code below expects d to point to final
4015 * character stored */
4018 else { /* empty source */
4019 /* See bug #39028: Don't taint if empty */
4023 /* In a "use bytes" we don't treat the source as UTF-8, but, still want
4024 * the destination to retain that flag */
4025 if (DO_UTF8(source))
4028 if (!inplace) { /* Finish the rest of the string, unchanged */
4029 /* This will copy the trailing NUL */
4030 Copy(s + 1, d + 1, slen, U8);
4031 SvCUR_set(dest, need - 1);
4034 #ifdef USE_LOCALE_CTYPE
4035 if (IN_LC_RUNTIME(LC_CTYPE)) {
4040 if (dest != source && SvTAINTED(source))
4059 if ( SvPADTMP(source)
4060 && !SvREADONLY(source) && SvPOK(source)
4063 #ifdef USE_LOCALE_CTYPE
4064 (IN_LC_RUNTIME(LC_CTYPE))
4065 ? ! IN_UTF8_CTYPE_LOCALE
4071 /* We can convert in place. The reason we can't if in UNI_8_BIT is to
4072 * make the loop tight, so we overwrite the source with the dest before
4073 * looking at it, and we need to look at the original source
4074 * afterwards. There would also need to be code added to handle
4075 * switching to not in-place in midstream if we run into characters
4076 * that change the length. Since being in locale overrides UNI_8_BIT,
4077 * that latter becomes irrelevant in the above test; instead for
4078 * locale, the size can't normally change, except if the locale is a
4081 s = d = (U8*)SvPV_force_nomg(source, len);
4088 s = (const U8*)SvPV_nomg_const(source, len);
4091 SvUPGRADE(dest, SVt_PV);
4092 d = (U8*)SvGROW(dest, min);
4093 (void)SvPOK_only(dest);
4098 #ifdef USE_LOCALE_CTYPE
4100 if (IN_LC_RUNTIME(LC_CTYPE)) {
4101 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
4106 /* Overloaded values may have toggled the UTF-8 flag on source, so we need
4107 to check DO_UTF8 again here. */
4109 if (DO_UTF8(source)) {
4110 const U8 *const send = s + len;
4111 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
4113 #define GREEK_CAPITAL_LETTER_IOTA 0x0399
4114 #define COMBINING_GREEK_YPOGEGRAMMENI 0x0345
4115 /* All occurrences of these are to be moved to follow any other marks.
4116 * This is context-dependent. We may not be passed enough context to
4117 * move the iota subscript beyond all of them, but we do the best we can
4118 * with what we're given. The result is always better than if we
4119 * hadn't done this. And, the problem would only arise if we are
4120 * passed a character without all its combining marks, which would be
4121 * the caller's mistake. The information this is based on comes from a
4122 * comment in Unicode SpecialCasing.txt, (and the Standard's text
4123 * itself) and so can't be checked properly to see if it ever gets
4124 * revised. But the likelihood of it changing is remote */
4125 bool in_iota_subscript = FALSE;
4131 if (UNLIKELY(in_iota_subscript)) {
4132 UV cp = utf8_to_uvchr_buf(s, send, NULL);
4134 if (! _invlist_contains_cp(PL_utf8_mark, cp)) {
4136 /* A non-mark. Time to output the iota subscript */
4137 *d++ = UTF8_TWO_BYTE_HI(GREEK_CAPITAL_LETTER_IOTA);
4138 *d++ = UTF8_TWO_BYTE_LO(GREEK_CAPITAL_LETTER_IOTA);
4139 in_iota_subscript = FALSE;
4143 /* Then handle the current character. Get the changed case value
4144 * and copy it to the output buffer */
4147 #ifdef USE_LOCALE_CTYPE
4148 uv = _toUPPER_utf8_flags(s, send, tmpbuf, &ulen, IN_LC_RUNTIME(LC_CTYPE));
4150 uv = _toUPPER_utf8_flags(s, send, tmpbuf, &ulen, 0);
4152 if (uv == GREEK_CAPITAL_LETTER_IOTA
4153 && utf8_to_uvchr_buf(s, send, 0) == COMBINING_GREEK_YPOGEGRAMMENI)
4155 in_iota_subscript = TRUE;
4158 if (ulen > u && (SvLEN(dest) < (min += ulen - u))) {
4159 /* If the eventually required minimum size outgrows the
4160 * available space, we need to grow. */
4161 const UV o = d - (U8*)SvPVX_const(dest);
4163 /* If someone uppercases one million U+03B0s we SvGROW()
4164 * one million times. Or we could try guessing how much to
4165 * allocate without allocating too much. But we can't
4166 * really guess without examining the rest of the string.
4167 * Such is life. See corresponding comment in lc code for
4169 d = o + (U8*) SvGROW(dest, min);
4171 Copy(tmpbuf, d, ulen, U8);
4176 if (in_iota_subscript) {
4177 *d++ = UTF8_TWO_BYTE_HI(GREEK_CAPITAL_LETTER_IOTA);
4178 *d++ = UTF8_TWO_BYTE_LO(GREEK_CAPITAL_LETTER_IOTA);
4183 SvCUR_set(dest, d - (U8*)SvPVX_const(dest));
4185 else { /* Not UTF-8 */
4187 const U8 *const send = s + len;
4189 /* Use locale casing if in locale; regular style if not treating
4190 * latin1 as having case; otherwise the latin1 casing. Do the
4191 * whole thing in a tight loop, for speed, */
4192 #ifdef USE_LOCALE_CTYPE
4193 if (IN_LC_RUNTIME(LC_CTYPE)) {
4194 if (IN_UTF8_CTYPE_LOCALE) {
4197 for (; s < send; d++, s++)
4198 *d = (U8) toUPPER_LC(*s);
4202 if (! IN_UNI_8_BIT) {
4203 for (; s < send; d++, s++) {
4208 #ifdef USE_LOCALE_CTYPE
4211 for (; s < send; d++, s++) {
4214 *d = toUPPER_LATIN1_MOD(*s);
4215 if ( LIKELY(*d != LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)
4217 #ifdef USE_LOCALE_CTYPE
4219 && (LIKELY( ! PL_in_utf8_turkic_locale
4220 || ! IN_LC_RUNTIME(LC_CTYPE))
4228 /* The mainstream case is the tight loop above. To avoid
4229 * extra tests in that, all three characters that always
4230 * require special handling are mapped by the MOD to the
4231 * one tested just above. Use the source to distinguish
4232 * between those cases */
4234 #if UNICODE_MAJOR_VERSION > 2 \
4235 || (UNICODE_MAJOR_VERSION == 2 && UNICODE_DOT_VERSION >= 1 \
4236 && UNICODE_DOT_DOT_VERSION >= 8)
4237 if (*s == LATIN_SMALL_LETTER_SHARP_S) {
4239 /* uc() of this requires 2 characters, but they are
4240 * ASCII. If not enough room, grow the string */
4241 if (SvLEN(dest) < ++min) {
4242 const UV o = d - (U8*)SvPVX_const(dest);
4243 d = o + (U8*) SvGROW(dest, min);
4245 *d++ = 'S'; *d = 'S'; /* upper case is 'SS' */
4246 continue; /* Back to the tight loop; still in ASCII */
4250 /* The other special handling characters have their
4251 * upper cases outside the latin1 range, hence need to be
4252 * in UTF-8, so the whole result needs to be in UTF-8.
4254 * So, here we are somewhere in the middle of processing a
4255 * non-UTF-8 string, and realize that we will have to
4256 * convert the whole thing to UTF-8. What to do? There
4257 * are several possibilities. The simplest to code is to
4258 * convert what we have so far, set a flag, and continue on
4259 * in the loop. The flag would be tested each time through
4260 * the loop, and if set, the next character would be
4261 * converted to UTF-8 and stored. But, I (khw) didn't want
4262 * to slow down the mainstream case at all for this fairly
4263 * rare case, so I didn't want to add a test that didn't
4264 * absolutely have to be there in the loop, besides the
4265 * possibility that it would get too complicated for
4266 * optimizers to deal with. Another possibility is to just
4267 * give up, convert the source to UTF-8, and restart the
4268 * function that way. Another possibility is to convert
4269 * both what has already been processed and what is yet to
4270 * come separately to UTF-8, then jump into the loop that
4271 * handles UTF-8. But the most efficient time-wise of the
4272 * ones I could think of is what follows, and turned out to
4273 * not require much extra code.
4275 * First, calculate the extra space needed for the
4276 * remainder of the source needing to be in UTF-8. Except
4277 * for the 'i' in Turkic locales, in UTF-8 strings, the
4278 * uppercase of a character below 256 occupies the same
4279 * number of bytes as the original. Therefore, the space
4280 * needed is the that number plus the number of characters
4281 * that become two bytes when converted to UTF-8, plus, in
4282 * turkish locales, the number of 'i's. */
4284 extra = send - s + variant_under_utf8_count(s, send);
4286 #ifdef USE_LOCALE_CTYPE
4288 if (UNLIKELY(*s == 'i')) { /* We wouldn't get an 'i' here
4289 unless are in a Turkic
4291 const U8 * s_peek = s;
4296 s_peek = (U8 *) memchr(s_peek + 1, 'i',
4297 send - (s_peek + 1));
4298 } while (s_peek != NULL);
4302 /* Convert what we have so far into UTF-8, telling the
4303 * function that we know it should be converted, and to
4304 * allow extra space for what we haven't processed yet.
4306 * This may cause the string pointer to move, so need to
4307 * save and re-find it. */
4309 len = d - (U8*)SvPVX_const(dest);
4310 SvCUR_set(dest, len);
4311 len = sv_utf8_upgrade_flags_grow(dest,
4312 SV_GMAGIC|SV_FORCE_UTF8_UPGRADE,
4314 + 1 /* trailing NUL */ );
4315 d = (U8*)SvPVX(dest) + len;
4317 /* Now process the remainder of the source, simultaneously
4318 * converting to upper and UTF-8.
4320 * To avoid extra tests in the loop body, and since the
4321 * loop is so simple, split out the rare Turkic case into
4324 #ifdef USE_LOCALE_CTYPE
4325 if ( UNLIKELY(PL_in_utf8_turkic_locale)
4326 && UNLIKELY(IN_LC_RUNTIME(LC_CTYPE)))
4328 for (; s < send; s++) {
4330 *d++ = UTF8_TWO_BYTE_HI(LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE);
4331 *d++ = UTF8_TWO_BYTE_LO(LATIN_CAPITAL_LETTER_I_WITH_DOT_ABOVE);
4334 (void) _to_upper_title_latin1(*s, d, &len, 'S');
4341 for (; s < send; s++) {
4342 (void) _to_upper_title_latin1(*s, d, &len, 'S');
4346 /* Here have processed the whole source; no need to
4347 * continue with the outer loop. Each character has been
4348 * converted to upper case and converted to UTF-8. */
4350 } /* End of processing all latin1-style chars */
4351 } /* End of processing all chars */
4352 } /* End of source is not empty */
4354 if (source != dest) {
4355 *d = '\0'; /* Here d points to 1 after last char, add NUL */
4356 SvCUR_set(dest, d - (U8*)SvPVX_const(dest));
4358 } /* End of isn't utf8 */
4359 #ifdef USE_LOCALE_CTYPE
4360 if (IN_LC_RUNTIME(LC_CTYPE)) {
4365 if (dest != source && SvTAINTED(source))
4380 bool has_turkic_I = FALSE;
4384 if ( SvPADTMP(source)
4385 && !SvREADONLY(source) && SvPOK(source)
4388 #ifdef USE_LOCALE_CTYPE
4390 && ( LIKELY(! IN_LC_RUNTIME(LC_CTYPE))
4391 || LIKELY(! PL_in_utf8_turkic_locale))
4397 /* We can convert in place, as, outside of Turkic UTF-8 locales,
4398 * lowercasing anything in the latin1 range (or else DO_UTF8 would have
4399 * been on) doesn't lengthen it. */
4401 s = d = (U8*)SvPV_force_nomg(source, len);
4408 s = (const U8*)SvPV_nomg_const(source, len);
4411 SvUPGRADE(dest, SVt_PV);
4412 d = (U8*)SvGROW(dest, min);
4413 (void)SvPOK_only(dest);
4418 #ifdef USE_LOCALE_CTYPE
4420 if (IN_LC_RUNTIME(LC_CTYPE)) {
4423 _CHECK_AND_WARN_PROBLEMATIC_LOCALE;
4425 /* Lowercasing in a Turkic locale can cause non-UTF-8 to need to become
4426 * UTF-8 for the single case of the character 'I' */
4427 if ( UNLIKELY(PL_in_utf8_turkic_locale)
4428 && ! DO_UTF8(source)
4429 && (next_I = (U8 *) memchr(s, 'I', len)))
4432 const U8 *const send = s + len;
4437 next_I = (U8 *) memchr(next_I + 1, 'I',
4438 send - (next_I + 1));
4439 } while (next_I != NULL);
4441 /* Except for the 'I', in UTF-8 strings, the lower case of a
4442 * character below 256 occupies the same number of bytes as the
4443 * original. Therefore, the space needed is the original length
4444 * plus I_count plus the number of characters that become two bytes
4445 * when converted to UTF-8 */
4446 sv_utf8_upgrade_flags_grow(dest, 0, len
4448 + variant_under_utf8_count(s, send)
4449 + 1 /* Trailing NUL */ );
4450 d = (U8*)SvPVX(dest);
4451 has_turkic_I = TRUE;
4457 /* Overloaded values may have toggled the UTF-8 flag on source, so we need
4458 to check DO_UTF8 again here. */
4460 if (DO_UTF8(source)) {
4461 const U8 *const send = s + len;
4462 U8 tmpbuf[UTF8_MAXBYTES_CASE+1];
4463 bool remove_dot_above = FALSE;
4466 const STRLEN u = UTF8SKIP(s);
4469 #ifdef USE_LOCALE_CTYPE
4471 _toLOWER_utf8_flags(s, send, tmpbuf, &ulen, IN_LC_RUNTIME(LC_CTYPE));
4473 /* If we are in a Turkic locale, we have to do more work. As noted
4474 * in the comments for lcfirst, there is a special case if a 'I'
4475 * is in a grapheme with COMBINING DOT ABOVE UTF8. It turns into a
4476 * 'i', and the DOT must be removed. We check for that situation,
4477 * and set a flag if the DOT is there. Then each time through the
4478 * loop, we have to see if we need to remove the next DOT above,
4479 * and if so, do it. We know that there is a DOT because
4480 * _toLOWER_utf8_flags() wouldn't have returned 'i' unless there
4481 * was one in a proper position. */
4482 if ( UNLIKELY(PL_in_utf8_turkic_locale)
4483 && IN_LC_RUNTIME(LC_CTYPE))
4485 if ( UNLIKELY(remove_dot_above)
4486 && memBEGINs(tmpbuf, sizeof(tmpbuf), COMBINING_DOT_ABOVE_UTF8))
4489 remove_dot_above = FALSE;
4492 else if (UNLIKELY(*s == 'I' && tmpbuf[0] == 'i')) {
4493 remove_dot_above = TRUE;
4497 PERL_UNUSED_VAR(remove_dot_above);
4499 _toLOWER_utf8_flags(s, send, tmpbuf, &ulen, 0);
4502 /* Here is where we would do context-sensitive actions for the
4503 * Greek final sigma. See the commit message for 86510fb15 for why
4504 * there isn't any */
4506 if (ulen > u && (SvLEN(dest) < (min += ulen - u))) {
4508 /* If the eventually required minimum size outgrows the
4509 * available space, we need to grow. */
4510 const UV o = d - (U8*)SvPVX_const(dest);
4512 /* If someone lowercases one million U+0130s we SvGROW() one
4513 * million times. Or we could try guessing how much to
4514 * allocate without allocating too much. Such is life.
4515 * Another option would be to grow an extra byte or two more
4516 * each time we need to grow, which would cut down the million
4517 * to 500K, with little waste */
4518 d = o + (U8*) SvGROW(dest, min);
4521 /* Copy the newly lowercased letter to the output buffer we're
4523 Copy(tmpbuf, d, ulen, U8);
4526 } /* End of looping through the source string */
4529 SvCUR_set(dest, d - (U8*)SvPVX_const(dest));
4530 } else { /* 'source' not utf8 */
4532 const U8 *const send = s + len;
4534 /* Use locale casing if in locale; regular style if not treating
4535 * latin1 as having case; otherwise the latin1 casing. Do the
4536 * whole thing in a tight loop, for speed, */
4537 #ifdef USE_LOCALE_CTYPE
4538 if (IN_LC_RUNTIME(LC_CTYPE)) {
4539 if (LIKELY( ! has_turkic_I)) {
4540 for (; s < send; d++, s++)
4541 *d = toLOWER_LC(*s);
4543 else { /* This is the only case where lc() converts 'dest'
4544 into UTF-8 from a non-UTF-8 'source' */
4545 for (; s < send; s++) {
4547 *d++ = UTF8_TWO_BYTE_HI(LATIN_SMALL_LETTER_DOTLESS_I);
4548 *d++ = UTF8_TWO_BYTE_LO(LATIN_SMALL_LETTER_DOTLESS_I);
4551 append_utf8_from_native_byte(toLOWER_LATIN1(*s), &d);
4558 if (! IN_UNI_8_BIT) {
4559 for (; s < send; d++, s++) {
4564 for (; s < send; d++, s++) {
4565 *d = toLOWER_LATIN1(*s);
4569 if (source != dest) {
4571 SvCUR_set(dest, d - (U8*)SvPVX_const(dest));
4574 #ifdef USE_LOCALE_CTYPE
4575 if (IN_LC_RUNTIME(LC_CTYPE)) {
4580 if (dest != source && SvTAINTED(source))
4589 SV * const sv = TOPs;
4591 const char *s = SvPV_const(sv,len);
4593 SvUTF8_off(TARG); /* decontaminate */
4596 SvUPGRADE(TARG, SVt_PV);
4597 SvGROW(TARG, (len * 2) + 1);
4601 STRLEN ulen = UTF8SKIP(s);
4602 bool to_quote = FALSE;
4604 if (UTF8_IS_INVARIANT(*s)) {
4605 if (_isQUOTEMETA(*s)) {
4609 else if (UTF8_IS_NEXT_CHAR_DOWNGRADEABLE(s, s + len)) {
4611 #ifdef USE_LOCALE_CTYPE
4612 /* In locale, we quote all non-ASCII Latin1 chars.
4613 * Otherwise use the quoting rules */
4615 IN_LC_RUNTIME(LC_CTYPE)
4618 _isQUOTEMETA(EIGHT_BIT_UTF8_TO_NATIVE(*s, *(s + 1))))
4623 else if (is_QUOTEMETA_high(s)) {
4638 else if (IN_UNI_8_BIT) {
4640 if (_isQUOTEMETA(*s))
4646 /* For non UNI_8_BIT (and hence in locale) just quote all \W