This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta - Documentation and Diagnostics
[perl5.git] / doop.c
CommitLineData
a0d0e21e 1/* doop.c
79072805 2 *
1129b882 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
f4b6e4b3 4 * 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall and others
79072805
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 *
a0d0e21e
LW
9 */
10
11/*
4ac71550
TC
12 * 'So that was the job I felt I had to do when I started,' thought Sam.
13 *
14 * [p.934 of _The Lord of the Rings_, VI/iii: "Mount Doom"]
79072805
LW
15 */
16
166f8a29 17/* This file contains some common functions needed to carry out certain
347f3823 18 * ops. For example, both pp_sprintf() and pp_prtf() call the function
fc7d284e 19 * do_sprintf() found in this file.
166f8a29
DM
20 */
21
79072805 22#include "EXTERN.h"
864dbfa3 23#define PERL_IN_DOOP_C
79072805
LW
24#include "perl.h"
25
64ca3a65 26#ifndef PERL_MICRO
79072805
LW
27#include <signal.h>
28#endif
29
334c6444
DM
30
31/* Helper function for do_trans().
32 * Handles non-utf8 cases(*) not involving the /c, /d, /s flags,
33 * and where search and replacement charlists aren't identical.
34 * (*) i.e. where the search and replacement charlists are non-utf8. sv may
35 * or may not be utf8.
36 */
37
f0fd0980 38STATIC Size_t
c395bd6c 39S_do_trans_simple(pTHX_ SV * const sv)
79072805 40{
f0fd0980 41 Size_t matches = 0;
463ee0b2 42 STRLEN len;
9138d6ca 43 U8 *s = (U8*)SvPV_nomg(sv,len);
c395bd6c 44 U8 * const send = s+len;
c1048fcf 45 const OPtrans_map * const tbl = (OPtrans_map*)cPVOP->op_pv;
7918f24d
NC
46
47 PERL_ARGS_ASSERT_DO_TRANS_SIMPLE;
48
4757a243 49 if (!tbl)
7d85a32c 50 Perl_croak(aTHX_ "panic: do_trans_simple line %d",__LINE__);
a0ed51b3 51
1e54db1a 52 /* First, take care of non-UTF-8 input strings, because they're easy */
1aa99e6b 53 if (!SvUTF8(sv)) {
01ec43d0 54 while (s < send) {
e4ee4c1b 55 const short ch = tbl->map[*s];
f54cb97a 56 if (ch >= 0) {
01ec43d0 57 matches++;
c4420975 58 *s = (U8)ch;
01ec43d0 59 }
c4420975 60 s++;
01ec43d0
GS
61 }
62 SvSETMAGIC(sv);
9b877dbb
IH
63 }
64 else {
e4ee4c1b 65 const bool grows = cBOOL(PL_op->op_private & OPpTRANS_GROWS);
c395bd6c
AL
66 U8 *d;
67 U8 *dstart;
68
69 /* Allow for expansion: $_="a".chr(400); tr/a/\xFE/, FE needs encoding */
70 if (grows)
71 Newx(d, len*2+1, U8);
72 else
73 d = s;
74 dstart = d;
75 while (s < send) {
76 STRLEN ulen;
e4ee4c1b 77 short ch;
c395bd6c
AL
78
79 /* Need to check this, otherwise 128..255 won't match */
80 const UV c = utf8n_to_uvchr(s, send - s, &ulen, UTF8_ALLOW_DEFAULT);
c1048fcf 81 if (c < 0x100 && (ch = tbl->map[c]) >= 0) {
c395bd6c 82 matches++;
e4ee4c1b 83 d = uvchr_to_utf8(d, (UV)ch);
c395bd6c
AL
84 s += ulen;
85 }
86 else { /* No match -> copy */
87 Move(s, d, ulen, U8);
88 d += ulen;
89 s += ulen;
90 }
91 }
92 if (grows) {
93 sv_setpvn(sv, (char*)dstart, d - dstart);
94 Safefree(dstart);
95 }
96 else {
97 *d = '\0';
98 SvCUR_set(sv, d - dstart);
99 }
100 SvUTF8_on(sv);
101 SvSETMAGIC(sv);
9b877dbb 102 }
4757a243
LW
103 return matches;
104}
105
334c6444
DM
106
107/* Helper function for do_trans().
108 * Handles non-utf8 cases(*) where search and replacement charlists are
109 * identical: so the string isn't modified, and only a count of modifiable
110 * chars is needed.
111 * Note that it doesn't handle /d or /s, since these modify the string
112 * even if the replacement list is empty.
113 * (*) i.e. where the search and replacement charlists are non-utf8. sv may
114 * or may not be utf8.
115 */
116
f0fd0980 117STATIC Size_t
c395bd6c 118S_do_trans_count(pTHX_ SV * const sv)
4757a243 119{
4757a243 120 STRLEN len;
9138d6ca 121 const U8 *s = (const U8*)SvPV_nomg_const(sv, len);
c395bd6c 122 const U8 * const send = s + len;
f0fd0980 123 Size_t matches = 0;
c1048fcf 124 const OPtrans_map * const tbl = (OPtrans_map*)cPVOP->op_pv;
7918f24d
NC
125
126 PERL_ARGS_ASSERT_DO_TRANS_COUNT;
127
4757a243 128 if (!tbl)
7d85a32c 129 Perl_croak(aTHX_ "panic: do_trans_count line %d",__LINE__);
4757a243 130
c395bd6c 131 if (!SvUTF8(sv)) {
1aa99e6b 132 while (s < send) {
c1048fcf 133 if (tbl->map[*s++] >= 0)
036b4402 134 matches++;
1aa99e6b 135 }
c395bd6c 136 }
fabdb6c0 137 else {
e4ee4c1b 138 const bool complement = cBOOL(PL_op->op_private & OPpTRANS_COMPLEMENT);
1aa99e6b 139 while (s < send) {
1aa99e6b 140 STRLEN ulen;
9f7f3913 141 const UV c = utf8n_to_uvchr(s, send - s, &ulen, UTF8_ALLOW_DEFAULT);
8973db79 142 if (c < 0x100) {
c1048fcf 143 if (tbl->map[c] >= 0)
8973db79
JH
144 matches++;
145 } else if (complement)
1aa99e6b
IH
146 matches++;
147 s += ulen;
148 }
fabdb6c0 149 }
4757a243
LW
150
151 return matches;
152}
153
334c6444
DM
154
155/* Helper function for do_trans().
156 * Handles non-utf8 cases(*) involving the /c, /d, /s flags,
157 * and where search and replacement charlists aren't identical.
158 * (*) i.e. where the search and replacement charlists are non-utf8. sv may
159 * or may not be utf8.
160 */
161
f0fd0980 162STATIC Size_t
c395bd6c 163S_do_trans_complex(pTHX_ SV * const sv)
4757a243 164{
c395bd6c 165 STRLEN len;
9138d6ca 166 U8 *s = (U8*)SvPV_nomg(sv, len);
c395bd6c 167 U8 * const send = s+len;
f0fd0980 168 Size_t matches = 0;
0b9a13c3 169 const OPtrans_map * const tbl = (OPtrans_map*)cPVOP->op_pv;
7918f24d
NC
170
171 PERL_ARGS_ASSERT_DO_TRANS_COMPLEX;
172
0b9a13c3 173 if (!tbl)
7d85a32c 174 Perl_croak(aTHX_ "panic: do_trans_complex line %d",__LINE__);
4757a243 175
c395bd6c
AL
176 if (!SvUTF8(sv)) {
177 U8 *d = s;
178 U8 * const dstart = d;
4757a243 179
1aa99e6b 180 if (PL_op->op_private & OPpTRANS_SQUASH) {
f54cb97a 181 const U8* p = send;
1aa99e6b 182 while (s < send) {
e4ee4c1b 183 const short ch = tbl->map[*s];
f54cb97a 184 if (ch >= 0) {
eb160463 185 *d = (U8)ch;
036b4402 186 matches++;
1aa99e6b
IH
187 if (p != d - 1 || *p != *d)
188 p = d++;
189 }
190 else if (ch == -1) /* -1 is unmapped character */
191 *d++ = *s;
192 else if (ch == -2) /* -2 is delete character */
193 matches++;
194 s++;
195 }
a0ed51b3 196 }
1aa99e6b
IH
197 else {
198 while (s < send) {
e4ee4c1b 199 const short ch = tbl->map[*s];
f54cb97a 200 if (ch >= 0) {
1aa99e6b 201 matches++;
eb160463 202 *d++ = (U8)ch;
1aa99e6b
IH
203 }
204 else if (ch == -1) /* -1 is unmapped character */
205 *d++ = *s;
206 else if (ch == -2) /* -2 is delete character */
207 matches++;
208 s++;
209 }
210 }
76ef7183 211 *d = '\0';
1aa99e6b 212 SvCUR_set(sv, d - dstart);
4757a243 213 }
c395bd6c 214 else { /* is utf8 */
e4ee4c1b
DM
215 const bool squash = cBOOL(PL_op->op_private & OPpTRANS_SQUASH);
216 const bool grows = cBOOL(PL_op->op_private & OPpTRANS_GROWS);
c395bd6c
AL
217 U8 *d;
218 U8 *dstart;
0b9a13c3
DM
219 Size_t size = tbl->size;
220 UV pch = 0xfeedface;
fabdb6c0 221
9b877dbb 222 if (grows)
a02a5408 223 Newx(d, len*2+1, U8);
9b877dbb
IH
224 else
225 d = s;
1aa99e6b
IH
226 dstart = d;
227
4eaf16e8
DM
228 while (s < send) {
229 STRLEN len;
230 const UV comp = utf8n_to_uvchr(s, send - s, &len,
231 UTF8_ALLOW_DEFAULT);
232 UV ch;
233 short sch;
234
235 sch = tbl->map[comp >= size ? size : comp];
236
237 if (sch >= 0) {
238 ch = (UV)sch;
239 replace:
240 matches++;
241 if (LIKELY(!squash || ch != pch)) {
242 d = uvchr_to_utf8(d, ch);
243 pch = ch;
0b9a13c3 244 }
4eaf16e8
DM
245 s += len;
246 continue;
247 }
248 else if (sch == -1) { /* -1 is unmapped character */
249 Move(s, d, len, U8);
250 d += len;
251 }
252 else if (sch == -2) /* -2 is delete character */
253 matches++;
254 else {
255 assert(sch == -3); /* -3 is empty replacement */
256 ch = comp;
257 goto replace;
258 }
259
260 s += len;
261 pch = 0xfeedface;
262 }
0b9a13c3 263
9b877dbb
IH
264 if (grows) {
265 sv_setpvn(sv, (char*)dstart, d - dstart);
266 Safefree(dstart);
267 }
268 else {
269 *d = '\0';
270 SvCUR_set(sv, d - dstart);
271 }
1aa99e6b 272 SvUTF8_on(sv);
4757a243 273 }
5e44153e 274 SvSETMAGIC(sv);
4757a243
LW
275 return matches;
276}
277
334c6444
DM
278
279/* Helper function for do_trans().
280 * Handles utf8 cases(*) not involving the /c, /d, /s flags,
281 * and where search and replacement charlists aren't identical.
282 * (*) i.e. where the search or replacement charlists are utf8. sv may
283 * or may not be utf8.
284 */
285
f0fd0980 286STATIC Size_t
c395bd6c 287S_do_trans_simple_utf8(pTHX_ SV * const sv)
4757a243 288{
4757a243
LW
289 U8 *s;
290 U8 *send;
291 U8 *d;
036b4402 292 U8 *start;
1aa99e6b 293 U8 *dstart, *dend;
f0fd0980 294 Size_t matches = 0;
e4ee4c1b 295 const bool grows = cBOOL(PL_op->op_private & OPpTRANS_GROWS);
4757a243 296 STRLEN len;
043e41b8
DM
297 SV* const rv =
298#ifdef USE_ITHREADS
299 PAD_SVl(cPADOP->op_padix);
300#else
ad64d0ec 301 MUTABLE_SV(cSVOP->op_sv);
043e41b8 302#endif
85fbaab2 303 HV* const hv = MUTABLE_HV(SvRV(rv));
a4fc7abc 304 SV* const * svp = hv_fetchs(hv, "NONE", FALSE);
f54cb97a
AL
305 const UV none = svp ? SvUV(*svp) : 0x7fffffff;
306 const UV extra = none + 1;
b7953727 307 UV final = 0;
1aa99e6b 308 U8 hibit = 0;
4757a243 309
7918f24d
NC
310 PERL_ARGS_ASSERT_DO_TRANS_SIMPLE_UTF8;
311
9138d6ca 312 s = (U8*)SvPV_nomg(sv, len);
c395bd6c 313 if (!SvUTF8(sv)) {
40b85b80
KW
314 hibit = ! is_utf8_invariant_string(s, len);
315 if (hibit) {
316 s = bytes_to_utf8(s, &len);
c4d5f83a 317 }
1aa99e6b 318 }
4757a243 319 send = s + len;
036b4402 320 start = s;
4757a243 321
a4fc7abc 322 svp = hv_fetchs(hv, "FINAL", FALSE);
4757a243
LW
323 if (svp)
324 final = SvUV(*svp);
325
9b877dbb
IH
326 if (grows) {
327 /* d needs to be bigger than s, in case e.g. upgrading is required */
a02a5408 328 Newx(d, len * 3 + UTF8_MAXBYTES, U8);
9b877dbb
IH
329 dend = d + len * 3;
330 dstart = d;
331 }
332 else {
333 dstart = d = s;
334 dend = d + len;
335 }
1aa99e6b 336
4757a243 337 while (s < send) {
0bcc34c2
AL
338 const UV uv = swash_fetch(rv, s, TRUE);
339 if (uv < none) {
4757a243
LW
340 s += UTF8SKIP(s);
341 matches++;
c80e42f3 342 d = uvchr_to_utf8(d, uv);
4757a243
LW
343 }
344 else if (uv == none) {
4373e329 345 const int i = UTF8SKIP(s);
0376ff32 346 Move(s, d, i, U8);
9b877dbb
IH
347 d += i;
348 s += i;
4757a243
LW
349 }
350 else if (uv == extra) {
4373e329 351 s += UTF8SKIP(s);
4757a243 352 matches++;
c80e42f3 353 d = uvchr_to_utf8(d, final);
4757a243
LW
354 }
355 else
356 s += UTF8SKIP(s);
1aa99e6b 357
9b877dbb 358 if (d > dend) {
4373e329
AL
359 const STRLEN clen = d - dstart;
360 const STRLEN nlen = dend - dstart + len + UTF8_MAXBYTES;
9b877dbb 361 if (!grows)
7d85a32c 362 Perl_croak(aTHX_ "panic: do_trans_simple_utf8 line %d",__LINE__);
89ebb4a3 363 Renew(dstart, nlen + UTF8_MAXBYTES, U8);
1aa99e6b
IH
364 d = dstart + clen;
365 dend = dstart + nlen;
366 }
4757a243 367 }
16ec844d 368 if (grows || hibit) {
9b877dbb
IH
369 sv_setpvn(sv, (char*)dstart, d - dstart);
370 Safefree(dstart);
16ec844d
IH
371 if (grows && hibit)
372 Safefree(start);
9b877dbb
IH
373 }
374 else {
375 *d = '\0';
376 SvCUR_set(sv, d - dstart);
377 }
4757a243 378 SvSETMAGIC(sv);
1aa99e6b 379 SvUTF8_on(sv);
4757a243
LW
380
381 return matches;
382}
383
334c6444
DM
384
385/* Helper function for do_trans().
386 * Handles utf8 cases(*) where search and replacement charlists are
387 * identical: so the string isn't modified, and only a count of modifiable
388 * chars is needed.
389 * Note that it doesn't handle /d or /s, since these modify the string
390 * even if the replacement charlist is empty.
391 * (*) i.e. where the search or replacement charlists are utf8. sv may
392 * or may not be utf8.
393 */
394
f0fd0980 395STATIC Size_t
c395bd6c 396S_do_trans_count_utf8(pTHX_ SV * const sv)
4757a243 397{
93524f2b 398 const U8 *s;
cbbf8932
AL
399 const U8 *start = NULL;
400 const U8 *send;
f0fd0980 401 Size_t matches = 0;
4757a243 402 STRLEN len;
043e41b8
DM
403 SV* const rv =
404#ifdef USE_ITHREADS
405 PAD_SVl(cPADOP->op_padix);
406#else
ad64d0ec 407 MUTABLE_SV(cSVOP->op_sv);
043e41b8 408#endif
85fbaab2 409 HV* const hv = MUTABLE_HV(SvRV(rv));
a4fc7abc 410 SV* const * const svp = hv_fetchs(hv, "NONE", FALSE);
f54cb97a
AL
411 const UV none = svp ? SvUV(*svp) : 0x7fffffff;
412 const UV extra = none + 1;
1aa99e6b 413 U8 hibit = 0;
4757a243 414
7918f24d
NC
415 PERL_ARGS_ASSERT_DO_TRANS_COUNT_UTF8;
416
9138d6ca 417 s = (const U8*)SvPV_nomg_const(sv, len);
1aa99e6b 418 if (!SvUTF8(sv)) {
40b85b80
KW
419 hibit = ! is_utf8_invariant_string(s, len);
420 if (hibit) {
421 start = s = bytes_to_utf8(s, &len);
c4d5f83a 422 }
1aa99e6b 423 }
4757a243
LW
424 send = s + len;
425
426 while (s < send) {
c4420975
AL
427 const UV uv = swash_fetch(rv, s, TRUE);
428 if (uv < none || uv == extra)
4757a243 429 matches++;
834a4ddd 430 s += UTF8SKIP(s);
4757a243 431 }
1aa99e6b
IH
432 if (hibit)
433 Safefree(start);
4757a243
LW
434
435 return matches;
436}
437
334c6444
DM
438
439/* Helper function for do_trans().
440 * Handles utf8 cases(*) involving the /c, /d, /s flags,
441 * and where search and replacement charlists aren't identical.
442 * (*) i.e. where the search or replacement charlists are utf8. sv may
443 * or may not be utf8.
444 */
445
f0fd0980 446STATIC Size_t
c395bd6c 447S_do_trans_complex_utf8(pTHX_ SV * const sv)
4757a243 448{
1aa99e6b 449 U8 *start, *send;
4757a243 450 U8 *d;
f0fd0980 451 Size_t matches = 0;
e4ee4c1b
DM
452 const bool squash = cBOOL(PL_op->op_private & OPpTRANS_SQUASH);
453 const bool del = cBOOL(PL_op->op_private & OPpTRANS_DELETE);
454 const bool grows = cBOOL(PL_op->op_private & OPpTRANS_GROWS);
043e41b8
DM
455 SV* const rv =
456#ifdef USE_ITHREADS
457 PAD_SVl(cPADOP->op_padix);
458#else
ad64d0ec 459 MUTABLE_SV(cSVOP->op_sv);
043e41b8 460#endif
85fbaab2 461 HV * const hv = MUTABLE_HV(SvRV(rv));
a4fc7abc 462 SV * const *svp = hv_fetchs(hv, "NONE", FALSE);
f54cb97a
AL
463 const UV none = svp ? SvUV(*svp) : 0x7fffffff;
464 const UV extra = none + 1;
b7953727 465 UV final = 0;
45005bfb 466 bool havefinal = FALSE;
4757a243 467 STRLEN len;
1aa99e6b 468 U8 *dstart, *dend;
1aa99e6b 469 U8 hibit = 0;
9138d6ca 470 U8 *s = (U8*)SvPV_nomg(sv, len);
7918f24d
NC
471
472 PERL_ARGS_ASSERT_DO_TRANS_COMPLEX_UTF8;
473
c395bd6c 474 if (!SvUTF8(sv)) {
40b85b80
KW
475 hibit = ! is_utf8_invariant_string(s, len);
476 if (hibit) {
477 s = bytes_to_utf8(s, &len);
c4d5f83a 478 }
1aa99e6b 479 }
4757a243 480 send = s + len;
1aa99e6b 481 start = s;
4757a243 482
a4fc7abc 483 svp = hv_fetchs(hv, "FINAL", FALSE);
45005bfb 484 if (svp) {
4757a243 485 final = SvUV(*svp);
45005bfb
JH
486 havefinal = TRUE;
487 }
4757a243 488
9b877dbb
IH
489 if (grows) {
490 /* d needs to be bigger than s, in case e.g. upgrading is required */
a02a5408 491 Newx(d, len * 3 + UTF8_MAXBYTES, U8);
9b877dbb
IH
492 dend = d + len * 3;
493 dstart = d;
494 }
495 else {
496 dstart = d = s;
497 dend = d + len;
498 }
4757a243
LW
499
500 if (squash) {
501 UV puv = 0xfeedface;
502 while (s < send) {
f54cb97a 503 UV uv = swash_fetch(rv, s, TRUE);
9041c2e3 504
9b877dbb 505 if (d > dend) {
4373e329
AL
506 const STRLEN clen = d - dstart;
507 const STRLEN nlen = dend - dstart + len + UTF8_MAXBYTES;
9b877dbb 508 if (!grows)
7d85a32c 509 Perl_croak(aTHX_ "panic: do_trans_complex_utf8 line %d",__LINE__);
89ebb4a3 510 Renew(dstart, nlen + UTF8_MAXBYTES, U8);
1aa99e6b
IH
511 d = dstart + clen;
512 dend = dstart + nlen;
4757a243
LW
513 }
514 if (uv < none) {
515 matches++;
94472101 516 s += UTF8SKIP(s);
4757a243 517 if (uv != puv) {
c80e42f3 518 d = uvchr_to_utf8(d, uv);
4757a243
LW
519 puv = uv;
520 }
4757a243
LW
521 continue;
522 }
523 else if (uv == none) { /* "none" is unmapped character */
4373e329 524 const int i = UTF8SKIP(s);
0376ff32 525 Move(s, d, i, U8);
9b877dbb
IH
526 d += i;
527 s += i;
4757a243
LW
528 puv = 0xfeedface;
529 continue;
a0ed51b3 530 }
4757a243
LW
531 else if (uv == extra && !del) {
532 matches++;
45005bfb
JH
533 if (havefinal) {
534 s += UTF8SKIP(s);
535 if (puv != final) {
c80e42f3 536 d = uvchr_to_utf8(d, final);
45005bfb
JH
537 puv = final;
538 }
539 }
540 else {
541 STRLEN len;
c80e42f3 542 uv = utf8n_to_uvchr(s, send - s, &len, UTF8_ALLOW_DEFAULT);
45005bfb 543 if (uv != puv) {
0376ff32 544 Move(s, d, len, U8);
45005bfb
JH
545 d += len;
546 puv = uv;
547 }
548 s += len;
4757a243 549 }
4757a243
LW
550 continue;
551 }
01ec43d0
GS
552 matches++; /* "none+1" is delete character */
553 s += UTF8SKIP(s);
a0ed51b3 554 }
79072805
LW
555 }
556 else {
4757a243 557 while (s < send) {
f54cb97a 558 const UV uv = swash_fetch(rv, s, TRUE);
9b877dbb 559 if (d > dend) {
f54cb97a
AL
560 const STRLEN clen = d - dstart;
561 const STRLEN nlen = dend - dstart + len + UTF8_MAXBYTES;
9b877dbb 562 if (!grows)
7d85a32c 563 Perl_croak(aTHX_ "panic: do_trans_complex_utf8 line %d",__LINE__);
89ebb4a3 564 Renew(dstart, nlen + UTF8_MAXBYTES, U8);
1aa99e6b
IH
565 d = dstart + clen;
566 dend = dstart + nlen;
a0ed51b3 567 }
4757a243
LW
568 if (uv < none) {
569 matches++;
01ec43d0 570 s += UTF8SKIP(s);
c80e42f3 571 d = uvchr_to_utf8(d, uv);
4757a243 572 continue;
a0ed51b3 573 }
4757a243 574 else if (uv == none) { /* "none" is unmapped character */
f54cb97a 575 const int i = UTF8SKIP(s);
0376ff32 576 Move(s, d, i, U8);
9b877dbb
IH
577 d += i;
578 s += i;
4757a243 579 continue;
79072805 580 }
4757a243
LW
581 else if (uv == extra && !del) {
582 matches++;
01ec43d0 583 s += UTF8SKIP(s);
c80e42f3 584 d = uvchr_to_utf8(d, final);
4757a243
LW
585 continue;
586 }
01ec43d0
GS
587 matches++; /* "none+1" is delete character */
588 s += UTF8SKIP(s);
79072805 589 }
4757a243 590 }
16ec844d 591 if (grows || hibit) {
9b877dbb
IH
592 sv_setpvn(sv, (char*)dstart, d - dstart);
593 Safefree(dstart);
16ec844d
IH
594 if (grows && hibit)
595 Safefree(start);
9b877dbb
IH
596 }
597 else {
598 *d = '\0';
599 SvCUR_set(sv, d - dstart);
600 }
1aa99e6b 601 SvUTF8_on(sv);
4757a243
LW
602 SvSETMAGIC(sv);
603
604 return matches;
605}
606
334c6444
DM
607
608/* Execute a tr//. sv is the value to be translated, while PL_op
609 * should be an OP_TRANS or OP_TRANSR op, whose op_pv field contains a
610 * translation table or whose op_sv field contains a swash.
611 * Returns a count of number of characters translated
612 */
613
f0fd0980 614Size_t
864dbfa3 615Perl_do_trans(pTHX_ SV *sv)
4757a243
LW
616{
617 STRLEN len;
e4ee4c1b
DM
618 const U8 flags = PL_op->op_private;
619 const U8 hasutf = flags & (OPpTRANS_FROM_UTF | OPpTRANS_TO_UTF);
4757a243 620
7918f24d
NC
621 PERL_ARGS_ASSERT_DO_TRANS;
622
a53bfdae
HS
623 if (SvREADONLY(sv) && !(flags & OPpTRANS_IDENTICAL)) {
624 Perl_croak_no_modify();
2233f375 625 }
10516c54 626 (void)SvPV_const(sv, len);
4757a243
LW
627 if (!len)
628 return 0;
a53bfdae 629 if (!(flags & OPpTRANS_IDENTICAL)) {
4499db73 630 if (!SvPOKp(sv) || SvTHINKFIRST(sv))
b4cc4d79 631 (void)SvPV_force_nomg(sv, len);
2de7b02f 632 (void)SvPOK_only_UTF8(sv);
d59e14db 633 }
4757a243 634
a53bfdae
HS
635 /* If we use only OPpTRANS_IDENTICAL to bypass the READONLY check,
636 * we must also rely on it to choose the readonly strategy.
637 */
638 if (flags & OPpTRANS_IDENTICAL) {
639 return hasutf ? do_trans_count_utf8(sv) : do_trans_count(sv);
640 } else if (flags & (OPpTRANS_SQUASH|OPpTRANS_DELETE|OPpTRANS_COMPLEMENT)) {
641 return hasutf ? do_trans_complex_utf8(sv) : do_trans_complex(sv);
642 } else {
643 return hasutf ? do_trans_simple_utf8(sv) : do_trans_simple(sv);
79072805 644 }
79072805
LW
645}
646
647void
5aaab254 648Perl_do_join(pTHX_ SV *sv, SV *delim, SV **mark, SV **sp)
79072805 649{
53c1dcc0 650 SV ** const oldmark = mark;
eb578fdb
KW
651 I32 items = sp - mark;
652 STRLEN len;
463ee0b2 653 STRLEN delimlen;
810a07df 654 const char * const delims = SvPV_const(delim, delimlen);
79072805 655
7918f24d
NC
656 PERL_ARGS_ASSERT_DO_JOIN;
657
79072805
LW
658 mark++;
659 len = (items > 0 ? (delimlen * (items - 1) ) : 0);
862a34c6 660 SvUPGRADE(sv, SVt_PV);
79072805
LW
661 if (SvLEN(sv) < len + items) { /* current length is way too short */
662 while (items-- > 0) {
1426bbf4 663 if (*mark && !SvGAMAGIC(*mark) && SvOK(*mark)) {
f54cb97a 664 STRLEN tmplen;
5c144d81 665 SvPV_const(*mark, tmplen);
463ee0b2 666 len += tmplen;
79072805
LW
667 }
668 mark++;
669 }
670 SvGROW(sv, len + 1); /* so try to pre-extend */
671
672 mark = oldmark;
db7c17d7 673 items = sp - mark;
79072805
LW
674 ++mark;
675 }
676
f607343f 677 SvPVCLEAR(sv);
e4803c42 678 /* sv_setpv retains old UTF8ness [perl #24846] */
fb622db0 679 SvUTF8_off(sv);
e4803c42 680
284167a5 681 if (TAINTING_get && SvMAGICAL(sv))
8d6d96c1
HS
682 SvTAINTED_off(sv);
683
463ee0b2 684 if (items-- > 0) {
92d29cee
JH
685 if (*mark)
686 sv_catsv(sv, *mark);
463ee0b2
LW
687 mark++;
688 }
8d6d96c1 689
c512ce4f 690 if (delimlen) {
810a07df 691 const U32 delimflag = DO_UTF8(delim) ? SV_CATUTF8 : SV_CATBYTES;
79072805 692 for (; items > 0; items--,mark++) {
f0ee3863
FC
693 STRLEN len;
694 const char *s;
810a07df 695 sv_catpvn_flags(sv,delims,delimlen,delimflag);
f0ee3863
FC
696 s = SvPV_const(*mark,len);
697 sv_catpvn_flags(sv,s,len,
698 DO_UTF8(*mark) ? SV_CATUTF8 : SV_CATBYTES);
79072805
LW
699 }
700 }
701 else {
702 for (; items > 0; items--,mark++)
f0ee3863
FC
703 {
704 STRLEN len;
705 const char *s = SvPV_const(*mark,len);
706 sv_catpvn_flags(sv,s,len,
707 DO_UTF8(*mark) ? SV_CATUTF8 : SV_CATBYTES);
708 }
79072805
LW
709 }
710 SvSETMAGIC(sv);
711}
712
713void
03a22d83 714Perl_do_sprintf(pTHX_ SV *sv, SSize_t len, SV **sarg)
79072805 715{
46fc3d4c 716 STRLEN patlen;
53c1dcc0 717 const char * const pat = SvPV_const(*sarg, patlen);
46fc3d4c 718 bool do_taint = FALSE;
719
7918f24d 720 PERL_ARGS_ASSERT_DO_SPRINTF;
03a22d83 721 assert(len >= 1);
7918f24d 722
e06d98fb
DM
723 if (SvTAINTED(*sarg))
724 TAINT_PROPER(
725 (PL_op && PL_op->op_type < OP_max)
726 ? (PL_op->op_type == OP_PRTF)
727 ? "printf"
728 : PL_op_name[PL_op->op_type]
729 : "(unknown)"
730 );
5b781b5b 731 SvUTF8_off(sv);
2cf2cfc6
A
732 if (DO_UTF8(*sarg))
733 SvUTF8_on(sv);
03a22d83 734 sv_vsetpvfn(sv, pat, patlen, NULL, sarg + 1, (Size_t)(len - 1), &do_taint);
79072805 735 SvSETMAGIC(sv);
46fc3d4c 736 if (do_taint)
737 SvTAINTED_on(sv);
79072805
LW
738}
739
33b45480 740/* currently converts input to bytes if possible, but doesn't sweat failure */
81e118e0 741UV
d69c4304 742Perl_do_vecget(pTHX_ SV *sv, STRLEN offset, int size)
81e118e0 743{
67dd6f35 744 STRLEN srclen, len, avail, uoffset, bitoffs = 0;
fc9668ae
DM
745 const I32 svpv_flags = ((PL_op->op_flags & OPf_MOD || LVRET)
746 ? SV_UNDEF_RETURNS_NULL : 0);
747 unsigned char *s = (unsigned char *)
748 SvPV_flags(sv, srclen, (svpv_flags|SV_GMAGIC));
81e118e0
JH
749 UV retnum = 0;
750
032061d2 751 if (!s) {
fc9668ae 752 s = (unsigned char *)"";
032061d2
BF
753 }
754
7918f24d
NC
755 PERL_ARGS_ASSERT_DO_VECGET;
756
8e84507e 757 if (size < 1 || (size & (size-1))) /* size < 1 or not a power of two */
a50d7633 758 Perl_croak(aTHX_ "Illegal number of bits in vec");
246fae53 759
fc9668ae 760 if (SvUTF8(sv)) {
27c41eac 761 if (Perl_sv_utf8_downgrade_flags(aTHX_ sv, TRUE, 0)) {
315f3fc1
KW
762 /* PVX may have changed */
763 s = (unsigned char *) SvPV_flags(sv, srclen, svpv_flags);
764 }
765 else {
da5a0da2 766 Perl_croak(aTHX_ "Use of strings with code points over 0xFF as arguments to vec is forbidden");
315f3fc1 767 }
fc9668ae 768 }
246fae53 769
bbb8a7e0
MHM
770 if (size < 8) {
771 bitoffs = ((offset%8)*size)%8;
772 uoffset = offset/(8/size);
773 }
67dd6f35
DM
774 else if (size > 8) {
775 int n = size/8;
776 if (offset > Size_t_MAX / n - 1) /* would overflow */
777 return 0;
778 uoffset = offset*n;
779 }
bbb8a7e0
MHM
780 else
781 uoffset = offset;
782
67dd6f35
DM
783 if (uoffset >= srclen)
784 return 0;
785
786 len = (bitoffs + size + 7)/8; /* required number of bytes */
787 avail = srclen - uoffset; /* available number of bytes */
788
789 /* Does the byte range overlap the end of the string? If so,
790 * handle specially. */
791 if (avail < len) {
81e118e0
JH
792 if (size <= 8)
793 retnum = 0;
794 else {
81e118e0 795 if (size == 16) {
67dd6f35
DM
796 assert(avail == 1);
797 retnum = (UV) s[uoffset] << 8;
81e118e0
JH
798 }
799 else if (size == 32) {
67dd6f35
DM
800 assert(avail >= 1 && avail <= 3);
801 if (avail == 1)
81e118e0 802 retnum =
bb7a0f54 803 ((UV) s[uoffset ] << 24);
67dd6f35 804 else if (avail == 2)
81e118e0 805 retnum =
bb7a0f54
MHM
806 ((UV) s[uoffset ] << 24) +
807 ((UV) s[uoffset + 1] << 16);
81e118e0
JH
808 else
809 retnum =
bb7a0f54
MHM
810 ((UV) s[uoffset ] << 24) +
811 ((UV) s[uoffset + 1] << 16) +
812 ( s[uoffset + 2] << 8);
81e118e0 813 }
d7d93a81 814#ifdef UV_IS_QUAD
c5a0f51a 815 else if (size == 64) {
a2a5de95
NC
816 Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
817 "Bit vector size > 32 non-portable");
67dd6f35
DM
818 assert(avail >= 1 && avail <= 7);
819 if (avail == 1)
c5a0f51a 820 retnum =
bb7a0f54 821 (UV) s[uoffset ] << 56;
67dd6f35 822 else if (avail == 2)
c5a0f51a 823 retnum =
bb7a0f54
MHM
824 ((UV) s[uoffset ] << 56) +
825 ((UV) s[uoffset + 1] << 48);
67dd6f35 826 else if (avail == 3)
c5a0f51a 827 retnum =
bb7a0f54
MHM
828 ((UV) s[uoffset ] << 56) +
829 ((UV) s[uoffset + 1] << 48) +
830 ((UV) s[uoffset + 2] << 40);
67dd6f35 831 else if (avail == 4)
c5a0f51a 832 retnum =
bb7a0f54
MHM
833 ((UV) s[uoffset ] << 56) +
834 ((UV) s[uoffset + 1] << 48) +
835 ((UV) s[uoffset + 2] << 40) +
836 ((UV) s[uoffset + 3] << 32);
67dd6f35 837 else if (avail == 5)
c5a0f51a 838 retnum =
bb7a0f54
MHM
839 ((UV) s[uoffset ] << 56) +
840 ((UV) s[uoffset + 1] << 48) +
841 ((UV) s[uoffset + 2] << 40) +
842 ((UV) s[uoffset + 3] << 32) +
e7aca353 843 ((UV) s[uoffset + 4] << 24);
67dd6f35 844 else if (avail == 6)
c5a0f51a 845 retnum =
bb7a0f54
MHM
846 ((UV) s[uoffset ] << 56) +
847 ((UV) s[uoffset + 1] << 48) +
848 ((UV) s[uoffset + 2] << 40) +
849 ((UV) s[uoffset + 3] << 32) +
850 ((UV) s[uoffset + 4] << 24) +
851 ((UV) s[uoffset + 5] << 16);
c5a0f51a 852 else
8e84507e 853 retnum =
bb7a0f54
MHM
854 ((UV) s[uoffset ] << 56) +
855 ((UV) s[uoffset + 1] << 48) +
856 ((UV) s[uoffset + 2] << 40) +
857 ((UV) s[uoffset + 3] << 32) +
858 ((UV) s[uoffset + 4] << 24) +
859 ((UV) s[uoffset + 5] << 16) +
e7aca353 860 ((UV) s[uoffset + 6] << 8);
c5a0f51a
JH
861 }
862#endif
81e118e0
JH
863 }
864 }
865 else if (size < 8)
bbb8a7e0 866 retnum = (s[uoffset] >> bitoffs) & ((1 << size) - 1);
81e118e0 867 else {
81e118e0 868 if (size == 8)
bb7a0f54 869 retnum = s[uoffset];
81e118e0
JH
870 else if (size == 16)
871 retnum =
bb7a0f54
MHM
872 ((UV) s[uoffset] << 8) +
873 s[uoffset + 1];
81e118e0
JH
874 else if (size == 32)
875 retnum =
bb7a0f54
MHM
876 ((UV) s[uoffset ] << 24) +
877 ((UV) s[uoffset + 1] << 16) +
878 ( s[uoffset + 2] << 8) +
879 s[uoffset + 3];
d7d93a81 880#ifdef UV_IS_QUAD
c5a0f51a 881 else if (size == 64) {
a2a5de95
NC
882 Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
883 "Bit vector size > 32 non-portable");
c5a0f51a 884 retnum =
bb7a0f54
MHM
885 ((UV) s[uoffset ] << 56) +
886 ((UV) s[uoffset + 1] << 48) +
887 ((UV) s[uoffset + 2] << 40) +
888 ((UV) s[uoffset + 3] << 32) +
889 ((UV) s[uoffset + 4] << 24) +
890 ((UV) s[uoffset + 5] << 16) +
891 ( s[uoffset + 6] << 8) +
892 s[uoffset + 7];
c5a0f51a
JH
893 }
894#endif
81e118e0
JH
895 }
896
897 return retnum;
898}
899
33b45480
SB
900/* currently converts input to bytes if possible but doesn't sweat failures,
901 * although it does ensure that the string it clobbers is not marked as
902 * utf8-valid any more
903 */
79072805 904void
864dbfa3 905Perl_do_vecset(pTHX_ SV *sv)
79072805 906{
67dd6f35 907 STRLEN offset, bitoffs = 0;
eb578fdb
KW
908 int size;
909 unsigned char *s;
910 UV lval;
79072805 911 I32 mask;
a0d0e21e
LW
912 STRLEN targlen;
913 STRLEN len;
c4420975 914 SV * const targ = LvTARG(sv);
1b92e694 915 char errflags = LvFLAGS(sv);
79072805 916
7918f24d
NC
917 PERL_ARGS_ASSERT_DO_VECSET;
918
1b92e694
DM
919 /* some out-of-range errors have been deferred if/until the LV is
920 * actually written to: f(vec($s,-1,8)) is not always fatal */
921 if (errflags) {
b063b0a8
DIM
922 assert(!(errflags & ~(LVf_NEG_OFF|LVf_OUT_OF_RANGE)));
923 if (errflags & LVf_NEG_OFF)
1b92e694
DM
924 Perl_croak_nocontext("Negative offset to vec in lvalue context");
925 Perl_croak_nocontext("Out of memory!");
926 }
927
8990e307
LW
928 if (!targ)
929 return;
032061d2
BF
930 s = (unsigned char*)SvPV_force_flags(targ, targlen,
931 SV_GMAGIC | SV_UNDEF_RETURNS_NULL);
246fae53 932 if (SvUTF8(targ)) {
33b45480 933 /* This is handled by the SvPOK_only below...
27c41eac 934 if (!Perl_sv_utf8_downgrade_flags(aTHX_ targ, TRUE, 0))
33b45480
SB
935 SvUTF8_off(targ);
936 */
27c41eac 937 (void) Perl_sv_utf8_downgrade_flags(aTHX_ targ, TRUE, 0);
246fae53
MG
938 }
939
4ebbc975 940 (void)SvPOK_only(targ);
81e118e0 941 lval = SvUV(sv);
79072805
LW
942 offset = LvTARGOFF(sv);
943 size = LvTARGLEN(sv);
67dd6f35 944
8e84507e 945 if (size < 1 || (size & (size-1))) /* size < 1 or not a power of two */
a50d7633 946 Perl_croak(aTHX_ "Illegal number of bits in vec");
8e84507e 947
bbb8a7e0
MHM
948 if (size < 8) {
949 bitoffs = ((offset%8)*size)%8;
950 offset /= 8/size;
951 }
67dd6f35
DM
952 else if (size > 8) {
953 int n = size/8;
954 if (offset > Size_t_MAX / n - 1) /* would overflow */
955 Perl_croak_nocontext("Out of memory!");
956 offset *= n;
957 }
bbb8a7e0 958
67dd6f35
DM
959 len = (bitoffs + size + 7)/8; /* required number of bytes */
960 if (targlen < offset || targlen - offset < len) {
961 STRLEN newlen = offset > Size_t_MAX - len - 1 ? /* avoid overflow */
962 Size_t_MAX : offset + len + 1;
963 s = (unsigned char*)SvGROW(targ, newlen);
964 (void)memzero((char *)(s + targlen), newlen - targlen);
965 SvCUR_set(targ, newlen - 1);
a0d0e21e 966 }
8e84507e 967
79072805
LW
968 if (size < 8) {
969 mask = (1 << size) - 1;
79072805 970 lval &= mask;
bbb8a7e0
MHM
971 s[offset] &= ~(mask << bitoffs);
972 s[offset] |= lval << bitoffs;
79072805
LW
973 }
974 else {
975 if (size == 8)
eb160463 976 s[offset ] = (U8)( lval & 0xff);
79072805 977 else if (size == 16) {
eb160463
GS
978 s[offset ] = (U8)((lval >> 8) & 0xff);
979 s[offset+1] = (U8)( lval & 0xff);
79072805
LW
980 }
981 else if (size == 32) {
eb160463
GS
982 s[offset ] = (U8)((lval >> 24) & 0xff);
983 s[offset+1] = (U8)((lval >> 16) & 0xff);
984 s[offset+2] = (U8)((lval >> 8) & 0xff);
985 s[offset+3] = (U8)( lval & 0xff);
c5a0f51a 986 }
d7d93a81 987#ifdef UV_IS_QUAD
c5a0f51a 988 else if (size == 64) {
a2a5de95
NC
989 Perl_ck_warner(aTHX_ packWARN(WARN_PORTABLE),
990 "Bit vector size > 32 non-portable");
eb160463
GS
991 s[offset ] = (U8)((lval >> 56) & 0xff);
992 s[offset+1] = (U8)((lval >> 48) & 0xff);
993 s[offset+2] = (U8)((lval >> 40) & 0xff);
994 s[offset+3] = (U8)((lval >> 32) & 0xff);
995 s[offset+4] = (U8)((lval >> 24) & 0xff);
996 s[offset+5] = (U8)((lval >> 16) & 0xff);
997 s[offset+6] = (U8)((lval >> 8) & 0xff);
998 s[offset+7] = (U8)( lval & 0xff);
79072805 999 }
dc1e3f56 1000#endif
79072805 1001 }
7bb043c3 1002 SvSETMAGIC(targ);
79072805
LW
1003}
1004
1005void
864dbfa3 1006Perl_do_vop(pTHX_ I32 optype, SV *sv, SV *left, SV *right)
79072805
LW
1007{
1008#ifdef LIBERAL
eb578fdb
KW
1009 long *dl;
1010 long *ll;
1011 long *rl;
79072805 1012#endif
eb578fdb 1013 char *dc;
463ee0b2
LW
1014 STRLEN leftlen;
1015 STRLEN rightlen;
eb578fdb
KW
1016 const char *lc;
1017 const char *rc;
b404a7f5 1018 STRLEN len = 0;
bb7a0f54 1019 STRLEN lensave;
e62f0680
NC
1020 const char *lsave;
1021 const char *rsave;
bb7a0f54 1022 STRLEN needlen = 0;
08b6664b 1023 bool result_needs_to_be_utf8 = FALSE;
b50535da
KW
1024 bool left_utf8 = FALSE;
1025 bool right_utf8 = FALSE;
1026 U8 * left_non_downgraded = NULL;
1027 U8 * right_non_downgraded = NULL;
1028 Size_t left_non_downgraded_len = 0;
1029 Size_t right_non_downgraded_len = 0;
1030 char * non_downgraded = NULL;
1031 Size_t non_downgraded_len = 0;
0c57e439 1032
7918f24d 1033 PERL_ARGS_ASSERT_DO_VOP;
79072805 1034
6b349a5c 1035 if (sv != left || (optype != OP_BIT_AND && !SvOK(sv)))
f607343f 1036 SvPVCLEAR(sv); /* avoid undef warning on |= and ^= */
8c8eee82 1037 if (sv == left) {
08b6664b 1038 lc = SvPV_force_nomg(left, leftlen);
8c8eee82
BM
1039 }
1040 else {
08b6664b 1041 lc = SvPV_nomg_const(left, leftlen);
8c8eee82
BM
1042 SvPV_force_nomg_nolen(sv);
1043 }
08b6664b 1044 rc = SvPV_nomg_const(right, rightlen);
12abf4f0 1045
0e6e7171 1046 /* This needs to come after SvPV to ensure that string overloading has
12abf4f0
NC
1047 fired off. */
1048
08b6664b
KW
1049 /* Create downgraded temporaries of any UTF-8 encoded operands */
1050 if (DO_UTF8(left)) {
b50535da 1051 const U8 * save_lc = (U8 *) lc;
08b6664b 1052
b50535da 1053 left_utf8 = TRUE;
08b6664b
KW
1054 result_needs_to_be_utf8 = TRUE;
1055
b50535da
KW
1056 left_non_downgraded_len = leftlen;
1057 lc = (char *) bytes_from_utf8_loc((const U8 *) lc, &leftlen,
1058 &left_utf8,
1059 (const U8 **) &left_non_downgraded);
1060 /* Calculate the number of trailing unconvertible bytes. This quantity
1061 * is the original length minus the length of the converted portion. */
1062 left_non_downgraded_len -= left_non_downgraded - save_lc;
1063 SAVEFREEPV(lc);
12abf4f0 1064 }
08b6664b 1065 if (DO_UTF8(right)) {
b50535da 1066 const U8 * save_rc = (U8 *) rc;
08b6664b 1067
b50535da 1068 right_utf8 = TRUE;
08b6664b
KW
1069 result_needs_to_be_utf8 = TRUE;
1070
b50535da
KW
1071 right_non_downgraded_len = rightlen;
1072 rc = (char *) bytes_from_utf8_loc((const U8 *) rc, &rightlen,
1073 &right_utf8,
1074 (const U8 **) &right_non_downgraded);
1075 right_non_downgraded_len -= right_non_downgraded - save_rc;
1076 SAVEFREEPV(rc);
1077 }
1078
1079 /* We set 'len' to the length that the operation actually operates on. The
1080 * dangling part of the longer operand doesn't actually participate in the
1081 * operation. What happens is that we pretend that the shorter operand has
1082 * been extended to the right by enough imaginary zeros to match the length
1083 * of the longer one. But we know in advance the result of the operation
1084 * on zeros without having to do it. In the case of '&', the result is
1085 * zero, and the dangling portion is simply discarded. For '|' and '^', the
1086 * result is the same as the other operand, so the dangling part is just
c8b94fe0
JK
1087 * appended to the final result, unchanged. As of perl-5.32, we no longer
1088 * accept above-FF code points in the dangling portion.
1089 */
ba52ce15 1090 if (left_utf8 || right_utf8) {
c8b94fe0 1091 Perl_croak(aTHX_ FATAL_ABOVE_FF_MSG, PL_op_desc[optype]);
ba52ce15 1092 }
b50535da 1093 else { /* Neither is UTF-8 */
78ba9007 1094 len = MIN(leftlen, rightlen);
12abf4f0
NC
1095 }
1096
b50535da 1097 lensave = len;
08b6664b
KW
1098 lsave = lc;
1099 rsave = rc;
b50535da 1100
9fdd7463
JH
1101 SvCUR_set(sv, len);
1102 (void)SvPOK_only(sv);
08b6664b 1103 if (SvOK(sv) || SvTYPE(sv) > SVt_PVMG) {
2596d9fe 1104 dc = SvPV_force_nomg_nolen(sv);
bb7a0f54
MHM
1105 if (SvLEN(sv) < len + 1) {
1106 dc = SvGROW(sv, len + 1);
ff68c719 1107 (void)memzero(dc + SvCUR(sv), len - SvCUR(sv) + 1);
1108 }
1109 }
1110 else {
bb7a0f54
MHM
1111 needlen = optype == OP_BIT_AND
1112 ? len : (leftlen > rightlen ? leftlen : rightlen);
a02a5408 1113 Newxz(dc, needlen + 1, char);
aa0a69cb 1114 sv_usepvn_flags(sv, dc, needlen, SV_HAS_TRAILING_NUL);
ff68c719 1115 dc = SvPVX(sv); /* sv_usepvn() calls Renew() */
79072805 1116 }
0c57e439 1117
79072805
LW
1118#ifdef LIBERAL
1119 if (len >= sizeof(long)*4 &&
bb7a0f54
MHM
1120 !((unsigned long)dc % sizeof(long)) &&
1121 !((unsigned long)lc % sizeof(long)) &&
1122 !((unsigned long)rc % sizeof(long))) /* It's almost always aligned... */
79072805 1123 {
bb7a0f54 1124 const STRLEN remainder = len % (sizeof(long)*4);
79072805
LW
1125 len /= (sizeof(long)*4);
1126
1127 dl = (long*)dc;
1128 ll = (long*)lc;
1129 rl = (long*)rc;
1130
1131 switch (optype) {
1132 case OP_BIT_AND:
1133 while (len--) {
1134 *dl++ = *ll++ & *rl++;
1135 *dl++ = *ll++ & *rl++;
1136 *dl++ = *ll++ & *rl++;
1137 *dl++ = *ll++ & *rl++;
1138 }
1139 break;
a0d0e21e 1140 case OP_BIT_XOR:
79072805
LW
1141 while (len--) {
1142 *dl++ = *ll++ ^ *rl++;
1143 *dl++ = *ll++ ^ *rl++;
1144 *dl++ = *ll++ ^ *rl++;
1145 *dl++ = *ll++ ^ *rl++;
1146 }
1147 break;
1148 case OP_BIT_OR:
1149 while (len--) {
1150 *dl++ = *ll++ | *rl++;
1151 *dl++ = *ll++ | *rl++;
1152 *dl++ = *ll++ | *rl++;
1153 *dl++ = *ll++ | *rl++;
1154 }
1155 }
1156
1157 dc = (char*)dl;
1158 lc = (char*)ll;
1159 rc = (char*)rl;
1160
1161 len = remainder;
1162 }
1163#endif
27a9d47d
KW
1164 switch (optype) {
1165 case OP_BIT_AND:
1166 while (len--)
1167 *dc++ = *lc++ & *rc++;
1168 *dc = '\0';
1169 break;
1170 case OP_BIT_XOR:
1171 while (len--)
1172 *dc++ = *lc++ ^ *rc++;
1173 goto mop_up;
1174 case OP_BIT_OR:
1175 while (len--)
1176 *dc++ = *lc++ | *rc++;
1177 mop_up:
1178 len = lensave;
1179 if (rightlen > len) {
1180 if (dc == rc)
2324bdb9 1181 SvCUR_set(sv, rightlen);
27a9d47d
KW
1182 else
1183 sv_catpvn_nomg(sv, rsave + len, rightlen - len);
1184 }
1185 else if (leftlen > len) {
1186 if (dc == lc)
2324bdb9 1187 SvCUR_set(sv, leftlen);
27a9d47d
KW
1188 else
1189 sv_catpvn_nomg(sv, lsave + len, leftlen - len);
1190 }
1191 *SvEND(sv) = '\0';
392582f8 1192
b50535da
KW
1193 /* If there is trailing stuff that couldn't be converted from UTF-8, it
1194 * is appended as-is for the ^ and | operators. This preserves
1195 * backwards compatibility */
1196 if (right_non_downgraded) {
1197 non_downgraded = (char *) right_non_downgraded;
1198 non_downgraded_len = right_non_downgraded_len;
1199 }
1200 else if (left_non_downgraded) {
1201 non_downgraded = (char *) left_non_downgraded;
1202 non_downgraded_len = left_non_downgraded_len;
1203 }
1204
27a9d47d
KW
1205 break;
1206 }
08b6664b
KW
1207
1208 if (result_needs_to_be_utf8) {
b50535da
KW
1209 sv_utf8_upgrade_nomg(sv);
1210
1211 /* Append any trailing UTF-8 as-is. */
1212 if (non_downgraded) {
1213 sv_catpvn_nomg(sv, non_downgraded, non_downgraded_len);
1214 }
79072805 1215 }
08b6664b 1216
fb73857a 1217 SvTAINT(sv);
79072805 1218}
463ee0b2 1219
b1c05ba5 1220
a2232057
DM
1221/* Perl_do_kv() may be:
1222 * * called directly as the pp function for pp_keys() and pp_values();
a2232057
DM
1223 * * It may also be called directly when the op is OP_AVHVSWITCH, to
1224 * implement CORE::keys(), CORE::values().
1225 *
1226 * In all cases it expects an HV on the stack and returns a list of keys,
1227 * values, or key-value pairs, depending on PL_op.
1228 */
b1c05ba5 1229
463ee0b2 1230OP *
cea2e8a9 1231Perl_do_kv(pTHX)
463ee0b2 1232{
39644a26 1233 dSP;
73ff03e8 1234 HV * const keys = MUTABLE_HV(POPs);
1c23e2bd 1235 const U8 gimme = GIMME_V;
a2232057 1236
af3b1cba 1237 const I32 dokeys = (PL_op->op_type == OP_KEYS)
a2232057 1238 || ( PL_op->op_type == OP_AVHVSWITCH
94184451
DM
1239 && (PL_op->op_private & OPpAVHVSWITCH_MASK)
1240 + OP_EACH == OP_KEYS);
a2232057 1241
af3b1cba 1242 const I32 dovalues = (PL_op->op_type == OP_VALUES)
a2232057 1243 || ( PL_op->op_type == OP_AVHVSWITCH
94184451
DM
1244 && (PL_op->op_private & OPpAVHVSWITCH_MASK)
1245 + OP_EACH == OP_VALUES);
a2232057 1246
af3b1cba 1247 assert( PL_op->op_type == OP_KEYS
a2232057
DM
1248 || PL_op->op_type == OP_VALUES
1249 || PL_op->op_type == OP_AVHVSWITCH);
463ee0b2 1250
4fa080db
DM
1251 assert(!( PL_op->op_type == OP_VALUES
1252 && (PL_op->op_private & OPpMAYBE_LVSUB)));
1253
800e9ae0 1254 (void)hv_iterinit(keys); /* always reset iterator regardless */
748a9306 1255
54310121 1256 if (gimme == G_VOID)
aa689395 1257 RETURN;
1258
54310121 1259 if (gimme == G_SCALAR) {
78f9721b 1260 if (PL_op->op_flags & OPf_MOD || LVRET) { /* lvalue */
2154eca7
EB
1261 SV * const ret = sv_2mortal(newSV_type(SVt_PVLV)); /* Not TARG RT#67838 */
1262 sv_magic(ret, NULL, PERL_MAGIC_nkeys, NULL, 0);
1263 LvTYPE(ret) = 'k';
1264 LvTARG(ret) = SvREFCNT_inc_simple(keys);
1265 PUSHs(ret);
81714fb9 1266 }
463ee0b2 1267 else {
2154eca7
EB
1268 IV i;
1269 dTARGET;
1270
af3b1cba
DM
1271 /* note that in 'scalar(keys %h)' the OP_KEYS is usually
1272 * optimised away and the action is performed directly by the
1273 * padhv or rv2hv op. We now only get here via OP_AVHVSWITCH
1274 * and \&CORE::keys
1275 */
2154eca7 1276 if (! SvTIED_mg((const SV *)keys, PERL_MAGIC_tied) ) {
1b95d04f 1277 i = HvUSEDKEYS(keys);
2154eca7
EB
1278 }
1279 else {
1280 i = 0;
1281 while (hv_iternext(keys)) i++;
1282 }
1283 PUSHi( i );
463ee0b2 1284 }
463ee0b2
LW
1285 RETURN;
1286 }
1287
a061ab0b
FC
1288 if (UNLIKELY(PL_op->op_private & OPpMAYBE_LVSUB)) {
1289 const I32 flags = is_lvalue_sub();
1290 if (flags && !(flags & OPpENTERSUB_INARGS))
1291 /* diag_listed_as: Can't modify %s in %s */
1292 Perl_croak(aTHX_ "Can't modify keys in list assignment");
1293 }
1294
8dc9003f
DM
1295 PUTBACK;
1296 hv_pushkv(keys, (dokeys | (dovalues << 1)));
1297 return NORMAL;
463ee0b2 1298}
4e35701f 1299
af3babe4 1300/*
14d04a33 1301 * ex: set ts=8 sts=4 sw=4 et:
37442d52 1302 */