This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
use blk_loop format for CXt_GIVEN
[perl5.git] / sv.c
1 /*    sv.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4  *    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall
5  *    and others
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  *
10  */
11
12 /*
13  * 'I wonder what the Entish is for "yes" and "no",' he thought.
14  *                                                      --Pippin
15  *
16  *     [p.480 of _The Lord of the Rings_, III/iv: "Treebeard"]
17  */
18
19 /*
20  *
21  *
22  * This file contains the code that creates, manipulates and destroys
23  * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
24  * structure of an SV, so their creation and destruction is handled
25  * here; higher-level functions are in av.c, hv.c, and so on. Opcode
26  * level functions (eg. substr, split, join) for each of the types are
27  * in the pp*.c files.
28  */
29
30 #include "EXTERN.h"
31 #define PERL_IN_SV_C
32 #include "perl.h"
33 #include "regcomp.h"
34 #ifdef __VMS
35 # include <rms.h>
36 #endif
37
38 #ifdef __Lynx__
39 /* Missing proto on LynxOS */
40   char *gconvert(double, int, int,  char *);
41 #endif
42
43 #ifdef USE_QUADMATH
44 #  define SNPRINTF_G(nv, buffer, size, ndig) \
45     quadmath_snprintf(buffer, size, "%.*Qg", (int)ndig, (NV)(nv))
46 #else
47 #  define SNPRINTF_G(nv, buffer, size, ndig) \
48     PERL_UNUSED_RESULT(Gconvert((NV)(nv), (int)ndig, 0, buffer))
49 #endif
50
51 #ifndef SV_COW_THRESHOLD
52 #    define SV_COW_THRESHOLD                    0   /* COW iff len > K */
53 #endif
54 #ifndef SV_COWBUF_THRESHOLD
55 #    define SV_COWBUF_THRESHOLD                 1250 /* COW iff len > K */
56 #endif
57 #ifndef SV_COW_MAX_WASTE_THRESHOLD
58 #    define SV_COW_MAX_WASTE_THRESHOLD          80   /* COW iff (len - cur) < K */
59 #endif
60 #ifndef SV_COWBUF_WASTE_THRESHOLD
61 #    define SV_COWBUF_WASTE_THRESHOLD           80   /* COW iff (len - cur) < K */
62 #endif
63 #ifndef SV_COW_MAX_WASTE_FACTOR_THRESHOLD
64 #    define SV_COW_MAX_WASTE_FACTOR_THRESHOLD   2    /* COW iff len < (cur * K) */
65 #endif
66 #ifndef SV_COWBUF_WASTE_FACTOR_THRESHOLD
67 #    define SV_COWBUF_WASTE_FACTOR_THRESHOLD    2    /* COW iff len < (cur * K) */
68 #endif
69 /* Work around compiler warnings about unsigned >= THRESHOLD when thres-
70    hold is 0. */
71 #if SV_COW_THRESHOLD
72 # define GE_COW_THRESHOLD(cur) ((cur) >= SV_COW_THRESHOLD)
73 #else
74 # define GE_COW_THRESHOLD(cur) 1
75 #endif
76 #if SV_COWBUF_THRESHOLD
77 # define GE_COWBUF_THRESHOLD(cur) ((cur) >= SV_COWBUF_THRESHOLD)
78 #else
79 # define GE_COWBUF_THRESHOLD(cur) 1
80 #endif
81 #if SV_COW_MAX_WASTE_THRESHOLD
82 # define GE_COW_MAX_WASTE_THRESHOLD(cur,len) (((len)-(cur)) < SV_COW_MAX_WASTE_THRESHOLD)
83 #else
84 # define GE_COW_MAX_WASTE_THRESHOLD(cur,len) 1
85 #endif
86 #if SV_COWBUF_WASTE_THRESHOLD
87 # define GE_COWBUF_WASTE_THRESHOLD(cur,len) (((len)-(cur)) < SV_COWBUF_WASTE_THRESHOLD)
88 #else
89 # define GE_COWBUF_WASTE_THRESHOLD(cur,len) 1
90 #endif
91 #if SV_COW_MAX_WASTE_FACTOR_THRESHOLD
92 # define GE_COW_MAX_WASTE_FACTOR_THRESHOLD(cur,len) ((len) < SV_COW_MAX_WASTE_FACTOR_THRESHOLD * (cur))
93 #else
94 # define GE_COW_MAX_WASTE_FACTOR_THRESHOLD(cur,len) 1
95 #endif
96 #if SV_COWBUF_WASTE_FACTOR_THRESHOLD
97 # define GE_COWBUF_WASTE_FACTOR_THRESHOLD(cur,len) ((len) < SV_COWBUF_WASTE_FACTOR_THRESHOLD * (cur))
98 #else
99 # define GE_COWBUF_WASTE_FACTOR_THRESHOLD(cur,len) 1
100 #endif
101
102 #define CHECK_COW_THRESHOLD(cur,len) (\
103     GE_COW_THRESHOLD((cur)) && \
104     GE_COW_MAX_WASTE_THRESHOLD((cur),(len)) && \
105     GE_COW_MAX_WASTE_FACTOR_THRESHOLD((cur),(len)) \
106 )
107 #define CHECK_COWBUF_THRESHOLD(cur,len) (\
108     GE_COWBUF_THRESHOLD((cur)) && \
109     GE_COWBUF_WASTE_THRESHOLD((cur),(len)) && \
110     GE_COWBUF_WASTE_FACTOR_THRESHOLD((cur),(len)) \
111 )
112
113 #ifdef PERL_UTF8_CACHE_ASSERT
114 /* if adding more checks watch out for the following tests:
115  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
116  *   lib/utf8.t lib/Unicode/Collate/t/index.t
117  * --jhi
118  */
119 #   define ASSERT_UTF8_CACHE(cache) \
120     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
121                               assert((cache)[2] <= (cache)[3]); \
122                               assert((cache)[3] <= (cache)[1]);} \
123                               } STMT_END
124 #else
125 #   define ASSERT_UTF8_CACHE(cache) NOOP
126 #endif
127
128 static const char S_destroy[] = "DESTROY";
129 #define S_destroy_len (sizeof(S_destroy)-1)
130
131 /* ============================================================================
132
133 =head1 Allocation and deallocation of SVs.
134 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
135 sv, av, hv...) contains type and reference count information, and for
136 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
137 contains fields specific to each type.  Some types store all they need
138 in the head, so don't have a body.
139
140 In all but the most memory-paranoid configurations (ex: PURIFY), heads
141 and bodies are allocated out of arenas, which by default are
142 approximately 4K chunks of memory parcelled up into N heads or bodies.
143 Sv-bodies are allocated by their sv-type, guaranteeing size
144 consistency needed to allocate safely from arrays.
145
146 For SV-heads, the first slot in each arena is reserved, and holds a
147 link to the next arena, some flags, and a note of the number of slots.
148 Snaked through each arena chain is a linked list of free items; when
149 this becomes empty, an extra arena is allocated and divided up into N
150 items which are threaded into the free list.
151
152 SV-bodies are similar, but they use arena-sets by default, which
153 separate the link and info from the arena itself, and reclaim the 1st
154 slot in the arena.  SV-bodies are further described later.
155
156 The following global variables are associated with arenas:
157
158  PL_sv_arenaroot     pointer to list of SV arenas
159  PL_sv_root          pointer to list of free SV structures
160
161  PL_body_arenas      head of linked-list of body arenas
162  PL_body_roots[]     array of pointers to list of free bodies of svtype
163                      arrays are indexed by the svtype needed
164
165 A few special SV heads are not allocated from an arena, but are
166 instead directly created in the interpreter structure, eg PL_sv_undef.
167 The size of arenas can be changed from the default by setting
168 PERL_ARENA_SIZE appropriately at compile time.
169
170 The SV arena serves the secondary purpose of allowing still-live SVs
171 to be located and destroyed during final cleanup.
172
173 At the lowest level, the macros new_SV() and del_SV() grab and free
174 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
175 to return the SV to the free list with error checking.) new_SV() calls
176 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
177 SVs in the free list have their SvTYPE field set to all ones.
178
179 At the time of very final cleanup, sv_free_arenas() is called from
180 perl_destruct() to physically free all the arenas allocated since the
181 start of the interpreter.
182
183 The function visit() scans the SV arenas list, and calls a specified
184 function for each SV it finds which is still live - ie which has an SvTYPE
185 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
186 following functions (specified as [function that calls visit()] / [function
187 called by visit() for each SV]):
188
189     sv_report_used() / do_report_used()
190                         dump all remaining SVs (debugging aid)
191
192     sv_clean_objs() / do_clean_objs(),do_clean_named_objs(),
193                       do_clean_named_io_objs(),do_curse()
194                         Attempt to free all objects pointed to by RVs,
195                         try to do the same for all objects indir-
196                         ectly referenced by typeglobs too, and
197                         then do a final sweep, cursing any
198                         objects that remain.  Called once from
199                         perl_destruct(), prior to calling sv_clean_all()
200                         below.
201
202     sv_clean_all() / do_clean_all()
203                         SvREFCNT_dec(sv) each remaining SV, possibly
204                         triggering an sv_free(). It also sets the
205                         SVf_BREAK flag on the SV to indicate that the
206                         refcnt has been artificially lowered, and thus
207                         stopping sv_free() from giving spurious warnings
208                         about SVs which unexpectedly have a refcnt
209                         of zero.  called repeatedly from perl_destruct()
210                         until there are no SVs left.
211
212 =head2 Arena allocator API Summary
213
214 Private API to rest of sv.c
215
216     new_SV(),  del_SV(),
217
218     new_XPVNV(), del_XPVGV(),
219     etc
220
221 Public API:
222
223     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
224
225 =cut
226
227  * ========================================================================= */
228
229 /*
230  * "A time to plant, and a time to uproot what was planted..."
231  */
232
233 #ifdef PERL_MEM_LOG
234 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
235             Perl_mem_log_new_sv(sv, file, line, func)
236 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
237             Perl_mem_log_del_sv(sv, file, line, func)
238 #else
239 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
240 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
241 #endif
242
243 #ifdef DEBUG_LEAKING_SCALARS
244 #  define FREE_SV_DEBUG_FILE(sv) STMT_START { \
245         if ((sv)->sv_debug_file) PerlMemShared_free((sv)->sv_debug_file); \
246     } STMT_END
247 #  define DEBUG_SV_SERIAL(sv)                                               \
248     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) del_SV\n",    \
249             PTR2UV(sv), (long)(sv)->sv_debug_serial))
250 #else
251 #  define FREE_SV_DEBUG_FILE(sv)
252 #  define DEBUG_SV_SERIAL(sv)   NOOP
253 #endif
254
255 #ifdef PERL_POISON
256 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
257 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
258 /* Whilst I'd love to do this, it seems that things like to check on
259    unreferenced scalars
260 #  define POISON_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
261 */
262 #  define POISON_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
263                                 PoisonNew(&SvREFCNT(sv), 1, U32)
264 #else
265 #  define SvARENA_CHAIN(sv)     SvANY(sv)
266 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
267 #  define POISON_SV_HEAD(sv)
268 #endif
269
270 /* Mark an SV head as unused, and add to free list.
271  *
272  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
273  * its refcount artificially decremented during global destruction, so
274  * there may be dangling pointers to it. The last thing we want in that
275  * case is for it to be reused. */
276
277 #define plant_SV(p) \
278     STMT_START {                                        \
279         const U32 old_flags = SvFLAGS(p);                       \
280         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
281         DEBUG_SV_SERIAL(p);                             \
282         FREE_SV_DEBUG_FILE(p);                          \
283         POISON_SV_HEAD(p);                              \
284         SvFLAGS(p) = SVTYPEMASK;                        \
285         if (!(old_flags & SVf_BREAK)) {         \
286             SvARENA_CHAIN_SET(p, PL_sv_root);   \
287             PL_sv_root = (p);                           \
288         }                                               \
289         --PL_sv_count;                                  \
290     } STMT_END
291
292 #define uproot_SV(p) \
293     STMT_START {                                        \
294         (p) = PL_sv_root;                               \
295         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
296         ++PL_sv_count;                                  \
297     } STMT_END
298
299
300 /* make some more SVs by adding another arena */
301
302 STATIC SV*
303 S_more_sv(pTHX)
304 {
305     SV* sv;
306     char *chunk;                /* must use New here to match call to */
307     Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
308     sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
309     uproot_SV(sv);
310     return sv;
311 }
312
313 /* new_SV(): return a new, empty SV head */
314
315 #ifdef DEBUG_LEAKING_SCALARS
316 /* provide a real function for a debugger to play with */
317 STATIC SV*
318 S_new_SV(pTHX_ const char *file, int line, const char *func)
319 {
320     SV* sv;
321
322     if (PL_sv_root)
323         uproot_SV(sv);
324     else
325         sv = S_more_sv(aTHX);
326     SvANY(sv) = 0;
327     SvREFCNT(sv) = 1;
328     SvFLAGS(sv) = 0;
329     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
330     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
331                 ? PL_parser->copline
332                 :  PL_curcop
333                     ? CopLINE(PL_curcop)
334                     : 0
335             );
336     sv->sv_debug_inpad = 0;
337     sv->sv_debug_parent = NULL;
338     sv->sv_debug_file = PL_curcop ? savesharedpv(CopFILE(PL_curcop)): NULL;
339
340     sv->sv_debug_serial = PL_sv_serial++;
341
342     MEM_LOG_NEW_SV(sv, file, line, func);
343     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%" UVxf ": (%05ld) new_SV (from %s:%d [%s])\n",
344             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
345
346     return sv;
347 }
348 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
349
350 #else
351 #  define new_SV(p) \
352     STMT_START {                                        \
353         if (PL_sv_root)                                 \
354             uproot_SV(p);                               \
355         else                                            \
356             (p) = S_more_sv(aTHX);                      \
357         SvANY(p) = 0;                                   \
358         SvREFCNT(p) = 1;                                \
359         SvFLAGS(p) = 0;                                 \
360         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
361     } STMT_END
362 #endif
363
364
365 /* del_SV(): return an empty SV head to the free list */
366
367 #ifdef DEBUGGING
368
369 #define del_SV(p) \
370     STMT_START {                                        \
371         if (DEBUG_D_TEST)                               \
372             del_sv(p);                                  \
373         else                                            \
374             plant_SV(p);                                \
375     } STMT_END
376
377 STATIC void
378 S_del_sv(pTHX_ SV *p)
379 {
380     PERL_ARGS_ASSERT_DEL_SV;
381
382     if (DEBUG_D_TEST) {
383         SV* sva;
384         bool ok = 0;
385         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
386             const SV * const sv = sva + 1;
387             const SV * const svend = &sva[SvREFCNT(sva)];
388             if (p >= sv && p < svend) {
389                 ok = 1;
390                 break;
391             }
392         }
393         if (!ok) {
394             Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
395                              "Attempt to free non-arena SV: 0x%" UVxf
396                              pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
397             return;
398         }
399     }
400     plant_SV(p);
401 }
402
403 #else /* ! DEBUGGING */
404
405 #define del_SV(p)   plant_SV(p)
406
407 #endif /* DEBUGGING */
408
409
410 /*
411 =head1 SV Manipulation Functions
412
413 =for apidoc sv_add_arena
414
415 Given a chunk of memory, link it to the head of the list of arenas,
416 and split it into a list of free SVs.
417
418 =cut
419 */
420
421 static void
422 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
423 {
424     SV *const sva = MUTABLE_SV(ptr);
425     SV* sv;
426     SV* svend;
427
428     PERL_ARGS_ASSERT_SV_ADD_ARENA;
429
430     /* The first SV in an arena isn't an SV. */
431     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
432     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
433     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
434
435     PL_sv_arenaroot = sva;
436     PL_sv_root = sva + 1;
437
438     svend = &sva[SvREFCNT(sva) - 1];
439     sv = sva + 1;
440     while (sv < svend) {
441         SvARENA_CHAIN_SET(sv, (sv + 1));
442 #ifdef DEBUGGING
443         SvREFCNT(sv) = 0;
444 #endif
445         /* Must always set typemask because it's always checked in on cleanup
446            when the arenas are walked looking for objects.  */
447         SvFLAGS(sv) = SVTYPEMASK;
448         sv++;
449     }
450     SvARENA_CHAIN_SET(sv, 0);
451 #ifdef DEBUGGING
452     SvREFCNT(sv) = 0;
453 #endif
454     SvFLAGS(sv) = SVTYPEMASK;
455 }
456
457 /* visit(): call the named function for each non-free SV in the arenas
458  * whose flags field matches the flags/mask args. */
459
460 STATIC I32
461 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
462 {
463     SV* sva;
464     I32 visited = 0;
465
466     PERL_ARGS_ASSERT_VISIT;
467
468     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
469         const SV * const svend = &sva[SvREFCNT(sva)];
470         SV* sv;
471         for (sv = sva + 1; sv < svend; ++sv) {
472             if (SvTYPE(sv) != (svtype)SVTYPEMASK
473                     && (sv->sv_flags & mask) == flags
474                     && SvREFCNT(sv))
475             {
476                 (*f)(aTHX_ sv);
477                 ++visited;
478             }
479         }
480     }
481     return visited;
482 }
483
484 #ifdef DEBUGGING
485
486 /* called by sv_report_used() for each live SV */
487
488 static void
489 do_report_used(pTHX_ SV *const sv)
490 {
491     if (SvTYPE(sv) != (svtype)SVTYPEMASK) {
492         PerlIO_printf(Perl_debug_log, "****\n");
493         sv_dump(sv);
494     }
495 }
496 #endif
497
498 /*
499 =for apidoc sv_report_used
500
501 Dump the contents of all SVs not yet freed (debugging aid).
502
503 =cut
504 */
505
506 void
507 Perl_sv_report_used(pTHX)
508 {
509 #ifdef DEBUGGING
510     visit(do_report_used, 0, 0);
511 #else
512     PERL_UNUSED_CONTEXT;
513 #endif
514 }
515
516 /* called by sv_clean_objs() for each live SV */
517
518 static void
519 do_clean_objs(pTHX_ SV *const ref)
520 {
521     assert (SvROK(ref));
522     {
523         SV * const target = SvRV(ref);
524         if (SvOBJECT(target)) {
525             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
526             if (SvWEAKREF(ref)) {
527                 sv_del_backref(target, ref);
528                 SvWEAKREF_off(ref);
529                 SvRV_set(ref, NULL);
530             } else {
531                 SvROK_off(ref);
532                 SvRV_set(ref, NULL);
533                 SvREFCNT_dec_NN(target);
534             }
535         }
536     }
537 }
538
539
540 /* clear any slots in a GV which hold objects - except IO;
541  * called by sv_clean_objs() for each live GV */
542
543 static void
544 do_clean_named_objs(pTHX_ SV *const sv)
545 {
546     SV *obj;
547     assert(SvTYPE(sv) == SVt_PVGV);
548     assert(isGV_with_GP(sv));
549     if (!GvGP(sv))
550         return;
551
552     /* freeing GP entries may indirectly free the current GV;
553      * hold onto it while we mess with the GP slots */
554     SvREFCNT_inc(sv);
555
556     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
557         DEBUG_D((PerlIO_printf(Perl_debug_log,
558                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
559         GvSV(sv) = NULL;
560         SvREFCNT_dec_NN(obj);
561     }
562     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
563         DEBUG_D((PerlIO_printf(Perl_debug_log,
564                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
565         GvAV(sv) = NULL;
566         SvREFCNT_dec_NN(obj);
567     }
568     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
569         DEBUG_D((PerlIO_printf(Perl_debug_log,
570                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
571         GvHV(sv) = NULL;
572         SvREFCNT_dec_NN(obj);
573     }
574     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
575         DEBUG_D((PerlIO_printf(Perl_debug_log,
576                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
577         GvCV_set(sv, NULL);
578         SvREFCNT_dec_NN(obj);
579     }
580     SvREFCNT_dec_NN(sv); /* undo the inc above */
581 }
582
583 /* clear any IO slots in a GV which hold objects (except stderr, defout);
584  * called by sv_clean_objs() for each live GV */
585
586 static void
587 do_clean_named_io_objs(pTHX_ SV *const sv)
588 {
589     SV *obj;
590     assert(SvTYPE(sv) == SVt_PVGV);
591     assert(isGV_with_GP(sv));
592     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
593         return;
594
595     SvREFCNT_inc(sv);
596     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
597         DEBUG_D((PerlIO_printf(Perl_debug_log,
598                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
599         GvIOp(sv) = NULL;
600         SvREFCNT_dec_NN(obj);
601     }
602     SvREFCNT_dec_NN(sv); /* undo the inc above */
603 }
604
605 /* Void wrapper to pass to visit() */
606 static void
607 do_curse(pTHX_ SV * const sv) {
608     if ((PL_stderrgv && GvGP(PL_stderrgv) && (SV*)GvIO(PL_stderrgv) == sv)
609      || (PL_defoutgv && GvGP(PL_defoutgv) && (SV*)GvIO(PL_defoutgv) == sv))
610         return;
611     (void)curse(sv, 0);
612 }
613
614 /*
615 =for apidoc sv_clean_objs
616
617 Attempt to destroy all objects not yet freed.
618
619 =cut
620 */
621
622 void
623 Perl_sv_clean_objs(pTHX)
624 {
625     GV *olddef, *olderr;
626     PL_in_clean_objs = TRUE;
627     visit(do_clean_objs, SVf_ROK, SVf_ROK);
628     /* Some barnacles may yet remain, clinging to typeglobs.
629      * Run the non-IO destructors first: they may want to output
630      * error messages, close files etc */
631     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
632     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
633     /* And if there are some very tenacious barnacles clinging to arrays,
634        closures, or what have you.... */
635     visit(do_curse, SVs_OBJECT, SVs_OBJECT);
636     olddef = PL_defoutgv;
637     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
638     if (olddef && isGV_with_GP(olddef))
639         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
640     olderr = PL_stderrgv;
641     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
642     if (olderr && isGV_with_GP(olderr))
643         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
644     SvREFCNT_dec(olddef);
645     PL_in_clean_objs = FALSE;
646 }
647
648 /* called by sv_clean_all() for each live SV */
649
650 static void
651 do_clean_all(pTHX_ SV *const sv)
652 {
653     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
654         /* don't clean pid table and strtab */
655         return;
656     }
657     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%" UVxf "\n", PTR2UV(sv)) ));
658     SvFLAGS(sv) |= SVf_BREAK;
659     SvREFCNT_dec_NN(sv);
660 }
661
662 /*
663 =for apidoc sv_clean_all
664
665 Decrement the refcnt of each remaining SV, possibly triggering a
666 cleanup.  This function may have to be called multiple times to free
667 SVs which are in complex self-referential hierarchies.
668
669 =cut
670 */
671
672 I32
673 Perl_sv_clean_all(pTHX)
674 {
675     I32 cleaned;
676     PL_in_clean_all = TRUE;
677     cleaned = visit(do_clean_all, 0,0);
678     return cleaned;
679 }
680
681 /*
682   ARENASETS: a meta-arena implementation which separates arena-info
683   into struct arena_set, which contains an array of struct
684   arena_descs, each holding info for a single arena.  By separating
685   the meta-info from the arena, we recover the 1st slot, formerly
686   borrowed for list management.  The arena_set is about the size of an
687   arena, avoiding the needless malloc overhead of a naive linked-list.
688
689   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
690   memory in the last arena-set (1/2 on average).  In trade, we get
691   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
692   smaller types).  The recovery of the wasted space allows use of
693   small arenas for large, rare body types, by changing array* fields
694   in body_details_by_type[] below.
695 */
696 struct arena_desc {
697     char       *arena;          /* the raw storage, allocated aligned */
698     size_t      size;           /* its size ~4k typ */
699     svtype      utype;          /* bodytype stored in arena */
700 };
701
702 struct arena_set;
703
704 /* Get the maximum number of elements in set[] such that struct arena_set
705    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
706    therefore likely to be 1 aligned memory page.  */
707
708 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
709                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
710
711 struct arena_set {
712     struct arena_set* next;
713     unsigned int   set_size;    /* ie ARENAS_PER_SET */
714     unsigned int   curr;        /* index of next available arena-desc */
715     struct arena_desc set[ARENAS_PER_SET];
716 };
717
718 /*
719 =for apidoc sv_free_arenas
720
721 Deallocate the memory used by all arenas.  Note that all the individual SV
722 heads and bodies within the arenas must already have been freed.
723
724 =cut
725
726 */
727 void
728 Perl_sv_free_arenas(pTHX)
729 {
730     SV* sva;
731     SV* svanext;
732     unsigned int i;
733
734     /* Free arenas here, but be careful about fake ones.  (We assume
735        contiguity of the fake ones with the corresponding real ones.) */
736
737     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
738         svanext = MUTABLE_SV(SvANY(sva));
739         while (svanext && SvFAKE(svanext))
740             svanext = MUTABLE_SV(SvANY(svanext));
741
742         if (!SvFAKE(sva))
743             Safefree(sva);
744     }
745
746     {
747         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
748
749         while (aroot) {
750             struct arena_set *current = aroot;
751             i = aroot->curr;
752             while (i--) {
753                 assert(aroot->set[i].arena);
754                 Safefree(aroot->set[i].arena);
755             }
756             aroot = aroot->next;
757             Safefree(current);
758         }
759     }
760     PL_body_arenas = 0;
761
762     i = PERL_ARENA_ROOTS_SIZE;
763     while (i--)
764         PL_body_roots[i] = 0;
765
766     PL_sv_arenaroot = 0;
767     PL_sv_root = 0;
768 }
769
770 /*
771   Here are mid-level routines that manage the allocation of bodies out
772   of the various arenas.  There are 5 kinds of arenas:
773
774   1. SV-head arenas, which are discussed and handled above
775   2. regular body arenas
776   3. arenas for reduced-size bodies
777   4. Hash-Entry arenas
778
779   Arena types 2 & 3 are chained by body-type off an array of
780   arena-root pointers, which is indexed by svtype.  Some of the
781   larger/less used body types are malloced singly, since a large
782   unused block of them is wasteful.  Also, several svtypes dont have
783   bodies; the data fits into the sv-head itself.  The arena-root
784   pointer thus has a few unused root-pointers (which may be hijacked
785   later for arena types 4,5)
786
787   3 differs from 2 as an optimization; some body types have several
788   unused fields in the front of the structure (which are kept in-place
789   for consistency).  These bodies can be allocated in smaller chunks,
790   because the leading fields arent accessed.  Pointers to such bodies
791   are decremented to point at the unused 'ghost' memory, knowing that
792   the pointers are used with offsets to the real memory.
793
794
795 =head1 SV-Body Allocation
796
797 =cut
798
799 Allocation of SV-bodies is similar to SV-heads, differing as follows;
800 the allocation mechanism is used for many body types, so is somewhat
801 more complicated, it uses arena-sets, and has no need for still-live
802 SV detection.
803
804 At the outermost level, (new|del)_X*V macros return bodies of the
805 appropriate type.  These macros call either (new|del)_body_type or
806 (new|del)_body_allocated macro pairs, depending on specifics of the
807 type.  Most body types use the former pair, the latter pair is used to
808 allocate body types with "ghost fields".
809
810 "ghost fields" are fields that are unused in certain types, and
811 consequently don't need to actually exist.  They are declared because
812 they're part of a "base type", which allows use of functions as
813 methods.  The simplest examples are AVs and HVs, 2 aggregate types
814 which don't use the fields which support SCALAR semantics.
815
816 For these types, the arenas are carved up into appropriately sized
817 chunks, we thus avoid wasted memory for those unaccessed members.
818 When bodies are allocated, we adjust the pointer back in memory by the
819 size of the part not allocated, so it's as if we allocated the full
820 structure.  (But things will all go boom if you write to the part that
821 is "not there", because you'll be overwriting the last members of the
822 preceding structure in memory.)
823
824 We calculate the correction using the STRUCT_OFFSET macro on the first
825 member present.  If the allocated structure is smaller (no initial NV
826 actually allocated) then the net effect is to subtract the size of the NV
827 from the pointer, to return a new pointer as if an initial NV were actually
828 allocated.  (We were using structures named *_allocated for this, but
829 this turned out to be a subtle bug, because a structure without an NV
830 could have a lower alignment constraint, but the compiler is allowed to
831 optimised accesses based on the alignment constraint of the actual pointer
832 to the full structure, for example, using a single 64 bit load instruction
833 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
834
835 This is the same trick as was used for NV and IV bodies.  Ironically it
836 doesn't need to be used for NV bodies any more, because NV is now at
837 the start of the structure.  IV bodies, and also in some builds NV bodies,
838 don't need it either, because they are no longer allocated.
839
840 In turn, the new_body_* allocators call S_new_body(), which invokes
841 new_body_inline macro, which takes a lock, and takes a body off the
842 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
843 necessary to refresh an empty list.  Then the lock is released, and
844 the body is returned.
845
846 Perl_more_bodies allocates a new arena, and carves it up into an array of N
847 bodies, which it strings into a linked list.  It looks up arena-size
848 and body-size from the body_details table described below, thus
849 supporting the multiple body-types.
850
851 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
852 the (new|del)_X*V macros are mapped directly to malloc/free.
853
854 For each sv-type, struct body_details bodies_by_type[] carries
855 parameters which control these aspects of SV handling:
856
857 Arena_size determines whether arenas are used for this body type, and if
858 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
859 zero, forcing individual mallocs and frees.
860
861 Body_size determines how big a body is, and therefore how many fit into
862 each arena.  Offset carries the body-pointer adjustment needed for
863 "ghost fields", and is used in *_allocated macros.
864
865 But its main purpose is to parameterize info needed in
866 Perl_sv_upgrade().  The info here dramatically simplifies the function
867 vs the implementation in 5.8.8, making it table-driven.  All fields
868 are used for this, except for arena_size.
869
870 For the sv-types that have no bodies, arenas are not used, so those
871 PL_body_roots[sv_type] are unused, and can be overloaded.  In
872 something of a special case, SVt_NULL is borrowed for HE arenas;
873 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
874 bodies_by_type[SVt_NULL] slot is not used, as the table is not
875 available in hv.c.
876
877 */
878
879 struct body_details {
880     U8 body_size;       /* Size to allocate  */
881     U8 copy;            /* Size of structure to copy (may be shorter)  */
882     U8 offset;          /* Size of unalloced ghost fields to first alloced field*/
883     PERL_BITFIELD8 type : 4;        /* We have space for a sanity check. */
884     PERL_BITFIELD8 cant_upgrade : 1;/* Cannot upgrade this type */
885     PERL_BITFIELD8 zero_nv : 1;     /* zero the NV when upgrading from this */
886     PERL_BITFIELD8 arena : 1;       /* Allocated from an arena */
887     U32 arena_size;                 /* Size of arena to allocate */
888 };
889
890 #define HADNV FALSE
891 #define NONV TRUE
892
893
894 #ifdef PURIFY
895 /* With -DPURFIY we allocate everything directly, and don't use arenas.
896    This seems a rather elegant way to simplify some of the code below.  */
897 #define HASARENA FALSE
898 #else
899 #define HASARENA TRUE
900 #endif
901 #define NOARENA FALSE
902
903 /* Size the arenas to exactly fit a given number of bodies.  A count
904    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
905    simplifying the default.  If count > 0, the arena is sized to fit
906    only that many bodies, allowing arenas to be used for large, rare
907    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
908    limited by PERL_ARENA_SIZE, so we can safely oversize the
909    declarations.
910  */
911 #define FIT_ARENA0(body_size)                           \
912     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
913 #define FIT_ARENAn(count,body_size)                     \
914     ( count * body_size <= PERL_ARENA_SIZE)             \
915     ? count * body_size                                 \
916     : FIT_ARENA0 (body_size)
917 #define FIT_ARENA(count,body_size)                      \
918    (U32)(count                                          \
919     ? FIT_ARENAn (count, body_size)                     \
920     : FIT_ARENA0 (body_size))
921
922 /* Calculate the length to copy. Specifically work out the length less any
923    final padding the compiler needed to add.  See the comment in sv_upgrade
924    for why copying the padding proved to be a bug.  */
925
926 #define copy_length(type, last_member) \
927         STRUCT_OFFSET(type, last_member) \
928         + sizeof (((type*)SvANY((const SV *)0))->last_member)
929
930 static const struct body_details bodies_by_type[] = {
931     /* HEs use this offset for their arena.  */
932     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
933
934     /* IVs are in the head, so the allocation size is 0.  */
935     { 0,
936       sizeof(IV), /* This is used to copy out the IV body.  */
937       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
938       NOARENA /* IVS don't need an arena  */, 0
939     },
940
941 #if NVSIZE <= IVSIZE
942     { 0, sizeof(NV),
943       STRUCT_OFFSET(XPVNV, xnv_u),
944       SVt_NV, FALSE, HADNV, NOARENA, 0 },
945 #else
946     { sizeof(NV), sizeof(NV),
947       STRUCT_OFFSET(XPVNV, xnv_u),
948       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
949 #endif
950
951     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
952       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
953       + STRUCT_OFFSET(XPV, xpv_cur),
954       SVt_PV, FALSE, NONV, HASARENA,
955       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
956
957     { sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur),
958       copy_length(XINVLIST, is_offset) - STRUCT_OFFSET(XPV, xpv_cur),
959       + STRUCT_OFFSET(XPV, xpv_cur),
960       SVt_INVLIST, TRUE, NONV, HASARENA,
961       FIT_ARENA(0, sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur)) },
962
963     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
964       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
965       + STRUCT_OFFSET(XPV, xpv_cur),
966       SVt_PVIV, FALSE, NONV, HASARENA,
967       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
968
969     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
970       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
971       + STRUCT_OFFSET(XPV, xpv_cur),
972       SVt_PVNV, FALSE, HADNV, HASARENA,
973       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
974
975     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
976       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
977
978     { sizeof(regexp),
979       sizeof(regexp),
980       0,
981       SVt_REGEXP, TRUE, NONV, HASARENA,
982       FIT_ARENA(0, sizeof(regexp))
983     },
984
985     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
986       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
987     
988     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
989       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
990
991     { sizeof(XPVAV),
992       copy_length(XPVAV, xav_alloc),
993       0,
994       SVt_PVAV, TRUE, NONV, HASARENA,
995       FIT_ARENA(0, sizeof(XPVAV)) },
996
997     { sizeof(XPVHV),
998       copy_length(XPVHV, xhv_max),
999       0,
1000       SVt_PVHV, TRUE, NONV, HASARENA,
1001       FIT_ARENA(0, sizeof(XPVHV)) },
1002
1003     { sizeof(XPVCV),
1004       sizeof(XPVCV),
1005       0,
1006       SVt_PVCV, TRUE, NONV, HASARENA,
1007       FIT_ARENA(0, sizeof(XPVCV)) },
1008
1009     { sizeof(XPVFM),
1010       sizeof(XPVFM),
1011       0,
1012       SVt_PVFM, TRUE, NONV, NOARENA,
1013       FIT_ARENA(20, sizeof(XPVFM)) },
1014
1015     { sizeof(XPVIO),
1016       sizeof(XPVIO),
1017       0,
1018       SVt_PVIO, TRUE, NONV, HASARENA,
1019       FIT_ARENA(24, sizeof(XPVIO)) },
1020 };
1021
1022 #define new_body_allocated(sv_type)             \
1023     (void *)((char *)S_new_body(aTHX_ sv_type)  \
1024              - bodies_by_type[sv_type].offset)
1025
1026 /* return a thing to the free list */
1027
1028 #define del_body(thing, root)                           \
1029     STMT_START {                                        \
1030         void ** const thing_copy = (void **)thing;      \
1031         *thing_copy = *root;                            \
1032         *root = (void*)thing_copy;                      \
1033     } STMT_END
1034
1035 #ifdef PURIFY
1036 #if !(NVSIZE <= IVSIZE)
1037 #  define new_XNV()     safemalloc(sizeof(XPVNV))
1038 #endif
1039 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
1040 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
1041
1042 #define del_XPVGV(p)    safefree(p)
1043
1044 #else /* !PURIFY */
1045
1046 #if !(NVSIZE <= IVSIZE)
1047 #  define new_XNV()     new_body_allocated(SVt_NV)
1048 #endif
1049 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
1050 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
1051
1052 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
1053                                  &PL_body_roots[SVt_PVGV])
1054
1055 #endif /* PURIFY */
1056
1057 /* no arena for you! */
1058
1059 #define new_NOARENA(details) \
1060         safemalloc((details)->body_size + (details)->offset)
1061 #define new_NOARENAZ(details) \
1062         safecalloc((details)->body_size + (details)->offset, 1)
1063
1064 void *
1065 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1066                   const size_t arena_size)
1067 {
1068     void ** const root = &PL_body_roots[sv_type];
1069     struct arena_desc *adesc;
1070     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1071     unsigned int curr;
1072     char *start;
1073     const char *end;
1074     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1075 #if defined(DEBUGGING) && defined(PERL_GLOBAL_STRUCT)
1076     dVAR;
1077 #endif
1078 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1079     static bool done_sanity_check;
1080
1081     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1082      * variables like done_sanity_check. */
1083     if (!done_sanity_check) {
1084         unsigned int i = SVt_LAST;
1085
1086         done_sanity_check = TRUE;
1087
1088         while (i--)
1089             assert (bodies_by_type[i].type == i);
1090     }
1091 #endif
1092
1093     assert(arena_size);
1094
1095     /* may need new arena-set to hold new arena */
1096     if (!aroot || aroot->curr >= aroot->set_size) {
1097         struct arena_set *newroot;
1098         Newxz(newroot, 1, struct arena_set);
1099         newroot->set_size = ARENAS_PER_SET;
1100         newroot->next = aroot;
1101         aroot = newroot;
1102         PL_body_arenas = (void *) newroot;
1103         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1104     }
1105
1106     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1107     curr = aroot->curr++;
1108     adesc = &(aroot->set[curr]);
1109     assert(!adesc->arena);
1110     
1111     Newx(adesc->arena, good_arena_size, char);
1112     adesc->size = good_arena_size;
1113     adesc->utype = sv_type;
1114     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %" UVuf "\n",
1115                           curr, (void*)adesc->arena, (UV)good_arena_size));
1116
1117     start = (char *) adesc->arena;
1118
1119     /* Get the address of the byte after the end of the last body we can fit.
1120        Remember, this is integer division:  */
1121     end = start + good_arena_size / body_size * body_size;
1122
1123     /* computed count doesn't reflect the 1st slot reservation */
1124 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1125     DEBUG_m(PerlIO_printf(Perl_debug_log,
1126                           "arena %p end %p arena-size %d (from %d) type %d "
1127                           "size %d ct %d\n",
1128                           (void*)start, (void*)end, (int)good_arena_size,
1129                           (int)arena_size, sv_type, (int)body_size,
1130                           (int)good_arena_size / (int)body_size));
1131 #else
1132     DEBUG_m(PerlIO_printf(Perl_debug_log,
1133                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1134                           (void*)start, (void*)end,
1135                           (int)arena_size, sv_type, (int)body_size,
1136                           (int)good_arena_size / (int)body_size));
1137 #endif
1138     *root = (void *)start;
1139
1140     while (1) {
1141         /* Where the next body would start:  */
1142         char * const next = start + body_size;
1143
1144         if (next >= end) {
1145             /* This is the last body:  */
1146             assert(next == end);
1147
1148             *(void **)start = 0;
1149             return *root;
1150         }
1151
1152         *(void**) start = (void *)next;
1153         start = next;
1154     }
1155 }
1156
1157 /* grab a new thing from the free list, allocating more if necessary.
1158    The inline version is used for speed in hot routines, and the
1159    function using it serves the rest (unless PURIFY).
1160 */
1161 #define new_body_inline(xpv, sv_type) \
1162     STMT_START { \
1163         void ** const r3wt = &PL_body_roots[sv_type]; \
1164         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1165           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1166                                              bodies_by_type[sv_type].body_size,\
1167                                              bodies_by_type[sv_type].arena_size)); \
1168         *(r3wt) = *(void**)(xpv); \
1169     } STMT_END
1170
1171 #ifndef PURIFY
1172
1173 STATIC void *
1174 S_new_body(pTHX_ const svtype sv_type)
1175 {
1176     void *xpv;
1177     new_body_inline(xpv, sv_type);
1178     return xpv;
1179 }
1180
1181 #endif
1182
1183 static const struct body_details fake_rv =
1184     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1185
1186 /*
1187 =for apidoc sv_upgrade
1188
1189 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1190 SV, then copies across as much information as possible from the old body.
1191 It croaks if the SV is already in a more complex form than requested.  You
1192 generally want to use the C<SvUPGRADE> macro wrapper, which checks the type
1193 before calling C<sv_upgrade>, and hence does not croak.  See also
1194 C<L</svtype>>.
1195
1196 =cut
1197 */
1198
1199 void
1200 Perl_sv_upgrade(pTHX_ SV *const sv, svtype new_type)
1201 {
1202     void*       old_body;
1203     void*       new_body;
1204     const svtype old_type = SvTYPE(sv);
1205     const struct body_details *new_type_details;
1206     const struct body_details *old_type_details
1207         = bodies_by_type + old_type;
1208     SV *referent = NULL;
1209
1210     PERL_ARGS_ASSERT_SV_UPGRADE;
1211
1212     if (old_type == new_type)
1213         return;
1214
1215     /* This clause was purposefully added ahead of the early return above to
1216        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1217        inference by Nick I-S that it would fix other troublesome cases. See
1218        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1219
1220        Given that shared hash key scalars are no longer PVIV, but PV, there is
1221        no longer need to unshare so as to free up the IVX slot for its proper
1222        purpose. So it's safe to move the early return earlier.  */
1223
1224     if (new_type > SVt_PVMG && SvIsCOW(sv)) {
1225         sv_force_normal_flags(sv, 0);
1226     }
1227
1228     old_body = SvANY(sv);
1229
1230     /* Copying structures onto other structures that have been neatly zeroed
1231        has a subtle gotcha. Consider XPVMG
1232
1233        +------+------+------+------+------+-------+-------+
1234        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1235        +------+------+------+------+------+-------+-------+
1236        0      4      8     12     16     20      24      28
1237
1238        where NVs are aligned to 8 bytes, so that sizeof that structure is
1239        actually 32 bytes long, with 4 bytes of padding at the end:
1240
1241        +------+------+------+------+------+-------+-------+------+
1242        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1243        +------+------+------+------+------+-------+-------+------+
1244        0      4      8     12     16     20      24      28     32
1245
1246        so what happens if you allocate memory for this structure:
1247
1248        +------+------+------+------+------+-------+-------+------+------+...
1249        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1250        +------+------+------+------+------+-------+-------+------+------+...
1251        0      4      8     12     16     20      24      28     32     36
1252
1253        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1254        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1255        started out as zero once, but it's quite possible that it isn't. So now,
1256        rather than a nicely zeroed GP, you have it pointing somewhere random.
1257        Bugs ensue.
1258
1259        (In fact, GP ends up pointing at a previous GP structure, because the
1260        principle cause of the padding in XPVMG getting garbage is a copy of
1261        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1262        this happens to be moot because XPVGV has been re-ordered, with GP
1263        no longer after STASH)
1264
1265        So we are careful and work out the size of used parts of all the
1266        structures.  */
1267
1268     switch (old_type) {
1269     case SVt_NULL:
1270         break;
1271     case SVt_IV:
1272         if (SvROK(sv)) {
1273             referent = SvRV(sv);
1274             old_type_details = &fake_rv;
1275             if (new_type == SVt_NV)
1276                 new_type = SVt_PVNV;
1277         } else {
1278             if (new_type < SVt_PVIV) {
1279                 new_type = (new_type == SVt_NV)
1280                     ? SVt_PVNV : SVt_PVIV;
1281             }
1282         }
1283         break;
1284     case SVt_NV:
1285         if (new_type < SVt_PVNV) {
1286             new_type = SVt_PVNV;
1287         }
1288         break;
1289     case SVt_PV:
1290         assert(new_type > SVt_PV);
1291         STATIC_ASSERT_STMT(SVt_IV < SVt_PV);
1292         STATIC_ASSERT_STMT(SVt_NV < SVt_PV);
1293         break;
1294     case SVt_PVIV:
1295         break;
1296     case SVt_PVNV:
1297         break;
1298     case SVt_PVMG:
1299         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1300            there's no way that it can be safely upgraded, because perl.c
1301            expects to Safefree(SvANY(PL_mess_sv))  */
1302         assert(sv != PL_mess_sv);
1303         break;
1304     default:
1305         if (UNLIKELY(old_type_details->cant_upgrade))
1306             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1307                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1308     }
1309
1310     if (UNLIKELY(old_type > new_type))
1311         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1312                 (int)old_type, (int)new_type);
1313
1314     new_type_details = bodies_by_type + new_type;
1315
1316     SvFLAGS(sv) &= ~SVTYPEMASK;
1317     SvFLAGS(sv) |= new_type;
1318
1319     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1320        the return statements above will have triggered.  */
1321     assert (new_type != SVt_NULL);
1322     switch (new_type) {
1323     case SVt_IV:
1324         assert(old_type == SVt_NULL);
1325         SET_SVANY_FOR_BODYLESS_IV(sv);
1326         SvIV_set(sv, 0);
1327         return;
1328     case SVt_NV:
1329         assert(old_type == SVt_NULL);
1330 #if NVSIZE <= IVSIZE
1331         SET_SVANY_FOR_BODYLESS_NV(sv);
1332 #else
1333         SvANY(sv) = new_XNV();
1334 #endif
1335         SvNV_set(sv, 0);
1336         return;
1337     case SVt_PVHV:
1338     case SVt_PVAV:
1339         assert(new_type_details->body_size);
1340
1341 #ifndef PURIFY  
1342         assert(new_type_details->arena);
1343         assert(new_type_details->arena_size);
1344         /* This points to the start of the allocated area.  */
1345         new_body_inline(new_body, new_type);
1346         Zero(new_body, new_type_details->body_size, char);
1347         new_body = ((char *)new_body) - new_type_details->offset;
1348 #else
1349         /* We always allocated the full length item with PURIFY. To do this
1350            we fake things so that arena is false for all 16 types..  */
1351         new_body = new_NOARENAZ(new_type_details);
1352 #endif
1353         SvANY(sv) = new_body;
1354         if (new_type == SVt_PVAV) {
1355             AvMAX(sv)   = -1;
1356             AvFILLp(sv) = -1;
1357             AvREAL_only(sv);
1358             if (old_type_details->body_size) {
1359                 AvALLOC(sv) = 0;
1360             } else {
1361                 /* It will have been zeroed when the new body was allocated.
1362                    Lets not write to it, in case it confuses a write-back
1363                    cache.  */
1364             }
1365         } else {
1366             assert(!SvOK(sv));
1367             SvOK_off(sv);
1368 #ifndef NODEFAULT_SHAREKEYS
1369             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1370 #endif
1371             /* start with PERL_HASH_DEFAULT_HvMAX+1 buckets: */
1372             HvMAX(sv) = PERL_HASH_DEFAULT_HvMAX;
1373         }
1374
1375         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1376            The target created by newSVrv also is, and it can have magic.
1377            However, it never has SvPVX set.
1378         */
1379         if (old_type == SVt_IV) {
1380             assert(!SvROK(sv));
1381         } else if (old_type >= SVt_PV) {
1382             assert(SvPVX_const(sv) == 0);
1383         }
1384
1385         if (old_type >= SVt_PVMG) {
1386             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1387             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1388         } else {
1389             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1390         }
1391         break;
1392
1393     case SVt_PVIV:
1394         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1395            no route from NV to PVIV, NOK can never be true  */
1396         assert(!SvNOKp(sv));
1397         assert(!SvNOK(sv));
1398         /* FALLTHROUGH */
1399     case SVt_PVIO:
1400     case SVt_PVFM:
1401     case SVt_PVGV:
1402     case SVt_PVCV:
1403     case SVt_PVLV:
1404     case SVt_INVLIST:
1405     case SVt_REGEXP:
1406     case SVt_PVMG:
1407     case SVt_PVNV:
1408     case SVt_PV:
1409
1410         assert(new_type_details->body_size);
1411         /* We always allocated the full length item with PURIFY. To do this
1412            we fake things so that arena is false for all 16 types..  */
1413         if(new_type_details->arena) {
1414             /* This points to the start of the allocated area.  */
1415             new_body_inline(new_body, new_type);
1416             Zero(new_body, new_type_details->body_size, char);
1417             new_body = ((char *)new_body) - new_type_details->offset;
1418         } else {
1419             new_body = new_NOARENAZ(new_type_details);
1420         }
1421         SvANY(sv) = new_body;
1422
1423         if (old_type_details->copy) {
1424             /* There is now the potential for an upgrade from something without
1425                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1426             int offset = old_type_details->offset;
1427             int length = old_type_details->copy;
1428
1429             if (new_type_details->offset > old_type_details->offset) {
1430                 const int difference
1431                     = new_type_details->offset - old_type_details->offset;
1432                 offset += difference;
1433                 length -= difference;
1434             }
1435             assert (length >= 0);
1436                 
1437             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1438                  char);
1439         }
1440
1441 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1442         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1443          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1444          * NV slot, but the new one does, then we need to initialise the
1445          * freshly created NV slot with whatever the correct bit pattern is
1446          * for 0.0  */
1447         if (old_type_details->zero_nv && !new_type_details->zero_nv
1448             && !isGV_with_GP(sv))
1449             SvNV_set(sv, 0);
1450 #endif
1451
1452         if (UNLIKELY(new_type == SVt_PVIO)) {
1453             IO * const io = MUTABLE_IO(sv);
1454             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1455
1456             SvOBJECT_on(io);
1457             /* Clear the stashcache because a new IO could overrule a package
1458                name */
1459             DEBUG_o(Perl_deb(aTHX_ "sv_upgrade clearing PL_stashcache\n"));
1460             hv_clear(PL_stashcache);
1461
1462             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1463             IoPAGE_LEN(sv) = 60;
1464         }
1465         if (old_type < SVt_PV) {
1466             /* referent will be NULL unless the old type was SVt_IV emulating
1467                SVt_RV */
1468             sv->sv_u.svu_rv = referent;
1469         }
1470         break;
1471     default:
1472         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1473                    (unsigned long)new_type);
1474     }
1475
1476     /* if this is zero, this is a body-less SVt_NULL, SVt_IV/SVt_RV,
1477        and sometimes SVt_NV */
1478     if (old_type_details->body_size) {
1479 #ifdef PURIFY
1480         safefree(old_body);
1481 #else
1482         /* Note that there is an assumption that all bodies of types that
1483            can be upgraded came from arenas. Only the more complex non-
1484            upgradable types are allowed to be directly malloc()ed.  */
1485         assert(old_type_details->arena);
1486         del_body((void*)((char*)old_body + old_type_details->offset),
1487                  &PL_body_roots[old_type]);
1488 #endif
1489     }
1490 }
1491
1492 /*
1493 =for apidoc sv_backoff
1494
1495 Remove any string offset.  You should normally use the C<SvOOK_off> macro
1496 wrapper instead.
1497
1498 =cut
1499 */
1500
1501 /* prior to 5.000 stable, this function returned the new OOK-less SvFLAGS
1502    prior to 5.23.4 this function always returned 0
1503 */
1504
1505 void
1506 Perl_sv_backoff(SV *const sv)
1507 {
1508     STRLEN delta;
1509     const char * const s = SvPVX_const(sv);
1510
1511     PERL_ARGS_ASSERT_SV_BACKOFF;
1512
1513     assert(SvOOK(sv));
1514     assert(SvTYPE(sv) != SVt_PVHV);
1515     assert(SvTYPE(sv) != SVt_PVAV);
1516
1517     SvOOK_offset(sv, delta);
1518     
1519     SvLEN_set(sv, SvLEN(sv) + delta);
1520     SvPV_set(sv, SvPVX(sv) - delta);
1521     SvFLAGS(sv) &= ~SVf_OOK;
1522     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1523     return;
1524 }
1525
1526
1527 /* forward declaration */
1528 static void S_sv_uncow(pTHX_ SV * const sv, const U32 flags);
1529
1530
1531 /*
1532 =for apidoc sv_grow
1533
1534 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1535 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1536 Use the C<SvGROW> wrapper instead.
1537
1538 =cut
1539 */
1540
1541
1542 char *
1543 Perl_sv_grow(pTHX_ SV *const sv, STRLEN newlen)
1544 {
1545     char *s;
1546
1547     PERL_ARGS_ASSERT_SV_GROW;
1548
1549     if (SvROK(sv))
1550         sv_unref(sv);
1551     if (SvTYPE(sv) < SVt_PV) {
1552         sv_upgrade(sv, SVt_PV);
1553         s = SvPVX_mutable(sv);
1554     }
1555     else if (SvOOK(sv)) {       /* pv is offset? */
1556         sv_backoff(sv);
1557         s = SvPVX_mutable(sv);
1558         if (newlen > SvLEN(sv))
1559             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1560     }
1561     else
1562     {
1563         if (SvIsCOW(sv)) S_sv_uncow(aTHX_ sv, 0);
1564         s = SvPVX_mutable(sv);
1565     }
1566
1567 #ifdef PERL_COPY_ON_WRITE
1568     /* the new COW scheme uses SvPVX(sv)[SvLEN(sv)-1] (if spare)
1569      * to store the COW count. So in general, allocate one more byte than
1570      * asked for, to make it likely this byte is always spare: and thus
1571      * make more strings COW-able.
1572      *
1573      * Only increment if the allocation isn't MEM_SIZE_MAX,
1574      * otherwise it will wrap to 0.
1575      */
1576     if ( newlen != MEM_SIZE_MAX )
1577         newlen++;
1578 #endif
1579
1580 #if defined(PERL_USE_MALLOC_SIZE) && defined(Perl_safesysmalloc_size)
1581 #define PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1582 #endif
1583
1584     if (newlen > SvLEN(sv)) {           /* need more room? */
1585         STRLEN minlen = SvCUR(sv);
1586         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1587         if (newlen < minlen)
1588             newlen = minlen;
1589 #ifndef PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1590
1591         /* Don't round up on the first allocation, as odds are pretty good that
1592          * the initial request is accurate as to what is really needed */
1593         if (SvLEN(sv)) {
1594             STRLEN rounded = PERL_STRLEN_ROUNDUP(newlen);
1595             if (rounded > newlen)
1596                 newlen = rounded;
1597         }
1598 #endif
1599         if (SvLEN(sv) && s) {
1600             s = (char*)saferealloc(s, newlen);
1601         }
1602         else {
1603             s = (char*)safemalloc(newlen);
1604             if (SvPVX_const(sv) && SvCUR(sv)) {
1605                 Move(SvPVX_const(sv), s, SvCUR(sv), char);
1606             }
1607         }
1608         SvPV_set(sv, s);
1609 #ifdef PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1610         /* Do this here, do it once, do it right, and then we will never get
1611            called back into sv_grow() unless there really is some growing
1612            needed.  */
1613         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1614 #else
1615         SvLEN_set(sv, newlen);
1616 #endif
1617     }
1618     return s;
1619 }
1620
1621 /*
1622 =for apidoc sv_setiv
1623
1624 Copies an integer into the given SV, upgrading first if necessary.
1625 Does not handle 'set' magic.  See also C<L</sv_setiv_mg>>.
1626
1627 =cut
1628 */
1629
1630 void
1631 Perl_sv_setiv(pTHX_ SV *const sv, const IV i)
1632 {
1633     PERL_ARGS_ASSERT_SV_SETIV;
1634
1635     SV_CHECK_THINKFIRST_COW_DROP(sv);
1636     switch (SvTYPE(sv)) {
1637     case SVt_NULL:
1638     case SVt_NV:
1639         sv_upgrade(sv, SVt_IV);
1640         break;
1641     case SVt_PV:
1642         sv_upgrade(sv, SVt_PVIV);
1643         break;
1644
1645     case SVt_PVGV:
1646         if (!isGV_with_GP(sv))
1647             break;
1648         /* FALLTHROUGH */
1649     case SVt_PVAV:
1650     case SVt_PVHV:
1651     case SVt_PVCV:
1652     case SVt_PVFM:
1653     case SVt_PVIO:
1654         /* diag_listed_as: Can't coerce %s to %s in %s */
1655         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1656                    OP_DESC(PL_op));
1657         NOT_REACHED; /* NOTREACHED */
1658         break;
1659     default: NOOP;
1660     }
1661     (void)SvIOK_only(sv);                       /* validate number */
1662     SvIV_set(sv, i);
1663     SvTAINT(sv);
1664 }
1665
1666 /*
1667 =for apidoc sv_setiv_mg
1668
1669 Like C<sv_setiv>, but also handles 'set' magic.
1670
1671 =cut
1672 */
1673
1674 void
1675 Perl_sv_setiv_mg(pTHX_ SV *const sv, const IV i)
1676 {
1677     PERL_ARGS_ASSERT_SV_SETIV_MG;
1678
1679     sv_setiv(sv,i);
1680     SvSETMAGIC(sv);
1681 }
1682
1683 /*
1684 =for apidoc sv_setuv
1685
1686 Copies an unsigned integer into the given SV, upgrading first if necessary.
1687 Does not handle 'set' magic.  See also C<L</sv_setuv_mg>>.
1688
1689 =cut
1690 */
1691
1692 void
1693 Perl_sv_setuv(pTHX_ SV *const sv, const UV u)
1694 {
1695     PERL_ARGS_ASSERT_SV_SETUV;
1696
1697     /* With the if statement to ensure that integers are stored as IVs whenever
1698        possible:
1699        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1700
1701        without
1702        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1703
1704        If you wish to remove the following if statement, so that this routine
1705        (and its callers) always return UVs, please benchmark to see what the
1706        effect is. Modern CPUs may be different. Or may not :-)
1707     */
1708     if (u <= (UV)IV_MAX) {
1709        sv_setiv(sv, (IV)u);
1710        return;
1711     }
1712     sv_setiv(sv, 0);
1713     SvIsUV_on(sv);
1714     SvUV_set(sv, u);
1715 }
1716
1717 /*
1718 =for apidoc sv_setuv_mg
1719
1720 Like C<sv_setuv>, but also handles 'set' magic.
1721
1722 =cut
1723 */
1724
1725 void
1726 Perl_sv_setuv_mg(pTHX_ SV *const sv, const UV u)
1727 {
1728     PERL_ARGS_ASSERT_SV_SETUV_MG;
1729
1730     sv_setuv(sv,u);
1731     SvSETMAGIC(sv);
1732 }
1733
1734 /*
1735 =for apidoc sv_setnv
1736
1737 Copies a double into the given SV, upgrading first if necessary.
1738 Does not handle 'set' magic.  See also C<L</sv_setnv_mg>>.
1739
1740 =cut
1741 */
1742
1743 void
1744 Perl_sv_setnv(pTHX_ SV *const sv, const NV num)
1745 {
1746     PERL_ARGS_ASSERT_SV_SETNV;
1747
1748     SV_CHECK_THINKFIRST_COW_DROP(sv);
1749     switch (SvTYPE(sv)) {
1750     case SVt_NULL:
1751     case SVt_IV:
1752         sv_upgrade(sv, SVt_NV);
1753         break;
1754     case SVt_PV:
1755     case SVt_PVIV:
1756         sv_upgrade(sv, SVt_PVNV);
1757         break;
1758
1759     case SVt_PVGV:
1760         if (!isGV_with_GP(sv))
1761             break;
1762         /* FALLTHROUGH */
1763     case SVt_PVAV:
1764     case SVt_PVHV:
1765     case SVt_PVCV:
1766     case SVt_PVFM:
1767     case SVt_PVIO:
1768         /* diag_listed_as: Can't coerce %s to %s in %s */
1769         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1770                    OP_DESC(PL_op));
1771         NOT_REACHED; /* NOTREACHED */
1772         break;
1773     default: NOOP;
1774     }
1775     SvNV_set(sv, num);
1776     (void)SvNOK_only(sv);                       /* validate number */
1777     SvTAINT(sv);
1778 }
1779
1780 /*
1781 =for apidoc sv_setnv_mg
1782
1783 Like C<sv_setnv>, but also handles 'set' magic.
1784
1785 =cut
1786 */
1787
1788 void
1789 Perl_sv_setnv_mg(pTHX_ SV *const sv, const NV num)
1790 {
1791     PERL_ARGS_ASSERT_SV_SETNV_MG;
1792
1793     sv_setnv(sv,num);
1794     SvSETMAGIC(sv);
1795 }
1796
1797 /* Return a cleaned-up, printable version of sv, for non-numeric, or
1798  * not incrementable warning display.
1799  * Originally part of S_not_a_number().
1800  * The return value may be != tmpbuf.
1801  */
1802
1803 STATIC const char *
1804 S_sv_display(pTHX_ SV *const sv, char *tmpbuf, STRLEN tmpbuf_size) {
1805     const char *pv;
1806
1807      PERL_ARGS_ASSERT_SV_DISPLAY;
1808
1809      if (DO_UTF8(sv)) {
1810           SV *dsv = newSVpvs_flags("", SVs_TEMP);
1811           pv = sv_uni_display(dsv, sv, 32, UNI_DISPLAY_ISPRINT);
1812      } else {
1813           char *d = tmpbuf;
1814           const char * const limit = tmpbuf + tmpbuf_size - 8;
1815           /* each *s can expand to 4 chars + "...\0",
1816              i.e. need room for 8 chars */
1817         
1818           const char *s = SvPVX_const(sv);
1819           const char * const end = s + SvCUR(sv);
1820           for ( ; s < end && d < limit; s++ ) {
1821                int ch = *s & 0xFF;
1822                if (! isASCII(ch) && !isPRINT_LC(ch)) {
1823                     *d++ = 'M';
1824                     *d++ = '-';
1825
1826                     /* Map to ASCII "equivalent" of Latin1 */
1827                     ch = LATIN1_TO_NATIVE(NATIVE_TO_LATIN1(ch) & 127);
1828                }
1829                if (ch == '\n') {
1830                     *d++ = '\\';
1831                     *d++ = 'n';
1832                }
1833                else if (ch == '\r') {
1834                     *d++ = '\\';
1835                     *d++ = 'r';
1836                }
1837                else if (ch == '\f') {
1838                     *d++ = '\\';
1839                     *d++ = 'f';
1840                }
1841                else if (ch == '\\') {
1842                     *d++ = '\\';
1843                     *d++ = '\\';
1844                }
1845                else if (ch == '\0') {
1846                     *d++ = '\\';
1847                     *d++ = '0';
1848                }
1849                else if (isPRINT_LC(ch))
1850                     *d++ = ch;
1851                else {
1852                     *d++ = '^';
1853                     *d++ = toCTRL(ch);
1854                }
1855           }
1856           if (s < end) {
1857                *d++ = '.';
1858                *d++ = '.';
1859                *d++ = '.';
1860           }
1861           *d = '\0';
1862           pv = tmpbuf;
1863     }
1864
1865     return pv;
1866 }
1867
1868 /* Print an "isn't numeric" warning, using a cleaned-up,
1869  * printable version of the offending string
1870  */
1871
1872 STATIC void
1873 S_not_a_number(pTHX_ SV *const sv)
1874 {
1875      char tmpbuf[64];
1876      const char *pv;
1877
1878      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1879
1880      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1881
1882     if (PL_op)
1883         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1884                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1885                     "Argument \"%s\" isn't numeric in %s", pv,
1886                     OP_DESC(PL_op));
1887     else
1888         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1889                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1890                     "Argument \"%s\" isn't numeric", pv);
1891 }
1892
1893 STATIC void
1894 S_not_incrementable(pTHX_ SV *const sv) {
1895      char tmpbuf[64];
1896      const char *pv;
1897
1898      PERL_ARGS_ASSERT_NOT_INCREMENTABLE;
1899
1900      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1901
1902      Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1903                  "Argument \"%s\" treated as 0 in increment (++)", pv);
1904 }
1905
1906 /*
1907 =for apidoc looks_like_number
1908
1909 Test if the content of an SV looks like a number (or is a number).
1910 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1911 non-numeric warning), even if your C<atof()> doesn't grok them.  Get-magic is
1912 ignored.
1913
1914 =cut
1915 */
1916
1917 I32
1918 Perl_looks_like_number(pTHX_ SV *const sv)
1919 {
1920     const char *sbegin;
1921     STRLEN len;
1922     int numtype;
1923
1924     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1925
1926     if (SvPOK(sv) || SvPOKp(sv)) {
1927         sbegin = SvPV_nomg_const(sv, len);
1928     }
1929     else
1930         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1931     numtype = grok_number(sbegin, len, NULL);
1932     return ((numtype & IS_NUMBER_TRAILING)) ? 0 : numtype;
1933 }
1934
1935 STATIC bool
1936 S_glob_2number(pTHX_ GV * const gv)
1937 {
1938     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1939
1940     /* We know that all GVs stringify to something that is not-a-number,
1941         so no need to test that.  */
1942     if (ckWARN(WARN_NUMERIC))
1943     {
1944         SV *const buffer = sv_newmortal();
1945         gv_efullname3(buffer, gv, "*");
1946         not_a_number(buffer);
1947     }
1948     /* We just want something true to return, so that S_sv_2iuv_common
1949         can tail call us and return true.  */
1950     return TRUE;
1951 }
1952
1953 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1954    until proven guilty, assume that things are not that bad... */
1955
1956 /*
1957    NV_PRESERVES_UV:
1958
1959    As 64 bit platforms often have an NV that doesn't preserve all bits of
1960    an IV (an assumption perl has been based on to date) it becomes necessary
1961    to remove the assumption that the NV always carries enough precision to
1962    recreate the IV whenever needed, and that the NV is the canonical form.
1963    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1964    precision as a side effect of conversion (which would lead to insanity
1965    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1966    1) to distinguish between IV/UV/NV slots that have a valid conversion cached
1967       where precision was lost, and IV/UV/NV slots that have a valid conversion
1968       which has lost no precision
1969    2) to ensure that if a numeric conversion to one form is requested that
1970       would lose precision, the precise conversion (or differently
1971       imprecise conversion) is also performed and cached, to prevent
1972       requests for different numeric formats on the same SV causing
1973       lossy conversion chains. (lossless conversion chains are perfectly
1974       acceptable (still))
1975
1976
1977    flags are used:
1978    SvIOKp is true if the IV slot contains a valid value
1979    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1980    SvNOKp is true if the NV slot contains a valid value
1981    SvNOK  is true only if the NV value is accurate
1982
1983    so
1984    while converting from PV to NV, check to see if converting that NV to an
1985    IV(or UV) would lose accuracy over a direct conversion from PV to
1986    IV(or UV). If it would, cache both conversions, return NV, but mark
1987    SV as IOK NOKp (ie not NOK).
1988
1989    While converting from PV to IV, check to see if converting that IV to an
1990    NV would lose accuracy over a direct conversion from PV to NV. If it
1991    would, cache both conversions, flag similarly.
1992
1993    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1994    correctly because if IV & NV were set NV *always* overruled.
1995    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1996    changes - now IV and NV together means that the two are interchangeable:
1997    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1998
1999    The benefit of this is that operations such as pp_add know that if
2000    SvIOK is true for both left and right operands, then integer addition
2001    can be used instead of floating point (for cases where the result won't
2002    overflow). Before, floating point was always used, which could lead to
2003    loss of precision compared with integer addition.
2004
2005    * making IV and NV equal status should make maths accurate on 64 bit
2006      platforms
2007    * may speed up maths somewhat if pp_add and friends start to use
2008      integers when possible instead of fp. (Hopefully the overhead in
2009      looking for SvIOK and checking for overflow will not outweigh the
2010      fp to integer speedup)
2011    * will slow down integer operations (callers of SvIV) on "inaccurate"
2012      values, as the change from SvIOK to SvIOKp will cause a call into
2013      sv_2iv each time rather than a macro access direct to the IV slot
2014    * should speed up number->string conversion on integers as IV is
2015      favoured when IV and NV are equally accurate
2016
2017    ####################################################################
2018    You had better be using SvIOK_notUV if you want an IV for arithmetic:
2019    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
2020    On the other hand, SvUOK is true iff UV.
2021    ####################################################################
2022
2023    Your mileage will vary depending your CPU's relative fp to integer
2024    performance ratio.
2025 */
2026
2027 #ifndef NV_PRESERVES_UV
2028 #  define IS_NUMBER_UNDERFLOW_IV 1
2029 #  define IS_NUMBER_UNDERFLOW_UV 2
2030 #  define IS_NUMBER_IV_AND_UV    2
2031 #  define IS_NUMBER_OVERFLOW_IV  4
2032 #  define IS_NUMBER_OVERFLOW_UV  5
2033
2034 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
2035
2036 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
2037 STATIC int
2038 S_sv_2iuv_non_preserve(pTHX_ SV *const sv
2039 #  ifdef DEBUGGING
2040                        , I32 numtype
2041 #  endif
2042                        )
2043 {
2044     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
2045     PERL_UNUSED_CONTEXT;
2046
2047     DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_2iuv_non '%s', IV=0x%" UVxf " NV=%" NVgf " inttype=%" UVXf "\n", SvPVX_const(sv), SvIVX(sv), SvNVX(sv), (UV)numtype));
2048     if (SvNVX(sv) < (NV)IV_MIN) {
2049         (void)SvIOKp_on(sv);
2050         (void)SvNOK_on(sv);
2051         SvIV_set(sv, IV_MIN);
2052         return IS_NUMBER_UNDERFLOW_IV;
2053     }
2054     if (SvNVX(sv) > (NV)UV_MAX) {
2055         (void)SvIOKp_on(sv);
2056         (void)SvNOK_on(sv);
2057         SvIsUV_on(sv);
2058         SvUV_set(sv, UV_MAX);
2059         return IS_NUMBER_OVERFLOW_UV;
2060     }
2061     (void)SvIOKp_on(sv);
2062     (void)SvNOK_on(sv);
2063     /* Can't use strtol etc to convert this string.  (See truth table in
2064        sv_2iv  */
2065     if (SvNVX(sv) <= (UV)IV_MAX) {
2066         SvIV_set(sv, I_V(SvNVX(sv)));
2067         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2068             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
2069         } else {
2070             /* Integer is imprecise. NOK, IOKp */
2071         }
2072         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
2073     }
2074     SvIsUV_on(sv);
2075     SvUV_set(sv, U_V(SvNVX(sv)));
2076     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2077         if (SvUVX(sv) == UV_MAX) {
2078             /* As we know that NVs don't preserve UVs, UV_MAX cannot
2079                possibly be preserved by NV. Hence, it must be overflow.
2080                NOK, IOKp */
2081             return IS_NUMBER_OVERFLOW_UV;
2082         }
2083         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2084     } else {
2085         /* Integer is imprecise. NOK, IOKp */
2086     }
2087     return IS_NUMBER_OVERFLOW_IV;
2088 }
2089 #endif /* !NV_PRESERVES_UV*/
2090
2091 /* If numtype is infnan, set the NV of the sv accordingly.
2092  * If numtype is anything else, try setting the NV using Atof(PV). */
2093 #ifdef USING_MSVC6
2094 #  pragma warning(push)
2095 #  pragma warning(disable:4756;disable:4056)
2096 #endif
2097 static void
2098 S_sv_setnv(pTHX_ SV* sv, int numtype)
2099 {
2100     bool pok = cBOOL(SvPOK(sv));
2101     bool nok = FALSE;
2102 #ifdef NV_INF
2103     if ((numtype & IS_NUMBER_INFINITY)) {
2104         SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -NV_INF : NV_INF);
2105         nok = TRUE;
2106     } else
2107 #endif
2108 #ifdef NV_NAN
2109     if ((numtype & IS_NUMBER_NAN)) {
2110         SvNV_set(sv, NV_NAN);
2111         nok = TRUE;
2112     } else
2113 #endif
2114     if (pok) {
2115         SvNV_set(sv, Atof(SvPVX_const(sv)));
2116         /* Purposefully no true nok here, since we don't want to blow
2117          * away the possible IOK/UV of an existing sv. */
2118     }
2119     if (nok) {
2120         SvNOK_only(sv); /* No IV or UV please, this is pure infnan. */
2121         if (pok)
2122             SvPOK_on(sv); /* PV is okay, though. */
2123     }
2124 }
2125 #ifdef USING_MSVC6
2126 #  pragma warning(pop)
2127 #endif
2128
2129 STATIC bool
2130 S_sv_2iuv_common(pTHX_ SV *const sv)
2131 {
2132     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
2133
2134     if (SvNOKp(sv)) {
2135         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2136          * without also getting a cached IV/UV from it at the same time
2137          * (ie PV->NV conversion should detect loss of accuracy and cache
2138          * IV or UV at same time to avoid this. */
2139         /* IV-over-UV optimisation - choose to cache IV if possible */
2140
2141         if (SvTYPE(sv) == SVt_NV)
2142             sv_upgrade(sv, SVt_PVNV);
2143
2144         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2145         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2146            certainly cast into the IV range at IV_MAX, whereas the correct
2147            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2148            cases go to UV */
2149 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2150         if (Perl_isnan(SvNVX(sv))) {
2151             SvUV_set(sv, 0);
2152             SvIsUV_on(sv);
2153             return FALSE;
2154         }
2155 #endif
2156         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2157             SvIV_set(sv, I_V(SvNVX(sv)));
2158             if (SvNVX(sv) == (NV) SvIVX(sv)
2159 #ifndef NV_PRESERVES_UV
2160                 && SvIVX(sv) != IV_MIN /* avoid negating IV_MIN below */
2161                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2162                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2163                 /* Don't flag it as "accurately an integer" if the number
2164                    came from a (by definition imprecise) NV operation, and
2165                    we're outside the range of NV integer precision */
2166 #endif
2167                 ) {
2168                 if (SvNOK(sv))
2169                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2170                 else {
2171                     /* scalar has trailing garbage, eg "42a" */
2172                 }
2173                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2174                                       "0x%" UVxf " iv(%" NVgf " => %" IVdf ") (precise)\n",
2175                                       PTR2UV(sv),
2176                                       SvNVX(sv),
2177                                       SvIVX(sv)));
2178
2179             } else {
2180                 /* IV not precise.  No need to convert from PV, as NV
2181                    conversion would already have cached IV if it detected
2182                    that PV->IV would be better than PV->NV->IV
2183                    flags already correct - don't set public IOK.  */
2184                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2185                                       "0x%" UVxf " iv(%" NVgf " => %" IVdf ") (imprecise)\n",
2186                                       PTR2UV(sv),
2187                                       SvNVX(sv),
2188                                       SvIVX(sv)));
2189             }
2190             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2191                but the cast (NV)IV_MIN rounds to a the value less (more
2192                negative) than IV_MIN which happens to be equal to SvNVX ??
2193                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2194                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2195                (NV)UVX == NVX are both true, but the values differ. :-(
2196                Hopefully for 2s complement IV_MIN is something like
2197                0x8000000000000000 which will be exact. NWC */
2198         }
2199         else {
2200             SvUV_set(sv, U_V(SvNVX(sv)));
2201             if (
2202                 (SvNVX(sv) == (NV) SvUVX(sv))
2203 #ifndef  NV_PRESERVES_UV
2204                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2205                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2206                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2207                 /* Don't flag it as "accurately an integer" if the number
2208                    came from a (by definition imprecise) NV operation, and
2209                    we're outside the range of NV integer precision */
2210 #endif
2211                 && SvNOK(sv)
2212                 )
2213                 SvIOK_on(sv);
2214             SvIsUV_on(sv);
2215             DEBUG_c(PerlIO_printf(Perl_debug_log,
2216                                   "0x%" UVxf " 2iv(%" UVuf " => %" IVdf ") (as unsigned)\n",
2217                                   PTR2UV(sv),
2218                                   SvUVX(sv),
2219                                   SvUVX(sv)));
2220         }
2221     }
2222     else if (SvPOKp(sv)) {
2223         UV value;
2224         int numtype;
2225         const char *s = SvPVX_const(sv);
2226         const STRLEN cur = SvCUR(sv);
2227
2228         /* short-cut for a single digit string like "1" */
2229
2230         if (cur == 1) {
2231             char c = *s;
2232             if (isDIGIT(c)) {
2233                 if (SvTYPE(sv) < SVt_PVIV)
2234                     sv_upgrade(sv, SVt_PVIV);
2235                 (void)SvIOK_on(sv);
2236                 SvIV_set(sv, (IV)(c - '0'));
2237                 return FALSE;
2238             }
2239         }
2240
2241         numtype = grok_number(s, cur, &value);
2242         /* We want to avoid a possible problem when we cache an IV/ a UV which
2243            may be later translated to an NV, and the resulting NV is not
2244            the same as the direct translation of the initial string
2245            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2246            be careful to ensure that the value with the .456 is around if the
2247            NV value is requested in the future).
2248         
2249            This means that if we cache such an IV/a UV, we need to cache the
2250            NV as well.  Moreover, we trade speed for space, and do not
2251            cache the NV if we are sure it's not needed.
2252          */
2253
2254         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2255         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2256              == IS_NUMBER_IN_UV) {
2257             /* It's definitely an integer, only upgrade to PVIV */
2258             if (SvTYPE(sv) < SVt_PVIV)
2259                 sv_upgrade(sv, SVt_PVIV);
2260             (void)SvIOK_on(sv);
2261         } else if (SvTYPE(sv) < SVt_PVNV)
2262             sv_upgrade(sv, SVt_PVNV);
2263
2264         if ((numtype & (IS_NUMBER_INFINITY | IS_NUMBER_NAN))) {
2265             if (ckWARN(WARN_NUMERIC) && ((numtype & IS_NUMBER_TRAILING)))
2266                 not_a_number(sv);
2267             S_sv_setnv(aTHX_ sv, numtype);
2268             return FALSE;
2269         }
2270
2271         /* If NVs preserve UVs then we only use the UV value if we know that
2272            we aren't going to call atof() below. If NVs don't preserve UVs
2273            then the value returned may have more precision than atof() will
2274            return, even though value isn't perfectly accurate.  */
2275         if ((numtype & (IS_NUMBER_IN_UV
2276 #ifdef NV_PRESERVES_UV
2277                         | IS_NUMBER_NOT_INT
2278 #endif
2279             )) == IS_NUMBER_IN_UV) {
2280             /* This won't turn off the public IOK flag if it was set above  */
2281             (void)SvIOKp_on(sv);
2282
2283             if (!(numtype & IS_NUMBER_NEG)) {
2284                 /* positive */;
2285                 if (value <= (UV)IV_MAX) {
2286                     SvIV_set(sv, (IV)value);
2287                 } else {
2288                     /* it didn't overflow, and it was positive. */
2289                     SvUV_set(sv, value);
2290                     SvIsUV_on(sv);
2291                 }
2292             } else {
2293                 /* 2s complement assumption  */
2294                 if (value <= (UV)IV_MIN) {
2295                     SvIV_set(sv, value == (UV)IV_MIN
2296                                     ? IV_MIN : -(IV)value);
2297                 } else {
2298                     /* Too negative for an IV.  This is a double upgrade, but
2299                        I'm assuming it will be rare.  */
2300                     if (SvTYPE(sv) < SVt_PVNV)
2301                         sv_upgrade(sv, SVt_PVNV);
2302                     SvNOK_on(sv);
2303                     SvIOK_off(sv);
2304                     SvIOKp_on(sv);
2305                     SvNV_set(sv, -(NV)value);
2306                     SvIV_set(sv, IV_MIN);
2307                 }
2308             }
2309         }
2310         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2311            will be in the previous block to set the IV slot, and the next
2312            block to set the NV slot.  So no else here.  */
2313         
2314         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2315             != IS_NUMBER_IN_UV) {
2316             /* It wasn't an (integer that doesn't overflow the UV). */
2317             S_sv_setnv(aTHX_ sv, numtype);
2318
2319             if (! numtype && ckWARN(WARN_NUMERIC))
2320                 not_a_number(sv);
2321
2322             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%" UVxf " 2iv(%" NVgf ")\n",
2323                                   PTR2UV(sv), SvNVX(sv)));
2324
2325 #ifdef NV_PRESERVES_UV
2326             (void)SvIOKp_on(sv);
2327             (void)SvNOK_on(sv);
2328 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2329             if (Perl_isnan(SvNVX(sv))) {
2330                 SvUV_set(sv, 0);
2331                 SvIsUV_on(sv);
2332                 return FALSE;
2333             }
2334 #endif
2335             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2336                 SvIV_set(sv, I_V(SvNVX(sv)));
2337                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2338                     SvIOK_on(sv);
2339                 } else {
2340                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2341                 }
2342                 /* UV will not work better than IV */
2343             } else {
2344                 if (SvNVX(sv) > (NV)UV_MAX) {
2345                     SvIsUV_on(sv);
2346                     /* Integer is inaccurate. NOK, IOKp, is UV */
2347                     SvUV_set(sv, UV_MAX);
2348                 } else {
2349                     SvUV_set(sv, U_V(SvNVX(sv)));
2350                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2351                        NV preservse UV so can do correct comparison.  */
2352                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2353                         SvIOK_on(sv);
2354                     } else {
2355                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2356                     }
2357                 }
2358                 SvIsUV_on(sv);
2359             }
2360 #else /* NV_PRESERVES_UV */
2361             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2362                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2363                 /* The IV/UV slot will have been set from value returned by
2364                    grok_number above.  The NV slot has just been set using
2365                    Atof.  */
2366                 SvNOK_on(sv);
2367                 assert (SvIOKp(sv));
2368             } else {
2369                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2370                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2371                     /* Small enough to preserve all bits. */
2372                     (void)SvIOKp_on(sv);
2373                     SvNOK_on(sv);
2374                     SvIV_set(sv, I_V(SvNVX(sv)));
2375                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2376                         SvIOK_on(sv);
2377                     /* Assumption: first non-preserved integer is < IV_MAX,
2378                        this NV is in the preserved range, therefore: */
2379                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2380                           < (UV)IV_MAX)) {
2381                         Perl_croak(aTHX_ "sv_2iv assumed (U_V(fabs((double)SvNVX(sv))) < (UV)IV_MAX) but SvNVX(sv)=%" NVgf " U_V is 0x%" UVxf ", IV_MAX is 0x%" UVxf "\n", SvNVX(sv), U_V(SvNVX(sv)), (UV)IV_MAX);
2382                     }
2383                 } else {
2384                     /* IN_UV NOT_INT
2385                          0      0       already failed to read UV.
2386                          0      1       already failed to read UV.
2387                          1      0       you won't get here in this case. IV/UV
2388                                         slot set, public IOK, Atof() unneeded.
2389                          1      1       already read UV.
2390                        so there's no point in sv_2iuv_non_preserve() attempting
2391                        to use atol, strtol, strtoul etc.  */
2392 #  ifdef DEBUGGING
2393                     sv_2iuv_non_preserve (sv, numtype);
2394 #  else
2395                     sv_2iuv_non_preserve (sv);
2396 #  endif
2397                 }
2398             }
2399 #endif /* NV_PRESERVES_UV */
2400         /* It might be more code efficient to go through the entire logic above
2401            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2402            gets complex and potentially buggy, so more programmer efficient
2403            to do it this way, by turning off the public flags:  */
2404         if (!numtype)
2405             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2406         }
2407     }
2408     else  {
2409         if (isGV_with_GP(sv))
2410             return glob_2number(MUTABLE_GV(sv));
2411
2412         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2413                 report_uninit(sv);
2414         if (SvTYPE(sv) < SVt_IV)
2415             /* Typically the caller expects that sv_any is not NULL now.  */
2416             sv_upgrade(sv, SVt_IV);
2417         /* Return 0 from the caller.  */
2418         return TRUE;
2419     }
2420     return FALSE;
2421 }
2422
2423 /*
2424 =for apidoc sv_2iv_flags
2425
2426 Return the integer value of an SV, doing any necessary string
2427 conversion.  If C<flags> has the C<SV_GMAGIC> bit set, does an C<mg_get()> first.
2428 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2429
2430 =cut
2431 */
2432
2433 IV
2434 Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags)
2435 {
2436     PERL_ARGS_ASSERT_SV_2IV_FLAGS;
2437
2438     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2439          && SvTYPE(sv) != SVt_PVFM);
2440
2441     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2442         mg_get(sv);
2443
2444     if (SvROK(sv)) {
2445         if (SvAMAGIC(sv)) {
2446             SV * tmpstr;
2447             if (flags & SV_SKIP_OVERLOAD)
2448                 return 0;
2449             tmpstr = AMG_CALLunary(sv, numer_amg);
2450             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2451                 return SvIV(tmpstr);
2452             }
2453         }
2454         return PTR2IV(SvRV(sv));
2455     }
2456
2457     if (SvVALID(sv) || isREGEXP(sv)) {
2458         /* FBMs use the space for SvIVX and SvNVX for other purposes, so
2459            must not let them cache IVs.
2460            In practice they are extremely unlikely to actually get anywhere
2461            accessible by user Perl code - the only way that I'm aware of is when
2462            a constant subroutine which is used as the second argument to index.
2463
2464            Regexps have no SvIVX and SvNVX fields.
2465         */
2466         assert(SvPOKp(sv));
2467         {
2468             UV value;
2469             const char * const ptr =
2470                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2471             const int numtype
2472                 = grok_number(ptr, SvCUR(sv), &value);
2473
2474             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2475                 == IS_NUMBER_IN_UV) {
2476                 /* It's definitely an integer */
2477                 if (numtype & IS_NUMBER_NEG) {
2478                     if (value < (UV)IV_MIN)
2479                         return -(IV)value;
2480                 } else {
2481                     if (value < (UV)IV_MAX)
2482                         return (IV)value;
2483                 }
2484             }
2485
2486             /* Quite wrong but no good choices. */
2487             if ((numtype & IS_NUMBER_INFINITY)) {
2488                 return (numtype & IS_NUMBER_NEG) ? IV_MIN : IV_MAX;
2489             } else if ((numtype & IS_NUMBER_NAN)) {
2490                 return 0; /* So wrong. */
2491             }
2492
2493             if (!numtype) {
2494                 if (ckWARN(WARN_NUMERIC))
2495                     not_a_number(sv);
2496             }
2497             return I_V(Atof(ptr));
2498         }
2499     }
2500
2501     if (SvTHINKFIRST(sv)) {
2502         if (SvREADONLY(sv) && !SvOK(sv)) {
2503             if (ckWARN(WARN_UNINITIALIZED))
2504                 report_uninit(sv);
2505             return 0;
2506         }
2507     }
2508
2509     if (!SvIOKp(sv)) {
2510         if (S_sv_2iuv_common(aTHX_ sv))
2511             return 0;
2512     }
2513
2514     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%" UVxf " 2iv(%" IVdf ")\n",
2515         PTR2UV(sv),SvIVX(sv)));
2516     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2517 }
2518
2519 /*
2520 =for apidoc sv_2uv_flags
2521
2522 Return the unsigned integer value of an SV, doing any necessary string
2523 conversion.  If C<flags> has the C<SV_GMAGIC> bit set, does an C<mg_get()> first.
2524 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2525
2526 =cut
2527 */
2528
2529 UV
2530 Perl_sv_2uv_flags(pTHX_ SV *const sv, const I32 flags)
2531 {
2532     PERL_ARGS_ASSERT_SV_2UV_FLAGS;
2533
2534     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2535         mg_get(sv);
2536
2537     if (SvROK(sv)) {
2538         if (SvAMAGIC(sv)) {
2539             SV *tmpstr;
2540             if (flags & SV_SKIP_OVERLOAD)
2541                 return 0;
2542             tmpstr = AMG_CALLunary(sv, numer_amg);
2543             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2544                 return SvUV(tmpstr);
2545             }
2546         }
2547         return PTR2UV(SvRV(sv));
2548     }
2549
2550     if (SvVALID(sv) || isREGEXP(sv)) {
2551         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2552            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  
2553            Regexps have no SvIVX and SvNVX fields. */
2554         assert(SvPOKp(sv));
2555         {
2556             UV value;
2557             const char * const ptr =
2558                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2559             const int numtype
2560                 = grok_number(ptr, SvCUR(sv), &value);
2561
2562             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2563                 == IS_NUMBER_IN_UV) {
2564                 /* It's definitely an integer */
2565                 if (!(numtype & IS_NUMBER_NEG))
2566                     return value;
2567             }
2568
2569             /* Quite wrong but no good choices. */
2570             if ((numtype & IS_NUMBER_INFINITY)) {
2571                 return UV_MAX; /* So wrong. */
2572             } else if ((numtype & IS_NUMBER_NAN)) {
2573                 return 0; /* So wrong. */
2574             }
2575
2576             if (!numtype) {
2577                 if (ckWARN(WARN_NUMERIC))
2578                     not_a_number(sv);
2579             }
2580             return U_V(Atof(ptr));
2581         }
2582     }
2583
2584     if (SvTHINKFIRST(sv)) {
2585         if (SvREADONLY(sv) && !SvOK(sv)) {
2586             if (ckWARN(WARN_UNINITIALIZED))
2587                 report_uninit(sv);
2588             return 0;
2589         }
2590     }
2591
2592     if (!SvIOKp(sv)) {
2593         if (S_sv_2iuv_common(aTHX_ sv))
2594             return 0;
2595     }
2596
2597     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%" UVxf " 2uv(%" UVuf ")\n",
2598                           PTR2UV(sv),SvUVX(sv)));
2599     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2600 }
2601
2602 /*
2603 =for apidoc sv_2nv_flags
2604
2605 Return the num value of an SV, doing any necessary string or integer
2606 conversion.  If C<flags> has the C<SV_GMAGIC> bit set, does an C<mg_get()> first.
2607 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2608
2609 =cut
2610 */
2611
2612 NV
2613 Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags)
2614 {
2615     PERL_ARGS_ASSERT_SV_2NV_FLAGS;
2616
2617     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2618          && SvTYPE(sv) != SVt_PVFM);
2619     if (SvGMAGICAL(sv) || SvVALID(sv) || isREGEXP(sv)) {
2620         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2621            the same flag bit as SVf_IVisUV, so must not let them cache NVs.
2622            Regexps have no SvIVX and SvNVX fields.  */
2623         const char *ptr;
2624         if (flags & SV_GMAGIC)
2625             mg_get(sv);
2626         if (SvNOKp(sv))
2627             return SvNVX(sv);
2628         if (SvPOKp(sv) && !SvIOKp(sv)) {
2629             ptr = SvPVX_const(sv);
2630             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2631                 !grok_number(ptr, SvCUR(sv), NULL))
2632                 not_a_number(sv);
2633             return Atof(ptr);
2634         }
2635         if (SvIOKp(sv)) {
2636             if (SvIsUV(sv))
2637                 return (NV)SvUVX(sv);
2638             else
2639                 return (NV)SvIVX(sv);
2640         }
2641         if (SvROK(sv)) {
2642             goto return_rok;
2643         }
2644         assert(SvTYPE(sv) >= SVt_PVMG);
2645         /* This falls through to the report_uninit near the end of the
2646            function. */
2647     } else if (SvTHINKFIRST(sv)) {
2648         if (SvROK(sv)) {
2649         return_rok:
2650             if (SvAMAGIC(sv)) {
2651                 SV *tmpstr;
2652                 if (flags & SV_SKIP_OVERLOAD)
2653                     return 0;
2654                 tmpstr = AMG_CALLunary(sv, numer_amg);
2655                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2656                     return SvNV(tmpstr);
2657                 }
2658             }
2659             return PTR2NV(SvRV(sv));
2660         }
2661         if (SvREADONLY(sv) && !SvOK(sv)) {
2662             if (ckWARN(WARN_UNINITIALIZED))
2663                 report_uninit(sv);
2664             return 0.0;
2665         }
2666     }
2667     if (SvTYPE(sv) < SVt_NV) {
2668         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2669         sv_upgrade(sv, SVt_NV);
2670         DEBUG_c({
2671             STORE_LC_NUMERIC_UNDERLYING_SET_STANDARD();
2672             PerlIO_printf(Perl_debug_log,
2673                           "0x%" UVxf " num(%" NVgf ")\n",
2674                           PTR2UV(sv), SvNVX(sv));
2675             RESTORE_LC_NUMERIC_UNDERLYING();
2676         });
2677     }
2678     else if (SvTYPE(sv) < SVt_PVNV)
2679         sv_upgrade(sv, SVt_PVNV);
2680     if (SvNOKp(sv)) {
2681         return SvNVX(sv);
2682     }
2683     if (SvIOKp(sv)) {
2684         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2685 #ifdef NV_PRESERVES_UV
2686         if (SvIOK(sv))
2687             SvNOK_on(sv);
2688         else
2689             SvNOKp_on(sv);
2690 #else
2691         /* Only set the public NV OK flag if this NV preserves the IV  */
2692         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2693         if (SvIOK(sv) &&
2694             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2695                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2696             SvNOK_on(sv);
2697         else
2698             SvNOKp_on(sv);
2699 #endif
2700     }
2701     else if (SvPOKp(sv)) {
2702         UV value;
2703         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2704         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2705             not_a_number(sv);
2706 #ifdef NV_PRESERVES_UV
2707         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2708             == IS_NUMBER_IN_UV) {
2709             /* It's definitely an integer */
2710             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2711         } else {
2712             S_sv_setnv(aTHX_ sv, numtype);
2713         }
2714         if (numtype)
2715             SvNOK_on(sv);
2716         else
2717             SvNOKp_on(sv);
2718 #else
2719         SvNV_set(sv, Atof(SvPVX_const(sv)));
2720         /* Only set the public NV OK flag if this NV preserves the value in
2721            the PV at least as well as an IV/UV would.
2722            Not sure how to do this 100% reliably. */
2723         /* if that shift count is out of range then Configure's test is
2724            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2725            UV_BITS */
2726         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2727             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2728             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2729         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2730             /* Can't use strtol etc to convert this string, so don't try.
2731                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2732             SvNOK_on(sv);
2733         } else {
2734             /* value has been set.  It may not be precise.  */
2735             if ((numtype & IS_NUMBER_NEG) && (value >= (UV)IV_MIN)) {
2736                 /* 2s complement assumption for (UV)IV_MIN  */
2737                 SvNOK_on(sv); /* Integer is too negative.  */
2738             } else {
2739                 SvNOKp_on(sv);
2740                 SvIOKp_on(sv);
2741
2742                 if (numtype & IS_NUMBER_NEG) {
2743                     /* -IV_MIN is undefined, but we should never reach
2744                      * this point with both IS_NUMBER_NEG and value ==
2745                      * (UV)IV_MIN */
2746                     assert(value != (UV)IV_MIN);
2747                     SvIV_set(sv, -(IV)value);
2748                 } else if (value <= (UV)IV_MAX) {
2749                     SvIV_set(sv, (IV)value);
2750                 } else {
2751                     SvUV_set(sv, value);
2752                     SvIsUV_on(sv);
2753                 }
2754
2755                 if (numtype & IS_NUMBER_NOT_INT) {
2756                     /* I believe that even if the original PV had decimals,
2757                        they are lost beyond the limit of the FP precision.
2758                        However, neither is canonical, so both only get p
2759                        flags.  NWC, 2000/11/25 */
2760                     /* Both already have p flags, so do nothing */
2761                 } else {
2762                     const NV nv = SvNVX(sv);
2763                     /* XXX should this spot have NAN_COMPARE_BROKEN, too? */
2764                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2765                         if (SvIVX(sv) == I_V(nv)) {
2766                             SvNOK_on(sv);
2767                         } else {
2768                             /* It had no "." so it must be integer.  */
2769                         }
2770                         SvIOK_on(sv);
2771                     } else {
2772                         /* between IV_MAX and NV(UV_MAX).
2773                            Could be slightly > UV_MAX */
2774
2775                         if (numtype & IS_NUMBER_NOT_INT) {
2776                             /* UV and NV both imprecise.  */
2777                         } else {
2778                             const UV nv_as_uv = U_V(nv);
2779
2780                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2781                                 SvNOK_on(sv);
2782                             }
2783                             SvIOK_on(sv);
2784                         }
2785                     }
2786                 }
2787             }
2788         }
2789         /* It might be more code efficient to go through the entire logic above
2790            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2791            gets complex and potentially buggy, so more programmer efficient
2792            to do it this way, by turning off the public flags:  */
2793         if (!numtype)
2794             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2795 #endif /* NV_PRESERVES_UV */
2796     }
2797     else  {
2798         if (isGV_with_GP(sv)) {
2799             glob_2number(MUTABLE_GV(sv));
2800             return 0.0;
2801         }
2802
2803         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2804             report_uninit(sv);
2805         assert (SvTYPE(sv) >= SVt_NV);
2806         /* Typically the caller expects that sv_any is not NULL now.  */
2807         /* XXX Ilya implies that this is a bug in callers that assume this
2808            and ideally should be fixed.  */
2809         return 0.0;
2810     }
2811     DEBUG_c({
2812         STORE_LC_NUMERIC_UNDERLYING_SET_STANDARD();
2813         PerlIO_printf(Perl_debug_log, "0x%" UVxf " 2nv(%" NVgf ")\n",
2814                       PTR2UV(sv), SvNVX(sv));
2815         RESTORE_LC_NUMERIC_UNDERLYING();
2816     });
2817     return SvNVX(sv);
2818 }
2819
2820 /*
2821 =for apidoc sv_2num
2822
2823 Return an SV with the numeric value of the source SV, doing any necessary
2824 reference or overload conversion.  The caller is expected to have handled
2825 get-magic already.
2826
2827 =cut
2828 */
2829
2830 SV *
2831 Perl_sv_2num(pTHX_ SV *const sv)
2832 {
2833     PERL_ARGS_ASSERT_SV_2NUM;
2834
2835     if (!SvROK(sv))
2836         return sv;
2837     if (SvAMAGIC(sv)) {
2838         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2839         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2840         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2841             return sv_2num(tmpsv);
2842     }
2843     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2844 }
2845
2846 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2847  * UV as a string towards the end of buf, and return pointers to start and
2848  * end of it.
2849  *
2850  * We assume that buf is at least TYPE_CHARS(UV) long.
2851  */
2852
2853 static char *
2854 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2855 {
2856     char *ptr = buf + TYPE_CHARS(UV);
2857     char * const ebuf = ptr;
2858     int sign;
2859
2860     PERL_ARGS_ASSERT_UIV_2BUF;
2861
2862     if (is_uv)
2863         sign = 0;
2864     else if (iv >= 0) {
2865         uv = iv;
2866         sign = 0;
2867     } else {
2868         uv = (iv == IV_MIN) ? (UV)iv : (UV)(-iv);
2869         sign = 1;
2870     }
2871     do {
2872         *--ptr = '0' + (char)(uv % 10);
2873     } while (uv /= 10);
2874     if (sign)
2875         *--ptr = '-';
2876     *peob = ebuf;
2877     return ptr;
2878 }
2879
2880 /* Helper for sv_2pv_flags and sv_vcatpvfn_flags.  If the NV is an
2881  * infinity or a not-a-number, writes the appropriate strings to the
2882  * buffer, including a zero byte.  On success returns the written length,
2883  * excluding the zero byte, on failure (not an infinity, not a nan)
2884  * returns zero, assert-fails on maxlen being too short.
2885  *
2886  * XXX for "Inf", "-Inf", and "NaN", we could have three read-only
2887  * shared string constants we point to, instead of generating a new
2888  * string for each instance. */
2889 STATIC size_t
2890 S_infnan_2pv(NV nv, char* buffer, size_t maxlen, char plus) {
2891     char* s = buffer;
2892     assert(maxlen >= 4);
2893     if (Perl_isinf(nv)) {
2894         if (nv < 0) {
2895             if (maxlen < 5) /* "-Inf\0"  */
2896                 return 0;
2897             *s++ = '-';
2898         } else if (plus) {
2899             *s++ = '+';
2900         }
2901         *s++ = 'I';
2902         *s++ = 'n';
2903         *s++ = 'f';
2904     }
2905     else if (Perl_isnan(nv)) {
2906         *s++ = 'N';
2907         *s++ = 'a';
2908         *s++ = 'N';
2909         /* XXX optionally output the payload mantissa bits as
2910          * "(unsigned)" (to match the nan("...") C99 function,
2911          * or maybe as "(0xhhh...)"  would make more sense...
2912          * provide a format string so that the user can decide?
2913          * NOTE: would affect the maxlen and assert() logic.*/
2914     }
2915     else {
2916       return 0;
2917     }
2918     assert((s == buffer + 3) || (s == buffer + 4));
2919     *s = 0;
2920     return s - buffer;
2921 }
2922
2923 /*
2924 =for apidoc sv_2pv_flags
2925
2926 Returns a pointer to the string value of an SV, and sets C<*lp> to its length.
2927 If flags has the C<SV_GMAGIC> bit set, does an C<mg_get()> first.  Coerces C<sv> to a
2928 string if necessary.  Normally invoked via the C<SvPV_flags> macro.
2929 C<sv_2pv()> and C<sv_2pv_nomg> usually end up here too.
2930
2931 =cut
2932 */
2933
2934 char *
2935 Perl_sv_2pv_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
2936 {
2937     char *s;
2938
2939     PERL_ARGS_ASSERT_SV_2PV_FLAGS;
2940
2941     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2942          && SvTYPE(sv) != SVt_PVFM);
2943     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2944         mg_get(sv);
2945     if (SvROK(sv)) {
2946         if (SvAMAGIC(sv)) {
2947             SV *tmpstr;
2948             if (flags & SV_SKIP_OVERLOAD)
2949                 return NULL;
2950             tmpstr = AMG_CALLunary(sv, string_amg);
2951             TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2952             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2953                 /* Unwrap this:  */
2954                 /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2955                  */
2956
2957                 char *pv;
2958                 if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2959                     if (flags & SV_CONST_RETURN) {
2960                         pv = (char *) SvPVX_const(tmpstr);
2961                     } else {
2962                         pv = (flags & SV_MUTABLE_RETURN)
2963                             ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2964                     }
2965                     if (lp)
2966                         *lp = SvCUR(tmpstr);
2967                 } else {
2968                     pv = sv_2pv_flags(tmpstr, lp, flags);
2969                 }
2970                 if (SvUTF8(tmpstr))
2971                     SvUTF8_on(sv);
2972                 else
2973                     SvUTF8_off(sv);
2974                 return pv;
2975             }
2976         }
2977         {
2978             STRLEN len;
2979             char *retval;
2980             char *buffer;
2981             SV *const referent = SvRV(sv);
2982
2983             if (!referent) {
2984                 len = 7;
2985                 retval = buffer = savepvn("NULLREF", len);
2986             } else if (SvTYPE(referent) == SVt_REGEXP &&
2987                        (!(PL_curcop->cop_hints & HINT_NO_AMAGIC) ||
2988                         amagic_is_enabled(string_amg))) {
2989                 REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2990
2991                 assert(re);
2992                         
2993                 /* If the regex is UTF-8 we want the containing scalar to
2994                    have an UTF-8 flag too */
2995                 if (RX_UTF8(re))
2996                     SvUTF8_on(sv);
2997                 else
2998                     SvUTF8_off(sv);     
2999
3000                 if (lp)
3001                     *lp = RX_WRAPLEN(re);
3002  
3003                 return RX_WRAPPED(re);
3004             } else {
3005                 const char *const typestr = sv_reftype(referent, 0);
3006                 const STRLEN typelen = strlen(typestr);
3007                 UV addr = PTR2UV(referent);
3008                 const char *stashname = NULL;
3009                 STRLEN stashnamelen = 0; /* hush, gcc */
3010                 const char *buffer_end;
3011
3012                 if (SvOBJECT(referent)) {
3013                     const HEK *const name = HvNAME_HEK(SvSTASH(referent));
3014
3015                     if (name) {
3016                         stashname = HEK_KEY(name);
3017                         stashnamelen = HEK_LEN(name);
3018
3019                         if (HEK_UTF8(name)) {
3020                             SvUTF8_on(sv);
3021                         } else {
3022                             SvUTF8_off(sv);
3023                         }
3024                     } else {
3025                         stashname = "__ANON__";
3026                         stashnamelen = 8;
3027                     }
3028                     len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
3029                         + 2 * sizeof(UV) + 2 /* )\0 */;
3030                 } else {
3031                     len = typelen + 3 /* (0x */
3032                         + 2 * sizeof(UV) + 2 /* )\0 */;
3033                 }
3034
3035                 Newx(buffer, len, char);
3036                 buffer_end = retval = buffer + len;
3037
3038                 /* Working backwards  */
3039                 *--retval = '\0';
3040                 *--retval = ')';
3041                 do {
3042                     *--retval = PL_hexdigit[addr & 15];
3043                 } while (addr >>= 4);
3044                 *--retval = 'x';
3045                 *--retval = '0';
3046                 *--retval = '(';
3047
3048                 retval -= typelen;
3049                 memcpy(retval, typestr, typelen);
3050
3051                 if (stashname) {
3052                     *--retval = '=';
3053                     retval -= stashnamelen;
3054                     memcpy(retval, stashname, stashnamelen);
3055                 }
3056                 /* retval may not necessarily have reached the start of the
3057                    buffer here.  */
3058                 assert (retval >= buffer);
3059
3060                 len = buffer_end - retval - 1; /* -1 for that \0  */
3061             }
3062             if (lp)
3063                 *lp = len;
3064             SAVEFREEPV(buffer);
3065             return retval;
3066         }
3067     }
3068
3069     if (SvPOKp(sv)) {
3070         if (lp)
3071             *lp = SvCUR(sv);
3072         if (flags & SV_MUTABLE_RETURN)
3073             return SvPVX_mutable(sv);
3074         if (flags & SV_CONST_RETURN)
3075             return (char *)SvPVX_const(sv);
3076         return SvPVX(sv);
3077     }
3078
3079     if (SvIOK(sv)) {
3080         /* I'm assuming that if both IV and NV are equally valid then
3081            converting the IV is going to be more efficient */
3082         const U32 isUIOK = SvIsUV(sv);
3083         char buf[TYPE_CHARS(UV)];
3084         char *ebuf, *ptr;
3085         STRLEN len;
3086
3087         if (SvTYPE(sv) < SVt_PVIV)
3088             sv_upgrade(sv, SVt_PVIV);
3089         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
3090         len = ebuf - ptr;
3091         /* inlined from sv_setpvn */
3092         s = SvGROW_mutable(sv, len + 1);
3093         Move(ptr, s, len, char);
3094         s += len;
3095         *s = '\0';
3096         SvPOK_on(sv);
3097     }
3098     else if (SvNOK(sv)) {
3099         if (SvTYPE(sv) < SVt_PVNV)
3100             sv_upgrade(sv, SVt_PVNV);
3101         if (SvNVX(sv) == 0.0
3102 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
3103             && !Perl_isnan(SvNVX(sv))
3104 #endif
3105         ) {
3106             s = SvGROW_mutable(sv, 2);
3107             *s++ = '0';
3108             *s = '\0';
3109         } else {
3110             STRLEN len;
3111             STRLEN size = 5; /* "-Inf\0" */
3112
3113             s = SvGROW_mutable(sv, size);
3114             len = S_infnan_2pv(SvNVX(sv), s, size, 0);
3115             if (len > 0) {
3116                 s += len;
3117                 SvPOK_on(sv);
3118             }
3119             else {
3120                 /* some Xenix systems wipe out errno here */
3121                 dSAVE_ERRNO;
3122
3123                 size =
3124                     1 + /* sign */
3125                     1 + /* "." */
3126                     NV_DIG +
3127                     1 + /* "e" */
3128                     1 + /* sign */
3129                     5 + /* exponent digits */
3130                     1 + /* \0 */
3131                     2; /* paranoia */
3132
3133                 s = SvGROW_mutable(sv, size);
3134 #ifndef USE_LOCALE_NUMERIC
3135                 SNPRINTF_G(SvNVX(sv), s, SvLEN(sv), NV_DIG);
3136
3137                 SvPOK_on(sv);
3138 #else
3139                 {
3140                     bool local_radix;
3141                     DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
3142                     STORE_LC_NUMERIC_SET_TO_NEEDED();
3143
3144                     local_radix = PL_numeric_underlying && PL_numeric_radix_sv;
3145                     if (local_radix && SvCUR(PL_numeric_radix_sv) > 1) {
3146                         size += SvCUR(PL_numeric_radix_sv) - 1;
3147                         s = SvGROW_mutable(sv, size);
3148                     }
3149
3150                     SNPRINTF_G(SvNVX(sv), s, SvLEN(sv), NV_DIG);
3151
3152                     /* If the radix character is UTF-8, and actually is in the
3153                      * output, turn on the UTF-8 flag for the scalar */
3154                     if (   local_radix
3155                         && SvUTF8(PL_numeric_radix_sv)
3156                         && instr(s, SvPVX_const(PL_numeric_radix_sv)))
3157                     {
3158                         SvUTF8_on(sv);
3159                     }
3160
3161                     RESTORE_LC_NUMERIC();
3162                 }
3163
3164                 /* We don't call SvPOK_on(), because it may come to
3165                  * pass that the locale changes so that the
3166                  * stringification we just did is no longer correct.  We
3167                  * will have to re-stringify every time it is needed */
3168 #endif
3169                 RESTORE_ERRNO;
3170             }
3171             while (*s) s++;
3172         }
3173     }
3174     else if (isGV_with_GP(sv)) {
3175         GV *const gv = MUTABLE_GV(sv);
3176         SV *const buffer = sv_newmortal();
3177
3178         gv_efullname3(buffer, gv, "*");
3179
3180         assert(SvPOK(buffer));
3181         if (SvUTF8(buffer))
3182             SvUTF8_on(sv);
3183         else
3184             SvUTF8_off(sv);
3185         if (lp)
3186             *lp = SvCUR(buffer);
3187         return SvPVX(buffer);
3188     }
3189     else {
3190         if (lp)
3191             *lp = 0;
3192         if (flags & SV_UNDEF_RETURNS_NULL)
3193             return NULL;
3194         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
3195             report_uninit(sv);
3196         /* Typically the caller expects that sv_any is not NULL now.  */
3197         if (!SvREADONLY(sv) && SvTYPE(sv) < SVt_PV)
3198             sv_upgrade(sv, SVt_PV);
3199         return (char *)"";
3200     }
3201
3202     {
3203         const STRLEN len = s - SvPVX_const(sv);
3204         if (lp) 
3205             *lp = len;
3206         SvCUR_set(sv, len);
3207     }
3208     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%" UVxf " 2pv(%s)\n",
3209                           PTR2UV(sv),SvPVX_const(sv)));
3210     if (flags & SV_CONST_RETURN)
3211         return (char *)SvPVX_const(sv);
3212     if (flags & SV_MUTABLE_RETURN)
3213         return SvPVX_mutable(sv);
3214     return SvPVX(sv);
3215 }
3216
3217 /*
3218 =for apidoc sv_copypv
3219
3220 Copies a stringified representation of the source SV into the
3221 destination SV.  Automatically performs any necessary C<mg_get> and
3222 coercion of numeric values into strings.  Guaranteed to preserve
3223 C<UTF8> flag even from overloaded objects.  Similar in nature to
3224 C<sv_2pv[_flags]> but operates directly on an SV instead of just the
3225 string.  Mostly uses C<sv_2pv_flags> to do its work, except when that
3226 would lose the UTF-8'ness of the PV.
3227
3228 =for apidoc sv_copypv_nomg
3229
3230 Like C<sv_copypv>, but doesn't invoke get magic first.
3231
3232 =for apidoc sv_copypv_flags
3233
3234 Implementation of C<sv_copypv> and C<sv_copypv_nomg>.  Calls get magic iff flags
3235 has the C<SV_GMAGIC> bit set.
3236
3237 =cut
3238 */
3239
3240 void
3241 Perl_sv_copypv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
3242 {
3243     STRLEN len;
3244     const char *s;
3245
3246     PERL_ARGS_ASSERT_SV_COPYPV_FLAGS;
3247
3248     s = SvPV_flags_const(ssv,len,(flags & SV_GMAGIC));
3249     sv_setpvn(dsv,s,len);
3250     if (SvUTF8(ssv))
3251         SvUTF8_on(dsv);
3252     else
3253         SvUTF8_off(dsv);
3254 }
3255
3256 /*
3257 =for apidoc sv_2pvbyte
3258
3259 Return a pointer to the byte-encoded representation of the SV, and set C<*lp>
3260 to its length.  May cause the SV to be downgraded from UTF-8 as a
3261 side-effect.
3262
3263 Usually accessed via the C<SvPVbyte> macro.
3264
3265 =cut
3266 */
3267
3268 char *
3269 Perl_sv_2pvbyte(pTHX_ SV *sv, STRLEN *const lp)
3270 {
3271     PERL_ARGS_ASSERT_SV_2PVBYTE;
3272
3273     SvGETMAGIC(sv);
3274     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3275      || isGV_with_GP(sv) || SvROK(sv)) {
3276         SV *sv2 = sv_newmortal();
3277         sv_copypv_nomg(sv2,sv);
3278         sv = sv2;
3279     }
3280     sv_utf8_downgrade(sv,0);
3281     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3282 }
3283
3284 /*
3285 =for apidoc sv_2pvutf8
3286
3287 Return a pointer to the UTF-8-encoded representation of the SV, and set C<*lp>
3288 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3289
3290 Usually accessed via the C<SvPVutf8> macro.
3291
3292 =cut
3293 */
3294
3295 char *
3296 Perl_sv_2pvutf8(pTHX_ SV *sv, STRLEN *const lp)
3297 {
3298     PERL_ARGS_ASSERT_SV_2PVUTF8;
3299
3300     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3301      || isGV_with_GP(sv) || SvROK(sv))
3302         sv = sv_mortalcopy(sv);
3303     else
3304         SvGETMAGIC(sv);
3305     sv_utf8_upgrade_nomg(sv);
3306     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3307 }
3308
3309
3310 /*
3311 =for apidoc sv_2bool
3312
3313 This macro is only used by C<sv_true()> or its macro equivalent, and only if
3314 the latter's argument is neither C<SvPOK>, C<SvIOK> nor C<SvNOK>.
3315 It calls C<sv_2bool_flags> with the C<SV_GMAGIC> flag.
3316
3317 =for apidoc sv_2bool_flags
3318
3319 This function is only used by C<sv_true()> and friends,  and only if
3320 the latter's argument is neither C<SvPOK>, C<SvIOK> nor C<SvNOK>.  If the flags
3321 contain C<SV_GMAGIC>, then it does an C<mg_get()> first.
3322
3323
3324 =cut
3325 */
3326
3327 bool
3328 Perl_sv_2bool_flags(pTHX_ SV *sv, I32 flags)
3329 {
3330     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3331
3332     restart:
3333     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3334
3335     if (!SvOK(sv))
3336         return 0;
3337     if (SvROK(sv)) {
3338         if (SvAMAGIC(sv)) {
3339             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3340             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv)))) {
3341                 bool svb;
3342                 sv = tmpsv;
3343                 if(SvGMAGICAL(sv)) {
3344                     flags = SV_GMAGIC;
3345                     goto restart; /* call sv_2bool */
3346                 }
3347                 /* expanded SvTRUE_common(sv, (flags = 0, goto restart)) */
3348                 else if(!SvOK(sv)) {
3349                     svb = 0;
3350                 }
3351                 else if(SvPOK(sv)) {
3352                     svb = SvPVXtrue(sv);
3353                 }
3354                 else if((SvFLAGS(sv) & (SVf_IOK|SVf_NOK))) {
3355                     svb = (SvIOK(sv) && SvIVX(sv) != 0)
3356                         || (SvNOK(sv) && SvNVX(sv) != 0.0);
3357                 }
3358                 else {
3359                     flags = 0;
3360                     goto restart; /* call sv_2bool_nomg */
3361                 }
3362                 return cBOOL(svb);
3363             }
3364         }
3365         assert(SvRV(sv));
3366         return TRUE;
3367     }
3368     if (isREGEXP(sv))
3369         return
3370           RX_WRAPLEN(sv) > 1 || (RX_WRAPLEN(sv) && *RX_WRAPPED(sv) != '0');
3371
3372     if (SvNOK(sv) && !SvPOK(sv))
3373         return SvNVX(sv) != 0.0;
3374
3375     return SvTRUE_common(sv, isGV_with_GP(sv) ? 1 : 0);
3376 }
3377
3378 /*
3379 =for apidoc sv_utf8_upgrade
3380
3381 Converts the PV of an SV to its UTF-8-encoded form.
3382 Forces the SV to string form if it is not already.
3383 Will C<mg_get> on C<sv> if appropriate.
3384 Always sets the C<SvUTF8> flag to avoid future validity checks even
3385 if the whole string is the same in UTF-8 as not.
3386 Returns the number of bytes in the converted string
3387
3388 This is not a general purpose byte encoding to Unicode interface:
3389 use the Encode extension for that.
3390
3391 =for apidoc sv_utf8_upgrade_nomg
3392
3393 Like C<sv_utf8_upgrade>, but doesn't do magic on C<sv>.
3394
3395 =for apidoc sv_utf8_upgrade_flags
3396
3397 Converts the PV of an SV to its UTF-8-encoded form.
3398 Forces the SV to string form if it is not already.
3399 Always sets the SvUTF8 flag to avoid future validity checks even
3400 if all the bytes are invariant in UTF-8.
3401 If C<flags> has C<SV_GMAGIC> bit set,
3402 will C<mg_get> on C<sv> if appropriate, else not.
3403
3404 If C<flags> has C<SV_FORCE_UTF8_UPGRADE> set, this function assumes that the PV
3405 will expand when converted to UTF-8, and skips the extra work of checking for
3406 that.  Typically this flag is used by a routine that has already parsed the
3407 string and found such characters, and passes this information on so that the
3408 work doesn't have to be repeated.
3409
3410 Returns the number of bytes in the converted string.
3411
3412 This is not a general purpose byte encoding to Unicode interface:
3413 use the Encode extension for that.
3414
3415 =for apidoc sv_utf8_upgrade_flags_grow
3416
3417 Like C<sv_utf8_upgrade_flags>, but has an additional parameter C<extra>, which is
3418 the number of unused bytes the string of C<sv> is guaranteed to have free after
3419 it upon return.  This allows the caller to reserve extra space that it intends
3420 to fill, to avoid extra grows.
3421
3422 C<sv_utf8_upgrade>, C<sv_utf8_upgrade_nomg>, and C<sv_utf8_upgrade_flags>
3423 are implemented in terms of this function.
3424
3425 Returns the number of bytes in the converted string (not including the spares).
3426
3427 =cut
3428
3429 (One might think that the calling routine could pass in the position of the
3430 first variant character when it has set SV_FORCE_UTF8_UPGRADE, so it wouldn't
3431 have to be found again.  But that is not the case, because typically when the
3432 caller is likely to use this flag, it won't be calling this routine unless it
3433 finds something that won't fit into a byte.  Otherwise it tries to not upgrade
3434 and just use bytes.  But some things that do fit into a byte are variants in
3435 utf8, and the caller may not have been keeping track of these.)
3436
3437 If the routine itself changes the string, it adds a trailing C<NUL>.  Such a
3438 C<NUL> isn't guaranteed due to having other routines do the work in some input
3439 cases, or if the input is already flagged as being in utf8.
3440
3441 The speed of this could perhaps be improved for many cases if someone wanted to
3442 write a fast function that counts the number of variant characters in a string,
3443 especially if it could return the position of the first one.
3444
3445 */
3446
3447 STRLEN
3448 Perl_sv_utf8_upgrade_flags_grow(pTHX_ SV *const sv, const I32 flags, STRLEN extra)
3449 {
3450     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3451
3452     if (sv == &PL_sv_undef)
3453         return 0;
3454     if (!SvPOK_nog(sv)) {
3455         STRLEN len = 0;
3456         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3457             (void) sv_2pv_flags(sv,&len, flags);
3458             if (SvUTF8(sv)) {
3459                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3460                 return len;
3461             }
3462         } else {
3463             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3464         }
3465     }
3466
3467     /* SVt_REGEXP's shouldn't be upgraded to UTF8 - they're already
3468      * compiled and individual nodes will remain non-utf8 even if the
3469      * stringified version of the pattern gets upgraded. Whether the
3470      * PVX of a REGEXP should be grown or we should just croak, I don't
3471      * know - DAPM */
3472     if (SvUTF8(sv) || isREGEXP(sv)) {
3473         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3474         return SvCUR(sv);
3475     }
3476
3477     if (SvIsCOW(sv)) {
3478         S_sv_uncow(aTHX_ sv, 0);
3479     }
3480
3481     if (SvCUR(sv) == 0) {
3482         if (extra) SvGROW(sv, extra);
3483     } else { /* Assume Latin-1/EBCDIC */
3484         /* This function could be much more efficient if we
3485          * had a FLAG in SVs to signal if there are any variant
3486          * chars in the PV.  Given that there isn't such a flag
3487          * make the loop as fast as possible (although there are certainly ways
3488          * to speed this up, eg. through vectorization) */
3489         U8 * s = (U8 *) SvPVX_const(sv);
3490         U8 * e = (U8 *) SvEND(sv);
3491         U8 *t = s;
3492         STRLEN two_byte_count;
3493         
3494         if (flags & SV_FORCE_UTF8_UPGRADE) {
3495             two_byte_count = 0;
3496         }
3497         else {
3498             if (is_utf8_invariant_string_loc(s, SvCUR(sv), (const U8 **) &t)) {
3499
3500                 /* utf8 conversion not needed because all are invariants.  Mark
3501                  * as UTF-8 even if no variant - saves scanning loop */
3502                 SvUTF8_on(sv);
3503                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3504                 return SvCUR(sv);
3505             }
3506
3507             /* Here, there is at least one variant, and t points to the first
3508              * one */
3509             two_byte_count = 1;
3510         }
3511
3512         /* Note that the incoming SV may not have a trailing '\0', as certain
3513          * code in pp_formline can send us partially built SVs.
3514          *
3515          * Here, the string should be converted to utf8, either because of an
3516          * input flag (which causes two_byte_count to be set to 0), or because
3517          * a character that requires 2 bytes was found (two_byte_count = 1).  t
3518          * points either to the beginning of the string (if we didn't examine
3519          * anything), or to the first variant.  In either case, everything from
3520          * s to t - 1 will occupy only 1 byte each on output.
3521          *
3522          * There are two main ways to convert.  One is to create a new string
3523          * and go through the input starting from the beginning, appending each
3524          * converted value onto the new string as we go along.  It's probably
3525          * best to allocate enough space in the string for the worst possible
3526          * case rather than possibly running out of space and having to
3527          * reallocate and then copy what we've done so far.  Since everything
3528          * from s to t - 1 is invariant, the destination can be initialized
3529          * with these using a fast memory copy
3530          *
3531          * The other way is to figure out exactly how big the string should be,
3532          * by parsing the entire input.  Then you don't have to make it big
3533          * enough to handle the worst possible case, and more importantly, if
3534          * the string you already have is large enough, you don't have to
3535          * allocate a new string, you can copy the last character in the input
3536          * string to the final position(s) that will be occupied by the
3537          * converted string and go backwards, stopping at t, since everything
3538          * before that is invariant.
3539          *
3540          * There are advantages and disadvantages to each method.
3541          *
3542          * In the first method, we can allocate a new string, do the memory
3543          * copy from the s to t - 1, and then proceed through the rest of the
3544          * string byte-by-byte.
3545          *
3546          * In the second method, we proceed through the rest of the input
3547          * string just calculating how big the converted string will be.  Then
3548          * there are two cases:
3549          *  1)  if the string has enough extra space to handle the converted
3550          *      value.  We go backwards through the string, converting until we
3551          *      get to the position we are at now, and then stop.  If this
3552          *      position is far enough along in the string, this method is
3553          *      faster than the first method above.  If the memory copy were
3554          *      the same speed as the byte-by-byte loop, that position would be
3555          *      about half-way, as at the half-way mark, parsing to the end and
3556          *      back is one complete string's parse, the same amount as
3557          *      starting over and going all the way through.  Actually, it
3558          *      would be somewhat less than half-way, as it's faster to just
3559          *      count bytes than to also copy, and we don't have the overhead
3560          *      of allocating a new string, changing the scalar to use it, and
3561          *      freeing the existing one.  But if the memory copy is fast, the
3562          *      break-even point is somewhere after half way.  The counting
3563          *      loop could be sped up by vectorization, etc, to move the
3564          *      break-even point further towards the beginning.
3565          *  2)  if the string doesn't have enough space to handle the converted
3566          *      value.  A new string will have to be allocated, and one might
3567          *      as well, given that, start from the beginning doing the first
3568          *      method.  We've spent extra time parsing the string and in
3569          *      exchange all we've gotten is that we know precisely how big to
3570          *      make the new one.  Perl is more optimized for time than space,
3571          *      so this case is a loser.
3572          * So what I've decided to do is not use the 2nd method unless it is
3573          * guaranteed that a new string won't have to be allocated, assuming
3574          * the worst case.  I also decided not to put any more conditions on it
3575          * than this, for now.  It seems likely that, since the worst case is
3576          * twice as big as the unknown portion of the string (plus 1), we won't
3577          * be guaranteed enough space, causing us to go to the first method,
3578          * unless the string is short, or the first variant character is near
3579          * the end of it.  In either of these cases, it seems best to use the
3580          * 2nd method.  The only circumstance I can think of where this would
3581          * be really slower is if the string had once had much more data in it
3582          * than it does now, but there is still a substantial amount in it  */
3583
3584         {
3585             STRLEN invariant_head = t - s;
3586             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3587             if (SvLEN(sv) < size) {
3588
3589                 /* Here, have decided to allocate a new string */
3590
3591                 U8 *dst;
3592                 U8 *d;
3593
3594                 Newx(dst, size, U8);
3595
3596                 /* If no known invariants at the beginning of the input string,
3597                  * set so starts from there.  Otherwise, can use memory copy to
3598                  * get up to where we are now, and then start from here */
3599
3600                 if (invariant_head == 0) {
3601                     d = dst;
3602                 } else {
3603                     Copy(s, dst, invariant_head, char);
3604                     d = dst + invariant_head;
3605                 }
3606
3607                 while (t < e) {
3608                     append_utf8_from_native_byte(*t, &d);
3609                     t++;
3610                 }
3611                 *d = '\0';
3612                 SvPV_free(sv); /* No longer using pre-existing string */
3613                 SvPV_set(sv, (char*)dst);
3614                 SvCUR_set(sv, d - dst);
3615                 SvLEN_set(sv, size);
3616             } else {
3617
3618                 /* Here, have decided to get the exact size of the string.
3619                  * Currently this happens only when we know that there is
3620                  * guaranteed enough space to fit the converted string, so
3621                  * don't have to worry about growing.  If two_byte_count is 0,
3622                  * then t points to the first byte of the string which hasn't
3623                  * been examined yet.  Otherwise two_byte_count is 1, and t
3624                  * points to the first byte in the string that will expand to
3625                  * two.  Depending on this, start examining at t or 1 after t.
3626                  * */
3627
3628                 U8 *d = t + two_byte_count;
3629
3630
3631                 /* Count up the remaining bytes that expand to two */
3632
3633                 while (d < e) {
3634                     const U8 chr = *d++;
3635                     if (! NATIVE_BYTE_IS_INVARIANT(chr)) two_byte_count++;
3636                 }
3637
3638                 /* The string will expand by just the number of bytes that
3639                  * occupy two positions.  But we are one afterwards because of
3640                  * the increment just above.  This is the place to put the
3641                  * trailing NUL, and to set the length before we decrement */
3642
3643                 d += two_byte_count;
3644                 SvCUR_set(sv, d - s);
3645                 *d-- = '\0';
3646
3647
3648                 /* Having decremented d, it points to the position to put the
3649                  * very last byte of the expanded string.  Go backwards through
3650                  * the string, copying and expanding as we go, stopping when we
3651                  * get to the part that is invariant the rest of the way down */
3652
3653                 e--;
3654                 while (e >= t) {
3655                     if (NATIVE_BYTE_IS_INVARIANT(*e)) {
3656                         *d-- = *e;
3657                     } else {
3658                         *d-- = UTF8_EIGHT_BIT_LO(*e);
3659                         *d-- = UTF8_EIGHT_BIT_HI(*e);
3660                     }
3661                     e--;
3662                 }
3663             }
3664
3665             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3666                 /* Update pos. We do it at the end rather than during
3667                  * the upgrade, to avoid slowing down the common case
3668                  * (upgrade without pos).
3669                  * pos can be stored as either bytes or characters.  Since
3670                  * this was previously a byte string we can just turn off
3671                  * the bytes flag. */
3672                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3673                 if (mg) {
3674                     mg->mg_flags &= ~MGf_BYTES;
3675                 }
3676                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3677                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3678             }
3679         }
3680     }
3681
3682     /* Mark as UTF-8 even if no variant - saves scanning loop */
3683     SvUTF8_on(sv);
3684     return SvCUR(sv);
3685 }
3686
3687 /*
3688 =for apidoc sv_utf8_downgrade
3689
3690 Attempts to convert the PV of an SV from characters to bytes.
3691 If the PV contains a character that cannot fit
3692 in a byte, this conversion will fail;
3693 in this case, either returns false or, if C<fail_ok> is not
3694 true, croaks.
3695
3696 This is not a general purpose Unicode to byte encoding interface:
3697 use the C<Encode> extension for that.
3698
3699 =cut
3700 */
3701
3702 bool
3703 Perl_sv_utf8_downgrade(pTHX_ SV *const sv, const bool fail_ok)
3704 {
3705     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3706
3707     if (SvPOKp(sv) && SvUTF8(sv)) {
3708         if (SvCUR(sv)) {
3709             U8 *s;
3710             STRLEN len;
3711             int mg_flags = SV_GMAGIC;
3712
3713             if (SvIsCOW(sv)) {
3714                 S_sv_uncow(aTHX_ sv, 0);
3715             }
3716             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3717                 /* update pos */
3718                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3719                 if (mg && mg->mg_len > 0 && mg->mg_flags & MGf_BYTES) {
3720                         mg->mg_len = sv_pos_b2u_flags(sv, mg->mg_len,
3721                                                 SV_GMAGIC|SV_CONST_RETURN);
3722                         mg_flags = 0; /* sv_pos_b2u does get magic */
3723                 }
3724                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3725                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3726
3727             }
3728             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3729
3730             if (!utf8_to_bytes(s, &len)) {
3731                 if (fail_ok)
3732                     return FALSE;
3733                 else {
3734                     if (PL_op)
3735                         Perl_croak(aTHX_ "Wide character in %s",
3736                                    OP_DESC(PL_op));
3737                     else
3738                         Perl_croak(aTHX_ "Wide character");
3739                 }
3740             }
3741             SvCUR_set(sv, len);
3742         }
3743     }
3744     SvUTF8_off(sv);
3745     return TRUE;
3746 }
3747
3748 /*
3749 =for apidoc sv_utf8_encode
3750
3751 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3752 flag off so that it looks like octets again.
3753
3754 =cut
3755 */
3756
3757 void
3758 Perl_sv_utf8_encode(pTHX_ SV *const sv)
3759 {
3760     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3761
3762     if (SvREADONLY(sv)) {
3763         sv_force_normal_flags(sv, 0);
3764     }
3765     (void) sv_utf8_upgrade(sv);
3766     SvUTF8_off(sv);
3767 }
3768
3769 /*
3770 =for apidoc sv_utf8_decode
3771
3772 If the PV of the SV is an octet sequence in Perl's extended UTF-8
3773 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3774 so that it looks like a character.  If the PV contains only single-byte
3775 characters, the C<SvUTF8> flag stays off.
3776 Scans PV for validity and returns FALSE if the PV is invalid UTF-8.
3777
3778 =cut
3779 */
3780
3781 bool
3782 Perl_sv_utf8_decode(pTHX_ SV *const sv)
3783 {
3784     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3785
3786     if (SvPOKp(sv)) {
3787         const U8 *start, *c;
3788
3789         /* The octets may have got themselves encoded - get them back as
3790          * bytes
3791          */
3792         if (!sv_utf8_downgrade(sv, TRUE))
3793             return FALSE;
3794
3795         /* it is actually just a matter of turning the utf8 flag on, but
3796          * we want to make sure everything inside is valid utf8 first.
3797          */
3798         c = start = (const U8 *) SvPVX_const(sv);
3799         if (!is_utf8_string(c, SvCUR(sv)))
3800             return FALSE;
3801         if (! is_utf8_invariant_string(c, SvCUR(sv))) {
3802             SvUTF8_on(sv);
3803         }
3804         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3805             /* XXX Is this dead code?  XS_utf8_decode calls SvSETMAGIC
3806                    after this, clearing pos.  Does anything on CPAN
3807                    need this? */
3808             /* adjust pos to the start of a UTF8 char sequence */
3809             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3810             if (mg) {
3811                 I32 pos = mg->mg_len;
3812                 if (pos > 0) {
3813                     for (c = start + pos; c > start; c--) {
3814                         if (UTF8_IS_START(*c))
3815                             break;
3816                     }
3817                     mg->mg_len  = c - start;
3818                 }
3819             }
3820             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3821                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3822         }
3823     }
3824     return TRUE;
3825 }
3826
3827 /*
3828 =for apidoc sv_setsv
3829
3830 Copies the contents of the source SV C<ssv> into the destination SV
3831 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3832 function if the source SV needs to be reused.  Does not handle 'set' magic on
3833 destination SV.  Calls 'get' magic on source SV.  Loosely speaking, it
3834 performs a copy-by-value, obliterating any previous content of the
3835 destination.
3836
3837 You probably want to use one of the assortment of wrappers, such as
3838 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3839 C<SvSetMagicSV_nosteal>.
3840
3841 =for apidoc sv_setsv_flags
3842
3843 Copies the contents of the source SV C<ssv> into the destination SV
3844 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3845 function if the source SV needs to be reused.  Does not handle 'set' magic.
3846 Loosely speaking, it performs a copy-by-value, obliterating any previous
3847 content of the destination.
3848 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3849 C<ssv> if appropriate, else not.  If the C<flags>
3850 parameter has the C<SV_NOSTEAL> bit set then the
3851 buffers of temps will not be stolen.  C<sv_setsv>
3852 and C<sv_setsv_nomg> are implemented in terms of this function.
3853
3854 You probably want to use one of the assortment of wrappers, such as
3855 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3856 C<SvSetMagicSV_nosteal>.
3857
3858 This is the primary function for copying scalars, and most other
3859 copy-ish functions and macros use this underneath.
3860
3861 =cut
3862 */
3863
3864 static void
3865 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3866 {
3867     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3868     HV *old_stash = NULL;
3869
3870     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3871
3872     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3873         const char * const name = GvNAME(sstr);
3874         const STRLEN len = GvNAMELEN(sstr);
3875         {
3876             if (dtype >= SVt_PV) {
3877                 SvPV_free(dstr);
3878                 SvPV_set(dstr, 0);
3879                 SvLEN_set(dstr, 0);
3880                 SvCUR_set(dstr, 0);
3881             }
3882             SvUPGRADE(dstr, SVt_PVGV);
3883             (void)SvOK_off(dstr);
3884             isGV_with_GP_on(dstr);
3885         }
3886         GvSTASH(dstr) = GvSTASH(sstr);
3887         if (GvSTASH(dstr))
3888             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3889         gv_name_set(MUTABLE_GV(dstr), name, len,
3890                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3891         SvFAKE_on(dstr);        /* can coerce to non-glob */
3892     }
3893
3894     if(GvGP(MUTABLE_GV(sstr))) {
3895         /* If source has method cache entry, clear it */
3896         if(GvCVGEN(sstr)) {
3897             SvREFCNT_dec(GvCV(sstr));
3898             GvCV_set(sstr, NULL);
3899             GvCVGEN(sstr) = 0;
3900         }
3901         /* If source has a real method, then a method is
3902            going to change */
3903         else if(
3904          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3905         ) {
3906             mro_changes = 1;
3907         }
3908     }
3909
3910     /* If dest already had a real method, that's a change as well */
3911     if(
3912         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3913      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3914     ) {
3915         mro_changes = 1;
3916     }
3917
3918     /* We don't need to check the name of the destination if it was not a
3919        glob to begin with. */
3920     if(dtype == SVt_PVGV) {
3921         const char * const name = GvNAME((const GV *)dstr);
3922         const STRLEN len = GvNAMELEN(dstr);
3923         if(memEQs(name, len, "ISA")
3924          /* The stash may have been detached from the symbol table, so
3925             check its name. */
3926          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3927         )
3928             mro_changes = 2;
3929         else {
3930             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3931              || (len == 1 && name[0] == ':')) {
3932                 mro_changes = 3;
3933
3934                 /* Set aside the old stash, so we can reset isa caches on
3935                    its subclasses. */
3936                 if((old_stash = GvHV(dstr)))
3937                     /* Make sure we do not lose it early. */
3938                     SvREFCNT_inc_simple_void_NN(
3939                      sv_2mortal((SV *)old_stash)
3940                     );
3941             }
3942         }
3943
3944         SvREFCNT_inc_simple_void_NN(sv_2mortal(dstr));
3945     }
3946
3947     /* freeing dstr's GP might free sstr (e.g. *x = $x),
3948      * so temporarily protect it */
3949     ENTER;
3950     SAVEFREESV(SvREFCNT_inc_simple_NN(sstr));
3951     gp_free(MUTABLE_GV(dstr));
3952     GvINTRO_off(dstr);          /* one-shot flag */
3953     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3954     LEAVE;
3955
3956     if (SvTAINTED(sstr))
3957         SvTAINT(dstr);
3958     if (GvIMPORTED(dstr) != GVf_IMPORTED
3959         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3960         {
3961             GvIMPORTED_on(dstr);
3962         }
3963     GvMULTI_on(dstr);
3964     if(mro_changes == 2) {
3965       if (GvAV((const GV *)sstr)) {
3966         MAGIC *mg;
3967         SV * const sref = (SV *)GvAV((const GV *)dstr);
3968         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3969             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3970                 AV * const ary = newAV();
3971                 av_push(ary, mg->mg_obj); /* takes the refcount */
3972                 mg->mg_obj = (SV *)ary;
3973             }
3974             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3975         }
3976         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3977       }
3978       mro_isa_changed_in(GvSTASH(dstr));
3979     }
3980     else if(mro_changes == 3) {
3981         HV * const stash = GvHV(dstr);
3982         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3983             mro_package_moved(
3984                 stash, old_stash,
3985                 (GV *)dstr, 0
3986             );
3987     }
3988     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3989     if (GvIO(dstr) && dtype == SVt_PVGV) {
3990         DEBUG_o(Perl_deb(aTHX_
3991                         "glob_assign_glob clearing PL_stashcache\n"));
3992         /* It's a cache. It will rebuild itself quite happily.
3993            It's a lot of effort to work out exactly which key (or keys)
3994            might be invalidated by the creation of the this file handle.
3995          */
3996         hv_clear(PL_stashcache);
3997     }
3998     return;
3999 }
4000
4001 void
4002 Perl_gv_setref(pTHX_ SV *const dstr, SV *const sstr)
4003 {
4004     SV * const sref = SvRV(sstr);
4005     SV *dref;
4006     const int intro = GvINTRO(dstr);
4007     SV **location;
4008     U8 import_flag = 0;
4009     const U32 stype = SvTYPE(sref);
4010
4011     PERL_ARGS_ASSERT_GV_SETREF;
4012
4013     if (intro) {
4014         GvINTRO_off(dstr);      /* one-shot flag */
4015         GvLINE(dstr) = CopLINE(PL_curcop);
4016         GvEGV(dstr) = MUTABLE_GV(dstr);
4017     }
4018     GvMULTI_on(dstr);
4019     switch (stype) {
4020     case SVt_PVCV:
4021         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
4022         import_flag = GVf_IMPORTED_CV;
4023         goto common;
4024     case SVt_PVHV:
4025         location = (SV **) &GvHV(dstr);
4026         import_flag = GVf_IMPORTED_HV;
4027         goto common;
4028     case SVt_PVAV:
4029         location = (SV **) &GvAV(dstr);
4030         import_flag = GVf_IMPORTED_AV;
4031         goto common;
4032     case SVt_PVIO:
4033         location = (SV **) &GvIOp(dstr);
4034         goto common;
4035     case SVt_PVFM:
4036         location = (SV **) &GvFORM(dstr);
4037         goto common;
4038     default:
4039         location = &GvSV(dstr);
4040         import_flag = GVf_IMPORTED_SV;
4041     common:
4042         if (intro) {
4043             if (stype == SVt_PVCV) {
4044                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
4045                 if (GvCVGEN(dstr)) {
4046                     SvREFCNT_dec(GvCV(dstr));
4047                     GvCV_set(dstr, NULL);
4048                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
4049                 }
4050             }
4051             /* SAVEt_GVSLOT takes more room on the savestack and has more
4052                overhead in leave_scope than SAVEt_GENERIC_SV.  But for CVs
4053                leave_scope needs access to the GV so it can reset method
4054                caches.  We must use SAVEt_GVSLOT whenever the type is
4055                SVt_PVCV, even if the stash is anonymous, as the stash may
4056                gain a name somehow before leave_scope. */
4057             if (stype == SVt_PVCV) {
4058                 /* There is no save_pushptrptrptr.  Creating it for this
4059                    one call site would be overkill.  So inline the ss add
4060                    routines here. */
4061                 dSS_ADD;
4062                 SS_ADD_PTR(dstr);
4063                 SS_ADD_PTR(location);
4064                 SS_ADD_PTR(SvREFCNT_inc(*location));
4065                 SS_ADD_UV(SAVEt_GVSLOT);
4066                 SS_ADD_END(4);
4067             }
4068             else SAVEGENERICSV(*location);
4069         }
4070         dref = *location;
4071         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
4072             CV* const cv = MUTABLE_CV(*location);
4073             if (cv) {
4074                 if (!GvCVGEN((const GV *)dstr) &&
4075                     (CvROOT(cv) || CvXSUB(cv)) &&
4076                     /* redundant check that avoids creating the extra SV
4077                        most of the time: */
4078                     (CvCONST(cv) || ckWARN(WARN_REDEFINE)))
4079                     {
4080                         SV * const new_const_sv =
4081                             CvCONST((const CV *)sref)
4082                                  ? cv_const_sv((const CV *)sref)
4083                                  : NULL;
4084                         HV * const stash = GvSTASH((const GV *)dstr);
4085                         report_redefined_cv(
4086                            sv_2mortal(
4087                              stash
4088                                ? Perl_newSVpvf(aTHX_
4089                                     "%" HEKf "::%" HEKf,
4090                                     HEKfARG(HvNAME_HEK(stash)),
4091                                     HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr))))
4092                                : Perl_newSVpvf(aTHX_
4093                                     "%" HEKf,
4094                                     HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr))))
4095                            ),
4096                            cv,
4097                            CvCONST((const CV *)sref) ? &new_const_sv : NULL
4098                         );
4099                     }
4100                 if (!intro)
4101                     cv_ckproto_len_flags(cv, (const GV *)dstr,
4102                                    SvPOK(sref) ? CvPROTO(sref) : NULL,
4103                                    SvPOK(sref) ? CvPROTOLEN(sref) : 0,
4104                                    SvPOK(sref) ? SvUTF8(sref) : 0);
4105             }
4106             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
4107             GvASSUMECV_on(dstr);
4108             if(GvSTASH(dstr)) { /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
4109                 if (intro && GvREFCNT(dstr) > 1) {
4110                     /* temporary remove extra savestack's ref */
4111                     --GvREFCNT(dstr);
4112                     gv_method_changed(dstr);
4113                     ++GvREFCNT(dstr);
4114                 }
4115                 else gv_method_changed(dstr);
4116             }
4117         }
4118         *location = SvREFCNT_inc_simple_NN(sref);
4119         if (import_flag && !(GvFLAGS(dstr) & import_flag)
4120             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
4121             GvFLAGS(dstr) |= import_flag;
4122         }
4123
4124         if (stype == SVt_PVHV) {
4125             const char * const name = GvNAME((GV*)dstr);
4126             const STRLEN len = GvNAMELEN(dstr);
4127             if (
4128                 (
4129                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
4130                 || (len == 1 && name[0] == ':')
4131                 )
4132              && (!dref || HvENAME_get(dref))
4133             ) {
4134                 mro_package_moved(
4135                     (HV *)sref, (HV *)dref,
4136                     (GV *)dstr, 0
4137                 );
4138             }
4139         }
4140         else if (
4141             stype == SVt_PVAV && sref != dref
4142          && memEQs(GvNAME((GV*)dstr), GvNAMELEN((GV*)dstr), "ISA")
4143          /* The stash may have been detached from the symbol table, so
4144             check its name before doing anything. */
4145          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
4146         ) {
4147             MAGIC *mg;
4148             MAGIC * const omg = dref && SvSMAGICAL(dref)
4149                                  ? mg_find(dref, PERL_MAGIC_isa)
4150                                  : NULL;
4151             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
4152                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
4153                     AV * const ary = newAV();
4154                     av_push(ary, mg->mg_obj); /* takes the refcount */
4155                     mg->mg_obj = (SV *)ary;
4156                 }
4157                 if (omg) {
4158                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
4159                         SV **svp = AvARRAY((AV *)omg->mg_obj);
4160                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
4161                         while (items--)
4162                             av_push(
4163                              (AV *)mg->mg_obj,
4164                              SvREFCNT_inc_simple_NN(*svp++)
4165                             );
4166                     }
4167                     else
4168                         av_push(
4169                          (AV *)mg->mg_obj,
4170                          SvREFCNT_inc_simple_NN(omg->mg_obj)
4171                         );
4172                 }
4173                 else
4174                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
4175             }
4176             else
4177             {
4178                 SSize_t i;
4179                 sv_magic(
4180                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
4181                 );
4182                 for (i = 0; i <= AvFILL(sref); ++i) {
4183                     SV **elem = av_fetch ((AV*)sref, i, 0);
4184                     if (elem) {
4185                         sv_magic(
4186                           *elem, sref, PERL_MAGIC_isaelem, NULL, i
4187                         );
4188                     }
4189                 }
4190                 mg = mg_find(sref, PERL_MAGIC_isa);
4191             }
4192             /* Since the *ISA assignment could have affected more than
4193                one stash, don't call mro_isa_changed_in directly, but let
4194                magic_clearisa do it for us, as it already has the logic for
4195                dealing with globs vs arrays of globs. */
4196             assert(mg);
4197             Perl_magic_clearisa(aTHX_ NULL, mg);
4198         }
4199         else if (stype == SVt_PVIO) {
4200             DEBUG_o(Perl_deb(aTHX_ "gv_setref clearing PL_stashcache\n"));
4201             /* It's a cache. It will rebuild itself quite happily.
4202                It's a lot of effort to work out exactly which key (or keys)
4203                might be invalidated by the creation of the this file handle.
4204             */
4205             hv_clear(PL_stashcache);
4206         }
4207         break;
4208     }
4209     if (!intro) SvREFCNT_dec(dref);
4210     if (SvTAINTED(sstr))
4211         SvTAINT(dstr);
4212     return;
4213 }
4214
4215
4216
4217
4218 #ifdef PERL_DEBUG_READONLY_COW
4219 # include <sys/mman.h>
4220
4221 # ifndef PERL_MEMORY_DEBUG_HEADER_SIZE
4222 #  define PERL_MEMORY_DEBUG_HEADER_SIZE 0
4223 # endif
4224
4225 void
4226 Perl_sv_buf_to_ro(pTHX_ SV *sv)
4227 {
4228     struct perl_memory_debug_header * const header =
4229         (struct perl_memory_debug_header *)(SvPVX(sv)-PERL_MEMORY_DEBUG_HEADER_SIZE);
4230     const MEM_SIZE len = header->size;
4231     PERL_ARGS_ASSERT_SV_BUF_TO_RO;
4232 # ifdef PERL_TRACK_MEMPOOL
4233     if (!header->readonly) header->readonly = 1;
4234 # endif
4235     if (mprotect(header, len, PROT_READ))
4236         Perl_warn(aTHX_ "mprotect RW for COW string %p %lu failed with %d",
4237                          header, len, errno);
4238 }
4239
4240 static void
4241 S_sv_buf_to_rw(pTHX_ SV *sv)
4242 {
4243     struct perl_memory_debug_header * const header =
4244         (struct perl_memory_debug_header *)(SvPVX(sv)-PERL_MEMORY_DEBUG_HEADER_SIZE);
4245     const MEM_SIZE len = header->size;
4246     PERL_ARGS_ASSERT_SV_BUF_TO_RW;
4247     if (mprotect(header, len, PROT_READ|PROT_WRITE))
4248         Perl_warn(aTHX_ "mprotect for COW string %p %lu failed with %d",
4249                          header, len, errno);
4250 # ifdef PERL_TRACK_MEMPOOL
4251     header->readonly = 0;
4252 # endif
4253 }
4254
4255 #else
4256 # define sv_buf_to_ro(sv)       NOOP
4257 # define sv_buf_to_rw(sv)       NOOP
4258 #endif
4259
4260 void
4261 Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags)
4262 {
4263     U32 sflags;
4264     int dtype;
4265     svtype stype;
4266     unsigned int both_type;
4267
4268     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
4269
4270     if (UNLIKELY( sstr == dstr ))
4271         return;
4272
4273     if (UNLIKELY( !sstr ))
4274         sstr = &PL_sv_undef;
4275
4276     stype = SvTYPE(sstr);
4277     dtype = SvTYPE(dstr);
4278     both_type = (stype | dtype);
4279
4280     /* with these values, we can check that both SVs are NULL/IV (and not
4281      * freed) just by testing the or'ed types */
4282     STATIC_ASSERT_STMT(SVt_NULL == 0);
4283     STATIC_ASSERT_STMT(SVt_IV   == 1);
4284     if (both_type <= 1) {
4285         /* both src and dst are UNDEF/IV/RV, so we can do a lot of
4286          * special-casing */
4287         U32 sflags;
4288         U32 new_dflags;
4289         SV *old_rv = NULL;
4290
4291         /* minimal subset of SV_CHECK_THINKFIRST_COW_DROP(dstr) */
4292         if (SvREADONLY(dstr))
4293             Perl_croak_no_modify();
4294         if (SvROK(dstr)) {
4295             if (SvWEAKREF(dstr))
4296                 sv_unref_flags(dstr, 0);
4297             else
4298                 old_rv = SvRV(dstr);
4299         }
4300
4301         assert(!SvGMAGICAL(sstr));
4302         assert(!SvGMAGICAL(dstr));
4303
4304         sflags = SvFLAGS(sstr);
4305         if (sflags & (SVf_IOK|SVf_ROK)) {
4306             SET_SVANY_FOR_BODYLESS_IV(dstr);
4307             new_dflags = SVt_IV;
4308
4309             if (sflags & SVf_ROK) {
4310                 dstr->sv_u.svu_rv = SvREFCNT_inc(SvRV(sstr));
4311                 new_dflags |= SVf_ROK;
4312             }
4313             else {
4314                 /* both src and dst are <= SVt_IV, so sv_any points to the
4315                  * head; so access the head directly
4316                  */
4317                 assert(    &(sstr->sv_u.svu_iv)
4318                         == &(((XPVIV*) SvANY(sstr))->xiv_iv));
4319                 assert(    &(dstr->sv_u.svu_iv)
4320                         == &(((XPVIV*) SvANY(dstr))->xiv_iv));
4321                 dstr->sv_u.svu_iv = sstr->sv_u.svu_iv;
4322                 new_dflags |= (SVf_IOK|SVp_IOK|(sflags & SVf_IVisUV));
4323             }
4324         }
4325         else {
4326             new_dflags = dtype; /* turn off everything except the type */
4327         }
4328         SvFLAGS(dstr) = new_dflags;
4329         SvREFCNT_dec(old_rv);
4330
4331         return;
4332     }
4333
4334     if (UNLIKELY(both_type == SVTYPEMASK)) {
4335         if (SvIS_FREED(dstr)) {
4336             Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
4337                        " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
4338         }
4339         if (SvIS_FREED(sstr)) {
4340             Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
4341                        (void*)sstr, (void*)dstr);
4342         }
4343     }
4344
4345
4346
4347     SV_CHECK_THINKFIRST_COW_DROP(dstr);
4348     dtype = SvTYPE(dstr); /* THINKFIRST may have changed type */
4349
4350     /* There's a lot of redundancy below but we're going for speed here */
4351
4352     switch (stype) {
4353     case SVt_NULL:
4354       undef_sstr:
4355         if (LIKELY( dtype != SVt_PVGV && dtype != SVt_PVLV )) {
4356             (void)SvOK_off(dstr);
4357             return;
4358         }
4359         break;
4360     case SVt_IV:
4361         if (SvIOK(sstr)) {
4362             switch (dtype) {
4363             case SVt_NULL:
4364                 /* For performance, we inline promoting to type SVt_IV. */
4365                 /* We're starting from SVt_NULL, so provided that define is
4366                  * actual 0, we don't have to unset any SV type flags
4367                  * to promote to SVt_IV. */
4368                 STATIC_ASSERT_STMT(SVt_NULL == 0);
4369                 SET_SVANY_FOR_BODYLESS_IV(dstr);
4370                 SvFLAGS(dstr) |= SVt_IV;
4371                 break;
4372             case SVt_NV:
4373             case SVt_PV:
4374                 sv_upgrade(dstr, SVt_PVIV);
4375                 break;
4376             case SVt_PVGV:
4377             case SVt_PVLV:
4378                 goto end_of_first_switch;
4379             }
4380             (void)SvIOK_only(dstr);
4381             SvIV_set(dstr,  SvIVX(sstr));
4382             if (SvIsUV(sstr))
4383                 SvIsUV_on(dstr);
4384             /* SvTAINTED can only be true if the SV has taint magic, which in
4385                turn means that the SV type is PVMG (or greater). This is the
4386                case statement for SVt_IV, so this cannot be true (whatever gcov
4387                may say).  */
4388             assert(!SvTAINTED(sstr));
4389             return;
4390         }
4391         if (!SvROK(sstr))
4392             goto undef_sstr;
4393         if (dtype < SVt_PV && dtype != SVt_IV)
4394             sv_upgrade(dstr, SVt_IV);
4395         break;
4396
4397     case SVt_NV:
4398         if (LIKELY( SvNOK(sstr) )) {
4399             switch (dtype) {
4400             case SVt_NULL:
4401             case SVt_IV:
4402                 sv_upgrade(dstr, SVt_NV);
4403                 break;
4404             case SVt_PV:
4405             case SVt_PVIV:
4406                 sv_upgrade(dstr, SVt_PVNV);
4407                 break;
4408             case SVt_PVGV:
4409             case SVt_PVLV:
4410                 goto end_of_first_switch;
4411             }
4412             SvNV_set(dstr, SvNVX(sstr));
4413             (void)SvNOK_only(dstr);
4414             /* SvTAINTED can only be true if the SV has taint magic, which in
4415                turn means that the SV type is PVMG (or greater). This is the
4416                case statement for SVt_NV, so this cannot be true (whatever gcov
4417                may say).  */
4418             assert(!SvTAINTED(sstr));
4419             return;
4420         }
4421         goto undef_sstr;
4422
4423     case SVt_PV:
4424         if (dtype < SVt_PV)
4425             sv_upgrade(dstr, SVt_PV);
4426         break;
4427     case SVt_PVIV:
4428         if (dtype < SVt_PVIV)
4429             sv_upgrade(dstr, SVt_PVIV);
4430         break;
4431     case SVt_PVNV:
4432         if (dtype < SVt_PVNV)
4433             sv_upgrade(dstr, SVt_PVNV);
4434         break;
4435     default:
4436         {
4437         const char * const type = sv_reftype(sstr,0);
4438         if (PL_op)
4439             /* diag_listed_as: Bizarre copy of %s */
4440             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4441         else
4442             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4443         }
4444         NOT_REACHED; /* NOTREACHED */
4445
4446     case SVt_REGEXP:
4447       upgregexp:
4448         if (dtype < SVt_REGEXP)
4449             sv_upgrade(dstr, SVt_REGEXP);
4450         break;
4451
4452         case SVt_INVLIST:
4453     case SVt_PVLV:
4454     case SVt_PVGV:
4455     case SVt_PVMG:
4456         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4457             mg_get(sstr);
4458             if (SvTYPE(sstr) != stype)
4459                 stype = SvTYPE(sstr);
4460         }
4461         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4462                     glob_assign_glob(dstr, sstr, dtype);
4463                     return;
4464         }
4465         if (stype == SVt_PVLV)
4466         {
4467             if (isREGEXP(sstr)) goto upgregexp;
4468             SvUPGRADE(dstr, SVt_PVNV);
4469         }
4470         else
4471             SvUPGRADE(dstr, (svtype)stype);
4472     }
4473  end_of_first_switch:
4474
4475     /* dstr may have been upgraded.  */
4476     dtype = SvTYPE(dstr);
4477     sflags = SvFLAGS(sstr);
4478
4479     if (UNLIKELY( dtype == SVt_PVCV )) {
4480         /* Assigning to a subroutine sets the prototype.  */
4481         if (SvOK(sstr)) {
4482             STRLEN len;
4483             const char *const ptr = SvPV_const(sstr, len);
4484
4485             SvGROW(dstr, len + 1);
4486             Copy(ptr, SvPVX(dstr), len + 1, char);
4487             SvCUR_set(dstr, len);
4488             SvPOK_only(dstr);
4489             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4490             CvAUTOLOAD_off(dstr);
4491         } else {
4492             SvOK_off(dstr);
4493         }
4494     }
4495     else if (UNLIKELY(dtype == SVt_PVAV || dtype == SVt_PVHV
4496              || dtype == SVt_PVFM))
4497     {
4498         const char * const type = sv_reftype(dstr,0);
4499         if (PL_op)
4500             /* diag_listed_as: Cannot copy to %s */
4501             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4502         else
4503             Perl_croak(aTHX_ "Cannot copy to %s", type);
4504     } else if (sflags & SVf_ROK) {
4505         if (isGV_with_GP(dstr)
4506             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4507             sstr = SvRV(sstr);
4508             if (sstr == dstr) {
4509                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4510                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4511                 {
4512                     GvIMPORTED_on(dstr);
4513                 }
4514                 GvMULTI_on(dstr);
4515                 return;
4516             }
4517             glob_assign_glob(dstr, sstr, dtype);
4518             return;
4519         }
4520
4521         if (dtype >= SVt_PV) {
4522             if (isGV_with_GP(dstr)) {
4523                 gv_setref(dstr, sstr);
4524                 return;
4525             }
4526             if (SvPVX_const(dstr)) {
4527                 SvPV_free(dstr);
4528                 SvLEN_set(dstr, 0);
4529                 SvCUR_set(dstr, 0);
4530             }
4531         }
4532         (void)SvOK_off(dstr);
4533         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4534         SvFLAGS(dstr) |= sflags & SVf_ROK;
4535         assert(!(sflags & SVp_NOK));
4536         assert(!(sflags & SVp_IOK));
4537         assert(!(sflags & SVf_NOK));
4538         assert(!(sflags & SVf_IOK));
4539     }
4540     else if (isGV_with_GP(dstr)) {
4541         if (!(sflags & SVf_OK)) {
4542             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4543                            "Undefined value assigned to typeglob");
4544         }
4545         else {
4546             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4547             if (dstr != (const SV *)gv) {
4548                 const char * const name = GvNAME((const GV *)dstr);
4549                 const STRLEN len = GvNAMELEN(dstr);
4550                 HV *old_stash = NULL;
4551                 bool reset_isa = FALSE;
4552                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4553                  || (len == 1 && name[0] == ':')) {
4554                     /* Set aside the old stash, so we can reset isa caches
4555                        on its subclasses. */
4556                     if((old_stash = GvHV(dstr))) {
4557                         /* Make sure we do not lose it early. */
4558                         SvREFCNT_inc_simple_void_NN(
4559                          sv_2mortal((SV *)old_stash)
4560                         );
4561                     }
4562                     reset_isa = TRUE;
4563                 }
4564
4565                 if (GvGP(dstr)) {
4566                     SvREFCNT_inc_simple_void_NN(sv_2mortal(dstr));
4567                     gp_free(MUTABLE_GV(dstr));
4568                 }
4569                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4570
4571                 if (reset_isa) {
4572                     HV * const stash = GvHV(dstr);
4573                     if(
4574                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4575                     )
4576                         mro_package_moved(
4577                          stash, old_stash,
4578                          (GV *)dstr, 0
4579                         );
4580                 }
4581             }
4582         }
4583     }
4584     else if ((dtype == SVt_REGEXP || dtype == SVt_PVLV)
4585           && (stype == SVt_REGEXP || isREGEXP(sstr))) {
4586         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4587     }
4588     else if (sflags & SVp_POK) {
4589         const STRLEN cur = SvCUR(sstr);
4590         const STRLEN len = SvLEN(sstr);
4591
4592         /*
4593          * We have three basic ways to copy the string:
4594          *
4595          *  1. Swipe
4596          *  2. Copy-on-write
4597          *  3. Actual copy
4598          * 
4599          * Which we choose is based on various factors.  The following
4600          * things are listed in order of speed, fastest to slowest:
4601          *  - Swipe
4602          *  - Copying a short string
4603          *  - Copy-on-write bookkeeping
4604          *  - malloc
4605          *  - Copying a long string
4606          * 
4607          * We swipe the string (steal the string buffer) if the SV on the
4608          * rhs is about to be freed anyway (TEMP and refcnt==1).  This is a
4609          * big win on long strings.  It should be a win on short strings if
4610          * SvPVX_const(dstr) has to be allocated.  If not, it should not 
4611          * slow things down, as SvPVX_const(sstr) would have been freed
4612          * soon anyway.
4613          * 
4614          * We also steal the buffer from a PADTMP (operator target) if it
4615          * is â€˜long enough’.  For short strings, a swipe does not help
4616          * here, as it causes more malloc calls the next time the target
4617          * is used.  Benchmarks show that even if SvPVX_const(dstr) has to
4618          * be allocated it is still not worth swiping PADTMPs for short
4619          * strings, as the savings here are small.
4620          * 
4621          * If swiping is not an option, then we see whether it is
4622          * worth using copy-on-write.  If the lhs already has a buf-
4623          * fer big enough and the string is short, we skip it and fall back
4624          * to method 3, since memcpy is faster for short strings than the
4625          * later bookkeeping overhead that copy-on-write entails.
4626
4627          * If the rhs is not a copy-on-write string yet, then we also
4628          * consider whether the buffer is too large relative to the string
4629          * it holds.  Some operations such as readline allocate a large
4630          * buffer in the expectation of reusing it.  But turning such into
4631          * a COW buffer is counter-productive because it increases memory
4632          * usage by making readline allocate a new large buffer the sec-
4633          * ond time round.  So, if the buffer is too large, again, we use
4634          * method 3 (copy).
4635          * 
4636          * Finally, if there is no buffer on the left, or the buffer is too 
4637          * small, then we use copy-on-write and make both SVs share the
4638          * string buffer.
4639          *
4640          */
4641
4642         /* Whichever path we take through the next code, we want this true,
4643            and doing it now facilitates the COW check.  */
4644         (void)SvPOK_only(dstr);
4645
4646         if (
4647                  (              /* Either ... */
4648                                 /* slated for free anyway (and not COW)? */
4649                     (sflags & (SVs_TEMP|SVf_IsCOW)) == SVs_TEMP
4650                                 /* or a swipable TARG */
4651                  || ((sflags &
4652                            (SVs_PADTMP|SVf_READONLY|SVf_PROTECT|SVf_IsCOW))
4653                        == SVs_PADTMP
4654                                 /* whose buffer is worth stealing */
4655                      && CHECK_COWBUF_THRESHOLD(cur,len)
4656                     )
4657                  ) &&
4658                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4659                  (!(flags & SV_NOSTEAL)) &&
4660                                         /* and we're allowed to steal temps */
4661                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4662                  len)             /* and really is a string */
4663         {       /* Passes the swipe test.  */
4664             if (SvPVX_const(dstr))      /* we know that dtype >= SVt_PV */
4665                 SvPV_free(dstr);
4666             SvPV_set(dstr, SvPVX_mutable(sstr));
4667             SvLEN_set(dstr, SvLEN(sstr));
4668             SvCUR_set(dstr, SvCUR(sstr));
4669
4670             SvTEMP_off(dstr);
4671             (void)SvOK_off(sstr);       /* NOTE: nukes most SvFLAGS on sstr */
4672             SvPV_set(sstr, NULL);
4673             SvLEN_set(sstr, 0);
4674             SvCUR_set(sstr, 0);
4675             SvTEMP_off(sstr);
4676         }
4677         else if (flags & SV_COW_SHARED_HASH_KEYS
4678               &&
4679 #ifdef PERL_COPY_ON_WRITE
4680                  (sflags & SVf_IsCOW
4681                    ? (!len ||
4682                        (  (CHECK_COWBUF_THRESHOLD(cur,len) || SvLEN(dstr) < cur+1)
4683                           /* If this is a regular (non-hek) COW, only so
4684                              many COW "copies" are possible. */
4685                        && CowREFCNT(sstr) != SV_COW_REFCNT_MAX  ))
4686                    : (  (sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4687                      && !(SvFLAGS(dstr) & SVf_BREAK)
4688                      && CHECK_COW_THRESHOLD(cur,len) && cur+1 < len
4689                      && (CHECK_COWBUF_THRESHOLD(cur,len) || SvLEN(dstr) < cur+1)
4690                     ))
4691 #else
4692                  sflags & SVf_IsCOW
4693               && !(SvFLAGS(dstr) & SVf_BREAK)
4694 #endif
4695             ) {
4696             /* Either it's a shared hash key, or it's suitable for
4697                copy-on-write.  */
4698 #ifdef DEBUGGING
4699             if (DEBUG_C_TEST) {
4700                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4701                 sv_dump(sstr);
4702                 sv_dump(dstr);
4703             }
4704 #endif
4705 #ifdef PERL_ANY_COW
4706             if (!(sflags & SVf_IsCOW)) {
4707                     SvIsCOW_on(sstr);
4708                     CowREFCNT(sstr) = 0;
4709             }
4710 #endif
4711             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4712                 SvPV_free(dstr);
4713             }
4714
4715 #ifdef PERL_ANY_COW
4716             if (len) {
4717                     if (sflags & SVf_IsCOW) {
4718                         sv_buf_to_rw(sstr);
4719                     }
4720                     CowREFCNT(sstr)++;
4721                     SvPV_set(dstr, SvPVX_mutable(sstr));
4722                     sv_buf_to_ro(sstr);
4723             } else
4724 #endif
4725             {
4726                     /* SvIsCOW_shared_hash */
4727                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4728                                           "Copy on write: Sharing hash\n"));
4729
4730                     assert (SvTYPE(dstr) >= SVt_PV);
4731                     SvPV_set(dstr,
4732                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4733             }
4734             SvLEN_set(dstr, len);
4735             SvCUR_set(dstr, cur);
4736             SvIsCOW_on(dstr);
4737         } else {
4738             /* Failed the swipe test, and we cannot do copy-on-write either.
4739                Have to copy the string.  */
4740             SvGROW(dstr, cur + 1);      /* inlined from sv_setpvn */
4741             Move(SvPVX_const(sstr),SvPVX(dstr),cur,char);
4742             SvCUR_set(dstr, cur);
4743             *SvEND(dstr) = '\0';
4744         }
4745         if (sflags & SVp_NOK) {
4746             SvNV_set(dstr, SvNVX(sstr));
4747         }
4748         if (sflags & SVp_IOK) {
4749             SvIV_set(dstr, SvIVX(sstr));
4750             if (sflags & SVf_IVisUV)
4751                 SvIsUV_on(dstr);
4752         }
4753         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4754         {
4755             const MAGIC * const smg = SvVSTRING_mg(sstr);
4756             if (smg) {
4757                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4758                          smg->mg_ptr, smg->mg_len);
4759                 SvRMAGICAL_on(dstr);
4760             }
4761         }
4762     }
4763     else if (sflags & (SVp_IOK|SVp_NOK)) {
4764         (void)SvOK_off(dstr);
4765         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4766         if (sflags & SVp_IOK) {
4767             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4768             SvIV_set(dstr, SvIVX(sstr));
4769         }
4770         if (sflags & SVp_NOK) {
4771             SvNV_set(dstr, SvNVX(sstr));
4772         }
4773     }
4774     else {
4775         if (isGV_with_GP(sstr)) {
4776             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4777         }
4778         else
4779             (void)SvOK_off(dstr);
4780     }
4781     if (SvTAINTED(sstr))
4782         SvTAINT(dstr);
4783 }
4784
4785
4786 /*
4787 =for apidoc sv_set_undef
4788
4789 Equivalent to C<sv_setsv(sv, &PL_sv_undef)>, but more efficient.
4790 Doesn't handle set magic.
4791
4792 The perl equivalent is C<$sv = undef;>. Note that it doesn't free any string
4793 buffer, unlike C<undef $sv>.
4794
4795 Introduced in perl 5.25.12.
4796
4797 =cut
4798 */
4799
4800 void
4801 Perl_sv_set_undef(pTHX_ SV *sv)
4802 {
4803     U32 type = SvTYPE(sv);
4804
4805     PERL_ARGS_ASSERT_SV_SET_UNDEF;
4806
4807     /* shortcut, NULL, IV, RV */
4808
4809     if (type <= SVt_IV) {
4810         assert(!SvGMAGICAL(sv));
4811         if (SvREADONLY(sv)) {
4812             /* does undeffing PL_sv_undef count as modifying a read-only
4813              * variable? Some XS code does this */
4814             if (sv == &PL_sv_undef)
4815                 return;
4816             Perl_croak_no_modify();
4817         }
4818
4819         if (SvROK(sv)) {
4820             if (SvWEAKREF(sv))
4821                 sv_unref_flags(sv, 0);
4822             else {
4823                 SV *rv = SvRV(sv);
4824                 SvFLAGS(sv) = type; /* quickly turn off all flags */
4825                 SvREFCNT_dec_NN(rv);
4826                 return;
4827             }
4828         }
4829         SvFLAGS(sv) = type; /* quickly turn off all flags */
4830         return;
4831     }
4832
4833     if (SvIS_FREED(sv))
4834         Perl_croak(aTHX_ "panic: attempt to undefine a freed scalar %p",
4835             (void *)sv);
4836
4837     SV_CHECK_THINKFIRST_COW_DROP(sv);
4838
4839     if (isGV_with_GP(sv))
4840         Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4841                        "Undefined value assigned to typeglob");
4842     else
4843         SvOK_off(sv);
4844 }
4845
4846
4847
4848 /*
4849 =for apidoc sv_setsv_mg
4850
4851 Like C<sv_setsv>, but also handles 'set' magic.
4852
4853 =cut
4854 */
4855
4856 void
4857 Perl_sv_setsv_mg(pTHX_ SV *const dstr, SV *const sstr)
4858 {
4859     PERL_ARGS_ASSERT_SV_SETSV_MG;
4860
4861     sv_setsv(dstr,sstr);
4862     SvSETMAGIC(dstr);
4863 }
4864
4865 #ifdef PERL_ANY_COW
4866 #  define SVt_COW SVt_PV
4867 SV *
4868 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4869 {
4870     STRLEN cur = SvCUR(sstr);
4871     STRLEN len = SvLEN(sstr);
4872     char *new_pv;
4873 #if defined(PERL_DEBUG_READONLY_COW) && defined(PERL_COPY_ON_WRITE)
4874     const bool already = cBOOL(SvIsCOW(sstr));
4875 #endif
4876
4877     PERL_ARGS_ASSERT_SV_SETSV_COW;
4878 #ifdef DEBUGGING
4879     if (DEBUG_C_TEST) {
4880         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4881                       (void*)sstr, (void*)dstr);
4882         sv_dump(sstr);
4883         if (dstr)
4884                     sv_dump(dstr);
4885     }
4886 #endif
4887     if (dstr) {
4888         if (SvTHINKFIRST(dstr))
4889             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4890         else if (SvPVX_const(dstr))
4891             Safefree(SvPVX_mutable(dstr));
4892     }
4893     else
4894         new_SV(dstr);
4895     SvUPGRADE(dstr, SVt_COW);
4896
4897     assert (SvPOK(sstr));
4898     assert (SvPOKp(sstr));
4899
4900     if (SvIsCOW(sstr)) {
4901
4902         if (SvLEN(sstr) == 0) {
4903             /* source is a COW shared hash key.  */
4904             DEBUG_C(PerlIO_printf(Perl_debug_log,
4905                                   "Fast copy on write: Sharing hash\n"));
4906             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4907             goto common_exit;
4908         }
4909         assert(SvCUR(sstr)+1 < SvLEN(sstr));
4910         assert(CowREFCNT(sstr) < SV_COW_REFCNT_MAX);
4911     } else {
4912         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4913         SvUPGRADE(sstr, SVt_COW);
4914         SvIsCOW_on(sstr);
4915         DEBUG_C(PerlIO_printf(Perl_debug_log,
4916                               "Fast copy on write: Converting sstr to COW\n"));
4917         CowREFCNT(sstr) = 0;    
4918     }
4919 #  ifdef PERL_DEBUG_READONLY_COW
4920     if (already) sv_buf_to_rw(sstr);
4921 #  endif
4922     CowREFCNT(sstr)++;  
4923     new_pv = SvPVX_mutable(sstr);
4924     sv_buf_to_ro(sstr);
4925
4926   common_exit:
4927     SvPV_set(dstr, new_pv);
4928     SvFLAGS(dstr) = (SVt_COW|SVf_POK|SVp_POK|SVf_IsCOW);
4929     if (SvUTF8(sstr))
4930         SvUTF8_on(dstr);
4931     SvLEN_set(dstr, len);
4932     SvCUR_set(dstr, cur);
4933 #ifdef DEBUGGING
4934     if (DEBUG_C_TEST)
4935                 sv_dump(dstr);
4936 #endif
4937     return dstr;
4938 }
4939 #endif
4940
4941 /*
4942 =for apidoc sv_setpv_bufsize
4943
4944 Sets the SV to be a string of cur bytes length, with at least
4945 len bytes available. Ensures that there is a null byte at SvEND.
4946 Returns a char * pointer to the SvPV buffer.
4947
4948 =cut
4949 */
4950
4951 char *
4952 Perl_sv_setpv_bufsize(pTHX_ SV *const sv, const STRLEN cur, const STRLEN len)
4953 {
4954     char *pv;
4955
4956     PERL_ARGS_ASSERT_SV_SETPV_BUFSIZE;
4957
4958     SV_CHECK_THINKFIRST_COW_DROP(sv);
4959     SvUPGRADE(sv, SVt_PV);
4960     pv = SvGROW(sv, len + 1);
4961     SvCUR_set(sv, cur);
4962     *(SvEND(sv))= '\0';
4963     (void)SvPOK_only_UTF8(sv);                /* validate pointer */
4964
4965     SvTAINT(sv);
4966     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4967     return pv;
4968 }
4969
4970 /*
4971 =for apidoc sv_setpvn
4972
4973 Copies a string (possibly containing embedded C<NUL> characters) into an SV.
4974 The C<len> parameter indicates the number of
4975 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4976 undefined.  Does not handle 'set' magic.  See C<L</sv_setpvn_mg>>.
4977
4978 =cut
4979 */
4980
4981 void
4982 Perl_sv_setpvn(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4983 {
4984     char *dptr;
4985
4986     PERL_ARGS_ASSERT_SV_SETPVN;
4987
4988     SV_CHECK_THINKFIRST_COW_DROP(sv);
4989     if (isGV_with_GP(sv))
4990         Perl_croak_no_modify();
4991     if (!ptr) {
4992         (void)SvOK_off(sv);
4993         return;
4994     }
4995     else {
4996         /* len is STRLEN which is unsigned, need to copy to signed */
4997         const IV iv = len;
4998         if (iv < 0)
4999             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen %"
5000                        IVdf, iv);
5001     }
5002     SvUPGRADE(sv, SVt_PV);
5003
5004     dptr = SvGROW(sv, len + 1);
5005     Move(ptr,dptr,len,char);
5006     dptr[len] = '\0';
5007     SvCUR_set(sv, len);
5008     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5009     SvTAINT(sv);
5010     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
5011 }
5012
5013 /*
5014 =for apidoc sv_setpvn_mg
5015
5016 Like C<sv_setpvn>, but also handles 'set' magic.
5017
5018 =cut
5019 */
5020
5021 void
5022 Perl_sv_setpvn_mg(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
5023 {
5024     PERL_ARGS_ASSERT_SV_SETPVN_MG;
5025
5026     sv_setpvn(sv,ptr,len);
5027     SvSETMAGIC(sv);
5028 }
5029
5030 /*
5031 =for apidoc sv_setpv
5032
5033 Copies a string into an SV.  The string must be terminated with a C<NUL>
5034 character, and not contain embeded C<NUL>'s.
5035 Does not handle 'set' magic.  See C<L</sv_setpv_mg>>.
5036
5037 =cut
5038 */
5039
5040 void
5041 Perl_sv_setpv(pTHX_ SV *const sv, const char *const ptr)
5042 {
5043     STRLEN len;
5044
5045     PERL_ARGS_ASSERT_SV_SETPV;
5046
5047     SV_CHECK_THINKFIRST_COW_DROP(sv);
5048     if (!ptr) {
5049         (void)SvOK_off(sv);
5050         return;
5051     }
5052     len = strlen(ptr);
5053     SvUPGRADE(sv, SVt_PV);
5054
5055     SvGROW(sv, len + 1);
5056     Move(ptr,SvPVX(sv),len+1,char);
5057     SvCUR_set(sv, len);
5058     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5059     SvTAINT(sv);
5060     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
5061 }
5062
5063 /*
5064 =for apidoc sv_setpv_mg
5065
5066 Like C<sv_setpv>, but also handles 'set' magic.
5067
5068 =cut
5069 */
5070
5071 void
5072 Perl_sv_setpv_mg(pTHX_ SV *const sv, const char *const ptr)
5073 {
5074     PERL_ARGS_ASSERT_SV_SETPV_MG;
5075
5076     sv_setpv(sv,ptr);
5077     SvSETMAGIC(sv);
5078 }
5079
5080 void
5081 Perl_sv_sethek(pTHX_ SV *const sv, const HEK *const hek)
5082 {
5083     PERL_ARGS_ASSERT_SV_SETHEK;
5084
5085     if (!hek) {
5086         return;
5087     }
5088
5089     if (HEK_LEN(hek) == HEf_SVKEY) {
5090         sv_setsv(sv, *(SV**)HEK_KEY(hek));
5091         return;
5092     } else {
5093         const int flags = HEK_FLAGS(hek);
5094         if (flags & HVhek_WASUTF8) {
5095             STRLEN utf8_len = HEK_LEN(hek);
5096             char *as_utf8 = (char *)bytes_to_utf8((U8*)HEK_KEY(hek), &utf8_len);
5097             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
5098             SvUTF8_on(sv);
5099             return;
5100         } else if (flags & HVhek_UNSHARED) {
5101             sv_setpvn(sv, HEK_KEY(hek), HEK_LEN(hek));
5102             if (HEK_UTF8(hek))
5103                 SvUTF8_on(sv);
5104             else SvUTF8_off(sv);
5105             return;
5106         }
5107         {
5108             SV_CHECK_THINKFIRST_COW_DROP(sv);
5109             SvUPGRADE(sv, SVt_PV);
5110             SvPV_free(sv);
5111             SvPV_set(sv,(char *)HEK_KEY(share_hek_hek(hek)));
5112             SvCUR_set(sv, HEK_LEN(hek));
5113             SvLEN_set(sv, 0);
5114             SvIsCOW_on(sv);
5115             SvPOK_on(sv);
5116             if (HEK_UTF8(hek))
5117                 SvUTF8_on(sv);
5118             else SvUTF8_off(sv);
5119             return;
5120         }
5121     }
5122 }
5123
5124
5125 /*
5126 =for apidoc sv_usepvn_flags
5127
5128 Tells an SV to use C<ptr> to find its string value.  Normally the
5129 string is stored inside the SV, but sv_usepvn allows the SV to use an
5130 outside string.  C<ptr> should point to memory that was allocated
5131 by L<C<Newx>|perlclib/Memory Management and String Handling>.  It must be
5132 the start of a C<Newx>-ed block of memory, and not a pointer to the
5133 middle of it (beware of L<C<OOK>|perlguts/Offsets> and copy-on-write),
5134 and not be from a non-C<Newx> memory allocator like C<malloc>.  The
5135 string length, C<len>, must be supplied.  By default this function
5136 will C<Renew> (i.e. realloc, move) the memory pointed to by C<ptr>,
5137 so that pointer should not be freed or used by the programmer after
5138 giving it to C<sv_usepvn>, and neither should any pointers from "behind"
5139 that pointer (e.g. ptr + 1) be used.
5140
5141 If S<C<flags & SV_SMAGIC>> is true, will call C<SvSETMAGIC>.  If
5142 S<C<flags> & SV_HAS_TRAILING_NUL>> is true, then C<ptr[len]> must be C<NUL>,
5143 and the realloc
5144 will be skipped (i.e. the buffer is actually at least 1 byte longer than
5145 C<len>, and already meets the requirements for storing in C<SvPVX>).
5146
5147 =cut
5148 */
5149
5150 void
5151 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
5152 {
5153     STRLEN allocate;
5154
5155     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
5156
5157     SV_CHECK_THINKFIRST_COW_DROP(sv);
5158     SvUPGRADE(sv, SVt_PV);
5159     if (!ptr) {
5160         (void)SvOK_off(sv);
5161         if (flags & SV_SMAGIC)
5162             SvSETMAGIC(sv);
5163         return;
5164     }
5165     if (SvPVX_const(sv))
5166         SvPV_free(sv);
5167
5168 #ifdef DEBUGGING
5169     if (flags & SV_HAS_TRAILING_NUL)
5170         assert(ptr[len] == '\0');
5171 #endif
5172
5173     allocate = (flags & SV_HAS_TRAILING_NUL)
5174         ? len + 1 :
5175 #ifdef Perl_safesysmalloc_size
5176         len + 1;
5177 #else 
5178         PERL_STRLEN_ROUNDUP(len + 1);
5179 #endif
5180     if (flags & SV_HAS_TRAILING_NUL) {
5181         /* It's long enough - do nothing.
5182            Specifically Perl_newCONSTSUB is relying on this.  */
5183     } else {
5184 #ifdef DEBUGGING
5185         /* Force a move to shake out bugs in callers.  */
5186         char *new_ptr = (char*)safemalloc(allocate);
5187         Copy(ptr, new_ptr, len, char);
5188         PoisonFree(ptr,len,char);
5189         Safefree(ptr);
5190         ptr = new_ptr;
5191 #else
5192         ptr = (char*) saferealloc (ptr, allocate);
5193 #endif
5194     }
5195 #ifdef Perl_safesysmalloc_size
5196     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
5197 #else
5198     SvLEN_set(sv, allocate);
5199 #endif
5200     SvCUR_set(sv, len);
5201     SvPV_set(sv, ptr);
5202     if (!(flags & SV_HAS_TRAILING_NUL)) {
5203         ptr[len] = '\0';
5204     }
5205     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5206     SvTAINT(sv);
5207     if (flags & SV_SMAGIC)
5208         SvSETMAGIC(sv);
5209 }
5210
5211
5212 static void
5213 S_sv_uncow(pTHX_ SV * const sv, const U32 flags)
5214 {
5215     assert(SvIsCOW(sv));
5216     {
5217 #ifdef PERL_ANY_COW
5218         const char * const pvx = SvPVX_const(sv);
5219         const STRLEN len = SvLEN(sv);
5220         const STRLEN cur = SvCUR(sv);
5221
5222 #ifdef DEBUGGING
5223         if (DEBUG_C_TEST) {
5224                 PerlIO_printf(Perl_debug_log,
5225                               "Copy on write: Force normal %ld\n",
5226                               (long) flags);
5227                 sv_dump(sv);
5228         }
5229 #endif
5230         SvIsCOW_off(sv);
5231 # ifdef PERL_COPY_ON_WRITE
5232         if (len) {
5233             /* Must do this first, since the CowREFCNT uses SvPVX and
5234             we need to write to CowREFCNT, or de-RO the whole buffer if we are
5235             the only owner left of the buffer. */
5236             sv_buf_to_rw(sv); /* NOOP if RO-ing not supported */
5237             {
5238                 U8 cowrefcnt = CowREFCNT(sv);
5239                 if(cowrefcnt != 0) {
5240                     cowrefcnt--;
5241                     CowREFCNT(sv) = cowrefcnt;
5242                     sv_buf_to_ro(sv);
5243                     goto copy_over;
5244                 }
5245             }
5246             /* Else we are the only owner of the buffer. */
5247         }
5248         else
5249 # endif
5250         {
5251             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
5252             copy_over:
5253             SvPV_set(sv, NULL);
5254             SvCUR_set(sv, 0);
5255             SvLEN_set(sv, 0);
5256             if (flags & SV_COW_DROP_PV) {
5257                 /* OK, so we don't need to copy our buffer.  */
5258                 SvPOK_off(sv);
5259             } else {
5260                 SvGROW(sv, cur + 1);
5261                 Move(pvx,SvPVX(sv),cur,char);
5262                 SvCUR_set(sv, cur);
5263                 *SvEND(sv) = '\0';
5264             }
5265             if (len) {
5266             } else {
5267                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
5268             }
5269 #ifdef DEBUGGING
5270             if (DEBUG_C_TEST)
5271                 sv_dump(sv);
5272 #endif
5273         }
5274 #else
5275             const char * const pvx = SvPVX_const(sv);
5276             const STRLEN len = SvCUR(sv);
5277             SvIsCOW_off(sv);
5278             SvPV_set(sv, NULL);
5279             SvLEN_set(sv, 0);
5280             if (flags & SV_COW_DROP_PV) {
5281                 /* OK, so we don't need to copy our buffer.  */
5282                 SvPOK_off(sv);
5283             } else {
5284                 SvGROW(sv, len + 1);
5285                 Move(pvx,SvPVX(sv),len,char);
5286                 *SvEND(sv) = '\0';
5287             }
5288             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
5289 #endif
5290     }
5291 }
5292
5293
5294 /*
5295 =for apidoc sv_force_normal_flags
5296
5297 Undo various types of fakery on an SV, where fakery means
5298 "more than" a string: if the PV is a shared string, make
5299 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
5300 an C<xpvmg>; if we're a copy-on-write scalar, this is the on-write time when
5301 we do the copy, and is also used locally; if this is a
5302 vstring, drop the vstring magic.  If C<SV_COW_DROP_PV> is set
5303 then a copy-on-write scalar drops its PV buffer (if any) and becomes
5304 C<SvPOK_off> rather than making a copy.  (Used where this
5305 scalar is about to be set to some other value.)  In addition,
5306 the C<flags> parameter gets passed to C<sv_unref_flags()>
5307 when unreffing.  C<sv_force_normal> calls this function
5308 with flags set to 0.
5309
5310 This function is expected to be used to signal to perl that this SV is
5311 about to be written to, and any extra book-keeping needs to be taken care
5312 of.  Hence, it croaks on read-only values.
5313
5314 =cut
5315 */
5316
5317 void
5318 Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags)
5319 {
5320     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
5321
5322     if (SvREADONLY(sv))
5323         Perl_croak_no_modify();
5324     else if (SvIsCOW(sv) && LIKELY(SvTYPE(sv) != SVt_PVHV))
5325         S_sv_uncow(aTHX_ sv, flags);
5326     if (SvROK(sv))
5327         sv_unref_flags(sv, flags);
5328     else if (SvFAKE(sv) && isGV_with_GP(sv))
5329         sv_unglob(sv, flags);
5330     else if (SvFAKE(sv) && isREGEXP(sv)) {
5331         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
5332            to sv_unglob. We only need it here, so inline it.  */
5333         const bool islv = SvTYPE(sv) == SVt_PVLV;
5334         const svtype new_type =
5335           islv ? SVt_NULL : SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
5336         SV *const temp = newSV_type(new_type);
5337         regexp *old_rx_body;
5338
5339         if (new_type == SVt_PVMG) {
5340             SvMAGIC_set(temp, SvMAGIC(sv));
5341             SvMAGIC_set(sv, NULL);
5342             SvSTASH_set(temp, SvSTASH(sv));
5343             SvSTASH_set(sv, NULL);
5344         }
5345         if (!islv)
5346             SvCUR_set(temp, SvCUR(sv));
5347         /* Remember that SvPVX is in the head, not the body. */
5348         assert(ReANY((REGEXP *)sv)->mother_re);
5349
5350         if (islv) {
5351             /* LV-as-regex has sv->sv_any pointing to an XPVLV body,
5352              * whose xpvlenu_rx field points to the regex body */
5353             XPV *xpv = (XPV*)(SvANY(sv));
5354             old_rx_body = xpv->xpv_len_u.xpvlenu_rx;
5355             xpv->xpv_len_u.xpvlenu_rx = NULL;
5356         }
5357         else
5358             old_rx_body = ReANY((REGEXP *)sv);
5359
5360         /* Their buffer is already owned by someone else. */
5361         if (flags & SV_COW_DROP_PV) {
5362             /* SvLEN is already 0.  For SVt_REGEXP, we have a brand new
5363                zeroed body.  For SVt_PVLV, we zeroed it above (len field
5364                a union with xpvlenu_rx) */
5365             assert(!SvLEN(islv ? sv : temp));
5366             sv->sv_u.svu_pv = 0;
5367         }
5368         else {
5369             sv->sv_u.svu_pv = savepvn(RX_WRAPPED((REGEXP *)sv), SvCUR(sv));
5370             SvLEN_set(islv ? sv : temp, SvCUR(sv)+1);
5371             SvPOK_on(sv);
5372         }
5373
5374         /* Now swap the rest of the bodies. */
5375
5376         SvFAKE_off(sv);
5377         if (!islv) {
5378             SvFLAGS(sv) &= ~SVTYPEMASK;
5379             SvFLAGS(sv) |= new_type;
5380             SvANY(sv) = SvANY(temp);
5381         }
5382
5383         SvFLAGS(temp) &= ~(SVTYPEMASK);
5384         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
5385         SvANY(temp) = old_rx_body;
5386
5387         SvREFCNT_dec_NN(temp);
5388     }
5389     else if (SvVOK(sv)) sv_unmagic(sv, PERL_MAGIC_vstring);
5390 }
5391
5392 /*
5393 =for apidoc sv_chop
5394
5395 Efficient removal of characters from the beginning of the string buffer.
5396 C<SvPOK(sv)>, or at least C<SvPOKp(sv)>, must be true and C<ptr> must be a
5397 pointer to somewhere inside the string buffer.  C<ptr> becomes the first
5398 character of the adjusted string.  Uses the C<OOK> hack.  On return, only
5399 C<SvPOK(sv)> and C<SvPOKp(sv)> among the C<OK> flags will be true.
5400
5401 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
5402 refer to the same chunk of data.
5403
5404 The unfortunate similarity of this function's name to that of Perl's C<chop>
5405 operator is strictly coincidental.  This function works from the left;
5406 C<chop> works from the right.
5407
5408 =cut
5409 */
5410
5411 void
5412 Perl_sv_chop(pTHX_ SV *const sv, const char *const ptr)
5413 {
5414     STRLEN delta;
5415     STRLEN old_delta;
5416     U8 *p;
5417 #ifdef DEBUGGING
5418     const U8 *evacp;
5419     STRLEN evacn;
5420 #endif
5421     STRLEN max_delta;
5422
5423     PERL_ARGS_ASSERT_SV_CHOP;
5424
5425     if (!ptr || !SvPOKp(sv))
5426         return;
5427     delta = ptr - SvPVX_const(sv);
5428     if (!delta) {
5429         /* Nothing to do.  */
5430         return;
5431     }
5432     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
5433     if (delta > max_delta)
5434         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
5435                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
5436     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), so don't use ptr any more */
5437     SV_CHECK_THINKFIRST(sv);
5438     SvPOK_only_UTF8(sv);
5439
5440     if (!SvOOK(sv)) {
5441         if (!SvLEN(sv)) { /* make copy of shared string */
5442             const char *pvx = SvPVX_const(sv);
5443             const STRLEN len = SvCUR(sv);
5444             SvGROW(sv, len + 1);
5445             Move(pvx,SvPVX(sv),len,char);
5446             *SvEND(sv) = '\0';
5447         }
5448         SvOOK_on(sv);
5449         old_delta = 0;
5450     } else {
5451         SvOOK_offset(sv, old_delta);
5452     }
5453     SvLEN_set(sv, SvLEN(sv) - delta);
5454     SvCUR_set(sv, SvCUR(sv) - delta);
5455     SvPV_set(sv, SvPVX(sv) + delta);
5456
5457     p = (U8 *)SvPVX_const(sv);
5458
5459 #ifdef DEBUGGING
5460     /* how many bytes were evacuated?  we will fill them with sentinel
5461        bytes, except for the part holding the new offset of course. */
5462     evacn = delta;
5463     if (old_delta)
5464         evacn += (old_delta < 0x100 ? 1 : 1 + sizeof(STRLEN));
5465     assert(evacn);
5466     assert(evacn <= delta + old_delta);
5467     evacp = p - evacn;
5468 #endif
5469
5470     /* This sets 'delta' to the accumulated value of all deltas so far */
5471     delta += old_delta;
5472     assert(delta);
5473
5474     /* If 'delta' fits in a byte, store it just prior to the new beginning of
5475      * the string; otherwise store a 0 byte there and store 'delta' just prior
5476      * to that, using as many bytes as a STRLEN occupies.  Thus it overwrites a
5477      * portion of the chopped part of the string */
5478     if (delta < 0x100) {
5479         *--p = (U8) delta;
5480     } else {
5481         *--p = 0;
5482         p -= sizeof(STRLEN);
5483         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
5484     }
5485
5486 #ifdef DEBUGGING
5487     /* Fill the preceding buffer with sentinals to verify that no-one is
5488        using it.  */
5489     while (p > evacp) {
5490         --p;
5491         *p = (U8)PTR2UV(p);
5492     }
5493 #endif
5494 }
5495
5496 /*
5497 =for apidoc sv_catpvn
5498
5499 Concatenates the string onto the end of the string which is in the SV.
5500 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5501 status set, then the bytes appended should be valid UTF-8.
5502 Handles 'get' magic, but not 'set' magic.  See C<L</sv_catpvn_mg>>.
5503
5504 =for apidoc sv_catpvn_flags
5505
5506 Concatenates the string onto the end of the string which is in the SV.  The
5507 C<len> indicates number of bytes to copy.
5508
5509 By default, the string appended is assumed to be valid UTF-8 if the SV has
5510 the UTF-8 status set, and a string of bytes otherwise.  One can force the
5511 appended string to be interpreted as UTF-8 by supplying the C<SV_CATUTF8>
5512 flag, and as bytes by supplying the C<SV_CATBYTES> flag; the SV or the
5513 string appended will be upgraded to UTF-8 if necessary.
5514
5515 If C<flags> has the C<SV_SMAGIC> bit set, will
5516 C<mg_set> on C<dsv> afterwards if appropriate.
5517 C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5518 in terms of this function.
5519
5520 =cut
5521 */
5522
5523 void
5524 Perl_sv_catpvn_flags(pTHX_ SV *const dsv, const char *sstr, const STRLEN slen, const I32 flags)
5525 {
5526     STRLEN dlen;
5527     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
5528
5529     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
5530     assert((flags & (SV_CATBYTES|SV_CATUTF8)) != (SV_CATBYTES|SV_CATUTF8));
5531
5532     if (!(flags & SV_CATBYTES) || !SvUTF8(dsv)) {
5533       if (flags & SV_CATUTF8 && !SvUTF8(dsv)) {
5534          sv_utf8_upgrade_flags_grow(dsv, 0, slen + 1);
5535          dlen = SvCUR(dsv);
5536       }
5537       else SvGROW(dsv, dlen + slen + 3);
5538       if (sstr == dstr)
5539         sstr = SvPVX_const(dsv);
5540       Move(sstr, SvPVX(dsv) + dlen, slen, char);
5541       SvCUR_set(dsv, SvCUR(dsv) + slen);
5542     }
5543     else {
5544         /* We inline bytes_to_utf8, to avoid an extra malloc. */
5545         const char * const send = sstr + slen;
5546         U8 *d;
5547
5548         /* Something this code does not account for, which I think is
5549            impossible; it would require the same pv to be treated as
5550            bytes *and* utf8, which would indicate a bug elsewhere. */
5551         assert(sstr != dstr);
5552
5553         SvGROW(dsv, dlen + slen * 2 + 3);
5554         d = (U8 *)SvPVX(dsv) + dlen;
5555
5556         while (sstr < send) {
5557             append_utf8_from_native_byte(*sstr, &d);
5558             sstr++;
5559         }
5560         SvCUR_set(dsv, d-(const U8 *)SvPVX(dsv));
5561     }
5562     *SvEND(dsv) = '\0';
5563     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5564     SvTAINT(dsv);
5565     if (flags & SV_SMAGIC)
5566         SvSETMAGIC(dsv);
5567 }
5568
5569 /*
5570 =for apidoc sv_catsv
5571
5572 Concatenates the string from SV C<ssv> onto the end of the string in SV
5573 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5574 Handles 'get' magic on both SVs, but no 'set' magic.  See C<L</sv_catsv_mg>>
5575 and C<L</sv_catsv_nomg>>.
5576
5577 =for apidoc sv_catsv_flags
5578
5579 Concatenates the string from SV C<ssv> onto the end of the string in SV
5580 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5581 If C<flags> has the C<SV_GMAGIC> bit set, will call C<mg_get> on both SVs if
5582 appropriate.  If C<flags> has the C<SV_SMAGIC> bit set, C<mg_set> will be called on
5583 the modified SV afterward, if appropriate.  C<sv_catsv>, C<sv_catsv_nomg>,
5584 and C<sv_catsv_mg> are implemented in terms of this function.
5585
5586 =cut */
5587
5588 void
5589 Perl_sv_catsv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
5590 {
5591     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
5592
5593     if (ssv) {
5594         STRLEN slen;
5595         const char *spv = SvPV_flags_const(ssv, slen, flags);
5596         if (flags & SV_GMAGIC)
5597                 SvGETMAGIC(dsv);
5598         sv_catpvn_flags(dsv, spv, slen,
5599                             DO_UTF8(ssv) ? SV_CATUTF8 : SV_CATBYTES);
5600         if (flags & SV_SMAGIC)
5601                 SvSETMAGIC(dsv);
5602     }
5603 }
5604
5605 /*
5606 =for apidoc sv_catpv
5607
5608 Concatenates the C<NUL>-terminated string onto the end of the string which is
5609 in the SV.
5610 If the SV has the UTF-8 status set, then the bytes appended should be
5611 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See
5612 C<L</sv_catpv_mg>>.
5613
5614 =cut */
5615
5616 void
5617 Perl_sv_catpv(pTHX_ SV *const sv, const char *ptr)
5618 {
5619     STRLEN len;
5620     STRLEN tlen;
5621     char *junk;
5622
5623     PERL_ARGS_ASSERT_SV_CATPV;
5624
5625     if (!ptr)
5626         return;
5627     junk = SvPV_force(sv, tlen);
5628     len = strlen(ptr);
5629     SvGROW(sv, tlen + len + 1);
5630     if (ptr == junk)
5631         ptr = SvPVX_const(sv);
5632     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5633     SvCUR_set(sv, SvCUR(sv) + len);
5634     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5635     SvTAINT(sv);
5636 }
5637
5638 /*
5639 =for apidoc sv_catpv_flags
5640
5641 Concatenates the C<NUL>-terminated string onto the end of the string which is
5642 in the SV.
5643 If the SV has the UTF-8 status set, then the bytes appended should
5644 be valid UTF-8.  If C<flags> has the C<SV_SMAGIC> bit set, will C<mg_set>
5645 on the modified SV if appropriate.
5646
5647 =cut
5648 */
5649
5650 void
5651 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5652 {
5653     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5654     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5655 }
5656
5657 /*
5658 =for apidoc sv_catpv_mg
5659
5660 Like C<sv_catpv>, but also handles 'set' magic.
5661
5662 =cut
5663 */
5664
5665 void
5666 Perl_sv_catpv_mg(pTHX_ SV *const sv, const char *const ptr)
5667 {
5668     PERL_ARGS_ASSERT_SV_CATPV_MG;
5669
5670     sv_catpv(sv,ptr);
5671     SvSETMAGIC(sv);
5672 }
5673
5674 /*
5675 =for apidoc newSV
5676
5677 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5678 bytes of preallocated string space the SV should have.  An extra byte for a
5679 trailing C<NUL> is also reserved.  (C<SvPOK> is not set for the SV even if string
5680 space is allocated.)  The reference count for the new SV is set to 1.
5681
5682 In 5.9.3, C<newSV()> replaces the older C<NEWSV()> API, and drops the first
5683 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5684 This aid has been superseded by a new build option, C<PERL_MEM_LOG> (see
5685 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5686 modules supporting older perls.
5687
5688 =cut
5689 */
5690
5691 SV *
5692 Perl_newSV(pTHX_ const STRLEN len)
5693 {
5694     SV *sv;
5695
5696     new_SV(sv);
5697     if (len) {
5698         sv_grow(sv, len + 1);
5699     }
5700     return sv;
5701 }
5702 /*
5703 =for apidoc sv_magicext
5704
5705 Adds magic to an SV, upgrading it if necessary.  Applies the
5706 supplied C<vtable> and returns a pointer to the magic added.
5707
5708 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5709 In particular, you can add magic to C<SvREADONLY> SVs, and add more than
5710 one instance of the same C<how>.
5711
5712 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5713 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5714 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5715 to contain an SV* and is stored as-is with its C<REFCNT> incremented.
5716
5717 (This is now used as a subroutine by C<sv_magic>.)
5718
5719 =cut
5720 */
5721 MAGIC * 
5722 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5723                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5724 {
5725     MAGIC* mg;
5726
5727     PERL_ARGS_ASSERT_SV_MAGICEXT;
5728
5729     SvUPGRADE(sv, SVt_PVMG);
5730     Newxz(mg, 1, MAGIC);
5731     mg->mg_moremagic = SvMAGIC(sv);
5732     SvMAGIC_set(sv, mg);
5733
5734     /* Sometimes a magic contains a reference loop, where the sv and
5735        object refer to each other.  To prevent a reference loop that
5736        would prevent such objects being freed, we look for such loops
5737        and if we find one we avoid incrementing the object refcount.
5738
5739        Note we cannot do this to avoid self-tie loops as intervening RV must
5740        have its REFCNT incremented to keep it in existence.
5741
5742     */
5743     if (!obj || obj == sv ||
5744         how == PERL_MAGIC_arylen ||
5745         how == PERL_MAGIC_regdata ||
5746         how == PERL_MAGIC_regdatum ||
5747         how == PERL_MAGIC_symtab ||
5748         (SvTYPE(obj) == SVt_PVGV &&
5749             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5750              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5751              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5752     {
5753         mg->mg_obj = obj;
5754     }
5755     else {
5756         mg->mg_obj = SvREFCNT_inc_simple(obj);
5757         mg->mg_flags |= MGf_REFCOUNTED;
5758     }
5759
5760     /* Normal self-ties simply pass a null object, and instead of
5761        using mg_obj directly, use the SvTIED_obj macro to produce a
5762        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5763        with an RV obj pointing to the glob containing the PVIO.  In
5764        this case, to avoid a reference loop, we need to weaken the
5765        reference.
5766     */
5767
5768     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5769         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5770     {
5771       sv_rvweaken(obj);
5772     }
5773
5774     mg->mg_type = how;
5775     mg->mg_len = namlen;
5776     if (name) {
5777         if (namlen > 0)
5778             mg->mg_ptr = savepvn(name, namlen);
5779         else if (namlen == HEf_SVKEY) {
5780             /* Yes, this is casting away const. This is only for the case of
5781                HEf_SVKEY. I think we need to document this aberation of the
5782                constness of the API, rather than making name non-const, as
5783                that change propagating outwards a long way.  */
5784             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5785         } else
5786             mg->mg_ptr = (char *) name;
5787     }
5788     mg->mg_virtual = (MGVTBL *) vtable;
5789
5790     mg_magical(sv);
5791     return mg;
5792 }
5793
5794 MAGIC *
5795 Perl_sv_magicext_mglob(pTHX_ SV *sv)
5796 {
5797     PERL_ARGS_ASSERT_SV_MAGICEXT_MGLOB;
5798     if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y') {
5799         /* This sv is only a delegate.  //g magic must be attached to
5800            its target. */
5801         vivify_defelem(sv);
5802         sv = LvTARG(sv);
5803     }
5804     return sv_magicext(sv, NULL, PERL_MAGIC_regex_global,
5805                        &PL_vtbl_mglob, 0, 0);
5806 }
5807
5808 /*
5809 =for apidoc sv_magic
5810
5811 Adds magic to an SV.  First upgrades C<sv> to type C<SVt_PVMG> if
5812 necessary, then adds a new magic item of type C<how> to the head of the
5813 magic list.
5814
5815 See C<L</sv_magicext>> (which C<sv_magic> now calls) for a description of the
5816 handling of the C<name> and C<namlen> arguments.
5817
5818 You need to use C<sv_magicext> to add magic to C<SvREADONLY> SVs and also
5819 to add more than one instance of the same C<how>.
5820
5821 =cut
5822 */
5823
5824 void
5825 Perl_sv_magic(pTHX_ SV *const sv, SV *const obj, const int how,
5826              const char *const name, const I32 namlen)
5827 {
5828     const MGVTBL *vtable;
5829     MAGIC* mg;
5830     unsigned int flags;
5831     unsigned int vtable_index;
5832
5833     PERL_ARGS_ASSERT_SV_MAGIC;
5834
5835     if (how < 0 || (unsigned)how >= C_ARRAY_LENGTH(PL_magic_data)
5836         || ((flags = PL_magic_data[how]),
5837             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5838             > magic_vtable_max))
5839         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5840
5841     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5842        Useful for attaching extension internal data to perl vars.
5843        Note that multiple extensions may clash if magical scalars
5844        etc holding private data from one are passed to another. */
5845
5846     vtable = (vtable_index == magic_vtable_max)
5847         ? NULL : PL_magic_vtables + vtable_index;
5848
5849     if (SvREADONLY(sv)) {
5850         if (
5851             !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5852            )
5853         {
5854             Perl_croak_no_modify();
5855         }
5856     }
5857     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5858         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5859             /* sv_magic() refuses to add a magic of the same 'how' as an
5860                existing one
5861              */
5862             if (how == PERL_MAGIC_taint)
5863                 mg->mg_len |= 1;
5864             return;
5865         }
5866     }
5867
5868     /* Force pos to be stored as characters, not bytes. */
5869     if (SvMAGICAL(sv) && DO_UTF8(sv)
5870       && (mg = mg_find(sv, PERL_MAGIC_regex_global))
5871       && mg->mg_len != -1
5872       && mg->mg_flags & MGf_BYTES) {
5873         mg->mg_len = (SSize_t)sv_pos_b2u_flags(sv, (STRLEN)mg->mg_len,
5874                                                SV_CONST_RETURN);
5875         mg->mg_flags &= ~MGf_BYTES;
5876     }
5877
5878     /* Rest of work is done else where */
5879     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5880
5881     switch (how) {
5882     case PERL_MAGIC_taint:
5883         mg->mg_len = 1;
5884         break;
5885     case PERL_MAGIC_ext:
5886     case PERL_MAGIC_dbfile:
5887         SvRMAGICAL_on(sv);
5888         break;
5889     }
5890 }
5891
5892 static int
5893 S_sv_unmagicext_flags(pTHX_ SV *const sv, const int type, MGVTBL *vtbl, const U32 flags)
5894 {
5895     MAGIC* mg;
5896     MAGIC** mgp;
5897
5898     assert(flags <= 1);
5899
5900     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5901         return 0;
5902     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5903     for (mg = *mgp; mg; mg = *mgp) {
5904         const MGVTBL* const virt = mg->mg_virtual;
5905         if (mg->mg_type == type && (!flags || virt == vtbl)) {
5906             *mgp = mg->mg_moremagic;
5907             if (virt && virt->svt_free)
5908                 virt->svt_free(aTHX_ sv, mg);
5909             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5910                 if (mg->mg_len > 0)
5911                     Safefree(mg->mg_ptr);
5912                 else if (mg->mg_len == HEf_SVKEY)
5913                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5914                 else if (mg->mg_type == PERL_MAGIC_utf8)
5915                     Safefree(mg->mg_ptr);
5916             }
5917             if (mg->mg_flags & MGf_REFCOUNTED)
5918                 SvREFCNT_dec(mg->mg_obj);
5919             Safefree(mg);
5920         }
5921         else
5922             mgp = &mg->mg_moremagic;
5923     }
5924     if (SvMAGIC(sv)) {
5925         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5926             mg_magical(sv);     /*    else fix the flags now */
5927     }
5928     else
5929         SvMAGICAL_off(sv);
5930
5931     return 0;
5932 }
5933
5934 /*
5935 =for apidoc sv_unmagic
5936
5937 Removes all magic of type C<type> from an SV.
5938
5939 =cut
5940 */
5941
5942 int
5943 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5944 {
5945     PERL_ARGS_ASSERT_SV_UNMAGIC;
5946     return S_sv_unmagicext_flags(aTHX_ sv, type, NULL, 0);
5947 }
5948
5949 /*
5950 =for apidoc sv_unmagicext
5951
5952 Removes all magic of type C<type> with the specified C<vtbl> from an SV.
5953
5954 =cut
5955 */
5956
5957 int
5958 Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl)
5959 {
5960     PERL_ARGS_ASSERT_SV_UNMAGICEXT;
5961     return S_sv_unmagicext_flags(aTHX_ sv, type, vtbl, 1);
5962 }
5963
5964 /*
5965 =for apidoc sv_rvweaken
5966
5967 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5968 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5969 push a back-reference to this RV onto the array of backreferences
5970 associated with that magic.  If the RV is magical, set magic will be
5971 called after the RV is cleared.  Silently ignores C<undef> and warns
5972 on already-weak references.
5973
5974 =cut
5975 */
5976
5977 SV *
5978 Perl_sv_rvweaken(pTHX_ SV *const sv)
5979 {
5980     SV *tsv;
5981
5982     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5983
5984     if (!SvOK(sv))  /* let undefs pass */
5985         return sv;
5986     if (!SvROK(sv))
5987         Perl_croak(aTHX_ "Can't weaken a nonreference");
5988     else if (SvWEAKREF(sv)) {
5989         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5990         return sv;
5991     }
5992     else if (SvREADONLY(sv)) croak_no_modify();
5993     tsv = SvRV(sv);
5994     Perl_sv_add_backref(aTHX_ tsv, sv);
5995     SvWEAKREF_on(sv);
5996     SvREFCNT_dec_NN(tsv);
5997     return sv;
5998 }
5999
6000 /*
6001 =for apidoc sv_rvunweaken
6002
6003 Unweaken a reference: Clear the C<SvWEAKREF> flag on this RV; remove
6004 the backreference to this RV from the array of backreferences
6005 associated with the target SV, increment the refcount of the target.
6006 Silently ignores C<undef> and warns on non-weak references.
6007
6008 =cut
6009 */
6010
6011 SV *
6012 Perl_sv_rvunweaken(pTHX_ SV *const sv)
6013 {
6014     SV *tsv;
6015
6016     PERL_ARGS_ASSERT_SV_RVUNWEAKEN;
6017
6018     if (!SvOK(sv)) /* let undefs pass */
6019         return sv;
6020     if (!SvROK(sv))
6021         Perl_croak(aTHX_ "Can't unweaken a nonreference");
6022     else if (!SvWEAKREF(sv)) {
6023         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is not weak");
6024         return sv;
6025     }
6026     else if (SvREADONLY(sv)) croak_no_modify();
6027
6028     tsv = SvRV(sv);
6029     SvWEAKREF_off(sv);
6030     SvROK_on(sv);
6031     SvREFCNT_inc_NN(tsv);
6032     Perl_sv_del_backref(aTHX_ tsv, sv);
6033     return sv;
6034 }
6035
6036 /*
6037 =for apidoc sv_get_backrefs
6038
6039 If C<sv> is the target of a weak reference then it returns the back
6040 references structure associated with the sv; otherwise return C<NULL>.
6041
6042 When returning a non-null result the type of the return is relevant. If it
6043 is an AV then the elements of the AV are the weak reference RVs which
6044 point at this item. If it is any other type then the item itself is the
6045 weak reference.
6046
6047 See also C<Perl_sv_add_backref()>, C<Perl_sv_del_backref()>,
6048 C<Perl_sv_kill_backrefs()>
6049
6050 =cut
6051 */
6052
6053 SV *
6054 Perl_sv_get_backrefs(SV *const sv)
6055 {
6056     SV *backrefs= NULL;
6057
6058     PERL_ARGS_ASSERT_SV_GET_BACKREFS;
6059
6060     /* find slot to store array or singleton backref */
6061
6062     if (SvTYPE(sv) == SVt_PVHV) {
6063         if (SvOOK(sv)) {
6064             struct xpvhv_aux * const iter = HvAUX((HV *)sv);
6065             backrefs = (SV *)iter->xhv_backreferences;
6066         }
6067     } else if (SvMAGICAL(sv)) {
6068         MAGIC *mg = mg_find(sv, PERL_MAGIC_backref);
6069         if (mg)
6070             backrefs = mg->mg_obj;
6071     }
6072     return backrefs;
6073 }
6074
6075 /* Give tsv backref magic if it hasn't already got it, then push a
6076  * back-reference to sv onto the array associated with the backref magic.
6077  *
6078  * As an optimisation, if there's only one backref and it's not an AV,
6079  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
6080  * allocate an AV. (Whether the slot holds an AV tells us whether this is
6081  * active.)
6082  */
6083
6084 /* A discussion about the backreferences array and its refcount:
6085  *
6086  * The AV holding the backreferences is pointed to either as the mg_obj of
6087  * PERL_MAGIC_backref, or in the specific case of a HV, from the
6088  * xhv_backreferences field. The array is created with a refcount
6089  * of 2. This means that if during global destruction the array gets
6090  * picked on before its parent to have its refcount decremented by the
6091  * random zapper, it won't actually be freed, meaning it's still there for
6092  * when its parent gets freed.
6093  *
6094  * When the parent SV is freed, the extra ref is killed by
6095  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
6096  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
6097  *
6098  * When a single backref SV is stored directly, it is not reference
6099  * counted.
6100  */
6101
6102 void
6103 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
6104 {
6105     SV **svp;
6106     AV *av = NULL;
6107     MAGIC *mg = NULL;
6108
6109     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
6110
6111     /* find slot to store array or singleton backref */
6112
6113     if (SvTYPE(tsv) == SVt_PVHV) {
6114         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
6115     } else {
6116         if (SvMAGICAL(tsv))
6117             mg = mg_find(tsv, PERL_MAGIC_backref);
6118         if (!mg)
6119             mg = sv_magicext(tsv, NULL, PERL_MAGIC_backref, &PL_vtbl_backref, NULL, 0);
6120         svp = &(mg->mg_obj);
6121     }
6122
6123     /* create or retrieve the array */
6124
6125     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
6126         || (*svp && SvTYPE(*svp) != SVt_PVAV)
6127     ) {
6128         /* create array */
6129         if (mg)
6130             mg->mg_flags |= MGf_REFCOUNTED;
6131         av = newAV();
6132         AvREAL_off(av);
6133         SvREFCNT_inc_simple_void_NN(av);
6134         /* av now has a refcnt of 2; see discussion above */
6135         av_extend(av, *svp ? 2 : 1);
6136         if (*svp) {
6137             /* move single existing backref to the array */
6138             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
6139         }
6140         *svp = (SV*)av;
6141     }
6142     else {
6143         av = MUTABLE_AV(*svp);
6144         if (!av) {
6145             /* optimisation: store single backref directly in HvAUX or mg_obj */
6146             *svp = sv;
6147             return;
6148         }
6149         assert(SvTYPE(av) == SVt_PVAV);
6150         if (AvFILLp(av) >= AvMAX(av)) {
6151             av_extend(av, AvFILLp(av)+1);
6152         }
6153     }
6154     /* push new backref */
6155     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
6156 }
6157
6158 /* delete a back-reference to ourselves from the backref magic associated
6159  * with the SV we point to.
6160  */
6161
6162 void
6163 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
6164 {
6165     SV **svp = NULL;
6166
6167     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
6168
6169     if (SvTYPE(tsv) == SVt_PVHV) {
6170         if (SvOOK(tsv))
6171             svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
6172     }
6173     else if (SvIS_FREED(tsv) && PL_phase == PERL_PHASE_DESTRUCT) {
6174         /* It's possible for the the last (strong) reference to tsv to have
6175            become freed *before* the last thing holding a weak reference.
6176            If both survive longer than the backreferences array, then when
6177            the referent's reference count drops to 0 and it is freed, it's
6178            not able to chase the backreferences, so they aren't NULLed.
6179
6180            For example, a CV holds a weak reference to its stash. If both the
6181            CV and the stash survive longer than the backreferences array,
6182            and the CV gets picked for the SvBREAK() treatment first,
6183            *and* it turns out that the stash is only being kept alive because
6184            of an our variable in the pad of the CV, then midway during CV
6185            destruction the stash gets freed, but CvSTASH() isn't set to NULL.
6186            It ends up pointing to the freed HV. Hence it's chased in here, and
6187            if this block wasn't here, it would hit the !svp panic just below.
6188
6189            I don't believe that "better" destruction ordering is going to help
6190            here - during global destruction there's always going to be the
6191            chance that something goes out of order. We've tried to make it
6192            foolproof before, and it only resulted in evolutionary pressure on
6193            fools. Which made us look foolish for our hubris. :-(
6194         */
6195         return;
6196     }
6197     else {
6198         MAGIC *const mg
6199             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
6200         svp =  mg ? &(mg->mg_obj) : NULL;
6201     }
6202
6203     if (!svp)
6204         Perl_croak(aTHX_ "panic: del_backref, svp=0");
6205     if (!*svp) {
6206         /* It's possible that sv is being freed recursively part way through the
6207            freeing of tsv. If this happens, the backreferences array of tsv has
6208            already been freed, and so svp will be NULL. If this is the case,
6209            we should not panic. Instead, nothing needs doing, so return.  */
6210         if (PL_phase == PERL_PHASE_DESTRUCT && SvREFCNT(tsv) == 0)
6211             return;
6212         Perl_croak(aTHX_ "panic: del_backref, *svp=%p phase=%s refcnt=%" UVuf,
6213                    (void*)*svp, PL_phase_names[PL_phase], (UV)SvREFCNT(tsv));
6214     }
6215
6216     if (SvTYPE(*svp) == SVt_PVAV) {
6217 #ifdef DEBUGGING
6218         int count = 1;
6219 #endif
6220         AV * const av = (AV*)*svp;
6221         SSize_t fill;
6222         assert(!SvIS_FREED(av));
6223         fill = AvFILLp(av);
6224         assert(fill > -1);
6225         svp = AvARRAY(av);
6226         /* for an SV with N weak references to it, if all those
6227          * weak refs are deleted, then sv_del_backref will be called
6228          * N times and O(N^2) compares will be done within the backref
6229          * array. To ameliorate this potential slowness, we:
6230          * 1) make sure this code is as tight as possible;
6231          * 2) when looking for SV, look for it at both the head and tail of the
6232          *    array first before searching the rest, since some create/destroy
6233          *    patterns will cause the backrefs to be freed in order.
6234          */
6235         if (*svp == sv) {
6236             AvARRAY(av)++;
6237             AvMAX(av)--;
6238         }
6239         else {
6240             SV **p = &svp[fill];
6241             SV *const topsv = *p;
6242             if (topsv != sv) {
6243 #ifdef DEBUGGING
6244                 count = 0;
6245 #endif
6246                 while (--p > svp) {
6247                     if (*p == sv) {
6248                         /* We weren't the last entry.
6249                            An unordered list has this property that you
6250                            can take the last element off the end to fill
6251                            the hole, and it's still an unordered list :-)
6252                         */
6253                         *p = topsv;
6254 #ifdef DEBUGGING
6255                         count++;
6256 #else
6257                         break; /* should only be one */
6258 #endif
6259                     }
6260                 }
6261             }
6262         }
6263         assert(count ==1);
6264         AvFILLp(av) = fill-1;
6265     }
6266     else if (SvIS_FREED(*svp) && PL_phase == PERL_PHASE_DESTRUCT) {
6267         /* freed AV; skip */
6268     }
6269     else {
6270         /* optimisation: only a single backref, stored directly */
6271         if (*svp != sv)
6272             Perl_croak(aTHX_ "panic: del_backref, *svp=%p, sv=%p",
6273                        (void*)*svp, (void*)sv);
6274         *svp = NULL;
6275     }
6276
6277 }
6278
6279 void
6280 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
6281 {
6282     SV **svp;
6283     SV **last;
6284     bool is_array;
6285
6286     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
6287
6288     if (!av)
6289         return;
6290
6291     /* after multiple passes through Perl_sv_clean_all() for a thingy
6292      * that has badly leaked, the backref array may have gotten freed,
6293      * since we only protect it against 1 round of cleanup */
6294     if (SvIS_FREED(av)) {
6295         if (PL_in_clean_all) /* All is fair */
6296             return;
6297         Perl_croak(aTHX_
6298                    "panic: magic_killbackrefs (freed backref AV/SV)");
6299     }
6300
6301
6302     is_array = (SvTYPE(av) == SVt_PVAV);
6303     if (is_array) {
6304         assert(!SvIS_FREED(av));
6305         svp = AvARRAY(av);
6306         if (svp)
6307             last = svp + AvFILLp(av);
6308     }
6309     else {
6310         /* optimisation: only a single backref, stored directly */
6311         svp = (SV**)&av;
6312         last = svp;
6313     }
6314
6315     if (svp) {
6316         while (svp <= last) {
6317             if (*svp) {
6318                 SV *const referrer = *svp;
6319                 if (SvWEAKREF(referrer)) {
6320                     /* XXX Should we check that it hasn't changed? */
6321                     assert(SvROK(referrer));
6322                     SvRV_set(referrer, 0);
6323                     SvOK_off(referrer);
6324                     SvWEAKREF_off(referrer);
6325                     SvSETMAGIC(referrer);
6326                 } else if (SvTYPE(referrer) == SVt_PVGV ||
6327                            SvTYPE(referrer) == SVt_PVLV) {
6328                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
6329                     /* You lookin' at me?  */
6330                     assert(GvSTASH(referrer));
6331                     assert(GvSTASH(referrer) == (const HV *)sv);
6332                     GvSTASH(referrer) = 0;
6333                 } else if (SvTYPE(referrer) == SVt_PVCV ||
6334                            SvTYPE(referrer) == SVt_PVFM) {
6335                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
6336                         /* You lookin' at me?  */
6337                         assert(CvSTASH(referrer));
6338                         assert(CvSTASH(referrer) == (const HV *)sv);
6339                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
6340                     }
6341                     else {
6342                         assert(SvTYPE(sv) == SVt_PVGV);
6343                         /* You lookin' at me?  */
6344                         assert(CvGV(referrer));
6345                         assert(CvGV(referrer) == (const GV *)sv);
6346                         anonymise_cv_maybe(MUTABLE_GV(sv),
6347                                                 MUTABLE_CV(referrer));
6348                     }
6349
6350                 } else {
6351                     Perl_croak(aTHX_
6352                                "panic: magic_killbackrefs (flags=%" UVxf ")",
6353                                (UV)SvFLAGS(referrer));
6354                 }
6355
6356                 if (is_array)
6357                     *svp = NULL;
6358             }
6359             svp++;
6360         }
6361     }
6362     if (is_array) {
6363         AvFILLp(av) = -1;
6364         SvREFCNT_dec_NN(av); /* remove extra count added by sv_add_backref() */
6365     }
6366     return;
6367 }
6368
6369 /*
6370 =for apidoc sv_insert
6371
6372 Inserts a string at the specified offset/length within the SV.  Similar to
6373 the Perl C<substr()> function.  Handles get magic.
6374
6375 =for apidoc sv_insert_flags
6376
6377 Same as C<sv_insert>, but the extra C<flags> are passed to the
6378 C<SvPV_force_flags> that applies to C<bigstr>.
6379
6380 =cut
6381 */
6382
6383 void
6384 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *little, const STRLEN littlelen, const U32 flags)
6385 {
6386     char *big;
6387     char *mid;
6388     char *midend;
6389     char *bigend;
6390     SSize_t i;          /* better be sizeof(STRLEN) or bad things happen */
6391     STRLEN curlen;
6392
6393     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
6394
6395     SvPV_force_flags(bigstr, curlen, flags);
6396     (void)SvPOK_only_UTF8(bigstr);
6397
6398     if (little >= SvPVX(bigstr) &&
6399         little < SvPVX(bigstr) + (SvLEN(bigstr) ? SvLEN(bigstr) : SvCUR(bigstr))) {
6400         /* little is a pointer to within bigstr, since we can reallocate bigstr,
6401            or little...little+littlelen might overlap offset...offset+len we make a copy
6402         */
6403         little = savepvn(little, littlelen);
6404         SAVEFREEPV(little);
6405     }
6406
6407     if (offset + len > curlen) {
6408         SvGROW(bigstr, offset+len+1);
6409         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
6410         SvCUR_set(bigstr, offset+len);
6411     }
6412
6413     SvTAINT(bigstr);
6414     i = littlelen - len;
6415     if (i > 0) {                        /* string might grow */
6416         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
6417         mid = big + offset + len;
6418         midend = bigend = big + SvCUR(bigstr);
6419         bigend += i;
6420         *bigend = '\0';
6421         while (midend > mid)            /* shove everything down */
6422             *--bigend = *--midend;
6423         Move(little,big+offset,littlelen,char);
6424         SvCUR_set(bigstr, SvCUR(bigstr) + i);
6425         SvSETMAGIC(bigstr);
6426         return;
6427     }
6428     else if (i == 0) {
6429         Move(little,SvPVX(bigstr)+offset,len,char);
6430         SvSETMAGIC(bigstr);
6431         return;
6432     }
6433
6434     big = SvPVX(bigstr);
6435     mid = big + offset;
6436     midend = mid + len;
6437     bigend = big + SvCUR(bigstr);
6438
6439     if (midend > bigend)
6440         Perl_croak(aTHX_ "panic: sv_insert, midend=%p, bigend=%p",
6441                    midend, bigend);
6442
6443     if (mid - big > bigend - midend) {  /* faster to shorten from end */
6444         if (littlelen) {
6445             Move(little, mid, littlelen,char);
6446             mid += littlelen;
6447         }
6448         i = bigend - midend;
6449         if (i > 0) {
6450             Move(midend, mid, i,char);
6451             mid += i;
6452         }
6453         *mid = '\0';
6454         SvCUR_set(bigstr, mid - big);
6455     }
6456     else if ((i = mid - big)) { /* faster from front */
6457         midend -= littlelen;
6458         mid = midend;
6459         Move(big, midend - i, i, char);
6460         sv_chop(bigstr,midend-i);
6461         if (littlelen)
6462             Move(little, mid, littlelen,char);
6463     }
6464     else if (littlelen) {
6465         midend -= littlelen;
6466         sv_chop(bigstr,midend);
6467         Move(little,midend,littlelen,char);
6468     }
6469     else {
6470         sv_chop(bigstr,midend);
6471     }
6472     SvSETMAGIC(bigstr);
6473 }
6474
6475 /*
6476 =for apidoc sv_replace
6477
6478 Make the first argument a copy of the second, then delete the original.
6479 The target SV physically takes over ownership of the body of the source SV
6480 and inherits its flags; however, the target keeps any magic it owns,
6481 and any magic in the source is discarded.
6482 Note that this is a rather specialist SV copying operation; most of the
6483 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
6484
6485 =cut
6486 */
6487
6488 void
6489 Perl_sv_replace(pTHX_ SV *const sv, SV *const nsv)
6490 {
6491     const U32 refcnt = SvREFCNT(sv);
6492
6493     PERL_ARGS_ASSERT_SV_REPLACE;
6494
6495     SV_CHECK_THINKFIRST_COW_DROP(sv);
6496     if (SvREFCNT(nsv) != 1) {
6497         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
6498                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
6499     }
6500     if (SvMAGICAL(sv)) {
6501         if (SvMAGICAL(nsv))
6502             mg_free(nsv);
6503         else
6504             sv_upgrade(nsv, SVt_PVMG);
6505         SvMAGIC_set(nsv, SvMAGIC(sv));
6506         SvFLAGS(nsv) |= SvMAGICAL(sv);
6507         SvMAGICAL_off(sv);
6508         SvMAGIC_set(sv, NULL);
6509     }
6510     SvREFCNT(sv) = 0;
6511     sv_clear(sv);
6512     assert(!SvREFCNT(sv));
6513 #ifdef DEBUG_LEAKING_SCALARS
6514     sv->sv_flags  = nsv->sv_flags;
6515     sv->sv_any    = nsv->sv_any;
6516     sv->sv_refcnt = nsv->sv_refcnt;
6517     sv->sv_u      = nsv->sv_u;
6518 #else
6519     StructCopy(nsv,sv,SV);
6520 #endif
6521     if(SvTYPE(sv) == SVt_IV) {
6522         SET_SVANY_FOR_BODYLESS_IV(sv);
6523     }
6524         
6525
6526     SvREFCNT(sv) = refcnt;
6527     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
6528     SvREFCNT(nsv) = 0;
6529     del_SV(nsv);
6530 }
6531
6532 /* We're about to free a GV which has a CV that refers back to us.
6533  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
6534  * field) */
6535
6536 STATIC void
6537 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
6538 {
6539     SV *gvname;
6540     GV *anongv;
6541
6542     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
6543
6544     /* be assertive! */
6545     assert(SvREFCNT(gv) == 0);
6546     assert(isGV(gv) && isGV_with_GP(gv));
6547     assert(GvGP(gv));
6548     assert(!CvANON(cv));
6549     assert(CvGV(cv) == gv);
6550     assert(!CvNAMED(cv));
6551
6552     /* will the CV shortly be freed by gp_free() ? */
6553     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
6554         SvANY(cv)->xcv_gv_u.xcv_gv = NULL;
6555         return;
6556     }
6557
6558     /* if not, anonymise: */
6559     gvname = (GvSTASH(gv) && HvNAME(GvSTASH(gv)) && HvENAME(GvSTASH(gv)))
6560                     ? newSVhek(HvENAME_HEK(GvSTASH(gv)))
6561                     : newSVpvn_flags( "__ANON__", 8, 0 );
6562     sv_catpvs(gvname, "::__ANON__");
6563     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
6564     SvREFCNT_dec_NN(gvname);
6565
6566     CvANON_on(cv);
6567     CvCVGV_RC_on(cv);
6568     SvANY(cv)->xcv_gv_u.xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
6569 }
6570
6571
6572 /*
6573 =for apidoc sv_clear
6574
6575 Clear an SV: call any destructors, free up any memory used by the body,
6576 and free the body itself.  The SV's head is I<not> freed, although
6577 its type is set to all 1's so that it won't inadvertently be assumed
6578 to be live during global destruction etc.
6579 This function should only be called when C<REFCNT> is zero.  Most of the time
6580 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
6581 instead.
6582
6583 =cut
6584 */
6585
6586 void
6587 Perl_sv_clear(pTHX_ SV *const orig_sv)
6588 {
6589     dVAR;
6590     HV *stash;
6591     U32 type;
6592     const struct body_details *sv_type_details;
6593     SV* iter_sv = NULL;
6594     SV* next_sv = NULL;
6595     SV *sv = orig_sv;
6596     STRLEN hash_index = 0; /* initialise to make Coverity et al happy.
6597                               Not strictly necessary */
6598
6599     PERL_ARGS_ASSERT_SV_CLEAR;
6600
6601     /* within this loop, sv is the SV currently being freed, and
6602      * iter_sv is the most recent AV or whatever that's being iterated
6603      * over to provide more SVs */
6604
6605     while (sv) {
6606
6607         type = SvTYPE(sv);
6608
6609         assert(SvREFCNT(sv) == 0);
6610         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
6611
6612         if (type <= SVt_IV) {
6613             /* See the comment in sv.h about the collusion between this
6614              * early return and the overloading of the NULL slots in the
6615              * size table.  */
6616             if (SvROK(sv))
6617                 goto free_rv;
6618             SvFLAGS(sv) &= SVf_BREAK;
6619             SvFLAGS(sv) |= SVTYPEMASK;
6620             goto free_head;
6621         }
6622
6623         /* objs are always >= MG, but pad names use the SVs_OBJECT flag
6624            for another purpose  */
6625         assert(!SvOBJECT(sv) || type >= SVt_PVMG);
6626
6627         if (type >= SVt_PVMG) {
6628             if (SvOBJECT(sv)) {
6629                 if (!curse(sv, 1)) goto get_next_sv;
6630                 type = SvTYPE(sv); /* destructor may have changed it */
6631             }
6632             /* Free back-references before magic, in case the magic calls
6633              * Perl code that has weak references to sv. */
6634             if (type == SVt_PVHV) {
6635                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
6636                 if (SvMAGIC(sv))
6637                     mg_free(sv);
6638             }
6639             else if (SvMAGIC(sv)) {
6640                 /* Free back-references before other types of magic. */
6641                 sv_unmagic(sv, PERL_MAGIC_backref);
6642                 mg_free(sv);
6643             }
6644             SvMAGICAL_off(sv);
6645         }
6646         switch (type) {
6647             /* case SVt_INVLIST: */
6648         case SVt_PVIO:
6649             if (IoIFP(sv) &&
6650                 IoIFP(sv) != PerlIO_stdin() &&
6651                 IoIFP(sv) != PerlIO_stdout() &&
6652                 IoIFP(sv) != PerlIO_stderr() &&
6653                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6654             {
6655                 io_close(MUTABLE_IO(sv), NULL, FALSE,
6656                          (IoTYPE(sv) == IoTYPE_WRONLY ||
6657                           IoTYPE(sv) == IoTYPE_RDWR   ||
6658                           IoTYPE(sv) == IoTYPE_APPEND));
6659             }
6660             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6661                 PerlDir_close(IoDIRP(sv));
6662             IoDIRP(sv) = (DIR*)NULL;
6663             Safefree(IoTOP_NAME(sv));
6664             Safefree(IoFMT_NAME(sv));
6665             Safefree(IoBOTTOM_NAME(sv));
6666             if ((const GV *)sv == PL_statgv)
6667                 PL_statgv = NULL;
6668             goto freescalar;
6669         case SVt_REGEXP:
6670             /* FIXME for plugins */
6671             pregfree2((REGEXP*) sv);
6672             goto freescalar;
6673         case SVt_PVCV:
6674         case SVt_PVFM:
6675             cv_undef(MUTABLE_CV(sv));
6676             /* If we're in a stash, we don't own a reference to it.
6677              * However it does have a back reference to us, which needs to
6678              * be cleared.  */
6679             if ((stash = CvSTASH(sv)))
6680                 sv_del_backref(MUTABLE_SV(stash), sv);
6681             goto freescalar;
6682         case SVt_PVHV:
6683             if (PL_last_swash_hv == (const HV *)sv) {
6684                 PL_last_swash_hv = NULL;
6685             }
6686             if (HvTOTALKEYS((HV*)sv) > 0) {
6687                 const HEK *hek;
6688                 /* this statement should match the one at the beginning of
6689                  * hv_undef_flags() */
6690                 if (   PL_phase != PERL_PHASE_DESTRUCT
6691                     && (hek = HvNAME_HEK((HV*)sv)))
6692                 {
6693                     if (PL_stashcache) {
6694                         DEBUG_o(Perl_deb(aTHX_
6695                             "sv_clear clearing PL_stashcache for '%" HEKf
6696                             "'\n",
6697                              HEKfARG(hek)));
6698                         (void)hv_deletehek(PL_stashcache,
6699                                            hek, G_DISCARD);
6700                     }
6701                     hv_name_set((HV*)sv, NULL, 0, 0);
6702                 }
6703
6704                 /* save old iter_sv in unused SvSTASH field */
6705                 assert(!SvOBJECT(sv));
6706                 SvSTASH(sv) = (HV*)iter_sv;
6707                 iter_sv = sv;
6708
6709                 /* save old hash_index in unused SvMAGIC field */
6710                 assert(!SvMAGICAL(sv));
6711                 assert(!SvMAGIC(sv));
6712                 ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index = hash_index;
6713                 hash_index = 0;
6714
6715                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6716                 goto get_next_sv; /* process this new sv */
6717             }
6718             /* free empty hash */
6719             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6720             assert(!HvARRAY((HV*)sv));
6721             break;
6722         case SVt_PVAV:
6723             {
6724                 AV* av = MUTABLE_AV(sv);
6725                 if (PL_comppad == av) {
6726                     PL_comppad = NULL;
6727                     PL_curpad = NULL;
6728                 }
6729                 if (AvREAL(av) && AvFILLp(av) > -1) {
6730                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6731                     /* save old iter_sv in top-most slot of AV,
6732                      * and pray that it doesn't get wiped in the meantime */
6733                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6734                     iter_sv = sv;
6735                     goto get_next_sv; /* process this new sv */
6736                 }
6737                 Safefree(AvALLOC(av));
6738             }
6739
6740             break;
6741         case SVt_PVLV:
6742             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6743                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6744                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6745                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6746             }
6747             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6748                 SvREFCNT_dec(LvTARG(sv));
6749             if (isREGEXP(sv)) {
6750                 /* SvLEN points to a regex body. Free the body, then
6751                  * set SvLEN to whatever value was in the now-freed
6752                  * regex body. The PVX buffer is shared by multiple re's
6753                  * and only freed once, by the re whose len in non-null */
6754                 STRLEN len = ReANY(sv)->xpv_len;
6755                 pregfree2((REGEXP*) sv);
6756                 SvLEN_set((sv), len);
6757                 goto freescalar;
6758             }
6759             /* FALLTHROUGH */
6760         case SVt_PVGV:
6761             if (isGV_with_GP(sv)) {
6762                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6763                    && HvENAME_get(stash))
6764                     mro_method_changed_in(stash);
6765                 gp_free(MUTABLE_GV(sv));
6766                 if (GvNAME_HEK(sv))
6767                     unshare_hek(GvNAME_HEK(sv));
6768                 /* If we're in a stash, we don't own a reference to it.
6769                  * However it does have a back reference to us, which
6770                  * needs to be cleared.  */
6771                 if ((stash = GvSTASH(sv)))
6772                         sv_del_backref(MUTABLE_SV(stash), sv);
6773             }
6774             /* FIXME. There are probably more unreferenced pointers to SVs
6775              * in the interpreter struct that we should check and tidy in
6776              * a similar fashion to this:  */
6777             /* See also S_sv_unglob, which does the same thing. */
6778             if ((const GV *)sv == PL_last_in_gv)
6779                 PL_last_in_gv = NULL;
6780             else if ((const GV *)sv == PL_statgv)
6781                 PL_statgv = NULL;
6782             else if ((const GV *)sv == PL_stderrgv)
6783                 PL_stderrgv = NULL;
6784             /* FALLTHROUGH */
6785         case SVt_PVMG:
6786         case SVt_PVNV:
6787         case SVt_PVIV:
6788         case SVt_INVLIST:
6789         case SVt_PV:
6790           freescalar:
6791             /* Don't bother with SvOOK_off(sv); as we're only going to
6792              * free it.  */
6793             if (SvOOK(sv)) {
6794                 STRLEN offset;
6795                 SvOOK_offset(sv, offset);
6796                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6797                 /* Don't even bother with turning off the OOK flag.  */
6798             }
6799             if (SvROK(sv)) {
6800             free_rv:
6801                 {
6802                     SV * const target = SvRV(sv);
6803                     if (SvWEAKREF(sv))
6804                         sv_del_backref(target, sv);
6805                     else
6806                         next_sv = target;
6807                 }
6808             }
6809 #ifdef PERL_ANY_COW
6810             else if (SvPVX_const(sv)
6811                      && !(SvTYPE(sv) == SVt_PVIO
6812                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6813             {
6814                 if (SvIsCOW(sv)) {
6815 #ifdef DEBUGGING
6816                     if (DEBUG_C_TEST) {
6817                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6818                         sv_dump(sv);
6819                     }
6820 #endif
6821                     if (SvLEN(sv)) {
6822                         if (CowREFCNT(sv)) {
6823                             sv_buf_to_rw(sv);
6824                             CowREFCNT(sv)--;
6825                             sv_buf_to_ro(sv);
6826                             SvLEN_set(sv, 0);
6827                         }
6828                     } else {
6829                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6830                     }
6831
6832                 }
6833                 if (SvLEN(sv)) {
6834                     Safefree(SvPVX_mutable(sv));
6835                 }
6836             }
6837 #else
6838             else if (SvPVX_const(sv) && SvLEN(sv)
6839                      && !(SvTYPE(sv) == SVt_PVIO
6840                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6841                 Safefree(SvPVX_mutable(sv));
6842             else if (SvPVX_const(sv) && SvIsCOW(sv)) {
6843                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6844             }
6845 #endif
6846             break;
6847         case SVt_NV:
6848             break;
6849         }
6850
6851       free_body:
6852
6853         SvFLAGS(sv) &= SVf_BREAK;
6854         SvFLAGS(sv) |= SVTYPEMASK;
6855
6856         sv_type_details = bodies_by_type + type;
6857         if (sv_type_details->arena) {
6858             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6859                      &PL_body_roots[type]);
6860         }
6861         else if (sv_type_details->body_size) {
6862             safefree(SvANY(sv));
6863         }
6864
6865       free_head:
6866         /* caller is responsible for freeing the head of the original sv */
6867         if (sv != orig_sv && !SvREFCNT(sv))
6868             del_SV(sv);
6869
6870         /* grab and free next sv, if any */
6871       get_next_sv:
6872         while (1) {
6873             sv = NULL;
6874             if (next_sv) {
6875                 sv = next_sv;
6876                 next_sv = NULL;
6877             }
6878             else if (!iter_sv) {
6879                 break;
6880             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6881                 AV *const av = (AV*)iter_sv;
6882                 if (AvFILLp(av) > -1) {
6883                     sv = AvARRAY(av)[AvFILLp(av)--];
6884                 }
6885                 else { /* no more elements of current AV to free */
6886                     sv = iter_sv;
6887                     type = SvTYPE(sv);
6888                     /* restore previous value, squirrelled away */
6889                     iter_sv = AvARRAY(av)[AvMAX(av)];
6890                     Safefree(AvALLOC(av));
6891                     goto free_body;
6892                 }
6893             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6894                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6895                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6896                     /* no more elements of current HV to free */
6897                     sv = iter_sv;
6898                     type = SvTYPE(sv);
6899                     /* Restore previous values of iter_sv and hash_index,
6900                      * squirrelled away */
6901                     assert(!SvOBJECT(sv));
6902                     iter_sv = (SV*)SvSTASH(sv);
6903                     assert(!SvMAGICAL(sv));
6904                     hash_index = ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index;
6905 #ifdef DEBUGGING
6906                     /* perl -DA does not like rubbish in SvMAGIC. */
6907                     SvMAGIC_set(sv, 0);
6908 #endif
6909
6910                     /* free any remaining detritus from the hash struct */
6911                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6912                     assert(!HvARRAY((HV*)sv));
6913                     goto free_body;
6914                 }
6915             }
6916
6917             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6918
6919             if (!sv)
6920                 continue;
6921             if (!SvREFCNT(sv)) {
6922                 sv_free(sv);
6923                 continue;
6924             }
6925             if (--(SvREFCNT(sv)))
6926                 continue;
6927 #ifdef DEBUGGING
6928             if (SvTEMP(sv)) {
6929                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6930                          "Attempt to free temp prematurely: SV 0x%" UVxf
6931                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6932                 continue;
6933             }
6934 #endif
6935             if (SvIMMORTAL(sv)) {
6936                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6937                 SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6938                 continue;
6939             }
6940             break;
6941         } /* while 1 */
6942
6943     } /* while sv */
6944 }
6945
6946 /* This routine curses the sv itself, not the object referenced by sv. So
6947    sv does not have to be ROK. */
6948
6949 static bool
6950 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6951     PERL_ARGS_ASSERT_CURSE;
6952     assert(SvOBJECT(sv));
6953
6954     if (PL_defstash &&  /* Still have a symbol table? */
6955         SvDESTROYABLE(sv))
6956     {
6957         dSP;
6958         HV* stash;
6959         do {
6960           stash = SvSTASH(sv);
6961           assert(SvTYPE(stash) == SVt_PVHV);
6962           if (HvNAME(stash)) {
6963             CV* destructor = NULL;
6964             struct mro_meta *meta;
6965
6966             assert (SvOOK(stash));
6967
6968             DEBUG_o( Perl_deb(aTHX_ "Looking for DESTROY method for %s\n",
6969                          HvNAME(stash)) );
6970
6971             /* don't make this an initialization above the assert, since it needs
6972                an AUX structure */
6973             meta = HvMROMETA(stash);
6974             if (meta->destroy_gen && meta->destroy_gen == PL_sub_generation) {
6975                 destructor = meta->destroy;
6976                 DEBUG_o( Perl_deb(aTHX_ "Using cached DESTROY method %p for %s\n",
6977                              (void *)destructor, HvNAME(stash)) );
6978             }
6979             else {
6980                 bool autoload = FALSE;
6981                 GV *gv =
6982                     gv_fetchmeth_pvn(stash, S_destroy, S_destroy_len, -1, 0);
6983                 if (gv)
6984                     destructor = GvCV(gv);
6985                 if (!destructor) {
6986                     gv = gv_autoload_pvn(stash, S_destroy, S_destroy_len,
6987                                          GV_AUTOLOAD_ISMETHOD);
6988                     if (gv)
6989                         destructor = GvCV(gv);
6990                     if (destructor)
6991                         autoload = TRUE;
6992                 }
6993                 /* we don't cache AUTOLOAD for DESTROY, since this code
6994                    would then need to set $__PACKAGE__::AUTOLOAD, or the
6995                    equivalent for XS AUTOLOADs */
6996                 if (!autoload) {
6997                     meta->destroy_gen = PL_sub_generation;
6998                     meta->destroy = destructor;
6999
7000                     DEBUG_o( Perl_deb(aTHX_ "Set cached DESTROY method %p for %s\n",
7001                                       (void *)destructor, HvNAME(stash)) );
7002                 }
7003                 else {
7004                     DEBUG_o( Perl_deb(aTHX_ "Not caching AUTOLOAD for DESTROY method for %s\n",
7005                                       HvNAME(stash)) );
7006                 }
7007             }
7008             assert(!destructor || SvTYPE(destructor) == SVt_PVCV);
7009             if (destructor
7010                 /* A constant subroutine can have no side effects, so
7011                    don't bother calling it.  */
7012                 && !CvCONST(destructor)
7013                 /* Don't bother calling an empty destructor or one that
7014                    returns immediately. */
7015                 && (CvISXSUB(destructor)
7016                 || (CvSTART(destructor)
7017                     && (CvSTART(destructor)->op_next->op_type
7018                                         != OP_LEAVESUB)
7019                     && (CvSTART(destructor)->op_next->op_type
7020                                         != OP_PUSHMARK
7021                         || CvSTART(destructor)->op_next->op_next->op_type
7022                                         != OP_RETURN
7023                        )
7024                    ))
7025                )
7026             {
7027                 SV* const tmpref = newRV(sv);
7028                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
7029                 ENTER;
7030                 PUSHSTACKi(PERLSI_DESTROY);
7031                 EXTEND(SP, 2);
7032                 PUSHMARK(SP);
7033                 PUSHs(tmpref);
7034                 PUTBACK;
7035                 call_sv(MUTABLE_SV(destructor),
7036                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
7037                 POPSTACK;
7038                 SPAGAIN;
7039                 LEAVE;
7040                 if(SvREFCNT(tmpref) < 2) {
7041                     /* tmpref is not kept alive! */
7042                     SvREFCNT(sv)--;
7043                     SvRV_set(tmpref, NULL);
7044                     SvROK_off(tmpref);
7045                 }
7046                 SvREFCNT_dec_NN(tmpref);
7047             }
7048           }
7049         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
7050
7051
7052         if (check_refcnt && SvREFCNT(sv)) {
7053             if (PL_in_clean_objs)
7054                 Perl_croak(aTHX_
7055                   "DESTROY created new reference to dead object '%" HEKf "'",
7056                    HEKfARG(HvNAME_HEK(stash)));
7057             /* DESTROY gave object new lease on life */
7058             return FALSE;
7059         }
7060     }
7061
7062     if (SvOBJECT(sv)) {
7063         HV * const stash = SvSTASH(sv);
7064         /* Curse before freeing the stash, as freeing the stash could cause
7065            a recursive call into S_curse. */
7066         SvOBJECT_off(sv);       /* Curse the object. */
7067         SvSTASH_set(sv,0);      /* SvREFCNT_dec may try to read this */
7068         SvREFCNT_dec(stash); /* possibly of changed persuasion */
7069     }
7070     return TRUE;
7071 }
7072
7073 /*
7074 =for apidoc sv_newref
7075
7076 Increment an SV's reference count.  Use the C<SvREFCNT_inc()> wrapper
7077 instead.
7078
7079 =cut
7080 */
7081
7082 SV *
7083 Perl_sv_newref(pTHX_ SV *const sv)
7084 {
7085     PERL_UNUSED_CONTEXT;
7086     if (sv)
7087         (SvREFCNT(sv))++;
7088     return sv;
7089 }
7090
7091 /*
7092 =for apidoc sv_free
7093
7094 Decrement an SV's reference count, and if it drops to zero, call
7095 C<sv_clear> to invoke destructors and free up any memory used by
7096 the body; finally, deallocating the SV's head itself.
7097 Normally called via a wrapper macro C<SvREFCNT_dec>.
7098
7099 =cut
7100 */
7101
7102 void
7103 Perl_sv_free(pTHX_ SV *const sv)
7104 {
7105     SvREFCNT_dec(sv);
7106 }
7107
7108
7109 /* Private helper function for SvREFCNT_dec().
7110  * Called with rc set to original SvREFCNT(sv), where rc == 0 or 1 */
7111
7112 void
7113 Perl_sv_free2(pTHX_ SV *const sv, const U32 rc)
7114 {
7115     dVAR;
7116
7117     PERL_ARGS_ASSERT_SV_FREE2;
7118
7119     if (LIKELY( rc == 1 )) {
7120         /* normal case */
7121         SvREFCNT(sv) = 0;
7122
7123 #ifdef DEBUGGING
7124         if (SvTEMP(sv)) {
7125             Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
7126                              "Attempt to free temp prematurely: SV 0x%" UVxf
7127                              pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
7128             return;
7129         }
7130 #endif
7131         if (SvIMMORTAL(sv)) {
7132             /* make sure SvREFCNT(sv)==0 happens very seldom */
7133             SvREFCNT(sv) = SvREFCNT_IMMORTAL;
7134             return;
7135         }
7136         sv_clear(sv);
7137         if (! SvREFCNT(sv)) /* may have have been resurrected */
7138             del_SV(sv);
7139         return;
7140     }
7141
7142     /* handle exceptional cases */
7143
7144     assert(rc == 0);
7145
7146     if (SvFLAGS(sv) & SVf_BREAK)
7147         /* this SV's refcnt has been artificially decremented to
7148          * trigger cleanup */
7149         return;
7150     if (PL_in_clean_all) /* All is fair */
7151         return;
7152     if (SvIMMORTAL(sv)) {
7153         /* make sure SvREFCNT(sv)==0 happens very seldom */
7154         SvREFCNT(sv) = SvREFCNT_IMMORTAL;
7155         return;
7156     }
7157     if (ckWARN_d(WARN_INTERNAL)) {
7158 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
7159         Perl_dump_sv_child(aTHX_ sv);
7160 #else
7161     #ifdef DEBUG_LEAKING_SCALARS
7162         sv_dump(sv);
7163     #endif
7164 #ifdef DEBUG_LEAKING_SCALARS_ABORT
7165         if (PL_warnhook == PERL_WARNHOOK_FATAL
7166             || ckDEAD(packWARN(WARN_INTERNAL))) {
7167             /* Don't let Perl_warner cause us to escape our fate:  */
7168             abort();
7169         }
7170 #endif
7171         /* This may not return:  */
7172         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
7173                     "Attempt to free unreferenced scalar: SV 0x%" UVxf
7174                     pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
7175 #endif
7176     }
7177 #ifdef DEBUG_LEAKING_SCALARS_ABORT
7178     abort();
7179 #endif
7180
7181 }
7182
7183
7184 /*
7185 =for apidoc sv_len
7186
7187 Returns the length of the string in the SV.  Handles magic and type
7188 coercion and sets the UTF8 flag appropriately.  See also C<L</SvCUR>>, which
7189 gives raw access to the C<xpv_cur> slot.
7190
7191 =cut
7192 */
7193
7194 STRLEN
7195 Perl_sv_len(pTHX_ SV *const sv)
7196 {
7197     STRLEN len;
7198
7199     if (!sv)
7200         return 0;
7201
7202     (void)SvPV_const(sv, len);
7203     return len;
7204 }
7205
7206 /*
7207 =for apidoc sv_len_utf8
7208
7209 Returns the number of characters in the string in an SV, counting wide
7210 UTF-8 bytes as a single character.  Handles magic and type coercion.
7211
7212 =cut
7213 */
7214
7215 /*
7216  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
7217  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
7218  * (Note that the mg_len is not the length of the mg_ptr field.
7219  * This allows the cache to store the character length of the string without
7220  * needing to malloc() extra storage to attach to the mg_ptr.)
7221  *
7222  */
7223
7224 STRLEN
7225 Perl_sv_len_utf8(pTHX_ SV *const sv)
7226 {
7227     if (!sv)
7228         return 0;
7229
7230     SvGETMAGIC(sv);
7231     return sv_len_utf8_nomg(sv);
7232 }
7233
7234 STRLEN
7235 Perl_sv_len_utf8_nomg(pTHX_ SV * const sv)
7236 {
7237     STRLEN len;
7238     const U8 *s = (U8*)SvPV_nomg_const(sv, len);
7239
7240     PERL_ARGS_ASSERT_SV_LEN_UTF8_NOMG;
7241
7242     if (PL_utf8cache && SvUTF8(sv)) {
7243             STRLEN ulen;
7244             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
7245
7246             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
7247                 if (mg->mg_len != -1)
7248                     ulen = mg->mg_len;
7249                 else {
7250                     /* We can use the offset cache for a headstart.
7251                        The longer value is stored in the first pair.  */
7252                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
7253
7254                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
7255                                                        s + len);
7256                 }
7257                 
7258                 if (PL_utf8cache < 0) {
7259                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
7260                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
7261                 }
7262             }
7263             else {
7264                 ulen = Perl_utf8_length(aTHX_ s, s + len);
7265                 utf8_mg_len_cache_update(sv, &mg, ulen);
7266             }
7267             return ulen;
7268     }
7269     return SvUTF8(sv) ? Perl_utf8_length(aTHX_ s, s + len) : len;
7270 }
7271
7272 /* Walk forwards to find the byte corresponding to the passed in UTF-8
7273    offset.  */
7274 static STRLEN
7275 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
7276                       STRLEN *const uoffset_p, bool *const at_end)
7277 {
7278     const U8 *s = start;
7279     STRLEN uoffset = *uoffset_p;
7280
7281     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
7282
7283     while (s < send && uoffset) {
7284         --uoffset;
7285         s += UTF8SKIP(s);
7286     }
7287     if (s == send) {
7288         *at_end = TRUE;
7289     }
7290     else if (s > send) {
7291         *at_end = TRUE;
7292         /* This is the existing behaviour. Possibly it should be a croak, as
7293            it's actually a bounds error  */
7294         s = send;
7295     }
7296     *uoffset_p -= uoffset;
7297     return s - start;
7298 }
7299
7300 /* Given the length of the string in both bytes and UTF-8 characters, decide
7301    whether to walk forwards or backwards to find the byte corresponding to
7302    the passed in UTF-8 offset.  */
7303 static STRLEN
7304 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
7305                     STRLEN uoffset, const STRLEN uend)
7306 {
7307     STRLEN backw = uend - uoffset;
7308
7309     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
7310
7311     if (uoffset < 2 * backw) {
7312         /* The assumption is that going forwards is twice the speed of going
7313            forward (that's where the 2 * backw comes from).
7314            (The real figure of course depends on the UTF-8 data.)  */
7315         const U8 *s = start;
7316
7317         while (s < send && uoffset--)
7318             s += UTF8SKIP(s);
7319         assert (s <= send);
7320         if (s > send)
7321             s = send;
7322         return s - start;
7323     }
7324
7325     while (backw--) {
7326         send--;
7327         while (UTF8_IS_CONTINUATION(*send))
7328             send--;
7329     }
7330     return send - start;
7331 }
7332
7333 /* For the string representation of the given scalar, find the byte
7334    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
7335    give another position in the string, *before* the sought offset, which
7336    (which is always true, as 0, 0 is a valid pair of positions), which should
7337    help reduce the amount of linear searching.
7338    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
7339    will be used to reduce the amount of linear searching. The cache will be
7340    created if necessary, and the found value offered to it for update.  */
7341 static STRLEN
7342 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
7343                     const U8 *const send, STRLEN uoffset,
7344                     STRLEN uoffset0, STRLEN boffset0)
7345 {
7346     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
7347     bool found = FALSE;
7348     bool at_end = FALSE;
7349
7350     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
7351
7352     assert (uoffset >= uoffset0);
7353
7354     if (!uoffset)
7355         return 0;
7356
7357     if (!SvREADONLY(sv) && !SvGMAGICAL(sv) && SvPOK(sv)
7358         && PL_utf8cache
7359         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
7360                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
7361         if ((*mgp)->mg_ptr) {
7362             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
7363             if (cache[0] == uoffset) {
7364                 /* An exact match. */
7365                 return cache[1];
7366             }
7367             if (cache[2] == uoffset) {
7368                 /* An exact match. */
7369                 return cache[3];
7370             }
7371
7372             if (cache[0] < uoffset) {
7373                 /* The cache already knows part of the way.   */
7374                 if (cache[0] > uoffset0) {
7375                     /* The cache knows more than the passed in pair  */
7376                     uoffset0 = cache[0];
7377                     boffset0 = cache[1];
7378                 }
7379                 if ((*mgp)->mg_len != -1) {
7380                     /* And we know the end too.  */
7381                     boffset = boffset0
7382                         + sv_pos_u2b_midway(start + boffset0, send,
7383                                               uoffset - uoffset0,
7384                                               (*mgp)->mg_len - uoffset0);
7385                 } else {
7386                     uoffset -= uoffset0;
7387                     boffset = boffset0
7388                         + sv_pos_u2b_forwards(start + boffset0,
7389                                               send, &uoffset, &at_end);
7390                     uoffset += uoffset0;
7391                 }
7392             }
7393             else if (cache[2] < uoffset) {
7394                 /* We're between the two cache entries.  */
7395                 if (cache[2] > uoffset0) {
7396                     /* and the cache knows more than the passed in pair  */
7397                     uoffset0 = cache[2];
7398                     boffset0 = cache[3];
7399                 }
7400
7401                 boffset = boffset0
7402                     + sv_pos_u2b_midway(start + boffset0,
7403                                           start + cache[1],
7404                                           uoffset - uoffset0,
7405                                           cache[0] - uoffset0);
7406             } else {
7407                 boffset = boffset0
7408                     + sv_pos_u2b_midway(start + boffset0,
7409                                           start + cache[3],
7410                                           uoffset - uoffset0,
7411                                           cache[2] - uoffset0);
7412             }
7413             found = TRUE;
7414         }
7415         else if ((*mgp)->mg_len != -1) {
7416             /* If we can take advantage of a passed in offset, do so.  */
7417             /* In fact, offset0 is either 0, or less than offset, so don't
7418                need to worry about the other possibility.  */
7419             boffset = boffset0
7420                 + sv_pos_u2b_midway(start + boffset0, send,
7421                                       uoffset - uoffset0,
7422                                       (*mgp)->mg_len - uoffset0);
7423             found = TRUE;
7424         }
7425     }
7426
7427     if (!found || PL_utf8cache < 0) {
7428         STRLEN real_boffset;
7429         uoffset -= uoffset0;
7430         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
7431                                                       send, &uoffset, &at_end);
7432         uoffset += uoffset0;
7433
7434         if (found && PL_utf8cache < 0)
7435             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
7436                                        real_boffset, sv);
7437         boffset = real_boffset;
7438     }
7439
7440     if (PL_utf8cache && !SvGMAGICAL(sv) && SvPOK(sv)) {
7441         if (at_end)
7442             utf8_mg_len_cache_update(sv, mgp, uoffset);
7443         else
7444             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
7445     }
7446     return boffset;
7447 }
7448
7449
7450 /*
7451 =for apidoc sv_pos_u2b_flags
7452
7453 Converts the offset from a count of UTF-8 chars from
7454 the start of the string, to a count of the equivalent number of bytes; if
7455 C<lenp> is non-zero, it does the same to C<lenp>, but this time starting from
7456 C<offset>, rather than from the start
7457 of the string.  Handles type coercion.
7458 C<flags> is passed to C<SvPV_flags>, and usually should be
7459 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7460
7461 =cut
7462 */
7463
7464 /*
7465  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
7466  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7467  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7468  *
7469  */
7470
7471 STRLEN
7472 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
7473                       U32 flags)
7474 {
7475     const U8 *start;
7476     STRLEN len;
7477     STRLEN boffset;
7478
7479     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
7480
7481     start = (U8*)SvPV_flags(sv, len, flags);
7482     if (len) {
7483         const U8 * const send = start + len;
7484         MAGIC *mg = NULL;
7485         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
7486
7487         if (lenp
7488             && *lenp /* don't bother doing work for 0, as its bytes equivalent
7489                         is 0, and *lenp is already set to that.  */) {
7490             /* Convert the relative offset to absolute.  */
7491             const STRLEN uoffset2 = uoffset + *lenp;
7492             const STRLEN boffset2
7493                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
7494                                       uoffset, boffset) - boffset;
7495
7496             *lenp = boffset2;
7497         }
7498     } else {
7499         if (lenp)
7500             *lenp = 0;
7501         boffset = 0;
7502     }
7503
7504     return boffset;
7505 }
7506
7507 /*
7508 =for apidoc sv_pos_u2b
7509
7510 Converts the value pointed to by C<offsetp> from a count of UTF-8 chars from
7511 the start of the string, to a count of the equivalent number of bytes; if
7512 C<lenp> is non-zero, it does the same to C<lenp>, but this time starting from
7513 the offset, rather than from the start of the string.  Handles magic and
7514 type coercion.
7515
7516 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
7517 than 2Gb.
7518
7519 =cut
7520 */
7521
7522 /*
7523  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
7524  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7525  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7526  *
7527  */
7528
7529 /* This function is subject to size and sign problems */
7530
7531 void
7532 Perl_sv_pos_u2b(pTHX_ SV *const sv, I32 *const offsetp, I32 *const lenp)
7533 {
7534     PERL_ARGS_ASSERT_SV_POS_U2B;
7535
7536     if (lenp) {
7537         STRLEN ulen = (STRLEN)*lenp;
7538         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
7539                                          SV_GMAGIC|SV_CONST_RETURN);
7540         *lenp = (I32)ulen;
7541     } else {
7542         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
7543                                          SV_GMAGIC|SV_CONST_RETURN);
7544     }
7545 }
7546
7547 static void
7548 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
7549                            const STRLEN ulen)
7550 {
7551     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
7552     if (SvREADONLY(sv) || SvGMAGICAL(sv) || !SvPOK(sv))
7553         return;
7554
7555     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7556                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7557         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
7558     }
7559     assert(*mgp);
7560
7561     (*mgp)->mg_len = ulen;
7562 }
7563
7564 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
7565    byte length pairing. The (byte) length of the total SV is passed in too,
7566    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
7567    may not have updated SvCUR, so we can't rely on reading it directly.
7568
7569    The proffered utf8/byte length pairing isn't used if the cache already has
7570    two pairs, and swapping either for the proffered pair would increase the
7571    RMS of the intervals between known byte offsets.
7572
7573    The cache itself consists of 4 STRLEN values
7574    0: larger UTF-8 offset
7575    1: corresponding byte offset
7576    2: smaller UTF-8 offset
7577    3: corresponding byte offset
7578
7579    Unused cache pairs have the value 0, 0.
7580    Keeping the cache "backwards" means that the invariant of
7581    cache[0] >= cache[2] is maintained even with empty slots, which means that
7582    the code that uses it doesn't need to worry if only 1 entry has actually
7583    been set to non-zero.  It also makes the "position beyond the end of the
7584    cache" logic much simpler, as the first slot is always the one to start
7585    from.   
7586 */
7587 static void
7588 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
7589                            const STRLEN utf8, const STRLEN blen)
7590 {
7591     STRLEN *cache;
7592
7593     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
7594
7595     if (SvREADONLY(sv))
7596         return;
7597
7598     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7599                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7600         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
7601                            0);
7602         (*mgp)->mg_len = -1;
7603     }
7604     assert(*mgp);
7605
7606     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
7607         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
7608         (*mgp)->mg_ptr = (char *) cache;
7609     }
7610     assert(cache);
7611
7612     if (PL_utf8cache < 0 && SvPOKp(sv)) {
7613         /* SvPOKp() because, if sv is a reference, then SvPVX() is actually
7614            a pointer.  Note that we no longer cache utf8 offsets on refer-
7615            ences, but this check is still a good idea, for robustness.  */
7616         const U8 *start = (const U8 *) SvPVX_const(sv);
7617         const STRLEN realutf8 = utf8_length(start, start + byte);
7618
7619         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
7620                                    sv);
7621     }
7622
7623     /* Cache is held with the later position first, to simplify the code
7624        that deals with unbounded ends.  */
7625        
7626     ASSERT_UTF8_CACHE(cache);
7627     if (cache[1] == 0) {
7628         /* Cache is totally empty  */
7629         cache[0] = utf8;
7630         cache[1] = byte;
7631     } else if (cache[3] == 0) {
7632         if (byte > cache[1]) {
7633             /* New one is larger, so goes first.  */
7634             cache[2] = cache[0];
7635             cache[3] = cache[1];
7636             cache[0] = utf8;
7637             cache[1] = byte;
7638         } else {
7639             cache[2] = utf8;
7640             cache[3] = byte;
7641         }
7642     } else {
7643 /* float casts necessary? XXX */
7644 #define THREEWAY_SQUARE(a,b,c,d) \
7645             ((float)((d) - (c))) * ((float)((d) - (c))) \
7646             + ((float)((c) - (b))) * ((float)((c) - (b))) \
7647                + ((float)((b) - (a))) * ((float)((b) - (a)))
7648
7649         /* Cache has 2 slots in use, and we know three potential pairs.
7650            Keep the two that give the lowest RMS distance. Do the
7651            calculation in bytes simply because we always know the byte
7652            length.  squareroot has the same ordering as the positive value,
7653            so don't bother with the actual square root.  */
7654         if (byte > cache[1]) {
7655             /* New position is after the existing pair of pairs.  */
7656             const float keep_earlier
7657                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
7658             const float keep_later
7659                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
7660
7661             if (keep_later < keep_earlier) {
7662                 cache[2] = cache[0];
7663                 cache[3] = cache[1];
7664             }
7665             cache[0] = utf8;
7666             cache[1] = byte;
7667         }
7668         else {
7669             const float keep_later = THREEWAY_SQUARE(0, byte, cache[1], blen);
7670             float b, c, keep_earlier;
7671             if (byte > cache[3]) {
7672                 /* New position is between the existing pair of pairs.  */
7673                 b = (float)cache[3];
7674                 c = (float)byte;
7675             } else {
7676                 /* New position is before the existing pair of pairs.  */
7677                 b = (float)byte;
7678                 c = (float)cache[3];
7679             }
7680             keep_earlier = THREEWAY_SQUARE(0, b, c, blen);
7681             if (byte > cache[3]) {
7682                 if (keep_later < keep_earlier) {
7683                     cache[2] = utf8;
7684                     cache[3] = byte;
7685                 }
7686                 else {
7687                     cache[0] = utf8;
7688                     cache[1] = byte;
7689                 }
7690             }
7691             else {
7692                 if (! (keep_later < keep_earlier)) {
7693                     cache[0] = cache[2];
7694                     cache[1] = cache[3];
7695                 }
7696                 cache[2] = utf8;
7697                 cache[3] = byte;
7698             }
7699         }
7700     }
7701     ASSERT_UTF8_CACHE(cache);
7702 }
7703
7704 /* We already know all of the way, now we may be able to walk back.  The same
7705    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
7706    backward is half the speed of walking forward. */
7707 static STRLEN
7708 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
7709                     const U8 *end, STRLEN endu)
7710 {
7711     const STRLEN forw = target - s;
7712     STRLEN backw = end - target;
7713
7714     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
7715
7716     if (forw < 2 * backw) {
7717         return utf8_length(s, target);
7718     }
7719
7720     while (end > target) {
7721         end--;
7722         while (UTF8_IS_CONTINUATION(*end)) {
7723             end--;
7724         }
7725         endu--;
7726     }
7727     return endu;
7728 }
7729
7730 /*
7731 =for apidoc sv_pos_b2u_flags
7732
7733 Converts C<offset> from a count of bytes from the start of the string, to
7734 a count of the equivalent number of UTF-8 chars.  Handles type coercion.
7735 C<flags> is passed to C<SvPV_flags>, and usually should be
7736 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7737
7738 =cut
7739 */
7740
7741 /*
7742  * sv_pos_b2u_flags() uses, like sv_pos_u2b_flags(), the mg_ptr of the
7743  * potential PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8
7744  * and byte offsets.
7745  *
7746  */
7747 STRLEN
7748 Perl_sv_pos_b2u_flags(pTHX_ SV *const sv, STRLEN const offset, U32 flags)
7749 {
7750     const U8* s;
7751     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
7752     STRLEN blen;
7753     MAGIC* mg = NULL;
7754     const U8* send;
7755     bool found = FALSE;
7756
7757     PERL_ARGS_ASSERT_SV_POS_B2U_FLAGS;
7758
7759     s = (const U8*)SvPV_flags(sv, blen, flags);
7760
7761     if (blen < offset)
7762         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset, blen=%" UVuf
7763                    ", byte=%" UVuf, (UV)blen, (UV)offset);
7764
7765     send = s + offset;
7766
7767     if (!SvREADONLY(sv)
7768         && PL_utf8cache
7769         && SvTYPE(sv) >= SVt_PVMG
7770         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7771     {
7772         if (mg->mg_ptr) {
7773             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7774             if (cache[1] == offset) {
7775                 /* An exact match. */
7776                 return cache[0];
7777             }
7778             if (cache[3] == offset) {
7779                 /* An exact match. */
7780                 return cache[2];
7781             }
7782
7783             if (cache[1] < offset) {
7784                 /* We already know part of the way. */
7785                 if (mg->mg_len != -1) {
7786                     /* Actually, we know the end too.  */
7787                     len = cache[0]
7788                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7789                                               s + blen, mg->mg_len - cache[0]);
7790                 } else {
7791                     len = cache[0] + utf8_length(s + cache[1], send);
7792                 }
7793             }
7794             else if (cache[3] < offset) {
7795                 /* We're between the two cached pairs, so we do the calculation
7796                    offset by the byte/utf-8 positions for the earlier pair,
7797                    then add the utf-8 characters from the string start to
7798                    there.  */
7799                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7800                                           s + cache[1], cache[0] - cache[2])
7801                     + cache[2];
7802
7803             }
7804             else { /* cache[3] > offset */
7805                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7806                                           cache[2]);
7807
7808             }
7809             ASSERT_UTF8_CACHE(cache);
7810             found = TRUE;
7811         } else if (mg->mg_len != -1) {
7812             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7813             found = TRUE;
7814         }
7815     }
7816     if (!found || PL_utf8cache < 0) {
7817         const STRLEN real_len = utf8_length(s, send);
7818
7819         if (found && PL_utf8cache < 0)
7820             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7821         len = real_len;
7822     }
7823
7824     if (PL_utf8cache) {
7825         if (blen == offset)
7826             utf8_mg_len_cache_update(sv, &mg, len);
7827         else
7828             utf8_mg_pos_cache_update(sv, &mg, offset, len, blen);
7829     }
7830
7831     return len;
7832 }
7833
7834 /*
7835 =for apidoc sv_pos_b2u
7836
7837 Converts the value pointed to by C<offsetp> from a count of bytes from the
7838 start of the string, to a count of the equivalent number of UTF-8 chars.
7839 Handles magic and type coercion.
7840
7841 Use C<sv_pos_b2u_flags> in preference, which correctly handles strings
7842 longer than 2Gb.
7843
7844 =cut
7845 */
7846
7847 /*
7848  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
7849  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7850  * byte offsets.
7851  *
7852  */
7853 void
7854 Perl_sv_pos_b2u(pTHX_ SV *const sv, I32 *const offsetp)
7855 {
7856     PERL_ARGS_ASSERT_SV_POS_B2U;
7857
7858     if (!sv)
7859         return;
7860
7861     *offsetp = (I32)sv_pos_b2u_flags(sv, (STRLEN)*offsetp,
7862                                      SV_GMAGIC|SV_CONST_RETURN);
7863 }
7864
7865 static void
7866 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7867                              STRLEN real, SV *const sv)
7868 {
7869     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7870
7871     /* As this is debugging only code, save space by keeping this test here,
7872        rather than inlining it in all the callers.  */
7873     if (from_cache == real)
7874         return;
7875
7876     /* Need to turn the assertions off otherwise we may recurse infinitely
7877        while printing error messages.  */
7878     SAVEI8(PL_utf8cache);
7879     PL_utf8cache = 0;
7880     Perl_croak(aTHX_ "panic: %s cache %" UVuf " real %" UVuf " for %" SVf,
7881                func, (UV) from_cache, (UV) real, SVfARG(sv));
7882 }
7883
7884 /*
7885 =for apidoc sv_eq
7886
7887 Returns a boolean indicating whether the strings in the two SVs are
7888 identical.  Is UTF-8 and S<C<'use bytes'>> aware, handles get magic, and will
7889 coerce its args to strings if necessary.
7890
7891 =for apidoc sv_eq_flags
7892
7893 Returns a boolean indicating whether the strings in the two SVs are
7894 identical.  Is UTF-8 and S<C<'use bytes'>> aware and coerces its args to strings
7895 if necessary.  If the flags has the C<SV_GMAGIC> bit set, it handles get-magic, too.
7896
7897 =cut
7898 */
7899
7900 I32
7901 Perl_sv_eq_flags(pTHX_ SV *sv1, SV *sv2, const U32 flags)
7902 {
7903     const char *pv1;
7904     STRLEN cur1;
7905     const char *pv2;
7906     STRLEN cur2;
7907     I32  eq     = 0;
7908     SV* svrecode = NULL;
7909
7910     if (!sv1) {
7911         pv1 = "";
7912         cur1 = 0;
7913     }
7914     else {
7915         /* if pv1 and pv2 are the same, second SvPV_const call may
7916          * invalidate pv1 (if we are handling magic), so we may need to
7917          * make a copy */
7918         if (sv1 == sv2 && flags & SV_GMAGIC
7919          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7920             pv1 = SvPV_const(sv1, cur1);
7921             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7922         }
7923         pv1 = SvPV_flags_const(sv1, cur1, flags);
7924     }
7925
7926     if (!sv2){
7927         pv2 = "";
7928         cur2 = 0;
7929     }
7930     else
7931         pv2 = SvPV_flags_const(sv2, cur2, flags);
7932
7933     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7934         /* Differing utf8ness.  */
7935         if (SvUTF8(sv1)) {
7936                   /* sv1 is the UTF-8 one  */
7937                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7938                                         (const U8*)pv1, cur1) == 0;
7939         }
7940         else {
7941                   /* sv2 is the UTF-8 one  */
7942                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7943                                         (const U8*)pv2, cur2) == 0;
7944         }
7945     }
7946
7947     if (cur1 == cur2)
7948         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7949         
7950     SvREFCNT_dec(svrecode);
7951
7952     return eq;
7953 }
7954
7955 /*
7956 =for apidoc sv_cmp
7957
7958 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7959 string in C<sv1> is less than, equal to, or greater than the string in
7960 C<sv2>.  Is UTF-8 and S<C<'use bytes'>> aware, handles get magic, and will
7961 coerce its args to strings if necessary.  See also C<L</sv_cmp_locale>>.
7962
7963 =for apidoc sv_cmp_flags
7964
7965 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7966 string in C<sv1> is less than, equal to, or greater than the string in
7967 C<sv2>.  Is UTF-8 and S<C<'use bytes'>> aware and will coerce its args to strings
7968 if necessary.  If the flags has the C<SV_GMAGIC> bit set, it handles get magic.  See
7969 also C<L</sv_cmp_locale_flags>>.
7970
7971 =cut
7972 */
7973
7974 I32
7975 Perl_sv_cmp(pTHX_ SV *const sv1, SV *const sv2)
7976 {
7977     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7978 }
7979
7980 I32
7981 Perl_sv_cmp_flags(pTHX_ SV *const sv1, SV *const sv2,
7982                   const U32 flags)
7983 {
7984     STRLEN cur1, cur2;
7985     const char *pv1, *pv2;
7986     I32  cmp;
7987     SV *svrecode = NULL;
7988
7989     if (!sv1) {
7990         pv1 = "";
7991         cur1 = 0;
7992     }
7993     else
7994         pv1 = SvPV_flags_const(sv1, cur1, flags);
7995
7996     if (!sv2) {
7997         pv2 = "";
7998         cur2 = 0;
7999     }
8000     else
8001         pv2 = SvPV_flags_const(sv2, cur2, flags);
8002
8003     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
8004         /* Differing utf8ness.  */
8005         if (SvUTF8(sv1)) {
8006                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
8007                                                    (const U8*)pv1, cur1);
8008                 return retval ? retval < 0 ? -1 : +1 : 0;
8009         }
8010         else {
8011                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
8012                                                   (const U8*)pv2, cur2);
8013                 return retval ? retval < 0 ? -1 : +1 : 0;
8014         }
8015     }
8016
8017     /* Here, if both are non-NULL, then they have the same UTF8ness. */
8018
8019     if (!cur1) {
8020         cmp = cur2 ? -1 : 0;
8021     } else if (!cur2) {
8022         cmp = 1;
8023     } else {
8024         STRLEN shortest_len = cur1 < cur2 ? cur1 : cur2;
8025
8026 #ifdef EBCDIC
8027         if (! DO_UTF8(sv1)) {
8028 #endif
8029             const I32 retval = memcmp((const void*)pv1,
8030                                       (const void*)pv2,
8031                                       shortest_len);
8032             if (retval) {
8033                 cmp = retval < 0 ? -1 : 1;
8034             } else if (cur1 == cur2) {
8035                 cmp = 0;
8036             } else {
8037                 cmp = cur1 < cur2 ? -1 : 1;
8038             }
8039 #ifdef EBCDIC
8040         }
8041         else {  /* Both are to be treated as UTF-EBCDIC */
8042
8043             /* EBCDIC UTF-8 is complicated by the fact that it is based on I8
8044              * which remaps code points 0-255.  We therefore generally have to
8045              * unmap back to the original values to get an accurate comparison.
8046              * But we don't have to do that for UTF-8 invariants, as by
8047              * definition, they aren't remapped, nor do we have to do it for
8048              * above-latin1 code points, as they also aren't remapped.  (This
8049              * code also works on ASCII platforms, but the memcmp() above is
8050              * much faster). */
8051
8052             const char *e = pv1 + shortest_len;
8053
8054             /* Find the first bytes that differ between the two strings */
8055             while (pv1 < e && *pv1 == *pv2) {
8056                 pv1++;
8057                 pv2++;
8058             }
8059
8060
8061             if (pv1 == e) { /* Are the same all the way to the end */
8062                 if (cur1 == cur2) {
8063                     cmp = 0;
8064                 } else {
8065                     cmp = cur1 < cur2 ? -1 : 1;
8066                 }
8067             }
8068             else   /* Here *pv1 and *pv2 are not equal, but all bytes earlier
8069                     * in the strings were.  The current bytes may or may not be
8070                     * at the beginning of a character.  But neither or both are
8071                     * (or else earlier bytes would have been different).  And
8072                     * if we are in the middle of a character, the two
8073                     * characters are comprised of the same number of bytes
8074                     * (because in this case the start bytes are the same, and
8075                     * the start bytes encode the character's length). */
8076                  if (UTF8_IS_INVARIANT(*pv1))
8077             {
8078                 /* If both are invariants; can just compare directly */
8079                 if (UTF8_IS_INVARIANT(*pv2)) {
8080                     cmp = ((U8) *pv1 < (U8) *pv2) ? -1 : 1;
8081                 }
8082                 else   /* Since *pv1 is invariant, it is the whole character,
8083                           which means it is at the beginning of a character.
8084                           That means pv2 is also at the beginning of a
8085                           character (see earlier comment).  Since it isn't
8086                           invariant, it must be a start byte.  If it starts a
8087                           character whose code point is above 255, that
8088                           character is greater than any single-byte char, which
8089                           *pv1 is */
8090                       if (UTF8_IS_ABOVE_LATIN1_START(*pv2))
8091                 {
8092                     cmp = -1;
8093                 }
8094                 else {
8095                     /* Here, pv2 points to a character composed of 2 bytes
8096                      * whose code point is < 256.  Get its code point and
8097                      * compare with *pv1 */
8098                     cmp = ((U8) *pv1 < EIGHT_BIT_UTF8_TO_NATIVE(*pv2, *(pv2 + 1)))
8099                            ?  -1
8100                            : 1;
8101                 }
8102             }
8103             else   /* The code point starting at pv1 isn't a single byte */
8104                  if (UTF8_IS_INVARIANT(*pv2))
8105             {
8106                 /* But here, the code point starting at *pv2 is a single byte,
8107                  * and so *pv1 must begin a character, hence is a start byte.
8108                  * If that character is above 255, it is larger than any
8109                  * single-byte char, which *pv2 is */
8110                 if (UTF8_IS_ABOVE_LATIN1_START(*pv1)) {
8111                     cmp = 1;
8112                 }
8113                 else {
8114                     /* Here, pv1 points to a character composed of 2 bytes
8115                      * whose code point is < 256.  Get its code point and
8116                      * compare with the single byte character *pv2 */
8117                     cmp = (EIGHT_BIT_UTF8_TO_NATIVE(*pv1, *(pv1 + 1)) < (U8) *pv2)
8118                           ?  -1
8119                           : 1;
8120                 }
8121             }
8122             else   /* Here, we've ruled out either *pv1 and *pv2 being
8123                       invariant.  That means both are part of variants, but not
8124                       necessarily at the start of a character */
8125                  if (   UTF8_IS_ABOVE_LATIN1_START(*pv1)
8126                      || UTF8_IS_ABOVE_LATIN1_START(*pv2))
8127             {
8128                 /* Here, at least one is the start of a character, which means
8129                  * the other is also a start byte.  And the code point of at
8130                  * least one of the characters is above 255.  It is a
8131                  * characteristic of UTF-EBCDIC that all start bytes for
8132                  * above-latin1 code points are well behaved as far as code
8133                  * point comparisons go, and all are larger than all other
8134                  * start bytes, so the comparison with those is also well
8135                  * behaved */
8136                 cmp = ((U8) *pv1 < (U8) *pv2) ? -1 : 1;
8137             }
8138             else {
8139                 /* Here both *pv1 and *pv2 are part of variant characters.
8140                  * They could be both continuations, or both start characters.
8141                  * (One or both could even be an illegal start character (for
8142                  * an overlong) which for the purposes of sorting we treat as
8143                  * legal. */
8144                 if (UTF8_IS_CONTINUATION(*pv1)) {
8145
8146                     /* If they are continuations for code points above 255,
8147                      * then comparing the current byte is sufficient, as there
8148                      * is no remapping of these and so the comparison is
8149                      * well-behaved.   We determine if they are such
8150                      * continuations by looking at the preceding byte.  It
8151                      * could be a start byte, from which we can tell if it is
8152                      * for an above 255 code point.  Or it could be a
8153                      * continuation, which means the character occupies at
8154                      * least 3 bytes, so must be above 255.  */
8155                     if (   UTF8_IS_CONTINUATION(*(pv2 - 1))
8156                         || UTF8_IS_ABOVE_LATIN1_START(*(pv2 -1)))
8157                     {
8158                         cmp = ((U8) *pv1 < (U8) *pv2) ? -1 : 1;
8159                         goto cmp_done;
8160                     }
8161
8162                     /* Here, the continuations are for code points below 256;
8163                      * back up one to get to the start byte */
8164                     pv1--;
8165                     pv2--;
8166                 }
8167
8168                 /* We need to get the actual native code point of each of these
8169                  * variants in order to compare them */
8170                 cmp =  (  EIGHT_BIT_UTF8_TO_NATIVE(*pv1, *(pv1 + 1))
8171                         < EIGHT_BIT_UTF8_TO_NATIVE(*pv2, *(pv2 + 1)))
8172                         ? -1
8173                         : 1;
8174             }
8175         }
8176       cmp_done: ;
8177 #endif
8178     }
8179
8180     SvREFCNT_dec(svrecode);
8181
8182     return cmp;
8183 }
8184
8185 /*
8186 =for apidoc sv_cmp_locale
8187
8188 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
8189 S<C<'use bytes'>> aware, handles get magic, and will coerce its args to strings
8190 if necessary.  See also C<L</sv_cmp>>.
8191
8192 =for apidoc sv_cmp_locale_flags
8193
8194 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
8195 S<C<'use bytes'>> aware and will coerce its args to strings if necessary.  If
8196 the flags contain C<SV_GMAGIC>, it handles get magic.  See also
8197 C<L</sv_cmp_flags>>.
8198
8199 =cut
8200 */
8201
8202 I32
8203 Perl_sv_cmp_locale(pTHX_ SV *const sv1, SV *const sv2)
8204 {
8205     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
8206 }
8207
8208 I32
8209 Perl_sv_cmp_locale_flags(pTHX_ SV *const sv1, SV *const sv2,
8210                          const U32 flags)
8211 {
8212 #ifdef USE_LOCALE_COLLATE
8213
8214     char *pv1, *pv2;
8215     STRLEN len1, len2;
8216     I32 retval;
8217
8218     if (PL_collation_standard)
8219         goto raw_compare;
8220
8221     len1 = len2 = 0;
8222
8223     /* Revert to using raw compare if both operands exist, but either one
8224      * doesn't transform properly for collation */
8225     if (sv1 && sv2) {
8226         pv1 = sv_collxfrm_flags(sv1, &len1, flags);
8227         if (! pv1) {
8228             goto raw_compare;
8229         }
8230         pv2 = sv_collxfrm_flags(sv2, &len2, flags);
8231         if (! pv2) {
8232             goto raw_compare;
8233         }
8234     }
8235     else {
8236         pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
8237         pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
8238     }
8239
8240     if (!pv1 || !len1) {
8241         if (pv2 && len2)
8242             return -1;
8243         else
8244             goto raw_compare;
8245     }
8246     else {
8247         if (!pv2 || !len2)
8248             return 1;
8249     }
8250
8251     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
8252
8253     if (retval)
8254         return retval < 0 ? -1 : 1;
8255
8256     /*
8257      * When the result of collation is equality, that doesn't mean
8258      * that there are no differences -- some locales exclude some
8259      * characters from consideration.  So to avoid false equalities,
8260      * we use the raw string as a tiebreaker.
8261      */
8262
8263   raw_compare:
8264     /* FALLTHROUGH */
8265
8266 #else
8267     PERL_UNUSED_ARG(flags);
8268 #endif /* USE_LOCALE_COLLATE */
8269
8270     return sv_cmp(sv1, sv2);
8271 }
8272
8273
8274 #ifdef USE_LOCALE_COLLATE
8275
8276 /*
8277 =for apidoc sv_collxfrm
8278
8279 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag.  See
8280 C<L</sv_collxfrm_flags>>.
8281
8282 =for apidoc sv_collxfrm_flags
8283
8284 Add Collate Transform magic to an SV if it doesn't already have it.  If the
8285 flags contain C<SV_GMAGIC>, it handles get-magic.
8286
8287 Any scalar variable may carry C<PERL_MAGIC_collxfrm> magic that contains the
8288 scalar data of the variable, but transformed to such a format that a normal
8289 memory comparison can be used to compare the data according to the locale
8290 settings.
8291
8292 =cut
8293 */
8294
8295 char *
8296 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
8297 {
8298     MAGIC *mg;
8299
8300     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
8301
8302     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
8303
8304     /* If we don't have collation magic on 'sv', or the locale has changed
8305      * since the last time we calculated it, get it and save it now */
8306     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
8307         const char *s;
8308         char *xf;
8309         STRLEN len, xlen;
8310
8311         /* Free the old space */
8312         if (mg)
8313             Safefree(mg->mg_ptr);
8314
8315         s = SvPV_flags_const(sv, len, flags);
8316         if ((xf = _mem_collxfrm(s, len, &xlen, cBOOL(SvUTF8(sv))))) {
8317             if (! mg) {
8318                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
8319                                  0, 0);
8320                 assert(mg);
8321             }
8322             mg->mg_ptr = xf;
8323             mg->mg_len = xlen;
8324         }
8325         else {
8326             if (mg) {
8327                 mg->mg_ptr = NULL;
8328                 mg->mg_len = -1;
8329             }
8330         }
8331     }
8332
8333     if (mg && mg->mg_ptr) {
8334         *nxp = mg->mg_len;
8335         return mg->mg_ptr + sizeof(PL_collation_ix);
8336     }
8337     else {
8338         *nxp = 0;
8339         return NULL;
8340     }
8341 }
8342
8343 #endif /* USE_LOCALE_COLLATE */
8344
8345 static char *
8346 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8347 {
8348     SV * const tsv = newSV(0);
8349     ENTER;
8350     SAVEFREESV(tsv);
8351     sv_gets(tsv, fp, 0);
8352     sv_utf8_upgrade_nomg(tsv);
8353     SvCUR_set(sv,append);
8354     sv_catsv(sv,tsv);
8355     LEAVE;
8356     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8357 }
8358
8359 static char *
8360 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8361 {
8362     SSize_t bytesread;
8363     const STRLEN recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
8364       /* Grab the size of the record we're getting */
8365     char *buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
8366     
8367     /* Go yank in */
8368 #ifdef __VMS
8369     int fd;
8370     Stat_t st;
8371
8372     /* With a true, record-oriented file on VMS, we need to use read directly
8373      * to ensure that we respect RMS record boundaries.  The user is responsible
8374      * for providing a PL_rs value that corresponds to the FAB$W_MRS (maximum
8375      * record size) field.  N.B. This is likely to produce invalid results on
8376      * varying-width character data when a record ends mid-character.
8377      */
8378     fd = PerlIO_fileno(fp);
8379     if (fd != -1
8380         && PerlLIO_fstat(fd, &st) == 0
8381         && (st.st_fab_rfm == FAB$C_VAR
8382             || st.st_fab_rfm == FAB$C_VFC
8383             || st.st_fab_rfm == FAB$C_FIX)) {
8384
8385         bytesread = PerlLIO_read(fd, buffer, recsize);
8386     }
8387     else /* in-memory file from PerlIO::Scalar
8388           * or not a record-oriented file
8389           */
8390 #endif
8391     {
8392         bytesread = PerlIO_read(fp, buffer, recsize);
8393
8394         /* At this point, the logic in sv_get() means that sv will
8395            be treated as utf-8 if the handle is utf8.
8396         */
8397         if (PerlIO_isutf8(fp) && bytesread > 0) {
8398             char *bend = buffer + bytesread;
8399             char *bufp = buffer;
8400             size_t charcount = 0;
8401             bool charstart = TRUE;
8402             STRLEN skip = 0;
8403
8404             while (charcount < recsize) {
8405                 /* count accumulated characters */
8406                 while (bufp < bend) {
8407                     if (charstart) {
8408                         skip = UTF8SKIP(bufp);
8409                     }
8410                     if (bufp + skip > bend) {
8411                         /* partial at the end */
8412                         charstart = FALSE;
8413                         break;
8414                     }
8415                     else {
8416                         ++charcount;
8417                         bufp += skip;
8418                         charstart = TRUE;
8419                     }
8420                 }
8421
8422                 if (charcount < recsize) {
8423                     STRLEN readsize;
8424                     STRLEN bufp_offset = bufp - buffer;
8425                     SSize_t morebytesread;
8426
8427                     /* originally I read enough to fill any incomplete
8428                        character and the first byte of the next
8429                        character if needed, but if there's many
8430                        multi-byte encoded characters we're going to be
8431                        making a read call for every character beyond
8432                        the original read size.
8433
8434                        So instead, read the rest of the character if
8435                        any, and enough bytes to match at least the
8436                        start bytes for each character we're going to
8437                        read.
8438                     */
8439                     if (charstart)
8440                         readsize = recsize - charcount;
8441                     else 
8442                         readsize = skip - (bend - bufp) + recsize - charcount - 1;
8443                     buffer = SvGROW(sv, append + bytesread + readsize + 1) + append;
8444                     bend = buffer + bytesread;
8445                     morebytesread = PerlIO_read(fp, bend, readsize);
8446                     if (morebytesread <= 0) {
8447                         /* we're done, if we still have incomplete
8448                            characters the check code in sv_gets() will
8449                            warn about them.
8450
8451                            I'd originally considered doing
8452                            PerlIO_ungetc() on all but the lead
8453                            character of the incomplete character, but
8454                            read() doesn't do that, so I don't.
8455                         */
8456                         break;
8457                     }
8458
8459                     /* prepare to scan some more */
8460                     bytesread += morebytesread;
8461                     bend = buffer + bytesread;
8462                     bufp = buffer + bufp_offset;
8463                 }
8464             }
8465         }
8466     }
8467
8468     if (bytesread < 0)
8469         bytesread = 0;
8470     SvCUR_set(sv, bytesread + append);
8471     buffer[bytesread] = '\0';
8472     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8473 }
8474
8475 /*
8476 =for apidoc sv_gets
8477
8478 Get a line from the filehandle and store it into the SV, optionally
8479 appending to the currently-stored string.  If C<append> is not 0, the
8480 line is appended to the SV instead of overwriting it.  C<append> should
8481 be set to the byte offset that the appended string should start at
8482 in the SV (typically, C<SvCUR(sv)> is a suitable choice).
8483
8484 =cut
8485 */
8486
8487 char *
8488 Perl_sv_gets(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8489 {
8490     const char *rsptr;
8491     STRLEN rslen;
8492     STDCHAR rslast;
8493     STDCHAR *bp;
8494     SSize_t cnt;
8495     int i = 0;
8496     int rspara = 0;
8497
8498     PERL_ARGS_ASSERT_SV_GETS;
8499
8500     if (SvTHINKFIRST(sv))
8501         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
8502     /* XXX. If you make this PVIV, then copy on write can copy scalars read
8503        from <>.
8504        However, perlbench says it's slower, because the existing swipe code
8505        is faster than copy on write.
8506        Swings and roundabouts.  */
8507     SvUPGRADE(sv, SVt_PV);
8508
8509     if (append) {
8510         /* line is going to be appended to the existing buffer in the sv */
8511         if (PerlIO_isutf8(fp)) {
8512             if (!SvUTF8(sv)) {
8513                 sv_utf8_upgrade_nomg(sv);
8514                 sv_pos_u2b(sv,&append,0);
8515             }
8516         } else if (SvUTF8(sv)) {
8517             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
8518         }
8519     }
8520
8521     SvPOK_only(sv);
8522     if (!append) {
8523         /* not appending - "clear" the string by setting SvCUR to 0,
8524          * the pv is still avaiable. */
8525         SvCUR_set(sv,0);
8526     }
8527     if (PerlIO_isutf8(fp))
8528         SvUTF8_on(sv);
8529
8530     if (IN_PERL_COMPILETIME) {
8531         /* we always read code in line mode */
8532         rsptr = "\n";
8533         rslen = 1;
8534     }
8535     else if (RsSNARF(PL_rs)) {
8536         /* If it is a regular disk file use size from stat() as estimate
8537            of amount we are going to read -- may result in mallocing
8538            more memory than we really need if the layers below reduce
8539            the size we read (e.g. CRLF or a gzip layer).
8540          */
8541         Stat_t st;
8542         int fd = PerlIO_fileno(fp);
8543         if (fd >= 0 && (PerlLIO_fstat(fd, &st) == 0) && S_ISREG(st.st_mode))  {
8544             const Off_t offset = PerlIO_tell(fp);
8545             if (offset != (Off_t) -1 && st.st_size + append > offset) {
8546 #ifdef PERL_COPY_ON_WRITE
8547                 /* Add an extra byte for the sake of copy-on-write's
8548                  * buffer reference count. */
8549                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 2));
8550 #else
8551                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
8552 #endif
8553             }
8554         }
8555         rsptr = NULL;
8556         rslen = 0;
8557     }
8558     else if (RsRECORD(PL_rs)) {
8559         return S_sv_gets_read_record(aTHX_ sv, fp, append);
8560     }
8561     else if (RsPARA(PL_rs)) {
8562         rsptr = "\n\n";
8563         rslen = 2;
8564         rspara = 1;
8565     }
8566     else {
8567         /* Get $/ i.e. PL_rs into same encoding as stream wants */
8568         if (PerlIO_isutf8(fp)) {
8569             rsptr = SvPVutf8(PL_rs, rslen);
8570         }
8571         else {
8572             if (SvUTF8(PL_rs)) {
8573                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
8574                     Perl_croak(aTHX_ "Wide character in $/");
8575                 }
8576             }
8577             /* extract the raw pointer to the record separator */
8578             rsptr = SvPV_const(PL_rs, rslen);
8579         }
8580     }
8581
8582     /* rslast is the last character in the record separator
8583      * note we don't use rslast except when rslen is true, so the
8584      * null assign is a placeholder. */
8585     rslast = rslen ? rsptr[rslen - 1] : '\0';
8586
8587     if (rspara) {               /* have to do this both before and after */
8588         do {                    /* to make sure file boundaries work right */
8589             if (PerlIO_eof(fp))
8590                 return 0;
8591             i = PerlIO_getc(fp);
8592             if (i != '\n') {
8593                 if (i == -1)
8594                     return 0;
8595                 PerlIO_ungetc(fp,i);
8596                 break;
8597             }
8598         } while (i != EOF);
8599     }
8600
8601     /* See if we know enough about I/O mechanism to cheat it ! */
8602
8603     /* This used to be #ifdef test - it is made run-time test for ease
8604        of abstracting out stdio interface. One call should be cheap
8605        enough here - and may even be a macro allowing compile
8606        time optimization.
8607      */
8608
8609     if (PerlIO_fast_gets(fp)) {
8610     /*
8611      * We can do buffer based IO operations on this filehandle.
8612      *
8613      * This means we can bypass a lot of subcalls and process
8614      * the buffer directly, it also means we know the upper bound
8615      * on the amount of data we might read of the current buffer
8616      * into our sv. Knowing this allows us to preallocate the pv
8617      * to be able to hold that maximum, which allows us to simplify
8618      * a lot of logic. */
8619
8620     /*
8621      * We're going to steal some values from the stdio struct
8622      * and put EVERYTHING in the innermost loop into registers.
8623      */
8624     STDCHAR *ptr;       /* pointer into fp's read-ahead buffer */
8625     STRLEN bpx;         /* length of the data in the target sv
8626                            used to fix pointers after a SvGROW */
8627     I32 shortbuffered;  /* If the pv buffer is shorter than the amount
8628                            of data left in the read-ahead buffer.
8629                            If 0 then the pv buffer can hold the full
8630                            amount left, otherwise this is the amount it
8631                            can hold. */
8632
8633     /* Here is some breathtakingly efficient cheating */
8634
8635     /* When you read the following logic resist the urge to think
8636      * of record separators that are 1 byte long. They are an
8637      * uninteresting special (simple) case.
8638      *
8639      * Instead think of record separators which are at least 2 bytes
8640      * long, and keep in mind that we need to deal with such
8641      * separators when they cross a read-ahead buffer boundary.
8642      *
8643      * Also consider that we need to gracefully deal with separators
8644      * that may be longer than a single read ahead buffer.
8645      *
8646      * Lastly do not forget we want to copy the delimiter as well. We
8647      * are copying all data in the file _up_to_and_including_ the separator
8648      * itself.
8649      *
8650      * Now that you have all that in mind here is what is happening below:
8651      *
8652      * 1. When we first enter the loop we do some memory book keeping to see
8653      * how much free space there is in the target SV. (This sub assumes that
8654      * it is operating on the same SV most of the time via $_ and that it is
8655      * going to be able to reuse the same pv buffer each call.) If there is
8656      * "enough" room then we set "shortbuffered" to how much space there is
8657      * and start reading forward.
8658      *
8659      * 2. When we scan forward we copy from the read-ahead buffer to the target
8660      * SV's pv buffer. While we go we watch for the end of the read-ahead buffer,
8661      * and the end of the of pv, as well as for the "rslast", which is the last
8662      * char of the separator.
8663      *
8664      * 3. When scanning forward if we see rslast then we jump backwards in *pv*
8665      * (which has a "complete" record up to the point we saw rslast) and check
8666      * it to see if it matches the separator. If it does we are done. If it doesn't
8667      * we continue on with the scan/copy.
8668      *
8669      * 4. If we run out of read-ahead buffer (cnt goes to 0) then we have to get
8670      * the IO system to read the next buffer. We do this by doing a getc(), which
8671      * returns a single char read (or EOF), and prefills the buffer, and also
8672      * allows us to find out how full the buffer is.  We use this information to
8673      * SvGROW() the sv to the size remaining in the buffer, after which we copy
8674      * the returned single char into the target sv, and then go back into scan
8675      * forward mode.
8676      *
8677      * 5. If we run out of write-buffer then we SvGROW() it by the size of the
8678      * remaining space in the read-buffer.
8679      *
8680      * Note that this code despite its twisty-turny nature is pretty darn slick.
8681      * It manages single byte separators, multi-byte cross boundary separators,
8682      * and cross-read-buffer separators cleanly and efficiently at the cost
8683      * of potentially greatly overallocating the target SV.
8684      *
8685      * Yves
8686      */
8687
8688
8689     /* get the number of bytes remaining in the read-ahead buffer
8690      * on first call on a given fp this will return 0.*/
8691     cnt = PerlIO_get_cnt(fp);
8692
8693     /* make sure we have the room */
8694     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
8695         /* Not room for all of it
8696            if we are looking for a separator and room for some
8697          */
8698         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
8699             /* just process what we have room for */
8700             shortbuffered = cnt - SvLEN(sv) + append + 1;
8701             cnt -= shortbuffered;
8702         }
8703         else {
8704             /* ensure that the target sv has enough room to hold
8705              * the rest of the read-ahead buffer */
8706             shortbuffered = 0;
8707             /* remember that cnt can be negative */
8708             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
8709         }
8710     }
8711     else {
8712         /* we have enough room to hold the full buffer, lets scream */
8713         shortbuffered = 0;
8714     }
8715
8716     /* extract the pointer to sv's string buffer, offset by append as necessary */
8717     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
8718     /* extract the point to the read-ahead buffer */
8719     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
8720
8721     /* some trace debug output */
8722     DEBUG_P(PerlIO_printf(Perl_debug_log,
8723         "Screamer: entering, ptr=%" UVuf ", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
8724     DEBUG_P(PerlIO_printf(Perl_debug_log,
8725         "Screamer: entering: PerlIO * thinks ptr=%" UVuf ", cnt=%" IVdf ", base=%"
8726          UVuf "\n",
8727                PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8728                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
8729
8730     for (;;) {
8731       screamer:
8732         /* if there is stuff left in the read-ahead buffer */
8733         if (cnt > 0) {
8734             /* if there is a separator */
8735             if (rslen) {
8736                 /* find next rslast */
8737                 STDCHAR *p;
8738
8739                 /* shortcut common case of blank line */
8740                 cnt--;
8741                 if ((*bp++ = *ptr++) == rslast)
8742                     goto thats_all_folks;
8743
8744                 p = (STDCHAR *)memchr(ptr, rslast, cnt);
8745                 if (p) {
8746                     SSize_t got = p - ptr + 1;
8747                     Copy(ptr, bp, got, STDCHAR);
8748                     ptr += got;
8749                     bp  += got;
8750                     cnt -= got;
8751                     goto thats_all_folks;
8752                 }
8753                 Copy(ptr, bp, cnt, STDCHAR);
8754                 ptr += cnt;
8755                 bp  += cnt;
8756                 cnt = 0;
8757             }
8758             else {
8759                 /* no separator, slurp the full buffer */
8760                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
8761                 bp += cnt;                           /* screams  |  dust */
8762                 ptr += cnt;                          /* louder   |  sed :-) */
8763                 cnt = 0;
8764                 assert (!shortbuffered);
8765                 goto cannot_be_shortbuffered;
8766             }
8767         }
8768         
8769         if (shortbuffered) {            /* oh well, must extend */
8770             /* we didnt have enough room to fit the line into the target buffer
8771              * so we must extend the target buffer and keep going */
8772             cnt = shortbuffered;
8773             shortbuffered = 0;
8774             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
8775             SvCUR_set(sv, bpx);
8776             /* extned the target sv's buffer so it can hold the full read-ahead buffer */
8777             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
8778             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
8779             continue;
8780         }
8781
8782     cannot_be_shortbuffered:
8783         /* we need to refill the read-ahead buffer if possible */
8784
8785         DEBUG_P(PerlIO_printf(Perl_debug_log,
8786                              "Screamer: going to getc, ptr=%" UVuf ", cnt=%" IVdf "\n",
8787                               PTR2UV(ptr),(IV)cnt));
8788         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
8789
8790         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8791            "Screamer: pre: FILE * thinks ptr=%" UVuf ", cnt=%" IVdf ", base=%" UVuf "\n",
8792             PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8793             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8794
8795         /*
8796             call PerlIO_getc() to let it prefill the lookahead buffer
8797
8798             This used to call 'filbuf' in stdio form, but as that behaves like
8799             getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
8800             another abstraction.
8801
8802             Note we have to deal with the char in 'i' if we are not at EOF
8803         */
8804         i   = PerlIO_getc(fp);          /* get more characters */
8805
8806         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8807            "Screamer: post: FILE * thinks ptr=%" UVuf ", cnt=%" IVdf ", base=%" UVuf "\n",
8808             PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8809             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8810
8811         /* find out how much is left in the read-ahead buffer, and rextract its pointer */
8812         cnt = PerlIO_get_cnt(fp);
8813         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
8814         DEBUG_P(PerlIO_printf(Perl_debug_log,
8815             "Screamer: after getc, ptr=%" UVuf ", cnt=%" IVdf "\n",
8816             PTR2UV(ptr),(IV)cnt));
8817
8818         if (i == EOF)                   /* all done for ever? */
8819             goto thats_really_all_folks;
8820
8821         /* make sure we have enough space in the target sv */
8822         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
8823         SvCUR_set(sv, bpx);
8824         SvGROW(sv, bpx + cnt + 2);
8825         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
8826
8827         /* copy of the char we got from getc() */
8828         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
8829
8830         /* make sure we deal with the i being the last character of a separator */
8831         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
8832             goto thats_all_folks;
8833     }
8834
8835   thats_all_folks:
8836     /* check if we have actually found the separator - only really applies
8837      * when rslen > 1 */
8838     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
8839           memNE((char*)bp - rslen, rsptr, rslen))
8840         goto screamer;                          /* go back to the fray */
8841   thats_really_all_folks:
8842     if (shortbuffered)
8843         cnt += shortbuffered;
8844         DEBUG_P(PerlIO_printf(Perl_debug_log,
8845              "Screamer: quitting, ptr=%" UVuf ", cnt=%" IVdf "\n",PTR2UV(ptr),(IV)cnt));
8846     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
8847     DEBUG_P(PerlIO_printf(Perl_debug_log,
8848         "Screamer: end: FILE * thinks ptr=%" UVuf ", cnt=%" IVdf ", base=%" UVuf
8849         "\n",
8850         PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8851         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8852     *bp = '\0';
8853     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
8854     DEBUG_P(PerlIO_printf(Perl_debug_log,
8855         "Screamer: done, len=%ld, string=|%.*s|\n",
8856         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
8857     }
8858    else
8859     {
8860        /*The big, slow, and stupid way. */
8861 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
8862         STDCHAR *buf = NULL;
8863         Newx(buf, 8192, STDCHAR);
8864         assert(buf);
8865 #else
8866         STDCHAR buf[8192];
8867 #endif
8868
8869       screamer2:
8870         if (rslen) {
8871             const STDCHAR * const bpe = buf + sizeof(buf);
8872             bp = buf;
8873             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
8874                 ; /* keep reading */
8875             cnt = bp - buf;
8876         }
8877         else {
8878             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
8879             /* Accommodate broken VAXC compiler, which applies U8 cast to
8880              * both args of ?: operator, causing EOF to change into 255
8881              */
8882             if (cnt > 0)
8883                  i = (U8)buf[cnt - 1];
8884             else
8885                  i = EOF;
8886         }
8887
8888         if (cnt < 0)
8889             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
8890         if (append)
8891             sv_catpvn_nomg(sv, (char *) buf, cnt);
8892         else
8893             sv_setpvn(sv, (char *) buf, cnt);   /* "nomg" is implied */
8894
8895         if (i != EOF &&                 /* joy */
8896             (!rslen ||
8897              SvCUR(sv) < rslen ||
8898              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
8899         {
8900             append = -1;
8901             /*
8902              * If we're reading from a TTY and we get a short read,
8903              * indicating that the user hit his EOF character, we need
8904              * to notice it now, because if we try to read from the TTY
8905              * again, the EOF condition will disappear.
8906              *
8907              * The comparison of cnt to sizeof(buf) is an optimization
8908              * that prevents unnecessary calls to feof().
8909              *
8910              * - jik 9/25/96
8911              */
8912             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
8913                 goto screamer2;
8914         }
8915
8916 #ifdef USE_HEAP_INSTEAD_OF_STACK
8917         Safefree(buf);
8918 #endif
8919     }
8920
8921     if (rspara) {               /* have to do this both before and after */
8922         while (i != EOF) {      /* to make sure file boundaries work right */
8923             i = PerlIO_getc(fp);
8924             if (i != '\n') {
8925                 PerlIO_ungetc(fp,i);
8926                 break;
8927             }
8928         }
8929     }
8930
8931     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8932 }
8933
8934 /*
8935 =for apidoc sv_inc
8936
8937 Auto-increment of the value in the SV, doing string to numeric conversion
8938 if necessary.  Handles 'get' magic and operator overloading.
8939
8940 =cut
8941 */
8942
8943 void
8944 Perl_sv_inc(pTHX_ SV *const sv)
8945 {
8946     if (!sv)
8947         return;
8948     SvGETMAGIC(sv);
8949     sv_inc_nomg(sv);
8950 }
8951
8952 /*
8953 =for apidoc sv_inc_nomg
8954
8955 Auto-increment of the value in the SV, doing string to numeric conversion
8956 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8957
8958 =cut
8959 */
8960
8961 void
8962 Perl_sv_inc_nomg(pTHX_ SV *const sv)
8963 {
8964     char *d;
8965     int flags;
8966
8967     if (!sv)
8968         return;
8969     if (SvTHINKFIRST(sv)) {
8970         if (SvREADONLY(sv)) {
8971                 Perl_croak_no_modify();
8972         }
8973         if (SvROK(sv)) {
8974             IV i;
8975             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
8976                 return;
8977             i = PTR2IV(SvRV(sv));
8978             sv_unref(sv);
8979             sv_setiv(sv, i);
8980         }
8981         else sv_force_normal_flags(sv, 0);
8982     }
8983     flags = SvFLAGS(sv);
8984     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
8985         /* It's (privately or publicly) a float, but not tested as an
8986            integer, so test it to see. */
8987         (void) SvIV(sv);
8988         flags = SvFLAGS(sv);
8989     }
8990     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8991         /* It's publicly an integer, or privately an integer-not-float */
8992 #ifdef PERL_PRESERVE_IVUV
8993       oops_its_int:
8994 #endif
8995         if (SvIsUV(sv)) {
8996             if (SvUVX(sv) == UV_MAX)
8997                 sv_setnv(sv, UV_MAX_P1);
8998             else
8999                 (void)SvIOK_only_UV(sv);
9000                 SvUV_set(sv, SvUVX(sv) + 1);
9001         } else {
9002             if (SvIVX(sv) == IV_MAX)
9003                 sv_setuv(sv, (UV)IV_MAX + 1);
9004             else {
9005                 (void)SvIOK_only(sv);
9006                 SvIV_set(sv, SvIVX(sv) + 1);
9007             }   
9008         }
9009         return;
9010     }
9011     if (flags & SVp_NOK) {
9012         const NV was = SvNVX(sv);
9013         if (LIKELY(!Perl_isinfnan(was)) &&
9014             NV_OVERFLOWS_INTEGERS_AT != 0.0 &&
9015             was >= NV_OVERFLOWS_INTEGERS_AT) {
9016             /* diag_listed_as: Lost precision when %s %f by 1 */
9017             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
9018                            "Lost precision when incrementing %" NVff " by 1",
9019                            was);
9020         }
9021         (void)SvNOK_only(sv);
9022         SvNV_set(sv, was + 1.0);
9023         return;
9024     }
9025
9026     /* treat AV/HV/CV/FM/IO and non-fake GVs as immutable */
9027     if (SvTYPE(sv) >= SVt_PVAV || (isGV_with_GP(sv) && !SvFAKE(sv)))
9028         Perl_croak_no_modify();
9029
9030     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
9031         if ((flags & SVTYPEMASK) < SVt_PVIV)
9032             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
9033         (void)SvIOK_only(sv);
9034         SvIV_set(sv, 1);
9035         return;
9036     }
9037     d = SvPVX(sv);
9038     while (isALPHA(*d)) d++;
9039     while (isDIGIT(*d)) d++;
9040     if (d < SvEND(sv)) {
9041         const int numtype = grok_number_flags(SvPVX_const(sv), SvCUR(sv), NULL, PERL_SCAN_TRAILING);
9042 #ifdef PERL_PRESERVE_IVUV
9043         /* Got to punt this as an integer if needs be, but we don't issue
9044            warnings. Probably ought to make the sv_iv_please() that does
9045            the conversion if possible, and silently.  */
9046         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
9047             /* Need to try really hard to see if it's an integer.
9048                9.22337203685478e+18 is an integer.
9049                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
9050                so $a="9.22337203685478e+18"; $a+0; $a++
9051                needs to be the same as $a="9.22337203685478e+18"; $a++
9052                or we go insane. */
9053         
9054             (void) sv_2iv(sv);
9055             if (SvIOK(sv))
9056                 goto oops_its_int;
9057
9058             /* sv_2iv *should* have made this an NV */
9059             if (flags & SVp_NOK) {
9060                 (void)SvNOK_only(sv);
9061                 SvNV_set(sv, SvNVX(sv) + 1.0);
9062                 return;
9063             }
9064             /* I don't think we can get here. Maybe I should assert this
9065                And if we do get here I suspect that sv_setnv will croak. NWC
9066                Fall through. */
9067             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%" UVxf " NV=%" NVgf "\n",
9068                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
9069         }
9070 #endif /* PERL_PRESERVE_IVUV */
9071         if (!numtype && ckWARN(WARN_NUMERIC))
9072             not_incrementable(sv);
9073         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
9074         return;
9075     }
9076     d--;
9077     while (d >= SvPVX_const(sv)) {
9078         if (isDIGIT(*d)) {
9079             if (++*d <= '9')
9080                 return;
9081             *(d--) = '0';
9082         }
9083         else {
9084 #ifdef EBCDIC
9085             /* MKS: The original code here died if letters weren't consecutive.
9086              * at least it didn't have to worry about non-C locales.  The
9087              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
9088              * arranged in order (although not consecutively) and that only
9089              * [A-Za-z] are accepted by isALPHA in the C locale.
9090              */
9091             if (isALPHA_FOLD_NE(*d, 'z')) {
9092                 do { ++*d; } while (!isALPHA(*d));
9093                 return;
9094             }
9095             *(d--) -= 'z' - 'a';
9096 #else
9097             ++*d;
9098             if (isALPHA(*d))
9099                 return;
9100             *(d--) -= 'z' - 'a' + 1;
9101 #endif
9102         }
9103     }
9104     /* oh,oh, the number grew */
9105     SvGROW(sv, SvCUR(sv) + 2);
9106     SvCUR_set(sv, SvCUR(sv) + 1);
9107     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
9108         *d = d[-1];
9109     if (isDIGIT(d[1]))
9110         *d = '1';
9111     else
9112         *d = d[1];
9113 }
9114
9115 /*
9116 =for apidoc sv_dec
9117
9118 Auto-decrement of the value in the SV, doing string to numeric conversion
9119 if necessary.  Handles 'get' magic and operator overloading.
9120
9121 =cut
9122 */
9123
9124 void
9125 Perl_sv_dec(pTHX_ SV *const sv)
9126 {
9127     if (!sv)
9128         return;
9129     SvGETMAGIC(sv);
9130     sv_dec_nomg(sv);
9131 }
9132
9133 /*
9134 =for apidoc sv_dec_nomg
9135
9136 Auto-decrement of the value in the SV, doing string to numeric conversion
9137 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
9138
9139 =cut
9140 */
9141
9142 void
9143 Perl_sv_dec_nomg(pTHX_ SV *const sv)
9144 {
9145     int flags;
9146
9147     if (!sv)
9148         return;
9149     if (SvTHINKFIRST(sv)) {
9150         if (SvREADONLY(sv)) {
9151                 Perl_croak_no_modify();
9152         }
9153         if (SvROK(sv)) {
9154             IV i;
9155             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
9156                 return;
9157             i = PTR2IV(SvRV(sv));
9158             sv_unref(sv);
9159             sv_setiv(sv, i);
9160         }
9161         else sv_force_normal_flags(sv, 0);
9162     }
9163     /* Unlike sv_inc we don't have to worry about string-never-numbers
9164        and keeping them magic. But we mustn't warn on punting */
9165     flags = SvFLAGS(sv);
9166     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
9167         /* It's publicly an integer, or privately an integer-not-float */
9168 #ifdef PERL_PRESERVE_IVUV
9169       oops_its_int:
9170 #endif
9171         if (SvIsUV(sv)) {
9172             if (SvUVX(sv) == 0) {
9173                 (void)SvIOK_only(sv);
9174                 SvIV_set(sv, -1);
9175             }
9176             else {
9177                 (void)SvIOK_only_UV(sv);
9178                 SvUV_set(sv, SvUVX(sv) - 1);
9179             }   
9180         } else {
9181             if (SvIVX(sv) == IV_MIN) {
9182                 sv_setnv(sv, (NV)IV_MIN);
9183                 goto oops_its_num;
9184             }
9185             else {
9186                 (void)SvIOK_only(sv);
9187                 SvIV_set(sv, SvIVX(sv) - 1);
9188             }   
9189         }
9190         return;
9191     }
9192     if (flags & SVp_NOK) {
9193     oops_its_num:
9194         {
9195             const NV was = SvNVX(sv);
9196             if (LIKELY(!Perl_isinfnan(was)) &&
9197                 NV_OVERFLOWS_INTEGERS_AT != 0.0 &&
9198                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
9199                 /* diag_listed_as: Lost precision when %s %f by 1 */
9200                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
9201                                "Lost precision when decrementing %" NVff " by 1",
9202                                was);
9203             }
9204             (void)SvNOK_only(sv);
9205             SvNV_set(sv, was - 1.0);
9206             return;
9207         }
9208     }
9209
9210     /* treat AV/HV/CV/FM/IO and non-fake GVs as immutable */
9211     if (SvTYPE(sv) >= SVt_PVAV || (isGV_with_GP(sv) && !SvFAKE(sv)))
9212         Perl_croak_no_modify();
9213
9214     if (!(flags & SVp_POK)) {
9215         if ((flags & SVTYPEMASK) < SVt_PVIV)
9216             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
9217         SvIV_set(sv, -1);
9218         (void)SvIOK_only(sv);
9219         return;
9220     }
9221 #ifdef PERL_PRESERVE_IVUV
9222     {
9223         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
9224         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
9225             /* Need to try really hard to see if it's an integer.
9226                9.22337203685478e+18 is an integer.
9227                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
9228                so $a="9.22337203685478e+18"; $a+0; $a--
9229                needs to be the same as $a="9.22337203685478e+18"; $a--
9230                or we go insane. */
9231         
9232             (void) sv_2iv(sv);
9233             if (SvIOK(sv))
9234                 goto oops_its_int;
9235
9236             /* sv_2iv *should* have made this an NV */
9237             if (flags & SVp_NOK) {
9238                 (void)SvNOK_only(sv);
9239                 SvNV_set(sv, SvNVX(sv) - 1.0);
9240                 return;
9241             }
9242             /* I don't think we can get here. Maybe I should assert this
9243                And if we do get here I suspect that sv_setnv will croak. NWC
9244                Fall through. */
9245             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%" UVxf " NV=%" NVgf "\n",
9246                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
9247         }
9248     }
9249 #endif /* PERL_PRESERVE_IVUV */
9250     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
9251 }
9252
9253 /* this define is used to eliminate a chunk of duplicated but shared logic
9254  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
9255  * used anywhere but here - yves
9256  */
9257 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
9258     STMT_START {      \
9259         SSize_t ix = ++PL_tmps_ix;              \
9260         if (UNLIKELY(ix >= PL_tmps_max))        \
9261             ix = tmps_grow_p(ix);                       \
9262         PL_tmps_stack[ix] = (AnSv); \
9263     } STMT_END
9264
9265 /*
9266 =for apidoc sv_mortalcopy
9267
9268 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
9269 The new SV is marked as mortal.  It will be destroyed "soon", either by an
9270 explicit call to C<FREETMPS>, or by an implicit call at places such as
9271 statement boundaries.  See also C<L</sv_newmortal>> and C<L</sv_2mortal>>.
9272
9273 =cut
9274 */
9275
9276 /* Make a string that will exist for the duration of the expression
9277  * evaluation.  Actually, it may have to last longer than that, but
9278  * hopefully we won't free it until it has been assigned to a
9279  * permanent location. */
9280
9281 SV *
9282 Perl_sv_mortalcopy_flags(pTHX_ SV *const oldstr, U32 flags)
9283 {
9284     SV *sv;
9285
9286     if (flags & SV_GMAGIC)
9287         SvGETMAGIC(oldstr); /* before new_SV, in case it dies */
9288     new_SV(sv);
9289     sv_setsv_flags(sv,oldstr,flags & ~SV_GMAGIC);
9290     PUSH_EXTEND_MORTAL__SV_C(sv);
9291     SvTEMP_on(sv);
9292     return sv;
9293 }
9294
9295 /*
9296 =for apidoc sv_newmortal
9297
9298 Creates a new null SV which is mortal.  The reference count of the SV is
9299 set to 1.  It will be destroyed "soon", either by an explicit call to
9300 C<FREETMPS>, or by an implicit call at places such as statement boundaries.
9301 See also C<L</sv_mortalcopy>> and C<L</sv_2mortal>>.
9302
9303 =cut
9304 */
9305
9306 SV *
9307 Perl_sv_newmortal(pTHX)
9308 {
9309     SV *sv;
9310
9311     new_SV(sv);
9312     SvFLAGS(sv) = SVs_TEMP;
9313     PUSH_EXTEND_MORTAL__SV_C(sv);
9314     return sv;
9315 }
9316
9317
9318 /*
9319 =for apidoc newSVpvn_flags
9320
9321 Creates a new SV and copies a string (which may contain C<NUL> (C<\0>)
9322 characters) into it.  The reference count for the
9323 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
9324 string.  You are responsible for ensuring that the source string is at least
9325 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
9326 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
9327 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
9328 returning.  If C<SVf_UTF8> is set, C<s>
9329 is considered to be in UTF-8 and the
9330 C<SVf_UTF8> flag will be set on the new SV.
9331 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
9332
9333     #define newSVpvn_utf8(s, len, u)                    \
9334         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
9335
9336 =cut
9337 */
9338
9339 SV *
9340 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
9341 {
9342     SV *sv;
9343
9344     /* All the flags we don't support must be zero.
9345        And we're new code so I'm going to assert this from the start.  */
9346     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
9347     new_SV(sv);
9348     sv_setpvn(sv,s,len);
9349
9350     /* This code used to do a sv_2mortal(), however we now unroll the call to
9351      * sv_2mortal() and do what it does ourselves here.  Since we have asserted
9352      * that flags can only have the SVf_UTF8 and/or SVs_TEMP flags set above we
9353      * can use it to enable the sv flags directly (bypassing SvTEMP_on), which
9354      * in turn means we dont need to mask out the SVf_UTF8 flag below, which
9355      * means that we eliminate quite a few steps than it looks - Yves
9356      * (explaining patch by gfx) */
9357
9358     SvFLAGS(sv) |= flags;
9359
9360     if(flags & SVs_TEMP){
9361         PUSH_EXTEND_MORTAL__SV_C(sv);
9362     }
9363
9364     return sv;
9365 }
9366
9367 /*
9368 =for apidoc sv_2mortal
9369
9370 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
9371 by an explicit call to C<FREETMPS>, or by an implicit call at places such as
9372 statement boundaries.  C<SvTEMP()> is turned on which means that the SV's
9373 string buffer can be "stolen" if this SV is copied.  See also
9374 C<L</sv_newmortal>> and C<L</sv_mortalcopy>>.
9375
9376 =cut
9377 */
9378
9379 SV *
9380 Perl_sv_2mortal(pTHX_ SV *const sv)
9381 {
9382     dVAR;
9383     if (!sv)
9384         return sv;
9385     if (SvIMMORTAL(sv))
9386         return sv;
9387     PUSH_EXTEND_MORTAL__SV_C(sv);
9388     SvTEMP_on(sv);
9389     return sv;
9390 }
9391
9392 /*
9393 =for apidoc newSVpv
9394
9395 Creates a new SV and copies a string (which may contain C<NUL> (C<\0>)
9396 characters) into it.  The reference count for the
9397 SV is set to 1.  If C<len> is zero, Perl will compute the length using
9398 C<strlen()>, (which means if you use this option, that C<s> can't have embedded
9399 C<NUL> characters and has to have a terminating C<NUL> byte).
9400
9401 This function can cause reliability issues if you are likely to pass in
9402 empty strings that are not null terminated, because it will run
9403 strlen on the string and potentially run past valid memory.
9404
9405 Using L</newSVpvn> is a safer alternative for non C<NUL> terminated strings.
9406 For string literals use L</newSVpvs> instead.  This function will work fine for
9407 C<NUL> terminated strings, but if you want to avoid the if statement on whether
9408 to call C<strlen> use C<newSVpvn> instead (calling C<strlen> yourself).
9409
9410 =cut
9411 */
9412
9413 SV *
9414 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
9415 {
9416     SV *sv;
9417
9418     new_SV(sv);
9419     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
9420     return sv;
9421 }
9422
9423 /*
9424 =for apidoc newSVpvn
9425
9426 Creates a new SV and copies a string into it, which may contain C<NUL> characters
9427 (C<\0>) and other binary data.  The reference count for the SV is set to 1.
9428 Note that if C<len> is zero, Perl will create a zero length (Perl) string.  You
9429 are responsible for ensuring that the source buffer is at least
9430 C<len> bytes long.  If the C<buffer> argument is NULL the new SV will be
9431 undefined.
9432
9433 =cut
9434 */
9435
9436 SV *
9437 Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len)
9438 {
9439     SV *sv;
9440     new_SV(sv);
9441     sv_setpvn(sv,buffer,len);
9442     return sv;
9443 }
9444
9445 /*
9446 =for apidoc newSVhek
9447
9448 Creates a new SV from the hash key structure.  It will generate scalars that
9449 point to the shared string table where possible.  Returns a new (undefined)
9450 SV if C<hek> is NULL.
9451
9452 =cut
9453 */
9454
9455 SV *
9456 Perl_newSVhek(pTHX_ const HEK *const hek)
9457 {
9458     if (!hek) {
9459         SV *sv;
9460
9461         new_SV(sv);
9462         return sv;
9463     }
9464
9465     if (HEK_LEN(hek) == HEf_SVKEY) {
9466         return newSVsv(*(SV**)HEK_KEY(hek));
9467     } else {
9468         const int flags = HEK_FLAGS(hek);
9469         if (flags & HVhek_WASUTF8) {
9470             /* Trouble :-)
9471                Andreas would like keys he put in as utf8 to come back as utf8
9472             */
9473             STRLEN utf8_len = HEK_LEN(hek);
9474             SV * const sv = newSV_type(SVt_PV);
9475             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
9476             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
9477             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
9478             SvUTF8_on (sv);
9479             return sv;
9480         } else if (flags & HVhek_UNSHARED) {
9481             /* A hash that isn't using shared hash keys has to have
9482                the flag in every key so that we know not to try to call
9483                share_hek_hek on it.  */
9484
9485             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
9486             if (HEK_UTF8(hek))
9487                 SvUTF8_on (sv);
9488             return sv;
9489         }
9490         /* This will be overwhelminly the most common case.  */
9491         {
9492             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
9493                more efficient than sharepvn().  */
9494             SV *sv;
9495
9496             new_SV(sv);
9497             sv_upgrade(sv, SVt_PV);
9498             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
9499             SvCUR_set(sv, HEK_LEN(hek));
9500             SvLEN_set(sv, 0);
9501             SvIsCOW_on(sv);
9502             SvPOK_on(sv);
9503             if (HEK_UTF8(hek))
9504                 SvUTF8_on(sv);
9505             return sv;
9506         }
9507     }
9508 }
9509
9510 /*
9511 =for apidoc newSVpvn_share
9512
9513 Creates a new SV with its C<SvPVX_const> pointing to a shared string in the string
9514 table.  If the string does not already exist in the table, it is
9515 created first.  Turns on the C<SvIsCOW> flag (or C<READONLY>
9516 and C<FAKE> in 5.16 and earlier).  If the C<hash> parameter
9517 is non-zero, that value is used; otherwise the hash is computed.
9518 The string's hash can later be retrieved from the SV
9519 with the C<SvSHARED_HASH()> macro.  The idea here is
9520 that as the string table is used for shared hash keys these strings will have
9521 C<SvPVX_const == HeKEY> and hash lookup will avoid string compare.
9522
9523 =cut
9524 */
9525
9526 SV *
9527 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
9528 {
9529     dVAR;
9530     SV *sv;
9531     bool is_utf8 = FALSE;
9532     const char *const orig_src = src;
9533
9534     if (len < 0) {
9535         STRLEN tmplen = -len;
9536         is_utf8 = TRUE;
9537         /* See the note in hv.c:hv_fetch() --jhi */
9538         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
9539         len = tmplen;
9540     }
9541     if (!hash)
9542         PERL_HASH(hash, src, len);
9543     new_SV(sv);
9544     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
9545        changes here, update it there too.  */
9546     sv_upgrade(sv, SVt_PV);
9547     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
9548     SvCUR_set(sv, len);
9549     SvLEN_set(sv, 0);
9550     SvIsCOW_on(sv);
9551     SvPOK_on(sv);
9552     if (is_utf8)
9553         SvUTF8_on(sv);
9554     if (src != orig_src)
9555         Safefree(src);
9556     return sv;
9557 }
9558
9559 /*
9560 =for apidoc newSVpv_share
9561
9562 Like C<newSVpvn_share>, but takes a C<NUL>-terminated string instead of a
9563 string/length pair.
9564
9565 =cut
9566 */
9567
9568 SV *
9569 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
9570 {
9571     return newSVpvn_share(src, strlen(src), hash);
9572 }
9573
9574 #if defined(PERL_IMPLICIT_CONTEXT)
9575
9576 /* pTHX_ magic can't cope with varargs, so this is a no-context
9577  * version of the main function, (which may itself be aliased to us).
9578  * Don't access this version directly.
9579  */
9580
9581 SV *
9582 Perl_newSVpvf_nocontext(const char *const pat, ...)
9583 {
9584     dTHX;
9585     SV *sv;
9586     va_list args;
9587
9588     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
9589
9590     va_start(args, pat);
9591     sv = vnewSVpvf(pat, &args);
9592     va_end(args);
9593     return sv;
9594 }
9595 #endif
9596
9597 /*
9598 =for apidoc newSVpvf
9599
9600 Creates a new SV and initializes it with the string formatted like
9601 C<sv_catpvf>.
9602
9603 =cut
9604 */
9605
9606 SV *
9607 Perl_newSVpvf(pTHX_ const char *const pat, ...)
9608 {
9609     SV *sv;
9610     va_list args;
9611
9612     PERL_ARGS_ASSERT_NEWSVPVF;
9613
9614     va_start(args, pat);
9615     sv = vnewSVpvf(pat, &args);
9616     va_end(args);
9617     return sv;
9618 }
9619
9620 /* backend for newSVpvf() and newSVpvf_nocontext() */
9621
9622 SV *
9623 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
9624 {
9625     SV *sv;
9626
9627     PERL_ARGS_ASSERT_VNEWSVPVF;
9628
9629     new_SV(sv);
9630     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9631     return sv;
9632 }
9633
9634 /*
9635 =for apidoc newSVnv
9636
9637 Creates a new SV and copies a floating point value into it.
9638 The reference count for the SV is set to 1.
9639
9640 =cut
9641 */
9642
9643 SV *
9644 Perl_newSVnv(pTHX_ const NV n)
9645 {
9646     SV *sv;
9647
9648     new_SV(sv);
9649     sv_setnv(sv,n);
9650     return sv;
9651 }
9652
9653 /*
9654 =for apidoc newSViv
9655
9656 Creates a new SV and copies an integer into it.  The reference count for the
9657 SV is set to 1.
9658
9659 =cut
9660 */
9661
9662 SV *
9663 Perl_newSViv(pTHX_ const IV i)
9664 {
9665     SV *sv;
9666
9667     new_SV(sv);
9668
9669     /* Inlining ONLY the small relevant subset of sv_setiv here
9670      * for performance. Makes a significant difference. */
9671
9672     /* We're starting from SVt_FIRST, so provided that's
9673      * actual 0, we don't have to unset any SV type flags
9674      * to promote to SVt_IV. */
9675     STATIC_ASSERT_STMT(SVt_FIRST == 0);
9676
9677     SET_SVANY_FOR_BODYLESS_IV(sv);
9678     SvFLAGS(sv) |= SVt_IV;
9679     (void)SvIOK_on(sv);
9680
9681     SvIV_set(sv, i);
9682     SvTAINT(sv);
9683
9684     return sv;
9685 }
9686
9687 /*
9688 =for apidoc newSVuv
9689
9690 Creates a new SV and copies an unsigned integer into it.
9691 The reference count for the SV is set to 1.
9692
9693 =cut
9694 */
9695
9696 SV *
9697 Perl_newSVuv(pTHX_ const UV u)
9698 {
9699     SV *sv;
9700
9701     /* Inlining ONLY the small relevant subset of sv_setuv here
9702      * for performance. Makes a significant difference. */
9703
9704     /* Using ivs is more efficient than using uvs - see sv_setuv */
9705     if (u <= (UV)IV_MAX) {
9706         return newSViv((IV)u);
9707     }
9708
9709     new_SV(sv);
9710
9711     /* We're starting from SVt_FIRST, so provided that's
9712      * actual 0, we don't have to unset any SV type flags
9713      * to promote to SVt_IV. */
9714     STATIC_ASSERT_STMT(SVt_FIRST == 0);
9715
9716     SET_SVANY_FOR_BODYLESS_IV(sv);
9717     SvFLAGS(sv) |= SVt_IV;
9718     (void)SvIOK_on(sv);
9719     (void)SvIsUV_on(sv);
9720
9721     SvUV_set(sv, u);
9722     SvTAINT(sv);
9723
9724     return sv;
9725 }
9726
9727 /*
9728 =for apidoc newSV_type
9729
9730 Creates a new SV, of the type specified.  The reference count for the new SV
9731 is set to 1.
9732
9733 =cut
9734 */
9735
9736 SV *
9737 Perl_newSV_type(pTHX_ const svtype type)
9738 {
9739     SV *sv;
9740
9741     new_SV(sv);
9742     ASSUME(SvTYPE(sv) == SVt_FIRST);
9743     if(type != SVt_FIRST)
9744         sv_upgrade(sv, type);
9745     return sv;
9746 }
9747
9748 /*
9749 =for apidoc newRV_noinc
9750
9751 Creates an RV wrapper for an SV.  The reference count for the original
9752 SV is B<not> incremented.
9753
9754 =cut
9755 */
9756
9757 SV *
9758 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
9759 {
9760     SV *sv;
9761
9762     PERL_ARGS_ASSERT_NEWRV_NOINC;
9763
9764     new_SV(sv);
9765
9766     /* We're starting from SVt_FIRST, so provided that's
9767      * actual 0, we don't have to unset any SV type flags
9768      * to promote to SVt_IV. */
9769     STATIC_ASSERT_STMT(SVt_FIRST == 0);
9770
9771     SET_SVANY_FOR_BODYLESS_IV(sv);
9772     SvFLAGS(sv) |= SVt_IV;
9773     SvROK_on(sv);
9774     SvIV_set(sv, 0);
9775
9776     SvTEMP_off(tmpRef);
9777     SvRV_set(sv, tmpRef);
9778
9779     return sv;
9780 }
9781
9782 /* newRV_inc is the official function name to use now.
9783  * newRV_inc is in fact #defined to newRV in sv.h
9784  */
9785
9786 SV *
9787 Perl_newRV(pTHX_ SV *const sv)
9788 {
9789     PERL_ARGS_ASSERT_NEWRV;
9790
9791     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
9792 }
9793
9794 /*
9795 =for apidoc newSVsv
9796
9797 Creates a new SV which is an exact duplicate of the original SV.
9798 (Uses C<sv_setsv>.)
9799
9800 =cut
9801 */
9802
9803 SV *
9804 Perl_newSVsv(pTHX_ SV *const old)
9805 {
9806     SV *sv;
9807
9808     if (!old)
9809         return NULL;
9810     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
9811         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
9812         return NULL;
9813     }
9814     /* Do this here, otherwise we leak the new SV if this croaks. */
9815     SvGETMAGIC(old);
9816     new_SV(sv);
9817     /* SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
9818        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
9819     sv_setsv_flags(sv, old, SV_NOSTEAL);
9820     return sv;
9821 }
9822
9823 /*
9824 =for apidoc sv_reset
9825
9826 Underlying implementation for the C<reset> Perl function.
9827 Note that the perl-level function is vaguely deprecated.
9828
9829 =cut
9830 */
9831
9832 void
9833 Perl_sv_reset(pTHX_ const char *s, HV *const stash)
9834 {
9835     PERL_ARGS_ASSERT_SV_RESET;
9836
9837     sv_resetpvn(*s ? s : NULL, strlen(s), stash);
9838 }
9839
9840 void
9841 Perl_sv_resetpvn(pTHX_ const char *s, STRLEN len, HV * const stash)
9842 {
9843     char todo[PERL_UCHAR_MAX+1];
9844     const char *send;
9845
9846     if (!stash || SvTYPE(stash) != SVt_PVHV)
9847         return;
9848
9849     if (!s) {           /* reset ?? searches */
9850         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
9851         if (mg) {
9852             const U32 count = mg->mg_len / sizeof(PMOP**);
9853             PMOP **pmp = (PMOP**) mg->mg_ptr;
9854             PMOP *const *const end = pmp + count;
9855
9856             while (pmp < end) {
9857 #ifdef USE_ITHREADS
9858                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
9859 #else
9860                 (*pmp)->op_pmflags &= ~PMf_USED;
9861 #endif
9862                 ++pmp;
9863             }
9864         }
9865         return;
9866     }
9867
9868     /* reset variables */
9869
9870     if (!HvARRAY(stash))
9871         return;
9872
9873     Zero(todo, 256, char);
9874     send = s + len;
9875     while (s < send) {
9876         I32 max;
9877         I32 i = (unsigned char)*s;
9878         if (s[1] == '-') {
9879             s += 2;
9880         }
9881         max = (unsigned char)*s++;
9882         for ( ; i <= max; i++) {
9883             todo[i] = 1;
9884         }
9885         for (i = 0; i <= (I32) HvMAX(stash); i++) {
9886             HE *entry;
9887             for (entry = HvARRAY(stash)[i];
9888                  entry;
9889                  entry = HeNEXT(entry))
9890             {
9891                 GV *gv;
9892                 SV *sv;
9893
9894                 if (!todo[(U8)*HeKEY(entry)])
9895                     continue;
9896                 gv = MUTABLE_GV(HeVAL(entry));
9897                 if (!isGV(gv))
9898                     continue;
9899                 sv = GvSV(gv);
9900                 if (sv && !SvREADONLY(sv)) {
9901                     SV_CHECK_THINKFIRST_COW_DROP(sv);
9902                     if (!isGV(sv)) SvOK_off(sv);
9903                 }
9904                 if (GvAV(gv)) {
9905                     av_clear(GvAV(gv));
9906                 }
9907                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
9908                     hv_clear(GvHV(gv));
9909                 }
9910             }
9911         }
9912     }
9913 }
9914
9915 /*
9916 =for apidoc sv_2io
9917
9918 Using various gambits, try to get an IO from an SV: the IO slot if its a
9919 GV; or the recursive result if we're an RV; or the IO slot of the symbol
9920 named after the PV if we're a string.
9921
9922 'Get' magic is ignored on the C<sv> passed in, but will be called on
9923 C<SvRV(sv)> if C<sv> is an RV.
9924
9925 =cut
9926 */
9927
9928 IO*
9929 Perl_sv_2io(pTHX_ SV *const sv)
9930 {
9931     IO* io;
9932     GV* gv;
9933
9934     PERL_ARGS_ASSERT_SV_2IO;
9935
9936     switch (SvTYPE(sv)) {
9937     case SVt_PVIO:
9938         io = MUTABLE_IO(sv);
9939         break;
9940     case SVt_PVGV:
9941     case SVt_PVLV:
9942         if (isGV_with_GP(sv)) {
9943             gv = MUTABLE_GV(sv);
9944             io = GvIO(gv);
9945             if (!io)
9946                 Perl_croak(aTHX_ "Bad filehandle: %" HEKf,
9947                                     HEKfARG(GvNAME_HEK(gv)));
9948             break;
9949         }
9950         /* FALLTHROUGH */
9951     default:
9952         if (!SvOK(sv))
9953             Perl_croak(aTHX_ PL_no_usym, "filehandle");
9954         if (SvROK(sv)) {
9955             SvGETMAGIC(SvRV(sv));
9956             return sv_2io(SvRV(sv));
9957         }
9958         gv = gv_fetchsv_nomg(sv, 0, SVt_PVIO);
9959         if (gv)
9960             io = GvIO(gv);
9961         else
9962             io = 0;
9963         if (!io) {
9964             SV *newsv = sv;
9965             if (SvGMAGICAL(sv)) {
9966                 newsv = sv_newmortal();
9967                 sv_setsv_nomg(newsv, sv);
9968             }
9969             Perl_croak(aTHX_ "Bad filehandle: %" SVf, SVfARG(newsv));
9970         }
9971         break;
9972     }
9973     return io;
9974 }
9975
9976 /*
9977 =for apidoc sv_2cv
9978
9979 Using various gambits, try to get a CV from an SV; in addition, try if
9980 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
9981 The flags in C<lref> are passed to C<gv_fetchsv>.
9982
9983 =cut
9984 */
9985
9986 CV *
9987 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
9988 {
9989     GV *gv = NULL;
9990     CV *cv = NULL;
9991
9992     PERL_ARGS_ASSERT_SV_2CV;
9993
9994     if (!sv) {
9995         *st = NULL;
9996         *gvp = NULL;
9997         return NULL;
9998     }
9999     switch (SvTYPE(sv)) {
10000     case SVt_PVCV:
10001         *st = CvSTASH(sv);
10002         *gvp = NULL;
10003         return MUTABLE_CV(sv);
10004     case SVt_PVHV:
10005     case SVt_PVAV:
10006         *st = NULL;
10007         *gvp = NULL;
10008         return NULL;
10009     default:
10010         SvGETMAGIC(sv);
10011         if (SvROK(sv)) {
10012             if (SvAMAGIC(sv))
10013                 sv = amagic_deref_call(sv, to_cv_amg);
10014
10015             sv = SvRV(sv);
10016             if (SvTYPE(sv) == SVt_PVCV) {
10017                 cv = MUTABLE_CV(sv);
10018                 *gvp = NULL;
10019                 *st = CvSTASH(cv);
10020                 return cv;
10021             }
10022             else if(SvGETMAGIC(sv), isGV_with_GP(sv))
10023                 gv = MUTABLE_GV(sv);
10024             else
10025                 Perl_croak(aTHX_ "Not a subroutine reference");
10026         }
10027         else if (isGV_with_GP(sv)) {
10028             gv = MUTABLE_GV(sv);
10029         }
10030         else {
10031             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
10032         }
10033         *gvp = gv;
10034         if (!gv) {
10035             *st = NULL;
10036             return NULL;
10037         }
10038         /* Some flags to gv_fetchsv mean don't really create the GV  */
10039         if (!isGV_with_GP(gv)) {
10040             *st = NULL;
10041             return NULL;
10042         }
10043         *st = GvESTASH(gv);
10044         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
10045             /* XXX this is probably not what they think they're getting.
10046              * It has the same effect as "sub name;", i.e. just a forward
10047              * declaration! */
10048             newSTUB(gv,0);
10049         }
10050         return GvCVu(gv);
10051     }
10052 }
10053
10054 /*
10055 =for apidoc sv_true
10056
10057 Returns true if the SV has a true value by Perl's rules.
10058 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
10059 instead use an in-line version.
10060
10061 =cut
10062 */
10063
10064 I32
10065 Perl_sv_true(pTHX_ SV *const sv)
10066 {
10067     if (!sv)
10068         return 0;
10069     if (SvPOK(sv)) {
10070         const XPV* const tXpv = (XPV*)SvANY(sv);
10071         if (tXpv &&
10072                 (tXpv->xpv_cur > 1 ||
10073                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
10074             return 1;
10075         else
10076             return 0;
10077     }
10078     else {
10079         if (SvIOK(sv))
10080             return SvIVX(sv) != 0;
10081         else {
10082             if (SvNOK(sv))
10083                 return SvNVX(sv) != 0.0;
10084             else
10085                 return sv_2bool(sv);
10086         }
10087     }
10088 }
10089
10090 /*
10091 =for apidoc sv_pvn_force
10092
10093 Get a sensible string out of the SV somehow.
10094 A private implementation of the C<SvPV_force> macro for compilers which
10095 can't cope with complex macro expressions.  Always use the macro instead.
10096
10097 =for apidoc sv_pvn_force_flags
10098
10099 Get a sensible string out of the SV somehow.
10100 If C<flags> has the C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
10101 appropriate, else not.  C<sv_pvn_force> and C<sv_pvn_force_nomg> are
10102 implemented in terms of this function.
10103 You normally want to use the various wrapper macros instead: see
10104 C<L</SvPV_force>> and C<L</SvPV_force_nomg>>.
10105
10106 =cut
10107 */
10108
10109 char *
10110 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
10111 {
10112     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
10113
10114     if (flags & SV_GMAGIC) SvGETMAGIC(sv);
10115     if (SvTHINKFIRST(sv) && (!SvROK(sv) || SvREADONLY(sv)))
10116         sv_force_normal_flags(sv, 0);
10117
10118     if (SvPOK(sv)) {
10119         if (lp)
10120             *lp = SvCUR(sv);
10121     }
10122     else {
10123         char *s;
10124         STRLEN len;
10125  
10126         if (SvTYPE(sv) > SVt_PVLV
10127             || isGV_with_GP(sv))
10128             /* diag_listed_as: Can't coerce %s to %s in %s */
10129             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
10130                 OP_DESC(PL_op));
10131         s = sv_2pv_flags(sv, &len, flags &~ SV_GMAGIC);
10132         if (!s) {
10133           s = (char *)"";
10134         }
10135         if (lp)
10136             *lp = len;
10137
10138         if (SvTYPE(sv) < SVt_PV ||
10139             s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
10140             if (SvROK(sv))
10141                 sv_unref(sv);
10142             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
10143             SvGROW(sv, len + 1);
10144             Move(s,SvPVX(sv),len,char);
10145             SvCUR_set(sv, len);
10146             SvPVX(sv)[len] = '\0';
10147         }
10148         if (!SvPOK(sv)) {
10149             SvPOK_on(sv);               /* validate pointer */
10150             SvTAINT(sv);
10151             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%" UVxf " 2pv(%s)\n",
10152                                   PTR2UV(sv),SvPVX_const(sv)));
10153         }
10154     }
10155     (void)SvPOK_only_UTF8(sv);
10156     return SvPVX_mutable(sv);
10157 }
10158
10159 /*
10160 =for apidoc sv_pvbyten_force
10161
10162 The backend for the C<SvPVbytex_force> macro.  Always use the macro
10163 instead.
10164
10165 =cut
10166 */
10167
10168 char *
10169 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
10170 {
10171     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
10172
10173     sv_pvn_force(sv,lp);
10174     sv_utf8_downgrade(sv,0);
10175     *lp = SvCUR(sv);
10176     return SvPVX(sv);
10177 }
10178
10179 /*
10180 =for apidoc sv_pvutf8n_force
10181
10182 The backend for the C<SvPVutf8x_force> macro.  Always use the macro
10183 instead.
10184
10185 =cut
10186 */
10187
10188 char *
10189 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
10190 {
10191     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
10192
10193     sv_pvn_force(sv,0);
10194     sv_utf8_upgrade_nomg(sv);
10195     *lp = SvCUR(sv);
10196     return SvPVX(sv);
10197 }
10198
10199 /*
10200 =for apidoc sv_reftype
10201
10202 Returns a string describing what the SV is a reference to.
10203
10204 If ob is true and the SV is blessed, the string is the class name,
10205 otherwise it is the type of the SV, "SCALAR", "ARRAY" etc.
10206
10207 =cut
10208 */
10209
10210 const char *
10211 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
10212 {
10213     PERL_ARGS_ASSERT_SV_REFTYPE;
10214     if (ob && SvOBJECT(sv)) {
10215         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
10216     }
10217     else {
10218         /* WARNING - There is code, for instance in mg.c, that assumes that
10219          * the only reason that sv_reftype(sv,0) would return a string starting
10220          * with 'L' or 'S' is that it is a LVALUE or a SCALAR.
10221          * Yes this a dodgy way to do type checking, but it saves practically reimplementing
10222          * this routine inside other subs, and it saves time.
10223          * Do not change this assumption without searching for "dodgy type check" in
10224          * the code.
10225          * - Yves */
10226         switch (SvTYPE(sv)) {
10227         case SVt_NULL:
10228         case SVt_IV:
10229         case SVt_NV:
10230         case SVt_PV:
10231         case SVt_PVIV:
10232         case SVt_PVNV:
10233         case SVt_PVMG:
10234                                 if (SvVOK(sv))
10235                                     return "VSTRING";
10236                                 if (SvROK(sv))
10237                                     return "REF";
10238                                 else
10239                                     return "SCALAR";
10240
10241         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
10242                                 /* tied lvalues should appear to be
10243                                  * scalars for backwards compatibility */
10244                                 : (isALPHA_FOLD_EQ(LvTYPE(sv), 't'))
10245                                     ? "SCALAR" : "LVALUE");
10246         case SVt_PVAV:          return "ARRAY";
10247         case SVt_PVHV:          return "HASH";
10248         case SVt_PVCV:          return "CODE";
10249         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
10250                                     ? "GLOB" : "SCALAR");
10251         case SVt_PVFM:          return "FORMAT";
10252         case SVt_PVIO:          return "IO";
10253         case SVt_INVLIST:       return "INVLIST";
10254         case SVt_REGEXP:        return "REGEXP";
10255         default:                return "UNKNOWN";
10256         }
10257     }
10258 }
10259
10260 /*
10261 =for apidoc sv_ref
10262
10263 Returns a SV describing what the SV passed in is a reference to.
10264
10265 dst can be a SV to be set to the description or NULL, in which case a
10266 mortal SV is returned.
10267
10268 If ob is true and the SV is blessed, the description is the class
10269 name, otherwise it is the type of the SV, "SCALAR", "ARRAY" etc.
10270
10271 =cut
10272 */
10273
10274 SV *
10275 Perl_sv_ref(pTHX_ SV *dst, const SV *const sv, const int ob)
10276 {
10277     PERL_ARGS_ASSERT_SV_REF;
10278
10279     if (!dst)
10280         dst = sv_newmortal();
10281
10282     if (ob && SvOBJECT(sv)) {
10283         HvNAME_get(SvSTASH(sv))
10284                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
10285                     : sv_setpvs(dst, "__ANON__");
10286     }
10287     else {
10288         const char * reftype = sv_reftype(sv, 0);
10289         sv_setpv(dst, reftype);
10290     }
10291     return dst;
10292 }
10293
10294 /*
10295 =for apidoc sv_isobject
10296
10297 Returns a boolean indicating whether the SV is an RV pointing to a blessed
10298 object.  If the SV is not an RV, or if the object is not blessed, then this
10299 will return false.
10300
10301 =cut
10302 */
10303
10304 int
10305 Perl_sv_isobject(pTHX_ SV *sv)
10306 {
10307     if (!sv)
10308         return 0;
10309     SvGETMAGIC(sv);
10310     if (!SvROK(sv))
10311         return 0;
10312     sv = SvRV(sv);
10313     if (!SvOBJECT(sv))
10314         return 0;
10315     return 1;
10316 }
10317
10318 /*
10319 =for apidoc sv_isa
10320
10321 Returns a boolean indicating whether the SV is blessed into the specified
10322 class.  This does not check for subtypes; use C<sv_derived_from> to verify
10323 an inheritance relationship.
10324
10325 =cut
10326 */
10327
10328 int
10329 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
10330 {
10331     const char *hvname;
10332
10333     PERL_ARGS_ASSERT_SV_ISA;
10334
10335     if (!sv)
10336         return 0;
10337     SvGETMAGIC(sv);
10338     if (!SvROK(sv))
10339         return 0;
10340     sv = SvRV(sv);
10341     if (!SvOBJECT(sv))
10342         return 0;
10343     hvname = HvNAME_get(SvSTASH(sv));
10344     if (!hvname)
10345         return 0;
10346
10347     return strEQ(hvname, name);
10348 }
10349
10350 /*
10351 =for apidoc newSVrv
10352
10353 Creates a new SV for the existing RV, C<rv>, to point to.  If C<rv> is not an
10354 RV then it will be upgraded to one.  If C<classname> is non-null then the new
10355 SV will be blessed in the specified package.  The new SV is returned and its
10356 reference count is 1.  The reference count 1 is owned by C<rv>.
10357
10358 =cut
10359 */
10360
10361 SV*
10362 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
10363 {
10364     SV *sv;
10365
10366     PERL_ARGS_ASSERT_NEWSVRV;
10367
10368     new_SV(sv);
10369
10370     SV_CHECK_THINKFIRST_COW_DROP(rv);
10371
10372     if (UNLIKELY( SvTYPE(rv) >= SVt_PVMG )) {
10373         const U32 refcnt = SvREFCNT(rv);
10374         SvREFCNT(rv) = 0;
10375         sv_clear(rv);
10376         SvFLAGS(rv) = 0;
10377         SvREFCNT(rv) = refcnt;
10378
10379         sv_upgrade(rv, SVt_IV);
10380     } else if (SvROK(rv)) {
10381         SvREFCNT_dec(SvRV(rv));
10382     } else {
10383         prepare_SV_for_RV(rv);
10384     }
10385
10386     SvOK_off(rv);
10387     SvRV_set(rv, sv);
10388     SvROK_on(rv);
10389
10390     if (classname) {
10391         HV* const stash = gv_stashpv(classname, GV_ADD);
10392         (void)sv_bless(rv, stash);
10393     }
10394     return sv;
10395 }
10396
10397 SV *
10398 Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible)
10399 {
10400     SV * const lv = newSV_type(SVt_PVLV);
10401     PERL_ARGS_ASSERT_NEWSVAVDEFELEM;
10402     LvTYPE(lv) = 'y';
10403     sv_magic(lv, NULL, PERL_MAGIC_defelem, NULL, 0);
10404     LvTARG(lv) = SvREFCNT_inc_simple_NN(av);
10405     LvSTARGOFF(lv) = ix;
10406     LvTARGLEN(lv) = extendible ? 1 : (STRLEN)UV_MAX;
10407     return lv;
10408 }
10409
10410 /*
10411 =for apidoc sv_setref_pv
10412
10413 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
10414 argument will be upgraded to an RV.  That RV will be modified to point to
10415 the new SV.  If the C<pv> argument is C<NULL>, then C<PL_sv_undef> will be placed
10416 into the SV.  The C<classname> argument indicates the package for the
10417 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10418 will have a reference count of 1, and the RV will be returned.
10419
10420 Do not use with other Perl types such as HV, AV, SV, CV, because those
10421 objects will become corrupted by the pointer copy process.
10422
10423 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
10424
10425 =cut
10426 */
10427
10428 SV*
10429 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
10430 {
10431     PERL_ARGS_ASSERT_SV_SETREF_PV;
10432
10433     if (!pv) {
10434         sv_set_undef(rv);
10435         SvSETMAGIC(rv);
10436     }
10437     else
10438         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
10439     return rv;
10440 }
10441
10442 /*
10443 =for apidoc sv_setref_iv
10444
10445 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
10446 argument will be upgraded to an RV.  That RV will be modified to point to
10447 the new SV.  The C<classname> argument indicates the package for the
10448 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10449 will have a reference count of 1, and the RV will be returned.
10450
10451 =cut
10452 */
10453
10454 SV*
10455 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
10456 {
10457     PERL_ARGS_ASSERT_SV_SETREF_IV;
10458
10459     sv_setiv(newSVrv(rv,classname), iv);
10460     return rv;
10461 }
10462
10463 /*
10464 =for apidoc sv_setref_uv
10465
10466 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
10467 argument will be upgraded to an RV.  That RV will be modified to point to
10468 the new SV.  The C<classname> argument indicates the package for the
10469 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10470 will have a reference count of 1, and the RV will be returned.
10471
10472 =cut
10473 */
10474
10475 SV*
10476 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
10477 {
10478     PERL_ARGS_ASSERT_SV_SETREF_UV;
10479
10480     sv_setuv(newSVrv(rv,classname), uv);
10481     return rv;
10482 }
10483
10484 /*
10485 =for apidoc sv_setref_nv
10486
10487 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
10488 argument will be upgraded to an RV.  That RV will be modified to point to
10489 the new SV.  The C<classname> argument indicates the package for the
10490 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10491 will have a reference count of 1, and the RV will be returned.
10492
10493 =cut
10494 */
10495
10496 SV*
10497 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
10498 {
10499     PERL_ARGS_ASSERT_SV_SETREF_NV;
10500
10501     sv_setnv(newSVrv(rv,classname), nv);
10502     return rv;
10503 }
10504
10505 /*
10506 =for apidoc sv_setref_pvn
10507
10508 Copies a string into a new SV, optionally blessing the SV.  The length of the
10509 string must be specified with C<n>.  The C<rv> argument will be upgraded to
10510 an RV.  That RV will be modified to point to the new SV.  The C<classname>
10511 argument indicates the package for the blessing.  Set C<classname> to
10512 C<NULL> to avoid the blessing.  The new SV will have a reference count
10513 of 1, and the RV will be returned.
10514
10515 Note that C<sv_setref_pv> copies the pointer while this copies the string.
10516
10517 =cut
10518 */
10519
10520 SV*
10521 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
10522                    const char *const pv, const STRLEN n)
10523 {
10524     PERL_ARGS_ASSERT_SV_SETREF_PVN;
10525
10526     sv_setpvn(newSVrv(rv,classname), pv, n);
10527     return rv;
10528 }
10529
10530 /*
10531 =for apidoc sv_bless
10532
10533 Blesses an SV into a specified package.  The SV must be an RV.  The package
10534 must be designated by its stash (see C<L</gv_stashpv>>).  The reference count
10535 of the SV is unaffected.
10536
10537 =cut
10538 */
10539
10540 SV*
10541 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
10542 {
10543     SV *tmpRef;
10544     HV *oldstash = NULL;
10545
10546     PERL_ARGS_ASSERT_SV_BLESS;
10547
10548     SvGETMAGIC(sv);
10549     if (!SvROK(sv))
10550         Perl_croak(aTHX_ "Can't bless non-reference value");
10551     tmpRef = SvRV(sv);
10552     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY|SVf_PROTECT)) {
10553         if (SvREADONLY(tmpRef))
10554             Perl_croak_no_modify();
10555         if (SvOBJECT(tmpRef)) {
10556             oldstash = SvSTASH(tmpRef);
10557         }
10558     }
10559     SvOBJECT_on(tmpRef);
10560     SvUPGRADE(tmpRef, SVt_PVMG);
10561     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
10562     SvREFCNT_dec(oldstash);
10563
10564     if(SvSMAGICAL(tmpRef))
10565         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
10566             mg_set(tmpRef);
10567
10568
10569
10570     return sv;
10571 }
10572
10573 /* Downgrades a PVGV to a PVMG. If it's actually a PVLV, we leave the type
10574  * as it is after unglobbing it.
10575  */
10576
10577 PERL_STATIC_INLINE void
10578 S_sv_unglob(pTHX_ SV *const sv, U32 flags)
10579 {
10580     void *xpvmg;
10581     HV *stash;
10582     SV * const temp = flags & SV_COW_DROP_PV ? NULL : sv_newmortal();
10583
10584     PERL_ARGS_ASSERT_SV_UNGLOB;
10585
10586     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
10587     SvFAKE_off(sv);
10588     if (!(flags & SV_COW_DROP_PV))
10589         gv_efullname3(temp, MUTABLE_GV(sv), "*");
10590
10591     SvREFCNT_inc_simple_void_NN(sv_2mortal(sv));
10592     if (GvGP(sv)) {
10593         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
10594            && HvNAME_get(stash))
10595             mro_method_changed_in(stash);
10596         gp_free(MUTABLE_GV(sv));
10597     }
10598     if (GvSTASH(sv)) {
10599         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
10600         GvSTASH(sv) = NULL;
10601     }
10602     GvMULTI_off(sv);
10603     if (GvNAME_HEK(sv)) {
10604         unshare_hek(GvNAME_HEK(sv));
10605     }
10606     isGV_with_GP_off(sv);
10607
10608     if(SvTYPE(sv) == SVt_PVGV) {
10609         /* need to keep SvANY(sv) in the right arena */
10610         xpvmg = new_XPVMG();
10611         StructCopy(SvANY(sv), xpvmg, XPVMG);
10612         del_XPVGV(SvANY(sv));
10613         SvANY(sv) = xpvmg;
10614
10615         SvFLAGS(sv) &= ~SVTYPEMASK;
10616         SvFLAGS(sv) |= SVt_PVMG;
10617     }
10618
10619     /* Intentionally not calling any local SET magic, as this isn't so much a
10620        set operation as merely an internal storage change.  */
10621     if (flags & SV_COW_DROP_PV) SvOK_off(sv);
10622     else sv_setsv_flags(sv, temp, 0);
10623
10624     if ((const GV *)sv == PL_last_in_gv)
10625         PL_last_in_gv = NULL;
10626     else if ((const GV *)sv == PL_statgv)
10627         PL_statgv = NULL;
10628 }
10629
10630 /*
10631 =for apidoc sv_unref_flags
10632
10633 Unsets the RV status of the SV, and decrements the reference count of
10634 whatever was being referenced by the RV.  This can almost be thought of
10635 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
10636 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
10637 (otherwise the decrementing is conditional on the reference count being
10638 different from one or the reference being a readonly SV).
10639 See C<L</SvROK_off>>.
10640
10641 =cut
10642 */
10643
10644 void
10645 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
10646 {
10647     SV* const target = SvRV(ref);
10648
10649     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
10650
10651     if (SvWEAKREF(ref)) {
10652         sv_del_backref(target, ref);
10653         SvWEAKREF_off(ref);
10654         SvRV_set(ref, NULL);
10655         return;
10656     }
10657     SvRV_set(ref, NULL);
10658     SvROK_off(ref);
10659     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
10660        assigned to as BEGIN {$a = \"Foo"} will fail.  */
10661     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
10662         SvREFCNT_dec_NN(target);
10663     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
10664         sv_2mortal(target);     /* Schedule for freeing later */
10665 }
10666
10667 /*
10668 =for apidoc sv_untaint
10669
10670 Untaint an SV.  Use C<SvTAINTED_off> instead.
10671
10672 =cut
10673 */
10674
10675 void
10676 Perl_sv_untaint(pTHX_ SV *const sv)
10677 {
10678     PERL_ARGS_ASSERT_SV_UNTAINT;
10679     PERL_UNUSED_CONTEXT;
10680
10681     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10682         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10683         if (mg)
10684             mg->mg_len &= ~1;
10685     }
10686 }
10687
10688 /*
10689 =for apidoc sv_tainted
10690
10691 Test an SV for taintedness.  Use C<SvTAINTED> instead.
10692
10693 =cut
10694 */
10695
10696 bool
10697 Perl_sv_tainted(pTHX_ SV *const sv)
10698 {
10699     PERL_ARGS_ASSERT_SV_TAINTED;
10700     PERL_UNUSED_CONTEXT;
10701
10702     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10703         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10704         if (mg && (mg->mg_len & 1) )
10705             return TRUE;
10706     }
10707     return FALSE;
10708 }
10709
10710 #ifndef NO_MATHOMS  /* Can't move these to mathoms.c because call uiv_2buf(),
10711                        private to this file */
10712
10713 /*
10714 =for apidoc sv_setpviv
10715
10716 Copies an integer into the given SV, also updating its string value.
10717 Does not handle 'set' magic.  See C<L</sv_setpviv_mg>>.
10718
10719 =cut
10720 */
10721
10722 void
10723 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
10724 {
10725     char buf[TYPE_CHARS(UV)];
10726     char *ebuf;
10727     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
10728
10729     PERL_ARGS_ASSERT_SV_SETPVIV;
10730
10731     sv_setpvn(sv, ptr, ebuf - ptr);
10732 }
10733
10734 /*
10735 =for apidoc sv_setpviv_mg
10736
10737 Like C<sv_setpviv>, but also handles 'set' magic.
10738
10739 =cut
10740 */
10741
10742 void
10743 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
10744 {
10745     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
10746
10747     sv_setpviv(sv, iv);
10748     SvSETMAGIC(sv);
10749 }
10750
10751 #endif  /* NO_MATHOMS */
10752
10753 #if defined(PERL_IMPLICIT_CONTEXT)
10754
10755 /* pTHX_ magic can't cope with varargs, so this is a no-context
10756  * version of the main function, (which may itself be aliased to us).
10757  * Don't access this version directly.
10758  */
10759
10760 void
10761 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
10762 {
10763     dTHX;
10764     va_list args;
10765
10766     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
10767
10768     va_start(args, pat);
10769     sv_vsetpvf(sv, pat, &args);
10770     va_end(args);
10771 }
10772
10773 /* pTHX_ magic can't cope with varargs, so this is a no-context
10774  * version of the main function, (which may itself be aliased to us).
10775  * Don't access this version directly.
10776  */
10777
10778 void
10779 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10780 {
10781     dTHX;
10782     va_list args;
10783
10784     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
10785
10786     va_start(args, pat);
10787     sv_vsetpvf_mg(sv, pat, &args);
10788     va_end(args);
10789 }
10790 #endif
10791
10792 /*
10793 =for apidoc sv_setpvf
10794
10795 Works like C<sv_catpvf> but copies the text into the SV instead of
10796 appending it.  Does not handle 'set' magic.  See C<L</sv_setpvf_mg>>.
10797
10798 =cut
10799 */
10800
10801 void
10802 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
10803 {
10804     va_list args;
10805
10806     PERL_ARGS_ASSERT_SV_SETPVF;
10807
10808     va_start(args, pat);
10809     sv_vsetpvf(sv, pat, &args);
10810     va_end(args);
10811 }
10812
10813 /*
10814 =for apidoc sv_vsetpvf
10815
10816 Works like C<sv_vcatpvf> but copies the text into the SV instead of
10817 appending it.  Does not handle 'set' magic.  See C<L</sv_vsetpvf_mg>>.
10818
10819 Usually used via its frontend C<sv_setpvf>.
10820
10821 =cut
10822 */
10823
10824 void
10825 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10826 {
10827     PERL_ARGS_ASSERT_SV_VSETPVF;
10828
10829     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10830 }
10831
10832 /*
10833 =for apidoc sv_setpvf_mg
10834
10835 Like C<sv_setpvf>, but also handles 'set' magic.
10836
10837 =cut
10838 */
10839
10840 void
10841 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10842 {
10843     va_list args;
10844
10845     PERL_ARGS_ASSERT_SV_SETPVF_MG;
10846
10847     va_start(args, pat);
10848     sv_vsetpvf_mg(sv, pat, &args);
10849     va_end(args);
10850 }
10851
10852 /*
10853 =for apidoc sv_vsetpvf_mg
10854
10855 Like C<sv_vsetpvf>, but also handles 'set' magic.
10856
10857 Usually used via its frontend C<sv_setpvf_mg>.
10858
10859 =cut
10860 */
10861
10862 void
10863 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10864 {
10865     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
10866
10867     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10868     SvSETMAGIC(sv);
10869 }
10870
10871 #if defined(PERL_IMPLICIT_CONTEXT)
10872
10873 /* pTHX_ magic can't cope with varargs, so this is a no-context
10874  * version of the main function, (which may itself be aliased to us).
10875  * Don't access this version directly.
10876  */
10877
10878 void
10879 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
10880 {
10881     dTHX;
10882     va_list args;
10883
10884     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
10885
10886     va_start(args, pat);
10887     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10888     va_end(args);
10889 }
10890
10891 /* pTHX_ magic can't cope with varargs, so this is a no-context
10892  * version of the main function, (which may itself be aliased to us).
10893  * Don't access this version directly.
10894  */
10895
10896 void
10897 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10898 {
10899     dTHX;
10900     va_list args;
10901
10902     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
10903
10904     va_start(args, pat);
10905     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10906     SvSETMAGIC(sv);
10907     va_end(args);
10908 }
10909 #endif
10910
10911 /*
10912 =for apidoc sv_catpvf
10913
10914 Processes its arguments like C<sv_catpvfn>, and appends the formatted
10915 output to an SV.  As with C<sv_catpvfn> called with a non-null C-style
10916 variable argument list, argument reordering is not supported.
10917 If the appended data contains "wide" characters
10918 (including, but not limited to, SVs with a UTF-8 PV formatted with C<%s>,
10919 and characters >255 formatted with C<%c>), the original SV might get
10920 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
10921 C<L</sv_catpvf_mg>>.  If the original SV was UTF-8, the pattern should be
10922 valid UTF-8; if the original SV was bytes, the pattern should be too.
10923
10924 =cut */
10925
10926 void
10927 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
10928 {
10929     va_list args;
10930
10931     PERL_ARGS_ASSERT_SV_CATPVF;
10932
10933     va_start(args, pat);
10934     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10935     va_end(args);
10936 }
10937
10938 /*
10939 =for apidoc sv_vcatpvf
10940
10941 Processes its arguments like C<sv_catpvfn> called with a non-null C-style
10942 variable argument list, and appends the formatted output
10943 to an SV.  Does not handle 'set' magic.  See C<L</sv_vcatpvf_mg>>.
10944
10945 Usually used via its frontend C<sv_catpvf>.
10946
10947 =cut
10948 */
10949
10950 void
10951 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10952 {
10953     PERL_ARGS_ASSERT_SV_VCATPVF;
10954
10955     sv_vcatpvfn_flags(sv, pat, strlen(pat), args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10956 }
10957
10958 /*
10959 =for apidoc sv_catpvf_mg
10960
10961 Like C<sv_catpvf>, but also handles 'set' magic.
10962
10963 =cut
10964 */
10965
10966 void
10967 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10968 {
10969     va_list args;
10970
10971     PERL_ARGS_ASSERT_SV_CATPVF_MG;
10972
10973     va_start(args, pat);
10974     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10975     SvSETMAGIC(sv);
10976     va_end(args);
10977 }
10978
10979 /*
10980 =for apidoc sv_vcatpvf_mg
10981
10982 Like C<sv_vcatpvf>, but also handles 'set' magic.
10983
10984 Usually used via its frontend C<sv_catpvf_mg>.
10985
10986 =cut
10987 */
10988
10989 void
10990 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10991 {
10992     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
10993
10994     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10995     SvSETMAGIC(sv);
10996 }
10997
10998 /*
10999 =for apidoc sv_vsetpvfn
11000
11001 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
11002 appending it.
11003
11004 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
11005
11006 =cut
11007 */
11008
11009 void
11010 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
11011                  va_list *const args, SV **const svargs, const Size_t sv_count, bool *const maybe_tainted)
11012 {
11013     PERL_ARGS_ASSERT_SV_VSETPVFN;
11014
11015     SvPVCLEAR(sv);
11016     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, sv_count, maybe_tainted, 0);
11017 }
11018
11019
11020 /* simplified inline Perl_sv_catpvn_nomg() when you know the SV's SvPOK */
11021
11022 PERL_STATIC_INLINE void
11023 S_sv_catpvn_simple(pTHX_ SV *const sv, const char* const buf, const STRLEN len)
11024 {
11025     STRLEN const need = len + SvCUR(sv) + 1;
11026     char *end;
11027
11028     /* can't wrap as both len and SvCUR() are allocated in
11029      * memory and together can't consume all the address space
11030      */
11031     assert(need > len);
11032
11033     assert(SvPOK(sv));
11034     SvGROW(sv, need);
11035     end = SvEND(sv);
11036     Copy(buf, end, len, char);
11037     end += len;
11038     *end = '\0';
11039     SvCUR_set(sv, need - 1);
11040 }
11041
11042
11043 /*
11044  * Warn of missing argument to sprintf. The value used in place of such
11045  * arguments should be &PL_sv_no; an undefined value would yield
11046  * inappropriate "use of uninit" warnings [perl #71000].
11047  */
11048 STATIC void
11049 S_warn_vcatpvfn_missing_argument(pTHX) {
11050     if (ckWARN(WARN_MISSING)) {
11051         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
11052                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
11053     }
11054 }
11055
11056
11057 static void
11058 S_croak_overflow()
11059 {
11060     dTHX;
11061     Perl_croak(aTHX_ "Integer overflow in format string for %s",
11062                     (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
11063 }
11064
11065
11066 /* Given an int i from the next arg (if args is true) or an sv from an arg
11067  * (if args is false), try to extract a STRLEN-ranged value from the arg,
11068  * with overflow checking.
11069  * Sets *neg to true if the value was negative (untouched otherwise.
11070  * Returns the absolute value.
11071  * As an extra margin of safety, it croaks if the returned value would
11072  * exceed the maximum value of a STRLEN / 4.
11073  */
11074
11075 static STRLEN
11076 S_sprintf_arg_num_val(pTHX_ va_list *const args, int i, SV *sv, bool *neg)
11077 {
11078     IV iv;
11079
11080     if (args) {
11081         iv = i;
11082         goto do_iv;
11083     }
11084
11085     if (!sv)
11086         return 0;
11087
11088     SvGETMAGIC(sv);
11089
11090     if (UNLIKELY(SvIsUV(sv))) {
11091         UV uv = SvUV_nomg(sv);
11092         if (uv > IV_MAX)
11093             S_croak_overflow();
11094         iv = uv;
11095     }
11096     else {
11097         iv = SvIV_nomg(sv);
11098       do_iv:
11099         if (iv < 0) {
11100             if (iv < -IV_MAX)
11101                 S_croak_overflow();
11102             iv = -iv;
11103             *neg = TRUE;
11104         }
11105     }
11106
11107     if (iv > (IV)(((STRLEN)~0) / 4))
11108         S_croak_overflow();
11109
11110     return (STRLEN)iv;
11111 }
11112
11113
11114 /* Returns true if c is in the range '1'..'9'
11115  * Written with the cast so it only needs one conditional test
11116  */
11117 #define IS_1_TO_9(c) ((U8)(c - '1') <= 8)
11118
11119 /* Read in and return a number. Updates *pattern to point to the char
11120  * following the number. Expects the first char to 1..9.
11121  * Croaks if the number exceeds 1/4 of the maximum value of STRLEN.
11122  * This is a belt-and-braces safety measure to complement any
11123  * overflow/wrap checks done in the main body of sv_vcatpvfn_flags.
11124  * It means that e.g. on a 32-bit system the width/precision can't be more
11125  * than 1G, which seems reasonable.
11126  */
11127
11128 STATIC STRLEN
11129 S_expect_number(pTHX_ const char **const pattern)
11130 {
11131     STRLEN var;
11132
11133     PERL_ARGS_ASSERT_EXPECT_NUMBER;
11134
11135     assert(IS_1_TO_9(**pattern));
11136
11137     var = *(*pattern)++ - '0';
11138     while (isDIGIT(**pattern)) {
11139         /* if var * 10 + 9 would exceed 1/4 max strlen, croak */
11140         if (var > ((((STRLEN)~0) / 4 - 9) / 10))
11141             S_croak_overflow();
11142         var = var * 10 + (*(*pattern)++ - '0');
11143     }
11144     return var;
11145 }
11146
11147 /* Implement a fast "%.0f": given a pointer to the end of a buffer (caller
11148  * ensures it's big enough), back fill it with the rounded integer part of
11149  * nv. Returns ptr to start of string, and sets *len to its length.
11150  * Returns NULL if not convertible.
11151  */
11152
11153 STATIC char *
11154 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
11155 {
11156     const int neg = nv < 0;
11157     UV uv;
11158
11159     PERL_ARGS_ASSERT_F0CONVERT;
11160
11161     assert(!Perl_isinfnan(nv));
11162     if (neg)
11163         nv = -nv;
11164     if (nv < UV_MAX) {
11165         char *p = endbuf;
11166         nv += 0.5;
11167         uv = (UV)nv;
11168         if (uv & 1 && uv == nv)
11169             uv--;                       /* Round to even */
11170         do {
11171             const unsigned dig = uv % 10;
11172             *--p = '0' + dig;
11173         } while (uv /= 10);
11174         if (neg)
11175             *--p = '-';
11176         *len = endbuf - p;
11177         return p;
11178     }
11179     return NULL;
11180 }
11181
11182
11183 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
11184
11185 void
11186 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
11187                  va_list *const args, SV **const svargs, const Size_t sv_count, bool *const maybe_tainted)
11188 {
11189     PERL_ARGS_ASSERT_SV_VCATPVFN;
11190
11191     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, sv_count, maybe_tainted, SV_GMAGIC|SV_SMAGIC);
11192 }
11193
11194
11195 /* For the vcatpvfn code, we need a long double target in case
11196  * HAS_LONG_DOUBLE, even without USE_LONG_DOUBLE, so that we can printf
11197  * with long double formats, even without NV being long double.  But we
11198  * call the target 'fv' instead of 'nv', since most of the time it is not
11199  * (most compilers these days recognize "long double", even if only as a
11200  * synonym for "double").
11201 */
11202 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE && \
11203         defined(PERL_PRIgldbl) && !defined(USE_QUADMATH)
11204 #  define VCATPVFN_FV_GF PERL_PRIgldbl
11205 #  if defined(__VMS) && defined(__ia64) && defined(__IEEE_FLOAT)
11206        /* Work around breakage in OTS$CVT_FLOAT_T_X */
11207 #    define VCATPVFN_NV_TO_FV(nv,fv)                    \
11208             STMT_START {                                \
11209                 double _dv = nv;                        \
11210                 fv = Perl_isnan(_dv) ? LDBL_QNAN : _dv; \
11211             } STMT_END
11212 #  else
11213 #    define VCATPVFN_NV_TO_FV(nv,fv) (fv)=(nv)
11214 #  endif
11215    typedef long double vcatpvfn_long_double_t;
11216 #else
11217 #  define VCATPVFN_FV_GF NVgf
11218 #  define VCATPVFN_NV_TO_FV(nv,fv) (fv)=(nv)
11219    typedef NV vcatpvfn_long_double_t;
11220 #endif
11221
11222 #ifdef LONGDOUBLE_DOUBLEDOUBLE
11223 /* The first double can be as large as 2**1023, or '1' x '0' x 1023.
11224  * The second double can be as small as 2**-1074, or '0' x 1073 . '1'.
11225  * The sum of them can be '1' . '0' x 2096 . '1', with implied radix point
11226  * after the first 1023 zero bits.
11227  *
11228  * XXX The 2098 is quite large (262.25 bytes) and therefore some sort
11229  * of dynamically growing buffer might be better, start at just 16 bytes
11230  * (for example) and grow only when necessary.  Or maybe just by looking
11231  * at the exponents of the two doubles? */
11232 #  define DOUBLEDOUBLE_MAXBITS 2098
11233 #endif
11234
11235 /* vhex will contain the values (0..15) of the hex digits ("nybbles"
11236  * of 4 bits); 1 for the implicit 1, and the mantissa bits, four bits
11237  * per xdigit.  For the double-double case, this can be rather many.
11238  * The non-double-double-long-double overshoots since all bits of NV
11239  * are not mantissa bits, there are also exponent bits. */
11240 #ifdef LONGDOUBLE_DOUBLEDOUBLE
11241 #  define VHEX_SIZE (3+DOUBLEDOUBLE_MAXBITS/4)
11242 #else
11243 #  define VHEX_SIZE (1+(NVSIZE * 8)/4)
11244 #endif
11245
11246 /* If we do not have a known long double format, (including not using
11247  * long doubles, or long doubles being equal to doubles) then we will
11248  * fall back to the ldexp/frexp route, with which we can retrieve at
11249  * most as many bits as our widest unsigned integer type is.  We try
11250  * to get a 64-bit unsigned integer even if we are not using a 64-bit UV.
11251  *
11252  * (If you want to test the case of UVSIZE == 4, NVSIZE == 8,
11253  *  set the MANTISSATYPE to int and the MANTISSASIZE to 4.)
11254  */
11255 #if defined(HAS_QUAD) && defined(Uquad_t)
11256 #  define MANTISSATYPE Uquad_t
11257 #  define MANTISSASIZE 8
11258 #else
11259 #  define MANTISSATYPE UV
11260 #  define MANTISSASIZE UVSIZE
11261 #endif
11262
11263 #if defined(DOUBLE_LITTLE_ENDIAN) || defined(LONGDOUBLE_LITTLE_ENDIAN)
11264 #  define HEXTRACT_LITTLE_ENDIAN
11265 #elif defined(DOUBLE_BIG_ENDIAN) || defined(LONGDOUBLE_BIG_ENDIAN)
11266 #  define HEXTRACT_BIG_ENDIAN
11267 #else
11268 #  define HEXTRACT_MIX_ENDIAN
11269 #endif
11270
11271 /* S_hextract() is a helper for S_format_hexfp, for extracting
11272  * the hexadecimal values (for %a/%A).  The nv is the NV where the value
11273  * are being extracted from (either directly from the long double in-memory
11274  * presentation, or from the uquad computed via frexp+ldexp).  frexp also
11275  * is used to update the exponent.  The subnormal is set to true
11276  * for IEEE 754 subnormals/denormals (including the x86 80-bit format).
11277  * The vhex is the pointer to the beginning of the output buffer of VHEX_SIZE.
11278  *
11279  * The tricky part is that S_hextract() needs to be called twice:
11280  * the first time with vend as NULL, and the second time with vend as
11281  * the pointer returned by the first call.  What happens is that on
11282  * the first round the output size is computed, and the intended
11283  * extraction sanity checked.  On the second round the actual output
11284  * (the extraction of the hexadecimal values) takes place.
11285  * Sanity failures cause fatal failures during both rounds. */
11286 STATIC U8*
11287 S_hextract(pTHX_ const NV nv, int* exponent, bool *subnormal,
11288            U8* vhex, U8* vend)
11289 {
11290     U8* v = vhex;
11291     int ix;
11292     int ixmin = 0, ixmax = 0;
11293
11294     /* XXX Inf/NaN are not handled here, since it is
11295      * assumed they are to be output as "Inf" and "NaN". */
11296
11297     /* These macros are just to reduce typos, they have multiple
11298      * repetitions below, but usually only one (or sometimes two)
11299      * of them is really being used. */
11300     /* HEXTRACT_OUTPUT() extracts the high nybble first. */
11301 #define HEXTRACT_OUTPUT_HI(ix) (*v++ = nvp[ix] >> 4)
11302 #define HEXTRACT_OUTPUT_LO(ix) (*v++ = nvp[ix] & 0xF)
11303 #define HEXTRACT_OUTPUT(ix) \
11304     STMT_START { \
11305       HEXTRACT_OUTPUT_HI(ix); HEXTRACT_OUTPUT_LO(ix); \
11306    } STMT_END
11307 #define HEXTRACT_COUNT(ix, c) \
11308     STMT_START { \
11309       v += c; if (ix < ixmin) ixmin = ix; else if (ix > ixmax) ixmax = ix; \
11310    } STMT_END
11311 #define HEXTRACT_BYTE(ix) \
11312     STMT_START { \
11313       if (vend) HEXTRACT_OUTPUT(ix); else HEXTRACT_COUNT(ix, 2); \
11314    } STMT_END
11315 #define HEXTRACT_LO_NYBBLE(ix) \
11316     STMT_START { \
11317       if (vend) HEXTRACT_OUTPUT_LO(ix); else HEXTRACT_COUNT(ix, 1); \
11318    } STMT_END
11319     /* HEXTRACT_TOP_NYBBLE is just convenience disguise,
11320      * to make it look less odd when the top bits of a NV
11321      * are extracted using HEXTRACT_LO_NYBBLE: the highest
11322      * order bits can be in the "low nybble" of a byte. */
11323 #define HEXTRACT_TOP_NYBBLE(ix) HEXTRACT_LO_NYBBLE(ix)
11324 #define HEXTRACT_BYTES_LE(a, b) \
11325     for (ix = a; ix >= b; ix--) { HEXTRACT_BYTE(ix); }
11326 #define HEXTRACT_BYTES_BE(a, b) \
11327     for (ix = a; ix <= b; ix++) { HEXTRACT_BYTE(ix); }
11328 #define HEXTRACT_GET_SUBNORMAL(nv) *subnormal = Perl_fp_class_denorm(nv)
11329 #define HEXTRACT_IMPLICIT_BIT(nv) \
11330     STMT_START { \
11331         if (!*subnormal) { \
11332             if (vend) *v++ = ((nv) == 0.0) ? 0 : 1; else v++; \
11333         } \
11334    } STMT_END
11335
11336 /* Most formats do.  Those which don't should undef this.
11337  *
11338  * But also note that IEEE 754 subnormals do not have it, or,
11339  * expressed alternatively, their implicit bit is zero. */
11340 #define HEXTRACT_HAS_IMPLICIT_BIT
11341
11342 /* Many formats do.  Those which don't should undef this. */
11343 #define HEXTRACT_HAS_TOP_NYBBLE
11344
11345     /* HEXTRACTSIZE is the maximum number of xdigits. */
11346 #if defined(USE_LONG_DOUBLE) && defined(LONGDOUBLE_DOUBLEDOUBLE)
11347 #  define HEXTRACTSIZE (2+DOUBLEDOUBLE_MAXBITS/4)
11348 #else
11349 #  define HEXTRACTSIZE 2 * NVSIZE
11350 #endif
11351
11352     const U8* vmaxend = vhex + HEXTRACTSIZE;
11353
11354     assert(HEXTRACTSIZE <= VHEX_SIZE);
11355
11356     PERL_UNUSED_VAR(ix); /* might happen */
11357     (void)Perl_frexp(PERL_ABS(nv), exponent);
11358     *subnormal = FALSE;
11359     if (vend && (vend <= vhex || vend > vmaxend)) {
11360         /* diag_listed_as: Hexadecimal float: internal error (%s) */
11361         Perl_croak(aTHX_ "Hexadecimal float: internal error (entry)");
11362     }
11363     {
11364         /* First check if using long doubles. */
11365 #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE)
11366 #  if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
11367         /* Used in e.g. VMS and HP-UX IA-64, e.g. -0.1L:
11368          * 9a 99 99 99 99 99 99 99 99 99 99 99 99 99 fb bf */
11369         /* The bytes 13..0 are the mantissa/fraction,
11370          * the 15,14 are the sign+exponent. */
11371         const U8* nvp = (const U8*)(&nv);
11372         HEXTRACT_GET_SUBNORMAL(nv);
11373         HEXTRACT_IMPLICIT_BIT(nv);
11374 #    undef HEXTRACT_HAS_TOP_NYBBLE
11375         HEXTRACT_BYTES_LE(13, 0);
11376 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
11377         /* Used in e.g. Solaris Sparc and HP-UX PA-RISC, e.g. -0.1L:
11378          * bf fb 99 99 99 99 99 99 99 99 99 99 99 99 99 9a */
11379         /* The bytes 2..15 are the mantissa/fraction,
11380          * the 0,1 are the sign+exponent. */
11381         const U8* nvp = (const U8*)(&nv);
11382         HEXTRACT_GET_SUBNORMAL(nv);
11383         HEXTRACT_IMPLICIT_BIT(nv);
11384 #    undef HEXTRACT_HAS_TOP_NYBBLE
11385         HEXTRACT_BYTES_BE(2, 15);
11386 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
11387         /* x86 80-bit "extended precision", 64 bits of mantissa / fraction /
11388          * significand, 15 bits of exponent, 1 bit of sign.  No implicit bit.
11389          * NVSIZE can be either 12 (ILP32, Solaris x86) or 16 (LP64, Linux
11390          * and OS X), meaning that 2 or 6 bytes are empty padding. */
11391         /* The bytes 0..1 are the sign+exponent,
11392          * the bytes 2..9 are the mantissa/fraction. */
11393         const U8* nvp = (const U8*)(&nv);
11394 #    undef HEXTRACT_HAS_IMPLICIT_BIT
11395 #    undef HEXTRACT_HAS_TOP_NYBBLE
11396         HEXTRACT_GET_SUBNORMAL(nv);
11397         HEXTRACT_BYTES_LE(7, 0);
11398 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
11399         /* Does this format ever happen? (Wikipedia says the Motorola
11400          * 6888x math coprocessors used format _like_ this but padded
11401          * to 96 bits with 16 unused bits between the exponent and the
11402          * mantissa.) */
11403         const U8* nvp = (const U8*)(&nv);
11404 #    undef HEXTRACT_HAS_IMPLICIT_BIT
11405 #    undef HEXTRACT_HAS_TOP_NYBBLE
11406         HEXTRACT_GET_SUBNORMAL(nv);
11407         HEXTRACT_BYTES_BE(0, 7);
11408 #  else
11409 #    define HEXTRACT_FALLBACK
11410         /* Double-double format: two doubles next to each other.
11411          * The first double is the high-order one, exactly like
11412          * it would be for a "lone" double.  The second double
11413          * is shifted down using the exponent so that that there
11414          * are no common bits.  The tricky part is that the value
11415          * of the double-double is the SUM of the two doubles and
11416          * the second one can be also NEGATIVE.
11417          *
11418          * Because of this tricky construction the bytewise extraction we
11419          * use for the other long double formats doesn't work, we must
11420          * extract the values bit by bit.
11421          *
11422          * The little-endian double-double is used .. somewhere?
11423          *
11424          * The big endian double-double is used in e.g. PPC/Power (AIX)
11425          * and MIPS (SGI).
11426          *
11427          * The mantissa bits are in two separate stretches, e.g. for -0.1L:
11428          * 9a 99 99 99 99 99 59 bc 9a 99 99 99 99 99 b9 3f (LE)
11429          * 3f b9 99 99 99 99 99 9a bc 59 99 99 99 99 99 9a (BE)
11430          */
11431 #  endif
11432 #else /* #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE) */
11433         /* Using normal doubles, not long doubles.
11434          *
11435          * We generate 4-bit xdigits (nybble/nibble) instead of 8-bit
11436          * bytes, since we might need to handle printf precision, and
11437          * also need to insert the radix. */
11438 #  if NVSIZE == 8
11439 #    ifdef HEXTRACT_LITTLE_ENDIAN
11440         /* 0 1 2 3 4 5 6 7 (MSB = 7, LSB = 0, 6+7 = exponent+sign) */
11441         const U8* nvp = (const U8*)(&nv);
11442         HEXTRACT_GET_SUBNORMAL(nv);
11443         HEXTRACT_IMPLICIT_BIT(nv);
11444         HEXTRACT_TOP_NYBBLE(6);
11445         HEXTRACT_BYTES_LE(5, 0);
11446 #    elif defined(HEXTRACT_BIG_ENDIAN)
11447         /* 7 6 5 4 3 2 1 0 (MSB = 7, LSB = 0, 6+7 = exponent+sign) */
11448         const U8* nvp = (const U8*)(&nv);
11449         HEXTRACT_GET_SUBNORMAL(nv);
11450         HEXTRACT_IMPLICIT_BIT(nv);
11451         HEXTRACT_TOP_NYBBLE(1);
11452         HEXTRACT_BYTES_BE(2, 7);
11453 #    elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
11454         /* 4 5 6 7 0 1 2 3 (MSB = 7, LSB = 0, 6:7 = nybble:exponent:sign) */
11455         const U8* nvp = (const U8*)(&nv);
11456         HEXTRACT_GET_SUBNORMAL(nv);
11457         HEXTRACT_IMPLICIT_BIT(nv);
11458         HEXTRACT_TOP_NYBBLE(2); /* 6 */
11459         HEXTRACT_BYTE(1); /* 5 */
11460         HEXTRACT_BYTE(0); /* 4 */
11461         HEXTRACT_BYTE(7); /* 3 */
11462         HEXTRACT_BYTE(6); /* 2 */
11463         HEXTRACT_BYTE(5); /* 1 */
11464         HEXTRACT_BYTE(4); /* 0 */
11465 #    elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
11466         /* 3 2 1 0 7 6 5 4 (MSB = 7, LSB = 0, 7:6 = sign:exponent:nybble) */
11467         const U8* nvp = (const U8*)(&nv);
11468         HEXTRACT_GET_SUBNORMAL(nv);
11469         HEXTRACT_IMPLICIT_BIT(nv);
11470         HEXTRACT_TOP_NYBBLE(5); /* 6 */
11471         HEXTRACT_BYTE(6); /* 5 */
11472         HEXTRACT_BYTE(7); /* 4 */
11473         HEXTRACT_BYTE(0); /* 3 */
11474         HEXTRACT_BYTE(1); /* 2 */
11475         HEXTRACT_BYTE(2); /* 1 */
11476         HEXTRACT_BYTE(3); /* 0 */
11477 #    else
11478 #      define HEXTRACT_FALLBACK
11479 #    endif
11480 #  else
11481 #    define HEXTRACT_FALLBACK
11482 #  endif
11483 #endif /* #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE) #else */
11484
11485 #ifdef HEXTRACT_FALLBACK
11486         HEXTRACT_GET_SUBNORMAL(nv);
11487 #  undef HEXTRACT_HAS_TOP_NYBBLE /* Meaningless, but consistent. */
11488         /* The fallback is used for the double-double format, and
11489          * for unknown long double formats, and for unknown double
11490          * formats, or in general unknown NV formats. */
11491         if (nv == (NV)0.0) {
11492             if (vend)
11493                 *v++ = 0;
11494             else
11495                 v++;
11496             *exponent = 0;
11497         }
11498         else {
11499             NV d = nv < 0 ? -nv : nv;
11500             NV e = (NV)1.0;
11501             U8 ha = 0x0; /* hexvalue accumulator */
11502             U8 hd = 0x8; /* hexvalue digit */
11503
11504             /* Shift d and e (and update exponent) so that e <= d < 2*e,
11505              * this is essentially manual frexp(). Multiplying by 0.5 and
11506              * doubling should be lossless in binary floating point. */
11507
11508             *exponent = 1;
11509
11510             while (e > d) {
11511                 e *= (NV)0.5;
11512                 (*exponent)--;
11513             }
11514             /* Now d >= e */
11515
11516             while (d >= e + e) {
11517                 e += e;
11518                 (*exponent)++;
11519             }
11520             /* Now e <= d < 2*e */
11521
11522             /* First extract the leading hexdigit (the implicit bit). */
11523             if (d >= e) {
11524                 d -= e;
11525                 if (vend)
11526                     *v++ = 1;
11527                 else
11528                     v++;
11529             }
11530             else {
11531                 if (vend)
11532                     *v++ = 0;
11533                 else
11534                     v++;
11535             }
11536             e *= (NV)0.5;
11537
11538             /* Then extract the remaining hexdigits. */
11539             while (d > (NV)0.0) {
11540                 if (d >= e) {
11541                     ha |= hd;
11542                     d -= e;
11543                 }
11544                 if (hd == 1) {
11545                     /* Output or count in groups of four bits,
11546                      * that is, when the hexdigit is down to one. */
11547                     if (vend)
11548                         *v++ = ha;
11549                     else
11550                         v++;
11551                     /* Reset the hexvalue. */
11552                     ha = 0x0;
11553                     hd = 0x8;
11554                 }
11555                 else
11556                     hd >>= 1;
11557                 e *= (NV)0.5;
11558             }
11559
11560             /* Flush possible pending hexvalue. */
11561             if (ha) {
11562                 if (vend)
11563                     *v++ = ha;
11564                 else
11565                     v++;
11566             }
11567         }
11568 #endif
11569     }
11570     /* Croak for various reasons: if the output pointer escaped the
11571      * output buffer, if the extraction index escaped the extraction
11572      * buffer, or if the ending output pointer didn't match the
11573      * previously computed value. */
11574     if (v <= vhex || v - vhex >= VHEX_SIZE ||
11575         /* For double-double the ixmin and ixmax stay at zero,
11576          * which is convenient since the HEXTRACTSIZE is tricky
11577          * for double-double. */
11578         ixmin < 0 || ixmax >= NVSIZE ||
11579         (vend && v != vend)) {
11580         /* diag_listed_as: Hexadecimal float: internal error (%s) */
11581         Perl_croak(aTHX_ "Hexadecimal float: internal error (overflow)");
11582     }
11583     return v;
11584 }
11585
11586
11587 /* S_format_hexfp(): helper function for Perl_sv_vcatpvfn_flags().
11588  *
11589  * Processes the %a/%A hexadecimal floating-point format, since the
11590  * built-in snprintf()s which are used for most of the f/p formats, don't
11591  * universally handle %a/%A.
11592  * Populates buf of length bufsize, and returns the length of the created
11593  * string.
11594  * The rest of the args have the same meaning as the local vars of the
11595  * same name within Perl_sv_vcatpvfn_flags().
11596  *
11597  * It assumes the caller has already done STORE_LC_NUMERIC_SET_TO_NEEDED();
11598  *
11599  * It requires the caller to make buf large enough.
11600  */
11601
11602 static STRLEN
11603 S_format_hexfp(pTHX_ char * const buf, const STRLEN bufsize, const char c,
11604                     const NV nv, const vcatpvfn_long_double_t fv,
11605                     bool has_precis, STRLEN precis, STRLEN width,
11606                     bool alt, char plus, bool left, bool fill)
11607 {
11608     /* Hexadecimal floating point. */
11609     char* p = buf;
11610     U8 vhex[VHEX_SIZE];
11611     U8* v = vhex; /* working pointer to vhex */
11612     U8* vend; /* pointer to one beyond last digit of vhex */
11613     U8* vfnz = NULL; /* first non-zero */
11614     U8* vlnz = NULL; /* last non-zero */
11615     U8* v0 = NULL; /* first output */
11616     const bool lower = (c == 'a');
11617     /* At output the values of vhex (up to vend) will
11618      * be mapped through the xdig to get the actual
11619      * human-readable xdigits. */
11620     const char* xdig = PL_hexdigit;
11621     STRLEN zerotail = 0; /* how many extra zeros to append */
11622     int exponent = 0; /* exponent of the floating point input */
11623     bool hexradix = FALSE; /* should we output the radix */
11624     bool subnormal = FALSE; /* IEEE 754 subnormal/denormal */
11625     bool negative = FALSE;
11626     STRLEN elen;
11627
11628     /* XXX: NaN, Inf -- though they are printed as "NaN" and "Inf".
11629      *
11630      * For example with denormals, (assuming the vanilla
11631      * 64-bit double): the exponent is zero. 1xp-1074 is
11632      * the smallest denormal and the smallest double, it
11633      * could be output also as 0x0.0000000000001p-1022 to
11634      * match its internal structure. */
11635
11636     vend = S_hextract(aTHX_ nv, &exponent, &subnormal, vhex, NULL);
11637     S_hextract(aTHX_ nv, &exponent, &subnormal, vhex, vend);
11638
11639 #if NVSIZE > DOUBLESIZE
11640 #  ifdef HEXTRACT_HAS_IMPLICIT_BIT
11641     /* In this case there is an implicit bit,
11642      * and therefore the exponent is shifted by one. */
11643     exponent--;
11644 #  elif defined(NV_X86_80_BIT)
11645     if (subnormal) {
11646         /* The subnormals of the x86-80 have a base exponent of -16382,
11647          * (while the physical exponent bits are zero) but the frexp()
11648          * returned the scientific-style floating exponent.  We want
11649          * to map the last one as:
11650          * -16831..-16384 -> -16382 (the last normal is 0x1p-16382)
11651          * -16835..-16388 -> -16384
11652          * since we want to keep the first hexdigit
11653          * as one of the [8421]. */
11654         exponent = -4 * ( (exponent + 1) / -4) - 2;
11655     } else {
11656         exponent -= 4;
11657     }
11658     /* TBD: other non-implicit-bit platforms than the x86-80. */
11659 #  endif
11660 #endif
11661
11662     negative = fv < 0 || Perl_signbit(nv);
11663     if (negative)
11664         *p++ = '-';
11665     else if (plus)
11666         *p++ = plus;
11667     *p++ = '0';
11668     if (lower) {
11669         *p++ = 'x';
11670     }
11671     else {
11672         *p++ = 'X';
11673         xdig += 16; /* Use uppercase hex. */
11674     }
11675
11676     /* Find the first non-zero xdigit. */
11677     for (v = vhex; v < vend; v++) {
11678         if (*v) {
11679             vfnz = v;
11680             break;
11681         }
11682     }
11683
11684     if (vfnz) {
11685         /* Find the last non-zero xdigit. */
11686         for (v = vend - 1; v >= vhex; v--) {
11687             if (*v) {
11688                 vlnz = v;
11689                 break;
11690             }
11691         }
11692
11693 #if NVSIZE == DOUBLESIZE
11694         if (fv != 0.0)
11695             exponent--;
11696 #endif
11697
11698         if (subnormal) {
11699 #ifndef NV_X86_80_BIT
11700           if (vfnz[0] > 1) {
11701             /* IEEE 754 subnormals (but not the x86 80-bit):
11702              * we want "normalize" the subnormal,
11703              * so we need to right shift the hex nybbles
11704              * so that the output of the subnormal starts
11705              * from the first true bit.  (Another, equally
11706              * valid, policy would be to dump the subnormal
11707              * nybbles as-is, to display the "physical" layout.) */
11708             int i, n;
11709             U8 *vshr;
11710             /* Find the ceil(log2(v[0])) of
11711              * the top non-zero nybble. */
11712             for (i = vfnz[0], n = 0; i > 1; i >>= 1, n++) { }
11713             assert(n < 4);
11714             vlnz[1] = 0;
11715             for (vshr = vlnz; vshr >= vfnz; vshr--) {
11716               vshr[1] |= (vshr[0] & (0xF >> (4 - n))) << (4 - n);
11717               vshr[0] >>= n;
11718             }
11719             if (vlnz[1]) {
11720               vlnz++;
11721             }
11722           }
11723 #endif
11724           v0 = vfnz;
11725         } else {
11726           v0 = vhex;
11727         }
11728
11729         if (has_precis) {
11730             U8* ve = (subnormal ? vlnz + 1 : vend);
11731             SSize_t vn = ve - v0;
11732             assert(vn >= 1);
11733             if (precis < (Size_t)(vn - 1)) {
11734                 bool overflow = FALSE;
11735                 if (v0[precis + 1] < 0x8) {
11736                     /* Round down, nothing to do. */
11737                 } else if (v0[precis + 1] > 0x8) {
11738                     /* Round up. */
11739                     v0[precis]++;
11740                     overflow = v0[precis] > 0xF;
11741                     v0[precis] &= 0xF;
11742                 } else { /* v0[precis] == 0x8 */
11743                     /* Half-point: round towards the one
11744                      * with the even least-significant digit:
11745                      * 08 -> 0  88 -> 8
11746                      * 18 -> 2  98 -> a
11747                      * 28 -> 2  a8 -> a
11748                      * 38 -> 4  b8 -> c
11749                      * 48 -> 4  c8 -> c
11750                      * 58 -> 6  d8 -> e
11751                      * 68 -> 6  e8 -> e
11752                      * 78 -> 8  f8 -> 10 */
11753                     if ((v0[precis] & 0x1)) {
11754                         v0[precis]++;
11755                     }
11756                     overflow = v0[precis] > 0xF;
11757                     v0[precis] &= 0xF;
11758                 }
11759
11760                 if (overflow) {
11761                     for (v = v0 + precis - 1; v >= v0; v--) {
11762                         (*v)++;
11763                         overflow = *v > 0xF;
11764                         (*v) &= 0xF;
11765                         if (!overflow) {
11766                             break;
11767                         }
11768                     }
11769                     if (v == v0 - 1 && overflow) {
11770                         /* If the overflow goes all the
11771                          * way to the front, we need to
11772                          * insert 0x1 in front, and adjust
11773                          * the exponent. */
11774                         Move(v0, v0 + 1, vn - 1, char);
11775                         *v0 = 0x1;
11776                         exponent += 4;
11777                     }
11778                 }
11779
11780                 /* The new effective "last non zero". */
11781                 vlnz = v0 + precis;
11782             }
11783             else {
11784                 zerotail =
11785                   subnormal ? precis - vn + 1 :
11786                   precis - (vlnz - vhex);
11787             }
11788         }
11789
11790         v = v0;
11791         *p++ = xdig[*v++];
11792
11793         /* If there are non-zero xdigits, the radix
11794          * is output after the first one. */
11795         if (vfnz < vlnz) {
11796           hexradix = TRUE;
11797         }
11798     }
11799     else {
11800         *p++ = '0';
11801         exponent = 0;
11802         zerotail = precis;
11803     }
11804
11805     /* The radix is always output if precis, or if alt. */
11806     if (precis > 0 || alt) {
11807       hexradix = TRUE;
11808     }
11809
11810     if (hexradix) {
11811 #ifndef USE_LOCALE_NUMERIC
11812             *p++ = '.';
11813 #else
11814             if (PL_numeric_radix_sv && IN_LC(LC_NUMERIC)) {
11815                 STRLEN n;
11816                 const char* r = SvPV(PL_numeric_radix_sv, n);
11817                 Copy(r, p, n, char);
11818                 p += n;
11819             }
11820             else {
11821                 *p++ = '.';
11822             }
11823 #endif
11824     }
11825
11826     if (vlnz) {
11827         while (v <= vlnz)
11828             *p++ = xdig[*v++];
11829     }
11830
11831     if (zerotail > 0) {
11832       while (zerotail--) {
11833         *p++ = '0';
11834       }
11835     }
11836
11837     elen = p - buf;
11838
11839     /* sanity checks */
11840     if (elen >= bufsize || width >= bufsize)
11841         /* diag_listed_as: Hexadecimal float: internal error (%s) */
11842         Perl_croak(aTHX_ "Hexadecimal float: internal error (overflow)");
11843
11844     elen += my_snprintf(p, bufsize - elen,
11845                         "%c%+d", lower ? 'p' : 'P',
11846                         exponent);
11847
11848     if (elen < width) {
11849         STRLEN gap = (STRLEN)(width - elen);
11850         if (left) {
11851             /* Pad the back with spaces. */
11852             memset(buf + elen, ' ', gap);
11853         }
11854         else if (fill) {
11855             /* Insert the zeros after the "0x" and the
11856              * the potential sign, but before the digits,
11857              * otherwise we end up with "0000xH.HHH...",
11858              * when we want "0x000H.HHH..."  */
11859             STRLEN nzero = gap;
11860             char* zerox = buf + 2;
11861             STRLEN nmove = elen - 2;
11862             if (negative || plus) {
11863                 zerox++;
11864                 nmove--;
11865             }
11866             Move(zerox, zerox + nzero, nmove, char);
11867             memset(zerox, fill ? '0' : ' ', nzero);
11868         }
11869         else {
11870             /* Move it to the right. */
11871             Move(buf, buf + gap,
11872                  elen, char);
11873             /* Pad the front with spaces. */
11874             memset(buf, ' ', gap);
11875         }
11876         elen = width;
11877     }
11878     return elen;
11879 }
11880
11881
11882 /*
11883 =for apidoc sv_vcatpvfn
11884
11885 =for apidoc sv_vcatpvfn_flags
11886
11887 Processes its arguments like C<vsprintf> and appends the formatted output
11888 to an SV.  Uses an array of SVs if the C-style variable argument list is
11889 missing (C<NULL>). Argument reordering (using format specifiers like C<%2$d>
11890 or C<%*2$d>) is supported only when using an array of SVs; using a C-style
11891 C<va_list> argument list with a format string that uses argument reordering
11892 will yield an exception.
11893
11894 When running with taint checks enabled, indicates via
11895 C<maybe_tainted> if results are untrustworthy (often due to the use of
11896 locales).
11897
11898 If called as C<sv_vcatpvfn> or flags has the C<SV_GMAGIC> bit set, calls get magic.
11899
11900 It assumes that pat has the same utf8-ness as sv.  It's the caller's
11901 responsibility to ensure that this is so.
11902
11903 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
11904
11905 =cut
11906 */
11907
11908
11909 void
11910 Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
11911                        va_list *const args, SV **const svargs, const Size_t sv_count, bool *const maybe_tainted,
11912                        const U32 flags)
11913 {
11914     const char *fmtstart; /* character following the current '%' */
11915     const char *q;        /* current position within format */
11916     const char *patend;
11917     STRLEN origlen;
11918     Size_t svix = 0;
11919     static const char nullstr[] = "(null)";
11920     SV *argsv = NULL;
11921     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
11922     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
11923     /* Times 4: a decimal digit takes more than 3 binary digits.
11924      * NV_DIG: mantissa takes that many decimal digits.
11925      * Plus 32: Playing safe. */
11926     char ebuf[IV_DIG * 4 + NV_DIG + 32];
11927     bool no_redundant_warning = FALSE; /* did we use any explicit format parameter index? */
11928 #ifdef USE_LOCALE_NUMERIC
11929     DECLARATION_FOR_LC_NUMERIC_MANIPULATION;
11930     bool lc_numeric_set = FALSE; /* called STORE_LC_NUMERIC_SET_TO_NEEDED? */
11931 #endif
11932
11933     PERL_ARGS_ASSERT_SV_VCATPVFN_FLAGS;
11934     PERL_UNUSED_ARG(maybe_tainted);
11935
11936     if (flags & SV_GMAGIC)
11937         SvGETMAGIC(sv);
11938
11939     /* no matter what, this is a string now */
11940     (void)SvPV_force_nomg(sv, origlen);
11941
11942     /* the code that scans for flags etc following a % relies on
11943      * a '\0' being present to avoid falling off the end. Ideally that
11944      * should be fixed */
11945     assert(pat[patlen] == '\0');
11946
11947
11948     /* Special-case "", "%s", "%-p" (SVf - see below) and "%.0f".
11949      * In each case, if there isn't the correct number of args, instead
11950      * fall through to the main code to handle the issuing of any
11951      * warnings etc.
11952      */
11953
11954     if (patlen == 0 && (args || sv_count == 0))
11955         return;
11956
11957     if (patlen <= 4 && pat[0] == '%' && (args || sv_count == 1)) {
11958
11959         /* "%s" */
11960         if (patlen == 2 && pat[1] == 's') {
11961             if (args) {
11962                 const char * const s = va_arg(*args, char*);
11963                 sv_catpv_nomg(sv, s ? s : nullstr);
11964             }
11965             else {
11966                 /* we want get magic on the source but not the target.
11967                  * sv_catsv can't do that, though */
11968                 SvGETMAGIC(*svargs);
11969                 sv_catsv_nomg(sv, *svargs);
11970             }
11971             return;
11972         }
11973
11974         /* "%-p" */
11975         if (args) {
11976             if (patlen == 3  && pat[1] == '-' && pat[2] == 'p') {
11977                 SV *asv = MUTABLE_SV(va_arg(*args, void*));
11978                 sv_catsv_nomg(sv, asv);
11979                 return;
11980             }
11981         }
11982 #if !defined(USE_LONG_DOUBLE) && !defined(USE_QUADMATH)
11983         /* special-case "%.0f" */
11984         else if (   patlen == 4
11985                  && pat[1] == '.' && pat[2] == '0' && pat[3] == 'f')
11986         {
11987             const NV nv = SvNV(*svargs);
11988             if (LIKELY(!Perl_isinfnan(nv))) {
11989                 STRLEN l;
11990                 char *p;
11991
11992                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
11993                     sv_catpvn_nomg(sv, p, l);
11994                     return;
11995                 }
11996             }
11997         }
11998 #endif /* !USE_LONG_DOUBLE */
11999     }
12000
12001
12002     patend = (char*)pat + patlen;
12003     for (fmtstart = pat; fmtstart < patend; fmtstart = q) {
12004         char intsize     = 0;         /* size qualifier in "%hi..." etc */
12005         bool alt         = FALSE;     /* has      "%#..."    */
12006         bool left        = FALSE;     /* has      "%-..."    */
12007         bool fill        = FALSE;     /* has      "%0..."    */
12008         char plus        = 0;         /* has      "%+..."    */
12009         STRLEN width     = 0;         /* value of "%NNN..."  */
12010         bool has_precis  = FALSE;     /* has      "%.NNN..." */
12011         STRLEN precis    = 0;         /* value of "%.NNN..." */
12012         int base         = 0;         /* base to print in, e.g. 8 for %o */
12013         UV uv            = 0;         /* the value to print of int-ish args */
12014
12015         bool vectorize   = FALSE;     /* has      "%v..."    */
12016         bool vec_utf8    = FALSE;     /* SvUTF8(vec arg)     */
12017         const U8 *vecstr = NULL;      /* SvPVX(vec arg)      */
12018         STRLEN veclen    = 0;         /* SvCUR(vec arg)      */
12019         const char *dotstr = NULL;    /* separator string for %v */
12020         STRLEN dotstrlen;             /* length of separator string for %v */
12021
12022         Size_t efix      = 0;         /* explicit format parameter index */
12023         const Size_t osvix  = svix;   /* original index in case of bad fmt */
12024
12025         bool is_utf8     = FALSE;     /* is this item utf8?   */
12026         bool arg_missing = FALSE;     /* give "Missing argument" warning */
12027         char esignbuf[4];             /* holds sign prefix, e.g. "-0x" */
12028         STRLEN esignlen  = 0;         /* length of e.g. "-0x" */
12029         STRLEN zeros     = 0;         /* how many '0' to prepend */
12030
12031         const char *eptr = NULL;      /* the address of the element string */
12032         STRLEN elen      = 0;         /* the length  of the element string */
12033
12034         char c;                       /* the actual format ('d', s' etc) */
12035
12036
12037         /* echo everything up to the next format specification */
12038         for (q = fmtstart; q < patend && *q != '%'; ++q)
12039             {};
12040
12041         if (q > fmtstart) {
12042             if (has_utf8 && !pat_utf8) {
12043                 /* upgrade and copy the bytes of fmtstart..q-1 to utf8 on
12044                  * the fly */
12045                 const char *p;
12046                 char *dst;
12047                 STRLEN need = SvCUR(sv) + (q - fmtstart) + 1;
12048
12049                 for (p = fmtstart; p < q; p++)
12050                     if (!NATIVE_BYTE_IS_INVARIANT(*p))
12051                         need++;
12052                 SvGROW(sv, need);
12053
12054                 dst = SvEND(sv);
12055                 for (p = fmtstart; p < q; p++)
12056                     append_utf8_from_native_byte((U8)*p, (U8**)&dst);
12057                 *dst = '\0';
12058                 SvCUR_set(sv, need - 1);
12059             }
12060             else
12061                 S_sv_catpvn_simple(aTHX_ sv, fmtstart, q - fmtstart);
12062         }
12063         if (q++ >= patend)
12064             break;
12065
12066         fmtstart = q; /* fmtstart is char following the '%' */
12067
12068 /*
12069     We allow format specification elements in this order:
12070         \d+\$              explicit format parameter index
12071         [-+ 0#]+           flags
12072         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
12073         0                  flag (as above): repeated to allow "v02"     
12074         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
12075         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
12076         [hlqLV]            size
12077     [%bcdefginopsuxDFOUX] format (mandatory)
12078 */
12079
12080         if (IS_1_TO_9(*q)) {
12081             width = expect_number(&q);
12082             if (*q == '$') {
12083                 if (args)
12084                     Perl_croak_nocontext(
12085                         "Cannot yet reorder sv_catpvfn() arguments from va_list");
12086                 ++q;
12087                 efix = (Size_t)width;
12088                 width = 0;
12089                 no_redundant_warning = TRUE;
12090             } else {
12091                 goto gotwidth;
12092             }
12093         }
12094
12095         /* FLAGS */
12096
12097         while (*q) {
12098             switch (*q) {
12099             case ' ':
12100             case '+':
12101                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
12102                     q++;
12103                 else
12104                     plus = *q++;
12105                 continue;
12106
12107             case '-':
12108                 left = TRUE;
12109                 q++;
12110                 continue;
12111
12112             case '0':
12113                 fill = TRUE;
12114                 q++;
12115                 continue;
12116
12117             case '#':
12118                 alt = TRUE;
12119                 q++;
12120                 continue;
12121
12122             default:
12123                 break;
12124             }
12125             break;
12126         }
12127
12128       /* at this point we can expect one of:
12129        *
12130        *  123  an explicit width
12131        *  *    width taken from next arg
12132        *  *12$ width taken from 12th arg
12133        *       or no width
12134        *
12135        * But any width specification may be preceded by a v, in one of its
12136        * forms:
12137        *        v
12138        *        *v
12139        *        *12$v
12140        * So an asterisk may be either a width specifier or a vector
12141        * separator arg specifier, and we don't know which initially
12142        */
12143
12144       tryasterisk:
12145         if (*q == '*') {
12146             STRLEN ix; /* explicit width/vector separator index */
12147             q++;
12148             if (IS_1_TO_9(*q)) {
12149                 ix = expect_number(&q);
12150                 if (*q++ == '$') {
12151                     if (args)
12152                         Perl_croak_nocontext(
12153                             "Cannot yet reorder sv_catpvfn() arguments from va_list");
12154                     no_redundant_warning = TRUE;
12155                 } else
12156                     goto unknown;
12157             }
12158             else
12159                 ix = 0;
12160
12161             if (*q == 'v') {
12162                 SV *vecsv;
12163                 /* The asterisk was for  *v, *NNN$v: vectorizing, but not
12164                  * with the default "." */
12165                 q++;
12166                 if (vectorize)
12167                     goto unknown;
12168                 if (args)
12169                     vecsv = va_arg(*args, SV*);
12170                 else {
12171                     ix = ix ? ix - 1 : svix++;
12172                     vecsv = ix < sv_count ? svargs[ix]
12173                                        : (arg_missing = TRUE, &PL_sv_no);
12174                 }
12175                 dotstr = SvPV_const(vecsv, dotstrlen);
12176                 /* Keep the DO_UTF8 test *after* the SvPV call, else things go
12177                    bad with tied or overloaded values that return UTF8.  */
12178                 if (DO_UTF8(vecsv))
12179                     is_utf8 = TRUE;
12180                 else if (has_utf8) {
12181                     vecsv = sv_mortalcopy(vecsv);
12182                     sv_utf8_upgrade(vecsv);
12183                     dotstr = SvPV_const(vecsv, dotstrlen);
12184                     is_utf8 = TRUE;
12185                 }
12186                 vectorize = TRUE;
12187                 goto tryasterisk;
12188             }
12189
12190             /* the asterisk specified a width */
12191             {
12192                 int i = 0;
12193                 SV *sv = NULL;
12194                 if (args)
12195                     i = va_arg(*args, int);
12196                 else {
12197                     ix = ix ? ix - 1 : svix++;
12198                     sv = (ix < sv_count) ? svargs[ix]
12199                                       : (arg_missing = TRUE, (SV*)NULL);
12200                 }
12201                 width = S_sprintf_arg_num_val(aTHX_ args, i, sv, &left);
12202             }
12203         }
12204         else if (*q == 'v') {
12205             q++;
12206             if (vectorize)
12207                 goto unknown;
12208             vectorize = TRUE;
12209             dotstr = ".";
12210             dotstrlen = 1;
12211             goto tryasterisk;
12212
12213         }
12214         else {
12215         /* explicit width? */
12216             if(*q == '0') {
12217                 fill = TRUE;
12218                 q++;
12219             }
12220             if (IS_1_TO_9(*q))
12221                 width = expect_number(&q);
12222         }
12223
12224       gotwidth:
12225
12226         /* PRECISION */
12227
12228         if (*q == '.') {
12229             q++;
12230             if (*q == '*') {
12231                 STRLEN ix; /* explicit precision index */
12232                 q++;
12233                 if (IS_1_TO_9(*q)) {
12234                     ix = expect_number(&q);
12235                     if (*q++ == '$') {
12236                         if (args)
12237                             Perl_croak_nocontext(
12238                                 "Cannot yet reorder sv_catpvfn() arguments from va_list");
12239                         no_redundant_warning = TRUE;
12240                     } else
12241                         goto unknown;
12242                 }
12243                 else
12244                     ix = 0;
12245
12246                 {
12247                     int i = 0;
12248                     SV *sv = NULL;
12249                     bool neg = FALSE;
12250
12251                     if (args)
12252                         i = va_arg(*args, int);
12253                     else {
12254                         ix = ix ? ix - 1 : svix++;
12255                         sv = (ix < sv_count) ? svargs[ix]
12256                                           : (arg_missing = TRUE, (SV*)NULL);
12257                     }
12258                     precis = S_sprintf_arg_num_val(aTHX_ args, i, sv, &neg);
12259                     has_precis = !neg;
12260                 }
12261             }
12262             else {
12263                 /* although it doesn't seem documented, this code has long
12264                  * behaved so that:
12265                  *   no digits following the '.' is treated like '.0'
12266                  *   the number may be preceded by any number of zeroes,
12267                  *      e.g. "%.0001f", which is the same as "%.1f"
12268                  * so I've kept that behaviour. DAPM May 2017
12269                  */
12270                 while (*q == '0')
12271                     q++;
12272                 precis = IS_1_TO_9(*q) ? expect_number(&q) : 0;
12273                 has_precis = TRUE;
12274             }
12275         }
12276
12277         /* SIZE */
12278
12279         switch (*q) {
12280 #ifdef WIN32
12281         case 'I':                       /* Ix, I32x, and I64x */
12282 #  ifdef USE_64_BIT_INT
12283             if (q[1] == '6' && q[2] == '4') {
12284                 q += 3;
12285                 intsize = 'q';
12286                 break;
12287             }
12288 #  endif
12289             if (q[1] == '3' && q[2] == '2') {
12290                 q += 3;
12291                 break;
12292             }
12293 #  ifdef USE_64_BIT_INT
12294             intsize = 'q';
12295 #  endif
12296             q++;
12297             break;
12298 #endif
12299 #if (IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)) || \
12300     (IVSIZE == 4 && !defined(HAS_LONG_DOUBLE))
12301         case 'L':                       /* Ld */
12302             /* FALLTHROUGH */
12303 #  ifdef USE_QUADMATH
12304         case 'Q':
12305             /* FALLTHROUGH */
12306 #  endif
12307 #  if IVSIZE >= 8
12308         case 'q':                       /* qd */
12309 #  endif
12310             intsize = 'q';
12311             q++;
12312             break;
12313 #endif
12314         case 'l':
12315             ++q;
12316 #if (IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)) || \
12317     (IVSIZE == 4 && !defined(HAS_LONG_DOUBLE))
12318             if (*q == 'l') {    /* lld, llf */
12319                 intsize = 'q';
12320                 ++q;
12321             }
12322             else
12323 #endif
12324                 intsize = 'l';
12325             break;
12326         case 'h':
12327             if (*++q == 'h') {  /* hhd, hhu */
12328                 intsize = 'c';
12329                 ++q;
12330             }
12331             else
12332                 intsize = 'h';
12333             break;
12334         case 'V':
12335         case 'z':
12336         case 't':
12337 #ifdef I_STDINT
12338         case 'j':
12339 #endif
12340             intsize = *q++;
12341             break;
12342         }
12343
12344         /* CONVERSION */
12345
12346         c = *q++; /* c now holds the conversion type */
12347
12348         /* '%' doesn't have an arg, so skip arg processing */
12349         if (c == '%') {
12350             eptr = q - 1;
12351             elen = 1;
12352             if (vectorize)
12353                 goto unknown;
12354             goto string;
12355         }
12356
12357         if (vectorize && !strchr("BbDdiOouUXx", c))
12358             goto unknown;
12359
12360         /* get next arg (individual branches do their own va_arg()
12361          * handling for the args case) */
12362
12363         if (!args) {
12364             efix = efix ? efix - 1 : svix++;
12365             argsv = efix < sv_count ? svargs[efix]
12366                                  : (arg_missing = TRUE, &PL_sv_no);
12367         }
12368
12369
12370         switch (c) {
12371
12372             /* STRINGS */
12373
12374         case 's':
12375             if (args) {
12376                 eptr = va_arg(*args, char*);
12377                 if (eptr)
12378                     if (has_precis)
12379                         elen = my_strnlen(eptr, precis);
12380                     else
12381                         elen = strlen(eptr);
12382                 else {
12383                     eptr = (char *)nullstr;
12384                     elen = sizeof nullstr - 1;
12385                 }
12386             }
12387             else {
12388                 eptr = SvPV_const(argsv, elen);
12389                 if (DO_UTF8(argsv)) {
12390                     STRLEN old_precis = precis;
12391                     if (has_precis && precis < elen) {
12392                         STRLEN ulen = sv_or_pv_len_utf8(argsv, eptr, elen);
12393                         STRLEN p = precis > ulen ? ulen : precis;
12394                         precis = sv_or_pv_pos_u2b(argsv, eptr, p, 0);
12395                                                         /* sticks at end */
12396                     }
12397                     if (width) { /* fudge width (can't fudge elen) */
12398                         if (has_precis && precis < elen)
12399                             width += precis - old_precis;
12400                         else
12401                             width +=
12402                                 elen - sv_or_pv_len_utf8(argsv,eptr,elen);
12403                     }
12404                     is_utf8 = TRUE;
12405                 }
12406             }
12407
12408         string:
12409             if (has_precis && precis < elen)
12410                 elen = precis;
12411             break;
12412
12413             /* INTEGERS */
12414
12415         case 'p':
12416             if (alt)
12417                 goto unknown;
12418
12419             /* %p extensions:
12420              *
12421              * "%...p" is normally treated like "%...x", except that the
12422              * number to print is the SV's address (or a pointer address
12423              * for C-ish sprintf).
12424              *
12425              * However, the C-ish sprintf variant allows a few special
12426              * extensions. These are currently:
12427              *
12428              * %-p       (SVf)  Like %s, but gets the string from an SV*
12429              *                  arg rather than a char* arg.
12430              *                  (This was previously %_).
12431              *
12432              * %-<num>p         Ditto but like %.<num>s (i.e. num is max width)
12433              *
12434              * %2p       (HEKf) Like %s, but using the key string in a HEK
12435              *
12436              * %3p       (HEKf256) Ditto but like %.256s
12437              *
12438              * %d%lu%4p  (UTF8f) A utf8 string. Consumes 3 args:
12439              *                       (cBOOL(utf8), len, string_buf).
12440              *                   It's handled by the "case 'd'" branch
12441              *                   rather than here.
12442              *
12443              * %<num>p   where num is 1 or > 4: reserved for future
12444              *           extensions. Warns, but then is treated as a
12445              *           general %p (print hex address) format.
12446              */
12447
12448             if (   args
12449                 && !intsize
12450                 && !fill
12451                 && !plus
12452                 && !has_precis
12453                     /* not %*p or %*1$p - any width was explicit */
12454                 && q[-2] != '*'
12455                 && q[-2] != '$'
12456             ) {
12457                 if (left) {                     /* %-p (SVf), %-NNNp */
12458                     if (width) {
12459                         precis = width;
12460                         has_precis = TRUE;
12461                     }
12462                     argsv = MUTABLE_SV(va_arg(*args, void*));
12463                     eptr = SvPV_const(argsv, elen);
12464                     if (DO_UTF8(argsv))
12465                         is_utf8 = TRUE;
12466                     width = 0;
12467                     goto string;
12468                 }
12469                 else if (width == 2 || width == 3) {    /* HEKf, HEKf256 */
12470                     HEK * const hek = va_arg(*args, HEK *);
12471                     eptr = HEK_KEY(hek);
12472                     elen = HEK_LEN(hek);
12473                     if (HEK_UTF8(hek))
12474                         is_utf8 = TRUE;
12475                     if (width == 3) {
12476                         precis = 256;
12477                         has_precis = TRUE;
12478                     }
12479                     width = 0;
12480                     goto string;
12481                 }
12482                 else if (width) {
12483                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
12484                          "internal %%<num>p might conflict with future printf extensions");
12485                 }
12486             }
12487
12488             /* treat as normal %...p */
12489
12490             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
12491             base = 16;
12492             goto do_integer;
12493
12494         case 'c':
12495             /* Ignore any size specifiers, since they're not documented as
12496              * being allowed for %c (ideally we should warn on e.g. '%hc').
12497              * Setting a default intsize, along with a positive
12498              * (which signals unsigned) base, causes, for C-ish use, the
12499              * va_arg to be interpreted as as unsigned int, when it's
12500              * actually signed, which will convert -ve values to high +ve
12501              * values. Note that unlike the libc %c, values > 255 will
12502              * convert to high unicode points rather than being truncated
12503              * to 8 bits. For perlish use, it will do SvUV(argsv), which
12504              * will again convert -ve args to high -ve values.
12505              */
12506             intsize = 0;
12507             base = 1; /* special value that indicates we're doing a 'c' */
12508             goto get_int_arg_val;
12509
12510         case 'D':
12511 #ifdef IV_IS_QUAD
12512             intsize = 'q';
12513 #else
12514             intsize = 'l';
12515 #endif
12516             base = -10;
12517             goto get_int_arg_val;
12518
12519         case 'd':
12520             /* probably just a plain %d, but it might be the start of the
12521              * special UTF8f format, which usually looks something like
12522              * "%d%lu%4p" (the lu may vary by platform)
12523              */
12524             assert((UTF8f)[0] == 'd');
12525             assert((UTF8f)[1] == '%');
12526
12527              if (   args              /* UTF8f only valid for C-ish sprintf */
12528                  && q == fmtstart + 1 /* plain %d, not %....d */
12529                  && patend >= fmtstart + sizeof(UTF8f) - 1 /* long enough */
12530                  && *q == '%'
12531                  && strnEQ(q + 1, UTF8f + 2, sizeof(UTF8f) - 3))
12532             {
12533                 /* The argument has already gone through cBOOL, so the cast
12534                    is safe. */
12535                 is_utf8 = (bool)va_arg(*args, int);
12536                 elen = va_arg(*args, UV);
12537                 /* if utf8 length is larger than 0x7ffff..., then it might
12538                  * have been a signed value that wrapped */
12539                 if (elen  > ((~(STRLEN)0) >> 1)) {
12540                     assert(0); /* in DEBUGGING build we want to crash */
12541                     elen = 0; /* otherwise we want to treat this as an empty string */
12542                 }
12543                 eptr = va_arg(*args, char *);
12544                 q += sizeof(UTF8f) - 2;
12545                 goto string;
12546             }
12547
12548             /* FALLTHROUGH */
12549         case 'i':
12550             base = -10;
12551             goto get_int_arg_val;
12552
12553         case 'U':
12554 #ifdef IV_IS_QUAD
12555             intsize = 'q';
12556 #else
12557             intsize = 'l';
12558 #endif
12559             /* FALLTHROUGH */
12560         case 'u':
12561             base = 10;
12562             goto get_int_arg_val;
12563
12564         case 'B':
12565         case 'b':
12566             base = 2;
12567             goto get_int_arg_val;
12568
12569         case 'O':
12570 #ifdef IV_IS_QUAD
12571             intsize = 'q';
12572 #else
12573             intsize = 'l';
12574 #endif
12575             /* FALLTHROUGH */
12576         case 'o':
12577             base = 8;
12578             goto get_int_arg_val;
12579
12580         case 'X':
12581         case 'x':
12582             base = 16;
12583
12584           get_int_arg_val:
12585
12586             if (vectorize) {
12587                 STRLEN ulen;
12588                 SV *vecsv;
12589
12590                 if (base < 0) {
12591                     base = -base;
12592                     if (plus)
12593                          esignbuf[esignlen++] = plus;
12594                 }
12595
12596                 /* initialise the vector string to iterate over */
12597
12598                 vecsv = args ? va_arg(*args, SV*) : argsv;
12599
12600                 /* if this is a version object, we need to convert
12601                  * back into v-string notation and then let the
12602                  * vectorize happen normally
12603                  */
12604                 if (sv_isobject(vecsv) && sv_derived_from(vecsv, "version")) {
12605                     if ( hv_existss(MUTABLE_HV(SvRV(vecsv)), "alpha") ) {
12606                         Perl_ck_warner_d(aTHX_ packWARN(WARN_PRINTF),
12607                         "vector argument not supported with alpha versions");
12608                         vecsv = &PL_sv_no;
12609                     }
12610                     else {
12611                         vecstr = (U8*)SvPV_const(vecsv,veclen);
12612                         vecsv = sv_newmortal();
12613                         scan_vstring((char *)vecstr, (char *)vecstr + veclen,
12614                                      vecsv);
12615                     }
12616                 }
12617                 vecstr = (U8*)SvPV_const(vecsv, veclen);
12618                 vec_utf8 = DO_UTF8(vecsv);
12619
12620               /* This is the re-entry point for when we're iterating
12621                * over the individual characters of a vector arg */
12622               vector:
12623                 if (!veclen)
12624                     goto done_valid_conversion;
12625                 if (vec_utf8)
12626                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
12627                                         UTF8_ALLOW_ANYUV);
12628                 else {
12629                     uv = *vecstr;
12630                     ulen = 1;
12631                 }
12632                 vecstr += ulen;
12633                 veclen -= ulen;
12634             }
12635             else {
12636                 /* test arg for inf/nan. This can trigger an unwanted
12637                  * 'str' overload, so manually force 'num' overload first
12638                  * if necessary */
12639                 if (argsv) {
12640                     SvGETMAGIC(argsv);
12641                     if (UNLIKELY(SvAMAGIC(argsv)))
12642                         argsv = sv_2num(argsv);
12643                     if (UNLIKELY(isinfnansv(argsv)))
12644                         goto handle_infnan_argsv;
12645                 }
12646
12647                 if (base < 0) {
12648                     /* signed int type */
12649                     IV iv;
12650                     base = -base;
12651                     if (args) {
12652                         switch (intsize) {
12653                         case 'c':  iv = (char)va_arg(*args, int);  break;
12654                         case 'h':  iv = (short)va_arg(*args, int); break;
12655                         case 'l':  iv = va_arg(*args, long);       break;
12656                         case 'V':  iv = va_arg(*args, IV);         break;
12657                         case 'z':  iv = va_arg(*args, SSize_t);    break;
12658 #ifdef HAS_PTRDIFF_T
12659                         case 't':  iv = va_arg(*args, ptrdiff_t);  break;
12660 #endif
12661                         default:   iv = va_arg(*args, int);        break;
12662 #ifdef I_STDINT
12663                         case 'j':  iv = va_arg(*args, intmax_t);   break;
12664 #endif
12665                         case 'q':
12666 #if IVSIZE >= 8
12667                                    iv = va_arg(*args, Quad_t);     break;
12668 #else
12669                                    goto unknown;
12670 #endif
12671                         }
12672                     }
12673                     else {
12674                         /* assign to tiv then cast to iv to work around
12675                          * 2003 GCC cast bug (gnu.org bugzilla #13488) */
12676                         IV tiv = SvIV_nomg(argsv);
12677                         switch (intsize) {
12678                         case 'c':  iv = (char)tiv;   break;
12679                         case 'h':  iv = (short)tiv;  break;
12680                         case 'l':  iv = (long)tiv;   break;
12681                         case 'V':
12682                         default:   iv = tiv;         break;
12683                         case 'q':
12684 #if IVSIZE >= 8
12685                                    iv = (Quad_t)tiv; break;
12686 #else
12687                                    goto unknown;
12688 #endif
12689                         }
12690                     }
12691
12692                     /* now convert iv to uv */
12693                     if (iv >= 0) {
12694                         uv = iv;
12695                         if (plus)
12696                             esignbuf[esignlen++] = plus;
12697                     }
12698                     else {
12699                         uv = (iv == IV_MIN) ? (UV)iv : (UV)(-iv);
12700                         esignbuf[esignlen++] = '-';
12701                     }
12702                 }
12703                 else {
12704                     /* unsigned int type */
12705                     if (args) {
12706                         switch (intsize) {
12707                         case 'c': uv = (unsigned char)va_arg(*args, unsigned);
12708                                   break;
12709                         case 'h': uv = (unsigned short)va_arg(*args, unsigned);
12710                                   break;
12711                         case 'l': uv = va_arg(*args, unsigned long); break;
12712                         case 'V': uv = va_arg(*args, UV);            break;
12713                         case 'z': uv = va_arg(*args, Size_t);        break;
12714 #ifdef HAS_PTRDIFF_T
12715                                   /* will sign extend, but there is no
12716                                    * uptrdiff_t, so oh well */
12717                         case 't': uv = va_arg(*args, ptrdiff_t);     break;
12718 #endif
12719 #ifdef I_STDINT
12720                         case 'j': uv = va_arg(*args, uintmax_t);     break;
12721 #endif
12722                         default:  uv = va_arg(*args, unsigned);      break;
12723                         case 'q':
12724 #if IVSIZE >= 8
12725                                   uv = va_arg(*args, Uquad_t);       break;
12726 #else
12727                                   goto unknown;
12728 #endif
12729                         }
12730                     }
12731                     else {
12732                         /* assign to tiv then cast to iv to work around
12733                          * 2003 GCC cast bug (gnu.org bugzilla #13488) */
12734                         UV tuv = SvUV_nomg(argsv);
12735                         switch (intsize) {
12736                         case 'c': uv = (unsigned char)tuv;  break;
12737                         case 'h': uv = (unsigned short)tuv; break;
12738                         case 'l': uv = (unsigned long)tuv;  break;
12739                         case 'V':
12740                         default:  uv = tuv;                 break;
12741                         case 'q':
12742 #if IVSIZE >= 8
12743                                   uv = (Uquad_t)tuv;        break;
12744 #else
12745                                   goto unknown;
12746 #endif
12747                         }
12748                     }
12749                 }
12750             }
12751
12752         do_integer:
12753             {
12754                 char *ptr = ebuf + sizeof ebuf;
12755                 unsigned dig;
12756                 zeros = 0;
12757
12758                 switch (base) {
12759                 case 16:
12760                     {
12761                     const char * const p =
12762                             (c == 'X') ? PL_hexdigit + 16 : PL_hexdigit;
12763
12764                         do {
12765                             dig = uv & 15;
12766                             *--ptr = p[dig];
12767                         } while (uv >>= 4);
12768                         if (alt && *ptr != '0') {
12769                             esignbuf[esignlen++] = '0';
12770                             esignbuf[esignlen++] = c;  /* 'x' or 'X' */
12771                         }
12772                         break;
12773                     }
12774                 case 8:
12775                     do {
12776                         dig = uv & 7;
12777                         *--ptr = '0' + dig;
12778                     } while (uv >>= 3);
12779                     if (alt && *ptr != '0')
12780                         *--ptr = '0';
12781                     break;
12782                 case 2:
12783                     do {
12784                         dig = uv & 1;
12785                         *--ptr = '0' + dig;
12786                     } while (uv >>= 1);
12787                     if (alt && *ptr != '0') {
12788                         esignbuf[esignlen++] = '0';
12789                         esignbuf[esignlen++] = c; /* 'b' or 'B' */
12790                     }
12791                     break;
12792
12793                 case 1:
12794                     /* special-case: base 1 indicates a 'c' format:
12795                      * we use the common code for extracting a uv,
12796                      * but handle that value differently here than
12797                      * all the other int types */
12798                     if ((uv > 255 ||
12799                          (!UVCHR_IS_INVARIANT(uv) && SvUTF8(sv)))
12800                         && !IN_BYTES)
12801                     {
12802                         assert(sizeof(ebuf) >= UTF8_MAXBYTES + 1);
12803                         eptr = ebuf;
12804                         elen = uvchr_to_utf8((U8*)eptr, uv) - (U8*)ebuf;
12805                         is_utf8 = TRUE;
12806                     }
12807                     else {
12808                         eptr = ebuf;
12809                         ebuf[0] = (char)uv;
12810                         elen = 1;
12811                     }
12812                     goto string;
12813
12814                 default:                /* it had better be ten or less */
12815                     do {
12816                         dig = uv % base;
12817                         *--ptr = '0' + dig;
12818                     } while (uv /= base);
12819                     break;
12820                 }
12821                 elen = (ebuf + sizeof ebuf) - ptr;
12822                 eptr = ptr;
12823                 if (has_precis) {
12824                     if (precis > elen)
12825                         zeros = precis - elen;
12826                     else if (precis == 0 && elen == 1 && *eptr == '0'
12827                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
12828                         elen = 0;
12829
12830                     /* a precision nullifies the 0 flag. */
12831                     fill = FALSE;
12832                 }
12833             }
12834             break;
12835
12836             /* FLOATING POINT */
12837
12838         case 'F':
12839             c = 'f';            /* maybe %F isn't supported here */
12840             /* FALLTHROUGH */
12841         case 'e': case 'E':
12842         case 'f':
12843         case 'g': case 'G':
12844         case 'a': case 'A':
12845
12846         {
12847             STRLEN float_need; /* what PL_efloatsize needs to become */
12848             bool hexfp;        /* hexadecimal floating point? */
12849
12850             vcatpvfn_long_double_t fv;
12851             NV                     nv;
12852
12853             /* This is evil, but floating point is even more evil */
12854
12855             /* for SV-style calling, we can only get NV
12856                for C-style calling, we assume %f is double;
12857                for simplicity we allow any of %Lf, %llf, %qf for long double
12858             */
12859             switch (intsize) {
12860             case 'V':
12861 #if defined(USE_LONG_DOUBLE) || defined(USE_QUADMATH)
12862                 intsize = 'q';
12863 #endif
12864                 break;
12865 /* [perl #20339] - we should accept and ignore %lf rather than die */
12866             case 'l':
12867                 /* FALLTHROUGH */
12868             default:
12869 #if defined(USE_LONG_DOUBLE) || defined(USE_QUADMATH)
12870                 intsize = args ? 0 : 'q';
12871 #endif
12872                 break;
12873             case 'q':
12874 #if defined(HAS_LONG_DOUBLE)
12875                 break;
12876 #else
12877                 /* FALLTHROUGH */
12878 #endif
12879             case 'c':
12880             case 'h':
12881             case 'z':
12882             case 't':
12883             case 'j':
12884                 goto unknown;
12885             }
12886
12887             /* Now we need (long double) if intsize == 'q', else (double). */
12888             if (args) {
12889                 /* Note: do not pull NVs off the va_list with va_arg()
12890                  * (pull doubles instead) because if you have a build
12891                  * with long doubles, you would always be pulling long
12892                  * doubles, which would badly break anyone using only
12893                  * doubles (i.e. the majority of builds). In other
12894                  * words, you cannot mix doubles and long doubles.
12895                  * The only case where you can pull off long doubles
12896                  * is when the format specifier explicitly asks so with
12897                  * e.g. "%Lg". */
12898 #ifdef USE_QUADMATH
12899                 fv = intsize == 'q' ?
12900                     va_arg(*args, NV) : va_arg(*args, double);
12901                 nv = fv;
12902 #elif LONG_DOUBLESIZE > DOUBLESIZE
12903                 if (intsize == 'q') {
12904                     fv = va_arg(*args, long double);
12905                     nv = fv;
12906                 } else {
12907                     nv = va_arg(*args, double);
12908                     VCATPVFN_NV_TO_FV(nv, fv);
12909                 }
12910 #else
12911                 nv = va_arg(*args, double);
12912                 fv = nv;
12913 #endif
12914             }
12915             else
12916             {
12917                 SvGETMAGIC(argsv);
12918                 /* we jump here if an int-ish format encountered an
12919                  * infinite/Nan argsv. After setting nv/fv, it falls
12920                  * into the isinfnan block which follows */
12921               handle_infnan_argsv:
12922                 nv = SvNV_nomg(argsv);
12923                 VCATPVFN_NV_TO_FV(nv, fv);
12924             }
12925
12926             if (Perl_isinfnan(nv)) {
12927                 if (c == 'c')
12928                     Perl_croak(aTHX_ "Cannot printf %" NVgf " with '%c'",
12929                            SvNV_nomg(argsv), (int)c);
12930
12931                 elen = S_infnan_2pv(nv, ebuf, sizeof(ebuf), plus);
12932                 assert(elen);
12933                 eptr = ebuf;
12934                 zeros     = 0;
12935                 esignlen  = 0;
12936                 dotstrlen = 0;
12937                 break;
12938             }
12939
12940             /* special-case "%.0f" */
12941             if (   c == 'f'
12942                 && !precis
12943                 && has_precis
12944                 && !(width || left || plus || alt)
12945                 && !fill
12946                 && intsize != 'q'
12947                 && ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
12948             )
12949                 goto float_concat;
12950
12951             /* Determine the buffer size needed for the various
12952              * floating-point formats.
12953              *
12954              * The basic possibilities are:
12955              *
12956              *               <---P--->
12957              *    %f 1111111.123456789
12958              *    %e       1.111111123e+06
12959              *    %a     0x1.0f4471f9bp+20
12960              *    %g        1111111.12
12961              *    %g        1.11111112e+15
12962              *
12963              * where P is the value of the precision in the format, or 6
12964              * if not specified. Note the two possible output formats of
12965              * %g; in both cases the number of significant digits is <=
12966              * precision.
12967              *
12968              * For most of the format types the maximum buffer size needed
12969              * is precision, plus: any leading 1 or 0x1, the radix
12970              * point, and an exponent.  The difficult one is %f: for a
12971              * large positive exponent it can have many leading digits,
12972              * which needs to be calculated specially. Also %a is slightly
12973              * different in that in the absence of a specified precision,
12974              * it uses as many digits as necessary to distinguish
12975              * different values.
12976              *
12977              * First, here are the constant bits. For ease of calculation
12978              * we over-estimate the needed buffer size, for example by
12979              * assuming all formats have an exponent and a leading 0x1.
12980              *
12981              * Also for production use, add a little extra overhead for
12982              * safety's sake. Under debugging don't, as it means we're
12983              * more likely to quickly spot issues during development.
12984              */
12985
12986             float_need =     1  /* possible unary minus */
12987                           +  4  /* "0x1" plus very unlikely carry */
12988                           +  1  /* default radix point '.' */
12989                           +  2  /* "e-", "p+" etc */
12990                           +  6  /* exponent: up to 16383 (quad fp) */
12991 #ifndef DEBUGGING
12992                           + 20  /* safety net */
12993 #endif
12994                           +  1; /* \0 */
12995
12996
12997             /* determine the radix point len, e.g. length(".") in "1.2" */
12998 #ifdef USE_LOCALE_NUMERIC
12999             /* note that we may either explicitly use PL_numeric_radix_sv
13000              * below, or implicitly, via an snprintf() variant.
13001              * Note also things like ps_AF.utf8 which has
13002              * "\N{ARABIC DECIMAL SEPARATOR} as a radix point */
13003             if (!lc_numeric_set) {
13004                 /* only set once and reuse in-locale value on subsequent
13005                  * iterations.
13006                  * XXX what happens if we die in an eval?
13007                  */
13008                 STORE_LC_NUMERIC_SET_TO_NEEDED();
13009                 lc_numeric_set = TRUE;
13010             }
13011
13012             if (PL_numeric_radix_sv && IN_LC(LC_NUMERIC)) {
13013                 /* this can't wrap unless PL_numeric_radix_sv is a string
13014                  * consuming virtually all the 32-bit or 64-bit address
13015                  * space
13016                  */
13017                 float_need += (SvCUR(PL_numeric_radix_sv) - 1);
13018
13019                 /* floating-point formats only get utf8 if the radix point
13020                  * is utf8. All other characters in the string are < 128
13021                  * and so can be safely appended to both a non-utf8 and utf8
13022                  * string as-is.
13023                  * Note that this will convert the output to utf8 even if
13024                  * the radix point didn't get output.
13025                  */
13026                 if (SvUTF8(PL_numeric_radix_sv) && !has_utf8) {
13027                     sv_utf8_upgrade(sv);
13028                     has_utf8 = TRUE;
13029                 }
13030             }
13031 #endif
13032
13033             hexfp = FALSE;
13034
13035             if (isALPHA_FOLD_EQ(c, 'f')) {
13036                 /* Determine how many digits before the radix point
13037                  * might be emitted.  frexp() (or frexpl) has some
13038                  * unspecified behaviour for nan/inf/-inf, so lucky we've
13039                  * already handled them above */
13040                 STRLEN digits;
13041                 int i = PERL_INT_MIN;
13042                 (void)Perl_frexp((NV)fv, &i);
13043                 if (i == PERL_INT_MIN)
13044                     Perl_die(aTHX_ "panic: frexp: %" VCATPVFN_FV_GF, fv);
13045
13046                 if (i > 0) {
13047                     digits = BIT_DIGITS(i);
13048                     /* this can't overflow. 'digits' will only be a few
13049                      * thousand even for the largest floating-point types.
13050                      * And up until now float_need is just some small
13051                      * constants plus radix len, which can't be in
13052                      * overflow territory unless the radix SV is consuming
13053                      * over 1/2 the address space */
13054                     assert(float_need < ((STRLEN)~0) - digits);
13055                     float_need += digits;
13056                 }
13057             }
13058             else if (UNLIKELY(isALPHA_FOLD_EQ(c, 'a'))) {
13059                 hexfp = TRUE;
13060                 if (!has_precis) {
13061                     /* %a in the absence of precision may print as many
13062                      * digits as needed to represent the entire mantissa
13063                      * bit pattern.
13064                      * This estimate seriously overshoots in most cases,
13065                      * but better the undershooting.  Firstly, all bytes
13066                      * of the NV are not mantissa, some of them are
13067                      * exponent.  Secondly, for the reasonably common
13068                      * long doubles case, the "80-bit extended", two
13069                      * or six bytes of the NV are unused. Also, we'll
13070                      * still pick up an extra +6 from the default
13071                      * precision calculation below. */
13072                     STRLEN digits =
13073 #ifdef LONGDOUBLE_DOUBLEDOUBLE
13074                         /* For the "double double", we need more.
13075                          * Since each double has their own exponent, the
13076                          * doubles may float (haha) rather far from each
13077                          * other, and the number of required bits is much
13078                          * larger, up to total of DOUBLEDOUBLE_MAXBITS bits.
13079                          * See the definition of DOUBLEDOUBLE_MAXBITS.
13080                          *
13081                          * Need 2 hexdigits for each byte. */
13082                         (DOUBLEDOUBLE_MAXBITS/8 + 1) * 2;
13083 #else
13084                         NVSIZE * 2; /* 2 hexdigits for each byte */
13085 #endif
13086                     /* see "this can't overflow" comment above */
13087                     assert(float_need < ((STRLEN)~0) - digits);
13088                     float_need += digits;
13089                 }
13090             }
13091             /* special-case "%.<number>g" if it will fit in ebuf */
13092             else if (c == 'g'
13093                 && precis   /* See earlier comment about buggy Gconvert
13094                                when digits, aka precis, is 0  */
13095                 && has_precis
13096                 /* check, in manner not involving wrapping, that it will
13097                  * fit in ebuf  */
13098                 && float_need < sizeof(ebuf)
13099                 && sizeof(ebuf) - float_need > precis
13100                 && !(width || left || plus || alt)
13101                 && !fill
13102                 && intsize != 'q'
13103             ) {
13104                 SNPRINTF_G(fv, ebuf, sizeof(ebuf), precis);
13105                 elen = strlen(ebuf);
13106                 eptr = ebuf;
13107                 goto float_concat;
13108             }
13109
13110
13111             {
13112                 STRLEN pr = has_precis ? precis : 6; /* known default */
13113                 /* this probably can't wrap, since precis is limited
13114                  * to 1/4 address space size, but better safe than sorry
13115                  */
13116                 if (float_need >= ((STRLEN)~0) - pr)
13117                     croak_memory_wrap();
13118                 float_need += pr;
13119             }
13120
13121             if (float_need < width)
13122                 float_need = width;
13123
13124             if (PL_efloatsize <= float_need) {
13125                 /* PL_efloatbuf should be at least 1 greater than
13126                  * float_need to allow a trailing \0 to be returned by
13127                  * snprintf().  If we need to grow, overgrow for the
13128                  * benefit of future generations */
13129                 const STRLEN extra = 0x20;
13130                 if (float_need >= ((STRLEN)~0) - extra)
13131                     croak_memory_wrap();
13132                 float_need += extra;
13133                 Safefree(PL_efloatbuf);
13134                 PL_efloatsize = float_need;
13135                 Newx(PL_efloatbuf, PL_efloatsize, char);
13136                 PL_efloatbuf[0] = '\0';
13137             }
13138
13139             if (UNLIKELY(hexfp)) {
13140                 elen = S_format_hexfp(aTHX_ PL_efloatbuf, PL_efloatsize, c,
13141                                 nv, fv, has_precis, precis, width,
13142                                 alt, plus, left, fill);
13143             }
13144             else {
13145                 char *ptr = ebuf + sizeof ebuf;
13146                 *--ptr = '\0';
13147                 *--ptr = c;
13148 #if defined(USE_QUADMATH)
13149                 if (intsize == 'q') {
13150                     /* "g" -> "Qg" */
13151                     *--ptr = 'Q';
13152                 }
13153                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
13154 #elif defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
13155                 /* Note that this is HAS_LONG_DOUBLE and PERL_PRIfldbl,
13156                  * not USE_LONG_DOUBLE and NVff.  In other words,
13157                  * this needs to work without USE_LONG_DOUBLE. */
13158                 if (intsize == 'q') {
13159                     /* Copy the one or more characters in a long double
13160                      * format before the 'base' ([efgEFG]) character to
13161                      * the format string. */
13162                     static char const ldblf[] = PERL_PRIfldbl;
13163                     char const *p = ldblf + sizeof(ldblf) - 3;
13164                     while (p >= ldblf) { *--ptr = *p--; }
13165                 }
13166 #endif
13167                 if (has_precis) {
13168                     base = precis;
13169                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
13170                     *--ptr = '.';
13171                 }
13172                 if (width) {
13173                     base = width;
13174                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
13175                 }
13176                 if (fill)
13177                     *--ptr = '0';
13178                 if (left)
13179                     *--ptr = '-';
13180                 if (plus)
13181                     *--ptr = plus;
13182                 if (alt)
13183                     *--ptr = '#';
13184                 *--ptr = '%';
13185
13186                 /* No taint.  Otherwise we are in the strange situation
13187                  * where printf() taints but print($float) doesn't.
13188                  * --jhi */
13189
13190                 /* hopefully the above makes ptr a very constrained format
13191                  * that is safe to use, even though it's not literal */
13192                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
13193 #ifdef USE_QUADMATH
13194                 {
13195                     const char* qfmt = quadmath_format_single(ptr);
13196                     if (!qfmt)
13197                         Perl_croak_nocontext("panic: quadmath invalid format \"%s\"", ptr);
13198                     elen = quadmath_snprintf(PL_efloatbuf, PL_efloatsize,
13199                                              qfmt, nv);
13200                     if ((IV)elen == -1) {
13201                         if (qfmt != ptr)
13202                             SAVEFREEPV(qfmt);
13203                         Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s\"", qfmt);
13204                     }
13205                     if (qfmt != ptr)
13206                         Safefree(qfmt);
13207                 }
13208 #elif defined(HAS_LONG_DOUBLE)
13209                 elen = ((intsize == 'q')
13210                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, fv)
13211                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)fv));
13212 #else
13213                 elen = my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, fv);
13214 #endif
13215                 GCC_DIAG_RESTORE;
13216             }
13217
13218             eptr = PL_efloatbuf;
13219
13220           float_concat:
13221
13222             /* Since floating-point formats do their own formatting and
13223              * padding, we skip the main block of code at the end of this
13224              * loop which handles appending eptr to sv, and do our own
13225              * stripped-down version */
13226
13227             assert(!zeros);
13228             assert(!esignlen);
13229             assert(elen);
13230             assert(elen >= width);
13231
13232             S_sv_catpvn_simple(aTHX_ sv, eptr, elen);
13233
13234             goto done_valid_conversion;
13235         }
13236
13237             /* SPECIAL */
13238
13239         case 'n':
13240             {
13241                 STRLEN len;
13242                 /* XXX ideally we should warn if any flags etc have been
13243                  * set, e.g. "%-4.5n" */
13244                 /* XXX if sv was originally non-utf8 with a char in the
13245                  * range 0x80-0xff, then if it got upgraded, we should
13246                  * calculate char len rather than byte len here */
13247                 len = SvCUR(sv) - origlen;
13248                 if (args) {
13249                     int i = (len > PERL_INT_MAX) ? PERL_INT_MAX : (int)len;
13250
13251                     switch (intsize) {
13252                     case 'c':  *(va_arg(*args, char*))      = i; break;
13253                     case 'h':  *(va_arg(*args, short*))     = i; break;
13254                     default:   *(va_arg(*args, int*))       = i; break;
13255                     case 'l':  *(va_arg(*args, long*))      = i; break;
13256                     case 'V':  *(va_arg(*args, IV*))        = i; break;
13257                     case 'z':  *(va_arg(*args, SSize_t*))   = i; break;
13258 #ifdef HAS_PTRDIFF_T
13259                     case 't':  *(va_arg(*args, ptrdiff_t*)) = i; break;
13260 #endif
13261 #ifdef I_STDINT
13262                     case 'j':  *(va_arg(*args, intmax_t*))  = i; break;
13263 #endif
13264                     case 'q':
13265 #if IVSIZE >= 8
13266                                *(va_arg(*args, Quad_t*))    = i; break;
13267 #else
13268                                goto unknown;
13269 #endif
13270                     }
13271                 }
13272                 else {
13273                     if (arg_missing)
13274                         Perl_croak_nocontext(
13275                             "Missing argument for %%n in %s",
13276                                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
13277                     sv_setuv_mg(argsv, has_utf8 ? (UV)sv_len_utf8(sv) : (UV)len);
13278                 }
13279                 goto done_valid_conversion;
13280             }
13281
13282             /* UNKNOWN */
13283
13284         default:
13285       unknown:
13286             if (!args
13287                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
13288                 && ckWARN(WARN_PRINTF))
13289             {
13290                 SV * const msg = sv_newmortal();
13291                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
13292                           (PL_op->op_type == OP_PRTF) ? "" : "s");
13293                 if (fmtstart < patend) {
13294                     const char * const fmtend = q < patend ? q : patend;
13295                     const char * f;
13296                     sv_catpvs(msg, "\"%");
13297                     for (f = fmtstart; f < fmtend; f++) {
13298                         if (isPRINT(*f)) {
13299                             sv_catpvn_nomg(msg, f, 1);
13300                         } else {
13301                             Perl_sv_catpvf(aTHX_ msg,
13302                                            "\\%03" UVof, (UV)*f & 0xFF);
13303                         }
13304                     }
13305                     sv_catpvs(msg, "\"");
13306                 } else {
13307                     sv_catpvs(msg, "end of string");
13308                 }
13309                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%" SVf, SVfARG(msg)); /* yes, this is reentrant */
13310             }
13311
13312             /* mangled format: output the '%', then continue from the
13313              * character following that */
13314             sv_catpvn_nomg(sv, fmtstart-1, 1);
13315             q = fmtstart;
13316             svix = osvix;
13317             /* Any "redundant arg" warning from now onwards will probably
13318              * just be misleading, so don't bother. */
13319             no_redundant_warning = TRUE;
13320             continue;   /* not "break" */
13321         }
13322
13323         if (is_utf8 != has_utf8) {
13324             if (is_utf8) {
13325                 if (SvCUR(sv))
13326                     sv_utf8_upgrade(sv);
13327             }
13328             else {
13329                 const STRLEN old_elen = elen;
13330                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
13331                 sv_utf8_upgrade(nsv);
13332                 eptr = SvPVX_const(nsv);
13333                 elen = SvCUR(nsv);
13334
13335                 if (width) { /* fudge width (can't fudge elen) */
13336                     width += elen - old_elen;
13337                 }
13338                 is_utf8 = TRUE;
13339             }
13340         }
13341
13342
13343         /* append esignbuf, filler, zeros, eptr and dotstr to sv */
13344
13345         {
13346             STRLEN need, have, gap;
13347             STRLEN i;
13348             char *s;
13349
13350             /* signed value that's wrapped? */
13351             assert(elen  <= ((~(STRLEN)0) >> 1));
13352
13353             /* if zeros is non-zero, then it represents filler between
13354              * elen and precis. So adding elen and zeros together will
13355              * always be <= precis, and the addition can never wrap */
13356             assert(!zeros || (precis > elen && precis - elen == zeros));
13357             have = elen + zeros;
13358
13359             if (have >= (((STRLEN)~0) - esignlen))
13360                 croak_memory_wrap();
13361             have += esignlen;
13362
13363             need = (have > width ? have : width);
13364             gap = need - have;
13365
13366             if (need >= (((STRLEN)~0) - (SvCUR(sv) + 1)))
13367                 croak_memory_wrap();
13368             need += (SvCUR(sv) + 1);
13369
13370             SvGROW(sv, need);
13371
13372             s = SvEND(sv);
13373
13374             if (left) {
13375                 for (i = 0; i < esignlen; i++)
13376                     *s++ = esignbuf[i];
13377                 for (i = zeros; i; i--)
13378                     *s++ = '0';
13379                 Copy(eptr, s, elen, char);
13380                 s += elen;
13381                 for (i = gap; i; i--)
13382                     *s++ = ' ';
13383             }
13384             else {
13385                 if (fill) {
13386                     for (i = 0; i < esignlen; i++)
13387                         *s++ = esignbuf[i];
13388                     assert(!zeros);
13389                     zeros = gap;
13390                 }
13391                 else {
13392                     for (i = gap; i; i--)
13393                         *s++ = ' ';
13394                     for (i = 0; i < esignlen; i++)
13395                         *s++ = esignbuf[i];
13396                 }
13397
13398                 for (i = zeros; i; i--)
13399                     *s++ = '0';
13400                 Copy(eptr, s, elen, char);
13401                 s += elen;
13402             }
13403
13404             *s = '\0';
13405             SvCUR_set(sv, s - SvPVX_const(sv));
13406
13407             if (is_utf8)
13408                 has_utf8 = TRUE;
13409             if (has_utf8)
13410                 SvUTF8_on(sv);
13411         }
13412
13413         if (vectorize && veclen) {
13414             /* we append the vector separator separately since %v isn't
13415              * very common: don't slow down the general case by adding
13416              * dotstrlen to need etc */
13417             sv_catpvn_nomg(sv, dotstr, dotstrlen);
13418             esignlen = 0;
13419             goto vector; /* do next iteration */
13420         }
13421
13422       done_valid_conversion:
13423
13424         if (arg_missing)
13425             S_warn_vcatpvfn_missing_argument(aTHX);
13426     }
13427
13428     /* Now that we've consumed all our printf format arguments (svix)
13429      * do we have things left on the stack that we didn't use?
13430      */
13431     if (!no_redundant_warning && sv_count >= svix + 1 && ckWARN(WARN_REDUNDANT)) {
13432         Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
13433                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
13434     }
13435
13436     SvTAINT(sv);
13437
13438     RESTORE_LC_NUMERIC();   /* Done outside loop, so don't have to save/restore
13439                                each iteration. */
13440 }
13441
13442 /* =========================================================================
13443
13444 =head1 Cloning an interpreter
13445
13446 =cut
13447
13448 All the macros and functions in this section are for the private use of
13449 the main function, perl_clone().
13450
13451 The foo_dup() functions make an exact copy of an existing foo thingy.
13452 During the course of a cloning, a hash table is used to map old addresses
13453 to new addresses.  The table is created and manipulated with the
13454 ptr_table_* functions.
13455
13456  * =========================================================================*/
13457
13458
13459 #if defined(USE_ITHREADS)
13460
13461 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
13462 #ifndef GpREFCNT_inc
13463 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
13464 #endif
13465
13466
13467 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
13468    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
13469    If this changes, please unmerge ss_dup.
13470    Likewise, sv_dup_inc_multiple() relies on this fact.  */
13471 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
13472 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
13473 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
13474 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
13475 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
13476 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
13477 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
13478 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
13479 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
13480 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
13481 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
13482 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
13483 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
13484
13485 /* clone a parser */
13486
13487 yy_parser *
13488 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
13489 {
13490     yy_parser *parser;
13491
13492     PERL_ARGS_ASSERT_PARSER_DUP;
13493
13494     if (!proto)
13495         return NULL;
13496
13497     /* look for it in the table first */
13498     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
13499     if (parser)
13500         return parser;
13501
13502     /* create anew and remember what it is */
13503     Newxz(parser, 1, yy_parser);
13504     ptr_table_store(PL_ptr_table, proto, parser);
13505
13506     /* XXX eventually, just Copy() most of the parser struct ? */
13507
13508     parser->lex_brackets = proto->lex_brackets;
13509     parser->lex_casemods = proto->lex_casemods;
13510     parser->lex_brackstack = savepvn(proto->lex_brackstack,
13511                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
13512     parser->lex_casestack = savepvn(proto->lex_casestack,
13513                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
13514     parser->lex_defer   = proto->lex_defer;
13515     parser->lex_dojoin  = proto->lex_dojoin;
13516     parser->lex_formbrack = proto->lex_formbrack;
13517     parser->lex_inpat   = proto->lex_inpat;
13518     parser->lex_inwhat  = proto->lex_inwhat;
13519     parser->lex_op      = proto->lex_op;
13520     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
13521     parser->lex_starts  = proto->lex_starts;
13522     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
13523     parser->multi_close = proto->multi_close;
13524     parser->multi_open  = proto->multi_open;
13525     parser->multi_start = proto->multi_start;
13526     parser->multi_end   = proto->multi_end;
13527     parser->preambled   = proto->preambled;
13528     parser->lex_super_state = proto->lex_super_state;
13529     parser->lex_sub_inwhat  = proto->lex_sub_inwhat;
13530     parser->lex_sub_op  = proto->lex_sub_op;
13531     parser->lex_sub_repl= sv_dup_inc(proto->lex_sub_repl, param);
13532     parser->linestr     = sv_dup_inc(proto->linestr, param);
13533     parser->expect      = proto->expect;
13534     parser->copline     = proto->copline;
13535     parser->last_lop_op = proto->last_lop_op;
13536     parser->lex_state   = proto->lex_state;
13537     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
13538     /* rsfp_filters entries have fake IoDIRP() */
13539     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
13540     parser->in_my       = proto->in_my;
13541     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
13542     parser->error_count = proto->error_count;
13543     parser->sig_elems   = proto->sig_elems;
13544     parser->sig_optelems= proto->sig_optelems;
13545     parser->sig_slurpy  = proto->sig_slurpy;
13546     parser->recheck_utf8_validity = proto->recheck_utf8_validity;
13547
13548     {
13549         char * const ols = SvPVX(proto->linestr);
13550         char * const ls  = SvPVX(parser->linestr);
13551
13552         parser->bufptr      = ls + (proto->bufptr >= ols ?
13553                                     proto->bufptr -  ols : 0);
13554         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
13555                                     proto->oldbufptr -  ols : 0);
13556         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
13557                                     proto->oldoldbufptr -  ols : 0);
13558         parser->linestart   = ls + (proto->linestart >= ols ?
13559                                     proto->linestart -  ols : 0);
13560         parser->last_uni    = ls + (proto->last_uni >= ols ?
13561                                     proto->last_uni -  ols : 0);
13562         parser->last_lop    = ls + (proto->last_lop >= ols ?
13563                                     proto->last_lop -  ols : 0);
13564
13565         parser->bufend      = ls + SvCUR(parser->linestr);
13566     }
13567
13568     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
13569
13570
13571     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
13572     Copy(proto->nexttype, parser->nexttype, 5,  I32);
13573     parser->nexttoke    = proto->nexttoke;
13574
13575     /* XXX should clone saved_curcop here, but we aren't passed
13576      * proto_perl; so do it in perl_clone_using instead */
13577
13578     return parser;
13579 }
13580
13581
13582 /* duplicate a file handle */
13583
13584 PerlIO *
13585 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
13586 {
13587     PerlIO *ret;
13588
13589     PERL_ARGS_ASSERT_FP_DUP;
13590     PERL_UNUSED_ARG(type);
13591
13592     if (!fp)
13593         return (PerlIO*)NULL;
13594
13595     /* look for it in the table first */
13596     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
13597     if (ret)
13598         return ret;
13599
13600     /* create anew and remember what it is */
13601 #ifdef __amigaos4__
13602     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE|PERLIO_DUP_FD);
13603 #else
13604     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
13605 #endif
13606     ptr_table_store(PL_ptr_table, fp, ret);
13607     return ret;
13608 }
13609
13610 /* duplicate a directory handle */
13611
13612 DIR *
13613 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
13614 {
13615     DIR *ret;
13616
13617 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
13618     DIR *pwd;
13619     const Direntry_t *dirent;
13620     char smallbuf[256]; /* XXX MAXPATHLEN, surely? */
13621     char *name = NULL;
13622     STRLEN len = 0;
13623     long pos;
13624 #endif
13625
13626     PERL_UNUSED_CONTEXT;
13627     PERL_ARGS_ASSERT_DIRP_DUP;
13628
13629     if (!dp)
13630         return (DIR*)NULL;
13631
13632     /* look for it in the table first */
13633     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
13634     if (ret)
13635         return ret;
13636
13637 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
13638
13639     PERL_UNUSED_ARG(param);
13640
13641     /* create anew */
13642
13643     /* open the current directory (so we can switch back) */
13644     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
13645
13646     /* chdir to our dir handle and open the present working directory */
13647     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
13648         PerlDir_close(pwd);
13649         return (DIR *)NULL;
13650     }
13651     /* Now we should have two dir handles pointing to the same dir. */
13652
13653     /* Be nice to the calling code and chdir back to where we were. */
13654     /* XXX If this fails, then what? */
13655     PERL_UNUSED_RESULT(fchdir(my_dirfd(pwd)));
13656
13657     /* We have no need of the pwd handle any more. */
13658     PerlDir_close(pwd);
13659
13660 #ifdef DIRNAMLEN
13661 # define d_namlen(d) (d)->d_namlen
13662 #else
13663 # define d_namlen(d) strlen((d)->d_name)
13664 #endif
13665     /* Iterate once through dp, to get the file name at the current posi-
13666        tion. Then step back. */
13667     pos = PerlDir_tell(dp);
13668     if ((dirent = PerlDir_read(dp))) {
13669         len = d_namlen(dirent);
13670         if (len > sizeof(dirent->d_name) && sizeof(dirent->d_name) > PTRSIZE) {
13671             /* If the len is somehow magically longer than the
13672              * maximum length of the directory entry, even though
13673              * we could fit it in a buffer, we could not copy it
13674              * from the dirent.  Bail out. */
13675             PerlDir_close(ret);
13676             return (DIR*)NULL;
13677         }
13678         if (len <= sizeof smallbuf) name = smallbuf;
13679         else Newx(name, len, char);
13680         Move(dirent->d_name, name, len, char);
13681     }
13682     PerlDir_seek(dp, pos);
13683
13684     /* Iterate through the new dir handle, till we find a file with the
13685        right name. */
13686     if (!dirent) /* just before the end */
13687         for(;;) {
13688             pos = PerlDir_tell(ret);
13689             if (PerlDir_read(ret)) continue; /* not there yet */
13690             PerlDir_seek(ret, pos); /* step back */
13691             break;
13692         }
13693     else {
13694         const long pos0 = PerlDir_tell(ret);
13695         for(;;) {
13696             pos = PerlDir_tell(ret);
13697             if ((dirent = PerlDir_read(ret))) {
13698                 if (len == (STRLEN)d_namlen(dirent)
13699                     && memEQ(name, dirent->d_name, len)) {
13700                     /* found it */
13701                     PerlDir_seek(ret, pos); /* step back */
13702                     break;
13703                 }
13704                 /* else we are not there yet; keep iterating */
13705             }
13706             else { /* This is not meant to happen. The best we can do is
13707                       reset the iterator to the beginning. */
13708                 PerlDir_seek(ret, pos0);
13709                 break;
13710             }
13711         }
13712     }
13713 #undef d_namlen
13714
13715     if (name && name != smallbuf)
13716         Safefree(name);
13717 #endif
13718
13719 #ifdef WIN32
13720     ret = win32_dirp_dup(dp, param);
13721 #endif
13722
13723     /* pop it in the pointer table */
13724     if (ret)
13725         ptr_table_store(PL_ptr_table, dp, ret);
13726
13727     return ret;
13728 }
13729
13730 /* duplicate a typeglob */
13731
13732 GP *
13733 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
13734 {
13735     GP *ret;
13736
13737     PERL_ARGS_ASSERT_GP_DUP;
13738
13739     if (!gp)
13740         return (GP*)NULL;
13741     /* look for it in the table first */
13742     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
13743     if (ret)
13744         return ret;
13745
13746     /* create anew and remember what it is */
13747     Newxz(ret, 1, GP);
13748     ptr_table_store(PL_ptr_table, gp, ret);
13749
13750     /* clone */
13751     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
13752        on Newxz() to do this for us.  */
13753     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
13754     ret->gp_io          = io_dup_inc(gp->gp_io, param);
13755     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
13756     ret->gp_av          = av_dup_inc(gp->gp_av, param);
13757     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
13758     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
13759     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
13760     ret->gp_cvgen       = gp->gp_cvgen;
13761     ret->gp_line        = gp->gp_line;
13762     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
13763     return ret;
13764 }
13765
13766 /* duplicate a chain of magic */
13767
13768 MAGIC *
13769 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
13770 {
13771     MAGIC *mgret = NULL;
13772     MAGIC **mgprev_p = &mgret;
13773
13774     PERL_ARGS_ASSERT_MG_DUP;
13775
13776     for (; mg; mg = mg->mg_moremagic) {
13777         MAGIC *nmg;
13778
13779         if ((param->flags & CLONEf_JOIN_IN)
13780                 && mg->mg_type == PERL_MAGIC_backref)
13781             /* when joining, we let the individual SVs add themselves to
13782              * backref as needed. */
13783             continue;
13784
13785         Newx(nmg, 1, MAGIC);
13786         *mgprev_p = nmg;
13787         mgprev_p = &(nmg->mg_moremagic);
13788
13789         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
13790            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
13791            from the original commit adding Perl_mg_dup() - revision 4538.
13792            Similarly there is the annotation "XXX random ptr?" next to the
13793            assignment to nmg->mg_ptr.  */
13794         *nmg = *mg;
13795
13796         /* FIXME for plugins
13797         if (nmg->mg_type == PERL_MAGIC_qr) {
13798             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
13799         }
13800         else
13801         */
13802         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
13803                           ? nmg->mg_type == PERL_MAGIC_backref
13804                                 /* The backref AV has its reference
13805                                  * count deliberately bumped by 1 */
13806                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
13807                                                     nmg->mg_obj, param))
13808                                 : sv_dup_inc(nmg->mg_obj, param)
13809                           : (nmg->mg_type == PERL_MAGIC_regdatum ||
13810                              nmg->mg_type == PERL_MAGIC_regdata)
13811                                   ? nmg->mg_obj
13812                                   : sv_dup(nmg->mg_obj, param);
13813
13814         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
13815             if (nmg->mg_len > 0) {
13816                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
13817                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
13818                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
13819                 {
13820                     AMT * const namtp = (AMT*)nmg->mg_ptr;
13821                     sv_dup_inc_multiple((SV**)(namtp->table),
13822                                         (SV**)(namtp->table), NofAMmeth, param);
13823                 }
13824             }
13825             else if (nmg->mg_len == HEf_SVKEY)
13826                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
13827         }
13828         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
13829             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
13830         }
13831     }
13832     return mgret;
13833 }
13834
13835 #endif /* USE_ITHREADS */
13836
13837 struct ptr_tbl_arena {
13838     struct ptr_tbl_arena *next;
13839     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
13840 };
13841
13842 /* create a new pointer-mapping table */
13843
13844 PTR_TBL_t *
13845 Perl_ptr_table_new(pTHX)
13846 {
13847     PTR_TBL_t *tbl;
13848     PERL_UNUSED_CONTEXT;
13849
13850     Newx(tbl, 1, PTR_TBL_t);
13851     tbl->tbl_max        = 511;
13852     tbl->tbl_items      = 0;
13853     tbl->tbl_arena      = NULL;
13854     tbl->tbl_arena_next = NULL;
13855     tbl->tbl_arena_end  = NULL;
13856     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
13857     return tbl;
13858 }
13859
13860 #define PTR_TABLE_HASH(ptr) \
13861   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
13862
13863 /* map an existing pointer using a table */
13864
13865 STATIC PTR_TBL_ENT_t *
13866 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
13867 {
13868     PTR_TBL_ENT_t *tblent;
13869     const UV hash = PTR_TABLE_HASH(sv);
13870
13871     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
13872
13873     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
13874     for (; tblent; tblent = tblent->next) {
13875         if (tblent->oldval == sv)
13876             return tblent;
13877     }
13878     return NULL;
13879 }
13880
13881 void *
13882 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
13883 {
13884     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
13885
13886     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
13887     PERL_UNUSED_CONTEXT;
13888
13889     return tblent ? tblent->newval : NULL;
13890 }
13891
13892 /* add a new entry to a pointer-mapping table 'tbl'.  In hash terms, 'oldsv' is
13893  * the key; 'newsv' is the value.  The names "old" and "new" are specific to
13894  * the core's typical use of ptr_tables in thread cloning. */
13895
13896 void
13897 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
13898 {
13899     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
13900
13901     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
13902     PERL_UNUSED_CONTEXT;
13903
13904     if (tblent) {
13905         tblent->newval = newsv;
13906     } else {
13907         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
13908
13909         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
13910             struct ptr_tbl_arena *new_arena;
13911
13912             Newx(new_arena, 1, struct ptr_tbl_arena);
13913             new_arena->next = tbl->tbl_arena;
13914             tbl->tbl_arena = new_arena;
13915             tbl->tbl_arena_next = new_arena->array;
13916             tbl->tbl_arena_end = C_ARRAY_END(new_arena->array);
13917         }
13918
13919         tblent = tbl->tbl_arena_next++;
13920
13921         tblent->oldval = oldsv;
13922         tblent->newval = newsv;
13923         tblent->next = tbl->tbl_ary[entry];
13924         tbl->tbl_ary[entry] = tblent;
13925         tbl->tbl_items++;
13926         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
13927             ptr_table_split(tbl);
13928     }
13929 }
13930
13931 /* double the hash bucket size of an existing ptr table */
13932
13933 void
13934 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
13935 {
13936     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
13937     const UV oldsize = tbl->tbl_max + 1;
13938     UV newsize = oldsize * 2;
13939     UV i;
13940
13941     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
13942     PERL_UNUSED_CONTEXT;
13943
13944     Renew(ary, newsize, PTR_TBL_ENT_t*);
13945     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
13946     tbl->tbl_max = --newsize;
13947     tbl->tbl_ary = ary;
13948     for (i=0; i < oldsize; i++, ary++) {
13949         PTR_TBL_ENT_t **entp = ary;
13950         PTR_TBL_ENT_t *ent = *ary;
13951         PTR_TBL_ENT_t **curentp;
13952         if (!ent)
13953             continue;
13954         curentp = ary + oldsize;
13955         do {
13956             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
13957                 *entp = ent->next;
13958                 ent->next = *curentp;
13959                 *curentp = ent;
13960             }
13961             else
13962                 entp = &ent->next;
13963             ent = *entp;
13964         } while (ent);
13965     }
13966 }
13967
13968 /* remove all the entries from a ptr table */
13969 /* Deprecated - will be removed post 5.14 */
13970
13971 void
13972 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
13973 {
13974     PERL_UNUSED_CONTEXT;
13975     if (tbl && tbl->tbl_items) {
13976         struct ptr_tbl_arena *arena = tbl->tbl_arena;
13977
13978         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent *);
13979
13980         while (arena) {
13981             struct ptr_tbl_arena *next = arena->next;
13982
13983             Safefree(arena);
13984             arena = next;
13985         };
13986
13987         tbl->tbl_items = 0;
13988         tbl->tbl_arena = NULL;
13989         tbl->tbl_arena_next = NULL;
13990         tbl->tbl_arena_end = NULL;
13991     }
13992 }
13993
13994 /* clear and free a ptr table */
13995
13996 void
13997 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
13998 {
13999     struct ptr_tbl_arena *arena;
14000
14001     PERL_UNUSED_CONTEXT;
14002
14003     if (!tbl) {
14004         return;
14005     }
14006
14007     arena = tbl->tbl_arena;
14008
14009     while (arena) {
14010         struct ptr_tbl_arena *next = arena->next;
14011
14012         Safefree(arena);
14013         arena = next;
14014     }
14015
14016     Safefree(tbl->tbl_ary);
14017     Safefree(tbl);
14018 }
14019
14020 #if defined(USE_ITHREADS)
14021
14022 void
14023 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
14024 {
14025     PERL_ARGS_ASSERT_RVPV_DUP;
14026
14027     assert(!isREGEXP(sstr));
14028     if (SvROK(sstr)) {
14029         if (SvWEAKREF(sstr)) {
14030             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
14031             if (param->flags & CLONEf_JOIN_IN) {
14032                 /* if joining, we add any back references individually rather
14033                  * than copying the whole backref array */
14034                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
14035             }
14036         }
14037         else
14038             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
14039     }
14040     else if (SvPVX_const(sstr)) {
14041         /* Has something there */
14042         if (SvLEN(sstr)) {
14043             /* Normal PV - clone whole allocated space */
14044             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
14045             /* sstr may not be that normal, but actually copy on write.
14046                But we are a true, independent SV, so:  */
14047             SvIsCOW_off(dstr);
14048         }
14049         else {
14050             /* Special case - not normally malloced for some reason */
14051             if (isGV_with_GP(sstr)) {
14052                 /* Don't need to do anything here.  */
14053             }
14054             else if ((SvIsCOW(sstr))) {
14055                 /* A "shared" PV - clone it as "shared" PV */
14056                 SvPV_set(dstr,
14057                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
14058                                          param)));
14059             }
14060             else {
14061                 /* Some other special case - random pointer */
14062                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
14063             }
14064         }
14065     }
14066     else {
14067         /* Copy the NULL */
14068         SvPV_set(dstr, NULL);
14069     }
14070 }
14071
14072 /* duplicate a list of SVs. source and dest may point to the same memory.  */
14073 static SV **
14074 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
14075                       SSize_t items, CLONE_PARAMS *const param)
14076 {
14077     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
14078
14079     while (items-- > 0) {
14080         *dest++ = sv_dup_inc(*source++, param);
14081     }
14082
14083     return dest;
14084 }
14085
14086 /* duplicate an SV of any type (including AV, HV etc) */
14087
14088 static SV *
14089 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
14090 {
14091     dVAR;
14092     SV *dstr;
14093
14094     PERL_ARGS_ASSERT_SV_DUP_COMMON;
14095
14096     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
14097 #ifdef DEBUG_LEAKING_SCALARS_ABORT
14098         abort();
14099 #endif
14100         return NULL;
14101     }
14102     /* look for it in the table first */
14103     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
14104     if (dstr)
14105         return dstr;
14106
14107     if(param->flags & CLONEf_JOIN_IN) {
14108         /** We are joining here so we don't want do clone
14109             something that is bad **/
14110         if (SvTYPE(sstr) == SVt_PVHV) {
14111             const HEK * const hvname = HvNAME_HEK(sstr);
14112             if (hvname) {
14113                 /** don't clone stashes if they already exist **/
14114                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
14115                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
14116                 ptr_table_store(PL_ptr_table, sstr, dstr);
14117                 return dstr;
14118             }
14119         }
14120         else if (SvTYPE(sstr) == SVt_PVGV && !SvFAKE(sstr)) {
14121             HV *stash = GvSTASH(sstr);
14122             const HEK * hvname;
14123             if (stash && (hvname = HvNAME_HEK(stash))) {
14124                 /** don't clone GVs if they already exist **/
14125                 SV **svp;
14126                 stash = gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
14127                                     HEK_UTF8(hvname) ? SVf_UTF8 : 0);
14128                 svp = hv_fetch(
14129                         stash, GvNAME(sstr),
14130                         GvNAMEUTF8(sstr)
14131                             ? -GvNAMELEN(sstr)
14132                             :  GvNAMELEN(sstr),
14133                         0
14134                       );
14135                 if (svp && *svp && SvTYPE(*svp) == SVt_PVGV) {
14136                     ptr_table_store(PL_ptr_table, sstr, *svp);
14137                     return *svp;
14138                 }
14139             }
14140         }
14141     }
14142
14143     /* create anew and remember what it is */
14144     new_SV(dstr);
14145
14146 #ifdef DEBUG_LEAKING_SCALARS
14147     dstr->sv_debug_optype = sstr->sv_debug_optype;
14148     dstr->sv_debug_line = sstr->sv_debug_line;
14149     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
14150     dstr->sv_debug_parent = (SV*)sstr;
14151     FREE_SV_DEBUG_FILE(dstr);
14152     dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
14153 #endif
14154
14155     ptr_table_store(PL_ptr_table, sstr, dstr);
14156
14157     /* clone */
14158     SvFLAGS(dstr)       = SvFLAGS(sstr);
14159     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
14160     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
14161
14162 #ifdef DEBUGGING
14163     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
14164         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
14165                       (void*)PL_watch_pvx, SvPVX_const(sstr));
14166 #endif
14167
14168     /* don't clone objects whose class has asked us not to */
14169     if (SvOBJECT(sstr)
14170      && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE))
14171     {
14172         SvFLAGS(dstr) = 0;
14173         return dstr;
14174     }
14175
14176     switch (SvTYPE(sstr)) {
14177     case SVt_NULL:
14178         SvANY(dstr)     = NULL;
14179         break;
14180     case SVt_IV:
14181         SET_SVANY_FOR_BODYLESS_IV(dstr);
14182         if(SvROK(sstr)) {
14183             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
14184         } else {
14185             SvIV_set(dstr, SvIVX(sstr));
14186         }
14187         break;
14188     case SVt_NV:
14189 #if NVSIZE <= IVSIZE
14190         SET_SVANY_FOR_BODYLESS_NV(dstr);
14191 #else
14192         SvANY(dstr)     = new_XNV();
14193 #endif
14194         SvNV_set(dstr, SvNVX(sstr));
14195         break;
14196     default:
14197         {
14198             /* These are all the types that need complex bodies allocating.  */
14199             void *new_body;
14200             const svtype sv_type = SvTYPE(sstr);
14201             const struct body_details *const sv_type_details
14202                 = bodies_by_type + sv_type;
14203
14204             switch (sv_type) {
14205             default:
14206                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
14207                 NOT_REACHED; /* NOTREACHED */
14208                 break;
14209
14210             case SVt_PVGV:
14211             case SVt_PVIO:
14212             case SVt_PVFM:
14213             case SVt_PVHV:
14214             case SVt_PVAV:
14215             case SVt_PVCV:
14216             case SVt_PVLV:
14217             case SVt_REGEXP:
14218             case SVt_PVMG:
14219             case SVt_PVNV:
14220             case SVt_PVIV:
14221             case SVt_INVLIST:
14222             case SVt_PV:
14223                 assert(sv_type_details->body_size);
14224                 if (sv_type_details->arena) {
14225                     new_body_inline(new_body, sv_type);
14226                     new_body
14227                         = (void*)((char*)new_body - sv_type_details->offset);
14228                 } else {
14229                     new_body = new_NOARENA(sv_type_details);
14230                 }
14231             }
14232             assert(new_body);
14233             SvANY(dstr) = new_body;
14234
14235 #ifndef PURIFY
14236             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
14237                  ((char*)SvANY(dstr)) + sv_type_details->offset,
14238                  sv_type_details->copy, char);
14239 #else
14240             Copy(((char*)SvANY(sstr)),
14241                  ((char*)SvANY(dstr)),
14242                  sv_type_details->body_size + sv_type_details->offset, char);
14243 #endif
14244
14245             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
14246                 && !isGV_with_GP(dstr)
14247                 && !isREGEXP(dstr)
14248                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
14249                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
14250
14251             /* The Copy above means that all the source (unduplicated) pointers
14252                are now in the destination.  We can check the flags and the
14253                pointers in either, but it's possible that there's less cache
14254                missing by always going for the destination.
14255                FIXME - instrument and check that assumption  */
14256             if (sv_type >= SVt_PVMG) {
14257                 if (SvMAGIC(dstr))
14258                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
14259                 if (SvOBJECT(dstr) && SvSTASH(dstr))
14260                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
14261                 else SvSTASH_set(dstr, 0); /* don't copy DESTROY cache */
14262             }
14263
14264             /* The cast silences a GCC warning about unhandled types.  */
14265             switch ((int)sv_type) {
14266             case SVt_PV:
14267                 break;
14268             case SVt_PVIV:
14269                 break;
14270             case SVt_PVNV:
14271                 break;
14272             case SVt_PVMG:
14273                 break;
14274             case SVt_REGEXP:
14275               duprex:
14276                 /* FIXME for plugins */
14277                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
14278                 break;
14279             case SVt_PVLV:
14280                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
14281                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
14282                     LvTARG(dstr) = dstr;
14283                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
14284                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
14285                 else
14286                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
14287                 if (isREGEXP(sstr)) goto duprex;
14288                 /* FALLTHROUGH */
14289             case SVt_PVGV:
14290                 /* non-GP case already handled above */
14291                 if(isGV_with_GP(sstr)) {
14292                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
14293                     /* Don't call sv_add_backref here as it's going to be
14294                        created as part of the magic cloning of the symbol
14295                        table--unless this is during a join and the stash
14296                        is not actually being cloned.  */
14297                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
14298                        at the point of this comment.  */
14299                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
14300                     if (param->flags & CLONEf_JOIN_IN)
14301                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
14302                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
14303                     (void)GpREFCNT_inc(GvGP(dstr));
14304                 }
14305                 break;
14306             case SVt_PVIO:
14307                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
14308                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
14309                     /* I have no idea why fake dirp (rsfps)
14310                        should be treated differently but otherwise
14311                        we end up with leaks -- sky*/
14312                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
14313                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
14314                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
14315                 } else {
14316                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
14317                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
14318                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
14319                     if (IoDIRP(dstr)) {
14320                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
14321                     } else {
14322                         NOOP;
14323                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
14324                     }
14325                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
14326                 }
14327                 if (IoOFP(dstr) == IoIFP(sstr))
14328                     IoOFP(dstr) = IoIFP(dstr);
14329                 else
14330                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
14331                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
14332                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
14333                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
14334                 break;
14335             case SVt_PVAV:
14336                 /* avoid cloning an empty array */
14337                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
14338                     SV **dst_ary, **src_ary;
14339                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
14340
14341                     src_ary = AvARRAY((const AV *)sstr);
14342                     Newx(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
14343                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
14344                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
14345                     AvALLOC((const AV *)dstr) = dst_ary;
14346                     if (AvREAL((const AV *)sstr)) {
14347                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
14348                                                       param);
14349                     }
14350                     else {
14351                         while (items-- > 0)
14352                             *dst_ary++ = sv_dup(*src_ary++, param);
14353                     }
14354                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
14355                     while (items-- > 0) {
14356                         *dst_ary++ = NULL;
14357                     }
14358                 }
14359                 else {
14360                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
14361                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
14362                     AvMAX(  (const AV *)dstr)   = -1;
14363                     AvFILLp((const AV *)dstr)   = -1;
14364                 }
14365                 break;
14366             case SVt_PVHV:
14367                 if (HvARRAY((const HV *)sstr)) {
14368                     STRLEN i = 0;
14369                     const bool sharekeys = !!HvSHAREKEYS(sstr);
14370                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
14371                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
14372                     char *darray;
14373                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
14374                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
14375                         char);
14376                     HvARRAY(dstr) = (HE**)darray;
14377                     while (i <= sxhv->xhv_max) {
14378                         const HE * const source = HvARRAY(sstr)[i];
14379                         HvARRAY(dstr)[i] = source
14380                             ? he_dup(source, sharekeys, param) : 0;
14381                         ++i;
14382                     }
14383                     if (SvOOK(sstr)) {
14384                         const struct xpvhv_aux * const saux = HvAUX(sstr);
14385                         struct xpvhv_aux * const daux = HvAUX(dstr);
14386                         /* This flag isn't copied.  */
14387                         SvOOK_on(dstr);
14388
14389                         if (saux->xhv_name_count) {
14390                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
14391                             const I32 count
14392                              = saux->xhv_name_count < 0
14393                                 ? -saux->xhv_name_count
14394                                 :  saux->xhv_name_count;
14395                             HEK **shekp = sname + count;
14396                             HEK **dhekp;
14397                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
14398                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
14399                             while (shekp-- > sname) {
14400                                 dhekp--;
14401                                 *dhekp = hek_dup(*shekp, param);
14402                             }
14403                         }
14404                         else {
14405                             daux->xhv_name_u.xhvnameu_name
14406                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
14407                                           param);
14408                         }
14409                         daux->xhv_name_count = saux->xhv_name_count;
14410
14411                         daux->xhv_aux_flags = saux->xhv_aux_flags;
14412 #ifdef PERL_HASH_RANDOMIZE_KEYS
14413                         daux->xhv_rand = saux->xhv_rand;
14414                         daux->xhv_last_rand = saux->xhv_last_rand;
14415 #endif
14416                         daux->xhv_riter = saux->xhv_riter;
14417                         daux->xhv_eiter = saux->xhv_eiter
14418                             ? he_dup(saux->xhv_eiter,
14419                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
14420                         /* backref array needs refcnt=2; see sv_add_backref */
14421                         daux->xhv_backreferences =
14422                             (param->flags & CLONEf_JOIN_IN)
14423                                 /* when joining, we let the individual GVs and
14424                                  * CVs add themselves to backref as
14425                                  * needed. This avoids pulling in stuff
14426                                  * that isn't required, and simplifies the
14427                                  * case where stashes aren't cloned back
14428                                  * if they already exist in the parent
14429                                  * thread */
14430                             ? NULL
14431                             : saux->xhv_backreferences
14432                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
14433                                     ? MUTABLE_AV(SvREFCNT_inc(
14434                                           sv_dup_inc((const SV *)
14435                                             saux->xhv_backreferences, param)))
14436                                     : MUTABLE_AV(sv_dup((const SV *)
14437                                             saux->xhv_backreferences, param))
14438                                 : 0;
14439
14440                         daux->xhv_mro_meta = saux->xhv_mro_meta
14441                             ? mro_meta_dup(saux->xhv_mro_meta, param)
14442                             : 0;
14443
14444                         /* Record stashes for possible cloning in Perl_clone(). */
14445                         if (HvNAME(sstr))
14446                             av_push(param->stashes, dstr);
14447                     }
14448                 }
14449                 else
14450                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
14451                 break;
14452             case SVt_PVCV:
14453                 if (!(param->flags & CLONEf_COPY_STACKS)) {
14454                     CvDEPTH(dstr) = 0;
14455                 }
14456                 /* FALLTHROUGH */
14457             case SVt_PVFM:
14458                 /* NOTE: not refcounted */
14459                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
14460                     hv_dup(CvSTASH(dstr), param);
14461                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
14462                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
14463                 if (!CvISXSUB(dstr)) {
14464                     OP_REFCNT_LOCK;
14465                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
14466                     OP_REFCNT_UNLOCK;
14467                     CvSLABBED_off(dstr);
14468                 } else if (CvCONST(dstr)) {
14469                     CvXSUBANY(dstr).any_ptr =
14470                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
14471                 }
14472                 assert(!CvSLABBED(dstr));
14473                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
14474                 if (CvNAMED(dstr))
14475                     SvANY((CV *)dstr)->xcv_gv_u.xcv_hek =
14476                         hek_dup(CvNAME_HEK((CV *)sstr), param);
14477                 /* don't dup if copying back - CvGV isn't refcounted, so the
14478                  * duped GV may never be freed. A bit of a hack! DAPM */
14479                 else
14480                   SvANY(MUTABLE_CV(dstr))->xcv_gv_u.xcv_gv =
14481                     CvCVGV_RC(dstr)
14482                     ? gv_dup_inc(CvGV(sstr), param)
14483                     : (param->flags & CLONEf_JOIN_IN)
14484                         ? NULL
14485                         : gv_dup(CvGV(sstr), param);
14486
14487                 if (!CvISXSUB(sstr)) {
14488                     PADLIST * padlist = CvPADLIST(sstr);
14489                     if(padlist)
14490                         padlist = padlist_dup(padlist, param);
14491                     CvPADLIST_set(dstr, padlist);
14492                 } else
14493 /* unthreaded perl can't sv_dup so we dont support unthreaded's CvHSCXT */
14494                     PoisonPADLIST(dstr);
14495
14496                 CvOUTSIDE(dstr) =
14497                     CvWEAKOUTSIDE(sstr)
14498                     ? cv_dup(    CvOUTSIDE(dstr), param)
14499                     : cv_dup_inc(CvOUTSIDE(dstr), param);
14500                 break;
14501             }
14502         }
14503     }
14504
14505     return dstr;
14506  }
14507
14508 SV *
14509 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
14510 {
14511     PERL_ARGS_ASSERT_SV_DUP_INC;
14512     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
14513 }
14514
14515 SV *
14516 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
14517 {
14518     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
14519     PERL_ARGS_ASSERT_SV_DUP;
14520
14521     /* Track every SV that (at least initially) had a reference count of 0.
14522        We need to do this by holding an actual reference to it in this array.
14523        If we attempt to cheat, turn AvREAL_off(), and store only pointers
14524        (akin to the stashes hash, and the perl stack), we come unstuck if
14525        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
14526        thread) is manipulated in a CLONE method, because CLONE runs before the
14527        unreferenced array is walked to find SVs still with SvREFCNT() == 0
14528        (and fix things up by giving each a reference via the temps stack).
14529        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
14530        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
14531        before the walk of unreferenced happens and a reference to that is SV
14532        added to the temps stack. At which point we have the same SV considered
14533        to be in use, and free to be re-used. Not good.
14534     */
14535     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
14536         assert(param->unreferenced);
14537         av_push(param->unreferenced, SvREFCNT_inc(dstr));
14538     }
14539
14540     return dstr;
14541 }
14542
14543 /* duplicate a context */
14544
14545 PERL_CONTEXT *
14546 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
14547 {
14548     PERL_CONTEXT *ncxs;
14549
14550     PERL_ARGS_ASSERT_CX_DUP;
14551
14552     if (!cxs)
14553         return (PERL_CONTEXT*)NULL;
14554
14555     /* look for it in the table first */
14556     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
14557     if (ncxs)
14558         return ncxs;
14559
14560     /* create anew and remember what it is */
14561     Newx(ncxs, max + 1, PERL_CONTEXT);
14562     ptr_table_store(PL_ptr_table, cxs, ncxs);
14563     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
14564
14565     while (ix >= 0) {
14566         PERL_CONTEXT * const ncx = &ncxs[ix];
14567         if (CxTYPE(ncx) == CXt_SUBST) {
14568             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
14569         }
14570         else {
14571             ncx->blk_oldcop = (COP*)any_dup(ncx->blk_oldcop, param->proto_perl);
14572             switch (CxTYPE(ncx)) {
14573             case CXt_SUB:
14574                 ncx->blk_sub.cv         = cv_dup_inc(ncx->blk_sub.cv, param);
14575                 if(CxHASARGS(ncx)){
14576                     ncx->blk_sub.savearray = av_dup_inc(ncx->blk_sub.savearray,param);
14577                 } else {
14578                     ncx->blk_sub.savearray = NULL;
14579                 }
14580                 ncx->blk_sub.prevcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
14581                                            ncx->blk_sub.prevcomppad);
14582                 break;
14583             case CXt_EVAL:
14584                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
14585                                                       param);
14586                 /* XXX should this sv_dup_inc? Or only if CxEVAL_TXT_REFCNTED ???? */
14587                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
14588                 ncx->blk_eval.cv = cv_dup(ncx->blk_eval.cv, param);
14589                 /* XXX what do do with cur_top_env ???? */
14590                 break;
14591             case CXt_LOOP_LAZYSV:
14592                 ncx->blk_loop.state_u.lazysv.end
14593                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
14594                 /* Fallthrough: duplicate lazysv.cur by using the ary.ary
14595                    duplication code instead.
14596                    We are taking advantage of (1) av_dup_inc and sv_dup_inc
14597                    actually being the same function, and (2) order
14598                    equivalence of the two unions.
14599                    We can assert the later [but only at run time :-(]  */
14600                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
14601                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
14602                 /* FALLTHROUGH */
14603             case CXt_LOOP_ARY:
14604                 ncx->blk_loop.state_u.ary.ary
14605                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
14606                 /* FALLTHROUGH */
14607             case CXt_LOOP_LIST:
14608             case CXt_LOOP_LAZYIV:
14609                 /* code common to all 'for' CXt_LOOP_* types */
14610                 ncx->blk_loop.itersave =
14611                                     sv_dup_inc(ncx->blk_loop.itersave, param);
14612                 if (CxPADLOOP(ncx)) {
14613                     PADOFFSET off = ncx->blk_loop.itervar_u.svp
14614                                     - &CX_CURPAD_SV(ncx->blk_loop, 0);
14615                     ncx->blk_loop.oldcomppad =
14616                                     (PAD*)ptr_table_fetch(PL_ptr_table,
14617                                                 ncx->blk_loop.oldcomppad);
14618                     ncx->blk_loop.itervar_u.svp =
14619                                     &CX_CURPAD_SV(ncx->blk_loop, off);
14620                 }
14621                 else {
14622                     /* this copies the GV if CXp_FOR_GV, or the SV for an
14623                      * alias (for \$x (...)) - relies on gv_dup being the
14624                      * same as sv_dup */
14625                     ncx->blk_loop.itervar_u.gv
14626                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
14627                                     param);
14628                 }
14629                 break;
14630             case CXt_LOOP_PLAIN:
14631                 break;
14632             case CXt_FORMAT:
14633                 ncx->blk_format.prevcomppad =
14634                         (PAD*)ptr_table_fetch(PL_ptr_table,
14635                                            ncx->blk_format.prevcomppad);
14636                 ncx->blk_format.cv      = cv_dup_inc(ncx->blk_format.cv, param);
14637                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
14638                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
14639                                                      param);
14640                 break;
14641             case CXt_GIVEN:
14642                 ncx->blk_loop.itersave =
14643                                 sv_dup_inc(ncx->blk_loop.itersave, param);
14644                 break;
14645             case CXt_BLOCK:
14646             case CXt_NULL:
14647             case CXt_WHEN:
14648                 break;
14649             }
14650         }
14651         --ix;
14652     }
14653     return ncxs;
14654 }
14655
14656 /* duplicate a stack info structure */
14657
14658 PERL_SI *
14659 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
14660 {
14661     PERL_SI *nsi;
14662
14663     PERL_ARGS_ASSERT_SI_DUP;
14664
14665     if (!si)
14666         return (PERL_SI*)NULL;
14667
14668     /* look for it in the table first */
14669     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
14670     if (nsi)
14671         return nsi;
14672
14673     /* create anew and remember what it is */
14674     Newx(nsi, 1, PERL_SI);
14675     ptr_table_store(PL_ptr_table, si, nsi);
14676
14677     nsi->si_stack       = av_dup_inc(si->si_stack, param);
14678     nsi->si_cxix        = si->si_cxix;
14679     nsi->si_cxmax       = si->si_cxmax;
14680     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
14681     nsi->si_type        = si->si_type;
14682     nsi->si_prev        = si_dup(si->si_prev, param);
14683     nsi->si_next        = si_dup(si->si_next, param);
14684     nsi->si_markoff     = si->si_markoff;
14685 #if defined DEBUGGING && !defined DEBUGGING_RE_ONLY
14686     nsi->si_stack_hwm   = 0;
14687 #endif
14688
14689     return nsi;
14690 }
14691
14692 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
14693 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
14694 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
14695 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
14696 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
14697 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
14698 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
14699 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
14700 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
14701 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
14702 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
14703 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
14704 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
14705 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
14706 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
14707 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
14708
14709 /* XXXXX todo */
14710 #define pv_dup_inc(p)   SAVEPV(p)
14711 #define pv_dup(p)       SAVEPV(p)
14712 #define svp_dup_inc(p,pp)       any_dup(p,pp)
14713
14714 /* map any object to the new equivent - either something in the
14715  * ptr table, or something in the interpreter structure
14716  */
14717
14718 void *
14719 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
14720 {
14721     void *ret;
14722
14723     PERL_ARGS_ASSERT_ANY_DUP;
14724
14725     if (!v)
14726         return (void*)NULL;
14727
14728     /* look for it in the table first */
14729     ret = ptr_table_fetch(PL_ptr_table, v);
14730     if (ret)
14731         return ret;
14732
14733     /* see if it is part of the interpreter structure */
14734     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
14735         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
14736     else {
14737         ret = v;
14738     }
14739
14740     return ret;
14741 }
14742
14743 /* duplicate the save stack */
14744
14745 ANY *
14746 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
14747 {
14748     dVAR;
14749     ANY * const ss      = proto_perl->Isavestack;
14750     const I32 max       = proto_perl->Isavestack_max + SS_MAXPUSH;
14751     I32 ix              = proto_perl->Isavestack_ix;
14752     ANY *nss;
14753     const SV *sv;
14754     const GV *gv;
14755     const AV *av;
14756     const HV *hv;
14757     void* ptr;
14758     int intval;
14759     long longval;
14760     GP *gp;
14761     IV iv;
14762     I32 i;
14763     char *c = NULL;
14764     void (*dptr) (void*);
14765     void (*dxptr) (pTHX_ void*);
14766
14767     PERL_ARGS_ASSERT_SS_DUP;
14768
14769     Newx(nss, max, ANY);
14770
14771     while (ix > 0) {
14772         const UV uv = POPUV(ss,ix);
14773         const U8 type = (U8)uv & SAVE_MASK;
14774
14775         TOPUV(nss,ix) = uv;
14776         switch (type) {
14777         case SAVEt_CLEARSV:
14778         case SAVEt_CLEARPADRANGE:
14779             break;
14780         case SAVEt_HELEM:               /* hash element */
14781         case SAVEt_SV:                  /* scalar reference */
14782             sv = (const SV *)POPPTR(ss,ix);
14783             TOPPTR(nss,ix) = SvREFCNT_inc(sv_dup_inc(sv, param));
14784             /* FALLTHROUGH */
14785         case SAVEt_ITEM:                        /* normal string */
14786         case SAVEt_GVSV:                        /* scalar slot in GV */
14787             sv = (const SV *)POPPTR(ss,ix);
14788             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14789             if (type == SAVEt_SV)
14790                 break;
14791             /* FALLTHROUGH */
14792         case SAVEt_FREESV:
14793         case SAVEt_MORTALIZESV:
14794         case SAVEt_READONLY_OFF:
14795             sv = (const SV *)POPPTR(ss,ix);
14796             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14797             break;
14798         case SAVEt_FREEPADNAME:
14799             ptr = POPPTR(ss,ix);
14800             TOPPTR(nss,ix) = padname_dup((PADNAME *)ptr, param);
14801             PadnameREFCNT((PADNAME *)TOPPTR(nss,ix))++;
14802             break;
14803         case SAVEt_SHARED_PVREF:                /* char* in shared space */
14804             c = (char*)POPPTR(ss,ix);
14805             TOPPTR(nss,ix) = savesharedpv(c);
14806             ptr = POPPTR(ss,ix);
14807             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14808             break;
14809         case SAVEt_GENERIC_SVREF:               /* generic sv */
14810         case SAVEt_SVREF:                       /* scalar reference */
14811             sv = (const SV *)POPPTR(ss,ix);
14812             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14813             if (type == SAVEt_SVREF)
14814                 SvREFCNT_inc_simple_void((SV *)TOPPTR(nss,ix));
14815             ptr = POPPTR(ss,ix);
14816             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
14817             break;
14818         case SAVEt_GVSLOT:              /* any slot in GV */
14819             sv = (const SV *)POPPTR(ss,ix);
14820             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14821             ptr = POPPTR(ss,ix);
14822             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
14823             sv = (const SV *)POPPTR(ss,ix);
14824             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14825             break;
14826         case SAVEt_HV:                          /* hash reference */
14827         case SAVEt_AV:                          /* array reference */
14828             sv = (const SV *) POPPTR(ss,ix);
14829             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14830             /* FALLTHROUGH */
14831         case SAVEt_COMPPAD:
14832         case SAVEt_NSTAB:
14833             sv = (const SV *) POPPTR(ss,ix);
14834             TOPPTR(nss,ix) = sv_dup(sv, param);
14835             break;
14836         case SAVEt_INT:                         /* int reference */
14837             ptr = POPPTR(ss,ix);
14838             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14839             intval = (int)POPINT(ss,ix);
14840             TOPINT(nss,ix) = intval;
14841             break;
14842         case SAVEt_LONG:                        /* long reference */
14843             ptr = POPPTR(ss,ix);
14844             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14845             longval = (long)POPLONG(ss,ix);
14846             TOPLONG(nss,ix) = longval;
14847             break;
14848         case SAVEt_I32:                         /* I32 reference */
14849             ptr = POPPTR(ss,ix);
14850             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14851             i = POPINT(ss,ix);
14852             TOPINT(nss,ix) = i;
14853             break;
14854         case SAVEt_IV:                          /* IV reference */
14855         case SAVEt_STRLEN:                      /* STRLEN/size_t ref */
14856             ptr = POPPTR(ss,ix);
14857             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14858             iv = POPIV(ss,ix);
14859             TOPIV(nss,ix) = iv;
14860             break;
14861         case SAVEt_TMPSFLOOR:
14862             iv = POPIV(ss,ix);
14863             TOPIV(nss,ix) = iv;
14864             break;
14865         case SAVEt_HPTR:                        /* HV* reference */
14866         case SAVEt_APTR:                        /* AV* reference */
14867         case SAVEt_SPTR:                        /* SV* reference */
14868             ptr = POPPTR(ss,ix);
14869             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14870             sv = (const SV *)POPPTR(ss,ix);
14871             TOPPTR(nss,ix) = sv_dup(sv, param);
14872             break;
14873         case SAVEt_VPTR:                        /* random* reference */
14874             ptr = POPPTR(ss,ix);
14875             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14876             /* FALLTHROUGH */
14877         case SAVEt_INT_SMALL:
14878         case SAVEt_I32_SMALL:
14879         case SAVEt_I16:                         /* I16 reference */
14880         case SAVEt_I8:                          /* I8 reference */
14881         case SAVEt_BOOL:
14882             ptr = POPPTR(ss,ix);
14883             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14884             break;
14885         case SAVEt_GENERIC_PVREF:               /* generic char* */
14886         case SAVEt_PPTR:                        /* char* reference */
14887             ptr = POPPTR(ss,ix);
14888             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14889             c = (char*)POPPTR(ss,ix);
14890             TOPPTR(nss,ix) = pv_dup(c);
14891             break;
14892         case SAVEt_GP:                          /* scalar reference */
14893             gp = (GP*)POPPTR(ss,ix);
14894             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
14895             (void)GpREFCNT_inc(gp);
14896             gv = (const GV *)POPPTR(ss,ix);
14897             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
14898             break;
14899         case SAVEt_FREEOP:
14900             ptr = POPPTR(ss,ix);
14901             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
14902                 /* these are assumed to be refcounted properly */
14903                 OP *o;
14904                 switch (((OP*)ptr)->op_type) {
14905                 case OP_LEAVESUB:
14906                 case OP_LEAVESUBLV:
14907                 case OP_LEAVEEVAL:
14908                 case OP_LEAVE:
14909                 case OP_SCOPE:
14910                 case OP_LEAVEWRITE:
14911                     TOPPTR(nss,ix) = ptr;
14912                     o = (OP*)ptr;
14913                     OP_REFCNT_LOCK;
14914                     (void) OpREFCNT_inc(o);
14915                     OP_REFCNT_UNLOCK;
14916                     break;
14917                 default:
14918                     TOPPTR(nss,ix) = NULL;
14919                     break;
14920                 }
14921             }
14922             else
14923                 TOPPTR(nss,ix) = NULL;
14924             break;
14925         case SAVEt_FREECOPHH:
14926             ptr = POPPTR(ss,ix);
14927             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
14928             break;
14929         case SAVEt_ADELETE:
14930             av = (const AV *)POPPTR(ss,ix);
14931             TOPPTR(nss,ix) = av_dup_inc(av, param);
14932             i = POPINT(ss,ix);
14933             TOPINT(nss,ix) = i;
14934             break;
14935         case SAVEt_DELETE:
14936             hv = (const HV *)POPPTR(ss,ix);
14937             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
14938             i = POPINT(ss,ix);
14939             TOPINT(nss,ix) = i;
14940             /* FALLTHROUGH */
14941         case SAVEt_FREEPV:
14942             c = (char*)POPPTR(ss,ix);
14943             TOPPTR(nss,ix) = pv_dup_inc(c);
14944             break;
14945         case SAVEt_STACK_POS:           /* Position on Perl stack */
14946             i = POPINT(ss,ix);
14947             TOPINT(nss,ix) = i;
14948             break;
14949         case SAVEt_DESTRUCTOR:
14950             ptr = POPPTR(ss,ix);
14951             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
14952             dptr = POPDPTR(ss,ix);
14953             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
14954                                         any_dup(FPTR2DPTR(void *, dptr),
14955                                                 proto_perl));
14956             break;
14957         case SAVEt_DESTRUCTOR_X:
14958             ptr = POPPTR(ss,ix);
14959             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
14960             dxptr = POPDXPTR(ss,ix);
14961             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
14962                                          any_dup(FPTR2DPTR(void *, dxptr),
14963                                                  proto_perl));
14964             break;
14965         case SAVEt_REGCONTEXT:
14966         case SAVEt_ALLOC:
14967             ix -= uv >> SAVE_TIGHT_SHIFT;
14968             break;
14969         case SAVEt_AELEM:               /* array element */
14970             sv = (const SV *)POPPTR(ss,ix);
14971             TOPPTR(nss,ix) = SvREFCNT_inc(sv_dup_inc(sv, param));
14972             iv = POPIV(ss,ix);
14973             TOPIV(nss,ix) = iv;
14974             av = (const AV *)POPPTR(ss,ix);
14975             TOPPTR(nss,ix) = av_dup_inc(av, param);
14976             break;
14977         case SAVEt_OP:
14978             ptr = POPPTR(ss,ix);
14979             TOPPTR(nss,ix) = ptr;
14980             break;
14981         case SAVEt_HINTS:
14982             ptr = POPPTR(ss,ix);
14983             ptr = cophh_copy((COPHH*)ptr);
14984             TOPPTR(nss,ix) = ptr;
14985             i = POPINT(ss,ix);
14986             TOPINT(nss,ix) = i;
14987             if (i & HINT_LOCALIZE_HH) {
14988                 hv = (const HV *)POPPTR(ss,ix);
14989                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
14990             }
14991             break;
14992         case SAVEt_PADSV_AND_MORTALIZE:
14993             longval = (long)POPLONG(ss,ix);
14994             TOPLONG(nss,ix) = longval;
14995             ptr = POPPTR(ss,ix);
14996             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14997             sv = (const SV *)POPPTR(ss,ix);
14998             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14999             break;
15000         case SAVEt_SET_SVFLAGS:
15001             i = POPINT(ss,ix);
15002             TOPINT(nss,ix) = i;
15003             i = POPINT(ss,ix);
15004             TOPINT(nss,ix) = i;
15005             sv = (const SV *)POPPTR(ss,ix);
15006             TOPPTR(nss,ix) = sv_dup(sv, param);
15007             break;
15008         case SAVEt_COMPILE_WARNINGS:
15009             ptr = POPPTR(ss,ix);
15010             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
15011             break;
15012         case SAVEt_PARSER:
15013             ptr = POPPTR(ss,ix);
15014             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
15015             break;
15016         default:
15017             Perl_croak(aTHX_
15018                        "panic: ss_dup inconsistency (%" IVdf ")", (IV) type);
15019         }
15020     }
15021
15022     return nss;
15023 }
15024
15025
15026 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
15027  * flag to the result. This is done for each stash before cloning starts,
15028  * so we know which stashes want their objects cloned */
15029
15030 static void
15031 do_mark_cloneable_stash(pTHX_ SV *const sv)
15032 {
15033     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
15034     if (hvname) {
15035         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
15036         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
15037         if (cloner && GvCV(cloner)) {
15038             dSP;
15039             UV status;
15040
15041             ENTER;
15042             SAVETMPS;
15043             PUSHMARK(SP);
15044             mXPUSHs(newSVhek(hvname));
15045             PUTBACK;
15046             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
15047             SPAGAIN;
15048             status = POPu;
15049             PUTBACK;
15050             FREETMPS;
15051             LEAVE;
15052             if (status)
15053                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
15054         }
15055     }
15056 }
15057
15058
15059
15060 /*
15061 =for apidoc perl_clone
15062
15063 Create and return a new interpreter by cloning the current one.
15064
15065 C<perl_clone> takes these flags as parameters:
15066
15067 C<CLONEf_COPY_STACKS> - is used to, well, copy the stacks also,
15068 without it we only clone the data and zero the stacks,
15069 with it we copy the stacks and the new perl interpreter is
15070 ready to run at the exact same point as the previous one.
15071 The pseudo-fork code uses C<COPY_STACKS> while the
15072 threads->create doesn't.
15073
15074 C<CLONEf_KEEP_PTR_TABLE> -
15075 C<perl_clone> keeps a ptr_table with the pointer of the old
15076 variable as a key and the new variable as a value,
15077 this allows it to check if something has been cloned and not
15078 clone it again but rather just use the value and increase the
15079 refcount.  If C<KEEP_PTR_TABLE> is not set then C<perl_clone> will kill
15080 the ptr_table using the function
15081 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
15082 reason to keep it around is if you want to dup some of your own
15083 variable who are outside the graph perl scans, an example of this
15084 code is in F<threads.xs> create.
15085
15086 C<CLONEf_CLONE_HOST> -
15087 This is a win32 thing, it is ignored on unix, it tells perls
15088 win32host code (which is c++) to clone itself, this is needed on
15089 win32 if you want to run two threads at the same time,
15090 if you just want to do some stuff in a separate perl interpreter
15091 and then throw it away and return to the original one,
15092 you don't need to do anything.
15093
15094 =cut
15095 */
15096
15097 /* XXX the above needs expanding by someone who actually understands it ! */
15098 EXTERN_C PerlInterpreter *
15099 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
15100
15101 PerlInterpreter *
15102 perl_clone(PerlInterpreter *proto_perl, UV flags)
15103 {
15104    dVAR;
15105 #ifdef PERL_IMPLICIT_SYS
15106
15107     PERL_ARGS_ASSERT_PERL_CLONE;
15108
15109    /* perlhost.h so we need to call into it
15110    to clone the host, CPerlHost should have a c interface, sky */
15111
15112 #ifndef __amigaos4__
15113    if (flags & CLONEf_CLONE_HOST) {
15114        return perl_clone_host(proto_perl,flags);
15115    }
15116 #endif
15117    return perl_clone_using(proto_perl, flags,
15118                             proto_perl->IMem,
15119                             proto_perl->IMemShared,
15120                             proto_perl->IMemParse,
15121                             proto_perl->IEnv,
15122                             proto_perl->IStdIO,
15123                             proto_perl->ILIO,
15124                             proto_perl->IDir,
15125                             proto_perl->ISock,
15126                             proto_perl->IProc);
15127 }
15128
15129 PerlInterpreter *
15130 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
15131                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
15132                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
15133                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
15134                  struct IPerlDir* ipD, struct IPerlSock* ipS,
15135                  struct IPerlProc* ipP)
15136 {
15137     /* XXX many of the string copies here can be optimized if they're
15138      * constants; they need to be allocated as common memory and just
15139      * their pointers copied. */
15140
15141     IV i;
15142     CLONE_PARAMS clone_params;
15143     CLONE_PARAMS* const param = &clone_params;
15144
15145     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
15146
15147     PERL_ARGS_ASSERT_PERL_CLONE_USING;
15148 #else           /* !PERL_IMPLICIT_SYS */
15149     IV i;
15150     CLONE_PARAMS clone_params;
15151     CLONE_PARAMS* param = &clone_params;
15152     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
15153
15154     PERL_ARGS_ASSERT_PERL_CLONE;
15155 #endif          /* PERL_IMPLICIT_SYS */
15156
15157     /* for each stash, determine whether its objects should be cloned */
15158     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
15159     PERL_SET_THX(my_perl);
15160
15161 #ifdef DEBUGGING
15162     PoisonNew(my_perl, 1, PerlInterpreter);
15163     PL_op = NULL;
15164     PL_curcop = NULL;
15165     PL_defstash = NULL; /* may be used by perl malloc() */
15166     PL_markstack = 0;
15167     PL_scopestack = 0;
15168     PL_scopestack_name = 0;
15169     PL_savestack = 0;
15170     PL_savestack_ix = 0;
15171     PL_savestack_max = -1;
15172     PL_sig_pending = 0;
15173     PL_parser = NULL;
15174     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
15175     Zero(&PL_padname_undef, 1, PADNAME);
15176     Zero(&PL_padname_const, 1, PADNAME);
15177 #  ifdef DEBUG_LEAKING_SCALARS
15178     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
15179 #  endif
15180 #  ifdef PERL_TRACE_OPS
15181     Zero(PL_op_exec_cnt, OP_max+2, UV);
15182 #  endif
15183 #else   /* !DEBUGGING */
15184     Zero(my_perl, 1, PerlInterpreter);
15185 #endif  /* DEBUGGING */
15186
15187 #ifdef PERL_IMPLICIT_SYS
15188     /* host pointers */
15189     PL_Mem              = ipM;
15190     PL_MemShared        = ipMS;
15191     PL_MemParse         = ipMP;
15192     PL_Env              = ipE;
15193     PL_StdIO            = ipStd;
15194     PL_LIO              = ipLIO;
15195     PL_Dir              = ipD;
15196     PL_Sock             = ipS;
15197     PL_Proc             = ipP;
15198 #endif          /* PERL_IMPLICIT_SYS */
15199
15200
15201     param->flags = flags;
15202     /* Nothing in the core code uses this, but we make it available to
15203        extensions (using mg_dup).  */
15204     param->proto_perl = proto_perl;
15205     /* Likely nothing will use this, but it is initialised to be consistent
15206        with Perl_clone_params_new().  */
15207     param->new_perl = my_perl;
15208     param->unreferenced = NULL;
15209
15210
15211     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
15212
15213     PL_body_arenas = NULL;
15214     Zero(&PL_body_roots, 1, PL_body_roots);
15215     
15216     PL_sv_count         = 0;
15217     PL_sv_root          = NULL;
15218     PL_sv_arenaroot     = NULL;
15219
15220     PL_debug            = proto_perl->Idebug;
15221
15222     /* dbargs array probably holds garbage */
15223     PL_dbargs           = NULL;
15224
15225     PL_compiling = proto_perl->Icompiling;
15226
15227     /* pseudo environmental stuff */
15228     PL_origargc         = proto_perl->Iorigargc;
15229     PL_origargv         = proto_perl->Iorigargv;
15230
15231 #ifndef NO_TAINT_SUPPORT
15232     /* Set tainting stuff before PerlIO_debug can possibly get called */
15233     PL_tainting         = proto_perl->Itainting;
15234     PL_taint_warn       = proto_perl->Itaint_warn;
15235 #else
15236     PL_tainting         = FALSE;
15237     PL_taint_warn       = FALSE;
15238 #endif
15239
15240     PL_minus_c          = proto_perl->Iminus_c;
15241
15242     PL_localpatches     = proto_perl->Ilocalpatches;
15243     PL_splitstr         = proto_perl->Isplitstr;
15244     PL_minus_n          = proto_perl->Iminus_n;
15245     PL_minus_p          = proto_perl->Iminus_p;
15246     PL_minus_l          = proto_perl->Iminus_l;
15247     PL_minus_a          = proto_perl->Iminus_a;
15248     PL_minus_E          = proto_perl->Iminus_E;
15249     PL_minus_F          = proto_perl->Iminus_F;
15250     PL_doswitches       = proto_perl->Idoswitches;
15251     PL_dowarn           = proto_perl->Idowarn;
15252 #ifdef PERL_SAWAMPERSAND
15253     PL_sawampersand     = proto_perl->Isawampersand;
15254 #endif
15255     PL_unsafe           = proto_perl->Iunsafe;
15256     PL_perldb           = proto_perl->Iperldb;
15257     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
15258     PL_exit_flags       = proto_perl->Iexit_flags;
15259
15260     /* XXX time(&PL_basetime) when asked for? */
15261     PL_basetime         = proto_perl->Ibasetime;
15262
15263     PL_maxsysfd         = proto_perl->Imaxsysfd;
15264     PL_statusvalue      = proto_perl->Istatusvalue;
15265 #ifdef __VMS
15266     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
15267 #else
15268     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
15269 #endif
15270
15271     /* RE engine related */
15272     PL_regmatch_slab    = NULL;
15273     PL_reg_curpm        = NULL;
15274
15275     PL_sub_generation   = proto_perl->Isub_generation;
15276
15277     /* funky return mechanisms */
15278     PL_forkprocess      = proto_perl->Iforkprocess;
15279
15280     /* internal state */
15281     PL_main_start       = proto_perl->Imain_start;
15282     PL_eval_root        = proto_perl->Ieval_root;
15283     PL_eval_start       = proto_perl->Ieval_start;
15284
15285     PL_filemode         = proto_perl->Ifilemode;
15286     PL_lastfd           = proto_perl->Ilastfd;
15287     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
15288     PL_Argv             = NULL;
15289     PL_Cmd              = NULL;
15290     PL_gensym           = proto_perl->Igensym;
15291
15292     PL_laststatval      = proto_perl->Ilaststatval;
15293     PL_laststype        = proto_perl->Ilaststype;
15294     PL_mess_sv          = NULL;
15295
15296     PL_profiledata      = NULL;
15297
15298     PL_generation       = proto_perl->Igeneration;
15299
15300     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
15301     PL_in_clean_all     = proto_perl->Iin_clean_all;
15302
15303     PL_delaymagic_uid   = proto_perl->Idelaymagic_uid;
15304     PL_delaymagic_euid  = proto_perl->Idelaymagic_euid;
15305     PL_delaymagic_gid   = proto_perl->Idelaymagic_gid;
15306     PL_delaymagic_egid  = proto_perl->Idelaymagic_egid;
15307     PL_nomemok          = proto_perl->Inomemok;
15308     PL_an               = proto_perl->Ian;
15309     PL_evalseq          = proto_perl->Ievalseq;
15310     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
15311     PL_origalen         = proto_perl->Iorigalen;
15312
15313     PL_sighandlerp      = proto_perl->Isighandlerp;
15314
15315     PL_runops           = proto_perl->Irunops;
15316
15317     PL_subline          = proto_perl->Isubline;
15318
15319     PL_cv_has_eval      = proto_perl->Icv_has_eval;
15320
15321 #ifdef FCRYPT
15322     PL_cryptseen        = proto_perl->Icryptseen;
15323 #endif
15324
15325 #ifdef USE_LOCALE_COLLATE
15326     PL_collation_ix     = proto_perl->Icollation_ix;
15327     PL_collation_standard       = proto_perl->Icollation_standard;
15328     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
15329     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
15330     PL_strxfrm_max_cp   = proto_perl->Istrxfrm_max_cp;
15331 #endif /* USE_LOCALE_COLLATE */
15332
15333 #ifdef USE_LOCALE_NUMERIC
15334     PL_numeric_standard = proto_perl->Inumeric_standard;
15335     PL_numeric_underlying       = proto_perl->Inumeric_underlying;
15336 #endif /* !USE_LOCALE_NUMERIC */
15337
15338     /* Did the locale setup indicate UTF-8? */
15339     PL_utf8locale       = proto_perl->Iutf8locale;
15340     PL_in_utf8_CTYPE_locale = proto_perl->Iin_utf8_CTYPE_locale;
15341     PL_in_utf8_COLLATE_locale = proto_perl->Iin_utf8_COLLATE_locale;
15342     /* Unicode features (see perlrun/-C) */
15343     PL_unicode          = proto_perl->Iunicode;
15344
15345     /* Pre-5.8 signals control */
15346     PL_signals          = proto_perl->Isignals;
15347
15348     /* times() ticks per second */
15349     PL_clocktick        = proto_perl->Iclocktick;
15350
15351     /* Recursion stopper for PerlIO_find_layer */
15352     PL_in_load_module   = proto_perl->Iin_load_module;
15353
15354     /* sort() routine */
15355     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
15356
15357     /* Not really needed/useful since the reenrant_retint is "volatile",
15358      * but do it for consistency's sake. */
15359     PL_reentrant_retint = proto_perl->Ireentrant_retint;
15360
15361     /* Hooks to shared SVs and locks. */
15362     PL_sharehook        = proto_perl->Isharehook;
15363     PL_lockhook         = proto_perl->Ilockhook;
15364     PL_unlockhook       = proto_perl->Iunlockhook;
15365     PL_threadhook       = proto_perl->Ithreadhook;
15366     PL_destroyhook      = proto_perl->Idestroyhook;
15367     PL_signalhook       = proto_perl->Isignalhook;
15368
15369     PL_globhook         = proto_perl->Iglobhook;
15370
15371     /* swatch cache */
15372     PL_last_swash_hv    = NULL; /* reinits on demand */
15373     PL_last_swash_klen  = 0;
15374     PL_last_swash_key[0]= '\0';
15375     PL_last_swash_tmps  = (U8*)NULL;
15376     PL_last_swash_slen  = 0;
15377
15378     PL_srand_called     = proto_perl->Isrand_called;
15379     Copy(&(proto_perl->Irandom_state), &PL_random_state, 1, PL_RANDOM_STATE_TYPE);
15380
15381     if (flags & CLONEf_COPY_STACKS) {
15382         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
15383         PL_tmps_ix              = proto_perl->Itmps_ix;
15384         PL_tmps_max             = proto_perl->Itmps_max;
15385         PL_tmps_floor           = proto_perl->Itmps_floor;
15386
15387         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
15388          * NOTE: unlike the others! */
15389         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
15390         PL_scopestack_max       = proto_perl->Iscopestack_max;
15391
15392         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
15393          * NOTE: unlike the others! */
15394         PL_savestack_ix         = proto_perl->Isavestack_ix;
15395         PL_savestack_max        = proto_perl->Isavestack_max;
15396     }
15397
15398     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
15399     PL_top_env          = &PL_start_env;
15400
15401     PL_op               = proto_perl->Iop;
15402
15403     PL_Sv               = NULL;
15404     PL_Xpv              = (XPV*)NULL;
15405     my_perl->Ina        = proto_perl->Ina;
15406
15407     PL_statcache        = proto_perl->Istatcache;
15408
15409 #ifndef NO_TAINT_SUPPORT
15410     PL_tainted          = proto_perl->Itainted;
15411 #else
15412     PL_tainted          = FALSE;
15413 #endif
15414     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
15415
15416     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
15417
15418     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
15419     PL_restartop        = proto_perl->Irestartop;
15420     PL_in_eval          = proto_perl->Iin_eval;
15421     PL_delaymagic       = proto_perl->Idelaymagic;
15422     PL_phase            = proto_perl->Iphase;
15423     PL_localizing       = proto_perl->Ilocalizing;
15424
15425     PL_hv_fetch_ent_mh  = NULL;
15426     PL_modcount         = proto_perl->Imodcount;
15427     PL_lastgotoprobe    = NULL;
15428     PL_dumpindent       = proto_perl->Idumpindent;
15429
15430     PL_efloatbuf        = NULL;         /* reinits on demand */
15431     PL_efloatsize       = 0;                    /* reinits on demand */
15432
15433     /* regex stuff */
15434
15435     PL_colorset         = 0;            /* reinits PL_colors[] */
15436     /*PL_colors[6]      = {0,0,0,0,0,0};*/
15437
15438     /* Pluggable optimizer */
15439     PL_peepp            = proto_perl->Ipeepp;
15440     PL_rpeepp           = proto_perl->Irpeepp;
15441     /* op_free() hook */
15442     PL_opfreehook       = proto_perl->Iopfreehook;
15443
15444 #ifdef USE_REENTRANT_API
15445     /* XXX: things like -Dm will segfault here in perlio, but doing
15446      *  PERL_SET_CONTEXT(proto_perl);
15447      * breaks too many other things
15448      */
15449     Perl_reentrant_init(aTHX);
15450 #endif
15451
15452     /* create SV map for pointer relocation */
15453     PL_ptr_table = ptr_table_new();
15454
15455     /* initialize these special pointers as early as possible */
15456     init_constants();
15457     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
15458     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
15459     ptr_table_store(PL_ptr_table, &proto_perl->Isv_zero, &PL_sv_zero);
15460     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
15461     ptr_table_store(PL_ptr_table, &proto_perl->Ipadname_const,
15462                     &PL_padname_const);
15463
15464     /* create (a non-shared!) shared string table */
15465     PL_strtab           = newHV();
15466     HvSHAREKEYS_off(PL_strtab);
15467     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
15468     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
15469
15470     Zero(PL_sv_consts, SV_CONSTS_COUNT, SV*);
15471
15472     /* This PV will be free'd special way so must set it same way op.c does */
15473     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
15474     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
15475
15476     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
15477     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
15478     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
15479     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
15480
15481     param->stashes      = newAV();  /* Setup array of objects to call clone on */
15482     /* This makes no difference to the implementation, as it always pushes
15483        and shifts pointers to other SVs without changing their reference
15484        count, with the array becoming empty before it is freed. However, it
15485        makes it conceptually clear what is going on, and will avoid some
15486        work inside av.c, filling slots between AvFILL() and AvMAX() with
15487        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
15488     AvREAL_off(param->stashes);
15489
15490     if (!(flags & CLONEf_COPY_STACKS)) {
15491         param->unreferenced = newAV();
15492     }
15493
15494 #ifdef PERLIO_LAYERS
15495     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
15496     PerlIO_clone(aTHX_ proto_perl, param);
15497 #endif
15498
15499     PL_envgv            = gv_dup_inc(proto_perl->Ienvgv, param);
15500     PL_incgv            = gv_dup_inc(proto_perl->Iincgv, param);
15501     PL_hintgv           = gv_dup_inc(proto_perl->Ihintgv, param);
15502     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
15503     PL_xsubfilename     = proto_perl->Ixsubfilename;
15504     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
15505     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
15506
15507     /* switches */
15508     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
15509     PL_inplace          = SAVEPV(proto_perl->Iinplace);
15510     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
15511
15512     /* magical thingies */
15513
15514     SvPVCLEAR(PERL_DEBUG_PAD(0));        /* For regex debugging. */
15515     SvPVCLEAR(PERL_DEBUG_PAD(1));        /* ext/re needs these */
15516     SvPVCLEAR(PERL_DEBUG_PAD(2));        /* even without DEBUGGING. */
15517
15518    
15519     /* Clone the regex array */
15520     /* ORANGE FIXME for plugins, probably in the SV dup code.
15521        newSViv(PTR2IV(CALLREGDUPE(
15522        INT2PTR(REGEXP *, SvIVX(regex)), param))))
15523     */
15524     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
15525     PL_regex_pad = AvARRAY(PL_regex_padav);
15526
15527     PL_stashpadmax      = proto_perl->Istashpadmax;
15528     PL_stashpadix       = proto_perl->Istashpadix ;
15529     Newx(PL_stashpad, PL_stashpadmax, HV *);
15530     {
15531         PADOFFSET o = 0;
15532         for (; o < PL_stashpadmax; ++o)
15533             PL_stashpad[o] = hv_dup(proto_perl->Istashpad[o], param);
15534     }
15535
15536     /* shortcuts to various I/O objects */
15537     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
15538     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
15539     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
15540     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
15541     PL_argvgv           = gv_dup_inc(proto_perl->Iargvgv, param);
15542     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
15543     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
15544
15545     /* shortcuts to regexp stuff */
15546     PL_replgv           = gv_dup_inc(proto_perl->Ireplgv, param);
15547
15548     /* shortcuts to misc objects */
15549     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
15550
15551     /* shortcuts to debugging objects */
15552     PL_DBgv             = gv_dup_inc(proto_perl->IDBgv, param);
15553     PL_DBline           = gv_dup_inc(proto_perl->IDBline, param);
15554     PL_DBsub            = gv_dup_inc(proto_perl->IDBsub, param);
15555     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
15556     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
15557     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
15558     Copy(proto_perl->IDBcontrol, PL_DBcontrol, DBVARMG_COUNT, IV);
15559
15560     /* symbol tables */
15561     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
15562     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
15563     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
15564     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
15565     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
15566
15567     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
15568     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
15569     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
15570     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
15571     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
15572     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
15573     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
15574     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
15575     PL_savebegin        = proto_perl->Isavebegin;
15576
15577     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
15578
15579     /* subprocess state */
15580     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
15581
15582     if (proto_perl->Iop_mask)
15583         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
15584     else
15585         PL_op_mask      = NULL;
15586     /* PL_asserting        = proto_perl->Iasserting; */
15587
15588     /* current interpreter roots */
15589     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
15590     OP_REFCNT_LOCK;
15591     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
15592     OP_REFCNT_UNLOCK;
15593
15594     /* runtime control stuff */
15595     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
15596
15597     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
15598
15599     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
15600
15601     /* interpreter atexit processing */
15602     PL_exitlistlen      = proto_perl->Iexitlistlen;
15603     if (PL_exitlistlen) {
15604         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
15605         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
15606     }
15607     else
15608         PL_exitlist     = (PerlExitListEntry*)NULL;
15609
15610     PL_my_cxt_size = proto_perl->Imy_cxt_size;
15611     if (PL_my_cxt_size) {
15612         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
15613         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
15614 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
15615         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
15616         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
15617 #endif
15618     }
15619     else {
15620         PL_my_cxt_list  = (void**)NULL;
15621 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
15622         PL_my_cxt_keys  = (const char**)NULL;
15623 #endif
15624     }
15625     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
15626     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
15627     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
15628     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
15629
15630     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
15631
15632     PAD_CLONE_VARS(proto_perl, param);
15633
15634 #ifdef HAVE_INTERP_INTERN
15635     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
15636 #endif
15637
15638     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
15639
15640 #ifdef PERL_USES_PL_PIDSTATUS
15641     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
15642 #endif
15643     PL_osname           = SAVEPV(proto_perl->Iosname);
15644     PL_parser           = parser_dup(proto_perl->Iparser, param);
15645
15646     /* XXX this only works if the saved cop has already been cloned */
15647     if (proto_perl->Iparser) {
15648         PL_parser->saved_curcop = (COP*)any_dup(
15649                                     proto_perl->Iparser->saved_curcop,
15650                                     proto_perl);
15651     }
15652
15653     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
15654
15655 #ifdef USE_LOCALE_CTYPE
15656     /* Should we warn if uses locale? */
15657     PL_warn_locale      = sv_dup_inc(proto_perl->Iwarn_locale, param);
15658 #endif
15659
15660 #ifdef USE_LOCALE_COLLATE
15661     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
15662 #endif /* USE_LOCALE_COLLATE */
15663
15664 #ifdef USE_LOCALE_NUMERIC
15665     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
15666     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
15667 #endif /* !USE_LOCALE_NUMERIC */
15668
15669     PL_langinfo_buf = NULL;
15670     PL_langinfo_bufsize = 0;
15671
15672     /* Unicode inversion lists */
15673     PL_Latin1           = sv_dup_inc(proto_perl->ILatin1, param);
15674     PL_UpperLatin1      = sv_dup_inc(proto_perl->IUpperLatin1, param);
15675     PL_AboveLatin1      = sv_dup_inc(proto_perl->IAboveLatin1, param);
15676     PL_InBitmap         = sv_dup_inc(proto_perl->IInBitmap, param);
15677
15678     PL_NonL1NonFinalFold = sv_dup_inc(proto_perl->INonL1NonFinalFold, param);
15679     PL_HasMultiCharFold = sv_dup_inc(proto_perl->IHasMultiCharFold, param);
15680
15681     /* utf8 character class swashes */
15682     for (i = 0; i < POSIX_SWASH_COUNT; i++) {
15683         PL_utf8_swash_ptrs[i] = sv_dup_inc(proto_perl->Iutf8_swash_ptrs[i], param);
15684     }
15685     for (i = 0; i < POSIX_CC_COUNT; i++) {
15686         PL_XPosix_ptrs[i] = sv_dup_inc(proto_perl->IXPosix_ptrs[i], param);
15687     }
15688     PL_GCB_invlist = sv_dup_inc(proto_perl->IGCB_invlist, param);
15689     PL_SB_invlist = sv_dup_inc(proto_perl->ISB_invlist, param);
15690     PL_WB_invlist = sv_dup_inc(proto_perl->IWB_invlist, param);
15691     PL_seen_deprecated_macro = hv_dup_inc(proto_perl->Iseen_deprecated_macro, param);
15692     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
15693     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
15694     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
15695     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
15696     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
15697     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
15698     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
15699     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
15700     PL_utf8_perl_idcont = sv_dup_inc(proto_perl->Iutf8_perl_idcont, param);
15701     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
15702     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
15703     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
15704     PL_utf8_charname_begin = sv_dup_inc(proto_perl->Iutf8_charname_begin, param);
15705     PL_utf8_charname_continue = sv_dup_inc(proto_perl->Iutf8_charname_continue, param);
15706
15707     if (proto_perl->Ipsig_pend) {
15708         Newxz(PL_psig_pend, SIG_SIZE, int);
15709     }
15710     else {
15711         PL_psig_pend    = (int*)NULL;
15712     }
15713
15714     if (proto_perl->Ipsig_name) {
15715         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
15716         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
15717                             param);
15718         PL_psig_ptr = PL_psig_name + SIG_SIZE;
15719     }
15720     else {
15721         PL_psig_ptr     = (SV**)NULL;
15722         PL_psig_name    = (SV**)NULL;
15723     }
15724
15725     if (flags & CLONEf_COPY_STACKS) {
15726         Newx(PL_tmps_stack, PL_tmps_max, SV*);
15727         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
15728                             PL_tmps_ix+1, param);
15729
15730         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
15731         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
15732         Newx(PL_markstack, i, I32);
15733         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
15734                                                   - proto_perl->Imarkstack);
15735         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
15736                                                   - proto_perl->Imarkstack);
15737         Copy(proto_perl->Imarkstack, PL_markstack,
15738              PL_markstack_ptr - PL_markstack + 1, I32);
15739
15740         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
15741          * NOTE: unlike the others! */
15742         Newx(PL_scopestack, PL_scopestack_max, I32);
15743         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
15744
15745 #ifdef DEBUGGING
15746         Newx(PL_scopestack_name, PL_scopestack_max, const char *);
15747         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
15748 #endif
15749         /* reset stack AV to correct length before its duped via
15750          * PL_curstackinfo */
15751         AvFILLp(proto_perl->Icurstack) =
15752                             proto_perl->Istack_sp - proto_perl->Istack_base;
15753
15754         /* NOTE: si_dup() looks at PL_markstack */
15755         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
15756
15757         /* PL_curstack          = PL_curstackinfo->si_stack; */
15758         PL_curstack             = av_dup(proto_perl->Icurstack, param);
15759         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
15760
15761         /* next PUSHs() etc. set *(PL_stack_sp+1) */
15762         PL_stack_base           = AvARRAY(PL_curstack);
15763         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
15764                                                    - proto_perl->Istack_base);
15765         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
15766
15767         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
15768         PL_savestack            = ss_dup(proto_perl, param);
15769     }
15770     else {
15771         init_stacks();
15772         ENTER;                  /* perl_destruct() wants to LEAVE; */
15773     }
15774
15775     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
15776     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
15777
15778     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
15779     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
15780     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
15781     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
15782     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
15783     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
15784
15785     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
15786
15787     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
15788     PL_firstgv          = gv_dup_inc(proto_perl->Ifirstgv, param);
15789     PL_secondgv         = gv_dup_inc(proto_perl->Isecondgv, param);
15790
15791     PL_stashcache       = newHV();
15792
15793     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
15794                                             proto_perl->Iwatchaddr);
15795     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
15796     if (PL_debug && PL_watchaddr) {
15797         PerlIO_printf(Perl_debug_log,
15798           "WATCHING: %" UVxf " cloned as %" UVxf " with value %" UVxf "\n",
15799           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
15800           PTR2UV(PL_watchok));
15801     }
15802
15803     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
15804     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
15805     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
15806
15807     /* Call the ->CLONE method, if it exists, for each of the stashes
15808        identified by sv_dup() above.
15809     */
15810     while(av_tindex(param->stashes) != -1) {
15811         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
15812         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
15813         if (cloner && GvCV(cloner)) {
15814             dSP;
15815             ENTER;
15816             SAVETMPS;
15817             PUSHMARK(SP);
15818             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
15819             PUTBACK;
15820             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
15821             FREETMPS;
15822             LEAVE;
15823         }
15824     }
15825
15826     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
15827         ptr_table_free(PL_ptr_table);
15828         PL_ptr_table = NULL;
15829     }
15830
15831     if (!(flags & CLONEf_COPY_STACKS)) {
15832         unreferenced_to_tmp_stack(param->unreferenced);
15833     }
15834
15835     SvREFCNT_dec(param->stashes);
15836
15837     /* orphaned? eg threads->new inside BEGIN or use */
15838     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
15839         SvREFCNT_inc_simple_void(PL_compcv);
15840         SAVEFREESV(PL_compcv);
15841     }
15842
15843     return my_perl;
15844 }
15845
15846 static void
15847 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
15848 {
15849     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
15850     
15851     if (AvFILLp(unreferenced) > -1) {
15852         SV **svp = AvARRAY(unreferenced);
15853         SV **const last = svp + AvFILLp(unreferenced);
15854         SSize_t count = 0;
15855
15856         do {
15857             if (SvREFCNT(*svp) == 1)
15858                 ++count;
15859         } while (++svp <= last);
15860
15861         EXTEND_MORTAL(count);
15862         svp = AvARRAY(unreferenced);
15863
15864         do {
15865             if (SvREFCNT(*svp) == 1) {
15866                 /* Our reference is the only one to this SV. This means that
15867                    in this thread, the scalar effectively has a 0 reference.
15868                    That doesn't work (cleanup never happens), so donate our
15869                    reference to it onto the save stack. */
15870                 PL_tmps_stack[++PL_tmps_ix] = *svp;
15871             } else {
15872                 /* As an optimisation, because we are already walking the
15873                    entire array, instead of above doing either
15874                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
15875                    release our reference to the scalar, so that at the end of
15876                    the array owns zero references to the scalars it happens to
15877                    point to. We are effectively converting the array from
15878                    AvREAL() on to AvREAL() off. This saves the av_clear()
15879                    (triggered by the SvREFCNT_dec(unreferenced) below) from
15880                    walking the array a second time.  */
15881                 SvREFCNT_dec(*svp);
15882             }
15883
15884         } while (++svp <= last);
15885         AvREAL_off(unreferenced);
15886     }
15887     SvREFCNT_dec_NN(unreferenced);
15888 }
15889
15890 void
15891 Perl_clone_params_del(CLONE_PARAMS *param)
15892 {
15893     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
15894        happy: */
15895     PerlInterpreter *const to = param->new_perl;
15896     dTHXa(to);
15897     PerlInterpreter *const was = PERL_GET_THX;
15898
15899     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
15900
15901     if (was != to) {
15902         PERL_SET_THX(to);
15903     }
15904
15905     SvREFCNT_dec(param->stashes);
15906     if (param->unreferenced)
15907         unreferenced_to_tmp_stack(param->unreferenced);
15908
15909     Safefree(param);
15910
15911     if (was != to) {
15912         PERL_SET_THX(was);
15913     }
15914 }
15915
15916 CLONE_PARAMS *
15917 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
15918 {
15919     dVAR;
15920     /* Need to play this game, as newAV() can call safesysmalloc(), and that
15921        does a dTHX; to get the context from thread local storage.
15922        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
15923        a version that passes in my_perl.  */
15924     PerlInterpreter *const was = PERL_GET_THX;
15925     CLONE_PARAMS *param;
15926
15927     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
15928
15929     if (was != to) {
15930         PERL_SET_THX(to);
15931     }
15932
15933     /* Given that we've set the context, we can do this unshared.  */
15934     Newx(param, 1, CLONE_PARAMS);
15935
15936     param->flags = 0;
15937     param->proto_perl = from;
15938     param->new_perl = to;
15939     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
15940     AvREAL_off(param->stashes);
15941     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
15942
15943     if (was != to) {
15944         PERL_SET_THX(was);
15945     }
15946     return param;
15947 }
15948
15949 #endif /* USE_ITHREADS */
15950
15951 void
15952 Perl_init_constants(pTHX)
15953 {
15954     SvREFCNT(&PL_sv_undef)      = SvREFCNT_IMMORTAL;
15955     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVf_PROTECT|SVt_NULL;
15956     SvANY(&PL_sv_undef)         = NULL;
15957
15958     SvANY(&PL_sv_no)            = new_XPVNV();
15959     SvREFCNT(&PL_sv_no)         = SvREFCNT_IMMORTAL;
15960     SvFLAGS(&PL_sv_no)          = SVt_PVNV|SVf_READONLY|SVf_PROTECT
15961                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
15962                                   |SVp_POK|SVf_POK;
15963
15964     SvANY(&PL_sv_yes)           = new_XPVNV();
15965     SvREFCNT(&PL_sv_yes)        = SvREFCNT_IMMORTAL;
15966     SvFLAGS(&PL_sv_yes)         = SVt_PVNV|SVf_READONLY|SVf_PROTECT
15967                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
15968                                   |SVp_POK|SVf_POK;
15969
15970     SvANY(&PL_sv_zero)          = new_XPVNV();
15971     SvREFCNT(&PL_sv_zero)       = SvREFCNT_IMMORTAL;
15972     SvFLAGS(&PL_sv_zero)        = SVt_PVNV|SVf_READONLY|SVf_PROTECT
15973                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
15974                                   |SVp_POK|SVf_POK
15975                                   |SVs_PADTMP;
15976
15977     SvPV_set(&PL_sv_no, (char*)PL_No);
15978     SvCUR_set(&PL_sv_no, 0);
15979     SvLEN_set(&PL_sv_no, 0);
15980     SvIV_set(&PL_sv_no, 0);
15981     SvNV_set(&PL_sv_no, 0);
15982
15983     SvPV_set(&PL_sv_yes, (char*)PL_Yes);
15984     SvCUR_set(&PL_sv_yes, 1);
15985     SvLEN_set(&PL_sv_yes, 0);
15986     SvIV_set(&PL_sv_yes, 1);
15987     SvNV_set(&PL_sv_yes, 1);
15988
15989     SvPV_set(&PL_sv_zero, (char*)PL_Zero);
15990     SvCUR_set(&PL_sv_zero, 1);
15991     SvLEN_set(&PL_sv_zero, 0);
15992     SvIV_set(&PL_sv_zero, 0);
15993     SvNV_set(&PL_sv_zero, 0);
15994
15995     PadnamePV(&PL_padname_const) = (char *)PL_No;
15996
15997     assert(SvIMMORTAL_INTERP(&PL_sv_yes));
15998     assert(SvIMMORTAL_INTERP(&PL_sv_undef));
15999     assert(SvIMMORTAL_INTERP(&PL_sv_no));
16000     assert(SvIMMORTAL_INTERP(&PL_sv_zero));
16001
16002     assert(SvIMMORTAL(&PL_sv_yes));
16003     assert(SvIMMORTAL(&PL_sv_undef));
16004     assert(SvIMMORTAL(&PL_sv_no));
16005     assert(SvIMMORTAL(&PL_sv_zero));
16006
16007     assert( SvIMMORTAL_TRUE(&PL_sv_yes));
16008     assert(!SvIMMORTAL_TRUE(&PL_sv_undef));
16009     assert(!SvIMMORTAL_TRUE(&PL_sv_no));
16010     assert(!SvIMMORTAL_TRUE(&PL_sv_zero));
16011
16012     assert( SvTRUE_nomg_NN(&PL_sv_yes));
16013     assert(!SvTRUE_nomg_NN(&PL_sv_undef));
16014     assert(!SvTRUE_nomg_NN(&PL_sv_no));
16015     assert(!SvTRUE_nomg_NN(&PL_sv_zero));
16016 }
16017
16018 /*
16019 =head1 Unicode Support
16020
16021 =for apidoc sv_recode_to_utf8
16022
16023 C<encoding> is assumed to be an C<Encode> object, on entry the PV
16024 of C<sv> is assumed to be octets in that encoding, and C<sv>
16025 will be converted into Unicode (and UTF-8).
16026
16027 If C<sv> already is UTF-8 (or if it is not C<POK>), or if C<encoding>
16028 is not a reference, nothing is done to C<sv>.  If C<encoding> is not
16029 an C<Encode::XS> Encoding object, bad things will happen.
16030 (See F<cpan/Encode/encoding.pm> and L<Encode>.)
16031
16032 The PV of C<sv> is returned.
16033
16034 =cut */
16035
16036 char *
16037 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
16038 {
16039     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
16040
16041     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
16042         SV *uni;
16043         STRLEN len;
16044         const char *s;
16045         dSP;
16046         SV *nsv = sv;
16047         ENTER;
16048         PUSHSTACK;
16049         SAVETMPS;
16050         if (SvPADTMP(nsv)) {
16051             nsv = sv_newmortal();
16052             SvSetSV_nosteal(nsv, sv);
16053         }
16054         save_re_context();
16055         PUSHMARK(sp);
16056         EXTEND(SP, 3);
16057         PUSHs(encoding);
16058         PUSHs(nsv);
16059 /*
16060   NI-S 2002/07/09
16061   Passing sv_yes is wrong - it needs to be or'ed set of constants
16062   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
16063   remove converted chars from source.
16064
16065   Both will default the value - let them.
16066
16067         XPUSHs(&PL_sv_yes);
16068 */
16069         PUTBACK;
16070         call_method("decode", G_SCALAR);
16071         SPAGAIN;
16072         uni = POPs;
16073         PUTBACK;
16074         s = SvPV_const(uni, len);
16075         if (s != SvPVX_const(sv)) {
16076             SvGROW(sv, len + 1);
16077             Move(s, SvPVX(sv), len + 1, char);
16078             SvCUR_set(sv, len);
16079         }
16080         FREETMPS;
16081         POPSTACK;
16082         LEAVE;
16083         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
16084             /* clear pos and any utf8 cache */
16085             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
16086             if (mg)
16087                 mg->mg_len = -1;
16088             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
16089                 magic_setutf8(sv,mg); /* clear UTF8 cache */
16090         }
16091         SvUTF8_on(sv);
16092         return SvPVX(sv);
16093     }
16094     return SvPOKp(sv) ? SvPVX(sv) : NULL;
16095 }
16096
16097 /*
16098 =for apidoc sv_cat_decode
16099
16100 C<encoding> is assumed to be an C<Encode> object, the PV of C<ssv> is
16101 assumed to be octets in that encoding and decoding the input starts
16102 from the position which S<C<(PV + *offset)>> pointed to.  C<dsv> will be
16103 concatenated with the decoded UTF-8 string from C<ssv>.  Decoding will terminate
16104 when the string C<tstr> appears in decoding output or the input ends on
16105 the PV of C<ssv>.  The value which C<offset> points will be modified
16106 to the last input position on C<ssv>.
16107
16108 Returns TRUE if the terminator was found, else returns FALSE.
16109
16110 =cut */
16111
16112 bool
16113 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
16114                    SV *ssv, int *offset, char *tstr, int tlen)
16115 {
16116     bool ret = FALSE;
16117
16118     PERL_ARGS_ASSERT_SV_CAT_DECODE;
16119
16120     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding)) {
16121         SV *offsv;
16122         dSP;
16123         ENTER;
16124         SAVETMPS;
16125         save_re_context();
16126         PUSHMARK(sp);
16127         EXTEND(SP, 6);
16128         PUSHs(encoding);
16129         PUSHs(dsv);
16130         PUSHs(ssv);
16131         offsv = newSViv(*offset);
16132         mPUSHs(offsv);
16133         mPUSHp(tstr, tlen);
16134         PUTBACK;
16135         call_method("cat_decode", G_SCALAR);
16136         SPAGAIN;
16137         ret = SvTRUE(TOPs);
16138         *offset = SvIV(offsv);
16139         PUTBACK;
16140         FREETMPS;
16141         LEAVE;
16142     }
16143     else
16144         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
16145     return ret;
16146
16147 }
16148
16149 /* ---------------------------------------------------------------------
16150  *
16151  * support functions for report_uninit()
16152  */
16153
16154 /* the maxiumum size of array or hash where we will scan looking
16155  * for the undefined element that triggered the warning */
16156
16157 #define FUV_MAX_SEARCH_SIZE 1000
16158
16159 /* Look for an entry in the hash whose value has the same SV as val;
16160  * If so, return a mortal copy of the key. */
16161
16162 STATIC SV*
16163 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
16164 {
16165     dVAR;
16166     HE **array;
16167     I32 i;
16168
16169     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
16170
16171     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
16172                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
16173         return NULL;
16174
16175     array = HvARRAY(hv);
16176
16177     for (i=HvMAX(hv); i>=0; i--) {
16178         HE *entry;
16179         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
16180             if (HeVAL(entry) != val)
16181                 continue;
16182             if (    HeVAL(entry) == &PL_sv_undef ||
16183                     HeVAL(entry) == &PL_sv_placeholder)
16184                 continue;
16185             if (!HeKEY(entry))
16186                 return NULL;
16187             if (HeKLEN(entry) == HEf_SVKEY)
16188                 return sv_mortalcopy(HeKEY_sv(entry));
16189             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
16190         }
16191     }
16192     return NULL;
16193 }
16194
16195 /* Look for an entry in the array whose value has the same SV as val;
16196  * If so, return the index, otherwise return -1. */
16197
16198 STATIC SSize_t
16199 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
16200 {
16201     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
16202
16203     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
16204                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
16205         return -1;
16206
16207     if (val != &PL_sv_undef) {
16208         SV ** const svp = AvARRAY(av);
16209         SSize_t i;
16210
16211         for (i=AvFILLp(av); i>=0; i--)
16212             if (svp[i] == val)
16213                 return i;
16214     }
16215     return -1;
16216 }
16217
16218 /* varname(): return the name of a variable, optionally with a subscript.
16219  * If gv is non-zero, use the name of that global, along with gvtype (one
16220  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
16221  * targ.  Depending on the value of the subscript_type flag, return:
16222  */
16223
16224 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
16225 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
16226 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
16227 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
16228
16229 SV*
16230 Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
16231         const SV *const keyname, SSize_t aindex, int subscript_type)
16232 {
16233
16234     SV * const name = sv_newmortal();
16235     if (gv && isGV(gv)) {
16236         char buffer[2];
16237         buffer[0] = gvtype;
16238         buffer[1] = 0;
16239
16240         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
16241
16242         gv_fullname4(name, gv, buffer, 0);
16243
16244         if ((unsigned int)SvPVX(name)[1] <= 26) {
16245             buffer[0] = '^';
16246             buffer[1] = SvPVX(name)[1] + 'A' - 1;
16247
16248             /* Swap the 1 unprintable control character for the 2 byte pretty
16249                version - ie substr($name, 1, 1) = $buffer; */
16250             sv_insert(name, 1, 1, buffer, 2);
16251         }
16252     }
16253     else {
16254         CV * const cv = gv ? ((CV *)gv) : find_runcv(NULL);
16255         PADNAME *sv;
16256
16257         assert(!cv || SvTYPE(cv) == SVt_PVCV || SvTYPE(cv) == SVt_PVFM);
16258
16259         if (!cv || !CvPADLIST(cv))
16260             return NULL;
16261         sv = padnamelist_fetch(PadlistNAMES(CvPADLIST(cv)), targ);
16262         sv_setpvn(name, PadnamePV(sv), PadnameLEN(sv));
16263         SvUTF8_on(name);
16264     }
16265
16266     if (subscript_type == FUV_SUBSCRIPT_HASH) {
16267         SV * const sv = newSV(0);
16268         STRLEN len;
16269         const char * const pv = SvPV_nomg_const((SV*)keyname, len);
16270
16271         *SvPVX(name) = '$';
16272         Perl_sv_catpvf(aTHX_ name, "{%s}",
16273             pv_pretty(sv, pv, len, 32, NULL, NULL,
16274                     PERL_PV_PRETTY_DUMP | PERL_PV_ESCAPE_UNI_DETECT ));
16275         SvREFCNT_dec_NN(sv);
16276     }
16277     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
16278         *SvPVX(name) = '$';
16279         Perl_sv_catpvf(aTHX_ name, "[%" IVdf "]", (IV)aindex);
16280     }
16281     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
16282         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
16283         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
16284     }
16285
16286     return name;
16287 }
16288
16289
16290 /*
16291 =for apidoc find_uninit_var
16292
16293 Find the name of the undefined variable (if any) that caused the operator
16294 to issue a "Use of uninitialized value" warning.
16295 If match is true, only return a name if its value matches C<uninit_sv>.
16296 So roughly speaking, if a unary operator (such as C<OP_COS>) generates a
16297 warning, then following the direct child of the op may yield an
16298 C<OP_PADSV> or C<OP_GV> that gives the name of the undefined variable.  On the
16299 other hand, with C<OP_ADD> there are two branches to follow, so we only print
16300 the variable name if we get an exact match.
16301 C<desc_p> points to a string pointer holding the description of the op.
16302 This may be updated if needed.
16303
16304 The name is returned as a mortal SV.
16305
16306 Assumes that C<PL_op> is the OP that originally triggered the error, and that
16307 C<PL_comppad>/C<PL_curpad> points to the currently executing pad.
16308
16309 =cut
16310 */
16311
16312 STATIC SV *
16313 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
16314                   bool match, const char **desc_p)
16315 {
16316     dVAR;
16317     SV *sv;
16318     const GV *gv;
16319     const OP *o, *o2, *kid;
16320
16321     PERL_ARGS_ASSERT_FIND_UNINIT_VAR;
16322
16323     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
16324                             uninit_sv == &PL_sv_placeholder)))
16325         return NULL;
16326
16327     switch (obase->op_type) {
16328
16329     case OP_UNDEF:
16330         /* undef should care if its args are undef - any warnings
16331          * will be from tied/magic vars */
16332         break;
16333
16334     case OP_RV2AV:
16335     case OP_RV2HV:
16336     case OP_PADAV:
16337     case OP_PADHV:
16338       {
16339         const bool pad  = (    obase->op_type == OP_PADAV
16340                             || obase->op_type == OP_PADHV
16341                             || obase->op_type == OP_PADRANGE
16342                           );
16343
16344         const bool hash = (    obase->op_type == OP_PADHV
16345                             || obase->op_type == OP_RV2HV
16346                             || (obase->op_type == OP_PADRANGE
16347                                 && SvTYPE(PAD_SVl(obase->op_targ)) == SVt_PVHV)
16348                           );
16349         SSize_t index = 0;
16350         SV *keysv = NULL;
16351         int subscript_type = FUV_SUBSCRIPT_WITHIN;
16352
16353         if (pad) { /* @lex, %lex */
16354             sv = PAD_SVl(obase->op_targ);
16355             gv = NULL;
16356         }
16357         else {
16358             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
16359             /* @global, %global */
16360                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
16361                 if (!gv)
16362                     break;
16363                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
16364             }
16365             else if (obase == PL_op) /* @{expr}, %{expr} */
16366                 return find_uninit_var(cUNOPx(obase)->op_first,
16367                                                 uninit_sv, match, desc_p);
16368             else /* @{expr}, %{expr} as a sub-expression */
16369                 return NULL;
16370         }
16371
16372         /* attempt to find a match within the aggregate */
16373         if (hash) {
16374             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
16375             if (keysv)
16376                 subscript_type = FUV_SUBSCRIPT_HASH;
16377         }
16378         else {
16379             index = find_array_subscript((const AV *)sv, uninit_sv);
16380             if (index >= 0)
16381                 subscript_type = FUV_SUBSCRIPT_ARRAY;
16382         }
16383
16384         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
16385             break;
16386
16387         return varname(gv, (char)(hash ? '%' : '@'), obase->op_targ,
16388                                     keysv, index, subscript_type);
16389       }
16390
16391     case OP_RV2SV:
16392         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
16393             /* $global */
16394             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
16395             if (!gv || !GvSTASH(gv))
16396                 break;
16397             if (match && (GvSV(gv) != uninit_sv))
16398                 break;
16399             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
16400         }
16401         /* ${expr} */
16402         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1, desc_p);
16403
16404     case OP_PADSV:
16405         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
16406             break;
16407         return varname(NULL, '$', obase->op_targ,
16408                                     NULL, 0, FUV_SUBSCRIPT_NONE);
16409
16410     case OP_GVSV:
16411         gv = cGVOPx_gv(obase);
16412         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
16413             break;
16414         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
16415
16416     case OP_AELEMFAST_LEX:
16417         if (match) {
16418             SV **svp;
16419             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
16420             if (!av || SvRMAGICAL(av))
16421                 break;
16422             svp = av_fetch(av, (I8)obase->op_private, FALSE);
16423             if (!svp || *svp != uninit_sv)
16424                 break;
16425         }
16426         return varname(NULL, '$', obase->op_targ,
16427                        NULL, (I8)obase->op_private, FUV_SUBSCRIPT_ARRAY);
16428     case OP_AELEMFAST:
16429         {
16430             gv = cGVOPx_gv(obase);
16431             if (!gv)
16432                 break;
16433             if (match) {
16434                 SV **svp;
16435                 AV *const av = GvAV(gv);
16436                 if (!av || SvRMAGICAL(av))
16437                     break;
16438                 svp = av_fetch(av, (I8)obase->op_private, FALSE);
16439                 if (!svp || *svp != uninit_sv)
16440                     break;
16441             }
16442             return varname(gv, '$', 0,
16443                     NULL, (I8)obase->op_private, FUV_SUBSCRIPT_ARRAY);
16444         }
16445         NOT_REACHED; /* NOTREACHED */
16446
16447     case OP_EXISTS:
16448         o = cUNOPx(obase)->op_first;
16449         if (!o || o->op_type != OP_NULL ||
16450                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
16451             break;
16452         return find_uninit_var(cBINOPo->op_last, uninit_sv, match, desc_p);
16453
16454     case OP_AELEM:
16455     case OP_HELEM:
16456     {
16457         bool negate = FALSE;
16458
16459         if (PL_op == obase)
16460             /* $a[uninit_expr] or $h{uninit_expr} */
16461             return find_uninit_var(cBINOPx(obase)->op_last,
16462                                                 uninit_sv, match, desc_p);
16463
16464         gv = NULL;
16465         o = cBINOPx(obase)->op_first;
16466         kid = cBINOPx(obase)->op_last;
16467
16468         /* get the av or hv, and optionally the gv */
16469         sv = NULL;
16470         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
16471             sv = PAD_SV(o->op_targ);
16472         }
16473         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
16474                 && cUNOPo->op_first->op_type == OP_GV)
16475         {
16476             gv = cGVOPx_gv(cUNOPo->op_first);
16477             if (!gv)
16478                 break;
16479             sv = o->op_type
16480                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
16481         }
16482         if (!sv)
16483             break;
16484
16485         if (kid && kid->op_type == OP_NEGATE) {
16486             negate = TRUE;
16487             kid = cUNOPx(kid)->op_first;
16488         }
16489
16490         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
16491             /* index is constant */
16492             SV* kidsv;
16493             if (negate) {
16494                 kidsv = newSVpvs_flags("-", SVs_TEMP);
16495                 sv_catsv(kidsv, cSVOPx_sv(kid));
16496             }
16497             else
16498                 kidsv = cSVOPx_sv(kid);
16499             if (match) {
16500                 if (SvMAGICAL(sv))
16501                     break;
16502                 if (obase->op_type == OP_HELEM) {
16503                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
16504                     if (!he || HeVAL(he) != uninit_sv)
16505                         break;
16506                 }
16507                 else {
16508                     SV * const  opsv = cSVOPx_sv(kid);
16509                     const IV  opsviv = SvIV(opsv);
16510                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
16511                         negate ? - opsviv : opsviv,
16512                         FALSE);
16513                     if (!svp || *svp != uninit_sv)
16514                         break;
16515                 }
16516             }
16517             if (obase->op_type == OP_HELEM)
16518                 return varname(gv, '%', o->op_targ,
16519                             kidsv, 0, FUV_SUBSCRIPT_HASH);
16520             else
16521                 return varname(gv, '@', o->op_targ, NULL,
16522                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
16523                     FUV_SUBSCRIPT_ARRAY);
16524         }
16525         else  {
16526             /* index is an expression;
16527              * attempt to find a match within the aggregate */
16528             if (obase->op_type == OP_HELEM) {
16529                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
16530                 if (keysv)
16531                     return varname(gv, '%', o->op_targ,
16532                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
16533             }
16534             else {
16535                 const SSize_t index
16536                     = find_array_subscript((const AV *)sv, uninit_sv);
16537                 if (index >= 0)
16538                     return varname(gv, '@', o->op_targ,
16539                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
16540             }
16541             if (match)
16542                 break;
16543             return varname(gv,
16544                 (char)((o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
16545                 ? '@' : '%'),
16546                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
16547         }
16548         NOT_REACHED; /* NOTREACHED */
16549     }
16550
16551     case OP_MULTIDEREF: {
16552         /* If we were executing OP_MULTIDEREF when the undef warning
16553          * triggered, then it must be one of the index values within
16554          * that triggered it. If not, then the only possibility is that
16555          * the value retrieved by the last aggregate index might be the
16556          * culprit. For the former, we set PL_multideref_pc each time before
16557          * using an index, so work though the item list until we reach
16558          * that point. For the latter, just work through the entire item
16559          * list; the last aggregate retrieved will be the candidate.
16560          * There is a third rare possibility: something triggered
16561          * magic while fetching an array/hash element. Just display
16562          * nothing in this case.
16563          */
16564
16565         /* the named aggregate, if any */
16566         PADOFFSET agg_targ = 0;
16567         GV       *agg_gv   = NULL;
16568         /* the last-seen index */
16569         UV        index_type;
16570         PADOFFSET index_targ;
16571         GV       *index_gv;
16572         IV        index_const_iv = 0; /* init for spurious compiler warn */
16573         SV       *index_const_sv;
16574         int       depth = 0;  /* how many array/hash lookups we've done */
16575
16576         UNOP_AUX_item *items = cUNOP_AUXx(obase)->op_aux;
16577         UNOP_AUX_item *last = NULL;
16578         UV actions = items->uv;
16579         bool is_hv;
16580
16581         if (PL_op == obase) {
16582             last = PL_multideref_pc;
16583             assert(last >= items && last <= items + items[-1].uv);
16584         }
16585
16586         assert(actions);
16587
16588         while (1) {
16589             is_hv = FALSE;
16590             switch (actions & MDEREF_ACTION_MASK) {
16591
16592             case MDEREF_reload:
16593                 actions = (++items)->uv;
16594                 continue;
16595
16596             case MDEREF_HV_padhv_helem:               /* $lex{...} */
16597                 is_hv = TRUE;
16598                 /* FALLTHROUGH */
16599             case MDEREF_AV_padav_aelem:               /* $lex[...] */
16600                 agg_targ = (++items)->pad_offset;
16601                 agg_gv = NULL;
16602                 break;
16603
16604             case MDEREF_HV_gvhv_helem:                /* $pkg{...} */
16605                 is_hv = TRUE;
16606                 /* FALLTHROUGH */
16607             case MDEREF_AV_gvav_aelem:                /* $pkg[...] */
16608                 agg_targ = 0;
16609                 agg_gv = (GV*)UNOP_AUX_item_sv(++items);
16610                 assert(isGV_with_GP(agg_gv));
16611                 break;
16612
16613             case MDEREF_HV_gvsv_vivify_rv2hv_helem:   /* $pkg->{...} */
16614             case MDEREF_HV_padsv_vivify_rv2hv_helem:  /* $lex->{...} */
16615                 ++items;
16616                 /* FALLTHROUGH */
16617             case MDEREF_HV_pop_rv2hv_helem:           /* expr->{...} */
16618             case MDEREF_HV_vivify_rv2hv_helem:        /* vivify, ->{...} */
16619                 agg_targ = 0;
16620                 agg_gv   = NULL;
16621                 is_hv    = TRUE;
16622                 break;
16623
16624             case MDEREF_AV_gvsv_vivify_rv2av_aelem:   /* $pkg->[...] */
16625             case MDEREF_AV_padsv_vivify_rv2av_aelem:  /* $lex->[...] */
16626                 ++items;
16627                 /* FALLTHROUGH */
16628             case MDEREF_AV_pop_rv2av_aelem:           /* expr->[...] */
16629             case MDEREF_AV_vivify_rv2av_aelem:        /* vivify, ->[...] */
16630                 agg_targ = 0;
16631                 agg_gv   = NULL;
16632             } /* switch */
16633
16634             index_targ     = 0;
16635             index_gv       = NULL;
16636             index_const_sv = NULL;
16637
16638             index_type = (actions & MDEREF_INDEX_MASK);
16639             switch (index_type) {
16640             case MDEREF_INDEX_none:
16641                 break;
16642             case MDEREF_INDEX_const:
16643                 if (is_hv)
16644                     index_const_sv = UNOP_AUX_item_sv(++items)
16645                 else
16646                     index_const_iv = (++items)->iv;
16647                 break;
16648             case MDEREF_INDEX_padsv:
16649                 index_targ = (++items)->pad_offset;
16650                 break;
16651             case MDEREF_INDEX_gvsv:
16652                 index_gv = (GV*)UNOP_AUX_item_sv(++items);
16653                 assert(isGV_with_GP(index_gv));
16654                 break;
16655             }
16656
16657             if (index_type != MDEREF_INDEX_none)
16658                 depth++;
16659
16660             if (   index_type == MDEREF_INDEX_none
16661                 || (actions & MDEREF_FLAG_last)
16662                 || (last && items >= last)
16663             )
16664                 break;
16665
16666             actions >>= MDEREF_SHIFT;
16667         } /* while */
16668
16669         if (PL_op == obase) {
16670             /* most likely index was undef */
16671
16672             *desc_p = (    (actions & MDEREF_FLAG_last)
16673                         && (obase->op_private
16674                                 & (OPpMULTIDEREF_EXISTS|OPpMULTIDEREF_DELETE)))
16675                         ?
16676                             (obase->op_private & OPpMULTIDEREF_EXISTS)
16677                                 ? "exists"
16678                                 : "delete"
16679                         : is_hv ? "hash element" : "array element";
16680             assert(index_type != MDEREF_INDEX_none);
16681             if (index_gv) {
16682                 if (GvSV(index_gv) == uninit_sv)
16683                     return varname(index_gv, '$', 0, NULL, 0,
16684                                                     FUV_SUBSCRIPT_NONE);
16685                 else
16686                     return NULL;
16687             }
16688             if (index_targ) {
16689                 if (PL_curpad[index_targ] == uninit_sv)
16690                     return varname(NULL, '$', index_targ,
16691                                     NULL, 0, FUV_SUBSCRIPT_NONE);
16692                 else
16693                     return NULL;
16694             }
16695             /* If we got to this point it was undef on a const subscript,
16696              * so magic probably involved, e.g. $ISA[0]. Give up. */
16697             return NULL;
16698         }
16699
16700         /* the SV returned by pp_multideref() was undef, if anything was */
16701
16702         if (depth != 1)
16703             break;
16704
16705         if (agg_targ)
16706             sv = PAD_SV(agg_targ);
16707         else if (agg_gv)
16708             sv = is_hv ? MUTABLE_SV(GvHV(agg_gv)) : MUTABLE_SV(GvAV(agg_gv));
16709         else
16710             break;
16711
16712         if (index_type == MDEREF_INDEX_const) {
16713             if (match) {
16714                 if (SvMAGICAL(sv))
16715                     break;
16716                 if (is_hv) {
16717                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), index_const_sv, 0, 0);
16718                     if (!he || HeVAL(he) != uninit_sv)
16719                         break;
16720                 }
16721                 else {
16722                     SV * const * const svp =
16723                             av_fetch(MUTABLE_AV(sv), index_const_iv, FALSE);
16724                     if (!svp || *svp != uninit_sv)
16725                         break;
16726                 }
16727             }
16728             return is_hv
16729                 ? varname(agg_gv, '%', agg_targ,
16730                                 index_const_sv, 0,    FUV_SUBSCRIPT_HASH)
16731                 : varname(agg_gv, '@', agg_targ,
16732                                 NULL, index_const_iv, FUV_SUBSCRIPT_ARRAY);
16733         }
16734         else  {
16735             /* index is an var */
16736             if (is_hv) {
16737                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
16738                 if (keysv)
16739                     return varname(agg_gv, '%', agg_targ,
16740                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
16741             }
16742             else {
16743                 const SSize_t index
16744                     = find_array_subscript((const AV *)sv, uninit_sv);
16745                 if (index >= 0)
16746                     return varname(agg_gv, '@', agg_targ,
16747                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
16748             }
16749             if (match)
16750                 break;
16751             return varname(agg_gv,
16752                 is_hv ? '%' : '@',
16753                 agg_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
16754         }
16755         NOT_REACHED; /* NOTREACHED */
16756     }
16757
16758     case OP_AASSIGN:
16759         /* only examine RHS */
16760         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv,
16761                                                                 match, desc_p);
16762
16763     case OP_OPEN:
16764         o = cUNOPx(obase)->op_first;
16765         if (   o->op_type == OP_PUSHMARK
16766            || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)
16767         )
16768             o = OpSIBLING(o);
16769
16770         if (!OpHAS_SIBLING(o)) {
16771             /* one-arg version of open is highly magical */
16772
16773             if (o->op_type == OP_GV) { /* open FOO; */
16774                 gv = cGVOPx_gv(o);
16775                 if (match && GvSV(gv) != uninit_sv)
16776                     break;
16777                 return varname(gv, '$', 0,
16778                             NULL, 0, FUV_SUBSCRIPT_NONE);
16779             }
16780             /* other possibilities not handled are:
16781              * open $x; or open my $x;  should return '${*$x}'
16782              * open expr;               should return '$'.expr ideally
16783              */
16784              break;
16785         }
16786         match = 1;
16787         goto do_op;
16788
16789     /* ops where $_ may be an implicit arg */
16790     case OP_TRANS:
16791     case OP_TRANSR:
16792     case OP_SUBST:
16793     case OP_MATCH:
16794         if ( !(obase->op_flags & OPf_STACKED)) {
16795             if (uninit_sv == DEFSV)
16796                 return newSVpvs_flags("$_", SVs_TEMP);
16797             else if (obase->op_targ
16798                   && uninit_sv == PAD_SVl(obase->op_targ))
16799                 return varname(NULL, '$', obase->op_targ, NULL, 0,
16800                                FUV_SUBSCRIPT_NONE);
16801         }
16802         goto do_op;
16803
16804     case OP_PRTF:
16805     case OP_PRINT:
16806     case OP_SAY:
16807         match = 1; /* print etc can return undef on defined args */
16808         /* skip filehandle as it can't produce 'undef' warning  */
16809         o = cUNOPx(obase)->op_first;
16810         if ((obase->op_flags & OPf_STACKED)
16811             &&
16812                (   o->op_type == OP_PUSHMARK
16813                || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)))
16814             o = OpSIBLING(OpSIBLING(o));
16815         goto do_op2;
16816
16817
16818     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
16819     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
16820
16821         /* the following ops are capable of returning PL_sv_undef even for
16822          * defined arg(s) */
16823
16824     case OP_BACKTICK:
16825     case OP_PIPE_OP:
16826     case OP_FILENO:
16827     case OP_BINMODE:
16828     case OP_TIED:
16829     case OP_GETC:
16830     case OP_SYSREAD:
16831     case OP_SEND:
16832     case OP_IOCTL:
16833     case OP_SOCKET:
16834     case OP_SOCKPAIR:
16835     case OP_BIND:
16836     case OP_CONNECT:
16837     case OP_LISTEN:
16838     case OP_ACCEPT:
16839     case OP_SHUTDOWN:
16840     case OP_SSOCKOPT:
16841     case OP_GETPEERNAME:
16842     case OP_FTRREAD:
16843     case OP_FTRWRITE:
16844     case OP_FTREXEC:
16845     case OP_FTROWNED:
16846     case OP_FTEREAD:
16847     case OP_FTEWRITE:
16848     case OP_FTEEXEC:
16849     case OP_FTEOWNED:
16850     case OP_FTIS:
16851     case OP_FTZERO:
16852     case OP_FTSIZE:
16853     case OP_FTFILE:
16854     case OP_FTDIR:
16855     case OP_FTLINK:
16856     case OP_FTPIPE:
16857     case OP_FTSOCK:
16858     case OP_FTBLK:
16859     case OP_FTCHR:
16860     case OP_FTTTY:
16861     case OP_FTSUID:
16862     case OP_FTSGID:
16863     case OP_FTSVTX:
16864     case OP_FTTEXT:
16865     case OP_FTBINARY:
16866     case OP_FTMTIME:
16867     case OP_FTATIME:
16868     case OP_FTCTIME:
16869     case OP_READLINK:
16870     case OP_OPEN_DIR:
16871     case OP_READDIR:
16872     case OP_TELLDIR:
16873     case OP_SEEKDIR:
16874     case OP_REWINDDIR:
16875     case OP_CLOSEDIR:
16876     case OP_GMTIME:
16877     case OP_ALARM:
16878     case OP_SEMGET:
16879     case OP_GETLOGIN:
16880     case OP_SUBSTR:
16881     case OP_AEACH:
16882     case OP_EACH:
16883     case OP_SORT:
16884     case OP_CALLER:
16885     case OP_DOFILE:
16886     case OP_PROTOTYPE:
16887     case OP_NCMP:
16888     case OP_SMARTMATCH:
16889     case OP_UNPACK:
16890     case OP_SYSOPEN:
16891     case OP_SYSSEEK:
16892         match = 1;
16893         goto do_op;
16894
16895     case OP_ENTERSUB:
16896     case OP_GOTO:
16897         /* XXX tmp hack: these two may call an XS sub, and currently
16898           XS subs don't have a SUB entry on the context stack, so CV and
16899           pad determination goes wrong, and BAD things happen. So, just
16900           don't try to determine the value under those circumstances.
16901           Need a better fix at dome point. DAPM 11/2007 */
16902         break;
16903
16904     case OP_FLIP:
16905     case OP_FLOP:
16906     {
16907         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
16908         if (gv && GvSV(gv) == uninit_sv)
16909             return newSVpvs_flags("$.", SVs_TEMP);
16910         goto do_op;
16911     }
16912
16913     case OP_POS:
16914         /* def-ness of rval pos() is independent of the def-ness of its arg */
16915         if ( !(obase->op_flags & OPf_MOD))
16916             break;
16917         /* FALLTHROUGH */
16918
16919     case OP_SCHOMP:
16920     case OP_CHOMP:
16921         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
16922             return newSVpvs_flags("${$/}", SVs_TEMP);
16923         /* FALLTHROUGH */
16924
16925     default:
16926     do_op:
16927         if (!(obase->op_flags & OPf_KIDS))
16928             break;
16929         o = cUNOPx(obase)->op_first;
16930         
16931     do_op2:
16932         if (!o)
16933             break;
16934
16935         /* This loop checks all the kid ops, skipping any that cannot pos-
16936          * sibly be responsible for the uninitialized value; i.e., defined
16937          * constants and ops that return nothing.  If there is only one op
16938          * left that is not skipped, then we *know* it is responsible for
16939          * the uninitialized value.  If there is more than one op left, we
16940          * have to look for an exact match in the while() loop below.
16941          * Note that we skip padrange, because the individual pad ops that
16942          * it replaced are still in the tree, so we work on them instead.
16943          */
16944         o2 = NULL;
16945         for (kid=o; kid; kid = OpSIBLING(kid)) {
16946             const OPCODE type = kid->op_type;
16947             if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
16948               || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
16949               || (type == OP_PUSHMARK)
16950               || (type == OP_PADRANGE)
16951             )
16952             continue;
16953
16954             if (o2) { /* more than one found */
16955                 o2 = NULL;
16956                 break;
16957             }
16958             o2 = kid;
16959         }
16960         if (o2)
16961             return find_uninit_var(o2, uninit_sv, match, desc_p);
16962
16963         /* scan all args */
16964         while (o) {
16965             sv = find_uninit_var(o, uninit_sv, 1, desc_p);
16966             if (sv)
16967                 return sv;
16968             o = OpSIBLING(o);
16969         }
16970         break;
16971     }
16972     return NULL;
16973 }
16974
16975
16976 /*
16977 =for apidoc report_uninit
16978
16979 Print appropriate "Use of uninitialized variable" warning.
16980
16981 =cut
16982 */
16983
16984 void
16985 Perl_report_uninit(pTHX_ const SV *uninit_sv)
16986 {
16987     const char *desc = NULL;
16988     SV* varname = NULL;
16989
16990     if (PL_op) {
16991         desc = PL_op->op_type == OP_STRINGIFY && PL_op->op_folded
16992                 ? "join or string"
16993                 : PL_op->op_type == OP_MULTICONCAT
16994                     && (PL_op->op_private & OPpMULTICONCAT_FAKE)
16995                 ? "sprintf"
16996                 : OP_DESC(PL_op);
16997         if (uninit_sv && PL_curpad) {
16998             varname = find_uninit_var(PL_op, uninit_sv, 0, &desc);
16999             if (varname)
17000                 sv_insert(varname, 0, 0, " ", 1);
17001         }
17002     }
17003     else if (PL_curstackinfo->si_type == PERLSI_SORT && cxstack_ix == 0)
17004         /* we've reached the end of a sort block or sub,
17005          * and the uninit value is probably what that code returned */
17006         desc = "sort";
17007
17008     /* PL_warn_uninit_sv is constant */
17009     GCC_DIAG_IGNORE(-Wformat-nonliteral);
17010     if (desc)
17011         /* diag_listed_as: Use of uninitialized value%s */
17012         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
17013                 SVfARG(varname ? varname : &PL_sv_no),
17014                 " in ", desc);
17015     else
17016         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
17017                 "", "", "");
17018     GCC_DIAG_RESTORE;
17019 }
17020
17021 /*
17022  * ex: set ts=8 sts=4 sw=4 et:
17023  */