This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Stop test suite filling /tmp
[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 #ifdef PERL_OLD_COPY_ON_WRITE
129 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
130 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
131 #endif
132
133 /* ============================================================================
134
135 =head1 Allocation and deallocation of SVs.
136 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
137 sv, av, hv...) contains type and reference count information, and for
138 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
139 contains fields specific to each type.  Some types store all they need
140 in the head, so don't have a body.
141
142 In all but the most memory-paranoid configurations (ex: PURIFY), heads
143 and bodies are allocated out of arenas, which by default are
144 approximately 4K chunks of memory parcelled up into N heads or bodies.
145 Sv-bodies are allocated by their sv-type, guaranteeing size
146 consistency needed to allocate safely from arrays.
147
148 For SV-heads, the first slot in each arena is reserved, and holds a
149 link to the next arena, some flags, and a note of the number of slots.
150 Snaked through each arena chain is a linked list of free items; when
151 this becomes empty, an extra arena is allocated and divided up into N
152 items which are threaded into the free list.
153
154 SV-bodies are similar, but they use arena-sets by default, which
155 separate the link and info from the arena itself, and reclaim the 1st
156 slot in the arena.  SV-bodies are further described later.
157
158 The following global variables are associated with arenas:
159
160  PL_sv_arenaroot     pointer to list of SV arenas
161  PL_sv_root          pointer to list of free SV structures
162
163  PL_body_arenas      head of linked-list of body arenas
164  PL_body_roots[]     array of pointers to list of free bodies of svtype
165                      arrays are indexed by the svtype needed
166
167 A few special SV heads are not allocated from an arena, but are
168 instead directly created in the interpreter structure, eg PL_sv_undef.
169 The size of arenas can be changed from the default by setting
170 PERL_ARENA_SIZE appropriately at compile time.
171
172 The SV arena serves the secondary purpose of allowing still-live SVs
173 to be located and destroyed during final cleanup.
174
175 At the lowest level, the macros new_SV() and del_SV() grab and free
176 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
177 to return the SV to the free list with error checking.) new_SV() calls
178 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
179 SVs in the free list have their SvTYPE field set to all ones.
180
181 At the time of very final cleanup, sv_free_arenas() is called from
182 perl_destruct() to physically free all the arenas allocated since the
183 start of the interpreter.
184
185 The function visit() scans the SV arenas list, and calls a specified
186 function for each SV it finds which is still live - ie which has an SvTYPE
187 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
188 following functions (specified as [function that calls visit()] / [function
189 called by visit() for each SV]):
190
191     sv_report_used() / do_report_used()
192                         dump all remaining SVs (debugging aid)
193
194     sv_clean_objs() / do_clean_objs(),do_clean_named_objs(),
195                       do_clean_named_io_objs(),do_curse()
196                         Attempt to free all objects pointed to by RVs,
197                         try to do the same for all objects indir-
198                         ectly referenced by typeglobs too, and
199                         then do a final sweep, cursing any
200                         objects that remain.  Called once from
201                         perl_destruct(), prior to calling sv_clean_all()
202                         below.
203
204     sv_clean_all() / do_clean_all()
205                         SvREFCNT_dec(sv) each remaining SV, possibly
206                         triggering an sv_free(). It also sets the
207                         SVf_BREAK flag on the SV to indicate that the
208                         refcnt has been artificially lowered, and thus
209                         stopping sv_free() from giving spurious warnings
210                         about SVs which unexpectedly have a refcnt
211                         of zero.  called repeatedly from perl_destruct()
212                         until there are no SVs left.
213
214 =head2 Arena allocator API Summary
215
216 Private API to rest of sv.c
217
218     new_SV(),  del_SV(),
219
220     new_XPVNV(), del_XPVGV(),
221     etc
222
223 Public API:
224
225     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
226
227 =cut
228
229  * ========================================================================= */
230
231 /*
232  * "A time to plant, and a time to uproot what was planted..."
233  */
234
235 #ifdef PERL_MEM_LOG
236 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
237             Perl_mem_log_new_sv(sv, file, line, func)
238 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
239             Perl_mem_log_del_sv(sv, file, line, func)
240 #else
241 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
242 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
243 #endif
244
245 #ifdef DEBUG_LEAKING_SCALARS
246 #  define FREE_SV_DEBUG_FILE(sv) STMT_START { \
247         if ((sv)->sv_debug_file) PerlMemShared_free((sv)->sv_debug_file); \
248     } STMT_END
249 #  define DEBUG_SV_SERIAL(sv)                                               \
250     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
251             PTR2UV(sv), (long)(sv)->sv_debug_serial))
252 #else
253 #  define FREE_SV_DEBUG_FILE(sv)
254 #  define DEBUG_SV_SERIAL(sv)   NOOP
255 #endif
256
257 #ifdef PERL_POISON
258 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
259 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
260 /* Whilst I'd love to do this, it seems that things like to check on
261    unreferenced scalars
262 #  define POISON_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
263 */
264 #  define POISON_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
265                                 PoisonNew(&SvREFCNT(sv), 1, U32)
266 #else
267 #  define SvARENA_CHAIN(sv)     SvANY(sv)
268 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
269 #  define POISON_SV_HEAD(sv)
270 #endif
271
272 /* Mark an SV head as unused, and add to free list.
273  *
274  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
275  * its refcount artificially decremented during global destruction, so
276  * there may be dangling pointers to it. The last thing we want in that
277  * case is for it to be reused. */
278
279 #define plant_SV(p) \
280     STMT_START {                                        \
281         const U32 old_flags = SvFLAGS(p);                       \
282         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
283         DEBUG_SV_SERIAL(p);                             \
284         FREE_SV_DEBUG_FILE(p);                          \
285         POISON_SV_HEAD(p);                              \
286         SvFLAGS(p) = SVTYPEMASK;                        \
287         if (!(old_flags & SVf_BREAK)) {         \
288             SvARENA_CHAIN_SET(p, PL_sv_root);   \
289             PL_sv_root = (p);                           \
290         }                                               \
291         --PL_sv_count;                                  \
292     } STMT_END
293
294 #define uproot_SV(p) \
295     STMT_START {                                        \
296         (p) = PL_sv_root;                               \
297         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
298         ++PL_sv_count;                                  \
299     } STMT_END
300
301
302 /* make some more SVs by adding another arena */
303
304 STATIC SV*
305 S_more_sv(pTHX)
306 {
307     SV* sv;
308     char *chunk;                /* must use New here to match call to */
309     Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
310     sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
311     uproot_SV(sv);
312     return sv;
313 }
314
315 /* new_SV(): return a new, empty SV head */
316
317 #ifdef DEBUG_LEAKING_SCALARS
318 /* provide a real function for a debugger to play with */
319 STATIC SV*
320 S_new_SV(pTHX_ const char *file, int line, const char *func)
321 {
322     SV* sv;
323
324     if (PL_sv_root)
325         uproot_SV(sv);
326     else
327         sv = S_more_sv(aTHX);
328     SvANY(sv) = 0;
329     SvREFCNT(sv) = 1;
330     SvFLAGS(sv) = 0;
331     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
332     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
333                 ? PL_parser->copline
334                 :  PL_curcop
335                     ? CopLINE(PL_curcop)
336                     : 0
337             );
338     sv->sv_debug_inpad = 0;
339     sv->sv_debug_parent = NULL;
340     sv->sv_debug_file = PL_curcop ? savesharedpv(CopFILE(PL_curcop)): NULL;
341
342     sv->sv_debug_serial = PL_sv_serial++;
343
344     MEM_LOG_NEW_SV(sv, file, line, func);
345     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
346             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
347
348     return sv;
349 }
350 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
351
352 #else
353 #  define new_SV(p) \
354     STMT_START {                                        \
355         if (PL_sv_root)                                 \
356             uproot_SV(p);                               \
357         else                                            \
358             (p) = S_more_sv(aTHX);                      \
359         SvANY(p) = 0;                                   \
360         SvREFCNT(p) = 1;                                \
361         SvFLAGS(p) = 0;                                 \
362         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
363     } STMT_END
364 #endif
365
366
367 /* del_SV(): return an empty SV head to the free list */
368
369 #ifdef DEBUGGING
370
371 #define del_SV(p) \
372     STMT_START {                                        \
373         if (DEBUG_D_TEST)                               \
374             del_sv(p);                                  \
375         else                                            \
376             plant_SV(p);                                \
377     } STMT_END
378
379 STATIC void
380 S_del_sv(pTHX_ SV *p)
381 {
382     PERL_ARGS_ASSERT_DEL_SV;
383
384     if (DEBUG_D_TEST) {
385         SV* sva;
386         bool ok = 0;
387         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
388             const SV * const sv = sva + 1;
389             const SV * const svend = &sva[SvREFCNT(sva)];
390             if (p >= sv && p < svend) {
391                 ok = 1;
392                 break;
393             }
394         }
395         if (!ok) {
396             Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
397                              "Attempt to free non-arena SV: 0x%"UVxf
398                              pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
399             return;
400         }
401     }
402     plant_SV(p);
403 }
404
405 #else /* ! DEBUGGING */
406
407 #define del_SV(p)   plant_SV(p)
408
409 #endif /* DEBUGGING */
410
411 /*
412  * Bodyless IVs and NVs!
413  *
414  * Since 5.9.2, we can avoid allocating a body for SVt_IV-type SVs.
415  * Since the larger IV-holding variants of SVs store their integer
416  * values in their respective bodies, the family of SvIV() accessor
417  * macros would  naively have to branch on the SV type to find the
418  * integer value either in the HEAD or BODY. In order to avoid this
419  * expensive branch, a clever soul has deployed a great hack:
420  * We set up the SvANY pointer such that instead of pointing to a
421  * real body, it points into the memory before the location of the
422  * head. We compute this pointer such that the location of
423  * the integer member of the hypothetical body struct happens to
424  * be the same as the location of the integer member of the bodyless
425  * SV head. This now means that the SvIV() family of accessors can
426  * always read from the (hypothetical or real) body via SvANY.
427  *
428  * Since the 5.21 dev series, we employ the same trick for NVs
429  * if the architecture can support it (NVSIZE <= IVSIZE).
430  */
431
432 /* The following two macros compute the necessary offsets for the above
433  * trick and store them in SvANY for SvIV() (and friends) to use. */
434 #define SET_SVANY_FOR_BODYLESS_IV(sv) \
435         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv))
436
437 #define SET_SVANY_FOR_BODYLESS_NV(sv) \
438         SvANY(sv) = (XPVNV*)((char*)&(sv->sv_u.svu_nv) - STRUCT_OFFSET(XPVNV, xnv_u.xnv_nv))
439
440 /*
441 =head1 SV Manipulation Functions
442
443 =for apidoc sv_add_arena
444
445 Given a chunk of memory, link it to the head of the list of arenas,
446 and split it into a list of free SVs.
447
448 =cut
449 */
450
451 static void
452 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
453 {
454     SV *const sva = MUTABLE_SV(ptr);
455     SV* sv;
456     SV* svend;
457
458     PERL_ARGS_ASSERT_SV_ADD_ARENA;
459
460     /* The first SV in an arena isn't an SV. */
461     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
462     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
463     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
464
465     PL_sv_arenaroot = sva;
466     PL_sv_root = sva + 1;
467
468     svend = &sva[SvREFCNT(sva) - 1];
469     sv = sva + 1;
470     while (sv < svend) {
471         SvARENA_CHAIN_SET(sv, (sv + 1));
472 #ifdef DEBUGGING
473         SvREFCNT(sv) = 0;
474 #endif
475         /* Must always set typemask because it's always checked in on cleanup
476            when the arenas are walked looking for objects.  */
477         SvFLAGS(sv) = SVTYPEMASK;
478         sv++;
479     }
480     SvARENA_CHAIN_SET(sv, 0);
481 #ifdef DEBUGGING
482     SvREFCNT(sv) = 0;
483 #endif
484     SvFLAGS(sv) = SVTYPEMASK;
485 }
486
487 /* visit(): call the named function for each non-free SV in the arenas
488  * whose flags field matches the flags/mask args. */
489
490 STATIC I32
491 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
492 {
493     SV* sva;
494     I32 visited = 0;
495
496     PERL_ARGS_ASSERT_VISIT;
497
498     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
499         const SV * const svend = &sva[SvREFCNT(sva)];
500         SV* sv;
501         for (sv = sva + 1; sv < svend; ++sv) {
502             if (SvTYPE(sv) != (svtype)SVTYPEMASK
503                     && (sv->sv_flags & mask) == flags
504                     && SvREFCNT(sv))
505             {
506                 (*f)(aTHX_ sv);
507                 ++visited;
508             }
509         }
510     }
511     return visited;
512 }
513
514 #ifdef DEBUGGING
515
516 /* called by sv_report_used() for each live SV */
517
518 static void
519 do_report_used(pTHX_ SV *const sv)
520 {
521     if (SvTYPE(sv) != (svtype)SVTYPEMASK) {
522         PerlIO_printf(Perl_debug_log, "****\n");
523         sv_dump(sv);
524     }
525 }
526 #endif
527
528 /*
529 =for apidoc sv_report_used
530
531 Dump the contents of all SVs not yet freed (debugging aid).
532
533 =cut
534 */
535
536 void
537 Perl_sv_report_used(pTHX)
538 {
539 #ifdef DEBUGGING
540     visit(do_report_used, 0, 0);
541 #else
542     PERL_UNUSED_CONTEXT;
543 #endif
544 }
545
546 /* called by sv_clean_objs() for each live SV */
547
548 static void
549 do_clean_objs(pTHX_ SV *const ref)
550 {
551     assert (SvROK(ref));
552     {
553         SV * const target = SvRV(ref);
554         if (SvOBJECT(target)) {
555             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
556             if (SvWEAKREF(ref)) {
557                 sv_del_backref(target, ref);
558                 SvWEAKREF_off(ref);
559                 SvRV_set(ref, NULL);
560             } else {
561                 SvROK_off(ref);
562                 SvRV_set(ref, NULL);
563                 SvREFCNT_dec_NN(target);
564             }
565         }
566     }
567 }
568
569
570 /* clear any slots in a GV which hold objects - except IO;
571  * called by sv_clean_objs() for each live GV */
572
573 static void
574 do_clean_named_objs(pTHX_ SV *const sv)
575 {
576     SV *obj;
577     assert(SvTYPE(sv) == SVt_PVGV);
578     assert(isGV_with_GP(sv));
579     if (!GvGP(sv))
580         return;
581
582     /* freeing GP entries may indirectly free the current GV;
583      * hold onto it while we mess with the GP slots */
584     SvREFCNT_inc(sv);
585
586     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
587         DEBUG_D((PerlIO_printf(Perl_debug_log,
588                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
589         GvSV(sv) = NULL;
590         SvREFCNT_dec_NN(obj);
591     }
592     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
593         DEBUG_D((PerlIO_printf(Perl_debug_log,
594                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
595         GvAV(sv) = NULL;
596         SvREFCNT_dec_NN(obj);
597     }
598     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
599         DEBUG_D((PerlIO_printf(Perl_debug_log,
600                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
601         GvHV(sv) = NULL;
602         SvREFCNT_dec_NN(obj);
603     }
604     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
605         DEBUG_D((PerlIO_printf(Perl_debug_log,
606                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
607         GvCV_set(sv, NULL);
608         SvREFCNT_dec_NN(obj);
609     }
610     SvREFCNT_dec_NN(sv); /* undo the inc above */
611 }
612
613 /* clear any IO slots in a GV which hold objects (except stderr, defout);
614  * called by sv_clean_objs() for each live GV */
615
616 static void
617 do_clean_named_io_objs(pTHX_ SV *const sv)
618 {
619     SV *obj;
620     assert(SvTYPE(sv) == SVt_PVGV);
621     assert(isGV_with_GP(sv));
622     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
623         return;
624
625     SvREFCNT_inc(sv);
626     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
627         DEBUG_D((PerlIO_printf(Perl_debug_log,
628                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
629         GvIOp(sv) = NULL;
630         SvREFCNT_dec_NN(obj);
631     }
632     SvREFCNT_dec_NN(sv); /* undo the inc above */
633 }
634
635 /* Void wrapper to pass to visit() */
636 static void
637 do_curse(pTHX_ SV * const sv) {
638     if ((PL_stderrgv && GvGP(PL_stderrgv) && (SV*)GvIO(PL_stderrgv) == sv)
639      || (PL_defoutgv && GvGP(PL_defoutgv) && (SV*)GvIO(PL_defoutgv) == sv))
640         return;
641     (void)curse(sv, 0);
642 }
643
644 /*
645 =for apidoc sv_clean_objs
646
647 Attempt to destroy all objects not yet freed.
648
649 =cut
650 */
651
652 void
653 Perl_sv_clean_objs(pTHX)
654 {
655     GV *olddef, *olderr;
656     PL_in_clean_objs = TRUE;
657     visit(do_clean_objs, SVf_ROK, SVf_ROK);
658     /* Some barnacles may yet remain, clinging to typeglobs.
659      * Run the non-IO destructors first: they may want to output
660      * error messages, close files etc */
661     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
662     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
663     /* And if there are some very tenacious barnacles clinging to arrays,
664        closures, or what have you.... */
665     visit(do_curse, SVs_OBJECT, SVs_OBJECT);
666     olddef = PL_defoutgv;
667     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
668     if (olddef && isGV_with_GP(olddef))
669         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
670     olderr = PL_stderrgv;
671     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
672     if (olderr && isGV_with_GP(olderr))
673         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
674     SvREFCNT_dec(olddef);
675     PL_in_clean_objs = FALSE;
676 }
677
678 /* called by sv_clean_all() for each live SV */
679
680 static void
681 do_clean_all(pTHX_ SV *const sv)
682 {
683     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
684         /* don't clean pid table and strtab */
685         return;
686     }
687     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
688     SvFLAGS(sv) |= SVf_BREAK;
689     SvREFCNT_dec_NN(sv);
690 }
691
692 /*
693 =for apidoc sv_clean_all
694
695 Decrement the refcnt of each remaining SV, possibly triggering a
696 cleanup.  This function may have to be called multiple times to free
697 SVs which are in complex self-referential hierarchies.
698
699 =cut
700 */
701
702 I32
703 Perl_sv_clean_all(pTHX)
704 {
705     I32 cleaned;
706     PL_in_clean_all = TRUE;
707     cleaned = visit(do_clean_all, 0,0);
708     return cleaned;
709 }
710
711 /*
712   ARENASETS: a meta-arena implementation which separates arena-info
713   into struct arena_set, which contains an array of struct
714   arena_descs, each holding info for a single arena.  By separating
715   the meta-info from the arena, we recover the 1st slot, formerly
716   borrowed for list management.  The arena_set is about the size of an
717   arena, avoiding the needless malloc overhead of a naive linked-list.
718
719   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
720   memory in the last arena-set (1/2 on average).  In trade, we get
721   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
722   smaller types).  The recovery of the wasted space allows use of
723   small arenas for large, rare body types, by changing array* fields
724   in body_details_by_type[] below.
725 */
726 struct arena_desc {
727     char       *arena;          /* the raw storage, allocated aligned */
728     size_t      size;           /* its size ~4k typ */
729     svtype      utype;          /* bodytype stored in arena */
730 };
731
732 struct arena_set;
733
734 /* Get the maximum number of elements in set[] such that struct arena_set
735    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
736    therefore likely to be 1 aligned memory page.  */
737
738 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
739                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
740
741 struct arena_set {
742     struct arena_set* next;
743     unsigned int   set_size;    /* ie ARENAS_PER_SET */
744     unsigned int   curr;        /* index of next available arena-desc */
745     struct arena_desc set[ARENAS_PER_SET];
746 };
747
748 /*
749 =for apidoc sv_free_arenas
750
751 Deallocate the memory used by all arenas.  Note that all the individual SV
752 heads and bodies within the arenas must already have been freed.
753
754 =cut
755
756 */
757 void
758 Perl_sv_free_arenas(pTHX)
759 {
760     SV* sva;
761     SV* svanext;
762     unsigned int i;
763
764     /* Free arenas here, but be careful about fake ones.  (We assume
765        contiguity of the fake ones with the corresponding real ones.) */
766
767     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
768         svanext = MUTABLE_SV(SvANY(sva));
769         while (svanext && SvFAKE(svanext))
770             svanext = MUTABLE_SV(SvANY(svanext));
771
772         if (!SvFAKE(sva))
773             Safefree(sva);
774     }
775
776     {
777         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
778
779         while (aroot) {
780             struct arena_set *current = aroot;
781             i = aroot->curr;
782             while (i--) {
783                 assert(aroot->set[i].arena);
784                 Safefree(aroot->set[i].arena);
785             }
786             aroot = aroot->next;
787             Safefree(current);
788         }
789     }
790     PL_body_arenas = 0;
791
792     i = PERL_ARENA_ROOTS_SIZE;
793     while (i--)
794         PL_body_roots[i] = 0;
795
796     PL_sv_arenaroot = 0;
797     PL_sv_root = 0;
798 }
799
800 /*
801   Here are mid-level routines that manage the allocation of bodies out
802   of the various arenas.  There are 5 kinds of arenas:
803
804   1. SV-head arenas, which are discussed and handled above
805   2. regular body arenas
806   3. arenas for reduced-size bodies
807   4. Hash-Entry arenas
808
809   Arena types 2 & 3 are chained by body-type off an array of
810   arena-root pointers, which is indexed by svtype.  Some of the
811   larger/less used body types are malloced singly, since a large
812   unused block of them is wasteful.  Also, several svtypes dont have
813   bodies; the data fits into the sv-head itself.  The arena-root
814   pointer thus has a few unused root-pointers (which may be hijacked
815   later for arena types 4,5)
816
817   3 differs from 2 as an optimization; some body types have several
818   unused fields in the front of the structure (which are kept in-place
819   for consistency).  These bodies can be allocated in smaller chunks,
820   because the leading fields arent accessed.  Pointers to such bodies
821   are decremented to point at the unused 'ghost' memory, knowing that
822   the pointers are used with offsets to the real memory.
823
824
825 =head1 SV-Body Allocation
826
827 =cut
828
829 Allocation of SV-bodies is similar to SV-heads, differing as follows;
830 the allocation mechanism is used for many body types, so is somewhat
831 more complicated, it uses arena-sets, and has no need for still-live
832 SV detection.
833
834 At the outermost level, (new|del)_X*V macros return bodies of the
835 appropriate type.  These macros call either (new|del)_body_type or
836 (new|del)_body_allocated macro pairs, depending on specifics of the
837 type.  Most body types use the former pair, the latter pair is used to
838 allocate body types with "ghost fields".
839
840 "ghost fields" are fields that are unused in certain types, and
841 consequently don't need to actually exist.  They are declared because
842 they're part of a "base type", which allows use of functions as
843 methods.  The simplest examples are AVs and HVs, 2 aggregate types
844 which don't use the fields which support SCALAR semantics.
845
846 For these types, the arenas are carved up into appropriately sized
847 chunks, we thus avoid wasted memory for those unaccessed members.
848 When bodies are allocated, we adjust the pointer back in memory by the
849 size of the part not allocated, so it's as if we allocated the full
850 structure.  (But things will all go boom if you write to the part that
851 is "not there", because you'll be overwriting the last members of the
852 preceding structure in memory.)
853
854 We calculate the correction using the STRUCT_OFFSET macro on the first
855 member present.  If the allocated structure is smaller (no initial NV
856 actually allocated) then the net effect is to subtract the size of the NV
857 from the pointer, to return a new pointer as if an initial NV were actually
858 allocated.  (We were using structures named *_allocated for this, but
859 this turned out to be a subtle bug, because a structure without an NV
860 could have a lower alignment constraint, but the compiler is allowed to
861 optimised accesses based on the alignment constraint of the actual pointer
862 to the full structure, for example, using a single 64 bit load instruction
863 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
864
865 This is the same trick as was used for NV and IV bodies.  Ironically it
866 doesn't need to be used for NV bodies any more, because NV is now at
867 the start of the structure.  IV bodies, and also in some builds NV bodies,
868 don't need it either, because they are no longer allocated.
869
870 In turn, the new_body_* allocators call S_new_body(), which invokes
871 new_body_inline macro, which takes a lock, and takes a body off the
872 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
873 necessary to refresh an empty list.  Then the lock is released, and
874 the body is returned.
875
876 Perl_more_bodies allocates a new arena, and carves it up into an array of N
877 bodies, which it strings into a linked list.  It looks up arena-size
878 and body-size from the body_details table described below, thus
879 supporting the multiple body-types.
880
881 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
882 the (new|del)_X*V macros are mapped directly to malloc/free.
883
884 For each sv-type, struct body_details bodies_by_type[] carries
885 parameters which control these aspects of SV handling:
886
887 Arena_size determines whether arenas are used for this body type, and if
888 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
889 zero, forcing individual mallocs and frees.
890
891 Body_size determines how big a body is, and therefore how many fit into
892 each arena.  Offset carries the body-pointer adjustment needed for
893 "ghost fields", and is used in *_allocated macros.
894
895 But its main purpose is to parameterize info needed in
896 Perl_sv_upgrade().  The info here dramatically simplifies the function
897 vs the implementation in 5.8.8, making it table-driven.  All fields
898 are used for this, except for arena_size.
899
900 For the sv-types that have no bodies, arenas are not used, so those
901 PL_body_roots[sv_type] are unused, and can be overloaded.  In
902 something of a special case, SVt_NULL is borrowed for HE arenas;
903 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
904 bodies_by_type[SVt_NULL] slot is not used, as the table is not
905 available in hv.c.
906
907 */
908
909 struct body_details {
910     U8 body_size;       /* Size to allocate  */
911     U8 copy;            /* Size of structure to copy (may be shorter)  */
912     U8 offset;          /* Size of unalloced ghost fields to first alloced field*/
913     PERL_BITFIELD8 type : 4;        /* We have space for a sanity check. */
914     PERL_BITFIELD8 cant_upgrade : 1;/* Cannot upgrade this type */
915     PERL_BITFIELD8 zero_nv : 1;     /* zero the NV when upgrading from this */
916     PERL_BITFIELD8 arena : 1;       /* Allocated from an arena */
917     U32 arena_size;                 /* Size of arena to allocate */
918 };
919
920 #define HADNV FALSE
921 #define NONV TRUE
922
923
924 #ifdef PURIFY
925 /* With -DPURFIY we allocate everything directly, and don't use arenas.
926    This seems a rather elegant way to simplify some of the code below.  */
927 #define HASARENA FALSE
928 #else
929 #define HASARENA TRUE
930 #endif
931 #define NOARENA FALSE
932
933 /* Size the arenas to exactly fit a given number of bodies.  A count
934    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
935    simplifying the default.  If count > 0, the arena is sized to fit
936    only that many bodies, allowing arenas to be used for large, rare
937    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
938    limited by PERL_ARENA_SIZE, so we can safely oversize the
939    declarations.
940  */
941 #define FIT_ARENA0(body_size)                           \
942     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
943 #define FIT_ARENAn(count,body_size)                     \
944     ( count * body_size <= PERL_ARENA_SIZE)             \
945     ? count * body_size                                 \
946     : FIT_ARENA0 (body_size)
947 #define FIT_ARENA(count,body_size)                      \
948    (U32)(count                                          \
949     ? FIT_ARENAn (count, body_size)                     \
950     : FIT_ARENA0 (body_size))
951
952 /* Calculate the length to copy. Specifically work out the length less any
953    final padding the compiler needed to add.  See the comment in sv_upgrade
954    for why copying the padding proved to be a bug.  */
955
956 #define copy_length(type, last_member) \
957         STRUCT_OFFSET(type, last_member) \
958         + sizeof (((type*)SvANY((const SV *)0))->last_member)
959
960 static const struct body_details bodies_by_type[] = {
961     /* HEs use this offset for their arena.  */
962     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
963
964     /* IVs are in the head, so the allocation size is 0.  */
965     { 0,
966       sizeof(IV), /* This is used to copy out the IV body.  */
967       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
968       NOARENA /* IVS don't need an arena  */, 0
969     },
970
971 #if NVSIZE <= IVSIZE
972     { 0, sizeof(NV),
973       STRUCT_OFFSET(XPVNV, xnv_u),
974       SVt_NV, FALSE, HADNV, NOARENA, 0 },
975 #else
976     { sizeof(NV), sizeof(NV),
977       STRUCT_OFFSET(XPVNV, xnv_u),
978       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
979 #endif
980
981     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
982       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
983       + STRUCT_OFFSET(XPV, xpv_cur),
984       SVt_PV, FALSE, NONV, HASARENA,
985       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
986
987     { sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur),
988       copy_length(XINVLIST, is_offset) - STRUCT_OFFSET(XPV, xpv_cur),
989       + STRUCT_OFFSET(XPV, xpv_cur),
990       SVt_INVLIST, TRUE, NONV, HASARENA,
991       FIT_ARENA(0, sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur)) },
992
993     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
994       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
995       + STRUCT_OFFSET(XPV, xpv_cur),
996       SVt_PVIV, FALSE, NONV, HASARENA,
997       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
998
999     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
1000       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
1001       + STRUCT_OFFSET(XPV, xpv_cur),
1002       SVt_PVNV, FALSE, HADNV, HASARENA,
1003       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
1004
1005     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
1006       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
1007
1008     { sizeof(regexp),
1009       sizeof(regexp),
1010       0,
1011       SVt_REGEXP, TRUE, NONV, HASARENA,
1012       FIT_ARENA(0, sizeof(regexp))
1013     },
1014
1015     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
1016       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
1017     
1018     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
1019       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
1020
1021     { sizeof(XPVAV),
1022       copy_length(XPVAV, xav_alloc),
1023       0,
1024       SVt_PVAV, TRUE, NONV, HASARENA,
1025       FIT_ARENA(0, sizeof(XPVAV)) },
1026
1027     { sizeof(XPVHV),
1028       copy_length(XPVHV, xhv_max),
1029       0,
1030       SVt_PVHV, TRUE, NONV, HASARENA,
1031       FIT_ARENA(0, sizeof(XPVHV)) },
1032
1033     { sizeof(XPVCV),
1034       sizeof(XPVCV),
1035       0,
1036       SVt_PVCV, TRUE, NONV, HASARENA,
1037       FIT_ARENA(0, sizeof(XPVCV)) },
1038
1039     { sizeof(XPVFM),
1040       sizeof(XPVFM),
1041       0,
1042       SVt_PVFM, TRUE, NONV, NOARENA,
1043       FIT_ARENA(20, sizeof(XPVFM)) },
1044
1045     { sizeof(XPVIO),
1046       sizeof(XPVIO),
1047       0,
1048       SVt_PVIO, TRUE, NONV, HASARENA,
1049       FIT_ARENA(24, sizeof(XPVIO)) },
1050 };
1051
1052 #define new_body_allocated(sv_type)             \
1053     (void *)((char *)S_new_body(aTHX_ sv_type)  \
1054              - bodies_by_type[sv_type].offset)
1055
1056 /* return a thing to the free list */
1057
1058 #define del_body(thing, root)                           \
1059     STMT_START {                                        \
1060         void ** const thing_copy = (void **)thing;      \
1061         *thing_copy = *root;                            \
1062         *root = (void*)thing_copy;                      \
1063     } STMT_END
1064
1065 #ifdef PURIFY
1066 #if !(NVSIZE <= IVSIZE)
1067 #  define new_XNV()     safemalloc(sizeof(XPVNV))
1068 #endif
1069 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
1070 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
1071
1072 #define del_XPVGV(p)    safefree(p)
1073
1074 #else /* !PURIFY */
1075
1076 #if !(NVSIZE <= IVSIZE)
1077 #  define new_XNV()     new_body_allocated(SVt_NV)
1078 #endif
1079 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
1080 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
1081
1082 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
1083                                  &PL_body_roots[SVt_PVGV])
1084
1085 #endif /* PURIFY */
1086
1087 /* no arena for you! */
1088
1089 #define new_NOARENA(details) \
1090         safemalloc((details)->body_size + (details)->offset)
1091 #define new_NOARENAZ(details) \
1092         safecalloc((details)->body_size + (details)->offset, 1)
1093
1094 void *
1095 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1096                   const size_t arena_size)
1097 {
1098     void ** const root = &PL_body_roots[sv_type];
1099     struct arena_desc *adesc;
1100     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1101     unsigned int curr;
1102     char *start;
1103     const char *end;
1104     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1105 #if defined(DEBUGGING) && defined(PERL_GLOBAL_STRUCT)
1106     dVAR;
1107 #endif
1108 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1109     static bool done_sanity_check;
1110
1111     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1112      * variables like done_sanity_check. */
1113     if (!done_sanity_check) {
1114         unsigned int i = SVt_LAST;
1115
1116         done_sanity_check = TRUE;
1117
1118         while (i--)
1119             assert (bodies_by_type[i].type == i);
1120     }
1121 #endif
1122
1123     assert(arena_size);
1124
1125     /* may need new arena-set to hold new arena */
1126     if (!aroot || aroot->curr >= aroot->set_size) {
1127         struct arena_set *newroot;
1128         Newxz(newroot, 1, struct arena_set);
1129         newroot->set_size = ARENAS_PER_SET;
1130         newroot->next = aroot;
1131         aroot = newroot;
1132         PL_body_arenas = (void *) newroot;
1133         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1134     }
1135
1136     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1137     curr = aroot->curr++;
1138     adesc = &(aroot->set[curr]);
1139     assert(!adesc->arena);
1140     
1141     Newx(adesc->arena, good_arena_size, char);
1142     adesc->size = good_arena_size;
1143     adesc->utype = sv_type;
1144     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
1145                           curr, (void*)adesc->arena, (UV)good_arena_size));
1146
1147     start = (char *) adesc->arena;
1148
1149     /* Get the address of the byte after the end of the last body we can fit.
1150        Remember, this is integer division:  */
1151     end = start + good_arena_size / body_size * body_size;
1152
1153     /* computed count doesn't reflect the 1st slot reservation */
1154 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1155     DEBUG_m(PerlIO_printf(Perl_debug_log,
1156                           "arena %p end %p arena-size %d (from %d) type %d "
1157                           "size %d ct %d\n",
1158                           (void*)start, (void*)end, (int)good_arena_size,
1159                           (int)arena_size, sv_type, (int)body_size,
1160                           (int)good_arena_size / (int)body_size));
1161 #else
1162     DEBUG_m(PerlIO_printf(Perl_debug_log,
1163                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1164                           (void*)start, (void*)end,
1165                           (int)arena_size, sv_type, (int)body_size,
1166                           (int)good_arena_size / (int)body_size));
1167 #endif
1168     *root = (void *)start;
1169
1170     while (1) {
1171         /* Where the next body would start:  */
1172         char * const next = start + body_size;
1173
1174         if (next >= end) {
1175             /* This is the last body:  */
1176             assert(next == end);
1177
1178             *(void **)start = 0;
1179             return *root;
1180         }
1181
1182         *(void**) start = (void *)next;
1183         start = next;
1184     }
1185 }
1186
1187 /* grab a new thing from the free list, allocating more if necessary.
1188    The inline version is used for speed in hot routines, and the
1189    function using it serves the rest (unless PURIFY).
1190 */
1191 #define new_body_inline(xpv, sv_type) \
1192     STMT_START { \
1193         void ** const r3wt = &PL_body_roots[sv_type]; \
1194         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1195           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1196                                              bodies_by_type[sv_type].body_size,\
1197                                              bodies_by_type[sv_type].arena_size)); \
1198         *(r3wt) = *(void**)(xpv); \
1199     } STMT_END
1200
1201 #ifndef PURIFY
1202
1203 STATIC void *
1204 S_new_body(pTHX_ const svtype sv_type)
1205 {
1206     void *xpv;
1207     new_body_inline(xpv, sv_type);
1208     return xpv;
1209 }
1210
1211 #endif
1212
1213 static const struct body_details fake_rv =
1214     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1215
1216 /*
1217 =for apidoc sv_upgrade
1218
1219 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1220 SV, then copies across as much information as possible from the old body.
1221 It croaks if the SV is already in a more complex form than requested.  You
1222 generally want to use the C<SvUPGRADE> macro wrapper, which checks the type
1223 before calling C<sv_upgrade>, and hence does not croak.  See also
1224 C<svtype>.
1225
1226 =cut
1227 */
1228
1229 void
1230 Perl_sv_upgrade(pTHX_ SV *const sv, svtype new_type)
1231 {
1232     void*       old_body;
1233     void*       new_body;
1234     const svtype old_type = SvTYPE(sv);
1235     const struct body_details *new_type_details;
1236     const struct body_details *old_type_details
1237         = bodies_by_type + old_type;
1238     SV *referant = NULL;
1239
1240     PERL_ARGS_ASSERT_SV_UPGRADE;
1241
1242     if (old_type == new_type)
1243         return;
1244
1245     /* This clause was purposefully added ahead of the early return above to
1246        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1247        inference by Nick I-S that it would fix other troublesome cases. See
1248        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1249
1250        Given that shared hash key scalars are no longer PVIV, but PV, there is
1251        no longer need to unshare so as to free up the IVX slot for its proper
1252        purpose. So it's safe to move the early return earlier.  */
1253
1254     if (new_type > SVt_PVMG && SvIsCOW(sv)) {
1255         sv_force_normal_flags(sv, 0);
1256     }
1257
1258     old_body = SvANY(sv);
1259
1260     /* Copying structures onto other structures that have been neatly zeroed
1261        has a subtle gotcha. Consider XPVMG
1262
1263        +------+------+------+------+------+-------+-------+
1264        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1265        +------+------+------+------+------+-------+-------+
1266        0      4      8     12     16     20      24      28
1267
1268        where NVs are aligned to 8 bytes, so that sizeof that structure is
1269        actually 32 bytes long, with 4 bytes of padding at the end:
1270
1271        +------+------+------+------+------+-------+-------+------+
1272        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1273        +------+------+------+------+------+-------+-------+------+
1274        0      4      8     12     16     20      24      28     32
1275
1276        so what happens if you allocate memory for this structure:
1277
1278        +------+------+------+------+------+-------+-------+------+------+...
1279        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1280        +------+------+------+------+------+-------+-------+------+------+...
1281        0      4      8     12     16     20      24      28     32     36
1282
1283        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1284        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1285        started out as zero once, but it's quite possible that it isn't. So now,
1286        rather than a nicely zeroed GP, you have it pointing somewhere random.
1287        Bugs ensue.
1288
1289        (In fact, GP ends up pointing at a previous GP structure, because the
1290        principle cause of the padding in XPVMG getting garbage is a copy of
1291        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1292        this happens to be moot because XPVGV has been re-ordered, with GP
1293        no longer after STASH)
1294
1295        So we are careful and work out the size of used parts of all the
1296        structures.  */
1297
1298     switch (old_type) {
1299     case SVt_NULL:
1300         break;
1301     case SVt_IV:
1302         if (SvROK(sv)) {
1303             referant = SvRV(sv);
1304             old_type_details = &fake_rv;
1305             if (new_type == SVt_NV)
1306                 new_type = SVt_PVNV;
1307         } else {
1308             if (new_type < SVt_PVIV) {
1309                 new_type = (new_type == SVt_NV)
1310                     ? SVt_PVNV : SVt_PVIV;
1311             }
1312         }
1313         break;
1314     case SVt_NV:
1315         if (new_type < SVt_PVNV) {
1316             new_type = SVt_PVNV;
1317         }
1318         break;
1319     case SVt_PV:
1320         assert(new_type > SVt_PV);
1321         STATIC_ASSERT_STMT(SVt_IV < SVt_PV);
1322         STATIC_ASSERT_STMT(SVt_NV < SVt_PV);
1323         break;
1324     case SVt_PVIV:
1325         break;
1326     case SVt_PVNV:
1327         break;
1328     case SVt_PVMG:
1329         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1330            there's no way that it can be safely upgraded, because perl.c
1331            expects to Safefree(SvANY(PL_mess_sv))  */
1332         assert(sv != PL_mess_sv);
1333         break;
1334     default:
1335         if (UNLIKELY(old_type_details->cant_upgrade))
1336             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1337                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1338     }
1339
1340     if (UNLIKELY(old_type > new_type))
1341         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1342                 (int)old_type, (int)new_type);
1343
1344     new_type_details = bodies_by_type + new_type;
1345
1346     SvFLAGS(sv) &= ~SVTYPEMASK;
1347     SvFLAGS(sv) |= new_type;
1348
1349     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1350        the return statements above will have triggered.  */
1351     assert (new_type != SVt_NULL);
1352     switch (new_type) {
1353     case SVt_IV:
1354         assert(old_type == SVt_NULL);
1355         SET_SVANY_FOR_BODYLESS_IV(sv);
1356         SvIV_set(sv, 0);
1357         return;
1358     case SVt_NV:
1359         assert(old_type == SVt_NULL);
1360 #if NVSIZE <= IVSIZE
1361         SET_SVANY_FOR_BODYLESS_NV(sv);
1362 #else
1363         SvANY(sv) = new_XNV();
1364 #endif
1365         SvNV_set(sv, 0);
1366         return;
1367     case SVt_PVHV:
1368     case SVt_PVAV:
1369         assert(new_type_details->body_size);
1370
1371 #ifndef PURIFY  
1372         assert(new_type_details->arena);
1373         assert(new_type_details->arena_size);
1374         /* This points to the start of the allocated area.  */
1375         new_body_inline(new_body, new_type);
1376         Zero(new_body, new_type_details->body_size, char);
1377         new_body = ((char *)new_body) - new_type_details->offset;
1378 #else
1379         /* We always allocated the full length item with PURIFY. To do this
1380            we fake things so that arena is false for all 16 types..  */
1381         new_body = new_NOARENAZ(new_type_details);
1382 #endif
1383         SvANY(sv) = new_body;
1384         if (new_type == SVt_PVAV) {
1385             AvMAX(sv)   = -1;
1386             AvFILLp(sv) = -1;
1387             AvREAL_only(sv);
1388             if (old_type_details->body_size) {
1389                 AvALLOC(sv) = 0;
1390             } else {
1391                 /* It will have been zeroed when the new body was allocated.
1392                    Lets not write to it, in case it confuses a write-back
1393                    cache.  */
1394             }
1395         } else {
1396             assert(!SvOK(sv));
1397             SvOK_off(sv);
1398 #ifndef NODEFAULT_SHAREKEYS
1399             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1400 #endif
1401             /* start with PERL_HASH_DEFAULT_HvMAX+1 buckets: */
1402             HvMAX(sv) = PERL_HASH_DEFAULT_HvMAX;
1403         }
1404
1405         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1406            The target created by newSVrv also is, and it can have magic.
1407            However, it never has SvPVX set.
1408         */
1409         if (old_type == SVt_IV) {
1410             assert(!SvROK(sv));
1411         } else if (old_type >= SVt_PV) {
1412             assert(SvPVX_const(sv) == 0);
1413         }
1414
1415         if (old_type >= SVt_PVMG) {
1416             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1417             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1418         } else {
1419             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1420         }
1421         break;
1422
1423     case SVt_PVIV:
1424         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1425            no route from NV to PVIV, NOK can never be true  */
1426         assert(!SvNOKp(sv));
1427         assert(!SvNOK(sv));
1428     case SVt_PVIO:
1429     case SVt_PVFM:
1430     case SVt_PVGV:
1431     case SVt_PVCV:
1432     case SVt_PVLV:
1433     case SVt_INVLIST:
1434     case SVt_REGEXP:
1435     case SVt_PVMG:
1436     case SVt_PVNV:
1437     case SVt_PV:
1438
1439         assert(new_type_details->body_size);
1440         /* We always allocated the full length item with PURIFY. To do this
1441            we fake things so that arena is false for all 16 types..  */
1442         if(new_type_details->arena) {
1443             /* This points to the start of the allocated area.  */
1444             new_body_inline(new_body, new_type);
1445             Zero(new_body, new_type_details->body_size, char);
1446             new_body = ((char *)new_body) - new_type_details->offset;
1447         } else {
1448             new_body = new_NOARENAZ(new_type_details);
1449         }
1450         SvANY(sv) = new_body;
1451
1452         if (old_type_details->copy) {
1453             /* There is now the potential for an upgrade from something without
1454                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1455             int offset = old_type_details->offset;
1456             int length = old_type_details->copy;
1457
1458             if (new_type_details->offset > old_type_details->offset) {
1459                 const int difference
1460                     = new_type_details->offset - old_type_details->offset;
1461                 offset += difference;
1462                 length -= difference;
1463             }
1464             assert (length >= 0);
1465                 
1466             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1467                  char);
1468         }
1469
1470 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1471         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1472          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1473          * NV slot, but the new one does, then we need to initialise the
1474          * freshly created NV slot with whatever the correct bit pattern is
1475          * for 0.0  */
1476         if (old_type_details->zero_nv && !new_type_details->zero_nv
1477             && !isGV_with_GP(sv))
1478             SvNV_set(sv, 0);
1479 #endif
1480
1481         if (UNLIKELY(new_type == SVt_PVIO)) {
1482             IO * const io = MUTABLE_IO(sv);
1483             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1484
1485             SvOBJECT_on(io);
1486             /* Clear the stashcache because a new IO could overrule a package
1487                name */
1488             DEBUG_o(Perl_deb(aTHX_ "sv_upgrade clearing PL_stashcache\n"));
1489             hv_clear(PL_stashcache);
1490
1491             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1492             IoPAGE_LEN(sv) = 60;
1493         }
1494         if (UNLIKELY(new_type == SVt_REGEXP))
1495             sv->sv_u.svu_rx = (regexp *)new_body;
1496         else if (old_type < SVt_PV) {
1497             /* referant will be NULL unless the old type was SVt_IV emulating
1498                SVt_RV */
1499             sv->sv_u.svu_rv = referant;
1500         }
1501         break;
1502     default:
1503         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1504                    (unsigned long)new_type);
1505     }
1506
1507     /* if this is zero, this is a body-less SVt_NULL, SVt_IV/SVt_RV,
1508        and sometimes SVt_NV */
1509     if (old_type_details->body_size) {
1510 #ifdef PURIFY
1511         safefree(old_body);
1512 #else
1513         /* Note that there is an assumption that all bodies of types that
1514            can be upgraded came from arenas. Only the more complex non-
1515            upgradable types are allowed to be directly malloc()ed.  */
1516         assert(old_type_details->arena);
1517         del_body((void*)((char*)old_body + old_type_details->offset),
1518                  &PL_body_roots[old_type]);
1519 #endif
1520     }
1521 }
1522
1523 /*
1524 =for apidoc sv_backoff
1525
1526 Remove any string offset.  You should normally use the C<SvOOK_off> macro
1527 wrapper instead.
1528
1529 =cut
1530 */
1531
1532 int
1533 Perl_sv_backoff(SV *const sv)
1534 {
1535     STRLEN delta;
1536     const char * const s = SvPVX_const(sv);
1537
1538     PERL_ARGS_ASSERT_SV_BACKOFF;
1539
1540     assert(SvOOK(sv));
1541     assert(SvTYPE(sv) != SVt_PVHV);
1542     assert(SvTYPE(sv) != SVt_PVAV);
1543
1544     SvOOK_offset(sv, delta);
1545     
1546     SvLEN_set(sv, SvLEN(sv) + delta);
1547     SvPV_set(sv, SvPVX(sv) - delta);
1548     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1549     SvFLAGS(sv) &= ~SVf_OOK;
1550     return 0;
1551 }
1552
1553 /*
1554 =for apidoc sv_grow
1555
1556 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1557 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1558 Use the C<SvGROW> wrapper instead.
1559
1560 =cut
1561 */
1562
1563 static void S_sv_uncow(pTHX_ SV * const sv, const U32 flags);
1564
1565 char *
1566 Perl_sv_grow(pTHX_ SV *const sv, STRLEN newlen)
1567 {
1568     char *s;
1569
1570     PERL_ARGS_ASSERT_SV_GROW;
1571
1572     if (SvROK(sv))
1573         sv_unref(sv);
1574     if (SvTYPE(sv) < SVt_PV) {
1575         sv_upgrade(sv, SVt_PV);
1576         s = SvPVX_mutable(sv);
1577     }
1578     else if (SvOOK(sv)) {       /* pv is offset? */
1579         sv_backoff(sv);
1580         s = SvPVX_mutable(sv);
1581         if (newlen > SvLEN(sv))
1582             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1583     }
1584     else
1585     {
1586         if (SvIsCOW(sv)) S_sv_uncow(aTHX_ sv, 0);
1587         s = SvPVX_mutable(sv);
1588     }
1589
1590 #ifdef PERL_NEW_COPY_ON_WRITE
1591     /* the new COW scheme uses SvPVX(sv)[SvLEN(sv)-1] (if spare)
1592      * to store the COW count. So in general, allocate one more byte than
1593      * asked for, to make it likely this byte is always spare: and thus
1594      * make more strings COW-able.
1595      * If the new size is a big power of two, don't bother: we assume the
1596      * caller wanted a nice 2^N sized block and will be annoyed at getting
1597      * 2^N+1 */
1598     if (newlen & 0xff)
1599         newlen++;
1600 #endif
1601
1602 #if defined(PERL_USE_MALLOC_SIZE) && defined(Perl_safesysmalloc_size)
1603 #define PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1604 #endif
1605
1606     if (newlen > SvLEN(sv)) {           /* need more room? */
1607         STRLEN minlen = SvCUR(sv);
1608         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1609         if (newlen < minlen)
1610             newlen = minlen;
1611 #ifndef PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1612
1613         /* Don't round up on the first allocation, as odds are pretty good that
1614          * the initial request is accurate as to what is really needed */
1615         if (SvLEN(sv)) {
1616             newlen = PERL_STRLEN_ROUNDUP(newlen);
1617         }
1618 #endif
1619         if (SvLEN(sv) && s) {
1620             s = (char*)saferealloc(s, newlen);
1621         }
1622         else {
1623             s = (char*)safemalloc(newlen);
1624             if (SvPVX_const(sv) && SvCUR(sv)) {
1625                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1626             }
1627         }
1628         SvPV_set(sv, s);
1629 #ifdef PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1630         /* Do this here, do it once, do it right, and then we will never get
1631            called back into sv_grow() unless there really is some growing
1632            needed.  */
1633         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1634 #else
1635         SvLEN_set(sv, newlen);
1636 #endif
1637     }
1638     return s;
1639 }
1640
1641 /*
1642 =for apidoc sv_setiv
1643
1644 Copies an integer into the given SV, upgrading first if necessary.
1645 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1646
1647 =cut
1648 */
1649
1650 void
1651 Perl_sv_setiv(pTHX_ SV *const sv, const IV i)
1652 {
1653     PERL_ARGS_ASSERT_SV_SETIV;
1654
1655     SV_CHECK_THINKFIRST_COW_DROP(sv);
1656     switch (SvTYPE(sv)) {
1657     case SVt_NULL:
1658     case SVt_NV:
1659         sv_upgrade(sv, SVt_IV);
1660         break;
1661     case SVt_PV:
1662         sv_upgrade(sv, SVt_PVIV);
1663         break;
1664
1665     case SVt_PVGV:
1666         if (!isGV_with_GP(sv))
1667             break;
1668     case SVt_PVAV:
1669     case SVt_PVHV:
1670     case SVt_PVCV:
1671     case SVt_PVFM:
1672     case SVt_PVIO:
1673         /* diag_listed_as: Can't coerce %s to %s in %s */
1674         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1675                    OP_DESC(PL_op));
1676     default: NOOP;
1677     }
1678     (void)SvIOK_only(sv);                       /* validate number */
1679     SvIV_set(sv, i);
1680     SvTAINT(sv);
1681 }
1682
1683 /*
1684 =for apidoc sv_setiv_mg
1685
1686 Like C<sv_setiv>, but also handles 'set' magic.
1687
1688 =cut
1689 */
1690
1691 void
1692 Perl_sv_setiv_mg(pTHX_ SV *const sv, const IV i)
1693 {
1694     PERL_ARGS_ASSERT_SV_SETIV_MG;
1695
1696     sv_setiv(sv,i);
1697     SvSETMAGIC(sv);
1698 }
1699
1700 /*
1701 =for apidoc sv_setuv
1702
1703 Copies an unsigned integer into the given SV, upgrading first if necessary.
1704 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1705
1706 =cut
1707 */
1708
1709 void
1710 Perl_sv_setuv(pTHX_ SV *const sv, const UV u)
1711 {
1712     PERL_ARGS_ASSERT_SV_SETUV;
1713
1714     /* With the if statement to ensure that integers are stored as IVs whenever
1715        possible:
1716        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1717
1718        without
1719        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1720
1721        If you wish to remove the following if statement, so that this routine
1722        (and its callers) always return UVs, please benchmark to see what the
1723        effect is. Modern CPUs may be different. Or may not :-)
1724     */
1725     if (u <= (UV)IV_MAX) {
1726        sv_setiv(sv, (IV)u);
1727        return;
1728     }
1729     sv_setiv(sv, 0);
1730     SvIsUV_on(sv);
1731     SvUV_set(sv, u);
1732 }
1733
1734 /*
1735 =for apidoc sv_setuv_mg
1736
1737 Like C<sv_setuv>, but also handles 'set' magic.
1738
1739 =cut
1740 */
1741
1742 void
1743 Perl_sv_setuv_mg(pTHX_ SV *const sv, const UV u)
1744 {
1745     PERL_ARGS_ASSERT_SV_SETUV_MG;
1746
1747     sv_setuv(sv,u);
1748     SvSETMAGIC(sv);
1749 }
1750
1751 /*
1752 =for apidoc sv_setnv
1753
1754 Copies a double into the given SV, upgrading first if necessary.
1755 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1756
1757 =cut
1758 */
1759
1760 void
1761 Perl_sv_setnv(pTHX_ SV *const sv, const NV num)
1762 {
1763     PERL_ARGS_ASSERT_SV_SETNV;
1764
1765     SV_CHECK_THINKFIRST_COW_DROP(sv);
1766     switch (SvTYPE(sv)) {
1767     case SVt_NULL:
1768     case SVt_IV:
1769         sv_upgrade(sv, SVt_NV);
1770         break;
1771     case SVt_PV:
1772     case SVt_PVIV:
1773         sv_upgrade(sv, SVt_PVNV);
1774         break;
1775
1776     case SVt_PVGV:
1777         if (!isGV_with_GP(sv))
1778             break;
1779     case SVt_PVAV:
1780     case SVt_PVHV:
1781     case SVt_PVCV:
1782     case SVt_PVFM:
1783     case SVt_PVIO:
1784         /* diag_listed_as: Can't coerce %s to %s in %s */
1785         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1786                    OP_DESC(PL_op));
1787     default: NOOP;
1788     }
1789     SvNV_set(sv, num);
1790     (void)SvNOK_only(sv);                       /* validate number */
1791     SvTAINT(sv);
1792 }
1793
1794 /*
1795 =for apidoc sv_setnv_mg
1796
1797 Like C<sv_setnv>, but also handles 'set' magic.
1798
1799 =cut
1800 */
1801
1802 void
1803 Perl_sv_setnv_mg(pTHX_ SV *const sv, const NV num)
1804 {
1805     PERL_ARGS_ASSERT_SV_SETNV_MG;
1806
1807     sv_setnv(sv,num);
1808     SvSETMAGIC(sv);
1809 }
1810
1811 /* Return a cleaned-up, printable version of sv, for non-numeric, or
1812  * not incrementable warning display.
1813  * Originally part of S_not_a_number().
1814  * The return value may be != tmpbuf.
1815  */
1816
1817 STATIC const char *
1818 S_sv_display(pTHX_ SV *const sv, char *tmpbuf, STRLEN tmpbuf_size) {
1819     const char *pv;
1820
1821      PERL_ARGS_ASSERT_SV_DISPLAY;
1822
1823      if (DO_UTF8(sv)) {
1824           SV *dsv = newSVpvs_flags("", SVs_TEMP);
1825           pv = sv_uni_display(dsv, sv, 10, UNI_DISPLAY_ISPRINT);
1826      } else {
1827           char *d = tmpbuf;
1828           const char * const limit = tmpbuf + tmpbuf_size - 8;
1829           /* each *s can expand to 4 chars + "...\0",
1830              i.e. need room for 8 chars */
1831         
1832           const char *s = SvPVX_const(sv);
1833           const char * const end = s + SvCUR(sv);
1834           for ( ; s < end && d < limit; s++ ) {
1835                int ch = *s & 0xFF;
1836                if (! isASCII(ch) && !isPRINT_LC(ch)) {
1837                     *d++ = 'M';
1838                     *d++ = '-';
1839
1840                     /* Map to ASCII "equivalent" of Latin1 */
1841                     ch = LATIN1_TO_NATIVE(NATIVE_TO_LATIN1(ch) & 127);
1842                }
1843                if (ch == '\n') {
1844                     *d++ = '\\';
1845                     *d++ = 'n';
1846                }
1847                else if (ch == '\r') {
1848                     *d++ = '\\';
1849                     *d++ = 'r';
1850                }
1851                else if (ch == '\f') {
1852                     *d++ = '\\';
1853                     *d++ = 'f';
1854                }
1855                else if (ch == '\\') {
1856                     *d++ = '\\';
1857                     *d++ = '\\';
1858                }
1859                else if (ch == '\0') {
1860                     *d++ = '\\';
1861                     *d++ = '0';
1862                }
1863                else if (isPRINT_LC(ch))
1864                     *d++ = ch;
1865                else {
1866                     *d++ = '^';
1867                     *d++ = toCTRL(ch);
1868                }
1869           }
1870           if (s < end) {
1871                *d++ = '.';
1872                *d++ = '.';
1873                *d++ = '.';
1874           }
1875           *d = '\0';
1876           pv = tmpbuf;
1877     }
1878
1879     return pv;
1880 }
1881
1882 /* Print an "isn't numeric" warning, using a cleaned-up,
1883  * printable version of the offending string
1884  */
1885
1886 STATIC void
1887 S_not_a_number(pTHX_ SV *const sv)
1888 {
1889      char tmpbuf[64];
1890      const char *pv;
1891
1892      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1893
1894      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1895
1896     if (PL_op)
1897         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1898                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1899                     "Argument \"%s\" isn't numeric in %s", pv,
1900                     OP_DESC(PL_op));
1901     else
1902         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1903                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1904                     "Argument \"%s\" isn't numeric", pv);
1905 }
1906
1907 STATIC void
1908 S_not_incrementable(pTHX_ SV *const sv) {
1909      char tmpbuf[64];
1910      const char *pv;
1911
1912      PERL_ARGS_ASSERT_NOT_INCREMENTABLE;
1913
1914      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1915
1916      Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1917                  "Argument \"%s\" treated as 0 in increment (++)", pv);
1918 }
1919
1920 /*
1921 =for apidoc looks_like_number
1922
1923 Test if the content of an SV looks like a number (or is a number).
1924 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1925 non-numeric warning), even if your atof() doesn't grok them.  Get-magic is
1926 ignored.
1927
1928 =cut
1929 */
1930
1931 I32
1932 Perl_looks_like_number(pTHX_ SV *const sv)
1933 {
1934     const char *sbegin;
1935     STRLEN len;
1936
1937     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1938
1939     if (SvPOK(sv) || SvPOKp(sv)) {
1940         sbegin = SvPV_nomg_const(sv, len);
1941     }
1942     else
1943         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1944     return grok_number(sbegin, len, NULL);
1945 }
1946
1947 STATIC bool
1948 S_glob_2number(pTHX_ GV * const gv)
1949 {
1950     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1951
1952     /* We know that all GVs stringify to something that is not-a-number,
1953         so no need to test that.  */
1954     if (ckWARN(WARN_NUMERIC))
1955     {
1956         SV *const buffer = sv_newmortal();
1957         gv_efullname3(buffer, gv, "*");
1958         not_a_number(buffer);
1959     }
1960     /* We just want something true to return, so that S_sv_2iuv_common
1961         can tail call us and return true.  */
1962     return TRUE;
1963 }
1964
1965 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1966    until proven guilty, assume that things are not that bad... */
1967
1968 /*
1969    NV_PRESERVES_UV:
1970
1971    As 64 bit platforms often have an NV that doesn't preserve all bits of
1972    an IV (an assumption perl has been based on to date) it becomes necessary
1973    to remove the assumption that the NV always carries enough precision to
1974    recreate the IV whenever needed, and that the NV is the canonical form.
1975    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1976    precision as a side effect of conversion (which would lead to insanity
1977    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1978    1) to distinguish between IV/UV/NV slots that have a valid conversion cached
1979       where precision was lost, and IV/UV/NV slots that have a valid conversion
1980       which has lost no precision
1981    2) to ensure that if a numeric conversion to one form is requested that
1982       would lose precision, the precise conversion (or differently
1983       imprecise conversion) is also performed and cached, to prevent
1984       requests for different numeric formats on the same SV causing
1985       lossy conversion chains. (lossless conversion chains are perfectly
1986       acceptable (still))
1987
1988
1989    flags are used:
1990    SvIOKp is true if the IV slot contains a valid value
1991    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1992    SvNOKp is true if the NV slot contains a valid value
1993    SvNOK  is true only if the NV value is accurate
1994
1995    so
1996    while converting from PV to NV, check to see if converting that NV to an
1997    IV(or UV) would lose accuracy over a direct conversion from PV to
1998    IV(or UV). If it would, cache both conversions, return NV, but mark
1999    SV as IOK NOKp (ie not NOK).
2000
2001    While converting from PV to IV, check to see if converting that IV to an
2002    NV would lose accuracy over a direct conversion from PV to NV. If it
2003    would, cache both conversions, flag similarly.
2004
2005    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
2006    correctly because if IV & NV were set NV *always* overruled.
2007    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
2008    changes - now IV and NV together means that the two are interchangeable:
2009    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
2010
2011    The benefit of this is that operations such as pp_add know that if
2012    SvIOK is true for both left and right operands, then integer addition
2013    can be used instead of floating point (for cases where the result won't
2014    overflow). Before, floating point was always used, which could lead to
2015    loss of precision compared with integer addition.
2016
2017    * making IV and NV equal status should make maths accurate on 64 bit
2018      platforms
2019    * may speed up maths somewhat if pp_add and friends start to use
2020      integers when possible instead of fp. (Hopefully the overhead in
2021      looking for SvIOK and checking for overflow will not outweigh the
2022      fp to integer speedup)
2023    * will slow down integer operations (callers of SvIV) on "inaccurate"
2024      values, as the change from SvIOK to SvIOKp will cause a call into
2025      sv_2iv each time rather than a macro access direct to the IV slot
2026    * should speed up number->string conversion on integers as IV is
2027      favoured when IV and NV are equally accurate
2028
2029    ####################################################################
2030    You had better be using SvIOK_notUV if you want an IV for arithmetic:
2031    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
2032    On the other hand, SvUOK is true iff UV.
2033    ####################################################################
2034
2035    Your mileage will vary depending your CPU's relative fp to integer
2036    performance ratio.
2037 */
2038
2039 #ifndef NV_PRESERVES_UV
2040 #  define IS_NUMBER_UNDERFLOW_IV 1
2041 #  define IS_NUMBER_UNDERFLOW_UV 2
2042 #  define IS_NUMBER_IV_AND_UV    2
2043 #  define IS_NUMBER_OVERFLOW_IV  4
2044 #  define IS_NUMBER_OVERFLOW_UV  5
2045
2046 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
2047
2048 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
2049 STATIC int
2050 S_sv_2iuv_non_preserve(pTHX_ SV *const sv
2051 #  ifdef DEBUGGING
2052                        , I32 numtype
2053 #  endif
2054                        )
2055 {
2056     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
2057     PERL_UNUSED_CONTEXT;
2058
2059     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));
2060     if (SvNVX(sv) < (NV)IV_MIN) {
2061         (void)SvIOKp_on(sv);
2062         (void)SvNOK_on(sv);
2063         SvIV_set(sv, IV_MIN);
2064         return IS_NUMBER_UNDERFLOW_IV;
2065     }
2066     if (SvNVX(sv) > (NV)UV_MAX) {
2067         (void)SvIOKp_on(sv);
2068         (void)SvNOK_on(sv);
2069         SvIsUV_on(sv);
2070         SvUV_set(sv, UV_MAX);
2071         return IS_NUMBER_OVERFLOW_UV;
2072     }
2073     (void)SvIOKp_on(sv);
2074     (void)SvNOK_on(sv);
2075     /* Can't use strtol etc to convert this string.  (See truth table in
2076        sv_2iv  */
2077     if (SvNVX(sv) <= (UV)IV_MAX) {
2078         SvIV_set(sv, I_V(SvNVX(sv)));
2079         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2080             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
2081         } else {
2082             /* Integer is imprecise. NOK, IOKp */
2083         }
2084         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
2085     }
2086     SvIsUV_on(sv);
2087     SvUV_set(sv, U_V(SvNVX(sv)));
2088     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2089         if (SvUVX(sv) == UV_MAX) {
2090             /* As we know that NVs don't preserve UVs, UV_MAX cannot
2091                possibly be preserved by NV. Hence, it must be overflow.
2092                NOK, IOKp */
2093             return IS_NUMBER_OVERFLOW_UV;
2094         }
2095         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2096     } else {
2097         /* Integer is imprecise. NOK, IOKp */
2098     }
2099     return IS_NUMBER_OVERFLOW_IV;
2100 }
2101 #endif /* !NV_PRESERVES_UV*/
2102
2103 /* If numtype is infnan, set the NV of the sv accordingly.
2104  * If numtype is anything else, try setting the NV using Atof(PV). */
2105 static void
2106 S_sv_setnv(pTHX_ SV* sv, int numtype)
2107 {
2108     bool pok = cBOOL(SvPOK(sv));
2109     bool nok = FALSE;
2110     if ((numtype & IS_NUMBER_INFINITY)) {
2111         SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -NV_INF : NV_INF);
2112         nok = TRUE;
2113     }
2114     else if ((numtype & IS_NUMBER_NAN)) {
2115         SvNV_set(sv, NV_NAN);
2116         nok = TRUE;
2117     }
2118     else if (pok) {
2119         SvNV_set(sv, Atof(SvPVX_const(sv)));
2120         /* Purposefully no true nok here, since we don't want to blow
2121          * away the possible IOK/UV of an existing sv. */
2122     }
2123     if (nok) {
2124         SvNOK_only(sv); /* No IV or UV please, this is pure infnan. */
2125         if (pok)
2126             SvPOK_on(sv); /* PV is okay, though. */
2127     }
2128 }
2129
2130 STATIC bool
2131 S_sv_2iuv_common(pTHX_ SV *const sv)
2132 {
2133     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
2134
2135     if (SvNOKp(sv)) {
2136         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2137          * without also getting a cached IV/UV from it at the same time
2138          * (ie PV->NV conversion should detect loss of accuracy and cache
2139          * IV or UV at same time to avoid this. */
2140         /* IV-over-UV optimisation - choose to cache IV if possible */
2141
2142         if (SvTYPE(sv) == SVt_NV)
2143             sv_upgrade(sv, SVt_PVNV);
2144
2145         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2146         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2147            certainly cast into the IV range at IV_MAX, whereas the correct
2148            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2149            cases go to UV */
2150 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2151         if (Perl_isnan(SvNVX(sv))) {
2152             SvUV_set(sv, 0);
2153             SvIsUV_on(sv);
2154             return FALSE;
2155         }
2156 #endif
2157         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2158             SvIV_set(sv, I_V(SvNVX(sv)));
2159             if (SvNVX(sv) == (NV) SvIVX(sv)
2160 #ifndef NV_PRESERVES_UV
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         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2225         /* We want to avoid a possible problem when we cache an IV/ a UV which
2226            may be later translated to an NV, and the resulting NV is not
2227            the same as the direct translation of the initial string
2228            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2229            be careful to ensure that the value with the .456 is around if the
2230            NV value is requested in the future).
2231         
2232            This means that if we cache such an IV/a UV, we need to cache the
2233            NV as well.  Moreover, we trade speed for space, and do not
2234            cache the NV if we are sure it's not needed.
2235          */
2236
2237         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2238         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2239              == IS_NUMBER_IN_UV) {
2240             /* It's definitely an integer, only upgrade to PVIV */
2241             if (SvTYPE(sv) < SVt_PVIV)
2242                 sv_upgrade(sv, SVt_PVIV);
2243             (void)SvIOK_on(sv);
2244         } else if (SvTYPE(sv) < SVt_PVNV)
2245             sv_upgrade(sv, SVt_PVNV);
2246
2247         if ((numtype & (IS_NUMBER_INFINITY | IS_NUMBER_NAN))) {
2248             S_sv_setnv(aTHX_ sv, numtype);
2249             return FALSE;
2250         }
2251
2252         /* If NVs preserve UVs then we only use the UV value if we know that
2253            we aren't going to call atof() below. If NVs don't preserve UVs
2254            then the value returned may have more precision than atof() will
2255            return, even though value isn't perfectly accurate.  */
2256         if ((numtype & (IS_NUMBER_IN_UV
2257 #ifdef NV_PRESERVES_UV
2258                         | IS_NUMBER_NOT_INT
2259 #endif
2260             )) == IS_NUMBER_IN_UV) {
2261             /* This won't turn off the public IOK flag if it was set above  */
2262             (void)SvIOKp_on(sv);
2263
2264             if (!(numtype & IS_NUMBER_NEG)) {
2265                 /* positive */;
2266                 if (value <= (UV)IV_MAX) {
2267                     SvIV_set(sv, (IV)value);
2268                 } else {
2269                     /* it didn't overflow, and it was positive. */
2270                     SvUV_set(sv, value);
2271                     SvIsUV_on(sv);
2272                 }
2273             } else {
2274                 /* 2s complement assumption  */
2275                 if (value <= (UV)IV_MIN) {
2276                     SvIV_set(sv, -(IV)value);
2277                 } else {
2278                     /* Too negative for an IV.  This is a double upgrade, but
2279                        I'm assuming it will be rare.  */
2280                     if (SvTYPE(sv) < SVt_PVNV)
2281                         sv_upgrade(sv, SVt_PVNV);
2282                     SvNOK_on(sv);
2283                     SvIOK_off(sv);
2284                     SvIOKp_on(sv);
2285                     SvNV_set(sv, -(NV)value);
2286                     SvIV_set(sv, IV_MIN);
2287                 }
2288             }
2289         }
2290         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2291            will be in the previous block to set the IV slot, and the next
2292            block to set the NV slot.  So no else here.  */
2293         
2294         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2295             != IS_NUMBER_IN_UV) {
2296             /* It wasn't an (integer that doesn't overflow the UV). */
2297             S_sv_setnv(aTHX_ sv, numtype);
2298
2299             if (! numtype && ckWARN(WARN_NUMERIC))
2300                 not_a_number(sv);
2301
2302             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" NVgf ")\n",
2303                                   PTR2UV(sv), SvNVX(sv)));
2304
2305 #ifdef NV_PRESERVES_UV
2306             (void)SvIOKp_on(sv);
2307             (void)SvNOK_on(sv);
2308 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2309             if (Perl_isnan(SvNVX(sv))) {
2310                 SvUV_set(sv, 0);
2311                 SvIsUV_on(sv);
2312                 return FALSE;
2313             }
2314 #endif
2315             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2316                 SvIV_set(sv, I_V(SvNVX(sv)));
2317                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2318                     SvIOK_on(sv);
2319                 } else {
2320                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2321                 }
2322                 /* UV will not work better than IV */
2323             } else {
2324                 if (SvNVX(sv) > (NV)UV_MAX) {
2325                     SvIsUV_on(sv);
2326                     /* Integer is inaccurate. NOK, IOKp, is UV */
2327                     SvUV_set(sv, UV_MAX);
2328                 } else {
2329                     SvUV_set(sv, U_V(SvNVX(sv)));
2330                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2331                        NV preservse UV so can do correct comparison.  */
2332                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2333                         SvIOK_on(sv);
2334                     } else {
2335                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2336                     }
2337                 }
2338                 SvIsUV_on(sv);
2339             }
2340 #else /* NV_PRESERVES_UV */
2341             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2342                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2343                 /* The IV/UV slot will have been set from value returned by
2344                    grok_number above.  The NV slot has just been set using
2345                    Atof.  */
2346                 SvNOK_on(sv);
2347                 assert (SvIOKp(sv));
2348             } else {
2349                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2350                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2351                     /* Small enough to preserve all bits. */
2352                     (void)SvIOKp_on(sv);
2353                     SvNOK_on(sv);
2354                     SvIV_set(sv, I_V(SvNVX(sv)));
2355                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2356                         SvIOK_on(sv);
2357                     /* Assumption: first non-preserved integer is < IV_MAX,
2358                        this NV is in the preserved range, therefore: */
2359                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2360                           < (UV)IV_MAX)) {
2361                         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);
2362                     }
2363                 } else {
2364                     /* IN_UV NOT_INT
2365                          0      0       already failed to read UV.
2366                          0      1       already failed to read UV.
2367                          1      0       you won't get here in this case. IV/UV
2368                                         slot set, public IOK, Atof() unneeded.
2369                          1      1       already read UV.
2370                        so there's no point in sv_2iuv_non_preserve() attempting
2371                        to use atol, strtol, strtoul etc.  */
2372 #  ifdef DEBUGGING
2373                     sv_2iuv_non_preserve (sv, numtype);
2374 #  else
2375                     sv_2iuv_non_preserve (sv);
2376 #  endif
2377                 }
2378             }
2379 #endif /* NV_PRESERVES_UV */
2380         /* It might be more code efficient to go through the entire logic above
2381            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2382            gets complex and potentially buggy, so more programmer efficient
2383            to do it this way, by turning off the public flags:  */
2384         if (!numtype)
2385             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2386         }
2387     }
2388     else  {
2389         if (isGV_with_GP(sv))
2390             return glob_2number(MUTABLE_GV(sv));
2391
2392         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2393                 report_uninit(sv);
2394         if (SvTYPE(sv) < SVt_IV)
2395             /* Typically the caller expects that sv_any is not NULL now.  */
2396             sv_upgrade(sv, SVt_IV);
2397         /* Return 0 from the caller.  */
2398         return TRUE;
2399     }
2400     return FALSE;
2401 }
2402
2403 /*
2404 =for apidoc sv_2iv_flags
2405
2406 Return the integer value of an SV, doing any necessary string
2407 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2408 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2409
2410 =cut
2411 */
2412
2413 IV
2414 Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags)
2415 {
2416     PERL_ARGS_ASSERT_SV_2IV_FLAGS;
2417
2418     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2419          && SvTYPE(sv) != SVt_PVFM);
2420
2421     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2422         mg_get(sv);
2423
2424     if (SvROK(sv)) {
2425         if (SvAMAGIC(sv)) {
2426             SV * tmpstr;
2427             if (flags & SV_SKIP_OVERLOAD)
2428                 return 0;
2429             tmpstr = AMG_CALLunary(sv, numer_amg);
2430             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2431                 return SvIV(tmpstr);
2432             }
2433         }
2434         return PTR2IV(SvRV(sv));
2435     }
2436
2437     if (SvVALID(sv) || isREGEXP(sv)) {
2438         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2439            the same flag bit as SVf_IVisUV, so must not let them cache IVs.
2440            In practice they are extremely unlikely to actually get anywhere
2441            accessible by user Perl code - the only way that I'm aware of is when
2442            a constant subroutine which is used as the second argument to index.
2443
2444            Regexps have no SvIVX and SvNVX fields.
2445         */
2446         assert(isREGEXP(sv) || SvPOKp(sv));
2447         {
2448             UV value;
2449             const char * const ptr =
2450                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2451             const int numtype
2452                 = grok_number(ptr, SvCUR(sv), &value);
2453
2454             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2455                 == IS_NUMBER_IN_UV) {
2456                 /* It's definitely an integer */
2457                 if (numtype & IS_NUMBER_NEG) {
2458                     if (value < (UV)IV_MIN)
2459                         return -(IV)value;
2460                 } else {
2461                     if (value < (UV)IV_MAX)
2462                         return (IV)value;
2463                 }
2464             }
2465
2466             /* Quite wrong but no good choices. */
2467             if ((numtype & IS_NUMBER_INFINITY)) {
2468                 return (numtype & IS_NUMBER_NEG) ? IV_MIN : IV_MAX;
2469             } else if ((numtype & IS_NUMBER_NAN)) {
2470                 return 0; /* So wrong. */
2471             }
2472
2473             if (!numtype) {
2474                 if (ckWARN(WARN_NUMERIC))
2475                     not_a_number(sv);
2476             }
2477             return I_V(Atof(ptr));
2478         }
2479     }
2480
2481     if (SvTHINKFIRST(sv)) {
2482 #ifdef PERL_OLD_COPY_ON_WRITE
2483         if (SvIsCOW(sv)) {
2484             sv_force_normal_flags(sv, 0);
2485         }
2486 #endif
2487         if (SvREADONLY(sv) && !SvOK(sv)) {
2488             if (ckWARN(WARN_UNINITIALIZED))
2489                 report_uninit(sv);
2490             return 0;
2491         }
2492     }
2493
2494     if (!SvIOKp(sv)) {
2495         if (S_sv_2iuv_common(aTHX_ sv))
2496             return 0;
2497     }
2498
2499     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2500         PTR2UV(sv),SvIVX(sv)));
2501     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2502 }
2503
2504 /*
2505 =for apidoc sv_2uv_flags
2506
2507 Return the unsigned integer value of an SV, doing any necessary string
2508 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2509 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2510
2511 =cut
2512 */
2513
2514 UV
2515 Perl_sv_2uv_flags(pTHX_ SV *const sv, const I32 flags)
2516 {
2517     PERL_ARGS_ASSERT_SV_2UV_FLAGS;
2518
2519     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2520         mg_get(sv);
2521
2522     if (SvROK(sv)) {
2523         if (SvAMAGIC(sv)) {
2524             SV *tmpstr;
2525             if (flags & SV_SKIP_OVERLOAD)
2526                 return 0;
2527             tmpstr = AMG_CALLunary(sv, numer_amg);
2528             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2529                 return SvUV(tmpstr);
2530             }
2531         }
2532         return PTR2UV(SvRV(sv));
2533     }
2534
2535     if (SvVALID(sv) || isREGEXP(sv)) {
2536         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2537            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  
2538            Regexps have no SvIVX and SvNVX fields. */
2539         assert(isREGEXP(sv) || SvPOKp(sv));
2540         {
2541             UV value;
2542             const char * const ptr =
2543                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2544             const int numtype
2545                 = grok_number(ptr, SvCUR(sv), &value);
2546
2547             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2548                 == IS_NUMBER_IN_UV) {
2549                 /* It's definitely an integer */
2550                 if (!(numtype & IS_NUMBER_NEG))
2551                     return value;
2552             }
2553
2554             /* Quite wrong but no good choices. */
2555             if ((numtype & IS_NUMBER_INFINITY)) {
2556                 return UV_MAX; /* So wrong. */
2557             } else if ((numtype & IS_NUMBER_NAN)) {
2558                 return 0; /* So wrong. */
2559             }
2560
2561             if (!numtype) {
2562                 if (ckWARN(WARN_NUMERIC))
2563                     not_a_number(sv);
2564             }
2565             return U_V(Atof(ptr));
2566         }
2567     }
2568
2569     if (SvTHINKFIRST(sv)) {
2570 #ifdef PERL_OLD_COPY_ON_WRITE
2571         if (SvIsCOW(sv)) {
2572             sv_force_normal_flags(sv, 0);
2573         }
2574 #endif
2575         if (SvREADONLY(sv) && !SvOK(sv)) {
2576             if (ckWARN(WARN_UNINITIALIZED))
2577                 report_uninit(sv);
2578             return 0;
2579         }
2580     }
2581
2582     if (!SvIOKp(sv)) {
2583         if (S_sv_2iuv_common(aTHX_ sv))
2584             return 0;
2585     }
2586
2587     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2588                           PTR2UV(sv),SvUVX(sv)));
2589     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2590 }
2591
2592 /*
2593 =for apidoc sv_2nv_flags
2594
2595 Return the num value of an SV, doing any necessary string or integer
2596 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2597 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2598
2599 =cut
2600 */
2601
2602 NV
2603 Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags)
2604 {
2605     PERL_ARGS_ASSERT_SV_2NV_FLAGS;
2606
2607     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2608          && SvTYPE(sv) != SVt_PVFM);
2609     if (SvGMAGICAL(sv) || SvVALID(sv) || isREGEXP(sv)) {
2610         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2611            the same flag bit as SVf_IVisUV, so must not let them cache NVs.
2612            Regexps have no SvIVX and SvNVX fields.  */
2613         const char *ptr;
2614         if (flags & SV_GMAGIC)
2615             mg_get(sv);
2616         if (SvNOKp(sv))
2617             return SvNVX(sv);
2618         if (SvPOKp(sv) && !SvIOKp(sv)) {
2619             ptr = SvPVX_const(sv);
2620           grokpv:
2621             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2622                 !grok_number(ptr, SvCUR(sv), NULL))
2623                 not_a_number(sv);
2624             return Atof(ptr);
2625         }
2626         if (SvIOKp(sv)) {
2627             if (SvIsUV(sv))
2628                 return (NV)SvUVX(sv);
2629             else
2630                 return (NV)SvIVX(sv);
2631         }
2632         if (SvROK(sv)) {
2633             goto return_rok;
2634         }
2635         if (isREGEXP(sv)) {
2636             ptr = RX_WRAPPED((REGEXP *)sv);
2637             goto grokpv;
2638         }
2639         assert(SvTYPE(sv) >= SVt_PVMG);
2640         /* This falls through to the report_uninit near the end of the
2641            function. */
2642     } else if (SvTHINKFIRST(sv)) {
2643         if (SvROK(sv)) {
2644         return_rok:
2645             if (SvAMAGIC(sv)) {
2646                 SV *tmpstr;
2647                 if (flags & SV_SKIP_OVERLOAD)
2648                     return 0;
2649                 tmpstr = AMG_CALLunary(sv, numer_amg);
2650                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2651                     return SvNV(tmpstr);
2652                 }
2653             }
2654             return PTR2NV(SvRV(sv));
2655         }
2656 #ifdef PERL_OLD_COPY_ON_WRITE
2657         if (SvIsCOW(sv)) {
2658             sv_force_normal_flags(sv, 0);
2659         }
2660 #endif
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_NUMERIC_LOCAL_SET_STANDARD();
2672             PerlIO_printf(Perl_debug_log,
2673                           "0x%"UVxf" num(%" NVgf ")\n",
2674                           PTR2UV(sv), SvNVX(sv));
2675             RESTORE_NUMERIC_LOCAL();
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                     SvIV_set(sv, -(IV)value);
2744                 } else if (value <= (UV)IV_MAX) {
2745                     SvIV_set(sv, (IV)value);
2746                 } else {
2747                     SvUV_set(sv, value);
2748                     SvIsUV_on(sv);
2749                 }
2750
2751                 if (numtype & IS_NUMBER_NOT_INT) {
2752                     /* I believe that even if the original PV had decimals,
2753                        they are lost beyond the limit of the FP precision.
2754                        However, neither is canonical, so both only get p
2755                        flags.  NWC, 2000/11/25 */
2756                     /* Both already have p flags, so do nothing */
2757                 } else {
2758                     const NV nv = SvNVX(sv);
2759                     /* XXX should this spot have NAN_COMPARE_BROKEN, too? */
2760                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2761                         if (SvIVX(sv) == I_V(nv)) {
2762                             SvNOK_on(sv);
2763                         } else {
2764                             /* It had no "." so it must be integer.  */
2765                         }
2766                         SvIOK_on(sv);
2767                     } else {
2768                         /* between IV_MAX and NV(UV_MAX).
2769                            Could be slightly > UV_MAX */
2770
2771                         if (numtype & IS_NUMBER_NOT_INT) {
2772                             /* UV and NV both imprecise.  */
2773                         } else {
2774                             const UV nv_as_uv = U_V(nv);
2775
2776                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2777                                 SvNOK_on(sv);
2778                             }
2779                             SvIOK_on(sv);
2780                         }
2781                     }
2782                 }
2783             }
2784         }
2785         /* It might be more code efficient to go through the entire logic above
2786            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2787            gets complex and potentially buggy, so more programmer efficient
2788            to do it this way, by turning off the public flags:  */
2789         if (!numtype)
2790             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2791 #endif /* NV_PRESERVES_UV */
2792     }
2793     else  {
2794         if (isGV_with_GP(sv)) {
2795             glob_2number(MUTABLE_GV(sv));
2796             return 0.0;
2797         }
2798
2799         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2800             report_uninit(sv);
2801         assert (SvTYPE(sv) >= SVt_NV);
2802         /* Typically the caller expects that sv_any is not NULL now.  */
2803         /* XXX Ilya implies that this is a bug in callers that assume this
2804            and ideally should be fixed.  */
2805         return 0.0;
2806     }
2807     DEBUG_c({
2808         STORE_NUMERIC_LOCAL_SET_STANDARD();
2809         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" NVgf ")\n",
2810                       PTR2UV(sv), SvNVX(sv));
2811         RESTORE_NUMERIC_LOCAL();
2812     });
2813     return SvNVX(sv);
2814 }
2815
2816 /*
2817 =for apidoc sv_2num
2818
2819 Return an SV with the numeric value of the source SV, doing any necessary
2820 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2821 access this function.
2822
2823 =cut
2824 */
2825
2826 SV *
2827 Perl_sv_2num(pTHX_ SV *const sv)
2828 {
2829     PERL_ARGS_ASSERT_SV_2NUM;
2830
2831     if (!SvROK(sv))
2832         return sv;
2833     if (SvAMAGIC(sv)) {
2834         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2835         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2836         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2837             return sv_2num(tmpsv);
2838     }
2839     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2840 }
2841
2842 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2843  * UV as a string towards the end of buf, and return pointers to start and
2844  * end of it.
2845  *
2846  * We assume that buf is at least TYPE_CHARS(UV) long.
2847  */
2848
2849 static char *
2850 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2851 {
2852     char *ptr = buf + TYPE_CHARS(UV);
2853     char * const ebuf = ptr;
2854     int sign;
2855
2856     PERL_ARGS_ASSERT_UIV_2BUF;
2857
2858     if (is_uv)
2859         sign = 0;
2860     else if (iv >= 0) {
2861         uv = iv;
2862         sign = 0;
2863     } else {
2864         uv = -iv;
2865         sign = 1;
2866     }
2867     do {
2868         *--ptr = '0' + (char)(uv % 10);
2869     } while (uv /= 10);
2870     if (sign)
2871         *--ptr = '-';
2872     *peob = ebuf;
2873     return ptr;
2874 }
2875
2876 /* Helper for sv_2pv_flags and sv_vcatpvfn_flags.  If the NV is an
2877  * infinity or a not-a-number, writes the appropriate strings to the
2878  * buffer, including a zero byte.  On success returns the written length,
2879  * excluding the zero byte, on failure (not an infinity, not a nan, or the
2880  * maxlen too small) returns zero.
2881  *
2882  * XXX for "Inf", "-Inf", and "NaN", we could have three read-only
2883  * shared string constants we point to, instead of generating a new
2884  * string for each instance. */
2885 STATIC size_t
2886 S_infnan_2pv(NV nv, char* buffer, size_t maxlen) {
2887     assert(maxlen >= 4);
2888     if (maxlen < 4) /* "Inf\0", "NaN\0" */
2889         return 0;
2890     else {
2891         char* s = buffer;
2892         if (Perl_isinf(nv)) {
2893             if (nv < 0) {
2894                 if (maxlen < 5) /* "-Inf\0"  */
2895                     return 0;
2896                 *s++ = '-';
2897             }
2898             *s++ = 'I';
2899             *s++ = 'n';
2900             *s++ = 'f';
2901         } else if (Perl_isnan(nv)) {
2902             *s++ = 'N';
2903             *s++ = 'a';
2904             *s++ = 'N';
2905             /* XXX optionally output the payload mantissa bits as
2906              * "(unsigned)" (to match the nan("...") C99 function,
2907              * or maybe as "(0xhhh...)"  would make more sense...
2908              * provide a format string so that the user can decide?
2909              * NOTE: would affect the maxlen and assert() logic.*/
2910         }
2911
2912         else
2913             return 0;
2914         assert((s == buffer + 3) || (s == buffer + 4));
2915         *s++ = 0;
2916         return s - buffer - 1; /* -1: excluding the zero byte */
2917     }
2918 }
2919
2920 /*
2921 =for apidoc sv_2pv_flags
2922
2923 Returns a pointer to the string value of an SV, and sets *lp to its length.
2924 If flags includes SV_GMAGIC, does an mg_get() first.  Coerces sv to a
2925 string if necessary.  Normally invoked via the C<SvPV_flags> macro.
2926 C<sv_2pv()> and C<sv_2pv_nomg> usually end up here too.
2927
2928 =cut
2929 */
2930
2931 char *
2932 Perl_sv_2pv_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
2933 {
2934     char *s;
2935
2936     PERL_ARGS_ASSERT_SV_2PV_FLAGS;
2937
2938     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2939          && SvTYPE(sv) != SVt_PVFM);
2940     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2941         mg_get(sv);
2942     if (SvROK(sv)) {
2943         if (SvAMAGIC(sv)) {
2944             SV *tmpstr;
2945             if (flags & SV_SKIP_OVERLOAD)
2946                 return NULL;
2947             tmpstr = AMG_CALLunary(sv, string_amg);
2948             TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2949             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2950                 /* Unwrap this:  */
2951                 /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2952                  */
2953
2954                 char *pv;
2955                 if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2956                     if (flags & SV_CONST_RETURN) {
2957                         pv = (char *) SvPVX_const(tmpstr);
2958                     } else {
2959                         pv = (flags & SV_MUTABLE_RETURN)
2960                             ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2961                     }
2962                     if (lp)
2963                         *lp = SvCUR(tmpstr);
2964                 } else {
2965                     pv = sv_2pv_flags(tmpstr, lp, flags);
2966                 }
2967                 if (SvUTF8(tmpstr))
2968                     SvUTF8_on(sv);
2969                 else
2970                     SvUTF8_off(sv);
2971                 return pv;
2972             }
2973         }
2974         {
2975             STRLEN len;
2976             char *retval;
2977             char *buffer;
2978             SV *const referent = SvRV(sv);
2979
2980             if (!referent) {
2981                 len = 7;
2982                 retval = buffer = savepvn("NULLREF", len);
2983             } else if (SvTYPE(referent) == SVt_REGEXP &&
2984                        (!(PL_curcop->cop_hints & HINT_NO_AMAGIC) ||
2985                         amagic_is_enabled(string_amg))) {
2986                 REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2987
2988                 assert(re);
2989                         
2990                 /* If the regex is UTF-8 we want the containing scalar to
2991                    have an UTF-8 flag too */
2992                 if (RX_UTF8(re))
2993                     SvUTF8_on(sv);
2994                 else
2995                     SvUTF8_off(sv);     
2996
2997                 if (lp)
2998                     *lp = RX_WRAPLEN(re);
2999  
3000                 return RX_WRAPPED(re);
3001             } else {
3002                 const char *const typestr = sv_reftype(referent, 0);
3003                 const STRLEN typelen = strlen(typestr);
3004                 UV addr = PTR2UV(referent);
3005                 const char *stashname = NULL;
3006                 STRLEN stashnamelen = 0; /* hush, gcc */
3007                 const char *buffer_end;
3008
3009                 if (SvOBJECT(referent)) {
3010                     const HEK *const name = HvNAME_HEK(SvSTASH(referent));
3011
3012                     if (name) {
3013                         stashname = HEK_KEY(name);
3014                         stashnamelen = HEK_LEN(name);
3015
3016                         if (HEK_UTF8(name)) {
3017                             SvUTF8_on(sv);
3018                         } else {
3019                             SvUTF8_off(sv);
3020                         }
3021                     } else {
3022                         stashname = "__ANON__";
3023                         stashnamelen = 8;
3024                     }
3025                     len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
3026                         + 2 * sizeof(UV) + 2 /* )\0 */;
3027                 } else {
3028                     len = typelen + 3 /* (0x */
3029                         + 2 * sizeof(UV) + 2 /* )\0 */;
3030                 }
3031
3032                 Newx(buffer, len, char);
3033                 buffer_end = retval = buffer + len;
3034
3035                 /* Working backwards  */
3036                 *--retval = '\0';
3037                 *--retval = ')';
3038                 do {
3039                     *--retval = PL_hexdigit[addr & 15];
3040                 } while (addr >>= 4);
3041                 *--retval = 'x';
3042                 *--retval = '0';
3043                 *--retval = '(';
3044
3045                 retval -= typelen;
3046                 memcpy(retval, typestr, typelen);
3047
3048                 if (stashname) {
3049                     *--retval = '=';
3050                     retval -= stashnamelen;
3051                     memcpy(retval, stashname, stashnamelen);
3052                 }
3053                 /* retval may not necessarily have reached the start of the
3054                    buffer here.  */
3055                 assert (retval >= buffer);
3056
3057                 len = buffer_end - retval - 1; /* -1 for that \0  */
3058             }
3059             if (lp)
3060                 *lp = len;
3061             SAVEFREEPV(buffer);
3062             return retval;
3063         }
3064     }
3065
3066     if (SvPOKp(sv)) {
3067         if (lp)
3068             *lp = SvCUR(sv);
3069         if (flags & SV_MUTABLE_RETURN)
3070             return SvPVX_mutable(sv);
3071         if (flags & SV_CONST_RETURN)
3072             return (char *)SvPVX_const(sv);
3073         return SvPVX(sv);
3074     }
3075
3076     if (SvIOK(sv)) {
3077         /* I'm assuming that if both IV and NV are equally valid then
3078            converting the IV is going to be more efficient */
3079         const U32 isUIOK = SvIsUV(sv);
3080         char buf[TYPE_CHARS(UV)];
3081         char *ebuf, *ptr;
3082         STRLEN len;
3083
3084         if (SvTYPE(sv) < SVt_PVIV)
3085             sv_upgrade(sv, SVt_PVIV);
3086         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
3087         len = ebuf - ptr;
3088         /* inlined from sv_setpvn */
3089         s = SvGROW_mutable(sv, len + 1);
3090         Move(ptr, s, len, char);
3091         s += len;
3092         *s = '\0';
3093         SvPOK_on(sv);
3094     }
3095     else if (SvNOK(sv)) {
3096         if (SvTYPE(sv) < SVt_PVNV)
3097             sv_upgrade(sv, SVt_PVNV);
3098         if (SvNVX(sv) == 0.0
3099 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
3100             && !Perl_isnan(SvNVX(sv))
3101 #endif
3102         ) {
3103             s = SvGROW_mutable(sv, 2);
3104             *s++ = '0';
3105             *s = '\0';
3106         } else {
3107             STRLEN len;
3108             STRLEN size = 5; /* "-Inf\0" */
3109
3110             s = SvGROW_mutable(sv, size);
3111             len = S_infnan_2pv(SvNVX(sv), s, size);
3112             if (len > 0) {
3113                 s += len;
3114                 SvPOK_on(sv);
3115             }
3116             else {
3117                 /* some Xenix systems wipe out errno here */
3118                 dSAVE_ERRNO;
3119
3120                 size =
3121                     1 + /* sign */
3122                     1 + /* "." */
3123                     NV_DIG +
3124                     1 + /* "e" */
3125                     1 + /* sign */
3126                     5 + /* exponent digits */
3127                     1 + /* \0 */
3128                     2; /* paranoia */
3129
3130                 s = SvGROW_mutable(sv, size);
3131 #ifndef USE_LOCALE_NUMERIC
3132                 SNPRINTF_G(SvNVX(sv), s, SvLEN(sv), NV_DIG);
3133
3134                 SvPOK_on(sv);
3135 #else
3136                 {
3137                     bool local_radix;
3138                     DECLARE_STORE_LC_NUMERIC_SET_TO_NEEDED();
3139
3140                     local_radix =
3141                         PL_numeric_local &&
3142                         PL_numeric_radix_sv &&
3143                         SvUTF8(PL_numeric_radix_sv);
3144                     if (local_radix && SvLEN(PL_numeric_radix_sv) > 1) {
3145                         size += SvLEN(PL_numeric_radix_sv) - 1;
3146                         s = SvGROW_mutable(sv, size);
3147                     }
3148
3149                     SNPRINTF_G(SvNVX(sv), s, SvLEN(sv), NV_DIG);
3150
3151                     /* If the radix character is UTF-8, and actually is in the
3152                      * output, turn on the UTF-8 flag for the scalar */
3153                     if (local_radix &&
3154                         instr(s, SvPVX_const(PL_numeric_radix_sv))) {
3155                         SvUTF8_on(sv);
3156                     }
3157
3158                     RESTORE_LC_NUMERIC();
3159                 }
3160
3161                 /* We don't call SvPOK_on(), because it may come to
3162                  * pass that the locale changes so that the
3163                  * stringification we just did is no longer correct.  We
3164                  * will have to re-stringify every time it is needed */
3165 #endif
3166                 RESTORE_ERRNO;
3167             }
3168             while (*s) s++;
3169         }
3170     }
3171     else if (isGV_with_GP(sv)) {
3172         GV *const gv = MUTABLE_GV(sv);
3173         SV *const buffer = sv_newmortal();
3174
3175         gv_efullname3(buffer, gv, "*");
3176
3177         assert(SvPOK(buffer));
3178         if (SvUTF8(buffer))
3179             SvUTF8_on(sv);
3180         if (lp)
3181             *lp = SvCUR(buffer);
3182         return SvPVX(buffer);
3183     }
3184     else if (isREGEXP(sv)) {
3185         if (lp) *lp = RX_WRAPLEN((REGEXP *)sv);
3186         return RX_WRAPPED((REGEXP *)sv);
3187     }
3188     else {
3189         if (lp)
3190             *lp = 0;
3191         if (flags & SV_UNDEF_RETURNS_NULL)
3192             return NULL;
3193         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
3194             report_uninit(sv);
3195         /* Typically the caller expects that sv_any is not NULL now.  */
3196         if (!SvREADONLY(sv) && SvTYPE(sv) < SVt_PV)
3197             sv_upgrade(sv, SVt_PV);
3198         return (char *)"";
3199     }
3200
3201     {
3202         const STRLEN len = s - SvPVX_const(sv);
3203         if (lp) 
3204             *lp = len;
3205         SvCUR_set(sv, len);
3206     }
3207     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3208                           PTR2UV(sv),SvPVX_const(sv)));
3209     if (flags & SV_CONST_RETURN)
3210         return (char *)SvPVX_const(sv);
3211     if (flags & SV_MUTABLE_RETURN)
3212         return SvPVX_mutable(sv);
3213     return SvPVX(sv);
3214 }
3215
3216 /*
3217 =for apidoc sv_copypv
3218
3219 Copies a stringified representation of the source SV into the
3220 destination SV.  Automatically performs any necessary mg_get and
3221 coercion of numeric values into strings.  Guaranteed to preserve
3222 UTF8 flag even from overloaded objects.  Similar in nature to
3223 sv_2pv[_flags] but operates directly on an SV instead of just the
3224 string.  Mostly uses sv_2pv_flags to do its work, except when that
3225 would lose the UTF-8'ness of the PV.
3226
3227 =for apidoc sv_copypv_nomg
3228
3229 Like sv_copypv, but doesn't invoke get magic first.
3230
3231 =for apidoc sv_copypv_flags
3232
3233 Implementation of sv_copypv and sv_copypv_nomg.  Calls get magic iff flags
3234 include SV_GMAGIC.
3235
3236 =cut
3237 */
3238
3239 void
3240 Perl_sv_copypv(pTHX_ SV *const dsv, SV *const ssv)
3241 {
3242     PERL_ARGS_ASSERT_SV_COPYPV;
3243
3244     sv_copypv_flags(dsv, ssv, 0);
3245 }
3246
3247 void
3248 Perl_sv_copypv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
3249 {
3250     STRLEN len;
3251     const char *s;
3252
3253     PERL_ARGS_ASSERT_SV_COPYPV_FLAGS;
3254
3255     s = SvPV_flags_const(ssv,len,(flags & SV_GMAGIC));
3256     sv_setpvn(dsv,s,len);
3257     if (SvUTF8(ssv))
3258         SvUTF8_on(dsv);
3259     else
3260         SvUTF8_off(dsv);
3261 }
3262
3263 /*
3264 =for apidoc sv_2pvbyte
3265
3266 Return a pointer to the byte-encoded representation of the SV, and set *lp
3267 to its length.  May cause the SV to be downgraded from UTF-8 as a
3268 side-effect.
3269
3270 Usually accessed via the C<SvPVbyte> macro.
3271
3272 =cut
3273 */
3274
3275 char *
3276 Perl_sv_2pvbyte(pTHX_ SV *sv, STRLEN *const lp)
3277 {
3278     PERL_ARGS_ASSERT_SV_2PVBYTE;
3279
3280     SvGETMAGIC(sv);
3281     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3282      || isGV_with_GP(sv) || SvROK(sv)) {
3283         SV *sv2 = sv_newmortal();
3284         sv_copypv_nomg(sv2,sv);
3285         sv = sv2;
3286     }
3287     sv_utf8_downgrade(sv,0);
3288     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3289 }
3290
3291 /*
3292 =for apidoc sv_2pvutf8
3293
3294 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3295 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3296
3297 Usually accessed via the C<SvPVutf8> macro.
3298
3299 =cut
3300 */
3301
3302 char *
3303 Perl_sv_2pvutf8(pTHX_ SV *sv, STRLEN *const lp)
3304 {
3305     PERL_ARGS_ASSERT_SV_2PVUTF8;
3306
3307     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3308      || isGV_with_GP(sv) || SvROK(sv))
3309         sv = sv_mortalcopy(sv);
3310     else
3311         SvGETMAGIC(sv);
3312     sv_utf8_upgrade_nomg(sv);
3313     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3314 }
3315
3316
3317 /*
3318 =for apidoc sv_2bool
3319
3320 This macro is only used by sv_true() or its macro equivalent, and only if
3321 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3322 It calls sv_2bool_flags with the SV_GMAGIC flag.
3323
3324 =for apidoc sv_2bool_flags
3325
3326 This function is only used by sv_true() and friends,  and only if
3327 the latter's argument is neither SvPOK, SvIOK nor SvNOK.  If the flags
3328 contain SV_GMAGIC, then it does an mg_get() first.
3329
3330
3331 =cut
3332 */
3333
3334 bool
3335 Perl_sv_2bool_flags(pTHX_ SV *sv, I32 flags)
3336 {
3337     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3338
3339     restart:
3340     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3341
3342     if (!SvOK(sv))
3343         return 0;
3344     if (SvROK(sv)) {
3345         if (SvAMAGIC(sv)) {
3346             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3347             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv)))) {
3348                 bool svb;
3349                 sv = tmpsv;
3350                 if(SvGMAGICAL(sv)) {
3351                     flags = SV_GMAGIC;
3352                     goto restart; /* call sv_2bool */
3353                 }
3354                 /* expanded SvTRUE_common(sv, (flags = 0, goto restart)) */
3355                 else if(!SvOK(sv)) {
3356                     svb = 0;
3357                 }
3358                 else if(SvPOK(sv)) {
3359                     svb = SvPVXtrue(sv);
3360                 }
3361                 else if((SvFLAGS(sv) & (SVf_IOK|SVf_NOK))) {
3362                     svb = (SvIOK(sv) && SvIVX(sv) != 0)
3363                         || (SvNOK(sv) && SvNVX(sv) != 0.0);
3364                 }
3365                 else {
3366                     flags = 0;
3367                     goto restart; /* call sv_2bool_nomg */
3368                 }
3369                 return cBOOL(svb);
3370             }
3371         }
3372         return SvRV(sv) != 0;
3373     }
3374     if (isREGEXP(sv))
3375         return
3376           RX_WRAPLEN(sv) > 1 || (RX_WRAPLEN(sv) && *RX_WRAPPED(sv) != '0');
3377     return SvTRUE_common(sv, isGV_with_GP(sv) ? 1 : 0);
3378 }
3379
3380 /*
3381 =for apidoc sv_utf8_upgrade
3382
3383 Converts the PV of an SV to its UTF-8-encoded form.
3384 Forces the SV to string form if it is not already.
3385 Will C<mg_get> on C<sv> if appropriate.
3386 Always sets the SvUTF8 flag to avoid future validity checks even
3387 if the whole string is the same in UTF-8 as not.
3388 Returns the number of bytes in the converted string
3389
3390 This is not a general purpose byte encoding to Unicode interface:
3391 use the Encode extension for that.
3392
3393 =for apidoc sv_utf8_upgrade_nomg
3394
3395 Like sv_utf8_upgrade, but doesn't do magic on C<sv>.
3396
3397 =for apidoc sv_utf8_upgrade_flags
3398
3399 Converts the PV of an SV to its UTF-8-encoded form.
3400 Forces the SV to string form if it is not already.
3401 Always sets the SvUTF8 flag to avoid future validity checks even
3402 if all the bytes are invariant in UTF-8.
3403 If C<flags> has C<SV_GMAGIC> bit set,
3404 will C<mg_get> on C<sv> if appropriate, else not.
3405
3406 If C<flags> has SV_FORCE_UTF8_UPGRADE set, this function assumes that the PV
3407 will expand when converted to UTF-8, and skips the extra work of checking for
3408 that.  Typically this flag is used by a routine that has already parsed the
3409 string and found such characters, and passes this information on so that the
3410 work doesn't have to be repeated.
3411
3412 Returns the number of bytes in the converted string.
3413
3414 This is not a general purpose byte encoding to Unicode interface:
3415 use the Encode extension for that.
3416
3417 =for apidoc sv_utf8_upgrade_flags_grow
3418
3419 Like sv_utf8_upgrade_flags, but has an additional parameter C<extra>, which is
3420 the number of unused bytes the string of 'sv' is guaranteed to have free after
3421 it upon return.  This allows the caller to reserve extra space that it intends
3422 to fill, to avoid extra grows.
3423
3424 C<sv_utf8_upgrade>, C<sv_utf8_upgrade_nomg>, and C<sv_utf8_upgrade_flags>
3425 are implemented in terms of this function.
3426
3427 Returns the number of bytes in the converted string (not including the spares).
3428
3429 =cut
3430
3431 (One might think that the calling routine could pass in the position of the
3432 first variant character when it has set SV_FORCE_UTF8_UPGRADE, so it wouldn't
3433 have to be found again.  But that is not the case, because typically when the
3434 caller is likely to use this flag, it won't be calling this routine unless it
3435 finds something that won't fit into a byte.  Otherwise it tries to not upgrade
3436 and just use bytes.  But some things that do fit into a byte are variants in
3437 utf8, and the caller may not have been keeping track of these.)
3438
3439 If the routine itself changes the string, it adds a trailing C<NUL>.  Such a
3440 C<NUL> isn't guaranteed due to having other routines do the work in some input
3441 cases, or if the input is already flagged as being in utf8.
3442
3443 The speed of this could perhaps be improved for many cases if someone wanted to
3444 write a fast function that counts the number of variant characters in a string,
3445 especially if it could return the position of the first one.
3446
3447 */
3448
3449 STRLEN
3450 Perl_sv_utf8_upgrade_flags_grow(pTHX_ SV *const sv, const I32 flags, STRLEN extra)
3451 {
3452     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3453
3454     if (sv == &PL_sv_undef)
3455         return 0;
3456     if (!SvPOK_nog(sv)) {
3457         STRLEN len = 0;
3458         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3459             (void) sv_2pv_flags(sv,&len, flags);
3460             if (SvUTF8(sv)) {
3461                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3462                 return len;
3463             }
3464         } else {
3465             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3466         }
3467     }
3468
3469     if (SvUTF8(sv)) {
3470         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3471         return SvCUR(sv);
3472     }
3473
3474     if (SvIsCOW(sv)) {
3475         S_sv_uncow(aTHX_ sv, 0);
3476     }
3477
3478     if (IN_ENCODING && !(flags & SV_UTF8_NO_ENCODING)) {
3479         sv_recode_to_utf8(sv, _get_encoding());
3480         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3481         return SvCUR(sv);
3482     }
3483
3484     if (SvCUR(sv) == 0) {
3485         if (extra) SvGROW(sv, extra);
3486     } else { /* Assume Latin-1/EBCDIC */
3487         /* This function could be much more efficient if we
3488          * had a FLAG in SVs to signal if there are any variant
3489          * chars in the PV.  Given that there isn't such a flag
3490          * make the loop as fast as possible (although there are certainly ways
3491          * to speed this up, eg. through vectorization) */
3492         U8 * s = (U8 *) SvPVX_const(sv);
3493         U8 * e = (U8 *) SvEND(sv);
3494         U8 *t = s;
3495         STRLEN two_byte_count = 0;
3496         
3497         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3498
3499         /* See if really will need to convert to utf8.  We mustn't rely on our
3500          * incoming SV being well formed and having a trailing '\0', as certain
3501          * code in pp_formline can send us partially built SVs. */
3502
3503         while (t < e) {
3504             const U8 ch = *t++;
3505             if (NATIVE_BYTE_IS_INVARIANT(ch)) continue;
3506
3507             t--;    /* t already incremented; re-point to first variant */
3508             two_byte_count = 1;
3509             goto must_be_utf8;
3510         }
3511
3512         /* utf8 conversion not needed because all are invariants.  Mark as
3513          * UTF-8 even if no variant - saves scanning loop */
3514         SvUTF8_on(sv);
3515         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3516         return SvCUR(sv);
3517
3518 must_be_utf8:
3519
3520         /* Here, the string should be converted to utf8, either because of an
3521          * input flag (two_byte_count = 0), or because a character that
3522          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3523          * the beginning of the string (if we didn't examine anything), or to
3524          * the first variant.  In either case, everything from s to t - 1 will
3525          * occupy only 1 byte each on output.
3526          *
3527          * There are two main ways to convert.  One is to create a new string
3528          * and go through the input starting from the beginning, appending each
3529          * converted value onto the new string as we go along.  It's probably
3530          * best to allocate enough space in the string for the worst possible
3531          * case rather than possibly running out of space and having to
3532          * reallocate and then copy what we've done so far.  Since everything
3533          * from s to t - 1 is invariant, the destination can be initialized
3534          * with these using a fast memory copy
3535          *
3536          * The other way is to figure out exactly how big the string should be
3537          * by parsing the entire input.  Then you don't have to make it big
3538          * enough to handle the worst possible case, and more importantly, if
3539          * the string you already have is large enough, you don't have to
3540          * allocate a new string, you can copy the last character in the input
3541          * string to the final position(s) that will be occupied by the
3542          * converted string and go backwards, stopping at t, since everything
3543          * before that is invariant.
3544          *
3545          * There are advantages and disadvantages to each method.
3546          *
3547          * In the first method, we can allocate a new string, do the memory
3548          * copy from the s to t - 1, and then proceed through the rest of the
3549          * string byte-by-byte.
3550          *
3551          * In the second method, we proceed through the rest of the input
3552          * string just calculating how big the converted string will be.  Then
3553          * there are two cases:
3554          *  1)  if the string has enough extra space to handle the converted
3555          *      value.  We go backwards through the string, converting until we
3556          *      get to the position we are at now, and then stop.  If this
3557          *      position is far enough along in the string, this method is
3558          *      faster than the other method.  If the memory copy were the same
3559          *      speed as the byte-by-byte loop, that position would be about
3560          *      half-way, as at the half-way mark, parsing to the end and back
3561          *      is one complete string's parse, the same amount as starting
3562          *      over and going all the way through.  Actually, it would be
3563          *      somewhat less than half-way, as it's faster to just count bytes
3564          *      than to also copy, and we don't have the overhead of allocating
3565          *      a new string, changing the scalar to use it, and freeing the
3566          *      existing one.  But if the memory copy is fast, the break-even
3567          *      point is somewhere after half way.  The counting loop could be
3568          *      sped up by vectorization, etc, to move the break-even point
3569          *      further towards the beginning.
3570          *  2)  if the string doesn't have enough space to handle the converted
3571          *      value.  A new string will have to be allocated, and one might
3572          *      as well, given that, start from the beginning doing the first
3573          *      method.  We've spent extra time parsing the string and in
3574          *      exchange all we've gotten is that we know precisely how big to
3575          *      make the new one.  Perl is more optimized for time than space,
3576          *      so this case is a loser.
3577          * So what I've decided to do is not use the 2nd method unless it is
3578          * guaranteed that a new string won't have to be allocated, assuming
3579          * the worst case.  I also decided not to put any more conditions on it
3580          * than this, for now.  It seems likely that, since the worst case is
3581          * twice as big as the unknown portion of the string (plus 1), we won't
3582          * be guaranteed enough space, causing us to go to the first method,
3583          * unless the string is short, or the first variant character is near
3584          * the end of it.  In either of these cases, it seems best to use the
3585          * 2nd method.  The only circumstance I can think of where this would
3586          * be really slower is if the string had once had much more data in it
3587          * than it does now, but there is still a substantial amount in it  */
3588
3589         {
3590             STRLEN invariant_head = t - s;
3591             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3592             if (SvLEN(sv) < size) {
3593
3594                 /* Here, have decided to allocate a new string */
3595
3596                 U8 *dst;
3597                 U8 *d;
3598
3599                 Newx(dst, size, U8);
3600
3601                 /* If no known invariants at the beginning of the input string,
3602                  * set so starts from there.  Otherwise, can use memory copy to
3603                  * get up to where we are now, and then start from here */
3604
3605                 if (invariant_head == 0) {
3606                     d = dst;
3607                 } else {
3608                     Copy(s, dst, invariant_head, char);
3609                     d = dst + invariant_head;
3610                 }
3611
3612                 while (t < e) {
3613                     append_utf8_from_native_byte(*t, &d);
3614                     t++;
3615                 }
3616                 *d = '\0';
3617                 SvPV_free(sv); /* No longer using pre-existing string */
3618                 SvPV_set(sv, (char*)dst);
3619                 SvCUR_set(sv, d - dst);
3620                 SvLEN_set(sv, size);
3621             } else {
3622
3623                 /* Here, have decided to get the exact size of the string.
3624                  * Currently this happens only when we know that there is
3625                  * guaranteed enough space to fit the converted string, so
3626                  * don't have to worry about growing.  If two_byte_count is 0,
3627                  * then t points to the first byte of the string which hasn't
3628                  * been examined yet.  Otherwise two_byte_count is 1, and t
3629                  * points to the first byte in the string that will expand to
3630                  * two.  Depending on this, start examining at t or 1 after t.
3631                  * */
3632
3633                 U8 *d = t + two_byte_count;
3634
3635
3636                 /* Count up the remaining bytes that expand to two */
3637
3638                 while (d < e) {
3639                     const U8 chr = *d++;
3640                     if (! NATIVE_BYTE_IS_INVARIANT(chr)) two_byte_count++;
3641                 }
3642
3643                 /* The string will expand by just the number of bytes that
3644                  * occupy two positions.  But we are one afterwards because of
3645                  * the increment just above.  This is the place to put the
3646                  * trailing NUL, and to set the length before we decrement */
3647
3648                 d += two_byte_count;
3649                 SvCUR_set(sv, d - s);
3650                 *d-- = '\0';
3651
3652
3653                 /* Having decremented d, it points to the position to put the
3654                  * very last byte of the expanded string.  Go backwards through
3655                  * the string, copying and expanding as we go, stopping when we
3656                  * get to the part that is invariant the rest of the way down */
3657
3658                 e--;
3659                 while (e >= t) {
3660                     if (NATIVE_BYTE_IS_INVARIANT(*e)) {
3661                         *d-- = *e;
3662                     } else {
3663                         *d-- = UTF8_EIGHT_BIT_LO(*e);
3664                         *d-- = UTF8_EIGHT_BIT_HI(*e);
3665                     }
3666                     e--;
3667                 }
3668             }
3669
3670             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3671                 /* Update pos. We do it at the end rather than during
3672                  * the upgrade, to avoid slowing down the common case
3673                  * (upgrade without pos).
3674                  * pos can be stored as either bytes or characters.  Since
3675                  * this was previously a byte string we can just turn off
3676                  * the bytes flag. */
3677                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3678                 if (mg) {
3679                     mg->mg_flags &= ~MGf_BYTES;
3680                 }
3681                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3682                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3683             }
3684         }
3685     }
3686
3687     /* Mark as UTF-8 even if no variant - saves scanning loop */
3688     SvUTF8_on(sv);
3689     return SvCUR(sv);
3690 }
3691
3692 /*
3693 =for apidoc sv_utf8_downgrade
3694
3695 Attempts to convert the PV of an SV from characters to bytes.
3696 If the PV contains a character that cannot fit
3697 in a byte, this conversion will fail;
3698 in this case, either returns false or, if C<fail_ok> is not
3699 true, croaks.
3700
3701 This is not a general purpose Unicode to byte encoding interface:
3702 use the Encode extension for that.
3703
3704 =cut
3705 */
3706
3707 bool
3708 Perl_sv_utf8_downgrade(pTHX_ SV *const sv, const bool fail_ok)
3709 {
3710     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3711
3712     if (SvPOKp(sv) && SvUTF8(sv)) {
3713         if (SvCUR(sv)) {
3714             U8 *s;
3715             STRLEN len;
3716             int mg_flags = SV_GMAGIC;
3717
3718             if (SvIsCOW(sv)) {
3719                 S_sv_uncow(aTHX_ sv, 0);
3720             }
3721             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3722                 /* update pos */
3723                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3724                 if (mg && mg->mg_len > 0 && mg->mg_flags & MGf_BYTES) {
3725                         mg->mg_len = sv_pos_b2u_flags(sv, mg->mg_len,
3726                                                 SV_GMAGIC|SV_CONST_RETURN);
3727                         mg_flags = 0; /* sv_pos_b2u does get magic */
3728                 }
3729                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3730                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3731
3732             }
3733             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3734
3735             if (!utf8_to_bytes(s, &len)) {
3736                 if (fail_ok)
3737                     return FALSE;
3738                 else {
3739                     if (PL_op)
3740                         Perl_croak(aTHX_ "Wide character in %s",
3741                                    OP_DESC(PL_op));
3742                     else
3743                         Perl_croak(aTHX_ "Wide character");
3744                 }
3745             }
3746             SvCUR_set(sv, len);
3747         }
3748     }
3749     SvUTF8_off(sv);
3750     return TRUE;
3751 }
3752
3753 /*
3754 =for apidoc sv_utf8_encode
3755
3756 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3757 flag off so that it looks like octets again.
3758
3759 =cut
3760 */
3761
3762 void
3763 Perl_sv_utf8_encode(pTHX_ SV *const sv)
3764 {
3765     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3766
3767     if (SvREADONLY(sv)) {
3768         sv_force_normal_flags(sv, 0);
3769     }
3770     (void) sv_utf8_upgrade(sv);
3771     SvUTF8_off(sv);
3772 }
3773
3774 /*
3775 =for apidoc sv_utf8_decode
3776
3777 If the PV of the SV is an octet sequence in UTF-8
3778 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3779 so that it looks like a character.  If the PV contains only single-byte
3780 characters, the C<SvUTF8> flag stays off.
3781 Scans PV for validity and returns false if the PV is invalid UTF-8.
3782
3783 =cut
3784 */
3785
3786 bool
3787 Perl_sv_utf8_decode(pTHX_ SV *const sv)
3788 {
3789     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3790
3791     if (SvPOKp(sv)) {
3792         const U8 *start, *c;
3793         const U8 *e;
3794
3795         /* The octets may have got themselves encoded - get them back as
3796          * bytes
3797          */
3798         if (!sv_utf8_downgrade(sv, TRUE))
3799             return FALSE;
3800
3801         /* it is actually just a matter of turning the utf8 flag on, but
3802          * we want to make sure everything inside is valid utf8 first.
3803          */
3804         c = start = (const U8 *) SvPVX_const(sv);
3805         if (!is_utf8_string(c, SvCUR(sv)))
3806             return FALSE;
3807         e = (const U8 *) SvEND(sv);
3808         while (c < e) {
3809             const U8 ch = *c++;
3810             if (!UTF8_IS_INVARIANT(ch)) {
3811                 SvUTF8_on(sv);
3812                 break;
3813             }
3814         }
3815         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3816             /* XXX Is this dead code?  XS_utf8_decode calls SvSETMAGIC
3817                    after this, clearing pos.  Does anything on CPAN
3818                    need this? */
3819             /* adjust pos to the start of a UTF8 char sequence */
3820             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3821             if (mg) {
3822                 I32 pos = mg->mg_len;
3823                 if (pos > 0) {
3824                     for (c = start + pos; c > start; c--) {
3825                         if (UTF8_IS_START(*c))
3826                             break;
3827                     }
3828                     mg->mg_len  = c - start;
3829                 }
3830             }
3831             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3832                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3833         }
3834     }
3835     return TRUE;
3836 }
3837
3838 /*
3839 =for apidoc sv_setsv
3840
3841 Copies the contents of the source SV C<ssv> into the destination SV
3842 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3843 function if the source SV needs to be reused.  Does not handle 'set' magic on
3844 destination SV.  Calls 'get' magic on source SV.  Loosely speaking, it
3845 performs a copy-by-value, obliterating any previous content of the
3846 destination.
3847
3848 You probably want to use one of the assortment of wrappers, such as
3849 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3850 C<SvSetMagicSV_nosteal>.
3851
3852 =for apidoc sv_setsv_flags
3853
3854 Copies the contents of the source SV C<ssv> into the destination SV
3855 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3856 function if the source SV needs to be reused.  Does not handle 'set' magic.
3857 Loosely speaking, it performs a copy-by-value, obliterating any previous
3858 content of the destination.
3859 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3860 C<ssv> if appropriate, else not.  If the C<flags>
3861 parameter has the C<SV_NOSTEAL> bit set then the
3862 buffers of temps will not be stolen.  <sv_setsv>
3863 and C<sv_setsv_nomg> are implemented in terms of this function.
3864
3865 You probably want to use one of the assortment of wrappers, such as
3866 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3867 C<SvSetMagicSV_nosteal>.
3868
3869 This is the primary function for copying scalars, and most other
3870 copy-ish functions and macros use this underneath.
3871
3872 =cut
3873 */
3874
3875 static void
3876 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3877 {
3878     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3879     HV *old_stash = NULL;
3880
3881     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3882
3883     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3884         const char * const name = GvNAME(sstr);
3885         const STRLEN len = GvNAMELEN(sstr);
3886         {
3887             if (dtype >= SVt_PV) {
3888                 SvPV_free(dstr);
3889                 SvPV_set(dstr, 0);
3890                 SvLEN_set(dstr, 0);
3891                 SvCUR_set(dstr, 0);
3892             }
3893             SvUPGRADE(dstr, SVt_PVGV);
3894             (void)SvOK_off(dstr);
3895             isGV_with_GP_on(dstr);
3896         }
3897         GvSTASH(dstr) = GvSTASH(sstr);
3898         if (GvSTASH(dstr))
3899             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3900         gv_name_set(MUTABLE_GV(dstr), name, len,
3901                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3902         SvFAKE_on(dstr);        /* can coerce to non-glob */
3903     }
3904
3905     if(GvGP(MUTABLE_GV(sstr))) {
3906         /* If source has method cache entry, clear it */
3907         if(GvCVGEN(sstr)) {
3908             SvREFCNT_dec(GvCV(sstr));
3909             GvCV_set(sstr, NULL);
3910             GvCVGEN(sstr) = 0;
3911         }
3912         /* If source has a real method, then a method is
3913            going to change */
3914         else if(
3915          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3916         ) {
3917             mro_changes = 1;
3918         }
3919     }
3920
3921     /* If dest already had a real method, that's a change as well */
3922     if(
3923         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3924      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3925     ) {
3926         mro_changes = 1;
3927     }
3928
3929     /* We don't need to check the name of the destination if it was not a
3930        glob to begin with. */
3931     if(dtype == SVt_PVGV) {
3932         const char * const name = GvNAME((const GV *)dstr);
3933         if(
3934             strEQ(name,"ISA")
3935          /* The stash may have been detached from the symbol table, so
3936             check its name. */
3937          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3938         )
3939             mro_changes = 2;
3940         else {
3941             const STRLEN len = GvNAMELEN(dstr);
3942             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3943              || (len == 1 && name[0] == ':')) {
3944                 mro_changes = 3;
3945
3946                 /* Set aside the old stash, so we can reset isa caches on
3947                    its subclasses. */
3948                 if((old_stash = GvHV(dstr)))
3949                     /* Make sure we do not lose it early. */
3950                     SvREFCNT_inc_simple_void_NN(
3951                      sv_2mortal((SV *)old_stash)
3952                     );
3953             }
3954         }
3955
3956         SvREFCNT_inc_simple_void_NN(sv_2mortal(dstr));
3957     }
3958
3959     gp_free(MUTABLE_GV(dstr));
3960     GvINTRO_off(dstr);          /* one-shot flag */
3961     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3962     if (SvTAINTED(sstr))
3963         SvTAINT(dstr);
3964     if (GvIMPORTED(dstr) != GVf_IMPORTED
3965         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3966         {
3967             GvIMPORTED_on(dstr);
3968         }
3969     GvMULTI_on(dstr);
3970     if(mro_changes == 2) {
3971       if (GvAV((const GV *)sstr)) {
3972         MAGIC *mg;
3973         SV * const sref = (SV *)GvAV((const GV *)dstr);
3974         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3975             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3976                 AV * const ary = newAV();
3977                 av_push(ary, mg->mg_obj); /* takes the refcount */
3978                 mg->mg_obj = (SV *)ary;
3979             }
3980             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3981         }
3982         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3983       }
3984       mro_isa_changed_in(GvSTASH(dstr));
3985     }
3986     else if(mro_changes == 3) {
3987         HV * const stash = GvHV(dstr);
3988         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3989             mro_package_moved(
3990                 stash, old_stash,
3991                 (GV *)dstr, 0
3992             );
3993     }
3994     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3995     if (GvIO(dstr) && dtype == SVt_PVGV) {
3996         DEBUG_o(Perl_deb(aTHX_
3997                         "glob_assign_glob clearing PL_stashcache\n"));
3998         /* It's a cache. It will rebuild itself quite happily.
3999            It's a lot of effort to work out exactly which key (or keys)
4000            might be invalidated by the creation of the this file handle.
4001          */
4002         hv_clear(PL_stashcache);
4003     }
4004     return;
4005 }
4006
4007 void
4008 Perl_gv_setref(pTHX_ SV *const dstr, SV *const sstr)
4009 {
4010     SV * const sref = SvRV(sstr);
4011     SV *dref;
4012     const int intro = GvINTRO(dstr);
4013     SV **location;
4014     U8 import_flag = 0;
4015     const U32 stype = SvTYPE(sref);
4016
4017     PERL_ARGS_ASSERT_GV_SETREF;
4018
4019     if (intro) {
4020         GvINTRO_off(dstr);      /* one-shot flag */
4021         GvLINE(dstr) = CopLINE(PL_curcop);
4022         GvEGV(dstr) = MUTABLE_GV(dstr);
4023     }
4024     GvMULTI_on(dstr);
4025     switch (stype) {
4026     case SVt_PVCV:
4027         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
4028         import_flag = GVf_IMPORTED_CV;
4029         goto common;
4030     case SVt_PVHV:
4031         location = (SV **) &GvHV(dstr);
4032         import_flag = GVf_IMPORTED_HV;
4033         goto common;
4034     case SVt_PVAV:
4035         location = (SV **) &GvAV(dstr);
4036         import_flag = GVf_IMPORTED_AV;
4037         goto common;
4038     case SVt_PVIO:
4039         location = (SV **) &GvIOp(dstr);
4040         goto common;
4041     case SVt_PVFM:
4042         location = (SV **) &GvFORM(dstr);
4043         goto common;
4044     default:
4045         location = &GvSV(dstr);
4046         import_flag = GVf_IMPORTED_SV;
4047     common:
4048         if (intro) {
4049             if (stype == SVt_PVCV) {
4050                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
4051                 if (GvCVGEN(dstr)) {
4052                     SvREFCNT_dec(GvCV(dstr));
4053                     GvCV_set(dstr, NULL);
4054                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
4055                 }
4056             }
4057             /* SAVEt_GVSLOT takes more room on the savestack and has more
4058                overhead in leave_scope than SAVEt_GENERIC_SV.  But for CVs
4059                leave_scope needs access to the GV so it can reset method
4060                caches.  We must use SAVEt_GVSLOT whenever the type is
4061                SVt_PVCV, even if the stash is anonymous, as the stash may
4062                gain a name somehow before leave_scope. */
4063             if (stype == SVt_PVCV) {
4064                 /* There is no save_pushptrptrptr.  Creating it for this
4065                    one call site would be overkill.  So inline the ss add
4066                    routines here. */
4067                 dSS_ADD;
4068                 SS_ADD_PTR(dstr);
4069                 SS_ADD_PTR(location);
4070                 SS_ADD_PTR(SvREFCNT_inc(*location));
4071                 SS_ADD_UV(SAVEt_GVSLOT);
4072                 SS_ADD_END(4);
4073             }
4074             else SAVEGENERICSV(*location);
4075         }
4076         dref = *location;
4077         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
4078             CV* const cv = MUTABLE_CV(*location);
4079             if (cv) {
4080                 if (!GvCVGEN((const GV *)dstr) &&
4081                     (CvROOT(cv) || CvXSUB(cv)) &&
4082                     /* redundant check that avoids creating the extra SV
4083                        most of the time: */
4084                     (CvCONST(cv) || ckWARN(WARN_REDEFINE)))
4085                     {
4086                         SV * const new_const_sv =
4087                             CvCONST((const CV *)sref)
4088                                  ? cv_const_sv((const CV *)sref)
4089                                  : NULL;
4090                         report_redefined_cv(
4091                            sv_2mortal(Perl_newSVpvf(aTHX_
4092                                 "%"HEKf"::%"HEKf,
4093                                 HEKfARG(
4094                                  HvNAME_HEK(GvSTASH((const GV *)dstr))
4095                                 ),
4096                                 HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr)))
4097                            )),
4098                            cv,
4099                            CvCONST((const CV *)sref) ? &new_const_sv : NULL
4100                         );
4101                     }
4102                 if (!intro)
4103                     cv_ckproto_len_flags(cv, (const GV *)dstr,
4104                                    SvPOK(sref) ? CvPROTO(sref) : NULL,
4105                                    SvPOK(sref) ? CvPROTOLEN(sref) : 0,
4106                                    SvPOK(sref) ? SvUTF8(sref) : 0);
4107             }
4108             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
4109             GvASSUMECV_on(dstr);
4110             if(GvSTASH(dstr)) { /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
4111                 if (intro && GvREFCNT(dstr) > 1) {
4112                     /* temporary remove extra savestack's ref */
4113                     --GvREFCNT(dstr);
4114                     gv_method_changed(dstr);
4115                     ++GvREFCNT(dstr);
4116                 }
4117                 else gv_method_changed(dstr);
4118             }
4119         }
4120         *location = SvREFCNT_inc_simple_NN(sref);
4121         if (import_flag && !(GvFLAGS(dstr) & import_flag)
4122             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
4123             GvFLAGS(dstr) |= import_flag;
4124         }
4125         if (import_flag == GVf_IMPORTED_SV) {
4126             if (intro) {
4127                 save_aliased_sv((GV *)dstr);
4128             }
4129             /* Turn off the flag if sref is not referenced elsewhere,
4130                even by weak refs.  (SvRMAGICAL is a pessimistic check for
4131                back refs.)  */
4132             if (SvREFCNT(sref) <= 2 && !SvRMAGICAL(sref))
4133                 GvALIASED_SV_off(dstr);
4134             else
4135                 GvALIASED_SV_on(dstr);
4136         }
4137         if (stype == SVt_PVHV) {
4138             const char * const name = GvNAME((GV*)dstr);
4139             const STRLEN len = GvNAMELEN(dstr);
4140             if (
4141                 (
4142                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
4143                 || (len == 1 && name[0] == ':')
4144                 )
4145              && (!dref || HvENAME_get(dref))
4146             ) {
4147                 mro_package_moved(
4148                     (HV *)sref, (HV *)dref,
4149                     (GV *)dstr, 0
4150                 );
4151             }
4152         }
4153         else if (
4154             stype == SVt_PVAV && sref != dref
4155          && strEQ(GvNAME((GV*)dstr), "ISA")
4156          /* The stash may have been detached from the symbol table, so
4157             check its name before doing anything. */
4158          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
4159         ) {
4160             MAGIC *mg;
4161             MAGIC * const omg = dref && SvSMAGICAL(dref)
4162                                  ? mg_find(dref, PERL_MAGIC_isa)
4163                                  : NULL;
4164             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
4165                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
4166                     AV * const ary = newAV();
4167                     av_push(ary, mg->mg_obj); /* takes the refcount */
4168                     mg->mg_obj = (SV *)ary;
4169                 }
4170                 if (omg) {
4171                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
4172                         SV **svp = AvARRAY((AV *)omg->mg_obj);
4173                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
4174                         while (items--)
4175                             av_push(
4176                              (AV *)mg->mg_obj,
4177                              SvREFCNT_inc_simple_NN(*svp++)
4178                             );
4179                     }
4180                     else
4181                         av_push(
4182                          (AV *)mg->mg_obj,
4183                          SvREFCNT_inc_simple_NN(omg->mg_obj)
4184                         );
4185                 }
4186                 else
4187                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
4188             }
4189             else
4190             {
4191                 sv_magic(
4192                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
4193                 );
4194                 mg = mg_find(sref, PERL_MAGIC_isa);
4195             }
4196             /* Since the *ISA assignment could have affected more than
4197                one stash, don't call mro_isa_changed_in directly, but let
4198                magic_clearisa do it for us, as it already has the logic for
4199                dealing with globs vs arrays of globs. */
4200             assert(mg);
4201             Perl_magic_clearisa(aTHX_ NULL, mg);
4202         }
4203         else if (stype == SVt_PVIO) {
4204             DEBUG_o(Perl_deb(aTHX_ "gv_setref clearing PL_stashcache\n"));
4205             /* It's a cache. It will rebuild itself quite happily.
4206                It's a lot of effort to work out exactly which key (or keys)
4207                might be invalidated by the creation of the this file handle.
4208             */
4209             hv_clear(PL_stashcache);
4210         }
4211         break;
4212     }
4213     if (!intro) SvREFCNT_dec(dref);
4214     if (SvTAINTED(sstr))
4215         SvTAINT(dstr);
4216     return;
4217 }
4218
4219
4220
4221
4222 #ifdef PERL_DEBUG_READONLY_COW
4223 # include <sys/mman.h>
4224
4225 # ifndef PERL_MEMORY_DEBUG_HEADER_SIZE
4226 #  define PERL_MEMORY_DEBUG_HEADER_SIZE 0
4227 # endif
4228
4229 void
4230 Perl_sv_buf_to_ro(pTHX_ SV *sv)
4231 {
4232     struct perl_memory_debug_header * const header =
4233         (struct perl_memory_debug_header *)(SvPVX(sv)-PERL_MEMORY_DEBUG_HEADER_SIZE);
4234     const MEM_SIZE len = header->size;
4235     PERL_ARGS_ASSERT_SV_BUF_TO_RO;
4236 # ifdef PERL_TRACK_MEMPOOL
4237     if (!header->readonly) header->readonly = 1;
4238 # endif
4239     if (mprotect(header, len, PROT_READ))
4240         Perl_warn(aTHX_ "mprotect RW for COW string %p %lu failed with %d",
4241                          header, len, errno);
4242 }
4243
4244 static void
4245 S_sv_buf_to_rw(pTHX_ SV *sv)
4246 {
4247     struct perl_memory_debug_header * const header =
4248         (struct perl_memory_debug_header *)(SvPVX(sv)-PERL_MEMORY_DEBUG_HEADER_SIZE);
4249     const MEM_SIZE len = header->size;
4250     PERL_ARGS_ASSERT_SV_BUF_TO_RW;
4251     if (mprotect(header, len, PROT_READ|PROT_WRITE))
4252         Perl_warn(aTHX_ "mprotect for COW string %p %lu failed with %d",
4253                          header, len, errno);
4254 # ifdef PERL_TRACK_MEMPOOL
4255     header->readonly = 0;
4256 # endif
4257 }
4258
4259 #else
4260 # define sv_buf_to_ro(sv)       NOOP
4261 # define sv_buf_to_rw(sv)       NOOP
4262 #endif
4263
4264 void
4265 Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags)
4266 {
4267     U32 sflags;
4268     int dtype;
4269     svtype stype;
4270
4271     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
4272
4273     if (UNLIKELY( sstr == dstr ))
4274         return;
4275
4276     if (SvIS_FREED(dstr)) {
4277         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
4278                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
4279     }
4280     SV_CHECK_THINKFIRST_COW_DROP(dstr);
4281     if (UNLIKELY( !sstr ))
4282         sstr = &PL_sv_undef;
4283     if (SvIS_FREED(sstr)) {
4284         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
4285                    (void*)sstr, (void*)dstr);
4286     }
4287     stype = SvTYPE(sstr);
4288     dtype = SvTYPE(dstr);
4289
4290     /* There's a lot of redundancy below but we're going for speed here */
4291
4292     switch (stype) {
4293     case SVt_NULL:
4294       undef_sstr:
4295         if (LIKELY( dtype != SVt_PVGV && dtype != SVt_PVLV )) {
4296             (void)SvOK_off(dstr);
4297             return;
4298         }
4299         break;
4300     case SVt_IV:
4301         if (SvIOK(sstr)) {
4302             switch (dtype) {
4303             case SVt_NULL:
4304                 /* For performance, we inline promoting to type SVt_IV. */
4305                 /* We're starting from SVt_NULL, so provided that define is
4306                  * actual 0, we don't have to unset any SV type flags
4307                  * to promote to SVt_IV. */
4308                 STATIC_ASSERT_STMT(SVt_NULL == 0);
4309                 SET_SVANY_FOR_BODYLESS_IV(dstr);
4310                 SvFLAGS(dstr) |= SVt_IV;
4311                 break;
4312             case SVt_NV:
4313             case SVt_PV:
4314                 sv_upgrade(dstr, SVt_PVIV);
4315                 break;
4316             case SVt_PVGV:
4317             case SVt_PVLV:
4318                 goto end_of_first_switch;
4319             }
4320             (void)SvIOK_only(dstr);
4321             SvIV_set(dstr,  SvIVX(sstr));
4322             if (SvIsUV(sstr))
4323                 SvIsUV_on(dstr);
4324             /* SvTAINTED can only be true if the SV has taint magic, which in
4325                turn means that the SV type is PVMG (or greater). This is the
4326                case statement for SVt_IV, so this cannot be true (whatever gcov
4327                may say).  */
4328             assert(!SvTAINTED(sstr));
4329             return;
4330         }
4331         if (!SvROK(sstr))
4332             goto undef_sstr;
4333         if (dtype < SVt_PV && dtype != SVt_IV)
4334             sv_upgrade(dstr, SVt_IV);
4335         break;
4336
4337     case SVt_NV:
4338         if (LIKELY( SvNOK(sstr) )) {
4339             switch (dtype) {
4340             case SVt_NULL:
4341             case SVt_IV:
4342                 sv_upgrade(dstr, SVt_NV);
4343                 break;
4344             case SVt_PV:
4345             case SVt_PVIV:
4346                 sv_upgrade(dstr, SVt_PVNV);
4347                 break;
4348             case SVt_PVGV:
4349             case SVt_PVLV:
4350                 goto end_of_first_switch;
4351             }
4352             SvNV_set(dstr, SvNVX(sstr));
4353             (void)SvNOK_only(dstr);
4354             /* SvTAINTED can only be true if the SV has taint magic, which in
4355                turn means that the SV type is PVMG (or greater). This is the
4356                case statement for SVt_NV, so this cannot be true (whatever gcov
4357                may say).  */
4358             assert(!SvTAINTED(sstr));
4359             return;
4360         }
4361         goto undef_sstr;
4362
4363     case SVt_PV:
4364         if (dtype < SVt_PV)
4365             sv_upgrade(dstr, SVt_PV);
4366         break;
4367     case SVt_PVIV:
4368         if (dtype < SVt_PVIV)
4369             sv_upgrade(dstr, SVt_PVIV);
4370         break;
4371     case SVt_PVNV:
4372         if (dtype < SVt_PVNV)
4373             sv_upgrade(dstr, SVt_PVNV);
4374         break;
4375     default:
4376         {
4377         const char * const type = sv_reftype(sstr,0);
4378         if (PL_op)
4379             /* diag_listed_as: Bizarre copy of %s */
4380             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4381         else
4382             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4383         }
4384         NOT_REACHED; /* NOTREACHED */
4385
4386     case SVt_REGEXP:
4387       upgregexp:
4388         if (dtype < SVt_REGEXP)
4389         {
4390             if (dtype >= SVt_PV) {
4391                 SvPV_free(dstr);
4392                 SvPV_set(dstr, 0);
4393                 SvLEN_set(dstr, 0);
4394                 SvCUR_set(dstr, 0);
4395             }
4396             sv_upgrade(dstr, SVt_REGEXP);
4397         }
4398         break;
4399
4400         case SVt_INVLIST:
4401     case SVt_PVLV:
4402     case SVt_PVGV:
4403     case SVt_PVMG:
4404         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4405             mg_get(sstr);
4406             if (SvTYPE(sstr) != stype)
4407                 stype = SvTYPE(sstr);
4408         }
4409         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4410                     glob_assign_glob(dstr, sstr, dtype);
4411                     return;
4412         }
4413         if (stype == SVt_PVLV)
4414         {
4415             if (isREGEXP(sstr)) goto upgregexp;
4416             SvUPGRADE(dstr, SVt_PVNV);
4417         }
4418         else
4419             SvUPGRADE(dstr, (svtype)stype);
4420     }
4421  end_of_first_switch:
4422
4423     /* dstr may have been upgraded.  */
4424     dtype = SvTYPE(dstr);
4425     sflags = SvFLAGS(sstr);
4426
4427     if (UNLIKELY( dtype == SVt_PVCV )) {
4428         /* Assigning to a subroutine sets the prototype.  */
4429         if (SvOK(sstr)) {
4430             STRLEN len;
4431             const char *const ptr = SvPV_const(sstr, len);
4432
4433             SvGROW(dstr, len + 1);
4434             Copy(ptr, SvPVX(dstr), len + 1, char);
4435             SvCUR_set(dstr, len);
4436             SvPOK_only(dstr);
4437             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4438             CvAUTOLOAD_off(dstr);
4439         } else {
4440             SvOK_off(dstr);
4441         }
4442     }
4443     else if (UNLIKELY(dtype == SVt_PVAV || dtype == SVt_PVHV
4444              || dtype == SVt_PVFM))
4445     {
4446         const char * const type = sv_reftype(dstr,0);
4447         if (PL_op)
4448             /* diag_listed_as: Cannot copy to %s */
4449             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4450         else
4451             Perl_croak(aTHX_ "Cannot copy to %s", type);
4452     } else if (sflags & SVf_ROK) {
4453         if (isGV_with_GP(dstr)
4454             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4455             sstr = SvRV(sstr);
4456             if (sstr == dstr) {
4457                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4458                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4459                 {
4460                     GvIMPORTED_on(dstr);
4461                 }
4462                 GvMULTI_on(dstr);
4463                 return;
4464             }
4465             glob_assign_glob(dstr, sstr, dtype);
4466             return;
4467         }
4468
4469         if (dtype >= SVt_PV) {
4470             if (isGV_with_GP(dstr)) {
4471                 gv_setref(dstr, sstr);
4472                 return;
4473             }
4474             if (SvPVX_const(dstr)) {
4475                 SvPV_free(dstr);
4476                 SvLEN_set(dstr, 0);
4477                 SvCUR_set(dstr, 0);
4478             }
4479         }
4480         (void)SvOK_off(dstr);
4481         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4482         SvFLAGS(dstr) |= sflags & SVf_ROK;
4483         assert(!(sflags & SVp_NOK));
4484         assert(!(sflags & SVp_IOK));
4485         assert(!(sflags & SVf_NOK));
4486         assert(!(sflags & SVf_IOK));
4487     }
4488     else if (isGV_with_GP(dstr)) {
4489         if (!(sflags & SVf_OK)) {
4490             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4491                            "Undefined value assigned to typeglob");
4492         }
4493         else {
4494             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4495             if (dstr != (const SV *)gv) {
4496                 const char * const name = GvNAME((const GV *)dstr);
4497                 const STRLEN len = GvNAMELEN(dstr);
4498                 HV *old_stash = NULL;
4499                 bool reset_isa = FALSE;
4500                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4501                  || (len == 1 && name[0] == ':')) {
4502                     /* Set aside the old stash, so we can reset isa caches
4503                        on its subclasses. */
4504                     if((old_stash = GvHV(dstr))) {
4505                         /* Make sure we do not lose it early. */
4506                         SvREFCNT_inc_simple_void_NN(
4507                          sv_2mortal((SV *)old_stash)
4508                         );
4509                     }
4510                     reset_isa = TRUE;
4511                 }
4512
4513                 if (GvGP(dstr)) {
4514                     SvREFCNT_inc_simple_void_NN(sv_2mortal(dstr));
4515                     gp_free(MUTABLE_GV(dstr));
4516                 }
4517                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4518
4519                 if (reset_isa) {
4520                     HV * const stash = GvHV(dstr);
4521                     if(
4522                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4523                     )
4524                         mro_package_moved(
4525                          stash, old_stash,
4526                          (GV *)dstr, 0
4527                         );
4528                 }
4529             }
4530         }
4531     }
4532     else if ((dtype == SVt_REGEXP || dtype == SVt_PVLV)
4533           && (stype == SVt_REGEXP || isREGEXP(sstr))) {
4534         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4535     }
4536     else if (sflags & SVp_POK) {
4537         const STRLEN cur = SvCUR(sstr);
4538         const STRLEN len = SvLEN(sstr);
4539
4540         /*
4541          * We have three basic ways to copy the string:
4542          *
4543          *  1. Swipe
4544          *  2. Copy-on-write
4545          *  3. Actual copy
4546          * 
4547          * Which we choose is based on various factors.  The following
4548          * things are listed in order of speed, fastest to slowest:
4549          *  - Swipe
4550          *  - Copying a short string
4551          *  - Copy-on-write bookkeeping
4552          *  - malloc
4553          *  - Copying a long string
4554          * 
4555          * We swipe the string (steal the string buffer) if the SV on the
4556          * rhs is about to be freed anyway (TEMP and refcnt==1).  This is a
4557          * big win on long strings.  It should be a win on short strings if
4558          * SvPVX_const(dstr) has to be allocated.  If not, it should not 
4559          * slow things down, as SvPVX_const(sstr) would have been freed
4560          * soon anyway.
4561          * 
4562          * We also steal the buffer from a PADTMP (operator target) if it
4563          * is â€˜long enough’.  For short strings, a swipe does not help
4564          * here, as it causes more malloc calls the next time the target
4565          * is used.  Benchmarks show that even if SvPVX_const(dstr) has to
4566          * be allocated it is still not worth swiping PADTMPs for short
4567          * strings, as the savings here are small.
4568          * 
4569          * If swiping is not an option, then we see whether it is
4570          * worth using copy-on-write.  If the lhs already has a buf-
4571          * fer big enough and the string is short, we skip it and fall back
4572          * to method 3, since memcpy is faster for short strings than the
4573          * later bookkeeping overhead that copy-on-write entails.
4574
4575          * If the rhs is not a copy-on-write string yet, then we also
4576          * consider whether the buffer is too large relative to the string
4577          * it holds.  Some operations such as readline allocate a large
4578          * buffer in the expectation of reusing it.  But turning such into
4579          * a COW buffer is counter-productive because it increases memory
4580          * usage by making readline allocate a new large buffer the sec-
4581          * ond time round.  So, if the buffer is too large, again, we use
4582          * method 3 (copy).
4583          * 
4584          * Finally, if there is no buffer on the left, or the buffer is too 
4585          * small, then we use copy-on-write and make both SVs share the
4586          * string buffer.
4587          *
4588          */
4589
4590         /* Whichever path we take through the next code, we want this true,
4591            and doing it now facilitates the COW check.  */
4592         (void)SvPOK_only(dstr);
4593
4594         if (
4595                  (              /* Either ... */
4596                                 /* slated for free anyway (and not COW)? */
4597                     (sflags & (SVs_TEMP|SVf_IsCOW)) == SVs_TEMP
4598                                 /* or a swipable TARG */
4599                  || ((sflags &
4600                            (SVs_PADTMP|SVf_READONLY|SVf_PROTECT|SVf_IsCOW))
4601                        == SVs_PADTMP
4602                                 /* whose buffer is worth stealing */
4603                      && CHECK_COWBUF_THRESHOLD(cur,len)
4604                     )
4605                  ) &&
4606                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4607                  (!(flags & SV_NOSTEAL)) &&
4608                                         /* and we're allowed to steal temps */
4609                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4610                  len)             /* and really is a string */
4611         {       /* Passes the swipe test.  */
4612             if (SvPVX_const(dstr))      /* we know that dtype >= SVt_PV */
4613                 SvPV_free(dstr);
4614             SvPV_set(dstr, SvPVX_mutable(sstr));
4615             SvLEN_set(dstr, SvLEN(sstr));
4616             SvCUR_set(dstr, SvCUR(sstr));
4617
4618             SvTEMP_off(dstr);
4619             (void)SvOK_off(sstr);       /* NOTE: nukes most SvFLAGS on sstr */
4620             SvPV_set(sstr, NULL);
4621             SvLEN_set(sstr, 0);
4622             SvCUR_set(sstr, 0);
4623             SvTEMP_off(sstr);
4624         }
4625         else if (flags & SV_COW_SHARED_HASH_KEYS
4626               &&
4627 #ifdef PERL_OLD_COPY_ON_WRITE
4628                  (  sflags & SVf_IsCOW
4629                  || (   (sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4630                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4631                      && SvTYPE(sstr) >= SVt_PVIV && len
4632                     )
4633                  )
4634 #elif defined(PERL_NEW_COPY_ON_WRITE)
4635                  (sflags & SVf_IsCOW
4636                    ? (!len ||
4637                        (  (CHECK_COWBUF_THRESHOLD(cur,len) || SvLEN(dstr) < cur+1)
4638                           /* If this is a regular (non-hek) COW, only so
4639                              many COW "copies" are possible. */
4640                        && CowREFCNT(sstr) != SV_COW_REFCNT_MAX  ))
4641                    : (  (sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4642                      && !(SvFLAGS(dstr) & SVf_BREAK)
4643                      && CHECK_COW_THRESHOLD(cur,len) && cur+1 < len
4644                      && (CHECK_COWBUF_THRESHOLD(cur,len) || SvLEN(dstr) < cur+1)
4645                     ))
4646 #else
4647                  sflags & SVf_IsCOW
4648               && !(SvFLAGS(dstr) & SVf_BREAK)
4649 #endif
4650             ) {
4651             /* Either it's a shared hash key, or it's suitable for
4652                copy-on-write.  */
4653             if (DEBUG_C_TEST) {
4654                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4655                 sv_dump(sstr);
4656                 sv_dump(dstr);
4657             }
4658 #ifdef PERL_ANY_COW
4659             if (!(sflags & SVf_IsCOW)) {
4660                     SvIsCOW_on(sstr);
4661 # ifdef PERL_OLD_COPY_ON_WRITE
4662                     /* Make the source SV into a loop of 1.
4663                        (about to become 2) */
4664                     SV_COW_NEXT_SV_SET(sstr, sstr);
4665 # else
4666                     CowREFCNT(sstr) = 0;
4667 # endif
4668             }
4669 #endif
4670             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4671                 SvPV_free(dstr);
4672             }
4673
4674 #ifdef PERL_ANY_COW
4675             if (len) {
4676 # ifdef PERL_OLD_COPY_ON_WRITE
4677                     assert (SvTYPE(dstr) >= SVt_PVIV);
4678                     /* SvIsCOW_normal */
4679                     /* splice us in between source and next-after-source.  */
4680                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4681                     SV_COW_NEXT_SV_SET(sstr, dstr);
4682 # else
4683                     if (sflags & SVf_IsCOW) {
4684                         sv_buf_to_rw(sstr);
4685                     }
4686                     CowREFCNT(sstr)++;
4687 # endif
4688                     SvPV_set(dstr, SvPVX_mutable(sstr));
4689                     sv_buf_to_ro(sstr);
4690             } else
4691 #endif
4692             {
4693                     /* SvIsCOW_shared_hash */
4694                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4695                                           "Copy on write: Sharing hash\n"));
4696
4697                     assert (SvTYPE(dstr) >= SVt_PV);
4698                     SvPV_set(dstr,
4699                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4700             }
4701             SvLEN_set(dstr, len);
4702             SvCUR_set(dstr, cur);
4703             SvIsCOW_on(dstr);
4704         } else {
4705             /* Failed the swipe test, and we cannot do copy-on-write either.
4706                Have to copy the string.  */
4707             SvGROW(dstr, cur + 1);      /* inlined from sv_setpvn */
4708             Move(SvPVX_const(sstr),SvPVX(dstr),cur,char);
4709             SvCUR_set(dstr, cur);
4710             *SvEND(dstr) = '\0';
4711         }
4712         if (sflags & SVp_NOK) {
4713             SvNV_set(dstr, SvNVX(sstr));
4714         }
4715         if (sflags & SVp_IOK) {
4716             SvIV_set(dstr, SvIVX(sstr));
4717             /* Must do this otherwise some other overloaded use of 0x80000000
4718                gets confused. I guess SVpbm_VALID */
4719             if (sflags & SVf_IVisUV)
4720                 SvIsUV_on(dstr);
4721         }
4722         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4723         {
4724             const MAGIC * const smg = SvVSTRING_mg(sstr);
4725             if (smg) {
4726                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4727                          smg->mg_ptr, smg->mg_len);
4728                 SvRMAGICAL_on(dstr);
4729             }
4730         }
4731     }
4732     else if (sflags & (SVp_IOK|SVp_NOK)) {
4733         (void)SvOK_off(dstr);
4734         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4735         if (sflags & SVp_IOK) {
4736             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4737             SvIV_set(dstr, SvIVX(sstr));
4738         }
4739         if (sflags & SVp_NOK) {
4740             SvNV_set(dstr, SvNVX(sstr));
4741         }
4742     }
4743     else {
4744         if (isGV_with_GP(sstr)) {
4745             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4746         }
4747         else
4748             (void)SvOK_off(dstr);
4749     }
4750     if (SvTAINTED(sstr))
4751         SvTAINT(dstr);
4752 }
4753
4754 /*
4755 =for apidoc sv_setsv_mg
4756
4757 Like C<sv_setsv>, but also handles 'set' magic.
4758
4759 =cut
4760 */
4761
4762 void
4763 Perl_sv_setsv_mg(pTHX_ SV *const dstr, SV *const sstr)
4764 {
4765     PERL_ARGS_ASSERT_SV_SETSV_MG;
4766
4767     sv_setsv(dstr,sstr);
4768     SvSETMAGIC(dstr);
4769 }
4770
4771 #ifdef PERL_ANY_COW
4772 # ifdef PERL_OLD_COPY_ON_WRITE
4773 #  define SVt_COW SVt_PVIV
4774 # else
4775 #  define SVt_COW SVt_PV
4776 # endif
4777 SV *
4778 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4779 {
4780     STRLEN cur = SvCUR(sstr);
4781     STRLEN len = SvLEN(sstr);
4782     char *new_pv;
4783 #if defined(PERL_DEBUG_READONLY_COW) && defined(PERL_NEW_COPY_ON_WRITE)
4784     const bool already = cBOOL(SvIsCOW(sstr));
4785 #endif
4786
4787     PERL_ARGS_ASSERT_SV_SETSV_COW;
4788
4789     if (DEBUG_C_TEST) {
4790         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4791                       (void*)sstr, (void*)dstr);
4792         sv_dump(sstr);
4793         if (dstr)
4794                     sv_dump(dstr);
4795     }
4796
4797     if (dstr) {
4798         if (SvTHINKFIRST(dstr))
4799             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4800         else if (SvPVX_const(dstr))
4801             Safefree(SvPVX_mutable(dstr));
4802     }
4803     else
4804         new_SV(dstr);
4805     SvUPGRADE(dstr, SVt_COW);
4806
4807     assert (SvPOK(sstr));
4808     assert (SvPOKp(sstr));
4809 # ifdef PERL_OLD_COPY_ON_WRITE
4810     assert (!SvIOK(sstr));
4811     assert (!SvIOKp(sstr));
4812     assert (!SvNOK(sstr));
4813     assert (!SvNOKp(sstr));
4814 # endif
4815
4816     if (SvIsCOW(sstr)) {
4817
4818         if (SvLEN(sstr) == 0) {
4819             /* source is a COW shared hash key.  */
4820             DEBUG_C(PerlIO_printf(Perl_debug_log,
4821                                   "Fast copy on write: Sharing hash\n"));
4822             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4823             goto common_exit;
4824         }
4825 # ifdef PERL_OLD_COPY_ON_WRITE
4826         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4827 # else
4828         assert(SvCUR(sstr)+1 < SvLEN(sstr));
4829         assert(CowREFCNT(sstr) < SV_COW_REFCNT_MAX);
4830 # endif
4831     } else {
4832         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4833         SvUPGRADE(sstr, SVt_COW);
4834         SvIsCOW_on(sstr);
4835         DEBUG_C(PerlIO_printf(Perl_debug_log,
4836                               "Fast copy on write: Converting sstr to COW\n"));
4837 # ifdef PERL_OLD_COPY_ON_WRITE
4838         SV_COW_NEXT_SV_SET(dstr, sstr);
4839 # else
4840         CowREFCNT(sstr) = 0;    
4841 # endif
4842     }
4843 # ifdef PERL_OLD_COPY_ON_WRITE
4844     SV_COW_NEXT_SV_SET(sstr, dstr);
4845 # else
4846 #  ifdef PERL_DEBUG_READONLY_COW
4847     if (already) sv_buf_to_rw(sstr);
4848 #  endif
4849     CowREFCNT(sstr)++;  
4850 # endif
4851     new_pv = SvPVX_mutable(sstr);
4852     sv_buf_to_ro(sstr);
4853
4854   common_exit:
4855     SvPV_set(dstr, new_pv);
4856     SvFLAGS(dstr) = (SVt_COW|SVf_POK|SVp_POK|SVf_IsCOW);
4857     if (SvUTF8(sstr))
4858         SvUTF8_on(dstr);
4859     SvLEN_set(dstr, len);
4860     SvCUR_set(dstr, cur);
4861     if (DEBUG_C_TEST) {
4862         sv_dump(dstr);
4863     }
4864     return dstr;
4865 }
4866 #endif
4867
4868 /*
4869 =for apidoc sv_setpvn
4870
4871 Copies a string (possibly containing embedded C<NUL> characters) into an SV.
4872 The C<len> parameter indicates the number of
4873 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4874 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4875
4876 =cut
4877 */
4878
4879 void
4880 Perl_sv_setpvn(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4881 {
4882     char *dptr;
4883
4884     PERL_ARGS_ASSERT_SV_SETPVN;
4885
4886     SV_CHECK_THINKFIRST_COW_DROP(sv);
4887     if (!ptr) {
4888         (void)SvOK_off(sv);
4889         return;
4890     }
4891     else {
4892         /* len is STRLEN which is unsigned, need to copy to signed */
4893         const IV iv = len;
4894         if (iv < 0)
4895             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen %"
4896                        IVdf, iv);
4897     }
4898     SvUPGRADE(sv, SVt_PV);
4899
4900     dptr = SvGROW(sv, len + 1);
4901     Move(ptr,dptr,len,char);
4902     dptr[len] = '\0';
4903     SvCUR_set(sv, len);
4904     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4905     SvTAINT(sv);
4906     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4907 }
4908
4909 /*
4910 =for apidoc sv_setpvn_mg
4911
4912 Like C<sv_setpvn>, but also handles 'set' magic.
4913
4914 =cut
4915 */
4916
4917 void
4918 Perl_sv_setpvn_mg(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4919 {
4920     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4921
4922     sv_setpvn(sv,ptr,len);
4923     SvSETMAGIC(sv);
4924 }
4925
4926 /*
4927 =for apidoc sv_setpv
4928
4929 Copies a string into an SV.  The string must be terminated with a C<NUL>
4930 character.
4931 Does not handle 'set' magic.  See C<sv_setpv_mg>.
4932
4933 =cut
4934 */
4935
4936 void
4937 Perl_sv_setpv(pTHX_ SV *const sv, const char *const ptr)
4938 {
4939     STRLEN len;
4940
4941     PERL_ARGS_ASSERT_SV_SETPV;
4942
4943     SV_CHECK_THINKFIRST_COW_DROP(sv);
4944     if (!ptr) {
4945         (void)SvOK_off(sv);
4946         return;
4947     }
4948     len = strlen(ptr);
4949     SvUPGRADE(sv, SVt_PV);
4950
4951     SvGROW(sv, len + 1);
4952     Move(ptr,SvPVX(sv),len+1,char);
4953     SvCUR_set(sv, len);
4954     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4955     SvTAINT(sv);
4956     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4957 }
4958
4959 /*
4960 =for apidoc sv_setpv_mg
4961
4962 Like C<sv_setpv>, but also handles 'set' magic.
4963
4964 =cut
4965 */
4966
4967 void
4968 Perl_sv_setpv_mg(pTHX_ SV *const sv, const char *const ptr)
4969 {
4970     PERL_ARGS_ASSERT_SV_SETPV_MG;
4971
4972     sv_setpv(sv,ptr);
4973     SvSETMAGIC(sv);
4974 }
4975
4976 void
4977 Perl_sv_sethek(pTHX_ SV *const sv, const HEK *const hek)
4978 {
4979     PERL_ARGS_ASSERT_SV_SETHEK;
4980
4981     if (!hek) {
4982         return;
4983     }
4984
4985     if (HEK_LEN(hek) == HEf_SVKEY) {
4986         sv_setsv(sv, *(SV**)HEK_KEY(hek));
4987         return;
4988     } else {
4989         const int flags = HEK_FLAGS(hek);
4990         if (flags & HVhek_WASUTF8) {
4991             STRLEN utf8_len = HEK_LEN(hek);
4992             char *as_utf8 = (char *)bytes_to_utf8((U8*)HEK_KEY(hek), &utf8_len);
4993             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
4994             SvUTF8_on(sv);
4995             return;
4996         } else if (flags & HVhek_UNSHARED) {
4997             sv_setpvn(sv, HEK_KEY(hek), HEK_LEN(hek));
4998             if (HEK_UTF8(hek))
4999                 SvUTF8_on(sv);
5000             else SvUTF8_off(sv);
5001             return;
5002         }
5003         {
5004             SV_CHECK_THINKFIRST_COW_DROP(sv);
5005             SvUPGRADE(sv, SVt_PV);
5006             SvPV_free(sv);
5007             SvPV_set(sv,(char *)HEK_KEY(share_hek_hek(hek)));
5008             SvCUR_set(sv, HEK_LEN(hek));
5009             SvLEN_set(sv, 0);
5010             SvIsCOW_on(sv);
5011             SvPOK_on(sv);
5012             if (HEK_UTF8(hek))
5013                 SvUTF8_on(sv);
5014             else SvUTF8_off(sv);
5015             return;
5016         }
5017     }
5018 }
5019
5020
5021 /*
5022 =for apidoc sv_usepvn_flags
5023
5024 Tells an SV to use C<ptr> to find its string value.  Normally the
5025 string is stored inside the SV, but sv_usepvn allows the SV to use an
5026 outside string.  The C<ptr> should point to memory that was allocated
5027 by L<Newx|perlclib/Memory Management and String Handling>.  It must be
5028 the start of a Newx-ed block of memory, and not a pointer to the
5029 middle of it (beware of L<OOK|perlguts/Offsets> and copy-on-write),
5030 and not be from a non-Newx memory allocator like C<malloc>.  The
5031 string length, C<len>, must be supplied.  By default this function
5032 will C<Renew> (i.e. realloc, move) the memory pointed to by C<ptr>,
5033 so that pointer should not be freed or used by the programmer after
5034 giving it to sv_usepvn, and neither should any pointers from "behind"
5035 that pointer (e.g. ptr + 1) be used.
5036
5037 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC.  If C<flags> &
5038 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be C<NUL>, and the realloc
5039 will be skipped (i.e. the buffer is actually at least 1 byte longer than
5040 C<len>, and already meets the requirements for storing in C<SvPVX>).
5041
5042 =cut
5043 */
5044
5045 void
5046 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
5047 {
5048     STRLEN allocate;
5049
5050     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
5051
5052     SV_CHECK_THINKFIRST_COW_DROP(sv);
5053     SvUPGRADE(sv, SVt_PV);
5054     if (!ptr) {
5055         (void)SvOK_off(sv);
5056         if (flags & SV_SMAGIC)
5057             SvSETMAGIC(sv);
5058         return;
5059     }
5060     if (SvPVX_const(sv))
5061         SvPV_free(sv);
5062
5063 #ifdef DEBUGGING
5064     if (flags & SV_HAS_TRAILING_NUL)
5065         assert(ptr[len] == '\0');
5066 #endif
5067
5068     allocate = (flags & SV_HAS_TRAILING_NUL)
5069         ? len + 1 :
5070 #ifdef Perl_safesysmalloc_size
5071         len + 1;
5072 #else 
5073         PERL_STRLEN_ROUNDUP(len + 1);
5074 #endif
5075     if (flags & SV_HAS_TRAILING_NUL) {
5076         /* It's long enough - do nothing.
5077            Specifically Perl_newCONSTSUB is relying on this.  */
5078     } else {
5079 #ifdef DEBUGGING
5080         /* Force a move to shake out bugs in callers.  */
5081         char *new_ptr = (char*)safemalloc(allocate);
5082         Copy(ptr, new_ptr, len, char);
5083         PoisonFree(ptr,len,char);
5084         Safefree(ptr);
5085         ptr = new_ptr;
5086 #else
5087         ptr = (char*) saferealloc (ptr, allocate);
5088 #endif
5089     }
5090 #ifdef Perl_safesysmalloc_size
5091     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
5092 #else
5093     SvLEN_set(sv, allocate);
5094 #endif
5095     SvCUR_set(sv, len);
5096     SvPV_set(sv, ptr);
5097     if (!(flags & SV_HAS_TRAILING_NUL)) {
5098         ptr[len] = '\0';
5099     }
5100     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5101     SvTAINT(sv);
5102     if (flags & SV_SMAGIC)
5103         SvSETMAGIC(sv);
5104 }
5105
5106 #ifdef PERL_OLD_COPY_ON_WRITE
5107 /* Need to do this *after* making the SV normal, as we need the buffer
5108    pointer to remain valid until after we've copied it.  If we let go too early,
5109    another thread could invalidate it by unsharing last of the same hash key
5110    (which it can do by means other than releasing copy-on-write Svs)
5111    or by changing the other copy-on-write SVs in the loop.  */
5112 STATIC void
5113 S_sv_release_COW(pTHX_ SV *sv, const char *pvx, SV *after)
5114 {
5115     PERL_ARGS_ASSERT_SV_RELEASE_COW;
5116
5117     { /* this SV was SvIsCOW_normal(sv) */
5118          /* we need to find the SV pointing to us.  */
5119         SV *current = SV_COW_NEXT_SV(after);
5120
5121         if (current == sv) {
5122             /* The SV we point to points back to us (there were only two of us
5123                in the loop.)
5124                Hence other SV is no longer copy on write either.  */
5125             SvIsCOW_off(after);
5126             sv_buf_to_rw(after);
5127         } else {
5128             /* We need to follow the pointers around the loop.  */
5129             SV *next;
5130             while ((next = SV_COW_NEXT_SV(current)) != sv) {
5131                 assert (next);
5132                 current = next;
5133                  /* don't loop forever if the structure is bust, and we have
5134                     a pointer into a closed loop.  */
5135                 assert (current != after);
5136                 assert (SvPVX_const(current) == pvx);
5137             }
5138             /* Make the SV before us point to the SV after us.  */
5139             SV_COW_NEXT_SV_SET(current, after);
5140         }
5141     }
5142 }
5143 #endif
5144 /*
5145 =for apidoc sv_force_normal_flags
5146
5147 Undo various types of fakery on an SV, where fakery means
5148 "more than" a string: if the PV is a shared string, make
5149 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
5150 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
5151 we do the copy, and is also used locally; if this is a
5152 vstring, drop the vstring magic.  If C<SV_COW_DROP_PV> is set
5153 then a copy-on-write scalar drops its PV buffer (if any) and becomes
5154 SvPOK_off rather than making a copy.  (Used where this
5155 scalar is about to be set to some other value.)  In addition,
5156 the C<flags> parameter gets passed to C<sv_unref_flags()>
5157 when unreffing.  C<sv_force_normal> calls this function
5158 with flags set to 0.
5159
5160 This function is expected to be used to signal to perl that this SV is
5161 about to be written to, and any extra book-keeping needs to be taken care
5162 of.  Hence, it croaks on read-only values.
5163
5164 =cut
5165 */
5166
5167 static void
5168 S_sv_uncow(pTHX_ SV * const sv, const U32 flags)
5169 {
5170     assert(SvIsCOW(sv));
5171     {
5172 #ifdef PERL_ANY_COW
5173         const char * const pvx = SvPVX_const(sv);
5174         const STRLEN len = SvLEN(sv);
5175         const STRLEN cur = SvCUR(sv);
5176 # ifdef PERL_OLD_COPY_ON_WRITE
5177         /* next COW sv in the loop.  If len is 0 then this is a shared-hash
5178            key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
5179            we'll fail an assertion.  */
5180         SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
5181 # endif
5182
5183         if (DEBUG_C_TEST) {
5184                 PerlIO_printf(Perl_debug_log,
5185                               "Copy on write: Force normal %ld\n",
5186                               (long) flags);
5187                 sv_dump(sv);
5188         }
5189         SvIsCOW_off(sv);
5190 # ifdef PERL_NEW_COPY_ON_WRITE
5191         if (len && CowREFCNT(sv) == 0)
5192             /* We own the buffer ourselves. */
5193             sv_buf_to_rw(sv);
5194         else
5195 # endif
5196         {
5197                 
5198             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
5199 # ifdef PERL_NEW_COPY_ON_WRITE
5200             /* Must do this first, since the macro uses SvPVX. */
5201             if (len) {
5202                 sv_buf_to_rw(sv);
5203                 CowREFCNT(sv)--;
5204                 sv_buf_to_ro(sv);
5205             }
5206 # endif
5207             SvPV_set(sv, NULL);
5208             SvCUR_set(sv, 0);
5209             SvLEN_set(sv, 0);
5210             if (flags & SV_COW_DROP_PV) {
5211                 /* OK, so we don't need to copy our buffer.  */
5212                 SvPOK_off(sv);
5213             } else {
5214                 SvGROW(sv, cur + 1);
5215                 Move(pvx,SvPVX(sv),cur,char);
5216                 SvCUR_set(sv, cur);
5217                 *SvEND(sv) = '\0';
5218             }
5219             if (len) {
5220 # ifdef PERL_OLD_COPY_ON_WRITE
5221                 sv_release_COW(sv, pvx, next);
5222 # endif
5223             } else {
5224                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
5225             }
5226             if (DEBUG_C_TEST) {
5227                 sv_dump(sv);
5228             }
5229         }
5230 #else
5231             const char * const pvx = SvPVX_const(sv);
5232             const STRLEN len = SvCUR(sv);
5233             SvIsCOW_off(sv);
5234             SvPV_set(sv, NULL);
5235             SvLEN_set(sv, 0);
5236             if (flags & SV_COW_DROP_PV) {
5237                 /* OK, so we don't need to copy our buffer.  */
5238                 SvPOK_off(sv);
5239             } else {
5240                 SvGROW(sv, len + 1);
5241                 Move(pvx,SvPVX(sv),len,char);
5242                 *SvEND(sv) = '\0';
5243             }
5244             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
5245 #endif
5246     }
5247 }
5248
5249 void
5250 Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags)
5251 {
5252     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
5253
5254     if (SvREADONLY(sv))
5255         Perl_croak_no_modify();
5256     else if (SvIsCOW(sv) && LIKELY(SvTYPE(sv) != SVt_PVHV))
5257         S_sv_uncow(aTHX_ sv, flags);
5258     if (SvROK(sv))
5259         sv_unref_flags(sv, flags);
5260     else if (SvFAKE(sv) && isGV_with_GP(sv))
5261         sv_unglob(sv, flags);
5262     else if (SvFAKE(sv) && isREGEXP(sv)) {
5263         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
5264            to sv_unglob. We only need it here, so inline it.  */
5265         const bool islv = SvTYPE(sv) == SVt_PVLV;
5266         const svtype new_type =
5267           islv ? SVt_NULL : SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
5268         SV *const temp = newSV_type(new_type);
5269         regexp *const temp_p = ReANY((REGEXP *)sv);
5270
5271         if (new_type == SVt_PVMG) {
5272             SvMAGIC_set(temp, SvMAGIC(sv));
5273             SvMAGIC_set(sv, NULL);
5274             SvSTASH_set(temp, SvSTASH(sv));
5275             SvSTASH_set(sv, NULL);
5276         }
5277         if (!islv) SvCUR_set(temp, SvCUR(sv));
5278         /* Remember that SvPVX is in the head, not the body.  But
5279            RX_WRAPPED is in the body. */
5280         assert(ReANY((REGEXP *)sv)->mother_re);
5281         /* Their buffer is already owned by someone else. */
5282         if (flags & SV_COW_DROP_PV) {
5283             /* SvLEN is already 0.  For SVt_REGEXP, we have a brand new
5284                zeroed body.  For SVt_PVLV, it should have been set to 0
5285                before turning into a regexp. */
5286             assert(!SvLEN(islv ? sv : temp));
5287             sv->sv_u.svu_pv = 0;
5288         }
5289         else {
5290             sv->sv_u.svu_pv = savepvn(RX_WRAPPED((REGEXP *)sv), SvCUR(sv));
5291             SvLEN_set(islv ? sv : temp, SvCUR(sv)+1);
5292             SvPOK_on(sv);
5293         }
5294
5295         /* Now swap the rest of the bodies. */
5296
5297         SvFAKE_off(sv);
5298         if (!islv) {
5299             SvFLAGS(sv) &= ~SVTYPEMASK;
5300             SvFLAGS(sv) |= new_type;
5301             SvANY(sv) = SvANY(temp);
5302         }
5303
5304         SvFLAGS(temp) &= ~(SVTYPEMASK);
5305         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
5306         SvANY(temp) = temp_p;
5307         temp->sv_u.svu_rx = (regexp *)temp_p;
5308
5309         SvREFCNT_dec_NN(temp);
5310     }
5311     else if (SvVOK(sv)) sv_unmagic(sv, PERL_MAGIC_vstring);
5312 }
5313
5314 /*
5315 =for apidoc sv_chop
5316
5317 Efficient removal of characters from the beginning of the string buffer.
5318 SvPOK(sv), or at least SvPOKp(sv), must be true and the C<ptr> must be a
5319 pointer to somewhere inside the string buffer.  The C<ptr> becomes the first
5320 character of the adjusted string.  Uses the "OOK hack".  On return, only
5321 SvPOK(sv) and SvPOKp(sv) among the OK flags will be true.
5322
5323 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
5324 refer to the same chunk of data.
5325
5326 The unfortunate similarity of this function's name to that of Perl's C<chop>
5327 operator is strictly coincidental.  This function works from the left;
5328 C<chop> works from the right.
5329
5330 =cut
5331 */
5332
5333 void
5334 Perl_sv_chop(pTHX_ SV *const sv, const char *const ptr)
5335 {
5336     STRLEN delta;
5337     STRLEN old_delta;
5338     U8 *p;
5339 #ifdef DEBUGGING
5340     const U8 *evacp;
5341     STRLEN evacn;
5342 #endif
5343     STRLEN max_delta;
5344
5345     PERL_ARGS_ASSERT_SV_CHOP;
5346
5347     if (!ptr || !SvPOKp(sv))
5348         return;
5349     delta = ptr - SvPVX_const(sv);
5350     if (!delta) {
5351         /* Nothing to do.  */
5352         return;
5353     }
5354     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
5355     if (delta > max_delta)
5356         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
5357                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
5358     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), so don't use ptr any more */
5359     SV_CHECK_THINKFIRST(sv);
5360     SvPOK_only_UTF8(sv);
5361
5362     if (!SvOOK(sv)) {
5363         if (!SvLEN(sv)) { /* make copy of shared string */
5364             const char *pvx = SvPVX_const(sv);
5365             const STRLEN len = SvCUR(sv);
5366             SvGROW(sv, len + 1);
5367             Move(pvx,SvPVX(sv),len,char);
5368             *SvEND(sv) = '\0';
5369         }
5370         SvOOK_on(sv);
5371         old_delta = 0;
5372     } else {
5373         SvOOK_offset(sv, old_delta);
5374     }
5375     SvLEN_set(sv, SvLEN(sv) - delta);
5376     SvCUR_set(sv, SvCUR(sv) - delta);
5377     SvPV_set(sv, SvPVX(sv) + delta);
5378
5379     p = (U8 *)SvPVX_const(sv);
5380
5381 #ifdef DEBUGGING
5382     /* how many bytes were evacuated?  we will fill them with sentinel
5383        bytes, except for the part holding the new offset of course. */
5384     evacn = delta;
5385     if (old_delta)
5386         evacn += (old_delta < 0x100 ? 1 : 1 + sizeof(STRLEN));
5387     assert(evacn);
5388     assert(evacn <= delta + old_delta);
5389     evacp = p - evacn;
5390 #endif
5391
5392     /* This sets 'delta' to the accumulated value of all deltas so far */
5393     delta += old_delta;
5394     assert(delta);
5395
5396     /* If 'delta' fits in a byte, store it just prior to the new beginning of
5397      * the string; otherwise store a 0 byte there and store 'delta' just prior
5398      * to that, using as many bytes as a STRLEN occupies.  Thus it overwrites a
5399      * portion of the chopped part of the string */
5400     if (delta < 0x100) {
5401         *--p = (U8) delta;
5402     } else {
5403         *--p = 0;
5404         p -= sizeof(STRLEN);
5405         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
5406     }
5407
5408 #ifdef DEBUGGING
5409     /* Fill the preceding buffer with sentinals to verify that no-one is
5410        using it.  */
5411     while (p > evacp) {
5412         --p;
5413         *p = (U8)PTR2UV(p);
5414     }
5415 #endif
5416 }
5417
5418 /*
5419 =for apidoc sv_catpvn
5420
5421 Concatenates the string onto the end of the string which is in the SV.  The
5422 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5423 status set, then the bytes appended should be valid UTF-8.
5424 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
5425
5426 =for apidoc sv_catpvn_flags
5427
5428 Concatenates the string onto the end of the string which is in the SV.  The
5429 C<len> indicates number of bytes to copy.
5430
5431 By default, the string appended is assumed to be valid UTF-8 if the SV has
5432 the UTF-8 status set, and a string of bytes otherwise.  One can force the
5433 appended string to be interpreted as UTF-8 by supplying the C<SV_CATUTF8>
5434 flag, and as bytes by supplying the C<SV_CATBYTES> flag; the SV or the
5435 string appended will be upgraded to UTF-8 if necessary.
5436
5437 If C<flags> has the C<SV_SMAGIC> bit set, will
5438 C<mg_set> on C<dsv> afterwards if appropriate.
5439 C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5440 in terms of this function.
5441
5442 =cut
5443 */
5444
5445 void
5446 Perl_sv_catpvn_flags(pTHX_ SV *const dsv, const char *sstr, const STRLEN slen, const I32 flags)
5447 {
5448     STRLEN dlen;
5449     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
5450
5451     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
5452     assert((flags & (SV_CATBYTES|SV_CATUTF8)) != (SV_CATBYTES|SV_CATUTF8));
5453
5454     if (!(flags & SV_CATBYTES) || !SvUTF8(dsv)) {
5455       if (flags & SV_CATUTF8 && !SvUTF8(dsv)) {
5456          sv_utf8_upgrade_flags_grow(dsv, 0, slen + 1);
5457          dlen = SvCUR(dsv);
5458       }
5459       else SvGROW(dsv, dlen + slen + 1);
5460       if (sstr == dstr)
5461         sstr = SvPVX_const(dsv);
5462       Move(sstr, SvPVX(dsv) + dlen, slen, char);
5463       SvCUR_set(dsv, SvCUR(dsv) + slen);
5464     }
5465     else {
5466         /* We inline bytes_to_utf8, to avoid an extra malloc. */
5467         const char * const send = sstr + slen;
5468         U8 *d;
5469
5470         /* Something this code does not account for, which I think is
5471            impossible; it would require the same pv to be treated as
5472            bytes *and* utf8, which would indicate a bug elsewhere. */
5473         assert(sstr != dstr);
5474
5475         SvGROW(dsv, dlen + slen * 2 + 1);
5476         d = (U8 *)SvPVX(dsv) + dlen;
5477
5478         while (sstr < send) {
5479             append_utf8_from_native_byte(*sstr, &d);
5480             sstr++;
5481         }
5482         SvCUR_set(dsv, d-(const U8 *)SvPVX(dsv));
5483     }
5484     *SvEND(dsv) = '\0';
5485     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5486     SvTAINT(dsv);
5487     if (flags & SV_SMAGIC)
5488         SvSETMAGIC(dsv);
5489 }
5490
5491 /*
5492 =for apidoc sv_catsv
5493
5494 Concatenates the string from SV C<ssv> onto the end of the string in SV
5495 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5496 Handles 'get' magic on both SVs, but no 'set' magic.  See C<sv_catsv_mg> and
5497 C<sv_catsv_nomg>.
5498
5499 =for apidoc sv_catsv_flags
5500
5501 Concatenates the string from SV C<ssv> onto the end of the string in SV
5502 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5503 If C<flags> include C<SV_GMAGIC> bit set, will call C<mg_get> on both SVs if
5504 appropriate.  If C<flags> include C<SV_SMAGIC>, C<mg_set> will be called on
5505 the modified SV afterward, if appropriate.  C<sv_catsv>, C<sv_catsv_nomg>,
5506 and C<sv_catsv_mg> are implemented in terms of this function.
5507
5508 =cut */
5509
5510 void
5511 Perl_sv_catsv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
5512 {
5513     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
5514
5515     if (ssv) {
5516         STRLEN slen;
5517         const char *spv = SvPV_flags_const(ssv, slen, flags);
5518         if (flags & SV_GMAGIC)
5519                 SvGETMAGIC(dsv);
5520         sv_catpvn_flags(dsv, spv, slen,
5521                             DO_UTF8(ssv) ? SV_CATUTF8 : SV_CATBYTES);
5522         if (flags & SV_SMAGIC)
5523                 SvSETMAGIC(dsv);
5524     }
5525 }
5526
5527 /*
5528 =for apidoc sv_catpv
5529
5530 Concatenates the C<NUL>-terminated string onto the end of the string which is
5531 in the SV.
5532 If the SV has the UTF-8 status set, then the bytes appended should be
5533 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5534
5535 =cut */
5536
5537 void
5538 Perl_sv_catpv(pTHX_ SV *const sv, const char *ptr)
5539 {
5540     STRLEN len;
5541     STRLEN tlen;
5542     char *junk;
5543
5544     PERL_ARGS_ASSERT_SV_CATPV;
5545
5546     if (!ptr)
5547         return;
5548     junk = SvPV_force(sv, tlen);
5549     len = strlen(ptr);
5550     SvGROW(sv, tlen + len + 1);
5551     if (ptr == junk)
5552         ptr = SvPVX_const(sv);
5553     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5554     SvCUR_set(sv, SvCUR(sv) + len);
5555     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5556     SvTAINT(sv);
5557 }
5558
5559 /*
5560 =for apidoc sv_catpv_flags
5561
5562 Concatenates the C<NUL>-terminated string onto the end of the string which is
5563 in the SV.
5564 If the SV has the UTF-8 status set, then the bytes appended should
5565 be valid UTF-8.  If C<flags> has the C<SV_SMAGIC> bit set, will C<mg_set>
5566 on the modified SV if appropriate.
5567
5568 =cut
5569 */
5570
5571 void
5572 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5573 {
5574     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5575     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5576 }
5577
5578 /*
5579 =for apidoc sv_catpv_mg
5580
5581 Like C<sv_catpv>, but also handles 'set' magic.
5582
5583 =cut
5584 */
5585
5586 void
5587 Perl_sv_catpv_mg(pTHX_ SV *const sv, const char *const ptr)
5588 {
5589     PERL_ARGS_ASSERT_SV_CATPV_MG;
5590
5591     sv_catpv(sv,ptr);
5592     SvSETMAGIC(sv);
5593 }
5594
5595 /*
5596 =for apidoc newSV
5597
5598 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5599 bytes of preallocated string space the SV should have.  An extra byte for a
5600 trailing C<NUL> is also reserved.  (SvPOK is not set for the SV even if string
5601 space is allocated.)  The reference count for the new SV is set to 1.
5602
5603 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5604 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5605 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5606 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5607 modules supporting older perls.
5608
5609 =cut
5610 */
5611
5612 SV *
5613 Perl_newSV(pTHX_ const STRLEN len)
5614 {
5615     SV *sv;
5616
5617     new_SV(sv);
5618     if (len) {
5619         sv_grow(sv, len + 1);
5620     }
5621     return sv;
5622 }
5623 /*
5624 =for apidoc sv_magicext
5625
5626 Adds magic to an SV, upgrading it if necessary.  Applies the
5627 supplied vtable and returns a pointer to the magic added.
5628
5629 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5630 In particular, you can add magic to SvREADONLY SVs, and add more than
5631 one instance of the same 'how'.
5632
5633 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5634 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5635 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5636 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5637
5638 (This is now used as a subroutine by C<sv_magic>.)
5639
5640 =cut
5641 */
5642 MAGIC * 
5643 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5644                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5645 {
5646     MAGIC* mg;
5647
5648     PERL_ARGS_ASSERT_SV_MAGICEXT;
5649
5650     SvUPGRADE(sv, SVt_PVMG);
5651     Newxz(mg, 1, MAGIC);
5652     mg->mg_moremagic = SvMAGIC(sv);
5653     SvMAGIC_set(sv, mg);
5654
5655     /* Sometimes a magic contains a reference loop, where the sv and
5656        object refer to each other.  To prevent a reference loop that
5657        would prevent such objects being freed, we look for such loops
5658        and if we find one we avoid incrementing the object refcount.
5659
5660        Note we cannot do this to avoid self-tie loops as intervening RV must
5661        have its REFCNT incremented to keep it in existence.
5662
5663     */
5664     if (!obj || obj == sv ||
5665         how == PERL_MAGIC_arylen ||
5666         how == PERL_MAGIC_symtab ||
5667         (SvTYPE(obj) == SVt_PVGV &&
5668             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5669              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5670              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5671     {
5672         mg->mg_obj = obj;
5673     }
5674     else {
5675         mg->mg_obj = SvREFCNT_inc_simple(obj);
5676         mg->mg_flags |= MGf_REFCOUNTED;
5677     }
5678
5679     /* Normal self-ties simply pass a null object, and instead of
5680        using mg_obj directly, use the SvTIED_obj macro to produce a
5681        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5682        with an RV obj pointing to the glob containing the PVIO.  In
5683        this case, to avoid a reference loop, we need to weaken the
5684        reference.
5685     */
5686
5687     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5688         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5689     {
5690       sv_rvweaken(obj);
5691     }
5692
5693     mg->mg_type = how;
5694     mg->mg_len = namlen;
5695     if (name) {
5696         if (namlen > 0)
5697             mg->mg_ptr = savepvn(name, namlen);
5698         else if (namlen == HEf_SVKEY) {
5699             /* Yes, this is casting away const. This is only for the case of
5700                HEf_SVKEY. I think we need to document this aberation of the
5701                constness of the API, rather than making name non-const, as
5702                that change propagating outwards a long way.  */
5703             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5704         } else
5705             mg->mg_ptr = (char *) name;
5706     }
5707     mg->mg_virtual = (MGVTBL *) vtable;
5708
5709     mg_magical(sv);
5710     return mg;
5711 }
5712
5713 MAGIC *
5714 Perl_sv_magicext_mglob(pTHX_ SV *sv)
5715 {
5716     PERL_ARGS_ASSERT_SV_MAGICEXT_MGLOB;
5717     if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y') {
5718         /* This sv is only a delegate.  //g magic must be attached to
5719            its target. */
5720         vivify_defelem(sv);
5721         sv = LvTARG(sv);
5722     }
5723 #ifdef PERL_OLD_COPY_ON_WRITE
5724     if (SvIsCOW(sv))
5725         sv_force_normal_flags(sv, 0);
5726 #endif
5727     return sv_magicext(sv, NULL, PERL_MAGIC_regex_global,
5728                        &PL_vtbl_mglob, 0, 0);
5729 }
5730
5731 /*
5732 =for apidoc sv_magic
5733
5734 Adds magic to an SV.  First upgrades C<sv> to type C<SVt_PVMG> if
5735 necessary, then adds a new magic item of type C<how> to the head of the
5736 magic list.
5737
5738 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5739 handling of the C<name> and C<namlen> arguments.
5740
5741 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5742 to add more than one instance of the same 'how'.
5743
5744 =cut
5745 */
5746
5747 void
5748 Perl_sv_magic(pTHX_ SV *const sv, SV *const obj, const int how,
5749              const char *const name, const I32 namlen)
5750 {
5751     const MGVTBL *vtable;
5752     MAGIC* mg;
5753     unsigned int flags;
5754     unsigned int vtable_index;
5755
5756     PERL_ARGS_ASSERT_SV_MAGIC;
5757
5758     if (how < 0 || (unsigned)how >= C_ARRAY_LENGTH(PL_magic_data)
5759         || ((flags = PL_magic_data[how]),
5760             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5761             > magic_vtable_max))
5762         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5763
5764     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5765        Useful for attaching extension internal data to perl vars.
5766        Note that multiple extensions may clash if magical scalars
5767        etc holding private data from one are passed to another. */
5768
5769     vtable = (vtable_index == magic_vtable_max)
5770         ? NULL : PL_magic_vtables + vtable_index;
5771
5772 #ifdef PERL_OLD_COPY_ON_WRITE
5773     if (SvIsCOW(sv))
5774         sv_force_normal_flags(sv, 0);
5775 #endif
5776     if (SvREADONLY(sv)) {
5777         if (
5778             !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5779            )
5780         {
5781             Perl_croak_no_modify();
5782         }
5783     }
5784     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5785         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5786             /* sv_magic() refuses to add a magic of the same 'how' as an
5787                existing one
5788              */
5789             if (how == PERL_MAGIC_taint)
5790                 mg->mg_len |= 1;
5791             return;
5792         }
5793     }
5794
5795     /* Force pos to be stored as characters, not bytes. */
5796     if (SvMAGICAL(sv) && DO_UTF8(sv)
5797       && (mg = mg_find(sv, PERL_MAGIC_regex_global))
5798       && mg->mg_len != -1
5799       && mg->mg_flags & MGf_BYTES) {
5800         mg->mg_len = (SSize_t)sv_pos_b2u_flags(sv, (STRLEN)mg->mg_len,
5801                                                SV_CONST_RETURN);
5802         mg->mg_flags &= ~MGf_BYTES;
5803     }
5804
5805     /* Rest of work is done else where */
5806     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5807
5808     switch (how) {
5809     case PERL_MAGIC_taint:
5810         mg->mg_len = 1;
5811         break;
5812     case PERL_MAGIC_ext:
5813     case PERL_MAGIC_dbfile:
5814         SvRMAGICAL_on(sv);
5815         break;
5816     }
5817 }
5818
5819 static int
5820 S_sv_unmagicext_flags(pTHX_ SV *const sv, const int type, MGVTBL *vtbl, const U32 flags)
5821 {
5822     MAGIC* mg;
5823     MAGIC** mgp;
5824
5825     assert(flags <= 1);
5826
5827     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5828         return 0;
5829     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5830     for (mg = *mgp; mg; mg = *mgp) {
5831         const MGVTBL* const virt = mg->mg_virtual;
5832         if (mg->mg_type == type && (!flags || virt == vtbl)) {
5833             *mgp = mg->mg_moremagic;
5834             if (virt && virt->svt_free)
5835                 virt->svt_free(aTHX_ sv, mg);
5836             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5837                 if (mg->mg_len > 0)
5838                     Safefree(mg->mg_ptr);
5839                 else if (mg->mg_len == HEf_SVKEY)
5840                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5841                 else if (mg->mg_type == PERL_MAGIC_utf8)
5842                     Safefree(mg->mg_ptr);
5843             }
5844             if (mg->mg_flags & MGf_REFCOUNTED)
5845                 SvREFCNT_dec(mg->mg_obj);
5846             Safefree(mg);
5847         }
5848         else
5849             mgp = &mg->mg_moremagic;
5850     }
5851     if (SvMAGIC(sv)) {
5852         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5853             mg_magical(sv);     /*    else fix the flags now */
5854     }
5855     else {
5856         SvMAGICAL_off(sv);
5857         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5858     }
5859     return 0;
5860 }
5861
5862 /*
5863 =for apidoc sv_unmagic
5864
5865 Removes all magic of type C<type> from an SV.
5866
5867 =cut
5868 */
5869
5870 int
5871 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5872 {
5873     PERL_ARGS_ASSERT_SV_UNMAGIC;
5874     return S_sv_unmagicext_flags(aTHX_ sv, type, NULL, 0);
5875 }
5876
5877 /*
5878 =for apidoc sv_unmagicext
5879
5880 Removes all magic of type C<type> with the specified C<vtbl> from an SV.
5881
5882 =cut
5883 */
5884
5885 int
5886 Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl)
5887 {
5888     PERL_ARGS_ASSERT_SV_UNMAGICEXT;
5889     return S_sv_unmagicext_flags(aTHX_ sv, type, vtbl, 1);
5890 }
5891
5892 /*
5893 =for apidoc sv_rvweaken
5894
5895 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5896 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5897 push a back-reference to this RV onto the array of backreferences
5898 associated with that magic.  If the RV is magical, set magic will be
5899 called after the RV is cleared.
5900
5901 =cut
5902 */
5903
5904 SV *
5905 Perl_sv_rvweaken(pTHX_ SV *const sv)
5906 {
5907     SV *tsv;
5908
5909     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5910
5911     if (!SvOK(sv))  /* let undefs pass */
5912         return sv;
5913     if (!SvROK(sv))
5914         Perl_croak(aTHX_ "Can't weaken a nonreference");
5915     else if (SvWEAKREF(sv)) {
5916         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5917         return sv;
5918     }
5919     else if (SvREADONLY(sv)) croak_no_modify();
5920     tsv = SvRV(sv);
5921     Perl_sv_add_backref(aTHX_ tsv, sv);
5922     SvWEAKREF_on(sv);
5923     SvREFCNT_dec_NN(tsv);
5924     return sv;
5925 }
5926
5927 /* Give tsv backref magic if it hasn't already got it, then push a
5928  * back-reference to sv onto the array associated with the backref magic.
5929  *
5930  * As an optimisation, if there's only one backref and it's not an AV,
5931  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
5932  * allocate an AV. (Whether the slot holds an AV tells us whether this is
5933  * active.)
5934  */
5935
5936 /* A discussion about the backreferences array and its refcount:
5937  *
5938  * The AV holding the backreferences is pointed to either as the mg_obj of
5939  * PERL_MAGIC_backref, or in the specific case of a HV, from the
5940  * xhv_backreferences field. The array is created with a refcount
5941  * of 2. This means that if during global destruction the array gets
5942  * picked on before its parent to have its refcount decremented by the
5943  * random zapper, it won't actually be freed, meaning it's still there for
5944  * when its parent gets freed.
5945  *
5946  * When the parent SV is freed, the extra ref is killed by
5947  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
5948  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
5949  *
5950  * When a single backref SV is stored directly, it is not reference
5951  * counted.
5952  */
5953
5954 void
5955 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5956 {
5957     SV **svp;
5958     AV *av = NULL;
5959     MAGIC *mg = NULL;
5960
5961     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5962
5963     /* find slot to store array or singleton backref */
5964
5965     if (SvTYPE(tsv) == SVt_PVHV) {
5966         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5967     } else {
5968         if (SvMAGICAL(tsv))
5969             mg = mg_find(tsv, PERL_MAGIC_backref);
5970         if (!mg)
5971             mg = sv_magicext(tsv, NULL, PERL_MAGIC_backref, &PL_vtbl_backref, NULL, 0);
5972         svp = &(mg->mg_obj);
5973     }
5974
5975     /* create or retrieve the array */
5976
5977     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
5978         || (*svp && SvTYPE(*svp) != SVt_PVAV)
5979     ) {
5980         /* create array */
5981         if (mg)
5982             mg->mg_flags |= MGf_REFCOUNTED;
5983         av = newAV();
5984         AvREAL_off(av);
5985         SvREFCNT_inc_simple_void_NN(av);
5986         /* av now has a refcnt of 2; see discussion above */
5987         av_extend(av, *svp ? 2 : 1);
5988         if (*svp) {
5989             /* move single existing backref to the array */
5990             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
5991         }
5992         *svp = (SV*)av;
5993     }
5994     else {
5995         av = MUTABLE_AV(*svp);
5996         if (!av) {
5997             /* optimisation: store single backref directly in HvAUX or mg_obj */
5998             *svp = sv;
5999             return;
6000         }
6001         assert(SvTYPE(av) == SVt_PVAV);
6002         if (AvFILLp(av) >= AvMAX(av)) {
6003             av_extend(av, AvFILLp(av)+1);
6004         }
6005     }
6006     /* push new backref */
6007     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
6008 }
6009
6010 /* delete a back-reference to ourselves from the backref magic associated
6011  * with the SV we point to.
6012  */
6013
6014 void
6015 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
6016 {
6017     SV **svp = NULL;
6018
6019     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
6020
6021     if (SvTYPE(tsv) == SVt_PVHV) {
6022         if (SvOOK(tsv))
6023             svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
6024     }
6025     else if (SvIS_FREED(tsv) && PL_phase == PERL_PHASE_DESTRUCT) {
6026         /* It's possible for the the last (strong) reference to tsv to have
6027            become freed *before* the last thing holding a weak reference.
6028            If both survive longer than the backreferences array, then when
6029            the referent's reference count drops to 0 and it is freed, it's
6030            not able to chase the backreferences, so they aren't NULLed.
6031
6032            For example, a CV holds a weak reference to its stash. If both the
6033            CV and the stash survive longer than the backreferences array,
6034            and the CV gets picked for the SvBREAK() treatment first,
6035            *and* it turns out that the stash is only being kept alive because
6036            of an our variable in the pad of the CV, then midway during CV
6037            destruction the stash gets freed, but CvSTASH() isn't set to NULL.
6038            It ends up pointing to the freed HV. Hence it's chased in here, and
6039            if this block wasn't here, it would hit the !svp panic just below.
6040
6041            I don't believe that "better" destruction ordering is going to help
6042            here - during global destruction there's always going to be the
6043            chance that something goes out of order. We've tried to make it
6044            foolproof before, and it only resulted in evolutionary pressure on
6045            fools. Which made us look foolish for our hubris. :-(
6046         */
6047         return;
6048     }
6049     else {
6050         MAGIC *const mg
6051             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
6052         svp =  mg ? &(mg->mg_obj) : NULL;
6053     }
6054
6055     if (!svp)
6056         Perl_croak(aTHX_ "panic: del_backref, svp=0");
6057     if (!*svp) {
6058         /* It's possible that sv is being freed recursively part way through the
6059            freeing of tsv. If this happens, the backreferences array of tsv has
6060            already been freed, and so svp will be NULL. If this is the case,
6061            we should not panic. Instead, nothing needs doing, so return.  */
6062         if (PL_phase == PERL_PHASE_DESTRUCT && SvREFCNT(tsv) == 0)
6063             return;
6064         Perl_croak(aTHX_ "panic: del_backref, *svp=%p phase=%s refcnt=%" UVuf,
6065                    (void*)*svp, PL_phase_names[PL_phase], (UV)SvREFCNT(tsv));
6066     }
6067
6068     if (SvTYPE(*svp) == SVt_PVAV) {
6069 #ifdef DEBUGGING
6070         int count = 1;
6071 #endif
6072         AV * const av = (AV*)*svp;
6073         SSize_t fill;
6074         assert(!SvIS_FREED(av));
6075         fill = AvFILLp(av);
6076         assert(fill > -1);
6077         svp = AvARRAY(av);
6078         /* for an SV with N weak references to it, if all those
6079          * weak refs are deleted, then sv_del_backref will be called
6080          * N times and O(N^2) compares will be done within the backref
6081          * array. To ameliorate this potential slowness, we:
6082          * 1) make sure this code is as tight as possible;
6083          * 2) when looking for SV, look for it at both the head and tail of the
6084          *    array first before searching the rest, since some create/destroy
6085          *    patterns will cause the backrefs to be freed in order.
6086          */
6087         if (*svp == sv) {
6088             AvARRAY(av)++;
6089             AvMAX(av)--;
6090         }
6091         else {
6092             SV **p = &svp[fill];
6093             SV *const topsv = *p;
6094             if (topsv != sv) {
6095 #ifdef DEBUGGING
6096                 count = 0;
6097 #endif
6098                 while (--p > svp) {
6099                     if (*p == sv) {
6100                         /* We weren't the last entry.
6101                            An unordered list has this property that you
6102                            can take the last element off the end to fill
6103                            the hole, and it's still an unordered list :-)
6104                         */
6105                         *p = topsv;
6106 #ifdef DEBUGGING
6107                         count++;
6108 #else
6109                         break; /* should only be one */
6110 #endif
6111                     }
6112                 }
6113             }
6114         }
6115         assert(count ==1);
6116         AvFILLp(av) = fill-1;
6117     }
6118     else if (SvIS_FREED(*svp) && PL_phase == PERL_PHASE_DESTRUCT) {
6119         /* freed AV; skip */
6120     }
6121     else {
6122         /* optimisation: only a single backref, stored directly */
6123         if (*svp != sv)
6124             Perl_croak(aTHX_ "panic: del_backref, *svp=%p, sv=%p",
6125                        (void*)*svp, (void*)sv);
6126         *svp = NULL;
6127     }
6128
6129 }
6130
6131 void
6132 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
6133 {
6134     SV **svp;
6135     SV **last;
6136     bool is_array;
6137
6138     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
6139
6140     if (!av)
6141         return;
6142
6143     /* after multiple passes through Perl_sv_clean_all() for a thingy
6144      * that has badly leaked, the backref array may have gotten freed,
6145      * since we only protect it against 1 round of cleanup */
6146     if (SvIS_FREED(av)) {
6147         if (PL_in_clean_all) /* All is fair */
6148             return;
6149         Perl_croak(aTHX_
6150                    "panic: magic_killbackrefs (freed backref AV/SV)");
6151     }
6152
6153
6154     is_array = (SvTYPE(av) == SVt_PVAV);
6155     if (is_array) {
6156         assert(!SvIS_FREED(av));
6157         svp = AvARRAY(av);
6158         if (svp)
6159             last = svp + AvFILLp(av);
6160     }
6161     else {
6162         /* optimisation: only a single backref, stored directly */
6163         svp = (SV**)&av;
6164         last = svp;
6165     }
6166
6167     if (svp) {
6168         while (svp <= last) {
6169             if (*svp) {
6170                 SV *const referrer = *svp;
6171                 if (SvWEAKREF(referrer)) {
6172                     /* XXX Should we check that it hasn't changed? */
6173                     assert(SvROK(referrer));
6174                     SvRV_set(referrer, 0);
6175                     SvOK_off(referrer);
6176                     SvWEAKREF_off(referrer);
6177                     SvSETMAGIC(referrer);
6178                 } else if (SvTYPE(referrer) == SVt_PVGV ||
6179                            SvTYPE(referrer) == SVt_PVLV) {
6180                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
6181                     /* You lookin' at me?  */
6182                     assert(GvSTASH(referrer));
6183                     assert(GvSTASH(referrer) == (const HV *)sv);
6184                     GvSTASH(referrer) = 0;
6185                 } else if (SvTYPE(referrer) == SVt_PVCV ||
6186                            SvTYPE(referrer) == SVt_PVFM) {
6187                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
6188                         /* You lookin' at me?  */
6189                         assert(CvSTASH(referrer));
6190                         assert(CvSTASH(referrer) == (const HV *)sv);
6191                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
6192                     }
6193                     else {
6194                         assert(SvTYPE(sv) == SVt_PVGV);
6195                         /* You lookin' at me?  */
6196                         assert(CvGV(referrer));
6197                         assert(CvGV(referrer) == (const GV *)sv);
6198                         anonymise_cv_maybe(MUTABLE_GV(sv),
6199                                                 MUTABLE_CV(referrer));
6200                     }
6201
6202                 } else {
6203                     Perl_croak(aTHX_
6204                                "panic: magic_killbackrefs (flags=%"UVxf")",
6205                                (UV)SvFLAGS(referrer));
6206                 }
6207
6208                 if (is_array)
6209                     *svp = NULL;
6210             }
6211             svp++;
6212         }
6213     }
6214     if (is_array) {
6215         AvFILLp(av) = -1;
6216         SvREFCNT_dec_NN(av); /* remove extra count added by sv_add_backref() */
6217     }
6218     return;
6219 }
6220
6221 /*
6222 =for apidoc sv_insert
6223
6224 Inserts a string at the specified offset/length within the SV.  Similar to
6225 the Perl substr() function.  Handles get magic.
6226
6227 =for apidoc sv_insert_flags
6228
6229 Same as C<sv_insert>, but the extra C<flags> are passed to the
6230 C<SvPV_force_flags> that applies to C<bigstr>.
6231
6232 =cut
6233 */
6234
6235 void
6236 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
6237 {
6238     char *big;
6239     char *mid;
6240     char *midend;
6241     char *bigend;
6242     SSize_t i;          /* better be sizeof(STRLEN) or bad things happen */
6243     STRLEN curlen;
6244
6245     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
6246
6247     if (!bigstr)
6248         Perl_croak(aTHX_ "Can't modify nonexistent substring");
6249     SvPV_force_flags(bigstr, curlen, flags);
6250     (void)SvPOK_only_UTF8(bigstr);
6251     if (offset + len > curlen) {
6252         SvGROW(bigstr, offset+len+1);
6253         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
6254         SvCUR_set(bigstr, offset+len);
6255     }
6256
6257     SvTAINT(bigstr);
6258     i = littlelen - len;
6259     if (i > 0) {                        /* string might grow */
6260         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
6261         mid = big + offset + len;
6262         midend = bigend = big + SvCUR(bigstr);
6263         bigend += i;
6264         *bigend = '\0';
6265         while (midend > mid)            /* shove everything down */
6266             *--bigend = *--midend;
6267         Move(little,big+offset,littlelen,char);
6268         SvCUR_set(bigstr, SvCUR(bigstr) + i);
6269         SvSETMAGIC(bigstr);
6270         return;
6271     }
6272     else if (i == 0) {
6273         Move(little,SvPVX(bigstr)+offset,len,char);
6274         SvSETMAGIC(bigstr);
6275         return;
6276     }
6277
6278     big = SvPVX(bigstr);
6279     mid = big + offset;
6280     midend = mid + len;
6281     bigend = big + SvCUR(bigstr);
6282
6283     if (midend > bigend)
6284         Perl_croak(aTHX_ "panic: sv_insert, midend=%p, bigend=%p",
6285                    midend, bigend);
6286
6287     if (mid - big > bigend - midend) {  /* faster to shorten from end */
6288         if (littlelen) {
6289             Move(little, mid, littlelen,char);
6290             mid += littlelen;
6291         }
6292         i = bigend - midend;
6293         if (i > 0) {
6294             Move(midend, mid, i,char);
6295             mid += i;
6296         }
6297         *mid = '\0';
6298         SvCUR_set(bigstr, mid - big);
6299     }
6300     else if ((i = mid - big)) { /* faster from front */
6301         midend -= littlelen;
6302         mid = midend;
6303         Move(big, midend - i, i, char);
6304         sv_chop(bigstr,midend-i);
6305         if (littlelen)
6306             Move(little, mid, littlelen,char);
6307     }
6308     else if (littlelen) {
6309         midend -= littlelen;
6310         sv_chop(bigstr,midend);
6311         Move(little,midend,littlelen,char);
6312     }
6313     else {
6314         sv_chop(bigstr,midend);
6315     }
6316     SvSETMAGIC(bigstr);
6317 }
6318
6319 /*
6320 =for apidoc sv_replace
6321
6322 Make the first argument a copy of the second, then delete the original.
6323 The target SV physically takes over ownership of the body of the source SV
6324 and inherits its flags; however, the target keeps any magic it owns,
6325 and any magic in the source is discarded.
6326 Note that this is a rather specialist SV copying operation; most of the
6327 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
6328
6329 =cut
6330 */
6331
6332 void
6333 Perl_sv_replace(pTHX_ SV *const sv, SV *const nsv)
6334 {
6335     const U32 refcnt = SvREFCNT(sv);
6336
6337     PERL_ARGS_ASSERT_SV_REPLACE;
6338
6339     SV_CHECK_THINKFIRST_COW_DROP(sv);
6340     if (SvREFCNT(nsv) != 1) {
6341         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
6342                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
6343     }
6344     if (SvMAGICAL(sv)) {
6345         if (SvMAGICAL(nsv))
6346             mg_free(nsv);
6347         else
6348             sv_upgrade(nsv, SVt_PVMG);
6349         SvMAGIC_set(nsv, SvMAGIC(sv));
6350         SvFLAGS(nsv) |= SvMAGICAL(sv);
6351         SvMAGICAL_off(sv);
6352         SvMAGIC_set(sv, NULL);
6353     }
6354     SvREFCNT(sv) = 0;
6355     sv_clear(sv);
6356     assert(!SvREFCNT(sv));
6357 #ifdef DEBUG_LEAKING_SCALARS
6358     sv->sv_flags  = nsv->sv_flags;
6359     sv->sv_any    = nsv->sv_any;
6360     sv->sv_refcnt = nsv->sv_refcnt;
6361     sv->sv_u      = nsv->sv_u;
6362 #else
6363     StructCopy(nsv,sv,SV);
6364 #endif
6365     if(SvTYPE(sv) == SVt_IV) {
6366         SET_SVANY_FOR_BODYLESS_IV(sv);
6367     }
6368         
6369
6370 #ifdef PERL_OLD_COPY_ON_WRITE
6371     if (SvIsCOW_normal(nsv)) {
6372         /* We need to follow the pointers around the loop to make the
6373            previous SV point to sv, rather than nsv.  */
6374         SV *next;
6375         SV *current = nsv;
6376         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
6377             assert(next);
6378             current = next;
6379             assert(SvPVX_const(current) == SvPVX_const(nsv));
6380         }
6381         /* Make the SV before us point to the SV after us.  */
6382         if (DEBUG_C_TEST) {
6383             PerlIO_printf(Perl_debug_log, "previous is\n");
6384             sv_dump(current);
6385             PerlIO_printf(Perl_debug_log,
6386                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
6387                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
6388         }
6389         SV_COW_NEXT_SV_SET(current, sv);
6390     }
6391 #endif
6392     SvREFCNT(sv) = refcnt;
6393     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
6394     SvREFCNT(nsv) = 0;
6395     del_SV(nsv);
6396 }
6397
6398 /* We're about to free a GV which has a CV that refers back to us.
6399  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
6400  * field) */
6401
6402 STATIC void
6403 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
6404 {
6405     SV *gvname;
6406     GV *anongv;
6407
6408     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
6409
6410     /* be assertive! */
6411     assert(SvREFCNT(gv) == 0);
6412     assert(isGV(gv) && isGV_with_GP(gv));
6413     assert(GvGP(gv));
6414     assert(!CvANON(cv));
6415     assert(CvGV(cv) == gv);
6416     assert(!CvNAMED(cv));
6417
6418     /* will the CV shortly be freed by gp_free() ? */
6419     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
6420         SvANY(cv)->xcv_gv_u.xcv_gv = NULL;
6421         return;
6422     }
6423
6424     /* if not, anonymise: */
6425     gvname = (GvSTASH(gv) && HvNAME(GvSTASH(gv)) && HvENAME(GvSTASH(gv)))
6426                     ? newSVhek(HvENAME_HEK(GvSTASH(gv)))
6427                     : newSVpvn_flags( "__ANON__", 8, 0 );
6428     sv_catpvs(gvname, "::__ANON__");
6429     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
6430     SvREFCNT_dec_NN(gvname);
6431
6432     CvANON_on(cv);
6433     CvCVGV_RC_on(cv);
6434     SvANY(cv)->xcv_gv_u.xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
6435 }
6436
6437
6438 /*
6439 =for apidoc sv_clear
6440
6441 Clear an SV: call any destructors, free up any memory used by the body,
6442 and free the body itself.  The SV's head is I<not> freed, although
6443 its type is set to all 1's so that it won't inadvertently be assumed
6444 to be live during global destruction etc.
6445 This function should only be called when REFCNT is zero.  Most of the time
6446 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
6447 instead.
6448
6449 =cut
6450 */
6451
6452 void
6453 Perl_sv_clear(pTHX_ SV *const orig_sv)
6454 {
6455     dVAR;
6456     HV *stash;
6457     U32 type;
6458     const struct body_details *sv_type_details;
6459     SV* iter_sv = NULL;
6460     SV* next_sv = NULL;
6461     SV *sv = orig_sv;
6462     STRLEN hash_index;
6463
6464     PERL_ARGS_ASSERT_SV_CLEAR;
6465
6466     /* within this loop, sv is the SV currently being freed, and
6467      * iter_sv is the most recent AV or whatever that's being iterated
6468      * over to provide more SVs */
6469
6470     while (sv) {
6471
6472         type = SvTYPE(sv);
6473
6474         assert(SvREFCNT(sv) == 0);
6475         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
6476
6477         if (type <= SVt_IV) {
6478             /* See the comment in sv.h about the collusion between this
6479              * early return and the overloading of the NULL slots in the
6480              * size table.  */
6481             if (SvROK(sv))
6482                 goto free_rv;
6483             SvFLAGS(sv) &= SVf_BREAK;
6484             SvFLAGS(sv) |= SVTYPEMASK;
6485             goto free_head;
6486         }
6487
6488         /* objs are always >= MG, but pad names use the SVs_OBJECT flag
6489            for another purpose  */
6490         assert(!SvOBJECT(sv) || type >= SVt_PVMG);
6491
6492         if (type >= SVt_PVMG) {
6493             if (SvOBJECT(sv)) {
6494                 if (!curse(sv, 1)) goto get_next_sv;
6495                 type = SvTYPE(sv); /* destructor may have changed it */
6496             }
6497             /* Free back-references before magic, in case the magic calls
6498              * Perl code that has weak references to sv. */
6499             if (type == SVt_PVHV) {
6500                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
6501                 if (SvMAGIC(sv))
6502                     mg_free(sv);
6503             }
6504             else if (SvMAGIC(sv)) {
6505                 /* Free back-references before other types of magic. */
6506                 sv_unmagic(sv, PERL_MAGIC_backref);
6507                 mg_free(sv);
6508             }
6509             SvMAGICAL_off(sv);
6510         }
6511         switch (type) {
6512             /* case SVt_INVLIST: */
6513         case SVt_PVIO:
6514             if (IoIFP(sv) &&
6515                 IoIFP(sv) != PerlIO_stdin() &&
6516                 IoIFP(sv) != PerlIO_stdout() &&
6517                 IoIFP(sv) != PerlIO_stderr() &&
6518                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6519             {
6520                 io_close(MUTABLE_IO(sv), NULL, FALSE,
6521                          (IoTYPE(sv) == IoTYPE_WRONLY ||
6522                           IoTYPE(sv) == IoTYPE_RDWR   ||
6523                           IoTYPE(sv) == IoTYPE_APPEND));
6524             }
6525             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6526                 PerlDir_close(IoDIRP(sv));
6527             IoDIRP(sv) = (DIR*)NULL;
6528             Safefree(IoTOP_NAME(sv));
6529             Safefree(IoFMT_NAME(sv));
6530             Safefree(IoBOTTOM_NAME(sv));
6531             if ((const GV *)sv == PL_statgv)
6532                 PL_statgv = NULL;
6533             goto freescalar;
6534         case SVt_REGEXP:
6535             /* FIXME for plugins */
6536           freeregexp:
6537             pregfree2((REGEXP*) sv);
6538             goto freescalar;
6539         case SVt_PVCV:
6540         case SVt_PVFM:
6541             cv_undef(MUTABLE_CV(sv));
6542             /* If we're in a stash, we don't own a reference to it.
6543              * However it does have a back reference to us, which needs to
6544              * be cleared.  */
6545             if ((stash = CvSTASH(sv)))
6546                 sv_del_backref(MUTABLE_SV(stash), sv);
6547             goto freescalar;
6548         case SVt_PVHV:
6549             if (PL_last_swash_hv == (const HV *)sv) {
6550                 PL_last_swash_hv = NULL;
6551             }
6552             if (HvTOTALKEYS((HV*)sv) > 0) {
6553                 const char *name;
6554                 /* this statement should match the one at the beginning of
6555                  * hv_undef_flags() */
6556                 if (   PL_phase != PERL_PHASE_DESTRUCT
6557                     && (name = HvNAME((HV*)sv)))
6558                 {
6559                     if (PL_stashcache) {
6560                     DEBUG_o(Perl_deb(aTHX_ "sv_clear clearing PL_stashcache for '%"SVf"'\n",
6561                                      SVfARG(sv)));
6562                         (void)hv_deletehek(PL_stashcache,
6563                                            HvNAME_HEK((HV*)sv), G_DISCARD);
6564                     }
6565                     hv_name_set((HV*)sv, NULL, 0, 0);
6566                 }
6567
6568                 /* save old iter_sv in unused SvSTASH field */
6569                 assert(!SvOBJECT(sv));
6570                 SvSTASH(sv) = (HV*)iter_sv;
6571                 iter_sv = sv;
6572
6573                 /* save old hash_index in unused SvMAGIC field */
6574                 assert(!SvMAGICAL(sv));
6575                 assert(!SvMAGIC(sv));
6576                 ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index = hash_index;
6577                 hash_index = 0;
6578
6579                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6580                 goto get_next_sv; /* process this new sv */
6581             }
6582             /* free empty hash */
6583             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6584             assert(!HvARRAY((HV*)sv));
6585             break;
6586         case SVt_PVAV:
6587             {
6588                 AV* av = MUTABLE_AV(sv);
6589                 if (PL_comppad == av) {
6590                     PL_comppad = NULL;
6591                     PL_curpad = NULL;
6592                 }
6593                 if (AvREAL(av) && AvFILLp(av) > -1) {
6594                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6595                     /* save old iter_sv in top-most slot of AV,
6596                      * and pray that it doesn't get wiped in the meantime */
6597                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6598                     iter_sv = sv;
6599                     goto get_next_sv; /* process this new sv */
6600                 }
6601                 Safefree(AvALLOC(av));
6602             }
6603
6604             break;
6605         case SVt_PVLV:
6606             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6607                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6608                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6609                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6610             }
6611             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6612                 SvREFCNT_dec(LvTARG(sv));
6613             if (isREGEXP(sv)) goto freeregexp;
6614         case SVt_PVGV:
6615             if (isGV_with_GP(sv)) {
6616                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6617                    && HvENAME_get(stash))
6618                     mro_method_changed_in(stash);
6619                 gp_free(MUTABLE_GV(sv));
6620                 if (GvNAME_HEK(sv))
6621                     unshare_hek(GvNAME_HEK(sv));
6622                 /* If we're in a stash, we don't own a reference to it.
6623                  * However it does have a back reference to us, which
6624                  * needs to be cleared.  */
6625                 if (!SvVALID(sv) && (stash = GvSTASH(sv)))
6626                         sv_del_backref(MUTABLE_SV(stash), sv);
6627             }
6628             /* FIXME. There are probably more unreferenced pointers to SVs
6629              * in the interpreter struct that we should check and tidy in
6630              * a similar fashion to this:  */
6631             /* See also S_sv_unglob, which does the same thing. */
6632             if ((const GV *)sv == PL_last_in_gv)
6633                 PL_last_in_gv = NULL;
6634             else if ((const GV *)sv == PL_statgv)
6635                 PL_statgv = NULL;
6636             else if ((const GV *)sv == PL_stderrgv)
6637                 PL_stderrgv = NULL;
6638         case SVt_PVMG:
6639         case SVt_PVNV:
6640         case SVt_PVIV:
6641         case SVt_INVLIST:
6642         case SVt_PV:
6643           freescalar:
6644             /* Don't bother with SvOOK_off(sv); as we're only going to
6645              * free it.  */
6646             if (SvOOK(sv)) {
6647                 STRLEN offset;
6648                 SvOOK_offset(sv, offset);
6649                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6650                 /* Don't even bother with turning off the OOK flag.  */
6651             }
6652             if (SvROK(sv)) {
6653             free_rv:
6654                 {
6655                     SV * const target = SvRV(sv);
6656                     if (SvWEAKREF(sv))
6657                         sv_del_backref(target, sv);
6658                     else
6659                         next_sv = target;
6660                 }
6661             }
6662 #ifdef PERL_ANY_COW
6663             else if (SvPVX_const(sv)
6664                      && !(SvTYPE(sv) == SVt_PVIO
6665                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6666             {
6667                 if (SvIsCOW(sv)) {
6668                     if (DEBUG_C_TEST) {
6669                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6670                         sv_dump(sv);
6671                     }
6672                     if (SvLEN(sv)) {
6673 # ifdef PERL_OLD_COPY_ON_WRITE
6674                         sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6675 # else
6676                         if (CowREFCNT(sv)) {
6677                             sv_buf_to_rw(sv);
6678                             CowREFCNT(sv)--;
6679                             sv_buf_to_ro(sv);
6680                             SvLEN_set(sv, 0);
6681                         }
6682 # endif
6683                     } else {
6684                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6685                     }
6686
6687                 }
6688 # ifdef PERL_OLD_COPY_ON_WRITE
6689                 else
6690 # endif
6691                 if (SvLEN(sv)) {
6692                     Safefree(SvPVX_mutable(sv));
6693                 }
6694             }
6695 #else
6696             else if (SvPVX_const(sv) && SvLEN(sv)
6697                      && !(SvTYPE(sv) == SVt_PVIO
6698                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6699                 Safefree(SvPVX_mutable(sv));
6700             else if (SvPVX_const(sv) && SvIsCOW(sv)) {
6701                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6702             }
6703 #endif
6704             break;
6705         case SVt_NV:
6706             break;
6707         }
6708
6709       free_body:
6710
6711         SvFLAGS(sv) &= SVf_BREAK;
6712         SvFLAGS(sv) |= SVTYPEMASK;
6713
6714         sv_type_details = bodies_by_type + type;
6715         if (sv_type_details->arena) {
6716             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6717                      &PL_body_roots[type]);
6718         }
6719         else if (sv_type_details->body_size) {
6720             safefree(SvANY(sv));
6721         }
6722
6723       free_head:
6724         /* caller is responsible for freeing the head of the original sv */
6725         if (sv != orig_sv && !SvREFCNT(sv))
6726             del_SV(sv);
6727
6728         /* grab and free next sv, if any */
6729       get_next_sv:
6730         while (1) {
6731             sv = NULL;
6732             if (next_sv) {
6733                 sv = next_sv;
6734                 next_sv = NULL;
6735             }
6736             else if (!iter_sv) {
6737                 break;
6738             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6739                 AV *const av = (AV*)iter_sv;
6740                 if (AvFILLp(av) > -1) {
6741                     sv = AvARRAY(av)[AvFILLp(av)--];
6742                 }
6743                 else { /* no more elements of current AV to free */
6744                     sv = iter_sv;
6745                     type = SvTYPE(sv);
6746                     /* restore previous value, squirrelled away */
6747                     iter_sv = AvARRAY(av)[AvMAX(av)];
6748                     Safefree(AvALLOC(av));
6749                     goto free_body;
6750                 }
6751             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6752                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6753                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6754                     /* no more elements of current HV to free */
6755                     sv = iter_sv;
6756                     type = SvTYPE(sv);
6757                     /* Restore previous values of iter_sv and hash_index,
6758                      * squirrelled away */
6759                     assert(!SvOBJECT(sv));
6760                     iter_sv = (SV*)SvSTASH(sv);
6761                     assert(!SvMAGICAL(sv));
6762                     hash_index = ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index;
6763 #ifdef DEBUGGING
6764                     /* perl -DA does not like rubbish in SvMAGIC. */
6765                     SvMAGIC_set(sv, 0);
6766 #endif
6767
6768                     /* free any remaining detritus from the hash struct */
6769                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6770                     assert(!HvARRAY((HV*)sv));
6771                     goto free_body;
6772                 }
6773             }
6774
6775             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6776
6777             if (!sv)
6778                 continue;
6779             if (!SvREFCNT(sv)) {
6780                 sv_free(sv);
6781                 continue;
6782             }
6783             if (--(SvREFCNT(sv)))
6784                 continue;
6785 #ifdef DEBUGGING
6786             if (SvTEMP(sv)) {
6787                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6788                          "Attempt to free temp prematurely: SV 0x%"UVxf
6789                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6790                 continue;
6791             }
6792 #endif
6793             if (SvIMMORTAL(sv)) {
6794                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6795                 SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6796                 continue;
6797             }
6798             break;
6799         } /* while 1 */
6800
6801     } /* while sv */
6802 }
6803
6804 /* This routine curses the sv itself, not the object referenced by sv. So
6805    sv does not have to be ROK. */
6806
6807 static bool
6808 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6809     PERL_ARGS_ASSERT_CURSE;
6810     assert(SvOBJECT(sv));
6811
6812     if (PL_defstash &&  /* Still have a symbol table? */
6813         SvDESTROYABLE(sv))
6814     {
6815         dSP;
6816         HV* stash;
6817         do {
6818           stash = SvSTASH(sv);
6819           assert(SvTYPE(stash) == SVt_PVHV);
6820           if (HvNAME(stash)) {
6821             CV* destructor = NULL;
6822             assert (SvOOK(stash));
6823             if (!SvOBJECT(stash)) destructor = (CV *)SvSTASH(stash);
6824             if (!destructor || HvMROMETA(stash)->destroy_gen
6825                                 != PL_sub_generation)
6826             {
6827                 GV * const gv =
6828                     gv_fetchmeth_autoload(stash, "DESTROY", 7, 0);
6829                 if (gv) destructor = GvCV(gv);
6830                 if (!SvOBJECT(stash))
6831                 {
6832                     SvSTASH(stash) =
6833                         destructor ? (HV *)destructor : ((HV *)0)+1;
6834                     HvAUX(stash)->xhv_mro_meta->destroy_gen =
6835                         PL_sub_generation;
6836                 }
6837             }
6838             assert(!destructor || destructor == ((CV *)0)+1
6839                 || SvTYPE(destructor) == SVt_PVCV);
6840             if (destructor && destructor != ((CV *)0)+1
6841                 /* A constant subroutine can have no side effects, so
6842                    don't bother calling it.  */
6843                 && !CvCONST(destructor)
6844                 /* Don't bother calling an empty destructor or one that
6845                    returns immediately. */
6846                 && (CvISXSUB(destructor)
6847                 || (CvSTART(destructor)
6848                     && (CvSTART(destructor)->op_next->op_type
6849                                         != OP_LEAVESUB)
6850                     && (CvSTART(destructor)->op_next->op_type
6851                                         != OP_PUSHMARK
6852                         || CvSTART(destructor)->op_next->op_next->op_type
6853                                         != OP_RETURN
6854                        )
6855                    ))
6856                )
6857             {
6858                 SV* const tmpref = newRV(sv);
6859                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
6860                 ENTER;
6861                 PUSHSTACKi(PERLSI_DESTROY);
6862                 EXTEND(SP, 2);
6863                 PUSHMARK(SP);
6864                 PUSHs(tmpref);
6865                 PUTBACK;
6866                 call_sv(MUTABLE_SV(destructor),
6867                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
6868                 POPSTACK;
6869                 SPAGAIN;
6870                 LEAVE;
6871                 if(SvREFCNT(tmpref) < 2) {
6872                     /* tmpref is not kept alive! */
6873                     SvREFCNT(sv)--;
6874                     SvRV_set(tmpref, NULL);
6875                     SvROK_off(tmpref);
6876                 }
6877                 SvREFCNT_dec_NN(tmpref);
6878             }
6879           }
6880         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
6881
6882
6883         if (check_refcnt && SvREFCNT(sv)) {
6884             if (PL_in_clean_objs)
6885                 Perl_croak(aTHX_
6886                   "DESTROY created new reference to dead object '%"HEKf"'",
6887                    HEKfARG(HvNAME_HEK(stash)));
6888             /* DESTROY gave object new lease on life */
6889             return FALSE;
6890         }
6891     }
6892
6893     if (SvOBJECT(sv)) {
6894         HV * const stash = SvSTASH(sv);
6895         /* Curse before freeing the stash, as freeing the stash could cause
6896            a recursive call into S_curse. */
6897         SvOBJECT_off(sv);       /* Curse the object. */
6898         SvSTASH_set(sv,0);      /* SvREFCNT_dec may try to read this */
6899         SvREFCNT_dec(stash); /* possibly of changed persuasion */
6900     }
6901     return TRUE;
6902 }
6903
6904 /*
6905 =for apidoc sv_newref
6906
6907 Increment an SV's reference count.  Use the C<SvREFCNT_inc()> wrapper
6908 instead.
6909
6910 =cut
6911 */
6912
6913 SV *
6914 Perl_sv_newref(pTHX_ SV *const sv)
6915 {
6916     PERL_UNUSED_CONTEXT;
6917     if (sv)
6918         (SvREFCNT(sv))++;
6919     return sv;
6920 }
6921
6922 /*
6923 =for apidoc sv_free
6924
6925 Decrement an SV's reference count, and if it drops to zero, call
6926 C<sv_clear> to invoke destructors and free up any memory used by
6927 the body; finally, deallocate the SV's head itself.
6928 Normally called via a wrapper macro C<SvREFCNT_dec>.
6929
6930 =cut
6931 */
6932
6933 void
6934 Perl_sv_free(pTHX_ SV *const sv)
6935 {
6936     SvREFCNT_dec(sv);
6937 }
6938
6939
6940 /* Private helper function for SvREFCNT_dec().
6941  * Called with rc set to original SvREFCNT(sv), where rc == 0 or 1 */
6942
6943 void
6944 Perl_sv_free2(pTHX_ SV *const sv, const U32 rc)
6945 {
6946     dVAR;
6947
6948     PERL_ARGS_ASSERT_SV_FREE2;
6949
6950     if (LIKELY( rc == 1 )) {
6951         /* normal case */
6952         SvREFCNT(sv) = 0;
6953
6954 #ifdef DEBUGGING
6955         if (SvTEMP(sv)) {
6956             Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6957                              "Attempt to free temp prematurely: SV 0x%"UVxf
6958                              pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6959             return;
6960         }
6961 #endif
6962         if (SvIMMORTAL(sv)) {
6963             /* make sure SvREFCNT(sv)==0 happens very seldom */
6964             SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6965             return;
6966         }
6967         sv_clear(sv);
6968         if (! SvREFCNT(sv)) /* may have have been resurrected */
6969             del_SV(sv);
6970         return;
6971     }
6972
6973     /* handle exceptional cases */
6974
6975     assert(rc == 0);
6976
6977     if (SvFLAGS(sv) & SVf_BREAK)
6978         /* this SV's refcnt has been artificially decremented to
6979          * trigger cleanup */
6980         return;
6981     if (PL_in_clean_all) /* All is fair */
6982         return;
6983     if (SvIMMORTAL(sv)) {
6984         /* make sure SvREFCNT(sv)==0 happens very seldom */
6985         SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6986         return;
6987     }
6988     if (ckWARN_d(WARN_INTERNAL)) {
6989 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6990         Perl_dump_sv_child(aTHX_ sv);
6991 #else
6992     #ifdef DEBUG_LEAKING_SCALARS
6993         sv_dump(sv);
6994     #endif
6995 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6996         if (PL_warnhook == PERL_WARNHOOK_FATAL
6997             || ckDEAD(packWARN(WARN_INTERNAL))) {
6998             /* Don't let Perl_warner cause us to escape our fate:  */
6999             abort();
7000         }
7001 #endif
7002         /* This may not return:  */
7003         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
7004                     "Attempt to free unreferenced scalar: SV 0x%"UVxf
7005                     pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
7006 #endif
7007     }
7008 #ifdef DEBUG_LEAKING_SCALARS_ABORT
7009     abort();
7010 #endif
7011
7012 }
7013
7014
7015 /*
7016 =for apidoc sv_len
7017
7018 Returns the length of the string in the SV.  Handles magic and type
7019 coercion and sets the UTF8 flag appropriately.  See also C<SvCUR>, which
7020 gives raw access to the xpv_cur slot.
7021
7022 =cut
7023 */
7024
7025 STRLEN
7026 Perl_sv_len(pTHX_ SV *const sv)
7027 {
7028     STRLEN len;
7029
7030     if (!sv)
7031         return 0;
7032
7033     (void)SvPV_const(sv, len);
7034     return len;
7035 }
7036
7037 /*
7038 =for apidoc sv_len_utf8
7039
7040 Returns the number of characters in the string in an SV, counting wide
7041 UTF-8 bytes as a single character.  Handles magic and type coercion.
7042
7043 =cut
7044 */
7045
7046 /*
7047  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
7048  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
7049  * (Note that the mg_len is not the length of the mg_ptr field.
7050  * This allows the cache to store the character length of the string without
7051  * needing to malloc() extra storage to attach to the mg_ptr.)
7052  *
7053  */
7054
7055 STRLEN
7056 Perl_sv_len_utf8(pTHX_ SV *const sv)
7057 {
7058     if (!sv)
7059         return 0;
7060
7061     SvGETMAGIC(sv);
7062     return sv_len_utf8_nomg(sv);
7063 }
7064
7065 STRLEN
7066 Perl_sv_len_utf8_nomg(pTHX_ SV * const sv)
7067 {
7068     STRLEN len;
7069     const U8 *s = (U8*)SvPV_nomg_const(sv, len);
7070
7071     PERL_ARGS_ASSERT_SV_LEN_UTF8_NOMG;
7072
7073     if (PL_utf8cache && SvUTF8(sv)) {
7074             STRLEN ulen;
7075             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
7076
7077             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
7078                 if (mg->mg_len != -1)
7079                     ulen = mg->mg_len;
7080                 else {
7081                     /* We can use the offset cache for a headstart.
7082                        The longer value is stored in the first pair.  */
7083                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
7084
7085                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
7086                                                        s + len);
7087                 }
7088                 
7089                 if (PL_utf8cache < 0) {
7090                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
7091                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
7092                 }
7093             }
7094             else {
7095                 ulen = Perl_utf8_length(aTHX_ s, s + len);
7096                 utf8_mg_len_cache_update(sv, &mg, ulen);
7097             }
7098             return ulen;
7099     }
7100     return SvUTF8(sv) ? Perl_utf8_length(aTHX_ s, s + len) : len;
7101 }
7102
7103 /* Walk forwards to find the byte corresponding to the passed in UTF-8
7104    offset.  */
7105 static STRLEN
7106 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
7107                       STRLEN *const uoffset_p, bool *const at_end)
7108 {
7109     const U8 *s = start;
7110     STRLEN uoffset = *uoffset_p;
7111
7112     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
7113
7114     while (s < send && uoffset) {
7115         --uoffset;
7116         s += UTF8SKIP(s);
7117     }
7118     if (s == send) {
7119         *at_end = TRUE;
7120     }
7121     else if (s > send) {
7122         *at_end = TRUE;
7123         /* This is the existing behaviour. Possibly it should be a croak, as
7124            it's actually a bounds error  */
7125         s = send;
7126     }
7127     *uoffset_p -= uoffset;
7128     return s - start;
7129 }
7130
7131 /* Given the length of the string in both bytes and UTF-8 characters, decide
7132    whether to walk forwards or backwards to find the byte corresponding to
7133    the passed in UTF-8 offset.  */
7134 static STRLEN
7135 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
7136                     STRLEN uoffset, const STRLEN uend)
7137 {
7138     STRLEN backw = uend - uoffset;
7139
7140     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
7141
7142     if (uoffset < 2 * backw) {
7143         /* The assumption is that going forwards is twice the speed of going
7144            forward (that's where the 2 * backw comes from).
7145            (The real figure of course depends on the UTF-8 data.)  */
7146         const U8 *s = start;
7147
7148         while (s < send && uoffset--)
7149             s += UTF8SKIP(s);
7150         assert (s <= send);
7151         if (s > send)
7152             s = send;
7153         return s - start;
7154     }
7155
7156     while (backw--) {
7157         send--;
7158         while (UTF8_IS_CONTINUATION(*send))
7159             send--;
7160     }
7161     return send - start;
7162 }
7163
7164 /* For the string representation of the given scalar, find the byte
7165    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
7166    give another position in the string, *before* the sought offset, which
7167    (which is always true, as 0, 0 is a valid pair of positions), which should
7168    help reduce the amount of linear searching.
7169    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
7170    will be used to reduce the amount of linear searching. The cache will be
7171    created if necessary, and the found value offered to it for update.  */
7172 static STRLEN
7173 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
7174                     const U8 *const send, STRLEN uoffset,
7175                     STRLEN uoffset0, STRLEN boffset0)
7176 {
7177     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
7178     bool found = FALSE;
7179     bool at_end = FALSE;
7180
7181     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
7182
7183     assert (uoffset >= uoffset0);
7184
7185     if (!uoffset)
7186         return 0;
7187
7188     if (!SvREADONLY(sv) && !SvGMAGICAL(sv) && SvPOK(sv)
7189         && PL_utf8cache
7190         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
7191                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
7192         if ((*mgp)->mg_ptr) {
7193             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
7194             if (cache[0] == uoffset) {
7195                 /* An exact match. */
7196                 return cache[1];
7197             }
7198             if (cache[2] == uoffset) {
7199                 /* An exact match. */
7200                 return cache[3];
7201             }
7202
7203             if (cache[0] < uoffset) {
7204                 /* The cache already knows part of the way.   */
7205                 if (cache[0] > uoffset0) {
7206                     /* The cache knows more than the passed in pair  */
7207                     uoffset0 = cache[0];
7208                     boffset0 = cache[1];
7209                 }
7210                 if ((*mgp)->mg_len != -1) {
7211                     /* And we know the end too.  */
7212                     boffset = boffset0
7213                         + sv_pos_u2b_midway(start + boffset0, send,
7214                                               uoffset - uoffset0,
7215                                               (*mgp)->mg_len - uoffset0);
7216                 } else {
7217                     uoffset -= uoffset0;
7218                     boffset = boffset0
7219                         + sv_pos_u2b_forwards(start + boffset0,
7220                                               send, &uoffset, &at_end);
7221                     uoffset += uoffset0;
7222                 }
7223             }
7224             else if (cache[2] < uoffset) {
7225                 /* We're between the two cache entries.  */
7226                 if (cache[2] > uoffset0) {
7227                     /* and the cache knows more than the passed in pair  */
7228                     uoffset0 = cache[2];
7229                     boffset0 = cache[3];
7230                 }
7231
7232                 boffset = boffset0
7233                     + sv_pos_u2b_midway(start + boffset0,
7234                                           start + cache[1],
7235                                           uoffset - uoffset0,
7236                                           cache[0] - uoffset0);
7237             } else {
7238                 boffset = boffset0
7239                     + sv_pos_u2b_midway(start + boffset0,
7240                                           start + cache[3],
7241                                           uoffset - uoffset0,
7242                                           cache[2] - uoffset0);
7243             }
7244             found = TRUE;
7245         }
7246         else if ((*mgp)->mg_len != -1) {
7247             /* If we can take advantage of a passed in offset, do so.  */
7248             /* In fact, offset0 is either 0, or less than offset, so don't
7249                need to worry about the other possibility.  */
7250             boffset = boffset0
7251                 + sv_pos_u2b_midway(start + boffset0, send,
7252                                       uoffset - uoffset0,
7253                                       (*mgp)->mg_len - uoffset0);
7254             found = TRUE;
7255         }
7256     }
7257
7258     if (!found || PL_utf8cache < 0) {
7259         STRLEN real_boffset;
7260         uoffset -= uoffset0;
7261         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
7262                                                       send, &uoffset, &at_end);
7263         uoffset += uoffset0;
7264
7265         if (found && PL_utf8cache < 0)
7266             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
7267                                        real_boffset, sv);
7268         boffset = real_boffset;
7269     }
7270
7271     if (PL_utf8cache && !SvGMAGICAL(sv) && SvPOK(sv)) {
7272         if (at_end)
7273             utf8_mg_len_cache_update(sv, mgp, uoffset);
7274         else
7275             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
7276     }
7277     return boffset;
7278 }
7279
7280
7281 /*
7282 =for apidoc sv_pos_u2b_flags
7283
7284 Converts the offset from a count of UTF-8 chars from
7285 the start of the string, to a count of the equivalent number of bytes; if
7286 lenp is non-zero, it does the same to lenp, but this time starting from
7287 the offset, rather than from the start
7288 of the string.  Handles type coercion.
7289 I<flags> is passed to C<SvPV_flags>, and usually should be
7290 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7291
7292 =cut
7293 */
7294
7295 /*
7296  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
7297  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7298  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7299  *
7300  */
7301
7302 STRLEN
7303 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
7304                       U32 flags)
7305 {
7306     const U8 *start;
7307     STRLEN len;
7308     STRLEN boffset;
7309
7310     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
7311
7312     start = (U8*)SvPV_flags(sv, len, flags);
7313     if (len) {
7314         const U8 * const send = start + len;
7315         MAGIC *mg = NULL;
7316         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
7317
7318         if (lenp
7319             && *lenp /* don't bother doing work for 0, as its bytes equivalent
7320                         is 0, and *lenp is already set to that.  */) {
7321             /* Convert the relative offset to absolute.  */
7322             const STRLEN uoffset2 = uoffset + *lenp;
7323             const STRLEN boffset2
7324                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
7325                                       uoffset, boffset) - boffset;
7326
7327             *lenp = boffset2;
7328         }
7329     } else {
7330         if (lenp)
7331             *lenp = 0;
7332         boffset = 0;
7333     }
7334
7335     return boffset;
7336 }
7337
7338 /*
7339 =for apidoc sv_pos_u2b
7340
7341 Converts the value pointed to by offsetp from a count of UTF-8 chars from
7342 the start of the string, to a count of the equivalent number of bytes; if
7343 lenp is non-zero, it does the same to lenp, but this time starting from
7344 the offset, rather than from the start of the string.  Handles magic and
7345 type coercion.
7346
7347 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
7348 than 2Gb.
7349
7350 =cut
7351 */
7352
7353 /*
7354  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
7355  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7356  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7357  *
7358  */
7359
7360 /* This function is subject to size and sign problems */
7361
7362 void
7363 Perl_sv_pos_u2b(pTHX_ SV *const sv, I32 *const offsetp, I32 *const lenp)
7364 {
7365     PERL_ARGS_ASSERT_SV_POS_U2B;
7366
7367     if (lenp) {
7368         STRLEN ulen = (STRLEN)*lenp;
7369         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
7370                                          SV_GMAGIC|SV_CONST_RETURN);
7371         *lenp = (I32)ulen;
7372     } else {
7373         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
7374                                          SV_GMAGIC|SV_CONST_RETURN);
7375     }
7376 }
7377
7378 static void
7379 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
7380                            const STRLEN ulen)
7381 {
7382     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
7383     if (SvREADONLY(sv) || SvGMAGICAL(sv) || !SvPOK(sv))
7384         return;
7385
7386     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7387                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7388         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
7389     }
7390     assert(*mgp);
7391
7392     (*mgp)->mg_len = ulen;
7393 }
7394
7395 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
7396    byte length pairing. The (byte) length of the total SV is passed in too,
7397    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
7398    may not have updated SvCUR, so we can't rely on reading it directly.
7399
7400    The proffered utf8/byte length pairing isn't used if the cache already has
7401    two pairs, and swapping either for the proffered pair would increase the
7402    RMS of the intervals between known byte offsets.
7403
7404    The cache itself consists of 4 STRLEN values
7405    0: larger UTF-8 offset
7406    1: corresponding byte offset
7407    2: smaller UTF-8 offset
7408    3: corresponding byte offset
7409
7410    Unused cache pairs have the value 0, 0.
7411    Keeping the cache "backwards" means that the invariant of
7412    cache[0] >= cache[2] is maintained even with empty slots, which means that
7413    the code that uses it doesn't need to worry if only 1 entry has actually
7414    been set to non-zero.  It also makes the "position beyond the end of the
7415    cache" logic much simpler, as the first slot is always the one to start
7416    from.   
7417 */
7418 static void
7419 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
7420                            const STRLEN utf8, const STRLEN blen)
7421 {
7422     STRLEN *cache;
7423
7424     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
7425
7426     if (SvREADONLY(sv))
7427         return;
7428
7429     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7430                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7431         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
7432                            0);
7433         (*mgp)->mg_len = -1;
7434     }
7435     assert(*mgp);
7436
7437     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
7438         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
7439         (*mgp)->mg_ptr = (char *) cache;
7440     }
7441     assert(cache);
7442
7443     if (PL_utf8cache < 0 && SvPOKp(sv)) {
7444         /* SvPOKp() because, if sv is a reference, then SvPVX() is actually
7445            a pointer.  Note that we no longer cache utf8 offsets on refer-
7446            ences, but this check is still a good idea, for robustness.  */
7447         const U8 *start = (const U8 *) SvPVX_const(sv);
7448         const STRLEN realutf8 = utf8_length(start, start + byte);
7449
7450         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
7451                                    sv);
7452     }
7453
7454     /* Cache is held with the later position first, to simplify the code
7455        that deals with unbounded ends.  */
7456        
7457     ASSERT_UTF8_CACHE(cache);
7458     if (cache[1] == 0) {
7459         /* Cache is totally empty  */
7460         cache[0] = utf8;
7461         cache[1] = byte;
7462     } else if (cache[3] == 0) {
7463         if (byte > cache[1]) {
7464             /* New one is larger, so goes first.  */
7465             cache[2] = cache[0];
7466             cache[3] = cache[1];
7467             cache[0] = utf8;
7468             cache[1] = byte;
7469         } else {
7470             cache[2] = utf8;
7471             cache[3] = byte;
7472         }
7473     } else {
7474 /* float casts necessary? XXX */
7475 #define THREEWAY_SQUARE(a,b,c,d) \
7476             ((float)((d) - (c))) * ((float)((d) - (c))) \
7477             + ((float)((c) - (b))) * ((float)((c) - (b))) \
7478                + ((float)((b) - (a))) * ((float)((b) - (a)))
7479
7480         /* Cache has 2 slots in use, and we know three potential pairs.
7481            Keep the two that give the lowest RMS distance. Do the
7482            calculation in bytes simply because we always know the byte
7483            length.  squareroot has the same ordering as the positive value,
7484            so don't bother with the actual square root.  */
7485         if (byte > cache[1]) {
7486             /* New position is after the existing pair of pairs.  */
7487             const float keep_earlier
7488                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
7489             const float keep_later
7490                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
7491
7492             if (keep_later < keep_earlier) {
7493                 cache[2] = cache[0];
7494                 cache[3] = cache[1];
7495             }
7496             cache[0] = utf8;
7497             cache[1] = byte;
7498         }
7499         else {
7500             const float keep_later = THREEWAY_SQUARE(0, byte, cache[1], blen);
7501             float b, c, keep_earlier;
7502             if (byte > cache[3]) {
7503                 /* New position is between the existing pair of pairs.  */
7504                 b = (float)cache[3];
7505                 c = (float)byte;
7506             } else {
7507                 /* New position is before the existing pair of pairs.  */
7508                 b = (float)byte;
7509                 c = (float)cache[3];
7510             }
7511             keep_earlier = THREEWAY_SQUARE(0, b, c, blen);
7512             if (byte > cache[3]) {
7513                 if (keep_later < keep_earlier) {
7514                     cache[2] = utf8;
7515                     cache[3] = byte;
7516                 }
7517                 else {
7518                     cache[0] = utf8;
7519                     cache[1] = byte;
7520                 }
7521             }
7522             else {
7523                 if (! (keep_later < keep_earlier)) {
7524                     cache[0] = cache[2];
7525                     cache[1] = cache[3];
7526                 }
7527                 cache[2] = utf8;
7528                 cache[3] = byte;
7529             }
7530         }
7531     }
7532     ASSERT_UTF8_CACHE(cache);
7533 }
7534
7535 /* We already know all of the way, now we may be able to walk back.  The same
7536    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
7537    backward is half the speed of walking forward. */
7538 static STRLEN
7539 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
7540                     const U8 *end, STRLEN endu)
7541 {
7542     const STRLEN forw = target - s;
7543     STRLEN backw = end - target;
7544
7545     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
7546
7547     if (forw < 2 * backw) {
7548         return utf8_length(s, target);
7549     }
7550
7551     while (end > target) {
7552         end--;
7553         while (UTF8_IS_CONTINUATION(*end)) {
7554             end--;
7555         }
7556         endu--;
7557     }
7558     return endu;
7559 }
7560
7561 /*
7562 =for apidoc sv_pos_b2u_flags
7563
7564 Converts the offset from a count of bytes from the start of the string, to
7565 a count of the equivalent number of UTF-8 chars.  Handles type coercion.
7566 I<flags> is passed to C<SvPV_flags>, and usually should be
7567 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7568
7569 =cut
7570 */
7571
7572 /*
7573  * sv_pos_b2u_flags() uses, like sv_pos_u2b_flags(), the mg_ptr of the
7574  * potential PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8
7575  * and byte offsets.
7576  *
7577  */
7578 STRLEN
7579 Perl_sv_pos_b2u_flags(pTHX_ SV *const sv, STRLEN const offset, U32 flags)
7580 {
7581     const U8* s;
7582     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
7583     STRLEN blen;
7584     MAGIC* mg = NULL;
7585     const U8* send;
7586     bool found = FALSE;
7587
7588     PERL_ARGS_ASSERT_SV_POS_B2U_FLAGS;
7589
7590     s = (const U8*)SvPV_flags(sv, blen, flags);
7591
7592     if (blen < offset)
7593         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset, blen=%"UVuf
7594                    ", byte=%"UVuf, (UV)blen, (UV)offset);
7595
7596     send = s + offset;
7597
7598     if (!SvREADONLY(sv)
7599         && PL_utf8cache
7600         && SvTYPE(sv) >= SVt_PVMG
7601         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7602     {
7603         if (mg->mg_ptr) {
7604             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7605             if (cache[1] == offset) {
7606                 /* An exact match. */
7607                 return cache[0];
7608             }
7609             if (cache[3] == offset) {
7610                 /* An exact match. */
7611                 return cache[2];
7612             }
7613
7614             if (cache[1] < offset) {
7615                 /* We already know part of the way. */
7616                 if (mg->mg_len != -1) {
7617                     /* Actually, we know the end too.  */
7618                     len = cache[0]
7619                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7620                                               s + blen, mg->mg_len - cache[0]);
7621                 } else {
7622                     len = cache[0] + utf8_length(s + cache[1], send);
7623                 }
7624             }
7625             else if (cache[3] < offset) {
7626                 /* We're between the two cached pairs, so we do the calculation
7627                    offset by the byte/utf-8 positions for the earlier pair,
7628                    then add the utf-8 characters from the string start to
7629                    there.  */
7630                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7631                                           s + cache[1], cache[0] - cache[2])
7632                     + cache[2];
7633
7634             }
7635             else { /* cache[3] > offset */
7636                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7637                                           cache[2]);
7638
7639             }
7640             ASSERT_UTF8_CACHE(cache);
7641             found = TRUE;
7642         } else if (mg->mg_len != -1) {
7643             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7644             found = TRUE;
7645         }
7646     }
7647     if (!found || PL_utf8cache < 0) {
7648         const STRLEN real_len = utf8_length(s, send);
7649
7650         if (found && PL_utf8cache < 0)
7651             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7652         len = real_len;
7653     }
7654
7655     if (PL_utf8cache) {
7656         if (blen == offset)
7657             utf8_mg_len_cache_update(sv, &mg, len);
7658         else
7659             utf8_mg_pos_cache_update(sv, &mg, offset, len, blen);
7660     }
7661
7662     return len;
7663 }
7664
7665 /*
7666 =for apidoc sv_pos_b2u
7667
7668 Converts the value pointed to by offsetp from a count of bytes from the
7669 start of the string, to a count of the equivalent number of UTF-8 chars.
7670 Handles magic and type coercion.
7671
7672 Use C<sv_pos_b2u_flags> in preference, which correctly handles strings
7673 longer than 2Gb.
7674
7675 =cut
7676 */
7677
7678 /*
7679  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
7680  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7681  * byte offsets.
7682  *
7683  */
7684 void
7685 Perl_sv_pos_b2u(pTHX_ SV *const sv, I32 *const offsetp)
7686 {
7687     PERL_ARGS_ASSERT_SV_POS_B2U;
7688
7689     if (!sv)
7690         return;
7691
7692     *offsetp = (I32)sv_pos_b2u_flags(sv, (STRLEN)*offsetp,
7693                                      SV_GMAGIC|SV_CONST_RETURN);
7694 }
7695
7696 static void
7697 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7698                              STRLEN real, SV *const sv)
7699 {
7700     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7701
7702     /* As this is debugging only code, save space by keeping this test here,
7703        rather than inlining it in all the callers.  */
7704     if (from_cache == real)
7705         return;
7706
7707     /* Need to turn the assertions off otherwise we may recurse infinitely
7708        while printing error messages.  */
7709     SAVEI8(PL_utf8cache);
7710     PL_utf8cache = 0;
7711     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
7712                func, (UV) from_cache, (UV) real, SVfARG(sv));
7713 }
7714
7715 /*
7716 =for apidoc sv_eq
7717
7718 Returns a boolean indicating whether the strings in the two SVs are
7719 identical.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7720 coerce its args to strings if necessary.
7721
7722 =for apidoc sv_eq_flags
7723
7724 Returns a boolean indicating whether the strings in the two SVs are
7725 identical.  Is UTF-8 and 'use bytes' aware and coerces its args to strings
7726 if necessary.  If the flags include SV_GMAGIC, it handles get-magic, too.
7727
7728 =cut
7729 */
7730
7731 I32
7732 Perl_sv_eq_flags(pTHX_ SV *sv1, SV *sv2, const U32 flags)
7733 {
7734     const char *pv1;
7735     STRLEN cur1;
7736     const char *pv2;
7737     STRLEN cur2;
7738     I32  eq     = 0;
7739     SV* svrecode = NULL;
7740
7741     if (!sv1) {
7742         pv1 = "";
7743         cur1 = 0;
7744     }
7745     else {
7746         /* if pv1 and pv2 are the same, second SvPV_const call may
7747          * invalidate pv1 (if we are handling magic), so we may need to
7748          * make a copy */
7749         if (sv1 == sv2 && flags & SV_GMAGIC
7750          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7751             pv1 = SvPV_const(sv1, cur1);
7752             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7753         }
7754         pv1 = SvPV_flags_const(sv1, cur1, flags);
7755     }
7756
7757     if (!sv2){
7758         pv2 = "";
7759         cur2 = 0;
7760     }
7761     else
7762         pv2 = SvPV_flags_const(sv2, cur2, flags);
7763
7764     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7765         /* Differing utf8ness.
7766          * Do not UTF8size the comparands as a side-effect. */
7767          if (IN_ENCODING) {
7768               if (SvUTF8(sv1)) {
7769                    svrecode = newSVpvn(pv2, cur2);
7770                    sv_recode_to_utf8(svrecode, _get_encoding());
7771                    pv2 = SvPV_const(svrecode, cur2);
7772               }
7773               else {
7774                    svrecode = newSVpvn(pv1, cur1);
7775                    sv_recode_to_utf8(svrecode, _get_encoding());
7776                    pv1 = SvPV_const(svrecode, cur1);
7777               }
7778               /* Now both are in UTF-8. */
7779               if (cur1 != cur2) {
7780                    SvREFCNT_dec_NN(svrecode);
7781                    return FALSE;
7782               }
7783          }
7784          else {
7785               if (SvUTF8(sv1)) {
7786                   /* sv1 is the UTF-8 one  */
7787                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7788                                         (const U8*)pv1, cur1) == 0;
7789               }
7790               else {
7791                   /* sv2 is the UTF-8 one  */
7792                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7793                                         (const U8*)pv2, cur2) == 0;
7794               }
7795          }
7796     }
7797
7798     if (cur1 == cur2)
7799         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7800         
7801     SvREFCNT_dec(svrecode);
7802
7803     return eq;
7804 }
7805
7806 /*
7807 =for apidoc sv_cmp
7808
7809 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7810 string in C<sv1> is less than, equal to, or greater than the string in
7811 C<sv2>.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7812 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
7813
7814 =for apidoc sv_cmp_flags
7815
7816 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7817 string in C<sv1> is less than, equal to, or greater than the string in
7818 C<sv2>.  Is UTF-8 and 'use bytes' aware and will coerce its args to strings
7819 if necessary.  If the flags include SV_GMAGIC, it handles get magic.  See
7820 also C<sv_cmp_locale_flags>.
7821
7822 =cut
7823 */
7824
7825 I32
7826 Perl_sv_cmp(pTHX_ SV *const sv1, SV *const sv2)
7827 {
7828     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7829 }
7830
7831 I32
7832 Perl_sv_cmp_flags(pTHX_ SV *const sv1, SV *const sv2,
7833                   const U32 flags)
7834 {
7835     STRLEN cur1, cur2;
7836     const char *pv1, *pv2;
7837     I32  cmp;
7838     SV *svrecode = NULL;
7839
7840     if (!sv1) {
7841         pv1 = "";
7842         cur1 = 0;
7843     }
7844     else
7845         pv1 = SvPV_flags_const(sv1, cur1, flags);
7846
7847     if (!sv2) {
7848         pv2 = "";
7849         cur2 = 0;
7850     }
7851     else
7852         pv2 = SvPV_flags_const(sv2, cur2, flags);
7853
7854     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7855         /* Differing utf8ness.
7856          * Do not UTF8size the comparands as a side-effect. */
7857         if (SvUTF8(sv1)) {
7858             if (IN_ENCODING) {
7859                  svrecode = newSVpvn(pv2, cur2);
7860                  sv_recode_to_utf8(svrecode, _get_encoding());
7861                  pv2 = SvPV_const(svrecode, cur2);
7862             }
7863             else {
7864                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
7865                                                    (const U8*)pv1, cur1);
7866                 return retval ? retval < 0 ? -1 : +1 : 0;
7867             }
7868         }
7869         else {
7870             if (IN_ENCODING) {
7871                  svrecode = newSVpvn(pv1, cur1);
7872                  sv_recode_to_utf8(svrecode, _get_encoding());
7873                  pv1 = SvPV_const(svrecode, cur1);
7874             }
7875             else {
7876                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
7877                                                   (const U8*)pv2, cur2);
7878                 return retval ? retval < 0 ? -1 : +1 : 0;
7879             }
7880         }
7881     }
7882
7883     if (!cur1) {
7884         cmp = cur2 ? -1 : 0;
7885     } else if (!cur2) {
7886         cmp = 1;
7887     } else {
7888         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7889
7890         if (retval) {
7891             cmp = retval < 0 ? -1 : 1;
7892         } else if (cur1 == cur2) {
7893             cmp = 0;
7894         } else {
7895             cmp = cur1 < cur2 ? -1 : 1;
7896         }
7897     }
7898
7899     SvREFCNT_dec(svrecode);
7900
7901     return cmp;
7902 }
7903
7904 /*
7905 =for apidoc sv_cmp_locale
7906
7907 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7908 'use bytes' aware, handles get magic, and will coerce its args to strings
7909 if necessary.  See also C<sv_cmp>.
7910
7911 =for apidoc sv_cmp_locale_flags
7912
7913 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7914 'use bytes' aware and will coerce its args to strings if necessary.  If the
7915 flags contain SV_GMAGIC, it handles get magic.  See also C<sv_cmp_flags>.
7916
7917 =cut
7918 */
7919
7920 I32
7921 Perl_sv_cmp_locale(pTHX_ SV *const sv1, SV *const sv2)
7922 {
7923     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7924 }
7925
7926 I32
7927 Perl_sv_cmp_locale_flags(pTHX_ SV *const sv1, SV *const sv2,
7928                          const U32 flags)
7929 {
7930 #ifdef USE_LOCALE_COLLATE
7931
7932     char *pv1, *pv2;
7933     STRLEN len1, len2;
7934     I32 retval;
7935
7936     if (PL_collation_standard)
7937         goto raw_compare;
7938
7939     len1 = 0;
7940     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7941     len2 = 0;
7942     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7943
7944     if (!pv1 || !len1) {
7945         if (pv2 && len2)
7946             return -1;
7947         else
7948             goto raw_compare;
7949     }
7950     else {
7951         if (!pv2 || !len2)
7952             return 1;
7953     }
7954
7955     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7956
7957     if (retval)
7958         return retval < 0 ? -1 : 1;
7959
7960     /*
7961      * When the result of collation is equality, that doesn't mean
7962      * that there are no differences -- some locales exclude some
7963      * characters from consideration.  So to avoid false equalities,
7964      * we use the raw string as a tiebreaker.
7965      */
7966
7967   raw_compare:
7968     /* FALLTHROUGH */
7969
7970 #else
7971     PERL_UNUSED_ARG(flags);
7972 #endif /* USE_LOCALE_COLLATE */
7973
7974     return sv_cmp(sv1, sv2);
7975 }
7976
7977
7978 #ifdef USE_LOCALE_COLLATE
7979
7980 /*
7981 =for apidoc sv_collxfrm
7982
7983 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag.  See
7984 C<sv_collxfrm_flags>.
7985
7986 =for apidoc sv_collxfrm_flags
7987
7988 Add Collate Transform magic to an SV if it doesn't already have it.  If the
7989 flags contain SV_GMAGIC, it handles get-magic.
7990
7991 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7992 scalar data of the variable, but transformed to such a format that a normal
7993 memory comparison can be used to compare the data according to the locale
7994 settings.
7995
7996 =cut
7997 */
7998
7999 char *
8000 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
8001 {
8002     MAGIC *mg;
8003
8004     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
8005
8006     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
8007     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
8008         const char *s;
8009         char *xf;
8010         STRLEN len, xlen;
8011
8012         if (mg)
8013             Safefree(mg->mg_ptr);
8014         s = SvPV_flags_const(sv, len, flags);
8015         if ((xf = mem_collxfrm(s, len, &xlen))) {
8016             if (! mg) {
8017 #ifdef PERL_OLD_COPY_ON_WRITE
8018                 if (SvIsCOW(sv))
8019                     sv_force_normal_flags(sv, 0);
8020 #endif
8021                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
8022                                  0, 0);
8023                 assert(mg);
8024             }
8025             mg->mg_ptr = xf;
8026             mg->mg_len = xlen;
8027         }
8028         else {
8029             if (mg) {
8030                 mg->mg_ptr = NULL;
8031                 mg->mg_len = -1;
8032             }
8033         }
8034     }
8035     if (mg && mg->mg_ptr) {
8036         *nxp = mg->mg_len;
8037         return mg->mg_ptr + sizeof(PL_collation_ix);
8038     }
8039     else {
8040         *nxp = 0;
8041         return NULL;
8042     }
8043 }
8044
8045 #endif /* USE_LOCALE_COLLATE */
8046
8047 static char *
8048 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8049 {
8050     SV * const tsv = newSV(0);
8051     ENTER;
8052     SAVEFREESV(tsv);
8053     sv_gets(tsv, fp, 0);
8054     sv_utf8_upgrade_nomg(tsv);
8055     SvCUR_set(sv,append);
8056     sv_catsv(sv,tsv);
8057     LEAVE;
8058     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8059 }
8060
8061 static char *
8062 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8063 {
8064     SSize_t bytesread;
8065     const STRLEN recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
8066       /* Grab the size of the record we're getting */
8067     char *buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
8068     
8069     /* Go yank in */
8070 #ifdef __VMS
8071     int fd;
8072     Stat_t st;
8073
8074     /* With a true, record-oriented file on VMS, we need to use read directly
8075      * to ensure that we respect RMS record boundaries.  The user is responsible
8076      * for providing a PL_rs value that corresponds to the FAB$W_MRS (maximum
8077      * record size) field.  N.B. This is likely to produce invalid results on
8078      * varying-width character data when a record ends mid-character.
8079      */
8080     fd = PerlIO_fileno(fp);
8081     if (fd != -1
8082         && PerlLIO_fstat(fd, &st) == 0
8083         && (st.st_fab_rfm == FAB$C_VAR
8084             || st.st_fab_rfm == FAB$C_VFC
8085             || st.st_fab_rfm == FAB$C_FIX)) {
8086
8087         bytesread = PerlLIO_read(fd, buffer, recsize);
8088     }
8089     else /* in-memory file from PerlIO::Scalar
8090           * or not a record-oriented file
8091           */
8092 #endif
8093     {
8094         bytesread = PerlIO_read(fp, buffer, recsize);
8095
8096         /* At this point, the logic in sv_get() means that sv will
8097            be treated as utf-8 if the handle is utf8.
8098         */
8099         if (PerlIO_isutf8(fp) && bytesread > 0) {
8100             char *bend = buffer + bytesread;
8101             char *bufp = buffer;
8102             size_t charcount = 0;
8103             bool charstart = TRUE;
8104             STRLEN skip = 0;
8105
8106             while (charcount < recsize) {
8107                 /* count accumulated characters */
8108                 while (bufp < bend) {
8109                     if (charstart) {
8110                         skip = UTF8SKIP(bufp);
8111                     }
8112                     if (bufp + skip > bend) {
8113                         /* partial at the end */
8114                         charstart = FALSE;
8115                         break;
8116                     }
8117                     else {
8118                         ++charcount;
8119                         bufp += skip;
8120                         charstart = TRUE;
8121                     }
8122                 }
8123
8124                 if (charcount < recsize) {
8125                     STRLEN readsize;
8126                     STRLEN bufp_offset = bufp - buffer;
8127                     SSize_t morebytesread;
8128
8129                     /* originally I read enough to fill any incomplete
8130                        character and the first byte of the next
8131                        character if needed, but if there's many
8132                        multi-byte encoded characters we're going to be
8133                        making a read call for every character beyond
8134                        the original read size.
8135
8136                        So instead, read the rest of the character if
8137                        any, and enough bytes to match at least the
8138                        start bytes for each character we're going to
8139                        read.
8140                     */
8141                     if (charstart)
8142                         readsize = recsize - charcount;
8143                     else 
8144                         readsize = skip - (bend - bufp) + recsize - charcount - 1;
8145                     buffer = SvGROW(sv, append + bytesread + readsize + 1) + append;
8146                     bend = buffer + bytesread;
8147                     morebytesread = PerlIO_read(fp, bend, readsize);
8148                     if (morebytesread <= 0) {
8149                         /* we're done, if we still have incomplete
8150                            characters the check code in sv_gets() will
8151                            warn about them.
8152
8153                            I'd originally considered doing
8154                            PerlIO_ungetc() on all but the lead
8155                            character of the incomplete character, but
8156                            read() doesn't do that, so I don't.
8157                         */
8158                         break;
8159                     }
8160
8161                     /* prepare to scan some more */
8162                     bytesread += morebytesread;
8163                     bend = buffer + bytesread;
8164                     bufp = buffer + bufp_offset;
8165                 }
8166             }
8167         }
8168     }
8169
8170     if (bytesread < 0)
8171         bytesread = 0;
8172     SvCUR_set(sv, bytesread + append);
8173     buffer[bytesread] = '\0';
8174     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8175 }
8176
8177 /*
8178 =for apidoc sv_gets
8179
8180 Get a line from the filehandle and store it into the SV, optionally
8181 appending to the currently-stored string.  If C<append> is not 0, the
8182 line is appended to the SV instead of overwriting it.  C<append> should
8183 be set to the byte offset that the appended string should start at
8184 in the SV (typically, C<SvCUR(sv)> is a suitable choice).
8185
8186 =cut
8187 */
8188
8189 char *
8190 Perl_sv_gets(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8191 {
8192     const char *rsptr;
8193     STRLEN rslen;
8194     STDCHAR rslast;
8195     STDCHAR *bp;
8196     SSize_t cnt;
8197     int i = 0;
8198     int rspara = 0;
8199
8200     PERL_ARGS_ASSERT_SV_GETS;
8201
8202     if (SvTHINKFIRST(sv))
8203         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
8204     /* XXX. If you make this PVIV, then copy on write can copy scalars read
8205        from <>.
8206        However, perlbench says it's slower, because the existing swipe code
8207        is faster than copy on write.
8208        Swings and roundabouts.  */
8209     SvUPGRADE(sv, SVt_PV);
8210
8211     if (append) {
8212         /* line is going to be appended to the existing buffer in the sv */
8213         if (PerlIO_isutf8(fp)) {
8214             if (!SvUTF8(sv)) {
8215                 sv_utf8_upgrade_nomg(sv);
8216                 sv_pos_u2b(sv,&append,0);
8217             }
8218         } else if (SvUTF8(sv)) {
8219             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
8220         }
8221     }
8222
8223     SvPOK_only(sv);
8224     if (!append) {
8225         /* not appending - "clear" the string by setting SvCUR to 0,
8226          * the pv is still avaiable. */
8227         SvCUR_set(sv,0);
8228     }
8229     if (PerlIO_isutf8(fp))
8230         SvUTF8_on(sv);
8231
8232     if (IN_PERL_COMPILETIME) {
8233         /* we always read code in line mode */
8234         rsptr = "\n";
8235         rslen = 1;
8236     }
8237     else if (RsSNARF(PL_rs)) {
8238         /* If it is a regular disk file use size from stat() as estimate
8239            of amount we are going to read -- may result in mallocing
8240            more memory than we really need if the layers below reduce
8241            the size we read (e.g. CRLF or a gzip layer).
8242          */
8243         Stat_t st;
8244         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
8245             const Off_t offset = PerlIO_tell(fp);
8246             if (offset != (Off_t) -1 && st.st_size + append > offset) {
8247 #ifdef PERL_NEW_COPY_ON_WRITE
8248                 /* Add an extra byte for the sake of copy-on-write's
8249                  * buffer reference count. */
8250                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 2));
8251 #else
8252                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
8253 #endif
8254             }
8255         }
8256         rsptr = NULL;
8257         rslen = 0;
8258     }
8259     else if (RsRECORD(PL_rs)) {
8260         return S_sv_gets_read_record(aTHX_ sv, fp, append);
8261     }
8262     else if (RsPARA(PL_rs)) {
8263         rsptr = "\n\n";
8264         rslen = 2;
8265         rspara = 1;
8266     }
8267     else {
8268         /* Get $/ i.e. PL_rs into same encoding as stream wants */
8269         if (PerlIO_isutf8(fp)) {
8270             rsptr = SvPVutf8(PL_rs, rslen);
8271         }
8272         else {
8273             if (SvUTF8(PL_rs)) {
8274                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
8275                     Perl_croak(aTHX_ "Wide character in $/");
8276                 }
8277             }
8278             /* extract the raw pointer to the record separator */
8279             rsptr = SvPV_const(PL_rs, rslen);
8280         }
8281     }
8282
8283     /* rslast is the last character in the record separator
8284      * note we don't use rslast except when rslen is true, so the
8285      * null assign is a placeholder. */
8286     rslast = rslen ? rsptr[rslen - 1] : '\0';
8287
8288     if (rspara) {               /* have to do this both before and after */
8289         do {                    /* to make sure file boundaries work right */
8290             if (PerlIO_eof(fp))
8291                 return 0;
8292             i = PerlIO_getc(fp);
8293             if (i != '\n') {
8294                 if (i == -1)
8295                     return 0;
8296                 PerlIO_ungetc(fp,i);
8297                 break;
8298             }
8299         } while (i != EOF);
8300     }
8301
8302     /* See if we know enough about I/O mechanism to cheat it ! */
8303
8304     /* This used to be #ifdef test - it is made run-time test for ease
8305        of abstracting out stdio interface. One call should be cheap
8306        enough here - and may even be a macro allowing compile
8307        time optimization.
8308      */
8309
8310     if (PerlIO_fast_gets(fp)) {
8311     /*
8312      * We can do buffer based IO operations on this filehandle.
8313      *
8314      * This means we can bypass a lot of subcalls and process
8315      * the buffer directly, it also means we know the upper bound
8316      * on the amount of data we might read of the current buffer
8317      * into our sv. Knowing this allows us to preallocate the pv
8318      * to be able to hold that maximum, which allows us to simplify
8319      * a lot of logic. */
8320
8321     /*
8322      * We're going to steal some values from the stdio struct
8323      * and put EVERYTHING in the innermost loop into registers.
8324      */
8325     STDCHAR *ptr;       /* pointer into fp's read-ahead buffer */
8326     STRLEN bpx;         /* length of the data in the target sv
8327                            used to fix pointers after a SvGROW */
8328     I32 shortbuffered;  /* If the pv buffer is shorter than the amount
8329                            of data left in the read-ahead buffer.
8330                            If 0 then the pv buffer can hold the full
8331                            amount left, otherwise this is the amount it
8332                            can hold. */
8333
8334 #if defined(__VMS) && defined(PERLIO_IS_STDIO)
8335     /* An ungetc()d char is handled separately from the regular
8336      * buffer, so we getc() it back out and stuff it in the buffer.
8337      */
8338     i = PerlIO_getc(fp);
8339     if (i == EOF) return 0;
8340     *(--((*fp)->_ptr)) = (unsigned char) i;
8341     (*fp)->_cnt++;
8342 #endif
8343
8344     /* Here is some breathtakingly efficient cheating */
8345
8346     /* When you read the following logic resist the urge to think
8347      * of record separators that are 1 byte long. They are an
8348      * uninteresting special (simple) case.
8349      *
8350      * Instead think of record separators which are at least 2 bytes
8351      * long, and keep in mind that we need to deal with such
8352      * separators when they cross a read-ahead buffer boundary.
8353      *
8354      * Also consider that we need to gracefully deal with separators
8355      * that may be longer than a single read ahead buffer.
8356      *
8357      * Lastly do not forget we want to copy the delimiter as well. We
8358      * are copying all data in the file _up_to_and_including_ the separator
8359      * itself.
8360      *
8361      * Now that you have all that in mind here is what is happening below:
8362      *
8363      * 1. When we first enter the loop we do some memory book keeping to see
8364      * how much free space there is in the target SV. (This sub assumes that
8365      * it is operating on the same SV most of the time via $_ and that it is
8366      * going to be able to reuse the same pv buffer each call.) If there is
8367      * "enough" room then we set "shortbuffered" to how much space there is
8368      * and start reading forward.
8369      *
8370      * 2. When we scan forward we copy from the read-ahead buffer to the target
8371      * SV's pv buffer. While we go we watch for the end of the read-ahead buffer,
8372      * and the end of the of pv, as well as for the "rslast", which is the last
8373      * char of the separator.
8374      *
8375      * 3. When scanning forward if we see rslast then we jump backwards in *pv*
8376      * (which has a "complete" record up to the point we saw rslast) and check
8377      * it to see if it matches the separator. If it does we are done. If it doesn't
8378      * we continue on with the scan/copy.
8379      *
8380      * 4. If we run out of read-ahead buffer (cnt goes to 0) then we have to get
8381      * the IO system to read the next buffer. We do this by doing a getc(), which
8382      * returns a single char read (or EOF), and prefills the buffer, and also
8383      * allows us to find out how full the buffer is.  We use this information to
8384      * SvGROW() the sv to the size remaining in the buffer, after which we copy
8385      * the returned single char into the target sv, and then go back into scan
8386      * forward mode.
8387      *
8388      * 5. If we run out of write-buffer then we SvGROW() it by the size of the
8389      * remaining space in the read-buffer.
8390      *
8391      * Note that this code despite its twisty-turny nature is pretty darn slick.
8392      * It manages single byte separators, multi-byte cross boundary separators,
8393      * and cross-read-buffer separators cleanly and efficiently at the cost
8394      * of potentially greatly overallocating the target SV.
8395      *
8396      * Yves
8397      */
8398
8399
8400     /* get the number of bytes remaining in the read-ahead buffer
8401      * on first call on a given fp this will return 0.*/
8402     cnt = PerlIO_get_cnt(fp);
8403
8404     /* make sure we have the room */
8405     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
8406         /* Not room for all of it
8407            if we are looking for a separator and room for some
8408          */
8409         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
8410             /* just process what we have room for */
8411             shortbuffered = cnt - SvLEN(sv) + append + 1;
8412             cnt -= shortbuffered;
8413         }
8414         else {
8415             /* ensure that the target sv has enough room to hold
8416              * the rest of the read-ahead buffer */
8417             shortbuffered = 0;
8418             /* remember that cnt can be negative */
8419             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
8420         }
8421     }
8422     else {
8423         /* we have enough room to hold the full buffer, lets scream */
8424         shortbuffered = 0;
8425     }
8426
8427     /* extract the pointer to sv's string buffer, offset by append as necessary */
8428     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
8429     /* extract the point to the read-ahead buffer */
8430     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
8431
8432     /* some trace debug output */
8433     DEBUG_P(PerlIO_printf(Perl_debug_log,
8434         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
8435     DEBUG_P(PerlIO_printf(Perl_debug_log,
8436         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%"IVdf", base=%"
8437          UVuf"\n",
8438                PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8439                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
8440
8441     for (;;) {
8442       screamer:
8443         /* if there is stuff left in the read-ahead buffer */
8444         if (cnt > 0) {
8445             /* if there is a separator */
8446             if (rslen) {
8447                 /* loop until we hit the end of the read-ahead buffer */
8448                 while (cnt > 0) {                    /* this     |  eat */
8449                     /* scan forward copying and searching for rslast as we go */
8450                     cnt--;
8451                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
8452                         goto thats_all_folks;        /* screams  |  sed :-) */
8453                 }
8454             }
8455             else {
8456                 /* no separator, slurp the full buffer */
8457                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
8458                 bp += cnt;                           /* screams  |  dust */
8459                 ptr += cnt;                          /* louder   |  sed :-) */
8460                 cnt = 0;
8461                 assert (!shortbuffered);
8462                 goto cannot_be_shortbuffered;
8463             }
8464         }
8465         
8466         if (shortbuffered) {            /* oh well, must extend */
8467             /* we didnt have enough room to fit the line into the target buffer
8468              * so we must extend the target buffer and keep going */
8469             cnt = shortbuffered;
8470             shortbuffered = 0;
8471             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
8472             SvCUR_set(sv, bpx);
8473             /* extned the target sv's buffer so it can hold the full read-ahead buffer */
8474             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
8475             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
8476             continue;
8477         }
8478
8479     cannot_be_shortbuffered:
8480         /* we need to refill the read-ahead buffer if possible */
8481
8482         DEBUG_P(PerlIO_printf(Perl_debug_log,
8483                              "Screamer: going to getc, ptr=%"UVuf", cnt=%"IVdf"\n",
8484                               PTR2UV(ptr),(IV)cnt));
8485         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
8486
8487         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8488            "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%"IVdf", base=%"UVuf"\n",
8489             PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8490             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8491
8492         /*
8493             call PerlIO_getc() to let it prefill the lookahead buffer
8494
8495             This used to call 'filbuf' in stdio form, but as that behaves like
8496             getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
8497             another abstraction.
8498
8499             Note we have to deal with the char in 'i' if we are not at EOF
8500         */
8501         i   = PerlIO_getc(fp);          /* get more characters */
8502
8503         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8504            "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%"IVdf", base=%"UVuf"\n",
8505             PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8506             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8507
8508         /* find out how much is left in the read-ahead buffer, and rextract its pointer */
8509         cnt = PerlIO_get_cnt(fp);
8510         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
8511         DEBUG_P(PerlIO_printf(Perl_debug_log,
8512             "Screamer: after getc, ptr=%"UVuf", cnt=%"IVdf"\n",
8513             PTR2UV(ptr),(IV)cnt));
8514
8515         if (i == EOF)                   /* all done for ever? */
8516             goto thats_really_all_folks;
8517
8518         /* make sure we have enough space in the target sv */
8519         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
8520         SvCUR_set(sv, bpx);
8521         SvGROW(sv, bpx + cnt + 2);
8522         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
8523
8524         /* copy of the char we got from getc() */
8525         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
8526
8527         /* make sure we deal with the i being the last character of a separator */
8528         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
8529             goto thats_all_folks;
8530     }
8531
8532 thats_all_folks:
8533     /* check if we have actually found the separator - only really applies
8534      * when rslen > 1 */
8535     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
8536           memNE((char*)bp - rslen, rsptr, rslen))
8537         goto screamer;                          /* go back to the fray */
8538 thats_really_all_folks:
8539     if (shortbuffered)
8540         cnt += shortbuffered;
8541         DEBUG_P(PerlIO_printf(Perl_debug_log,
8542              "Screamer: quitting, ptr=%"UVuf", cnt=%"IVdf"\n",PTR2UV(ptr),(IV)cnt));
8543     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
8544     DEBUG_P(PerlIO_printf(Perl_debug_log,
8545         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%"IVdf", base=%"UVuf
8546         "\n",
8547         PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8548         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8549     *bp = '\0';
8550     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
8551     DEBUG_P(PerlIO_printf(Perl_debug_log,
8552         "Screamer: done, len=%ld, string=|%.*s|\n",
8553         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
8554     }
8555    else
8556     {
8557        /*The big, slow, and stupid way. */
8558 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
8559         STDCHAR *buf = NULL;
8560         Newx(buf, 8192, STDCHAR);
8561         assert(buf);
8562 #else
8563         STDCHAR buf[8192];
8564 #endif
8565
8566 screamer2:
8567         if (rslen) {
8568             const STDCHAR * const bpe = buf + sizeof(buf);
8569             bp = buf;
8570             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
8571                 ; /* keep reading */
8572             cnt = bp - buf;
8573         }
8574         else {
8575             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
8576             /* Accommodate broken VAXC compiler, which applies U8 cast to
8577              * both args of ?: operator, causing EOF to change into 255
8578              */
8579             if (cnt > 0)
8580                  i = (U8)buf[cnt - 1];
8581             else
8582                  i = EOF;
8583         }
8584
8585         if (cnt < 0)
8586             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
8587         if (append)
8588             sv_catpvn_nomg(sv, (char *) buf, cnt);
8589         else
8590             sv_setpvn(sv, (char *) buf, cnt);   /* "nomg" is implied */
8591
8592         if (i != EOF &&                 /* joy */
8593             (!rslen ||
8594              SvCUR(sv) < rslen ||
8595              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
8596         {
8597             append = -1;
8598             /*
8599              * If we're reading from a TTY and we get a short read,
8600              * indicating that the user hit his EOF character, we need
8601              * to notice it now, because if we try to read from the TTY
8602              * again, the EOF condition will disappear.
8603              *
8604              * The comparison of cnt to sizeof(buf) is an optimization
8605              * that prevents unnecessary calls to feof().
8606              *
8607              * - jik 9/25/96
8608              */
8609             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
8610                 goto screamer2;
8611         }
8612
8613 #ifdef USE_HEAP_INSTEAD_OF_STACK
8614         Safefree(buf);
8615 #endif
8616     }
8617
8618     if (rspara) {               /* have to do this both before and after */
8619         while (i != EOF) {      /* to make sure file boundaries work right */
8620             i = PerlIO_getc(fp);
8621             if (i != '\n') {
8622                 PerlIO_ungetc(fp,i);
8623                 break;
8624             }
8625         }
8626     }
8627
8628     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8629 }
8630
8631 /*
8632 =for apidoc sv_inc
8633
8634 Auto-increment of the value in the SV, doing string to numeric conversion
8635 if necessary.  Handles 'get' magic and operator overloading.
8636
8637 =cut
8638 */
8639
8640 void
8641 Perl_sv_inc(pTHX_ SV *const sv)
8642 {
8643     if (!sv)
8644         return;
8645     SvGETMAGIC(sv);
8646     sv_inc_nomg(sv);
8647 }
8648
8649 /*
8650 =for apidoc sv_inc_nomg
8651
8652 Auto-increment of the value in the SV, doing string to numeric conversion
8653 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8654
8655 =cut
8656 */
8657
8658 void
8659 Perl_sv_inc_nomg(pTHX_ SV *const sv)
8660 {
8661     char *d;
8662     int flags;
8663
8664     if (!sv)
8665         return;
8666     if (SvTHINKFIRST(sv)) {
8667         if (SvREADONLY(sv)) {
8668                 Perl_croak_no_modify();
8669         }
8670         if (SvROK(sv)) {
8671             IV i;
8672             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
8673                 return;
8674             i = PTR2IV(SvRV(sv));
8675             sv_unref(sv);
8676             sv_setiv(sv, i);
8677         }
8678         else sv_force_normal_flags(sv, 0);
8679     }
8680     flags = SvFLAGS(sv);
8681     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
8682         /* It's (privately or publicly) a float, but not tested as an
8683            integer, so test it to see. */
8684         (void) SvIV(sv);
8685         flags = SvFLAGS(sv);
8686     }
8687     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8688         /* It's publicly an integer, or privately an integer-not-float */
8689 #ifdef PERL_PRESERVE_IVUV
8690       oops_its_int:
8691 #endif
8692         if (SvIsUV(sv)) {
8693             if (SvUVX(sv) == UV_MAX)
8694                 sv_setnv(sv, UV_MAX_P1);
8695             else
8696                 (void)SvIOK_only_UV(sv);
8697                 SvUV_set(sv, SvUVX(sv) + 1);
8698         } else {
8699             if (SvIVX(sv) == IV_MAX)
8700                 sv_setuv(sv, (UV)IV_MAX + 1);
8701             else {
8702                 (void)SvIOK_only(sv);
8703                 SvIV_set(sv, SvIVX(sv) + 1);
8704             }   
8705         }
8706         return;
8707     }
8708     if (flags & SVp_NOK) {
8709         const NV was = SvNVX(sv);
8710         if (LIKELY(!Perl_isinfnan(was)) &&
8711             NV_OVERFLOWS_INTEGERS_AT &&
8712             was >= NV_OVERFLOWS_INTEGERS_AT) {
8713             /* diag_listed_as: Lost precision when %s %f by 1 */
8714             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8715                            "Lost precision when incrementing %" NVff " by 1",
8716                            was);
8717         }
8718         (void)SvNOK_only(sv);
8719         SvNV_set(sv, was + 1.0);
8720         return;
8721     }
8722
8723     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
8724         if ((flags & SVTYPEMASK) < SVt_PVIV)
8725             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
8726         (void)SvIOK_only(sv);
8727         SvIV_set(sv, 1);
8728         return;
8729     }
8730     d = SvPVX(sv);
8731     while (isALPHA(*d)) d++;
8732     while (isDIGIT(*d)) d++;
8733     if (d < SvEND(sv)) {
8734         const int numtype = grok_number_flags(SvPVX_const(sv), SvCUR(sv), NULL, PERL_SCAN_TRAILING);
8735 #ifdef PERL_PRESERVE_IVUV
8736         /* Got to punt this as an integer if needs be, but we don't issue
8737            warnings. Probably ought to make the sv_iv_please() that does
8738            the conversion if possible, and silently.  */
8739         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8740             /* Need to try really hard to see if it's an integer.
8741                9.22337203685478e+18 is an integer.
8742                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8743                so $a="9.22337203685478e+18"; $a+0; $a++
8744                needs to be the same as $a="9.22337203685478e+18"; $a++
8745                or we go insane. */
8746         
8747             (void) sv_2iv(sv);
8748             if (SvIOK(sv))
8749                 goto oops_its_int;
8750
8751             /* sv_2iv *should* have made this an NV */
8752             if (flags & SVp_NOK) {
8753                 (void)SvNOK_only(sv);
8754                 SvNV_set(sv, SvNVX(sv) + 1.0);
8755                 return;
8756             }
8757             /* I don't think we can get here. Maybe I should assert this
8758                And if we do get here I suspect that sv_setnv will croak. NWC
8759                Fall through. */
8760             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8761                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8762         }
8763 #endif /* PERL_PRESERVE_IVUV */
8764         if (!numtype && ckWARN(WARN_NUMERIC))
8765             not_incrementable(sv);
8766         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
8767         return;
8768     }
8769     d--;
8770     while (d >= SvPVX_const(sv)) {
8771         if (isDIGIT(*d)) {
8772             if (++*d <= '9')
8773                 return;
8774             *(d--) = '0';
8775         }
8776         else {
8777 #ifdef EBCDIC
8778             /* MKS: The original code here died if letters weren't consecutive.
8779              * at least it didn't have to worry about non-C locales.  The
8780              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
8781              * arranged in order (although not consecutively) and that only
8782              * [A-Za-z] are accepted by isALPHA in the C locale.
8783              */
8784             if (isALPHA_FOLD_NE(*d, 'z')) {
8785                 do { ++*d; } while (!isALPHA(*d));
8786                 return;
8787             }
8788             *(d--) -= 'z' - 'a';
8789 #else
8790             ++*d;
8791             if (isALPHA(*d))
8792                 return;
8793             *(d--) -= 'z' - 'a' + 1;
8794 #endif
8795         }
8796     }
8797     /* oh,oh, the number grew */
8798     SvGROW(sv, SvCUR(sv) + 2);
8799     SvCUR_set(sv, SvCUR(sv) + 1);
8800     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
8801         *d = d[-1];
8802     if (isDIGIT(d[1]))
8803         *d = '1';
8804     else
8805         *d = d[1];
8806 }
8807
8808 /*
8809 =for apidoc sv_dec
8810
8811 Auto-decrement of the value in the SV, doing string to numeric conversion
8812 if necessary.  Handles 'get' magic and operator overloading.
8813
8814 =cut
8815 */
8816
8817 void
8818 Perl_sv_dec(pTHX_ SV *const sv)
8819 {
8820     if (!sv)
8821         return;
8822     SvGETMAGIC(sv);
8823     sv_dec_nomg(sv);
8824 }
8825
8826 /*
8827 =for apidoc sv_dec_nomg
8828
8829 Auto-decrement of the value in the SV, doing string to numeric conversion
8830 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8831
8832 =cut
8833 */
8834
8835 void
8836 Perl_sv_dec_nomg(pTHX_ SV *const sv)
8837 {
8838     int flags;
8839
8840     if (!sv)
8841         return;
8842     if (SvTHINKFIRST(sv)) {
8843         if (SvREADONLY(sv)) {
8844                 Perl_croak_no_modify();
8845         }
8846         if (SvROK(sv)) {
8847             IV i;
8848             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
8849                 return;
8850             i = PTR2IV(SvRV(sv));
8851             sv_unref(sv);
8852             sv_setiv(sv, i);
8853         }
8854         else sv_force_normal_flags(sv, 0);
8855     }
8856     /* Unlike sv_inc we don't have to worry about string-never-numbers
8857        and keeping them magic. But we mustn't warn on punting */
8858     flags = SvFLAGS(sv);
8859     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8860         /* It's publicly an integer, or privately an integer-not-float */
8861 #ifdef PERL_PRESERVE_IVUV
8862       oops_its_int:
8863 #endif
8864         if (SvIsUV(sv)) {
8865             if (SvUVX(sv) == 0) {
8866                 (void)SvIOK_only(sv);
8867                 SvIV_set(sv, -1);
8868             }
8869             else {
8870                 (void)SvIOK_only_UV(sv);
8871                 SvUV_set(sv, SvUVX(sv) - 1);
8872             }   
8873         } else {
8874             if (SvIVX(sv) == IV_MIN) {
8875                 sv_setnv(sv, (NV)IV_MIN);
8876                 goto oops_its_num;
8877             }
8878             else {
8879                 (void)SvIOK_only(sv);
8880                 SvIV_set(sv, SvIVX(sv) - 1);
8881             }   
8882         }
8883         return;
8884     }
8885     if (flags & SVp_NOK) {
8886     oops_its_num:
8887         {
8888             const NV was = SvNVX(sv);
8889             if (LIKELY(!Perl_isinfnan(was)) &&
8890                 NV_OVERFLOWS_INTEGERS_AT &&
8891                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
8892                 /* diag_listed_as: Lost precision when %s %f by 1 */
8893                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8894                                "Lost precision when decrementing %" NVff " by 1",
8895                                was);
8896             }
8897             (void)SvNOK_only(sv);
8898             SvNV_set(sv, was - 1.0);
8899             return;
8900         }
8901     }
8902     if (!(flags & SVp_POK)) {
8903         if ((flags & SVTYPEMASK) < SVt_PVIV)
8904             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
8905         SvIV_set(sv, -1);
8906         (void)SvIOK_only(sv);
8907         return;
8908     }
8909 #ifdef PERL_PRESERVE_IVUV
8910     {
8911         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8912         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8913             /* Need to try really hard to see if it's an integer.
8914                9.22337203685478e+18 is an integer.
8915                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8916                so $a="9.22337203685478e+18"; $a+0; $a--
8917                needs to be the same as $a="9.22337203685478e+18"; $a--
8918                or we go insane. */
8919         
8920             (void) sv_2iv(sv);
8921             if (SvIOK(sv))
8922                 goto oops_its_int;
8923
8924             /* sv_2iv *should* have made this an NV */
8925             if (flags & SVp_NOK) {
8926                 (void)SvNOK_only(sv);
8927                 SvNV_set(sv, SvNVX(sv) - 1.0);
8928                 return;
8929             }
8930             /* I don't think we can get here. Maybe I should assert this
8931                And if we do get here I suspect that sv_setnv will croak. NWC
8932                Fall through. */
8933             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8934                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8935         }
8936     }
8937 #endif /* PERL_PRESERVE_IVUV */
8938     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
8939 }
8940
8941 /* this define is used to eliminate a chunk of duplicated but shared logic
8942  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
8943  * used anywhere but here - yves
8944  */
8945 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
8946     STMT_START {      \
8947         SSize_t ix = ++PL_tmps_ix;              \
8948         if (UNLIKELY(ix >= PL_tmps_max))        \
8949             ix = tmps_grow_p(ix);                       \
8950         PL_tmps_stack[ix] = (AnSv); \
8951     } STMT_END
8952
8953 /*
8954 =for apidoc sv_mortalcopy
8955
8956 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
8957 The new SV is marked as mortal.  It will be destroyed "soon", either by an
8958 explicit call to FREETMPS, or by an implicit call at places such as
8959 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
8960
8961 =cut
8962 */
8963
8964 /* Make a string that will exist for the duration of the expression
8965  * evaluation.  Actually, it may have to last longer than that, but
8966  * hopefully we won't free it until it has been assigned to a
8967  * permanent location. */
8968
8969 SV *
8970 Perl_sv_mortalcopy_flags(pTHX_ SV *const oldstr, U32 flags)
8971 {
8972     SV *sv;
8973
8974     if (flags & SV_GMAGIC)
8975         SvGETMAGIC(oldstr); /* before new_SV, in case it dies */
8976     new_SV(sv);
8977     sv_setsv_flags(sv,oldstr,flags & ~SV_GMAGIC);
8978     PUSH_EXTEND_MORTAL__SV_C(sv);
8979     SvTEMP_on(sv);
8980     return sv;
8981 }
8982
8983 /*
8984 =for apidoc sv_newmortal
8985
8986 Creates a new null SV which is mortal.  The reference count of the SV is
8987 set to 1.  It will be destroyed "soon", either by an explicit call to
8988 FREETMPS, or by an implicit call at places such as statement boundaries.
8989 See also C<sv_mortalcopy> and C<sv_2mortal>.
8990
8991 =cut
8992 */
8993
8994 SV *
8995 Perl_sv_newmortal(pTHX)
8996 {
8997     SV *sv;
8998
8999     new_SV(sv);
9000     SvFLAGS(sv) = SVs_TEMP;
9001     PUSH_EXTEND_MORTAL__SV_C(sv);
9002     return sv;
9003 }
9004
9005
9006 /*
9007 =for apidoc newSVpvn_flags
9008
9009 Creates a new SV and copies a string (which may contain C<NUL> (C<\0>)
9010 characters) into it.  The reference count for the
9011 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
9012 string.  You are responsible for ensuring that the source string is at least
9013 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
9014 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
9015 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
9016 returning.  If C<SVf_UTF8> is set, C<s>
9017 is considered to be in UTF-8 and the
9018 C<SVf_UTF8> flag will be set on the new SV.
9019 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
9020
9021     #define newSVpvn_utf8(s, len, u)                    \
9022         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
9023
9024 =cut
9025 */
9026
9027 SV *
9028 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
9029 {
9030     SV *sv;
9031
9032     /* All the flags we don't support must be zero.
9033        And we're new code so I'm going to assert this from the start.  */
9034     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
9035     new_SV(sv);
9036     sv_setpvn(sv,s,len);
9037
9038     /* This code used to do a sv_2mortal(), however we now unroll the call to
9039      * sv_2mortal() and do what it does ourselves here.  Since we have asserted
9040      * that flags can only have the SVf_UTF8 and/or SVs_TEMP flags set above we
9041      * can use it to enable the sv flags directly (bypassing SvTEMP_on), which
9042      * in turn means we dont need to mask out the SVf_UTF8 flag below, which
9043      * means that we eliminate quite a few steps than it looks - Yves
9044      * (explaining patch by gfx) */
9045
9046     SvFLAGS(sv) |= flags;
9047
9048     if(flags & SVs_TEMP){
9049         PUSH_EXTEND_MORTAL__SV_C(sv);
9050     }
9051
9052     return sv;
9053 }
9054
9055 /*
9056 =for apidoc sv_2mortal
9057
9058 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
9059 by an explicit call to FREETMPS, or by an implicit call at places such as
9060 statement boundaries.  SvTEMP() is turned on which means that the SV's
9061 string buffer can be "stolen" if this SV is copied.  See also C<sv_newmortal>
9062 and C<sv_mortalcopy>.
9063
9064 =cut
9065 */
9066
9067 SV *
9068 Perl_sv_2mortal(pTHX_ SV *const sv)
9069 {
9070     dVAR;
9071     if (!sv)
9072         return sv;
9073     if (SvIMMORTAL(sv))
9074         return sv;
9075     PUSH_EXTEND_MORTAL__SV_C(sv);
9076     SvTEMP_on(sv);
9077     return sv;
9078 }
9079
9080 /*
9081 =for apidoc newSVpv
9082
9083 Creates a new SV and copies a string (which may contain C<NUL> (C<\0>)
9084 characters) into it.  The reference count for the
9085 SV is set to 1.  If C<len> is zero, Perl will compute the length using
9086 strlen(), (which means if you use this option, that C<s> can't have embedded
9087 C<NUL> characters and has to have a terminating C<NUL> byte).
9088
9089 For efficiency, consider using C<newSVpvn> instead.
9090
9091 =cut
9092 */
9093
9094 SV *
9095 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
9096 {
9097     SV *sv;
9098
9099     new_SV(sv);
9100     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
9101     return sv;
9102 }
9103
9104 /*
9105 =for apidoc newSVpvn
9106
9107 Creates a new SV and copies a string into it, which may contain C<NUL> characters
9108 (C<\0>) and other binary data.  The reference count for the SV is set to 1.
9109 Note that if C<len> is zero, Perl will create a zero length (Perl) string.  You
9110 are responsible for ensuring that the source buffer is at least
9111 C<len> bytes long.  If the C<buffer> argument is NULL the new SV will be
9112 undefined.
9113
9114 =cut
9115 */
9116
9117 SV *
9118 Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len)
9119 {
9120     SV *sv;
9121     new_SV(sv);
9122     sv_setpvn(sv,buffer,len);
9123     return sv;
9124 }
9125
9126 /*
9127 =for apidoc newSVhek
9128
9129 Creates a new SV from the hash key structure.  It will generate scalars that
9130 point to the shared string table where possible.  Returns a new (undefined)
9131 SV if the hek is NULL.
9132
9133 =cut
9134 */
9135
9136 SV *
9137 Perl_newSVhek(pTHX_ const HEK *const hek)
9138 {
9139     if (!hek) {
9140         SV *sv;
9141
9142         new_SV(sv);
9143         return sv;
9144     }
9145
9146     if (HEK_LEN(hek) == HEf_SVKEY) {
9147         return newSVsv(*(SV**)HEK_KEY(hek));
9148     } else {
9149         const int flags = HEK_FLAGS(hek);
9150         if (flags & HVhek_WASUTF8) {
9151             /* Trouble :-)
9152                Andreas would like keys he put in as utf8 to come back as utf8
9153             */
9154             STRLEN utf8_len = HEK_LEN(hek);
9155             SV * const sv = newSV_type(SVt_PV);
9156             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
9157             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
9158             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
9159             SvUTF8_on (sv);
9160             return sv;
9161         } else if (flags & HVhek_UNSHARED) {
9162             /* A hash that isn't using shared hash keys has to have
9163                the flag in every key so that we know not to try to call
9164                share_hek_hek on it.  */
9165
9166             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
9167             if (HEK_UTF8(hek))
9168                 SvUTF8_on (sv);
9169             return sv;
9170         }
9171         /* This will be overwhelminly the most common case.  */
9172         {
9173             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
9174                more efficient than sharepvn().  */
9175             SV *sv;
9176
9177             new_SV(sv);
9178             sv_upgrade(sv, SVt_PV);
9179             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
9180             SvCUR_set(sv, HEK_LEN(hek));
9181             SvLEN_set(sv, 0);
9182             SvIsCOW_on(sv);
9183             SvPOK_on(sv);
9184             if (HEK_UTF8(hek))
9185                 SvUTF8_on(sv);
9186             return sv;
9187         }
9188     }
9189 }
9190
9191 /*
9192 =for apidoc newSVpvn_share
9193
9194 Creates a new SV with its SvPVX_const pointing to a shared string in the string
9195 table.  If the string does not already exist in the table, it is
9196 created first.  Turns on the SvIsCOW flag (or READONLY
9197 and FAKE in 5.16 and earlier).  If the C<hash> parameter
9198 is non-zero, that value is used; otherwise the hash is computed.
9199 The string's hash can later be retrieved from the SV
9200 with the C<SvSHARED_HASH()> macro.  The idea here is
9201 that as the string table is used for shared hash keys these strings will have
9202 SvPVX_const == HeKEY and hash lookup will avoid string compare.
9203
9204 =cut
9205 */
9206
9207 SV *
9208 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
9209 {
9210     dVAR;
9211     SV *sv;
9212     bool is_utf8 = FALSE;
9213     const char *const orig_src = src;
9214
9215     if (len < 0) {
9216         STRLEN tmplen = -len;
9217         is_utf8 = TRUE;
9218         /* See the note in hv.c:hv_fetch() --jhi */
9219         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
9220         len = tmplen;
9221     }
9222     if (!hash)
9223         PERL_HASH(hash, src, len);
9224     new_SV(sv);
9225     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
9226        changes here, update it there too.  */
9227     sv_upgrade(sv, SVt_PV);
9228     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
9229     SvCUR_set(sv, len);
9230     SvLEN_set(sv, 0);
9231     SvIsCOW_on(sv);
9232     SvPOK_on(sv);
9233     if (is_utf8)
9234         SvUTF8_on(sv);
9235     if (src != orig_src)
9236         Safefree(src);
9237     return sv;
9238 }
9239
9240 /*
9241 =for apidoc newSVpv_share
9242
9243 Like C<newSVpvn_share>, but takes a C<NUL>-terminated string instead of a
9244 string/length pair.
9245
9246 =cut
9247 */
9248
9249 SV *
9250 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
9251 {
9252     return newSVpvn_share(src, strlen(src), hash);
9253 }
9254
9255 #if defined(PERL_IMPLICIT_CONTEXT)
9256
9257 /* pTHX_ magic can't cope with varargs, so this is a no-context
9258  * version of the main function, (which may itself be aliased to us).
9259  * Don't access this version directly.
9260  */
9261
9262 SV *
9263 Perl_newSVpvf_nocontext(const char *const pat, ...)
9264 {
9265     dTHX;
9266     SV *sv;
9267     va_list args;
9268
9269     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
9270
9271     va_start(args, pat);
9272     sv = vnewSVpvf(pat, &args);
9273     va_end(args);
9274     return sv;
9275 }
9276 #endif
9277
9278 /*
9279 =for apidoc newSVpvf
9280
9281 Creates a new SV and initializes it with the string formatted like
9282 C<sprintf>.
9283
9284 =cut
9285 */
9286
9287 SV *
9288 Perl_newSVpvf(pTHX_ const char *const pat, ...)
9289 {
9290     SV *sv;
9291     va_list args;
9292
9293     PERL_ARGS_ASSERT_NEWSVPVF;
9294
9295     va_start(args, pat);
9296     sv = vnewSVpvf(pat, &args);
9297     va_end(args);
9298     return sv;
9299 }
9300
9301 /* backend for newSVpvf() and newSVpvf_nocontext() */
9302
9303 SV *
9304 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
9305 {
9306     SV *sv;
9307
9308     PERL_ARGS_ASSERT_VNEWSVPVF;
9309
9310     new_SV(sv);
9311     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9312     return sv;
9313 }
9314
9315 /*
9316 =for apidoc newSVnv
9317
9318 Creates a new SV and copies a floating point value into it.
9319 The reference count for the SV is set to 1.
9320
9321 =cut
9322 */
9323
9324 SV *
9325 Perl_newSVnv(pTHX_ const NV n)
9326 {
9327     SV *sv;
9328
9329     new_SV(sv);
9330     sv_setnv(sv,n);
9331     return sv;
9332 }
9333
9334 /*
9335 =for apidoc newSViv
9336
9337 Creates a new SV and copies an integer into it.  The reference count for the
9338 SV is set to 1.
9339
9340 =cut
9341 */
9342
9343 SV *
9344 Perl_newSViv(pTHX_ const IV i)
9345 {
9346     SV *sv;
9347
9348     new_SV(sv);
9349
9350     /* Inlining ONLY the small relevant subset of sv_setiv here
9351      * for performance. Makes a significant difference. */
9352
9353     /* We're starting from SVt_FIRST, so provided that's
9354      * actual 0, we don't have to unset any SV type flags
9355      * to promote to SVt_IV. */
9356     STATIC_ASSERT_STMT(SVt_FIRST == 0);
9357
9358     SET_SVANY_FOR_BODYLESS_IV(sv);
9359     SvFLAGS(sv) |= SVt_IV;
9360     (void)SvIOK_on(sv);
9361
9362     SvIV_set(sv, i);
9363     SvTAINT(sv);
9364
9365     return sv;
9366 }
9367
9368 /*
9369 =for apidoc newSVuv
9370
9371 Creates a new SV and copies an unsigned integer into it.
9372 The reference count for the SV is set to 1.
9373
9374 =cut
9375 */
9376
9377 SV *
9378 Perl_newSVuv(pTHX_ const UV u)
9379 {
9380     SV *sv;
9381
9382     /* Inlining ONLY the small relevant subset of sv_setuv here
9383      * for performance. Makes a significant difference. */
9384
9385     /* Using ivs is more efficient than using uvs - see sv_setuv */
9386     if (u <= (UV)IV_MAX) {
9387         return newSViv((IV)u);
9388     }
9389
9390     new_SV(sv);
9391
9392     /* We're starting from SVt_FIRST, so provided that's
9393      * actual 0, we don't have to unset any SV type flags
9394      * to promote to SVt_IV. */
9395     STATIC_ASSERT_STMT(SVt_FIRST == 0);
9396
9397     SET_SVANY_FOR_BODYLESS_IV(sv);
9398     SvFLAGS(sv) |= SVt_IV;
9399     (void)SvIOK_on(sv);
9400     (void)SvIsUV_on(sv);
9401
9402     SvUV_set(sv, u);
9403     SvTAINT(sv);
9404
9405     return sv;
9406 }
9407
9408 /*
9409 =for apidoc newSV_type
9410
9411 Creates a new SV, of the type specified.  The reference count for the new SV
9412 is set to 1.
9413
9414 =cut
9415 */
9416
9417 SV *
9418 Perl_newSV_type(pTHX_ const svtype type)
9419 {
9420     SV *sv;
9421
9422     new_SV(sv);
9423     ASSUME(SvTYPE(sv) == SVt_FIRST);
9424     if(type != SVt_FIRST)
9425         sv_upgrade(sv, type);
9426     return sv;
9427 }
9428
9429 /*
9430 =for apidoc newRV_noinc
9431
9432 Creates an RV wrapper for an SV.  The reference count for the original
9433 SV is B<not> incremented.
9434
9435 =cut
9436 */
9437
9438 SV *
9439 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
9440 {
9441     SV *sv;
9442
9443     PERL_ARGS_ASSERT_NEWRV_NOINC;
9444
9445     new_SV(sv);
9446
9447     /* We're starting from SVt_FIRST, so provided that's
9448      * actual 0, we don't have to unset any SV type flags
9449      * to promote to SVt_IV. */
9450     STATIC_ASSERT_STMT(SVt_FIRST == 0);
9451
9452     SET_SVANY_FOR_BODYLESS_IV(sv);
9453     SvFLAGS(sv) |= SVt_IV;
9454     SvROK_on(sv);
9455     SvIV_set(sv, 0);
9456
9457     SvTEMP_off(tmpRef);
9458     SvRV_set(sv, tmpRef);
9459
9460     return sv;
9461 }
9462
9463 /* newRV_inc is the official function name to use now.
9464  * newRV_inc is in fact #defined to newRV in sv.h
9465  */
9466
9467 SV *
9468 Perl_newRV(pTHX_ SV *const sv)
9469 {
9470     PERL_ARGS_ASSERT_NEWRV;
9471
9472     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
9473 }
9474
9475 /*
9476 =for apidoc newSVsv
9477
9478 Creates a new SV which is an exact duplicate of the original SV.
9479 (Uses C<sv_setsv>.)
9480
9481 =cut
9482 */
9483
9484 SV *
9485 Perl_newSVsv(pTHX_ SV *const old)
9486 {
9487     SV *sv;
9488
9489     if (!old)
9490         return NULL;
9491     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
9492         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
9493         return NULL;
9494     }
9495     /* Do this here, otherwise we leak the new SV if this croaks. */
9496     SvGETMAGIC(old);
9497     new_SV(sv);
9498     /* SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
9499        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
9500     sv_setsv_flags(sv, old, SV_NOSTEAL);
9501     return sv;
9502 }
9503
9504 /*
9505 =for apidoc sv_reset
9506
9507 Underlying implementation for the C<reset> Perl function.
9508 Note that the perl-level function is vaguely deprecated.
9509
9510 =cut
9511 */
9512
9513 void
9514 Perl_sv_reset(pTHX_ const char *s, HV *const stash)
9515 {
9516     PERL_ARGS_ASSERT_SV_RESET;
9517
9518     sv_resetpvn(*s ? s : NULL, strlen(s), stash);
9519 }
9520
9521 void
9522 Perl_sv_resetpvn(pTHX_ const char *s, STRLEN len, HV * const stash)
9523 {
9524     char todo[PERL_UCHAR_MAX+1];
9525     const char *send;
9526
9527     if (!stash || SvTYPE(stash) != SVt_PVHV)
9528         return;
9529
9530     if (!s) {           /* reset ?? searches */
9531         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
9532         if (mg) {
9533             const U32 count = mg->mg_len / sizeof(PMOP**);
9534             PMOP **pmp = (PMOP**) mg->mg_ptr;
9535             PMOP *const *const end = pmp + count;
9536
9537             while (pmp < end) {
9538 #ifdef USE_ITHREADS
9539                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
9540 #else
9541                 (*pmp)->op_pmflags &= ~PMf_USED;
9542 #endif
9543                 ++pmp;
9544             }
9545         }
9546         return;
9547     }
9548
9549     /* reset variables */
9550
9551     if (!HvARRAY(stash))
9552         return;
9553
9554     Zero(todo, 256, char);
9555     send = s + len;
9556     while (s < send) {
9557         I32 max;
9558         I32 i = (unsigned char)*s;
9559         if (s[1] == '-') {
9560             s += 2;
9561         }
9562         max = (unsigned char)*s++;
9563         for ( ; i <= max; i++) {
9564             todo[i] = 1;
9565         }
9566         for (i = 0; i <= (I32) HvMAX(stash); i++) {
9567             HE *entry;
9568             for (entry = HvARRAY(stash)[i];
9569                  entry;
9570                  entry = HeNEXT(entry))
9571             {
9572                 GV *gv;
9573                 SV *sv;
9574
9575                 if (!todo[(U8)*HeKEY(entry)])
9576                     continue;
9577                 gv = MUTABLE_GV(HeVAL(entry));
9578                 sv = GvSV(gv);
9579                 if (sv && !SvREADONLY(sv)) {
9580                     SV_CHECK_THINKFIRST_COW_DROP(sv);
9581                     if (!isGV(sv)) SvOK_off(sv);
9582                 }
9583                 if (GvAV(gv)) {
9584                     av_clear(GvAV(gv));
9585                 }
9586                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
9587                     hv_clear(GvHV(gv));
9588                 }
9589             }
9590         }
9591     }
9592 }
9593
9594 /*
9595 =for apidoc sv_2io
9596
9597 Using various gambits, try to get an IO from an SV: the IO slot if its a
9598 GV; or the recursive result if we're an RV; or the IO slot of the symbol
9599 named after the PV if we're a string.
9600
9601 'Get' magic is ignored on the sv passed in, but will be called on
9602 C<SvRV(sv)> if sv is an RV.
9603
9604 =cut
9605 */
9606
9607 IO*
9608 Perl_sv_2io(pTHX_ SV *const sv)
9609 {
9610     IO* io;
9611     GV* gv;
9612
9613     PERL_ARGS_ASSERT_SV_2IO;
9614
9615     switch (SvTYPE(sv)) {
9616     case SVt_PVIO:
9617         io = MUTABLE_IO(sv);
9618         break;
9619     case SVt_PVGV:
9620     case SVt_PVLV:
9621         if (isGV_with_GP(sv)) {
9622             gv = MUTABLE_GV(sv);
9623             io = GvIO(gv);
9624             if (!io)
9625                 Perl_croak(aTHX_ "Bad filehandle: %"HEKf,
9626                                     HEKfARG(GvNAME_HEK(gv)));
9627             break;
9628         }
9629         /* FALLTHROUGH */
9630     default:
9631         if (!SvOK(sv))
9632             Perl_croak(aTHX_ PL_no_usym, "filehandle");
9633         if (SvROK(sv)) {
9634             SvGETMAGIC(SvRV(sv));
9635             return sv_2io(SvRV(sv));
9636         }
9637         gv = gv_fetchsv_nomg(sv, 0, SVt_PVIO);
9638         if (gv)
9639             io = GvIO(gv);
9640         else
9641             io = 0;
9642         if (!io) {
9643             SV *newsv = sv;
9644             if (SvGMAGICAL(sv)) {
9645                 newsv = sv_newmortal();
9646                 sv_setsv_nomg(newsv, sv);
9647             }
9648             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(newsv));
9649         }
9650         break;
9651     }
9652     return io;
9653 }
9654
9655 /*
9656 =for apidoc sv_2cv
9657
9658 Using various gambits, try to get a CV from an SV; in addition, try if
9659 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
9660 The flags in C<lref> are passed to gv_fetchsv.
9661
9662 =cut
9663 */
9664
9665 CV *
9666 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
9667 {
9668     GV *gv = NULL;
9669     CV *cv = NULL;
9670
9671     PERL_ARGS_ASSERT_SV_2CV;
9672
9673     if (!sv) {
9674         *st = NULL;
9675         *gvp = NULL;
9676         return NULL;
9677     }
9678     switch (SvTYPE(sv)) {
9679     case SVt_PVCV:
9680         *st = CvSTASH(sv);
9681         *gvp = NULL;
9682         return MUTABLE_CV(sv);
9683     case SVt_PVHV:
9684     case SVt_PVAV:
9685         *st = NULL;
9686         *gvp = NULL;
9687         return NULL;
9688     default:
9689         SvGETMAGIC(sv);
9690         if (SvROK(sv)) {
9691             if (SvAMAGIC(sv))
9692                 sv = amagic_deref_call(sv, to_cv_amg);
9693
9694             sv = SvRV(sv);
9695             if (SvTYPE(sv) == SVt_PVCV) {
9696                 cv = MUTABLE_CV(sv);
9697                 *gvp = NULL;
9698                 *st = CvSTASH(cv);
9699                 return cv;
9700             }
9701             else if(SvGETMAGIC(sv), isGV_with_GP(sv))
9702                 gv = MUTABLE_GV(sv);
9703             else
9704                 Perl_croak(aTHX_ "Not a subroutine reference");
9705         }
9706         else if (isGV_with_GP(sv)) {
9707             gv = MUTABLE_GV(sv);
9708         }
9709         else {
9710             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
9711         }
9712         *gvp = gv;
9713         if (!gv) {
9714             *st = NULL;
9715             return NULL;
9716         }
9717         /* Some flags to gv_fetchsv mean don't really create the GV  */
9718         if (!isGV_with_GP(gv)) {
9719             *st = NULL;
9720             return NULL;
9721         }
9722         *st = GvESTASH(gv);
9723         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
9724             /* XXX this is probably not what they think they're getting.
9725              * It has the same effect as "sub name;", i.e. just a forward
9726              * declaration! */
9727             newSTUB(gv,0);
9728         }
9729         return GvCVu(gv);
9730     }
9731 }
9732
9733 /*
9734 =for apidoc sv_true
9735
9736 Returns true if the SV has a true value by Perl's rules.
9737 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
9738 instead use an in-line version.
9739
9740 =cut
9741 */
9742
9743 I32
9744 Perl_sv_true(pTHX_ SV *const sv)
9745 {
9746     if (!sv)
9747         return 0;
9748     if (SvPOK(sv)) {
9749         const XPV* const tXpv = (XPV*)SvANY(sv);
9750         if (tXpv &&
9751                 (tXpv->xpv_cur > 1 ||
9752                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
9753             return 1;
9754         else
9755             return 0;
9756     }
9757     else {
9758         if (SvIOK(sv))
9759             return SvIVX(sv) != 0;
9760         else {
9761             if (SvNOK(sv))
9762                 return SvNVX(sv) != 0.0;
9763             else
9764                 return sv_2bool(sv);
9765         }
9766     }
9767 }
9768
9769 /*
9770 =for apidoc sv_pvn_force
9771
9772 Get a sensible string out of the SV somehow.
9773 A private implementation of the C<SvPV_force> macro for compilers which
9774 can't cope with complex macro expressions.  Always use the macro instead.
9775
9776 =for apidoc sv_pvn_force_flags
9777
9778 Get a sensible string out of the SV somehow.
9779 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
9780 appropriate, else not.  C<sv_pvn_force> and C<sv_pvn_force_nomg> are
9781 implemented in terms of this function.
9782 You normally want to use the various wrapper macros instead: see
9783 C<SvPV_force> and C<SvPV_force_nomg>
9784
9785 =cut
9786 */
9787
9788 char *
9789 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
9790 {
9791     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
9792
9793     if (flags & SV_GMAGIC) SvGETMAGIC(sv);
9794     if (SvTHINKFIRST(sv) && (!SvROK(sv) || SvREADONLY(sv)))
9795         sv_force_normal_flags(sv, 0);
9796
9797     if (SvPOK(sv)) {
9798         if (lp)
9799             *lp = SvCUR(sv);
9800     }
9801     else {
9802         char *s;
9803         STRLEN len;
9804  
9805         if (SvTYPE(sv) > SVt_PVLV
9806             || isGV_with_GP(sv))
9807             /* diag_listed_as: Can't coerce %s to %s in %s */
9808             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
9809                 OP_DESC(PL_op));
9810         s = sv_2pv_flags(sv, &len, flags &~ SV_GMAGIC);
9811         if (!s) {
9812           s = (char *)"";
9813         }
9814         if (lp)
9815             *lp = len;
9816
9817         if (SvTYPE(sv) < SVt_PV ||
9818             s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
9819             if (SvROK(sv))
9820                 sv_unref(sv);
9821             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
9822             SvGROW(sv, len + 1);
9823             Move(s,SvPVX(sv),len,char);
9824             SvCUR_set(sv, len);
9825             SvPVX(sv)[len] = '\0';
9826         }
9827         if (!SvPOK(sv)) {
9828             SvPOK_on(sv);               /* validate pointer */
9829             SvTAINT(sv);
9830             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9831                                   PTR2UV(sv),SvPVX_const(sv)));
9832         }
9833     }
9834     (void)SvPOK_only_UTF8(sv);
9835     return SvPVX_mutable(sv);
9836 }
9837
9838 /*
9839 =for apidoc sv_pvbyten_force
9840
9841 The backend for the C<SvPVbytex_force> macro.  Always use the macro
9842 instead.
9843
9844 =cut
9845 */
9846
9847 char *
9848 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9849 {
9850     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9851
9852     sv_pvn_force(sv,lp);
9853     sv_utf8_downgrade(sv,0);
9854     *lp = SvCUR(sv);
9855     return SvPVX(sv);
9856 }
9857
9858 /*
9859 =for apidoc sv_pvutf8n_force
9860
9861 The backend for the C<SvPVutf8x_force> macro.  Always use the macro
9862 instead.
9863
9864 =cut
9865 */
9866
9867 char *
9868 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9869 {
9870     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9871
9872     sv_pvn_force(sv,0);
9873     sv_utf8_upgrade_nomg(sv);
9874     *lp = SvCUR(sv);
9875     return SvPVX(sv);
9876 }
9877
9878 /*
9879 =for apidoc sv_reftype
9880
9881 Returns a string describing what the SV is a reference to.
9882
9883 =cut
9884 */
9885
9886 const char *
9887 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9888 {
9889     PERL_ARGS_ASSERT_SV_REFTYPE;
9890     if (ob && SvOBJECT(sv)) {
9891         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
9892     }
9893     else {
9894         /* WARNING - There is code, for instance in mg.c, that assumes that
9895          * the only reason that sv_reftype(sv,0) would return a string starting
9896          * with 'L' or 'S' is that it is a LVALUE or a SCALAR.
9897          * Yes this a dodgy way to do type checking, but it saves practically reimplementing
9898          * this routine inside other subs, and it saves time.
9899          * Do not change this assumption without searching for "dodgy type check" in
9900          * the code.
9901          * - Yves */
9902         switch (SvTYPE(sv)) {
9903         case SVt_NULL:
9904         case SVt_IV:
9905         case SVt_NV:
9906         case SVt_PV:
9907         case SVt_PVIV:
9908         case SVt_PVNV:
9909         case SVt_PVMG:
9910                                 if (SvVOK(sv))
9911                                     return "VSTRING";
9912                                 if (SvROK(sv))
9913                                     return "REF";
9914                                 else
9915                                     return "SCALAR";
9916
9917         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9918                                 /* tied lvalues should appear to be
9919                                  * scalars for backwards compatibility */
9920                                 : (isALPHA_FOLD_EQ(LvTYPE(sv), 't'))
9921                                     ? "SCALAR" : "LVALUE");
9922         case SVt_PVAV:          return "ARRAY";
9923         case SVt_PVHV:          return "HASH";
9924         case SVt_PVCV:          return "CODE";
9925         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9926                                     ? "GLOB" : "SCALAR");
9927         case SVt_PVFM:          return "FORMAT";
9928         case SVt_PVIO:          return "IO";
9929         case SVt_INVLIST:       return "INVLIST";
9930         case SVt_REGEXP:        return "REGEXP";
9931         default:                return "UNKNOWN";
9932         }
9933     }
9934 }
9935
9936 /*
9937 =for apidoc sv_ref
9938
9939 Returns a SV describing what the SV passed in is a reference to.
9940
9941 =cut
9942 */
9943
9944 SV *
9945 Perl_sv_ref(pTHX_ SV *dst, const SV *const sv, const int ob)
9946 {
9947     PERL_ARGS_ASSERT_SV_REF;
9948
9949     if (!dst)
9950         dst = sv_newmortal();
9951
9952     if (ob && SvOBJECT(sv)) {
9953         HvNAME_get(SvSTASH(sv))
9954                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
9955                     : sv_setpvn(dst, "__ANON__", 8);
9956     }
9957     else {
9958         const char * reftype = sv_reftype(sv, 0);
9959         sv_setpv(dst, reftype);
9960     }
9961     return dst;
9962 }
9963
9964 /*
9965 =for apidoc sv_isobject
9966
9967 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9968 object.  If the SV is not an RV, or if the object is not blessed, then this
9969 will return false.
9970
9971 =cut
9972 */
9973
9974 int
9975 Perl_sv_isobject(pTHX_ SV *sv)
9976 {
9977     if (!sv)
9978         return 0;
9979     SvGETMAGIC(sv);
9980     if (!SvROK(sv))
9981         return 0;
9982     sv = SvRV(sv);
9983     if (!SvOBJECT(sv))
9984         return 0;
9985     return 1;
9986 }
9987
9988 /*
9989 =for apidoc sv_isa
9990
9991 Returns a boolean indicating whether the SV is blessed into the specified
9992 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9993 an inheritance relationship.
9994
9995 =cut
9996 */
9997
9998 int
9999 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
10000 {
10001     const char *hvname;
10002
10003     PERL_ARGS_ASSERT_SV_ISA;
10004
10005     if (!sv)
10006         return 0;
10007     SvGETMAGIC(sv);
10008     if (!SvROK(sv))
10009         return 0;
10010     sv = SvRV(sv);
10011     if (!SvOBJECT(sv))
10012         return 0;
10013     hvname = HvNAME_get(SvSTASH(sv));
10014     if (!hvname)
10015         return 0;
10016
10017     return strEQ(hvname, name);
10018 }
10019
10020 /*
10021 =for apidoc newSVrv
10022
10023 Creates a new SV for the existing RV, C<rv>, to point to.  If C<rv> is not an
10024 RV then it will be upgraded to one.  If C<classname> is non-null then the new
10025 SV will be blessed in the specified package.  The new SV is returned and its
10026 reference count is 1.  The reference count 1 is owned by C<rv>.
10027
10028 =cut
10029 */
10030
10031 SV*
10032 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
10033 {
10034     SV *sv;
10035
10036     PERL_ARGS_ASSERT_NEWSVRV;
10037
10038     new_SV(sv);
10039
10040     SV_CHECK_THINKFIRST_COW_DROP(rv);
10041
10042     if (UNLIKELY( SvTYPE(rv) >= SVt_PVMG )) {
10043         const U32 refcnt = SvREFCNT(rv);
10044         SvREFCNT(rv) = 0;
10045         sv_clear(rv);
10046         SvFLAGS(rv) = 0;
10047         SvREFCNT(rv) = refcnt;
10048
10049         sv_upgrade(rv, SVt_IV);
10050     } else if (SvROK(rv)) {
10051         SvREFCNT_dec(SvRV(rv));
10052     } else {
10053         prepare_SV_for_RV(rv);
10054     }
10055
10056     SvOK_off(rv);
10057     SvRV_set(rv, sv);
10058     SvROK_on(rv);
10059
10060     if (classname) {
10061         HV* const stash = gv_stashpv(classname, GV_ADD);
10062         (void)sv_bless(rv, stash);
10063     }
10064     return sv;
10065 }
10066
10067 SV *
10068 Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible)
10069 {
10070     SV * const lv = newSV_type(SVt_PVLV);
10071     PERL_ARGS_ASSERT_NEWSVAVDEFELEM;
10072     LvTYPE(lv) = 'y';
10073     sv_magic(lv, NULL, PERL_MAGIC_defelem, NULL, 0);
10074     LvTARG(lv) = SvREFCNT_inc_simple_NN(av);
10075     LvSTARGOFF(lv) = ix;
10076     LvTARGLEN(lv) = extendible ? 1 : (STRLEN)UV_MAX;
10077     return lv;
10078 }
10079
10080 /*
10081 =for apidoc sv_setref_pv
10082
10083 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
10084 argument will be upgraded to an RV.  That RV will be modified to point to
10085 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
10086 into the SV.  The C<classname> argument indicates the package for the
10087 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10088 will have a reference count of 1, and the RV will be returned.
10089
10090 Do not use with other Perl types such as HV, AV, SV, CV, because those
10091 objects will become corrupted by the pointer copy process.
10092
10093 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
10094
10095 =cut
10096 */
10097
10098 SV*
10099 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
10100 {
10101     PERL_ARGS_ASSERT_SV_SETREF_PV;
10102
10103     if (!pv) {
10104         sv_setsv(rv, &PL_sv_undef);
10105         SvSETMAGIC(rv);
10106     }
10107     else
10108         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
10109     return rv;
10110 }
10111
10112 /*
10113 =for apidoc sv_setref_iv
10114
10115 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
10116 argument will be upgraded to an RV.  That RV will be modified to point to
10117 the new SV.  The C<classname> argument indicates the package for the
10118 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10119 will have a reference count of 1, and the RV will be returned.
10120
10121 =cut
10122 */
10123
10124 SV*
10125 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
10126 {
10127     PERL_ARGS_ASSERT_SV_SETREF_IV;
10128
10129     sv_setiv(newSVrv(rv,classname), iv);
10130     return rv;
10131 }
10132
10133 /*
10134 =for apidoc sv_setref_uv
10135
10136 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
10137 argument will be upgraded to an RV.  That RV will be modified to point to
10138 the new SV.  The C<classname> argument indicates the package for the
10139 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10140 will have a reference count of 1, and the RV will be returned.
10141
10142 =cut
10143 */
10144
10145 SV*
10146 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
10147 {
10148     PERL_ARGS_ASSERT_SV_SETREF_UV;
10149
10150     sv_setuv(newSVrv(rv,classname), uv);
10151     return rv;
10152 }
10153
10154 /*
10155 =for apidoc sv_setref_nv
10156
10157 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
10158 argument will be upgraded to an RV.  That RV will be modified to point to
10159 the new SV.  The C<classname> argument indicates the package for the
10160 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10161 will have a reference count of 1, and the RV will be returned.
10162
10163 =cut
10164 */
10165
10166 SV*
10167 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
10168 {
10169     PERL_ARGS_ASSERT_SV_SETREF_NV;
10170
10171     sv_setnv(newSVrv(rv,classname), nv);
10172     return rv;
10173 }
10174
10175 /*
10176 =for apidoc sv_setref_pvn
10177
10178 Copies a string into a new SV, optionally blessing the SV.  The length of the
10179 string must be specified with C<n>.  The C<rv> argument will be upgraded to
10180 an RV.  That RV will be modified to point to the new SV.  The C<classname>
10181 argument indicates the package for the blessing.  Set C<classname> to
10182 C<NULL> to avoid the blessing.  The new SV will have a reference count
10183 of 1, and the RV will be returned.
10184
10185 Note that C<sv_setref_pv> copies the pointer while this copies the string.
10186
10187 =cut
10188 */
10189
10190 SV*
10191 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
10192                    const char *const pv, const STRLEN n)
10193 {
10194     PERL_ARGS_ASSERT_SV_SETREF_PVN;
10195
10196     sv_setpvn(newSVrv(rv,classname), pv, n);
10197     return rv;
10198 }
10199
10200 /*
10201 =for apidoc sv_bless
10202
10203 Blesses an SV into a specified package.  The SV must be an RV.  The package
10204 must be designated by its stash (see C<gv_stashpv()>).  The reference count
10205 of the SV is unaffected.
10206
10207 =cut
10208 */
10209
10210 SV*
10211 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
10212 {
10213     SV *tmpRef;
10214     HV *oldstash = NULL;
10215
10216     PERL_ARGS_ASSERT_SV_BLESS;
10217
10218     SvGETMAGIC(sv);
10219     if (!SvROK(sv))
10220         Perl_croak(aTHX_ "Can't bless non-reference value");
10221     tmpRef = SvRV(sv);
10222     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY|SVf_PROTECT)) {
10223         if (SvREADONLY(tmpRef))
10224             Perl_croak_no_modify();
10225         if (SvOBJECT(tmpRef)) {
10226             oldstash = SvSTASH(tmpRef);
10227         }
10228     }
10229     SvOBJECT_on(tmpRef);
10230     SvUPGRADE(tmpRef, SVt_PVMG);
10231     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
10232     SvREFCNT_dec(oldstash);
10233
10234     if(SvSMAGICAL(tmpRef))
10235         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
10236             mg_set(tmpRef);
10237
10238
10239
10240     return sv;
10241 }
10242
10243 /* Downgrades a PVGV to a PVMG. If it's actually a PVLV, we leave the type
10244  * as it is after unglobbing it.
10245  */
10246
10247 PERL_STATIC_INLINE void
10248 S_sv_unglob(pTHX_ SV *const sv, U32 flags)
10249 {
10250     void *xpvmg;
10251     HV *stash;
10252     SV * const temp = flags & SV_COW_DROP_PV ? NULL : sv_newmortal();
10253
10254     PERL_ARGS_ASSERT_SV_UNGLOB;
10255
10256     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
10257     SvFAKE_off(sv);
10258     if (!(flags & SV_COW_DROP_PV))
10259         gv_efullname3(temp, MUTABLE_GV(sv), "*");
10260
10261     SvREFCNT_inc_simple_void_NN(sv_2mortal(sv));
10262     if (GvGP(sv)) {
10263         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
10264            && HvNAME_get(stash))
10265             mro_method_changed_in(stash);
10266         gp_free(MUTABLE_GV(sv));
10267     }
10268     if (GvSTASH(sv)) {
10269         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
10270         GvSTASH(sv) = NULL;
10271     }
10272     GvMULTI_off(sv);
10273     if (GvNAME_HEK(sv)) {
10274         unshare_hek(GvNAME_HEK(sv));
10275     }
10276     isGV_with_GP_off(sv);
10277
10278     if(SvTYPE(sv) == SVt_PVGV) {
10279         /* need to keep SvANY(sv) in the right arena */
10280         xpvmg = new_XPVMG();
10281         StructCopy(SvANY(sv), xpvmg, XPVMG);
10282         del_XPVGV(SvANY(sv));
10283         SvANY(sv) = xpvmg;
10284
10285         SvFLAGS(sv) &= ~SVTYPEMASK;
10286         SvFLAGS(sv) |= SVt_PVMG;
10287     }
10288
10289     /* Intentionally not calling any local SET magic, as this isn't so much a
10290        set operation as merely an internal storage change.  */
10291     if (flags & SV_COW_DROP_PV) SvOK_off(sv);
10292     else sv_setsv_flags(sv, temp, 0);
10293
10294     if ((const GV *)sv == PL_last_in_gv)
10295         PL_last_in_gv = NULL;
10296     else if ((const GV *)sv == PL_statgv)
10297         PL_statgv = NULL;
10298 }
10299
10300 /*
10301 =for apidoc sv_unref_flags
10302
10303 Unsets the RV status of the SV, and decrements the reference count of
10304 whatever was being referenced by the RV.  This can almost be thought of
10305 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
10306 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
10307 (otherwise the decrementing is conditional on the reference count being
10308 different from one or the reference being a readonly SV).
10309 See C<SvROK_off>.
10310
10311 =cut
10312 */
10313
10314 void
10315 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
10316 {
10317     SV* const target = SvRV(ref);
10318
10319     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
10320
10321     if (SvWEAKREF(ref)) {
10322         sv_del_backref(target, ref);
10323         SvWEAKREF_off(ref);
10324         SvRV_set(ref, NULL);
10325         return;
10326     }
10327     SvRV_set(ref, NULL);
10328     SvROK_off(ref);
10329     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
10330        assigned to as BEGIN {$a = \"Foo"} will fail.  */
10331     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
10332         SvREFCNT_dec_NN(target);
10333     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
10334         sv_2mortal(target);     /* Schedule for freeing later */
10335 }
10336
10337 /*
10338 =for apidoc sv_untaint
10339
10340 Untaint an SV.  Use C<SvTAINTED_off> instead.
10341
10342 =cut
10343 */
10344
10345 void
10346 Perl_sv_untaint(pTHX_ SV *const sv)
10347 {
10348     PERL_ARGS_ASSERT_SV_UNTAINT;
10349     PERL_UNUSED_CONTEXT;
10350
10351     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10352         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10353         if (mg)
10354             mg->mg_len &= ~1;
10355     }
10356 }
10357
10358 /*
10359 =for apidoc sv_tainted
10360
10361 Test an SV for taintedness.  Use C<SvTAINTED> instead.
10362
10363 =cut
10364 */
10365
10366 bool
10367 Perl_sv_tainted(pTHX_ SV *const sv)
10368 {
10369     PERL_ARGS_ASSERT_SV_TAINTED;
10370     PERL_UNUSED_CONTEXT;
10371
10372     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10373         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10374         if (mg && (mg->mg_len & 1) )
10375             return TRUE;
10376     }
10377     return FALSE;
10378 }
10379
10380 /*
10381 =for apidoc sv_setpviv
10382
10383 Copies an integer into the given SV, also updating its string value.
10384 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
10385
10386 =cut
10387 */
10388
10389 void
10390 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
10391 {
10392     char buf[TYPE_CHARS(UV)];
10393     char *ebuf;
10394     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
10395
10396     PERL_ARGS_ASSERT_SV_SETPVIV;
10397
10398     sv_setpvn(sv, ptr, ebuf - ptr);
10399 }
10400
10401 /*
10402 =for apidoc sv_setpviv_mg
10403
10404 Like C<sv_setpviv>, but also handles 'set' magic.
10405
10406 =cut
10407 */
10408
10409 void
10410 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
10411 {
10412     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
10413
10414     sv_setpviv(sv, iv);
10415     SvSETMAGIC(sv);
10416 }
10417
10418 #if defined(PERL_IMPLICIT_CONTEXT)
10419
10420 /* pTHX_ magic can't cope with varargs, so this is a no-context
10421  * version of the main function, (which may itself be aliased to us).
10422  * Don't access this version directly.
10423  */
10424
10425 void
10426 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
10427 {
10428     dTHX;
10429     va_list args;
10430
10431     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
10432
10433     va_start(args, pat);
10434     sv_vsetpvf(sv, pat, &args);
10435     va_end(args);
10436 }
10437
10438 /* pTHX_ magic can't cope with varargs, so this is a no-context
10439  * version of the main function, (which may itself be aliased to us).
10440  * Don't access this version directly.
10441  */
10442
10443 void
10444 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10445 {
10446     dTHX;
10447     va_list args;
10448
10449     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
10450
10451     va_start(args, pat);
10452     sv_vsetpvf_mg(sv, pat, &args);
10453     va_end(args);
10454 }
10455 #endif
10456
10457 /*
10458 =for apidoc sv_setpvf
10459
10460 Works like C<sv_catpvf> but copies the text into the SV instead of
10461 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
10462
10463 =cut
10464 */
10465
10466 void
10467 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
10468 {
10469     va_list args;
10470
10471     PERL_ARGS_ASSERT_SV_SETPVF;
10472
10473     va_start(args, pat);
10474     sv_vsetpvf(sv, pat, &args);
10475     va_end(args);
10476 }
10477
10478 /*
10479 =for apidoc sv_vsetpvf
10480
10481 Works like C<sv_vcatpvf> but copies the text into the SV instead of
10482 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
10483
10484 Usually used via its frontend C<sv_setpvf>.
10485
10486 =cut
10487 */
10488
10489 void
10490 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10491 {
10492     PERL_ARGS_ASSERT_SV_VSETPVF;
10493
10494     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10495 }
10496
10497 /*
10498 =for apidoc sv_setpvf_mg
10499
10500 Like C<sv_setpvf>, but also handles 'set' magic.
10501
10502 =cut
10503 */
10504
10505 void
10506 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10507 {
10508     va_list args;
10509
10510     PERL_ARGS_ASSERT_SV_SETPVF_MG;
10511
10512     va_start(args, pat);
10513     sv_vsetpvf_mg(sv, pat, &args);
10514     va_end(args);
10515 }
10516
10517 /*
10518 =for apidoc sv_vsetpvf_mg
10519
10520 Like C<sv_vsetpvf>, but also handles 'set' magic.
10521
10522 Usually used via its frontend C<sv_setpvf_mg>.
10523
10524 =cut
10525 */
10526
10527 void
10528 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10529 {
10530     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
10531
10532     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10533     SvSETMAGIC(sv);
10534 }
10535
10536 #if defined(PERL_IMPLICIT_CONTEXT)
10537
10538 /* pTHX_ magic can't cope with varargs, so this is a no-context
10539  * version of the main function, (which may itself be aliased to us).
10540  * Don't access this version directly.
10541  */
10542
10543 void
10544 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
10545 {
10546     dTHX;
10547     va_list args;
10548
10549     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
10550
10551     va_start(args, pat);
10552     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10553     va_end(args);
10554 }
10555
10556 /* pTHX_ magic can't cope with varargs, so this is a no-context
10557  * version of the main function, (which may itself be aliased to us).
10558  * Don't access this version directly.
10559  */
10560
10561 void
10562 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10563 {
10564     dTHX;
10565     va_list args;
10566
10567     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
10568
10569     va_start(args, pat);
10570     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10571     SvSETMAGIC(sv);
10572     va_end(args);
10573 }
10574 #endif
10575
10576 /*
10577 =for apidoc sv_catpvf
10578
10579 Processes its arguments like C<sprintf> and appends the formatted
10580 output to an SV.  If the appended data contains "wide" characters
10581 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
10582 and characters >255 formatted with %c), the original SV might get
10583 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
10584 C<sv_catpvf_mg>.  If the original SV was UTF-8, the pattern should be
10585 valid UTF-8; if the original SV was bytes, the pattern should be too.
10586
10587 =cut */
10588
10589 void
10590 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
10591 {
10592     va_list args;
10593
10594     PERL_ARGS_ASSERT_SV_CATPVF;
10595
10596     va_start(args, pat);
10597     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10598     va_end(args);
10599 }
10600
10601 /*
10602 =for apidoc sv_vcatpvf
10603
10604 Processes its arguments like C<vsprintf> and appends the formatted output
10605 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
10606
10607 Usually used via its frontend C<sv_catpvf>.
10608
10609 =cut
10610 */
10611
10612 void
10613 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10614 {
10615     PERL_ARGS_ASSERT_SV_VCATPVF;
10616
10617     sv_vcatpvfn_flags(sv, pat, strlen(pat), args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10618 }
10619
10620 /*
10621 =for apidoc sv_catpvf_mg
10622
10623 Like C<sv_catpvf>, but also handles 'set' magic.
10624
10625 =cut
10626 */
10627
10628 void
10629 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10630 {
10631     va_list args;
10632
10633     PERL_ARGS_ASSERT_SV_CATPVF_MG;
10634
10635     va_start(args, pat);
10636     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10637     SvSETMAGIC(sv);
10638     va_end(args);
10639 }
10640
10641 /*
10642 =for apidoc sv_vcatpvf_mg
10643
10644 Like C<sv_vcatpvf>, but also handles 'set' magic.
10645
10646 Usually used via its frontend C<sv_catpvf_mg>.
10647
10648 =cut
10649 */
10650
10651 void
10652 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10653 {
10654     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
10655
10656     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10657     SvSETMAGIC(sv);
10658 }
10659
10660 /*
10661 =for apidoc sv_vsetpvfn
10662
10663 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
10664 appending it.
10665
10666 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
10667
10668 =cut
10669 */
10670
10671 void
10672 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10673                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10674 {
10675     PERL_ARGS_ASSERT_SV_VSETPVFN;
10676
10677     sv_setpvs(sv, "");
10678     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, 0);
10679 }
10680
10681
10682 /*
10683  * Warn of missing argument to sprintf, and then return a defined value
10684  * to avoid inappropriate "use of uninit" warnings [perl #71000].
10685  */
10686 STATIC SV*
10687 S_vcatpvfn_missing_argument(pTHX) {
10688     if (ckWARN(WARN_MISSING)) {
10689         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
10690                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
10691     }
10692     return &PL_sv_no;
10693 }
10694
10695
10696 STATIC I32
10697 S_expect_number(pTHX_ char **const pattern)
10698 {
10699     I32 var = 0;
10700
10701     PERL_ARGS_ASSERT_EXPECT_NUMBER;
10702
10703     switch (**pattern) {
10704     case '1': case '2': case '3':
10705     case '4': case '5': case '6':
10706     case '7': case '8': case '9':
10707         var = *(*pattern)++ - '0';
10708         while (isDIGIT(**pattern)) {
10709             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
10710             if (tmp < var)
10711                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
10712             var = tmp;
10713         }
10714     }
10715     return var;
10716 }
10717
10718 STATIC char *
10719 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
10720 {
10721     const int neg = nv < 0;
10722     UV uv;
10723
10724     PERL_ARGS_ASSERT_F0CONVERT;
10725
10726     if (UNLIKELY(Perl_isinfnan(nv))) {
10727         STRLEN n = S_infnan_2pv(nv, endbuf - *len, *len);
10728         *len = n;
10729         return endbuf - n;
10730     }
10731     if (neg)
10732         nv = -nv;
10733     if (nv < UV_MAX) {
10734         char *p = endbuf;
10735         nv += 0.5;
10736         uv = (UV)nv;
10737         if (uv & 1 && uv == nv)
10738             uv--;                       /* Round to even */
10739         do {
10740             const unsigned dig = uv % 10;
10741             *--p = '0' + dig;
10742         } while (uv /= 10);
10743         if (neg)
10744             *--p = '-';
10745         *len = endbuf - p;
10746         return p;
10747     }
10748     return NULL;
10749 }
10750
10751
10752 /*
10753 =for apidoc sv_vcatpvfn
10754
10755 =for apidoc sv_vcatpvfn_flags
10756
10757 Processes its arguments like C<vsprintf> and appends the formatted output
10758 to an SV.  Uses an array of SVs if the C style variable argument list is
10759 missing (NULL).  When running with taint checks enabled, indicates via
10760 C<maybe_tainted> if results are untrustworthy (often due to the use of
10761 locales).
10762
10763 If called as C<sv_vcatpvfn> or flags include C<SV_GMAGIC>, calls get magic.
10764
10765 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
10766
10767 =cut
10768 */
10769
10770 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
10771                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
10772                         vec_utf8 = DO_UTF8(vecsv);
10773
10774 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
10775
10776 void
10777 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10778                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10779 {
10780     PERL_ARGS_ASSERT_SV_VCATPVFN;
10781
10782     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, SV_GMAGIC|SV_SMAGIC);
10783 }
10784
10785 #if DOUBLEKIND == DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN || \
10786     DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN || \
10787     DOUBLEKIND == DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
10788 #  define DOUBLE_LITTLE_ENDIAN
10789 #endif
10790
10791 #ifdef HAS_LONG_DOUBLEKIND
10792
10793 #  if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN || \
10794       LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN || \
10795       LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN
10796 #    define LONGDOUBLE_LITTLE_ENDIAN
10797 #  endif
10798
10799 #  if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN || \
10800       LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN || \
10801       LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN
10802 #    define LONGDOUBLE_BIG_ENDIAN
10803 #  endif
10804
10805 #  if LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN || \
10806       LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
10807 #    define LONGDOUBLE_X86_80_BIT
10808 #  endif
10809
10810 #  if LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN || \
10811       LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN
10812 #    define LONGDOUBLE_DOUBLEDOUBLE
10813 /* The first double can be as large as 2**1023, or '1' x '0' x 1023.
10814  * The second double can be as small as 2**-1074, or '0' x 1073 . '1'.
10815  * The sum of them can be '1' . '0' x 2096 . '1', with implied radix point
10816  * after the first 1023 zero bits.
10817  *
10818  * XXX The 2098 is quite large (262.25 bytes) and therefore some sort
10819  * of dynamically growing buffer might be better, start at just 16 bytes
10820  * (for example) and grow only when necessary.  Or maybe just by looking
10821  * at the exponents of the two doubles? */
10822 #    define DOUBLEDOUBLE_MAXBITS 2098
10823 #  endif
10824
10825 #endif /* HAS_LONG_DOUBLE */
10826
10827 /* vhex will contain the values (0..15) of the hex digits ("nybbles"
10828  * of 4 bits); 1 for the implicit 1, and the mantissa bits, four bits
10829  * per xdigit.  For the double-double case, this can be rather many.
10830  * The non-double-double-long-double overshoots since all bits of NV
10831  * are not mantissa bits, there are also exponent bits. */
10832 #ifdef LONGDOUBLE_DOUBLEDOUBLE
10833 #  define VHEX_SIZE (1+DOUBLEDOUBLE_MAXBITS/4)
10834 #else
10835 #  define VHEX_SIZE (1+(NVSIZE * 8)/4)
10836 #endif
10837
10838 /* If we do not have a known long double format, (including not using
10839  * long doubles, or long doubles being equal to doubles) then we will
10840  * fall back to the ldexp/frexp route, with which we can retrieve at
10841  * most as many bits as our widest unsigned integer type is.  We try
10842  * to get a 64-bit unsigned integer even if we are not using a 64-bit UV.
10843  *
10844  * (If you want to test the case of UVSIZE == 4, NVSIZE == 8,
10845  *  set the MANTISSATYPE to int and the MANTISSASIZE to 4.)
10846  */
10847 #if defined(HAS_QUAD) && defined(Uquad_t)
10848 #  define MANTISSATYPE Uquad_t
10849 #  define MANTISSASIZE 8
10850 #else
10851 #  define MANTISSATYPE UV
10852 #  define MANTISSASIZE UVSIZE
10853 #endif
10854
10855 #if defined(DOUBLE_LITTLE_ENDIAN) || defined(LONGDOUBLE_LITTLE_ENDIAN)
10856 #  define HEXTRACT_LITTLE_ENDIAN
10857 #elif defined(DOUBLE_BIG_ENDIAN) || defined(LONGDOUBLE_BIG_ENDIAN)
10858 #  define HEXTRACT_BIG_ENDIAN
10859 #else
10860 #  define HEXTRACT_MIX_ENDIAN
10861 #endif
10862
10863 /* S_hextract() is a helper for Perl_sv_vcatpvfn_flags, for extracting
10864  * the hexadecimal values (for %a/%A).  The nv is the NV where the value
10865  * are being extracted from (either directly from the long double in-memory
10866  * presentation, or from the uquad computed via frexp+ldexp).  frexp also
10867  * is used to update the exponent.  vhex is the pointer to the beginning
10868  * of the output buffer (of VHEX_SIZE).
10869  *
10870  * The tricky part is that S_hextract() needs to be called twice:
10871  * the first time with vend as NULL, and the second time with vend as
10872  * the pointer returned by the first call.  What happens is that on
10873  * the first round the output size is computed, and the intended
10874  * extraction sanity checked.  On the second round the actual output
10875  * (the extraction of the hexadecimal values) takes place.
10876  * Sanity failures cause fatal failures during both rounds. */
10877 STATIC U8*
10878 S_hextract(pTHX_ const NV nv, int* exponent, U8* vhex, U8* vend)
10879 {
10880     U8* v = vhex;
10881     int ix;
10882     int ixmin = 0, ixmax = 0;
10883
10884     /* XXX Inf/NaN/denormal handling in the HEXTRACT_IMPLICIT_BIT,
10885      * and elsewhere. */
10886
10887     /* These macros are just to reduce typos, they have multiple
10888      * repetitions below, but usually only one (or sometimes two)
10889      * of them is really being used. */
10890     /* HEXTRACT_OUTPUT() extracts the high nybble first. */
10891 #define HEXTRACT_OUTPUT_HI(ix) (*v++ = nvp[ix] >> 4)
10892 #define HEXTRACT_OUTPUT_LO(ix) (*v++ = nvp[ix] & 0xF)
10893 #define HEXTRACT_OUTPUT(ix) \
10894     STMT_START { \
10895       HEXTRACT_OUTPUT_HI(ix); HEXTRACT_OUTPUT_LO(ix); \
10896    } STMT_END
10897 #define HEXTRACT_COUNT(ix, c) \
10898     STMT_START { \
10899       v += c; if (ix < ixmin) ixmin = ix; else if (ix > ixmax) ixmax = ix; \
10900    } STMT_END
10901 #define HEXTRACT_BYTE(ix) \
10902     STMT_START { \
10903       if (vend) HEXTRACT_OUTPUT(ix); else HEXTRACT_COUNT(ix, 2); \
10904    } STMT_END
10905 #define HEXTRACT_LO_NYBBLE(ix) \
10906     STMT_START { \
10907       if (vend) HEXTRACT_OUTPUT_LO(ix); else HEXTRACT_COUNT(ix, 1); \
10908    } STMT_END
10909     /* HEXTRACT_TOP_NYBBLE is just convenience disguise,
10910      * to make it look less odd when the top bits of a NV
10911      * are extracted using HEXTRACT_LO_NYBBLE: the highest
10912      * order bits can be in the "low nybble" of a byte. */
10913 #define HEXTRACT_TOP_NYBBLE(ix) HEXTRACT_LO_NYBBLE(ix)
10914 #define HEXTRACT_BYTES_LE(a, b) \
10915     for (ix = a; ix >= b; ix--) { HEXTRACT_BYTE(ix); }
10916 #define HEXTRACT_BYTES_BE(a, b) \
10917     for (ix = a; ix <= b; ix++) { HEXTRACT_BYTE(ix); }
10918 #define HEXTRACT_IMPLICIT_BIT(nv) \
10919     STMT_START { \
10920         if (vend) *v++ = ((nv) == 0.0) ? 0 : 1; else v++; \
10921    } STMT_END
10922
10923 /* Most formats do.  Those which don't should undef this. */
10924 #define HEXTRACT_HAS_IMPLICIT_BIT
10925 /* Many formats do.  Those which don't should undef this. */
10926 #define HEXTRACT_HAS_TOP_NYBBLE
10927
10928     /* HEXTRACTSIZE is the maximum number of xdigits. */
10929 #if defined(USE_LONG_DOUBLE) && defined(LONGDOUBLE_DOUBLEDOUBLE)
10930 #  define HEXTRACTSIZE (DOUBLEDOUBLE_MAXBITS/4)
10931 #else
10932 #  define HEXTRACTSIZE 2 * NVSIZE
10933 #endif
10934
10935     const U8* vmaxend = vhex + HEXTRACTSIZE;
10936     PERL_UNUSED_VAR(ix); /* might happen */
10937     (void)Perl_frexp(PERL_ABS(nv), exponent);
10938     if (vend && (vend <= vhex || vend > vmaxend))
10939         Perl_croak(aTHX_ "Hexadecimal float: internal error");
10940     {
10941         /* First check if using long doubles. */
10942 #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE)
10943 #  if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
10944         /* Used in e.g. VMS and HP-UX IA-64, e.g. -0.1L:
10945          * 9a 99 99 99 99 99 99 99 99 99 99 99 99 99 fb 3f */
10946         /* The bytes 13..0 are the mantissa/fraction,
10947          * the 15,14 are the sign+exponent. */
10948         const U8* nvp = (const U8*)(&nv);
10949         HEXTRACT_IMPLICIT_BIT(nv);
10950 #   undef HEXTRACT_HAS_TOP_NYBBLE
10951         HEXTRACT_BYTES_LE(13, 0);
10952 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
10953         /* Used in e.g. Solaris Sparc and HP-UX PA-RISC, e.g. -0.1L:
10954          * bf fb 99 99 99 99 99 99 99 99 99 99 99 99 99 9a */
10955         /* The bytes 2..15 are the mantissa/fraction,
10956          * the 0,1 are the sign+exponent. */
10957         const U8* nvp = (const U8*)(&nv);
10958         HEXTRACT_IMPLICIT_BIT(nv);
10959 #   undef HEXTRACT_HAS_TOP_NYBBLE
10960         HEXTRACT_BYTES_BE(2, 15);
10961 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
10962         /* x86 80-bit "extended precision", 64 bits of mantissa / fraction /
10963          * significand, 15 bits of exponent, 1 bit of sign.  NVSIZE can
10964          * be either 12 (ILP32, Solaris x86) or 16 (LP64, Linux and OS X),
10965          * meaning that 2 or 6 bytes are empty padding. */
10966         /* The bytes 7..0 are the mantissa/fraction */
10967         const U8* nvp = (const U8*)(&nv);
10968 #    undef HEXTRACT_HAS_IMPLICIT_BIT
10969 #    undef HEXTRACT_HAS_TOP_NYBBLE
10970         HEXTRACT_BYTES_LE(7, 0);
10971 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
10972         /* Does this format ever happen? (Wikipedia says the Motorola
10973          * 6888x math coprocessors used format _like_ this but padded
10974          * to 96 bits with 16 unused bits between the exponent and the
10975          * mantissa.) */
10976         const U8* nvp = (const U8*)(&nv);
10977 #    undef HEXTRACT_HAS_IMPLICIT_BIT
10978 #    undef HEXTRACT_HAS_TOP_NYBBLE
10979         HEXTRACT_BYTES_BE(0, 7);
10980 #  else
10981 #    define HEXTRACT_FALLBACK
10982         /* Double-double format: two doubles next to each other.
10983          * The first double is the high-order one, exactly like
10984          * it would be for a "lone" double.  The second double
10985          * is shifted down using the exponent so that that there
10986          * are no common bits.  The tricky part is that the value
10987          * of the double-double is the SUM of the two doubles and
10988          * the second one can be also NEGATIVE.
10989          *
10990          * Because of this tricky construction the bytewise extraction we
10991          * use for the other long double formats doesn't work, we must
10992          * extract the values bit by bit.
10993          *
10994          * The little-endian double-double is used .. somewhere?
10995          *
10996          * The big endian double-double is used in e.g. PPC/Power (AIX)
10997          * and MIPS (SGI).
10998          *
10999          * The mantissa bits are in two separate stretches, e.g. for -0.1L:
11000          * 9a 99 99 99 99 99 59 bc 9a 99 99 99 99 99 b9 3f (LE)
11001          * 3f b9 99 99 99 99 99 9a bc 59 99 99 99 99 99 9a (BE)
11002          */
11003 #  endif
11004 #else /* #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE) */
11005         /* Using normal doubles, not long doubles.
11006          *
11007          * We generate 4-bit xdigits (nybble/nibble) instead of 8-bit
11008          * bytes, since we might need to handle printf precision, and
11009          * also need to insert the radix. */
11010 #  if NVSIZE == 8
11011 #    ifdef HEXTRACT_LITTLE_ENDIAN
11012         /* 0 1 2 3 4 5 6 7 (MSB = 7, LSB = 0, 6+7 = exponent+sign) */
11013         const U8* nvp = (const U8*)(&nv);
11014         HEXTRACT_IMPLICIT_BIT(nv);
11015         HEXTRACT_TOP_NYBBLE(6);
11016         HEXTRACT_BYTES_LE(5, 0);
11017 #    elif defined(HEXTRACT_BIG_ENDIAN)
11018         /* 7 6 5 4 3 2 1 0 (MSB = 7, LSB = 0, 6+7 = exponent+sign) */
11019         const U8* nvp = (const U8*)(&nv);
11020         HEXTRACT_IMPLICIT_BIT(nv);
11021         HEXTRACT_TOP_NYBBLE(1);
11022         HEXTRACT_BYTES_BE(2, 7);
11023 #    elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
11024         /* 4 5 6 7 0 1 2 3 (MSB = 7, LSB = 0, 6:7 = nybble:exponent:sign) */
11025         const U8* nvp = (const U8*)(&nv);
11026         HEXTRACT_IMPLICIT_BIT(nv);
11027         HEXTRACT_TOP_NYBBLE(2); /* 6 */
11028         HEXTRACT_BYTE(1); /* 5 */
11029         HEXTRACT_BYTE(0); /* 4 */
11030         HEXTRACT_BYTE(7); /* 3 */
11031         HEXTRACT_BYTE(6); /* 2 */
11032         HEXTRACT_BYTE(5); /* 1 */
11033         HEXTRACT_BYTE(4); /* 0 */
11034 #    elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
11035         /* 3 2 1 0 7 6 5 4 (MSB = 7, LSB = 0, 7:6 = sign:exponent:nybble) */
11036         const U8* nvp = (const U8*)(&nv);
11037         HEXTRACT_IMPLICIT_BIT(nv);
11038         HEXTRACT_TOP_NYBBLE(5); /* 6 */
11039         HEXTRACT_BYTE(6); /* 5 */
11040         HEXTRACT_BYTE(7); /* 4 */
11041         HEXTRACT_BYTE(0); /* 3 */
11042         HEXTRACT_BYTE(1); /* 2 */
11043         HEXTRACT_BYTE(2); /* 1 */
11044         HEXTRACT_BYTE(3); /* 0 */
11045 #    else
11046 #      define HEXTRACT_FALLBACK
11047 #    endif
11048 #  else
11049 #    define HEXTRACT_FALLBACK
11050 #  endif
11051 #endif /* #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE) #else */
11052 #  ifdef HEXTRACT_FALLBACK
11053 #    undef HEXTRACT_HAS_TOP_NYBBLE /* Meaningless, but consistent. */
11054         /* The fallback is used for the double-double format, and
11055          * for unknown long double formats, and for unknown double
11056          * formats, or in general unknown NV formats. */
11057         if (nv == (NV)0.0) {
11058             if (vend)
11059                 *v++ = 0;
11060             else
11061                 v++;
11062             *exponent = 0;
11063         }
11064         else {
11065             NV d = nv < 0 ? -nv : nv;
11066             NV e = (NV)1.0;
11067             U8 ha = 0x0; /* hexvalue accumulator */
11068             U8 hd = 0x8; /* hexvalue digit */
11069
11070             /* Shift d and e (and update exponent) so that e <= d < 2*e,
11071              * this is essentially manual frexp(). Multiplying by 0.5 and
11072              * doubling should be lossless in binary floating point. */
11073
11074             *exponent = 1;
11075
11076             while (e > d) {
11077                 e *= (NV)0.5;
11078                 (*exponent)--;
11079             }
11080             /* Now d >= e */
11081
11082             while (d >= e + e) {
11083                 e += e;
11084                 (*exponent)++;
11085             }
11086             /* Now e <= d < 2*e */
11087
11088             /* First extract the leading hexdigit (the implicit bit). */
11089             if (d >= e) {
11090                 d -= e;
11091                 if (vend)
11092                     *v++ = 1;
11093                 else
11094                     v++;
11095             }
11096             else {
11097                 if (vend)
11098                     *v++ = 0;
11099                 else
11100                     v++;
11101             }
11102             e *= (NV)0.5;
11103
11104             /* Then extract the remaining hexdigits. */
11105             while (d > (NV)0.0) {
11106                 if (d >= e) {
11107                     ha |= hd;
11108                     d -= e;
11109                 }
11110                 if (hd == 1) {
11111                     /* Output or count in groups of four bits,
11112                      * that is, when the hexdigit is down to one. */
11113                     if (vend)
11114                         *v++ = ha;
11115                     else
11116                         v++;
11117                     /* Reset the hexvalue. */
11118                     ha = 0x0;
11119                     hd = 0x8;
11120                 }
11121                 else
11122                     hd >>= 1;
11123                 e *= (NV)0.5;
11124             }
11125
11126             /* Flush possible pending hexvalue. */
11127             if (ha) {
11128                 if (vend)
11129                     *v++ = ha;
11130                 else
11131                     v++;
11132             }
11133         }
11134 #  endif
11135     }
11136     /* Croak for various reasons: if the output pointer escaped the
11137      * output buffer, if the extraction index escaped the extraction
11138      * buffer, or if the ending output pointer didn't match the
11139      * previously computed value. */
11140     if (v <= vhex || v - vhex >= VHEX_SIZE ||
11141         /* For double-double the ixmin and ixmax stay at zero,
11142          * which is convenient since the HEXTRACTSIZE is tricky
11143          * for double-double. */
11144         ixmin < 0 || ixmax >= NVSIZE ||
11145         (vend && v != vend))
11146         Perl_croak(aTHX_ "Hexadecimal float: internal error");
11147     return v;
11148 }
11149
11150 void
11151 Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
11152                        va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted,
11153                        const U32 flags)
11154 {
11155     char *p;
11156     char *q;
11157     const char *patend;
11158     STRLEN origlen;
11159     I32 svix = 0;
11160     static const char nullstr[] = "(null)";
11161     SV *argsv = NULL;
11162     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
11163     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
11164     SV *nsv = NULL;
11165     /* Times 4: a decimal digit takes more than 3 binary digits.
11166      * NV_DIG: mantissa takes than many decimal digits.
11167      * Plus 32: Playing safe. */
11168     char ebuf[IV_DIG * 4 + NV_DIG + 32];
11169     bool no_redundant_warning = FALSE; /* did we use any explicit format parameter index? */
11170     bool hexfp = FALSE; /* hexadecimal floating point? */
11171
11172     DECLARATION_FOR_STORE_LC_NUMERIC_SET_TO_NEEDED;
11173
11174     PERL_ARGS_ASSERT_SV_VCATPVFN_FLAGS;
11175     PERL_UNUSED_ARG(maybe_tainted);
11176
11177     if (flags & SV_GMAGIC)
11178         SvGETMAGIC(sv);
11179
11180     /* no matter what, this is a string now */
11181     (void)SvPV_force_nomg(sv, origlen);
11182
11183     /* special-case "", "%s", and "%-p" (SVf - see below) */
11184     if (patlen == 0) {
11185         if (svmax && ckWARN(WARN_REDUNDANT))
11186             Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
11187                         PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
11188         return;
11189     }
11190     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
11191         if (svmax > 1 && ckWARN(WARN_REDUNDANT))
11192             Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
11193                         PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
11194
11195         if (args) {
11196             const char * const s = va_arg(*args, char*);
11197             sv_catpv_nomg(sv, s ? s : nullstr);
11198         }
11199         else if (svix < svmax) {
11200             /* we want get magic on the source but not the target. sv_catsv can't do that, though */
11201             SvGETMAGIC(*svargs);
11202             sv_catsv_nomg(sv, *svargs);
11203         }
11204         else
11205             S_vcatpvfn_missing_argument(aTHX);
11206         return;
11207     }
11208     if (args && patlen == 3 && pat[0] == '%' &&
11209                 pat[1] == '-' && pat[2] == 'p') {
11210         if (svmax > 1 && ckWARN(WARN_REDUNDANT))
11211             Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
11212                         PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
11213         argsv = MUTABLE_SV(va_arg(*args, void*));
11214         sv_catsv_nomg(sv, argsv);
11215         return;
11216     }
11217
11218 #if !defined(USE_LONG_DOUBLE) && !defined(USE_QUADMATH)
11219     /* special-case "%.<number>[gf]" */
11220     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
11221          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
11222         unsigned digits = 0;
11223         const char *pp;
11224
11225         pp = pat + 2;
11226         while (*pp >= '0' && *pp <= '9')
11227             digits = 10 * digits + (*pp++ - '0');
11228
11229         /* XXX: Why do this `svix < svmax` test? Couldn't we just
11230            format the first argument and WARN_REDUNDANT if svmax > 1?
11231            Munged by Nicholas Clark in v5.13.0-209-g95ea86d */
11232         if (pp - pat == (int)patlen - 1 && svix < svmax) {
11233             const NV nv = SvNV(*svargs);
11234             if (LIKELY(!Perl_isinfnan(nv))) {
11235                 if (*pp == 'g') {
11236                     /* Add check for digits != 0 because it seems that some
11237                        gconverts are buggy in this case, and we don't yet have
11238                        a Configure test for this.  */
11239                     if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
11240                         /* 0, point, slack */
11241                         STORE_LC_NUMERIC_SET_TO_NEEDED();
11242                         SNPRINTF_G(nv, ebuf, size, digits);
11243                         sv_catpv_nomg(sv, ebuf);
11244                         if (*ebuf)      /* May return an empty string for digits==0 */
11245                             return;
11246                     }
11247                 } else if (!digits) {
11248                     STRLEN l;
11249
11250                     if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
11251                         sv_catpvn_nomg(sv, p, l);
11252                         return;
11253                     }
11254                 }
11255             }
11256         }
11257     }
11258 #endif /* !USE_LONG_DOUBLE */
11259
11260     if (!args && svix < svmax && DO_UTF8(*svargs))
11261         has_utf8 = TRUE;
11262
11263     patend = (char*)pat + patlen;
11264     for (p = (char*)pat; p < patend; p = q) {
11265         bool alt = FALSE;
11266         bool left = FALSE;
11267         bool vectorize = FALSE;
11268         bool vectorarg = FALSE;
11269         bool vec_utf8 = FALSE;
11270         char fill = ' ';
11271         char plus = 0;
11272         char intsize = 0;
11273         STRLEN width = 0;
11274         STRLEN zeros = 0;
11275         bool has_precis = FALSE;
11276         STRLEN precis = 0;
11277         const I32 osvix = svix;
11278         bool is_utf8 = FALSE;  /* is this item utf8?   */
11279 #ifdef HAS_LDBL_SPRINTF_BUG
11280         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
11281            with sfio - Allen <allens@cpan.org> */
11282         bool fix_ldbl_sprintf_bug = FALSE;
11283 #endif
11284
11285         char esignbuf[4];
11286         U8 utf8buf[UTF8_MAXBYTES+1];
11287         STRLEN esignlen = 0;
11288
11289         const char *eptr = NULL;
11290         const char *fmtstart;
11291         STRLEN elen = 0;
11292         SV *vecsv = NULL;
11293         const U8 *vecstr = NULL;
11294         STRLEN veclen = 0;
11295         char c = 0;
11296         int i;
11297         unsigned base = 0;
11298         IV iv = 0;
11299         UV uv = 0;
11300         /* We need a long double target in case HAS_LONG_DOUBLE,
11301          * even without USE_LONG_DOUBLE, so that we can printf with
11302          * long double formats, even without NV being long double.
11303          * But we call the target 'fv' instead of 'nv', since most of
11304          * the time it is not (most compilers these days recognize
11305          * "long double", even if only as a synonym for "double").
11306         */
11307 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE && \
11308         defined(PERL_PRIgldbl) && !defined(USE_QUADMATH)
11309         long double fv;
11310 #  ifdef Perl_isfinitel
11311 #    define FV_ISFINITE(x) Perl_isfinitel(x)
11312 #  endif
11313 #  define FV_GF PERL_PRIgldbl
11314 #    if defined(__VMS) && defined(__ia64) && defined(__IEEE_FLOAT)
11315        /* Work around breakage in OTS$CVT_FLOAT_T_X */
11316 #      define NV_TO_FV(nv,fv) STMT_START {                   \
11317                                            double _dv = nv;  \
11318                                            fv = Perl_isnan(_dv) ? LDBL_QNAN : _dv; \
11319                               } STMT_END
11320 #    else
11321 #      define NV_TO_FV(nv,fv) (fv)=(nv)
11322 #    endif
11323 #else
11324         NV fv;
11325 #  define FV_GF NVgf
11326 #  define NV_TO_FV(nv,fv) (fv)=(nv)
11327 #endif
11328 #ifndef FV_ISFINITE
11329 #  define FV_ISFINITE(x) Perl_isfinite((NV)(x))
11330 #endif
11331         STRLEN have;
11332         STRLEN need;
11333         STRLEN gap;
11334         const char *dotstr = ".";
11335         STRLEN dotstrlen = 1;
11336         I32 efix = 0; /* explicit format parameter index */
11337         I32 ewix = 0; /* explicit width index */
11338         I32 epix = 0; /* explicit precision index */
11339         I32 evix = 0; /* explicit vector index */
11340         bool asterisk = FALSE;
11341         bool infnan = FALSE;
11342
11343         /* echo everything up to the next format specification */
11344         for (q = p; q < patend && *q != '%'; ++q) ;
11345         if (q > p) {
11346             if (has_utf8 && !pat_utf8)
11347                 sv_catpvn_nomg_utf8_upgrade(sv, p, q - p, nsv);
11348             else
11349                 sv_catpvn_nomg(sv, p, q - p);
11350             p = q;
11351         }
11352         if (q++ >= patend)
11353             break;
11354
11355         fmtstart = q;
11356
11357 /*
11358     We allow format specification elements in this order:
11359         \d+\$              explicit format parameter index
11360         [-+ 0#]+           flags
11361         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
11362         0                  flag (as above): repeated to allow "v02"     
11363         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
11364         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
11365         [hlqLV]            size
11366     [%bcdefginopsuxDFOUX] format (mandatory)
11367 */
11368
11369         if (args) {
11370 /*  
11371         As of perl5.9.3, printf format checking is on by default.
11372         Internally, perl uses %p formats to provide an escape to
11373         some extended formatting.  This block deals with those
11374         extensions: if it does not match, (char*)q is reset and
11375         the normal format processing code is used.
11376
11377         Currently defined extensions are:
11378                 %p              include pointer address (standard)      
11379                 %-p     (SVf)   include an SV (previously %_)
11380                 %-<num>p        include an SV with precision <num>      
11381                 %2p             include a HEK
11382                 %3p             include a HEK with precision of 256
11383                 %4p             char* preceded by utf8 flag and length
11384                 %<num>p         (where num is 1 or > 4) reserved for future
11385                                 extensions
11386
11387         Robin Barker 2005-07-14 (but modified since)
11388
11389                 %1p     (VDf)   removed.  RMB 2007-10-19
11390 */
11391             char* r = q; 
11392             bool sv = FALSE;    
11393             STRLEN n = 0;
11394             if (*q == '-')
11395                 sv = *q++;
11396             else if (strnEQ(q, UTF8f, sizeof(UTF8f)-1)) { /* UTF8f */
11397                 /* The argument has already gone through cBOOL, so the cast
11398                    is safe. */
11399                 is_utf8 = (bool)va_arg(*args, int);
11400                 elen = va_arg(*args, UV);
11401                 if ((IV)elen < 0) {
11402                     /* check if utf8 length is larger than 0 when cast to IV */
11403                     assert( (IV)elen >= 0 ); /* in DEBUGGING build we want to crash */
11404                     elen= 0; /* otherwise we want to treat this as an empty string */
11405                 }
11406                 eptr = va_arg(*args, char *);
11407                 q += sizeof(UTF8f)-1;
11408                 goto string;
11409             }
11410             n = expect_number(&q);
11411             if (*q++ == 'p') {
11412                 if (sv) {                       /* SVf */
11413                     if (n) {
11414                         precis = n;
11415                         has_precis = TRUE;
11416                     }
11417                     argsv = MUTABLE_SV(va_arg(*args, void*));
11418                     eptr = SvPV_const(argsv, elen);
11419                     if (DO_UTF8(argsv))
11420                         is_utf8 = TRUE;
11421                     goto string;
11422                 }
11423                 else if (n==2 || n==3) {        /* HEKf */
11424                     HEK * const hek = va_arg(*args, HEK *);
11425                     eptr = HEK_KEY(hek);
11426                     elen = HEK_LEN(hek);
11427                     if (HEK_UTF8(hek)) is_utf8 = TRUE;
11428                     if (n==3) precis = 256, has_precis = TRUE;
11429                     goto string;
11430                 }
11431                 else if (n) {
11432                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
11433                                      "internal %%<num>p might conflict with future printf extensions");
11434                 }
11435             }
11436             q = r; 
11437         }
11438
11439         if ( (width = expect_number(&q)) ) {
11440             if (*q == '$') {
11441                 ++q;
11442                 efix = width;
11443                 if (!no_redundant_warning)
11444                     /* I've forgotten if it's a better
11445                        micro-optimization to always set this or to
11446                        only set it if it's unset */
11447                     no_redundant_warning = TRUE;
11448             } else {
11449                 goto gotwidth;
11450             }
11451         }
11452
11453         /* FLAGS */
11454
11455         while (*q) {
11456             switch (*q) {
11457             case ' ':
11458             case '+':
11459                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
11460                     q++;
11461                 else
11462                     plus = *q++;
11463                 continue;
11464
11465             case '-':
11466                 left = TRUE;
11467                 q++;
11468                 continue;
11469
11470             case '0':
11471                 fill = *q++;
11472                 continue;
11473
11474             case '#':
11475                 alt = TRUE;
11476                 q++;
11477                 continue;
11478
11479             default:
11480                 break;
11481             }
11482             break;
11483         }
11484
11485       tryasterisk:
11486         if (*q == '*') {
11487             q++;
11488             if ( (ewix = expect_number(&q)) )
11489                 if (*q++ != '$')
11490                     goto unknown;
11491             asterisk = TRUE;
11492         }
11493         if (*q == 'v') {
11494             q++;
11495             if (vectorize)
11496                 goto unknown;
11497             if ((vectorarg = asterisk)) {
11498                 evix = ewix;
11499                 ewix = 0;
11500                 asterisk = FALSE;
11501             }
11502             vectorize = TRUE;
11503             goto tryasterisk;
11504         }
11505
11506         if (!asterisk)
11507         {
11508             if( *q == '0' )
11509                 fill = *q++;
11510             width = expect_number(&q);
11511         }
11512
11513         if (vectorize && vectorarg) {
11514             /* vectorizing, but not with the default "." */
11515             if (args)
11516                 vecsv = va_arg(*args, SV*);
11517             else if (evix) {
11518                 vecsv = (evix > 0 && evix <= svmax)
11519                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
11520             } else {
11521                 vecsv = svix < svmax
11522                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
11523             }
11524             dotstr = SvPV_const(vecsv, dotstrlen);
11525             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
11526                bad with tied or overloaded values that return UTF8.  */
11527             if (DO_UTF8(vecsv))
11528                 is_utf8 = TRUE;
11529             else if (has_utf8) {
11530                 vecsv = sv_mortalcopy(vecsv);
11531                 sv_utf8_upgrade(vecsv);
11532                 dotstr = SvPV_const(vecsv, dotstrlen);
11533                 is_utf8 = TRUE;
11534             }               
11535         }
11536
11537         if (asterisk) {
11538             if (args)
11539                 i = va_arg(*args, int);
11540             else
11541                 i = (ewix ? ewix <= svmax : svix < svmax) ?
11542                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
11543             left |= (i < 0);
11544             width = (i < 0) ? -i : i;
11545         }
11546       gotwidth:
11547
11548         /* PRECISION */
11549
11550         if (*q == '.') {
11551             q++;
11552             if (*q == '*') {
11553                 q++;
11554                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
11555                     goto unknown;
11556                 /* XXX: todo, support specified precision parameter */
11557                 if (epix)
11558                     goto unknown;
11559                 if (args)
11560                     i = va_arg(*args, int);
11561                 else
11562                     i = (ewix ? ewix <= svmax : svix < svmax)
11563                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
11564                 precis = i;
11565                 has_precis = !(i < 0);
11566             }
11567             else {
11568                 precis = 0;
11569                 while (isDIGIT(*q))
11570                     precis = precis * 10 + (*q++ - '0');
11571                 has_precis = TRUE;
11572             }
11573         }
11574
11575         if (vectorize) {
11576             if (args) {
11577                 VECTORIZE_ARGS
11578             }
11579             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
11580                 vecsv = svargs[efix ? efix-1 : svix++];
11581                 vecstr = (U8*)SvPV_const(vecsv,veclen);
11582                 vec_utf8 = DO_UTF8(vecsv);
11583
11584                 /* if this is a version object, we need to convert
11585                  * back into v-string notation and then let the
11586                  * vectorize happen normally
11587                  */
11588                 if (sv_isobject(vecsv) && sv_derived_from(vecsv, "version")) {
11589                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
11590                         Perl_ck_warner_d(aTHX_ packWARN(WARN_PRINTF),
11591                         "vector argument not supported with alpha versions");
11592                         goto vdblank;
11593                     }
11594                     vecsv = sv_newmortal();
11595                     scan_vstring((char *)vecstr, (char *)vecstr + veclen,
11596                                  vecsv);
11597                     vecstr = (U8*)SvPV_const(vecsv, veclen);
11598                     vec_utf8 = DO_UTF8(vecsv);
11599                 }
11600             }
11601             else {
11602               vdblank:
11603                 vecstr = (U8*)"";
11604                 veclen = 0;
11605             }
11606         }
11607
11608         /* SIZE */
11609
11610         switch (*q) {
11611 #ifdef WIN32
11612         case 'I':                       /* Ix, I32x, and I64x */
11613 #  ifdef USE_64_BIT_INT
11614             if (q[1] == '6' && q[2] == '4') {
11615                 q += 3;
11616                 intsize = 'q';
11617                 break;
11618             }
11619 #  endif
11620             if (q[1] == '3' && q[2] == '2') {
11621                 q += 3;
11622                 break;
11623             }
11624 #  ifdef USE_64_BIT_INT
11625             intsize = 'q';
11626 #  endif
11627             q++;
11628             break;
11629 #endif
11630 #if (IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)) || \
11631     (IVSIZE == 4 && !defined(HAS_LONG_DOUBLE))
11632         case 'L':                       /* Ld */
11633             /* FALLTHROUGH */
11634 #  ifdef USE_QUADMATH
11635         case 'Q':
11636             /* FALLTHROUGH */
11637 #  endif
11638 #  if IVSIZE >= 8
11639         case 'q':                       /* qd */
11640 #  endif
11641             intsize = 'q';
11642             q++;
11643             break;
11644 #endif
11645         case 'l':
11646             ++q;
11647 #if (IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)) || \
11648     (IVSIZE == 4 && !defined(HAS_LONG_DOUBLE))
11649             if (*q == 'l') {    /* lld, llf */
11650                 intsize = 'q';
11651                 ++q;
11652             }
11653             else
11654 #endif
11655                 intsize = 'l';
11656             break;
11657         case 'h':
11658             if (*++q == 'h') {  /* hhd, hhu */
11659                 intsize = 'c';
11660                 ++q;
11661             }
11662             else
11663                 intsize = 'h';
11664             break;
11665         case 'V':
11666         case 'z':
11667         case 't':
11668 #ifdef I_STDINT
11669         case 'j':
11670 #endif
11671             intsize = *q++;
11672             break;
11673         }
11674
11675         /* CONVERSION */
11676
11677         if (*q == '%') {
11678             eptr = q++;
11679             elen = 1;
11680             if (vectorize) {
11681                 c = '%';
11682                 goto unknown;
11683             }
11684             goto string;
11685         }
11686
11687         if (!vectorize && !args) {
11688             if (efix) {
11689                 const I32 i = efix-1;
11690                 argsv = (i >= 0 && i < svmax)
11691                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
11692             } else {
11693                 argsv = (svix >= 0 && svix < svmax)
11694                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
11695             }
11696         }
11697
11698         if (argsv && strchr("BbcDdiOopuUXx",*q)) {
11699             /* XXX va_arg(*args) case? need peek, use va_copy? */
11700             SvGETMAGIC(argsv);
11701             infnan = UNLIKELY(isinfnansv(argsv));
11702         }
11703
11704         switch (c = *q++) {
11705
11706             /* STRINGS */
11707
11708         case 'c':
11709             if (vectorize)
11710                 goto unknown;
11711             if (infnan)
11712                 Perl_croak(aTHX_ "Cannot printf %"NVgf" with '%c'",
11713                            /* no va_arg() case */
11714                            SvNV_nomg(argsv), (int)c);
11715             uv = (args) ? va_arg(*args, int) : SvIV_nomg(argsv);
11716             if ((uv > 255 ||
11717                  (!UVCHR_IS_INVARIANT(uv) && SvUTF8(sv)))
11718                 && !IN_BYTES) {
11719                 eptr = (char*)utf8buf;
11720                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
11721                 is_utf8 = TRUE;
11722             }
11723             else {
11724                 c = (char)uv;
11725                 eptr = &c;
11726                 elen = 1;
11727             }
11728             goto string;
11729
11730         case 's':
11731             if (vectorize)
11732                 goto unknown;
11733             if (args) {
11734                 eptr = va_arg(*args, char*);
11735                 if (eptr)
11736                     elen = strlen(eptr);
11737                 else {
11738                     eptr = (char *)nullstr;
11739                     elen = sizeof nullstr - 1;
11740                 }
11741             }
11742             else {
11743                 eptr = SvPV_const(argsv, elen);
11744                 if (DO_UTF8(argsv)) {
11745                     STRLEN old_precis = precis;
11746                     if (has_precis && precis < elen) {
11747                         STRLEN ulen = sv_or_pv_len_utf8(argsv, eptr, elen);
11748                         STRLEN p = precis > ulen ? ulen : precis;
11749                         precis = sv_or_pv_pos_u2b(argsv, eptr, p, 0);
11750                                                         /* sticks at end */
11751                     }
11752                     if (width) { /* fudge width (can't fudge elen) */
11753                         if (has_precis && precis < elen)
11754                             width += precis - old_precis;
11755                         else
11756                             width +=
11757                                 elen - sv_or_pv_len_utf8(argsv,eptr,elen);
11758                     }
11759                     is_utf8 = TRUE;
11760                 }
11761             }
11762
11763         string:
11764             if (has_precis && precis < elen)
11765                 elen = precis;
11766             break;
11767
11768             /* INTEGERS */
11769
11770         case 'p':
11771             if (infnan) {
11772                 goto floating_point;
11773             }
11774             if (alt || vectorize)
11775                 goto unknown;
11776             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
11777             base = 16;
11778             goto integer;
11779
11780         case 'D':
11781 #ifdef IV_IS_QUAD
11782             intsize = 'q';
11783 #else
11784             intsize = 'l';
11785 #endif
11786             /* FALLTHROUGH */
11787         case 'd':
11788         case 'i':
11789             if (infnan) {
11790                 goto floating_point;
11791             }
11792             if (vectorize) {
11793                 STRLEN ulen;
11794                 if (!veclen)
11795                     continue;
11796                 if (vec_utf8)
11797                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11798                                         UTF8_ALLOW_ANYUV);
11799                 else {
11800                     uv = *vecstr;
11801                     ulen = 1;
11802                 }
11803                 vecstr += ulen;
11804                 veclen -= ulen;
11805                 if (plus)
11806                      esignbuf[esignlen++] = plus;
11807             }
11808             else if (args) {
11809                 switch (intsize) {
11810                 case 'c':       iv = (char)va_arg(*args, int); break;
11811                 case 'h':       iv = (short)va_arg(*args, int); break;
11812                 case 'l':       iv = va_arg(*args, long); break;
11813                 case 'V':       iv = va_arg(*args, IV); break;
11814                 case 'z':       iv = va_arg(*args, SSize_t); break;
11815 #ifdef HAS_PTRDIFF_T
11816                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
11817 #endif
11818                 default:        iv = va_arg(*args, int); break;
11819 #ifdef I_STDINT
11820                 case 'j':       iv = va_arg(*args, intmax_t); break;
11821 #endif
11822                 case 'q':
11823 #if IVSIZE >= 8
11824                                 iv = va_arg(*args, Quad_t); break;
11825 #else
11826                                 goto unknown;
11827 #endif
11828                 }
11829             }
11830             else {
11831                 IV tiv = SvIV_nomg(argsv); /* work around GCC bug #13488 */
11832                 switch (intsize) {
11833                 case 'c':       iv = (char)tiv; break;
11834                 case 'h':       iv = (short)tiv; break;
11835                 case 'l':       iv = (long)tiv; break;
11836                 case 'V':
11837                 default:        iv = tiv; break;
11838                 case 'q':
11839 #if IVSIZE >= 8
11840                                 iv = (Quad_t)tiv; break;
11841 #else
11842                                 goto unknown;
11843 #endif
11844                 }
11845             }
11846             if ( !vectorize )   /* we already set uv above */
11847             {
11848                 if (iv >= 0) {
11849                     uv = iv;
11850                     if (plus)
11851                         esignbuf[esignlen++] = plus;
11852                 }
11853                 else {
11854                     uv = -iv;
11855                     esignbuf[esignlen++] = '-';
11856                 }
11857             }
11858             base = 10;
11859             goto integer;
11860
11861         case 'U':
11862 #ifdef IV_IS_QUAD
11863             intsize = 'q';
11864 #else
11865             intsize = 'l';
11866 #endif
11867             /* FALLTHROUGH */
11868         case 'u':
11869             base = 10;
11870             goto uns_integer;
11871
11872         case 'B':
11873         case 'b':
11874             base = 2;
11875             goto uns_integer;
11876
11877         case 'O':
11878 #ifdef IV_IS_QUAD
11879             intsize = 'q';
11880 #else
11881             intsize = 'l';
11882 #endif
11883             /* FALLTHROUGH */
11884         case 'o':
11885             base = 8;
11886             goto uns_integer;
11887
11888         case 'X':
11889         case 'x':
11890             base = 16;
11891
11892         uns_integer:
11893             if (infnan) {
11894                 goto floating_point;
11895             }
11896             if (vectorize) {
11897                 STRLEN ulen;
11898         vector:
11899                 if (!veclen)
11900                     continue;
11901                 if (vec_utf8)
11902                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11903                                         UTF8_ALLOW_ANYUV);
11904                 else {
11905                     uv = *vecstr;
11906                     ulen = 1;
11907                 }
11908                 vecstr += ulen;
11909                 veclen -= ulen;
11910             }
11911             else if (args) {
11912                 switch (intsize) {
11913                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
11914                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
11915                 case 'l':  uv = va_arg(*args, unsigned long); break;
11916                 case 'V':  uv = va_arg(*args, UV); break;
11917                 case 'z':  uv = va_arg(*args, Size_t); break;
11918 #ifdef HAS_PTRDIFF_T
11919                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
11920 #endif
11921 #ifdef I_STDINT
11922                 case 'j':  uv = va_arg(*args, uintmax_t); break;
11923 #endif
11924                 default:   uv = va_arg(*args, unsigned); break;
11925                 case 'q':
11926 #if IVSIZE >= 8
11927                            uv = va_arg(*args, Uquad_t); break;
11928 #else
11929                            goto unknown;
11930 #endif
11931                 }
11932             }
11933             else {
11934                 UV tuv = SvUV_nomg(argsv); /* work around GCC bug #13488 */
11935                 switch (intsize) {
11936                 case 'c':       uv = (unsigned char)tuv; break;
11937                 case 'h':       uv = (unsigned short)tuv; break;
11938                 case 'l':       uv = (unsigned long)tuv; break;
11939                 case 'V':
11940                 default:        uv = tuv; break;
11941                 case 'q':
11942 #if IVSIZE >= 8
11943                                 uv = (Uquad_t)tuv; break;
11944 #else
11945                                 goto unknown;
11946 #endif
11947                 }
11948             }
11949
11950         integer:
11951             {
11952                 char *ptr = ebuf + sizeof ebuf;
11953                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
11954                 unsigned dig;
11955                 zeros = 0;
11956
11957                 switch (base) {
11958                 case 16:
11959                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
11960                     do {
11961                         dig = uv & 15;
11962                         *--ptr = p[dig];
11963                     } while (uv >>= 4);
11964                     if (tempalt) {
11965                         esignbuf[esignlen++] = '0';
11966                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
11967                     }
11968                     break;
11969                 case 8:
11970                     do {
11971                         dig = uv & 7;
11972                         *--ptr = '0' + dig;
11973                     } while (uv >>= 3);
11974                     if (alt && *ptr != '0')
11975                         *--ptr = '0';
11976                     break;
11977                 case 2:
11978                     do {
11979                         dig = uv & 1;
11980                         *--ptr = '0' + dig;
11981                     } while (uv >>= 1);
11982                     if (tempalt) {
11983                         esignbuf[esignlen++] = '0';
11984                         esignbuf[esignlen++] = c;
11985                     }
11986                     break;
11987                 default:                /* it had better be ten or less */
11988                     do {
11989                         dig = uv % base;
11990                         *--ptr = '0' + dig;
11991                     } while (uv /= base);
11992                     break;
11993                 }
11994                 elen = (ebuf + sizeof ebuf) - ptr;
11995                 eptr = ptr;
11996                 if (has_precis) {
11997                     if (precis > elen)
11998                         zeros = precis - elen;
11999                     else if (precis == 0 && elen == 1 && *eptr == '0'
12000                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
12001                         elen = 0;
12002
12003                 /* a precision nullifies the 0 flag. */
12004                     if (fill == '0')
12005                         fill = ' ';
12006                 }
12007             }
12008             break;
12009
12010             /* FLOATING POINT */
12011
12012         floating_point:
12013
12014         case 'F':
12015             c = 'f';            /* maybe %F isn't supported here */
12016             /* FALLTHROUGH */
12017         case 'e': case 'E':
12018         case 'f':
12019         case 'g': case 'G':
12020         case 'a': case 'A':
12021             if (vectorize)
12022                 goto unknown;
12023
12024             /* This is evil, but floating point is even more evil */
12025
12026             /* for SV-style calling, we can only get NV
12027                for C-style calling, we assume %f is double;
12028                for simplicity we allow any of %Lf, %llf, %qf for long double
12029             */
12030             switch (intsize) {
12031             case 'V':
12032 #if defined(USE_LONG_DOUBLE) || defined(USE_QUADMATH)
12033                 intsize = 'q';
12034 #endif
12035                 break;
12036 /* [perl #20339] - we should accept and ignore %lf rather than die */
12037             case 'l':
12038                 /* FALLTHROUGH */
12039             default:
12040 #if defined(USE_LONG_DOUBLE) || defined(USE_QUADMATH)
12041                 intsize = args ? 0 : 'q';
12042 #endif
12043                 break;
12044             case 'q':
12045 #if defined(HAS_LONG_DOUBLE)
12046                 break;
12047 #else
12048                 /* FALLTHROUGH */
12049 #endif
12050             case 'c':
12051             case 'h':
12052             case 'z':
12053             case 't':
12054             case 'j':
12055                 goto unknown;
12056             }
12057
12058             /* Now we need (long double) if intsize == 'q', else (double). */
12059             if (args) {
12060                 /* Note: do not pull NVs off the va_list with va_arg()
12061                  * (pull doubles instead) because if you have a build
12062                  * with long doubles, you would always be pulling long
12063                  * doubles, which would badly break anyone using only
12064                  * doubles (i.e. the majority of builds). In other
12065                  * words, you cannot mix doubles and long doubles.
12066                  * The only case where you can pull off long doubles
12067                  * is when the format specifier explicitly asks so with
12068                  * e.g. "%Lg". */
12069 #ifdef USE_QUADMATH
12070                 fv = intsize == 'q' ?
12071                     va_arg(*args, NV) : va_arg(*args, double);
12072 #elif LONG_DOUBLESIZE > DOUBLESIZE
12073                 if (intsize == 'q')
12074                     fv = va_arg(*args, long double);
12075                 else
12076                     NV_TO_FV(va_arg(*args, double), fv);
12077 #else
12078                 fv = va_arg(*args, double);
12079 #endif
12080             }
12081             else
12082             {
12083                 if (!infnan) SvGETMAGIC(argsv);
12084                 NV_TO_FV(SvNV_nomg(argsv), fv);
12085             }
12086
12087             need = 0;
12088             /* frexp() (or frexpl) has some unspecified behaviour for
12089              * nan/inf/-inf, so let's avoid calling that on non-finites. */
12090             if (isALPHA_FOLD_NE(c, 'e') && FV_ISFINITE(fv)) {
12091                 i = PERL_INT_MIN;
12092                 (void)Perl_frexp((NV)fv, &i);
12093                 if (i == PERL_INT_MIN)
12094                     Perl_die(aTHX_ "panic: frexp: %"FV_GF, fv);
12095                 /* Do not set hexfp earlier since we want to printf
12096                  * Inf/NaN for Inf/NaN, not their hexfp. */
12097                 hexfp = isALPHA_FOLD_EQ(c, 'a');
12098                 if (UNLIKELY(hexfp)) {
12099                     /* This seriously overshoots in most cases, but
12100                      * better the undershooting.  Firstly, all bytes
12101                      * of the NV are not mantissa, some of them are
12102                      * exponent.  Secondly, for the reasonably common
12103                      * long doubles case, the "80-bit extended", two
12104                      * or six bytes of the NV are unused. */
12105                     need +=
12106                         (fv < 0) ? 1 : 0 + /* possible unary minus */
12107                         2 + /* "0x" */
12108                         1 + /* the very unlikely carry */
12109                         1 + /* "1" */
12110                         1 + /* "." */
12111                         2 * NVSIZE + /* 2 hexdigits for each byte */
12112                         2 + /* "p+" */
12113                         6 + /* exponent: sign, plus up to 16383 (quad fp) */
12114                         1;   /* \0 */
12115 #ifdef LONGDOUBLE_DOUBLEDOUBLE
12116                     /* However, for the "double double", we need more.
12117                      * Since each double has their own exponent, the
12118                      * doubles may float (haha) rather far from each
12119                      * other, and the number of required bits is much
12120                      * larger, up to total of DOUBLEDOUBLE_MAXBITS bits.
12121                      * See the definition of DOUBLEDOUBLE_MAXBITS.
12122                      *
12123                      * Need 2 hexdigits for each byte. */
12124                     need += (DOUBLEDOUBLE_MAXBITS/8 + 1) * 2;
12125                     /* the size for the exponent already added */
12126 #endif
12127 #ifdef USE_LOCALE_NUMERIC
12128                         STORE_LC_NUMERIC_SET_TO_NEEDED();
12129                         if (PL_numeric_radix_sv && IN_LC(LC_NUMERIC))
12130                             need += SvLEN(PL_numeric_radix_sv);
12131                         RESTORE_LC_NUMERIC();
12132 #endif
12133                 }
12134                 else if (i > 0) {
12135                     need = BIT_DIGITS(i);
12136                 } /* if i < 0, the number of digits is hard to predict. */
12137             }
12138             need += has_precis ? precis : 6; /* known default */
12139
12140             if (need < width)
12141                 need = width;
12142
12143 #ifdef HAS_LDBL_SPRINTF_BUG
12144             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
12145                with sfio - Allen <allens@cpan.org> */
12146
12147 #  ifdef DBL_MAX
12148 #    define MY_DBL_MAX DBL_MAX
12149 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
12150 #    if DOUBLESIZE >= 8
12151 #      define MY_DBL_MAX 1.7976931348623157E+308L
12152 #    else
12153 #      define MY_DBL_MAX 3.40282347E+38L
12154 #    endif
12155 #  endif
12156
12157 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
12158 #    define MY_DBL_MAX_BUG 1L
12159 #  else
12160 #    define MY_DBL_MAX_BUG MY_DBL_MAX
12161 #  endif
12162
12163 #  ifdef DBL_MIN
12164 #    define MY_DBL_MIN DBL_MIN
12165 #  else  /* XXX guessing! -Allen */
12166 #    if DOUBLESIZE >= 8
12167 #      define MY_DBL_MIN 2.2250738585072014E-308L
12168 #    else
12169 #      define MY_DBL_MIN 1.17549435E-38L
12170 #    endif
12171 #  endif
12172
12173             if ((intsize == 'q') && (c == 'f') &&
12174                 ((fv < MY_DBL_MAX_BUG) && (fv > -MY_DBL_MAX_BUG)) &&
12175                 (need < DBL_DIG)) {
12176                 /* it's going to be short enough that
12177                  * long double precision is not needed */
12178
12179                 if ((fv <= 0L) && (fv >= -0L))
12180                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
12181                 else {
12182                     /* would use Perl_fp_class as a double-check but not
12183                      * functional on IRIX - see perl.h comments */
12184
12185                     if ((fv >= MY_DBL_MIN) || (fv <= -MY_DBL_MIN)) {
12186                         /* It's within the range that a double can represent */
12187 #if defined(DBL_MAX) && !defined(DBL_MIN)
12188                         if ((fv >= ((long double)1/DBL_MAX)) ||
12189                             (fv <= (-(long double)1/DBL_MAX)))
12190 #endif
12191                         fix_ldbl_sprintf_bug = TRUE;
12192                     }
12193                 }
12194                 if (fix_ldbl_sprintf_bug == TRUE) {
12195                     double temp;
12196
12197                     intsize = 0;
12198                     temp = (double)fv;
12199                     fv = (NV)temp;
12200                 }
12201             }
12202
12203 #  undef MY_DBL_MAX
12204 #  undef MY_DBL_MAX_BUG
12205 #  undef MY_DBL_MIN
12206
12207 #endif /* HAS_LDBL_SPRINTF_BUG */
12208
12209             need += 20; /* fudge factor */
12210             if (PL_efloatsize < need) {
12211                 Safefree(PL_efloatbuf);
12212                 PL_efloatsize = need + 20; /* more fudge */
12213                 Newx(PL_efloatbuf, PL_efloatsize, char);
12214                 PL_efloatbuf[0] = '\0';
12215             }
12216
12217             if ( !(width || left || plus || alt) && fill != '0'
12218                  && has_precis && intsize != 'q'        /* Shortcuts */
12219                  && LIKELY(!Perl_isinfnan((NV)fv)) ) {
12220                 /* See earlier comment about buggy Gconvert when digits,
12221                    aka precis is 0  */
12222                 if ( c == 'g' && precis ) {
12223                     STORE_LC_NUMERIC_SET_TO_NEEDED();
12224                     SNPRINTF_G(fv, PL_efloatbuf, PL_efloatsize, precis);
12225                     /* May return an empty string for digits==0 */
12226                     if (*PL_efloatbuf) {
12227                         elen = strlen(PL_efloatbuf);
12228                         goto float_converted;
12229                     }
12230                 } else if ( c == 'f' && !precis ) {
12231                     if ((eptr = F0convert(fv, ebuf + sizeof ebuf, &elen)))
12232                         break;
12233                 }
12234             }
12235
12236             if (UNLIKELY(hexfp)) {
12237                 /* Hexadecimal floating point. */
12238                 char* p = PL_efloatbuf;
12239                 U8 vhex[VHEX_SIZE];
12240                 U8* v = vhex; /* working pointer to vhex */
12241                 U8* vend; /* pointer to one beyond last digit of vhex */
12242                 U8* vfnz = NULL; /* first non-zero */
12243                 const bool lower = (c == 'a');
12244                 /* At output the values of vhex (up to vend) will
12245                  * be mapped through the xdig to get the actual
12246                  * human-readable xdigits. */
12247                 const char* xdig = PL_hexdigit;
12248                 int zerotail = 0; /* how many extra zeros to append */
12249                 int exponent = 0; /* exponent of the floating point input */
12250
12251                 /* XXX: denormals, NaN, Inf.
12252                  *
12253                  * For example with denormals, (assuming the vanilla
12254                  * 64-bit double): the exponent is zero. 1xp-1074 is
12255                  * the smallest denormal and the smallest double, it
12256                  * should be output as 0x0.0000000000001p-1022 to
12257                  * match its internal structure. */
12258
12259                 /* Note: fv can be (and often is) long double.
12260                  * Here it is explicitly cast to NV. */
12261                 vend = S_hextract(aTHX_ (NV)fv, &exponent, vhex, NULL);
12262                 S_hextract(aTHX_ (NV)fv, &exponent, vhex, vend);
12263
12264 #if NVSIZE > DOUBLESIZE
12265 #  ifdef HEXTRACT_HAS_IMPLICIT_BIT
12266                 /* In this case there is an implicit bit,
12267                  * and therefore the exponent is shifted shift by one. */
12268                 exponent--;
12269 #  else
12270                 /* In this case there is no implicit bit,
12271                  * and the exponent is shifted by the first xdigit. */
12272                 exponent -= 4;
12273 #  endif
12274 #endif
12275
12276                 if (fv < 0)
12277                     *p++ = '-';
12278                 else if (plus)
12279                     *p++ = plus;
12280                 *p++ = '0';
12281                 if (lower) {
12282                     *p++ = 'x';
12283                 }
12284                 else {
12285                     *p++ = 'X';
12286                     xdig += 16; /* Use uppercase hex. */
12287                 }
12288
12289                 /* Find the first non-zero xdigit. */
12290                 for (v = vhex; v < vend; v++) {
12291                     if (*v) {
12292                         vfnz = v;
12293                         break;
12294                     }
12295                 }
12296
12297                 if (vfnz) {
12298                     U8* vlnz = NULL; /* The last non-zero. */
12299
12300                     /* Find the last non-zero xdigit. */
12301                     for (v = vend - 1; v >= vhex; v--) {
12302                         if (*v) {
12303                             vlnz = v;
12304                             break;
12305                         }
12306                     }
12307
12308 #if NVSIZE == DOUBLESIZE
12309                     if (fv != 0.0)
12310                         exponent--;
12311 #endif
12312
12313                     if (precis > 0) {
12314                         v = vhex + precis + 1;
12315                         if (v < vend) {
12316                             /* Round away from zero: if the tail
12317                              * beyond the precis xdigits is equal to
12318                              * or greater than 0x8000... */
12319                             bool round = *v > 0x8;
12320                             if (!round && *v == 0x8) {
12321                                 for (v++; v < vend; v++) {
12322                                     if (*v) {
12323                                         round = TRUE;
12324                                         break;
12325                                     }
12326                                 }
12327                             }
12328                             if (round) {
12329                                 for (v = vhex + precis; v >= vhex; v--) {
12330                                     if (*v < 0xF) {
12331                                         (*v)++;
12332                                         break;
12333                                     }
12334                                     *v = 0;
12335                                     if (v == vhex) {
12336                                         /* If the carry goes all the way to
12337                                          * the front, we need to output
12338                                          * a single '1'. This goes against
12339                                          * the "xdigit and then radix"
12340                                          * but since this is "cannot happen"
12341                                          * category, that is probably good. */
12342                                         *p++ = xdig[1];
12343                                     }
12344                                 }
12345                             }
12346                             /* The new effective "last non zero". */
12347                             vlnz = vhex + precis;
12348                         }
12349                         else {
12350                             zerotail = precis - (vlnz - vhex);
12351                         }
12352                     }
12353
12354                     v = vhex;
12355                     *p++ = xdig[*v++];
12356
12357                     /* The radix is always output after the first
12358                      * non-zero xdigit, or if alt.  */
12359                     if (vfnz < vlnz || alt) {
12360 #ifndef USE_LOCALE_NUMERIC
12361                         *p++ = '.';
12362 #else
12363                         STORE_LC_NUMERIC_SET_TO_NEEDED();
12364                         if (PL_numeric_radix_sv && IN_LC(LC_NUMERIC)) {
12365                             STRLEN n;
12366                             const char* r = SvPV(PL_numeric_radix_sv, n);
12367                             Copy(r, p, n, char);
12368                             p += n;
12369                         }
12370                         else {
12371                             *p++ = '.';
12372                         }
12373                         RESTORE_LC_NUMERIC();
12374 #endif
12375                     }
12376
12377                     while (v <= vlnz)
12378                         *p++ = xdig[*v++];
12379
12380                     while (zerotail--)
12381                         *p++ = '0';
12382                 }
12383                 else {
12384                     *p++ = '0';
12385                     exponent = 0;
12386                 }
12387
12388                 elen = p - PL_efloatbuf;
12389                 elen += my_snprintf(p, PL_efloatsize - elen,
12390                                     "%c%+d", lower ? 'p' : 'P',
12391                                     exponent);
12392
12393                 if (elen < width) {
12394                     if (left) {
12395                         /* Pad the back with spaces. */
12396                         memset(PL_efloatbuf + elen, ' ', width - elen);
12397                     }
12398                     else if (fill == '0') {
12399                         /* Insert the zeros between the "0x" and
12400                          * the digits, otherwise we end up with
12401                          * "0000xHHH..." */
12402                         STRLEN nzero = width - elen;
12403                         char* zerox = PL_efloatbuf + 2;
12404                         Move(zerox, zerox + nzero,  elen - 2, char);
12405                         memset(zerox, fill, nzero);
12406                     }
12407                     else {
12408                         /* Move it to the right. */
12409                         Move(PL_efloatbuf, PL_efloatbuf + width - elen,
12410                              elen, char);
12411                         /* Pad the front with spaces. */
12412                         memset(PL_efloatbuf, ' ', width - elen);
12413                     }
12414                     elen = width;
12415                 }
12416             }
12417             else
12418                 elen = S_infnan_2pv(fv, PL_efloatbuf, PL_efloatsize);
12419
12420             if (elen == 0) {
12421                 char *ptr = ebuf + sizeof ebuf;
12422                 *--ptr = '\0';
12423                 *--ptr = c;
12424 #if defined(USE_QUADMATH)
12425                 if (intsize == 'q') {
12426                     /* "g" -> "Qg" */
12427                     *--ptr = 'Q';
12428                 }
12429                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
12430 #elif defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
12431                 /* Note that this is HAS_LONG_DOUBLE and PERL_PRIfldbl,
12432                  * not USE_LONG_DOUBLE and NVff.  In other words,
12433                  * this needs to work without USE_LONG_DOUBLE. */
12434                 if (intsize == 'q') {
12435                     /* Copy the one or more characters in a long double
12436                      * format before the 'base' ([efgEFG]) character to
12437                      * the format string. */
12438                     static char const ldblf[] = PERL_PRIfldbl;
12439                     char const *p = ldblf + sizeof(ldblf) - 3;
12440                     while (p >= ldblf) { *--ptr = *p--; }
12441                 }
12442 #endif
12443                 if (has_precis) {
12444                     base = precis;
12445                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
12446                     *--ptr = '.';
12447                 }
12448                 if (width) {
12449                     base = width;
12450                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
12451                 }
12452                 if (fill == '0')
12453                     *--ptr = fill;
12454                 if (left)
12455                     *--ptr = '-';
12456                 if (plus)
12457                     *--ptr = plus;
12458                 if (alt)
12459                     *--ptr = '#';
12460                 *--ptr = '%';
12461
12462                 /* No taint.  Otherwise we are in the strange situation
12463                  * where printf() taints but print($float) doesn't.
12464                  * --jhi */
12465
12466                 STORE_LC_NUMERIC_SET_TO_NEEDED();
12467
12468                 /* hopefully the above makes ptr a very constrained format
12469                  * that is safe to use, even though it's not literal */
12470                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
12471 #ifdef USE_QUADMATH
12472                 {
12473                     const char* qfmt = quadmath_format_single(ptr);
12474                     if (!qfmt)
12475                         Perl_croak_nocontext("panic: quadmath invalid format \"%s\"", ptr);
12476                     elen = quadmath_snprintf(PL_efloatbuf, PL_efloatsize,
12477                                              qfmt, fv);
12478                     if ((IV)elen == -1)
12479                         Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s|'", qfmt);
12480                     if (qfmt != ptr)
12481                         Safefree(qfmt);
12482                 }
12483 #elif defined(HAS_LONG_DOUBLE)
12484                 elen = ((intsize == 'q')
12485                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, fv)
12486                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)fv));
12487 #else
12488                 elen = my_sprintf(PL_efloatbuf, ptr, fv);
12489 #endif
12490                 GCC_DIAG_RESTORE;
12491             }
12492
12493         float_converted:
12494             eptr = PL_efloatbuf;
12495             assert((IV)elen > 0); /* here zero elen is bad */
12496
12497 #ifdef USE_LOCALE_NUMERIC
12498             /* If the decimal point character in the string is UTF-8, make the
12499              * output utf8 */
12500             if (PL_numeric_radix_sv && SvUTF8(PL_numeric_radix_sv)
12501                 && instr(eptr, SvPVX_const(PL_numeric_radix_sv)))
12502             {
12503                 is_utf8 = TRUE;
12504             }
12505 #endif
12506
12507             break;
12508
12509             /* SPECIAL */
12510
12511         case 'n':
12512             if (vectorize)
12513                 goto unknown;
12514             i = SvCUR(sv) - origlen;
12515             if (args) {
12516                 switch (intsize) {
12517                 case 'c':       *(va_arg(*args, char*)) = i; break;
12518                 case 'h':       *(va_arg(*args, short*)) = i; break;
12519                 default:        *(va_arg(*args, int*)) = i; break;
12520                 case 'l':       *(va_arg(*args, long*)) = i; break;
12521                 case 'V':       *(va_arg(*args, IV*)) = i; break;
12522                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
12523 #ifdef HAS_PTRDIFF_T
12524                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
12525 #endif
12526 #ifdef I_STDINT
12527                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
12528 #endif
12529                 case 'q':
12530 #if IVSIZE >= 8
12531                                 *(va_arg(*args, Quad_t*)) = i; break;
12532 #else
12533                                 goto unknown;
12534 #endif
12535                 }
12536             }
12537             else
12538                 sv_setuv_mg(argsv, has_utf8 ? (UV)sv_len_utf8(sv) : (UV)i);
12539             continue;   /* not "break" */
12540
12541             /* UNKNOWN */
12542
12543         default:
12544       unknown:
12545             if (!args
12546                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
12547                 && ckWARN(WARN_PRINTF))
12548             {
12549                 SV * const msg = sv_newmortal();
12550                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
12551                           (PL_op->op_type == OP_PRTF) ? "" : "s");
12552                 if (fmtstart < patend) {
12553                     const char * const fmtend = q < patend ? q : patend;
12554                     const char * f;
12555                     sv_catpvs(msg, "\"%");
12556                     for (f = fmtstart; f < fmtend; f++) {
12557                         if (isPRINT(*f)) {
12558                             sv_catpvn_nomg(msg, f, 1);
12559                         } else {
12560                             Perl_sv_catpvf(aTHX_ msg,
12561                                            "\\%03"UVof, (UV)*f & 0xFF);
12562                         }
12563                     }
12564                     sv_catpvs(msg, "\"");
12565                 } else {
12566                     sv_catpvs(msg, "end of string");
12567                 }
12568                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
12569             }
12570
12571             /* output mangled stuff ... */
12572             if (c == '\0')
12573                 --q;
12574             eptr = p;
12575             elen = q - p;
12576
12577             /* ... right here, because formatting flags should not apply */
12578             SvGROW(sv, SvCUR(sv) + elen + 1);
12579             p = SvEND(sv);
12580             Copy(eptr, p, elen, char);
12581             p += elen;
12582             *p = '\0';
12583             SvCUR_set(sv, p - SvPVX_const(sv));
12584             svix = osvix;
12585             continue;   /* not "break" */
12586         }
12587
12588         if (is_utf8 != has_utf8) {
12589             if (is_utf8) {
12590                 if (SvCUR(sv))
12591                     sv_utf8_upgrade(sv);
12592             }
12593             else {
12594                 const STRLEN old_elen = elen;
12595                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
12596                 sv_utf8_upgrade(nsv);
12597                 eptr = SvPVX_const(nsv);
12598                 elen = SvCUR(nsv);
12599
12600                 if (width) { /* fudge width (can't fudge elen) */
12601                     width += elen - old_elen;
12602                 }
12603                 is_utf8 = TRUE;
12604             }
12605         }
12606
12607         assert((IV)elen >= 0); /* here zero elen is fine */
12608         have = esignlen + zeros + elen;
12609         if (have < zeros)
12610             croak_memory_wrap();
12611
12612         need = (have > width ? have : width);
12613         gap = need - have;
12614
12615         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
12616             croak_memory_wrap();
12617         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
12618         p = SvEND(sv);
12619         if (esignlen && fill == '0') {
12620             int i;
12621             for (i = 0; i < (int)esignlen; i++)
12622                 *p++ = esignbuf[i];
12623         }
12624         if (gap && !left) {
12625             memset(p, fill, gap);
12626             p += gap;
12627         }
12628         if (esignlen && fill != '0') {
12629             int i;
12630             for (i = 0; i < (int)esignlen; i++)
12631                 *p++ = esignbuf[i];
12632         }
12633         if (zeros) {
12634             int i;
12635             for (i = zeros; i; i--)
12636                 *p++ = '0';
12637         }
12638         if (elen) {
12639             Copy(eptr, p, elen, char);
12640             p += elen;
12641         }
12642         if (gap && left) {
12643             memset(p, ' ', gap);
12644             p += gap;
12645         }
12646         if (vectorize) {
12647             if (veclen) {
12648                 Copy(dotstr, p, dotstrlen, char);
12649                 p += dotstrlen;
12650             }
12651             else
12652                 vectorize = FALSE;              /* done iterating over vecstr */
12653         }
12654         if (is_utf8)
12655             has_utf8 = TRUE;
12656         if (has_utf8)
12657             SvUTF8_on(sv);
12658         *p = '\0';
12659         SvCUR_set(sv, p - SvPVX_const(sv));
12660         if (vectorize) {
12661             esignlen = 0;
12662             goto vector;
12663         }
12664     }
12665
12666     /* Now that we've consumed all our printf format arguments (svix)
12667      * do we have things left on the stack that we didn't use?
12668      */
12669     if (!no_redundant_warning && svmax >= svix + 1 && ckWARN(WARN_REDUNDANT)) {
12670         Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
12671                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
12672     }
12673
12674     SvTAINT(sv);
12675
12676     RESTORE_LC_NUMERIC();   /* Done outside loop, so don't have to save/restore
12677                                each iteration. */
12678 }
12679
12680 /* =========================================================================
12681
12682 =head1 Cloning an interpreter
12683
12684 =cut
12685
12686 All the macros and functions in this section are for the private use of
12687 the main function, perl_clone().
12688
12689 The foo_dup() functions make an exact copy of an existing foo thingy.
12690 During the course of a cloning, a hash table is used to map old addresses
12691 to new addresses.  The table is created and manipulated with the
12692 ptr_table_* functions.
12693
12694  * =========================================================================*/
12695
12696
12697 #if defined(USE_ITHREADS)
12698
12699 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
12700 #ifndef GpREFCNT_inc
12701 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
12702 #endif
12703
12704
12705 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
12706    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
12707    If this changes, please unmerge ss_dup.
12708    Likewise, sv_dup_inc_multiple() relies on this fact.  */
12709 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
12710 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
12711 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
12712 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
12713 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
12714 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
12715 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
12716 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
12717 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
12718 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
12719 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
12720 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
12721 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
12722
12723 /* clone a parser */
12724
12725 yy_parser *
12726 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
12727 {
12728     yy_parser *parser;
12729
12730     PERL_ARGS_ASSERT_PARSER_DUP;
12731
12732     if (!proto)
12733         return NULL;
12734
12735     /* look for it in the table first */
12736     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
12737     if (parser)
12738         return parser;
12739
12740     /* create anew and remember what it is */
12741     Newxz(parser, 1, yy_parser);
12742     ptr_table_store(PL_ptr_table, proto, parser);
12743
12744     /* XXX these not yet duped */
12745     parser->old_parser = NULL;
12746     parser->stack = NULL;
12747     parser->ps = NULL;
12748     parser->stack_size = 0;
12749     /* XXX parser->stack->state = 0; */
12750
12751     /* XXX eventually, just Copy() most of the parser struct ? */
12752
12753     parser->lex_brackets = proto->lex_brackets;
12754     parser->lex_casemods = proto->lex_casemods;
12755     parser->lex_brackstack = savepvn(proto->lex_brackstack,
12756                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
12757     parser->lex_casestack = savepvn(proto->lex_casestack,
12758                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
12759     parser->lex_defer   = proto->lex_defer;
12760     parser->lex_dojoin  = proto->lex_dojoin;
12761     parser->lex_formbrack = proto->lex_formbrack;
12762     parser->lex_inpat   = proto->lex_inpat;
12763     parser->lex_inwhat  = proto->lex_inwhat;
12764     parser->lex_op      = proto->lex_op;
12765     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
12766     parser->lex_starts  = proto->lex_starts;
12767     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
12768     parser->multi_close = proto->multi_close;
12769     parser->multi_open  = proto->multi_open;
12770     parser->multi_start = proto->multi_start;
12771     parser->multi_end   = proto->multi_end;
12772     parser->preambled   = proto->preambled;
12773     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
12774     parser->linestr     = sv_dup_inc(proto->linestr, param);
12775     parser->expect      = proto->expect;
12776     parser->copline     = proto->copline;
12777     parser->last_lop_op = proto->last_lop_op;
12778     parser->lex_state   = proto->lex_state;
12779     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
12780     /* rsfp_filters entries have fake IoDIRP() */
12781     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
12782     parser->in_my       = proto->in_my;
12783     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
12784     parser->error_count = proto->error_count;
12785
12786
12787     parser->linestr     = sv_dup_inc(proto->linestr, param);
12788
12789     {
12790         char * const ols = SvPVX(proto->linestr);
12791         char * const ls  = SvPVX(parser->linestr);
12792
12793         parser->bufptr      = ls + (proto->bufptr >= ols ?
12794                                     proto->bufptr -  ols : 0);
12795         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
12796                                     proto->oldbufptr -  ols : 0);
12797         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
12798                                     proto->oldoldbufptr -  ols : 0);
12799         parser->linestart   = ls + (proto->linestart >= ols ?
12800                                     proto->linestart -  ols : 0);
12801         parser->last_uni    = ls + (proto->last_uni >= ols ?
12802                                     proto->last_uni -  ols : 0);
12803         parser->last_lop    = ls + (proto->last_lop >= ols ?
12804                                     proto->last_lop -  ols : 0);
12805
12806         parser->bufend      = ls + SvCUR(parser->linestr);
12807     }
12808
12809     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
12810
12811
12812     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
12813     Copy(proto->nexttype, parser->nexttype, 5,  I32);
12814     parser->nexttoke    = proto->nexttoke;
12815
12816     /* XXX should clone saved_curcop here, but we aren't passed
12817      * proto_perl; so do it in perl_clone_using instead */
12818
12819     return parser;
12820 }
12821
12822
12823 /* duplicate a file handle */
12824
12825 PerlIO *
12826 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
12827 {
12828     PerlIO *ret;
12829
12830     PERL_ARGS_ASSERT_FP_DUP;
12831     PERL_UNUSED_ARG(type);
12832
12833     if (!fp)
12834         return (PerlIO*)NULL;
12835
12836     /* look for it in the table first */
12837     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
12838     if (ret)
12839         return ret;
12840
12841     /* create anew and remember what it is */
12842     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
12843     ptr_table_store(PL_ptr_table, fp, ret);
12844     return ret;
12845 }
12846
12847 /* duplicate a directory handle */
12848
12849 DIR *
12850 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
12851 {
12852     DIR *ret;
12853
12854 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
12855     DIR *pwd;
12856     const Direntry_t *dirent;
12857     char smallbuf[256];
12858     char *name = NULL;
12859     STRLEN len = 0;
12860     long pos;
12861 #endif
12862
12863     PERL_UNUSED_CONTEXT;
12864     PERL_ARGS_ASSERT_DIRP_DUP;
12865
12866     if (!dp)
12867         return (DIR*)NULL;
12868
12869     /* look for it in the table first */
12870     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
12871     if (ret)
12872         return ret;
12873
12874 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
12875
12876     PERL_UNUSED_ARG(param);
12877
12878     /* create anew */
12879
12880     /* open the current directory (so we can switch back) */
12881     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
12882
12883     /* chdir to our dir handle and open the present working directory */
12884     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
12885         PerlDir_close(pwd);
12886         return (DIR *)NULL;
12887     }
12888     /* Now we should have two dir handles pointing to the same dir. */
12889
12890     /* Be nice to the calling code and chdir back to where we were. */
12891     /* XXX If this fails, then what? */
12892     PERL_UNUSED_RESULT(fchdir(my_dirfd(pwd)));
12893
12894     /* We have no need of the pwd handle any more. */
12895     PerlDir_close(pwd);
12896
12897 #ifdef DIRNAMLEN
12898 # define d_namlen(d) (d)->d_namlen
12899 #else
12900 # define d_namlen(d) strlen((d)->d_name)
12901 #endif
12902     /* Iterate once through dp, to get the file name at the current posi-
12903        tion. Then step back. */
12904     pos = PerlDir_tell(dp);
12905     if ((dirent = PerlDir_read(dp))) {
12906         len = d_namlen(dirent);
12907         if (len <= sizeof smallbuf) name = smallbuf;
12908         else Newx(name, len, char);
12909         Move(dirent->d_name, name, len, char);
12910     }
12911     PerlDir_seek(dp, pos);
12912
12913     /* Iterate through the new dir handle, till we find a file with the
12914        right name. */
12915     if (!dirent) /* just before the end */
12916         for(;;) {
12917             pos = PerlDir_tell(ret);
12918             if (PerlDir_read(ret)) continue; /* not there yet */
12919             PerlDir_seek(ret, pos); /* step back */
12920             break;
12921         }
12922     else {
12923         const long pos0 = PerlDir_tell(ret);
12924         for(;;) {
12925             pos = PerlDir_tell(ret);
12926             if ((dirent = PerlDir_read(ret))) {
12927                 if (len == (STRLEN)d_namlen(dirent)
12928                     && memEQ(name, dirent->d_name, len)) {
12929                     /* found it */
12930                     PerlDir_seek(ret, pos); /* step back */
12931                     break;
12932                 }
12933                 /* else we are not there yet; keep iterating */
12934             }
12935             else { /* This is not meant to happen. The best we can do is
12936                       reset the iterator to the beginning. */
12937                 PerlDir_seek(ret, pos0);
12938                 break;
12939             }
12940         }
12941     }
12942 #undef d_namlen
12943
12944     if (name && name != smallbuf)
12945         Safefree(name);
12946 #endif
12947
12948 #ifdef WIN32
12949     ret = win32_dirp_dup(dp, param);
12950 #endif
12951
12952     /* pop it in the pointer table */
12953     if (ret)
12954         ptr_table_store(PL_ptr_table, dp, ret);
12955
12956     return ret;
12957 }
12958
12959 /* duplicate a typeglob */
12960
12961 GP *
12962 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
12963 {
12964     GP *ret;
12965
12966     PERL_ARGS_ASSERT_GP_DUP;
12967
12968     if (!gp)
12969         return (GP*)NULL;
12970     /* look for it in the table first */
12971     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
12972     if (ret)
12973         return ret;
12974
12975     /* create anew and remember what it is */
12976     Newxz(ret, 1, GP);
12977     ptr_table_store(PL_ptr_table, gp, ret);
12978
12979     /* clone */
12980     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
12981        on Newxz() to do this for us.  */
12982     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
12983     ret->gp_io          = io_dup_inc(gp->gp_io, param);
12984     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
12985     ret->gp_av          = av_dup_inc(gp->gp_av, param);
12986     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
12987     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
12988     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
12989     ret->gp_cvgen       = gp->gp_cvgen;
12990     ret->gp_line        = gp->gp_line;
12991     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
12992     return ret;
12993 }
12994
12995 /* duplicate a chain of magic */
12996
12997 MAGIC *
12998 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
12999 {
13000     MAGIC *mgret = NULL;
13001     MAGIC **mgprev_p = &mgret;
13002
13003     PERL_ARGS_ASSERT_MG_DUP;
13004
13005     for (; mg; mg = mg->mg_moremagic) {
13006         MAGIC *nmg;
13007
13008         if ((param->flags & CLONEf_JOIN_IN)
13009                 && mg->mg_type == PERL_MAGIC_backref)
13010             /* when joining, we let the individual SVs add themselves to
13011              * backref as needed. */
13012             continue;
13013
13014         Newx(nmg, 1, MAGIC);
13015         *mgprev_p = nmg;
13016         mgprev_p = &(nmg->mg_moremagic);
13017
13018         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
13019            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
13020            from the original commit adding Perl_mg_dup() - revision 4538.
13021            Similarly there is the annotation "XXX random ptr?" next to the
13022            assignment to nmg->mg_ptr.  */
13023         *nmg = *mg;
13024
13025         /* FIXME for plugins
13026         if (nmg->mg_type == PERL_MAGIC_qr) {
13027             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
13028         }
13029         else
13030         */
13031         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
13032                           ? nmg->mg_type == PERL_MAGIC_backref
13033                                 /* The backref AV has its reference
13034                                  * count deliberately bumped by 1 */
13035                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
13036                                                     nmg->mg_obj, param))
13037                                 : sv_dup_inc(nmg->mg_obj, param)
13038                           : sv_dup(nmg->mg_obj, param);
13039
13040         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
13041             if (nmg->mg_len > 0) {
13042                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
13043                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
13044                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
13045                 {
13046                     AMT * const namtp = (AMT*)nmg->mg_ptr;
13047                     sv_dup_inc_multiple((SV**)(namtp->table),
13048                                         (SV**)(namtp->table), NofAMmeth, param);
13049                 }
13050             }
13051             else if (nmg->mg_len == HEf_SVKEY)
13052                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
13053         }
13054         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
13055             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
13056         }
13057     }
13058     return mgret;
13059 }
13060
13061 #endif /* USE_ITHREADS */
13062
13063 struct ptr_tbl_arena {
13064     struct ptr_tbl_arena *next;
13065     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
13066 };
13067
13068 /* create a new pointer-mapping table */
13069
13070 PTR_TBL_t *
13071 Perl_ptr_table_new(pTHX)
13072 {
13073     PTR_TBL_t *tbl;
13074     PERL_UNUSED_CONTEXT;
13075
13076     Newx(tbl, 1, PTR_TBL_t);
13077     tbl->tbl_max        = 511;
13078     tbl->tbl_items      = 0;
13079     tbl->tbl_arena      = NULL;
13080     tbl->tbl_arena_next = NULL;
13081     tbl->tbl_arena_end  = NULL;
13082     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
13083     return tbl;
13084 }
13085
13086 #define PTR_TABLE_HASH(ptr) \
13087   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
13088
13089 /* map an existing pointer using a table */
13090
13091 STATIC PTR_TBL_ENT_t *
13092 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
13093 {
13094     PTR_TBL_ENT_t *tblent;
13095     const UV hash = PTR_TABLE_HASH(sv);
13096
13097     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
13098
13099     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
13100     for (; tblent; tblent = tblent->next) {
13101         if (tblent->oldval == sv)
13102             return tblent;
13103     }
13104     return NULL;
13105 }
13106
13107 void *
13108 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
13109 {
13110     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
13111
13112     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
13113     PERL_UNUSED_CONTEXT;
13114
13115     return tblent ? tblent->newval : NULL;
13116 }
13117
13118 /* add a new entry to a pointer-mapping table 'tbl'.  In hash terms, 'oldsv' is
13119  * the key; 'newsv' is the value.  The names "old" and "new" are specific to
13120  * the core's typical use of ptr_tables in thread cloning. */
13121
13122 void
13123 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
13124 {
13125     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
13126
13127     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
13128     PERL_UNUSED_CONTEXT;
13129
13130     if (tblent) {
13131         tblent->newval = newsv;
13132     } else {
13133         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
13134
13135         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
13136             struct ptr_tbl_arena *new_arena;
13137
13138             Newx(new_arena, 1, struct ptr_tbl_arena);
13139             new_arena->next = tbl->tbl_arena;
13140             tbl->tbl_arena = new_arena;
13141             tbl->tbl_arena_next = new_arena->array;
13142             tbl->tbl_arena_end = C_ARRAY_END(new_arena->array);
13143         }
13144
13145         tblent = tbl->tbl_arena_next++;
13146
13147         tblent->oldval = oldsv;
13148         tblent->newval = newsv;
13149         tblent->next = tbl->tbl_ary[entry];
13150         tbl->tbl_ary[entry] = tblent;
13151         tbl->tbl_items++;
13152         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
13153             ptr_table_split(tbl);
13154     }
13155 }
13156
13157 /* double the hash bucket size of an existing ptr table */
13158
13159 void
13160 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
13161 {
13162     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
13163     const UV oldsize = tbl->tbl_max + 1;
13164     UV newsize = oldsize * 2;
13165     UV i;
13166
13167     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
13168     PERL_UNUSED_CONTEXT;
13169
13170     Renew(ary, newsize, PTR_TBL_ENT_t*);
13171     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
13172     tbl->tbl_max = --newsize;
13173     tbl->tbl_ary = ary;
13174     for (i=0; i < oldsize; i++, ary++) {
13175         PTR_TBL_ENT_t **entp = ary;
13176         PTR_TBL_ENT_t *ent = *ary;
13177         PTR_TBL_ENT_t **curentp;
13178         if (!ent)
13179             continue;
13180         curentp = ary + oldsize;
13181         do {
13182             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
13183                 *entp = ent->next;
13184                 ent->next = *curentp;
13185                 *curentp = ent;
13186             }
13187             else
13188                 entp = &ent->next;
13189             ent = *entp;
13190         } while (ent);
13191     }
13192 }
13193
13194 /* remove all the entries from a ptr table */
13195 /* Deprecated - will be removed post 5.14 */
13196
13197 void
13198 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
13199 {
13200     PERL_UNUSED_CONTEXT;
13201     if (tbl && tbl->tbl_items) {
13202         struct ptr_tbl_arena *arena = tbl->tbl_arena;
13203
13204         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
13205
13206         while (arena) {
13207             struct ptr_tbl_arena *next = arena->next;
13208
13209             Safefree(arena);
13210             arena = next;
13211         };
13212
13213         tbl->tbl_items = 0;
13214         tbl->tbl_arena = NULL;
13215         tbl->tbl_arena_next = NULL;
13216         tbl->tbl_arena_end = NULL;
13217     }
13218 }
13219
13220 /* clear and free a ptr table */
13221
13222 void
13223 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
13224 {
13225     struct ptr_tbl_arena *arena;
13226
13227     PERL_UNUSED_CONTEXT;
13228
13229     if (!tbl) {
13230         return;
13231     }
13232
13233     arena = tbl->tbl_arena;
13234
13235     while (arena) {
13236         struct ptr_tbl_arena *next = arena->next;
13237
13238         Safefree(arena);
13239         arena = next;
13240     }
13241
13242     Safefree(tbl->tbl_ary);
13243     Safefree(tbl);
13244 }
13245
13246 #if defined(USE_ITHREADS)
13247
13248 void
13249 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
13250 {
13251     PERL_ARGS_ASSERT_RVPV_DUP;
13252
13253     assert(!isREGEXP(sstr));
13254     if (SvROK(sstr)) {
13255         if (SvWEAKREF(sstr)) {
13256             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
13257             if (param->flags & CLONEf_JOIN_IN) {
13258                 /* if joining, we add any back references individually rather
13259                  * than copying the whole backref array */
13260                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
13261             }
13262         }
13263         else
13264             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
13265     }
13266     else if (SvPVX_const(sstr)) {
13267         /* Has something there */
13268         if (SvLEN(sstr)) {
13269             /* Normal PV - clone whole allocated space */
13270             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
13271             /* sstr may not be that normal, but actually copy on write.
13272                But we are a true, independent SV, so:  */
13273             SvIsCOW_off(dstr);
13274         }
13275         else {
13276             /* Special case - not normally malloced for some reason */
13277             if (isGV_with_GP(sstr)) {
13278                 /* Don't need to do anything here.  */
13279             }
13280             else if ((SvIsCOW(sstr))) {
13281                 /* A "shared" PV - clone it as "shared" PV */
13282                 SvPV_set(dstr,
13283                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
13284                                          param)));
13285             }
13286             else {
13287                 /* Some other special case - random pointer */
13288                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
13289             }
13290         }
13291     }
13292     else {
13293         /* Copy the NULL */
13294         SvPV_set(dstr, NULL);
13295     }
13296 }
13297
13298 /* duplicate a list of SVs. source and dest may point to the same memory.  */
13299 static SV **
13300 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
13301                       SSize_t items, CLONE_PARAMS *const param)
13302 {
13303     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
13304
13305     while (items-- > 0) {
13306         *dest++ = sv_dup_inc(*source++, param);
13307     }
13308
13309     return dest;
13310 }
13311
13312 /* duplicate an SV of any type (including AV, HV etc) */
13313
13314 static SV *
13315 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
13316 {
13317     dVAR;
13318     SV *dstr;
13319
13320     PERL_ARGS_ASSERT_SV_DUP_COMMON;
13321
13322     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
13323 #ifdef DEBUG_LEAKING_SCALARS_ABORT
13324         abort();
13325 #endif
13326         return NULL;
13327     }
13328     /* look for it in the table first */
13329     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
13330     if (dstr)
13331         return dstr;
13332
13333     if(param->flags & CLONEf_JOIN_IN) {
13334         /** We are joining here so we don't want do clone
13335             something that is bad **/
13336         if (SvTYPE(sstr) == SVt_PVHV) {
13337             const HEK * const hvname = HvNAME_HEK(sstr);
13338             if (hvname) {
13339                 /** don't clone stashes if they already exist **/
13340                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
13341                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
13342                 ptr_table_store(PL_ptr_table, sstr, dstr);
13343                 return dstr;
13344             }
13345         }
13346         else if (SvTYPE(sstr) == SVt_PVGV && !SvFAKE(sstr)) {
13347             HV *stash = GvSTASH(sstr);
13348             const HEK * hvname;
13349             if (stash && (hvname = HvNAME_HEK(stash))) {
13350                 /** don't clone GVs if they already exist **/
13351                 SV **svp;
13352                 stash = gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
13353                                     HEK_UTF8(hvname) ? SVf_UTF8 : 0);
13354                 svp = hv_fetch(
13355                         stash, GvNAME(sstr),
13356                         GvNAMEUTF8(sstr)
13357                             ? -GvNAMELEN(sstr)
13358                             :  GvNAMELEN(sstr),
13359                         0
13360                       );
13361                 if (svp && *svp && SvTYPE(*svp) == SVt_PVGV) {
13362                     ptr_table_store(PL_ptr_table, sstr, *svp);
13363                     return *svp;
13364                 }
13365             }
13366         }
13367     }
13368
13369     /* create anew and remember what it is */
13370     new_SV(dstr);
13371
13372 #ifdef DEBUG_LEAKING_SCALARS
13373     dstr->sv_debug_optype = sstr->sv_debug_optype;
13374     dstr->sv_debug_line = sstr->sv_debug_line;
13375     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
13376     dstr->sv_debug_parent = (SV*)sstr;
13377     FREE_SV_DEBUG_FILE(dstr);
13378     dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
13379 #endif
13380
13381     ptr_table_store(PL_ptr_table, sstr, dstr);
13382
13383     /* clone */
13384     SvFLAGS(dstr)       = SvFLAGS(sstr);
13385     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
13386     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
13387
13388 #ifdef DEBUGGING
13389     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
13390         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
13391                       (void*)PL_watch_pvx, SvPVX_const(sstr));
13392 #endif
13393
13394     /* don't clone objects whose class has asked us not to */
13395     if (SvOBJECT(sstr)
13396      && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE))
13397     {
13398         SvFLAGS(dstr) = 0;
13399         return dstr;
13400     }
13401
13402     switch (SvTYPE(sstr)) {
13403     case SVt_NULL:
13404         SvANY(dstr)     = NULL;
13405         break;
13406     case SVt_IV:
13407         SET_SVANY_FOR_BODYLESS_IV(dstr);
13408         if(SvROK(sstr)) {
13409             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
13410         } else {
13411             SvIV_set(dstr, SvIVX(sstr));
13412         }
13413         break;
13414     case SVt_NV:
13415 #if NVSIZE <= IVSIZE
13416         SET_SVANY_FOR_BODYLESS_NV(dstr);
13417 #else
13418         SvANY(dstr)     = new_XNV();
13419 #endif
13420         SvNV_set(dstr, SvNVX(sstr));
13421         break;
13422     default:
13423         {
13424             /* These are all the types that need complex bodies allocating.  */
13425             void *new_body;
13426             const svtype sv_type = SvTYPE(sstr);
13427             const struct body_details *const sv_type_details
13428                 = bodies_by_type + sv_type;
13429
13430             switch (sv_type) {
13431             default:
13432                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
13433                 break;
13434
13435             case SVt_PVGV:
13436             case SVt_PVIO:
13437             case SVt_PVFM:
13438             case SVt_PVHV:
13439             case SVt_PVAV:
13440             case SVt_PVCV:
13441             case SVt_PVLV:
13442             case SVt_REGEXP:
13443             case SVt_PVMG:
13444             case SVt_PVNV:
13445             case SVt_PVIV:
13446             case SVt_INVLIST:
13447             case SVt_PV:
13448                 assert(sv_type_details->body_size);
13449                 if (sv_type_details->arena) {
13450                     new_body_inline(new_body, sv_type);
13451                     new_body
13452                         = (void*)((char*)new_body - sv_type_details->offset);
13453                 } else {
13454                     new_body = new_NOARENA(sv_type_details);
13455                 }
13456             }
13457             assert(new_body);
13458             SvANY(dstr) = new_body;
13459
13460 #ifndef PURIFY
13461             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
13462                  ((char*)SvANY(dstr)) + sv_type_details->offset,
13463                  sv_type_details->copy, char);
13464 #else
13465             Copy(((char*)SvANY(sstr)),
13466                  ((char*)SvANY(dstr)),
13467                  sv_type_details->body_size + sv_type_details->offset, char);
13468 #endif
13469
13470             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
13471                 && !isGV_with_GP(dstr)
13472                 && !isREGEXP(dstr)
13473                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
13474                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
13475
13476             /* The Copy above means that all the source (unduplicated) pointers
13477                are now in the destination.  We can check the flags and the
13478                pointers in either, but it's possible that there's less cache
13479                missing by always going for the destination.
13480                FIXME - instrument and check that assumption  */
13481             if (sv_type >= SVt_PVMG) {
13482                 if (SvMAGIC(dstr))
13483                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
13484                 if (SvOBJECT(dstr) && SvSTASH(dstr))
13485                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
13486                 else SvSTASH_set(dstr, 0); /* don't copy DESTROY cache */
13487             }
13488
13489             /* The cast silences a GCC warning about unhandled types.  */
13490             switch ((int)sv_type) {
13491             case SVt_PV:
13492                 break;
13493             case SVt_PVIV:
13494                 break;
13495             case SVt_PVNV:
13496                 break;
13497             case SVt_PVMG:
13498                 break;
13499             case SVt_REGEXP:
13500               duprex:
13501                 /* FIXME for plugins */
13502                 dstr->sv_u.svu_rx = ((REGEXP *)dstr)->sv_any;
13503                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
13504                 break;
13505             case SVt_PVLV:
13506                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
13507                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
13508                     LvTARG(dstr) = dstr;
13509                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
13510                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
13511                 else
13512                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
13513                 if (isREGEXP(sstr)) goto duprex;
13514             case SVt_PVGV:
13515                 /* non-GP case already handled above */
13516                 if(isGV_with_GP(sstr)) {
13517                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
13518                     /* Don't call sv_add_backref here as it's going to be
13519                        created as part of the magic cloning of the symbol
13520                        table--unless this is during a join and the stash
13521                        is not actually being cloned.  */
13522                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
13523                        at the point of this comment.  */
13524                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
13525                     if (param->flags & CLONEf_JOIN_IN)
13526                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
13527                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
13528                     (void)GpREFCNT_inc(GvGP(dstr));
13529                 }
13530                 break;
13531             case SVt_PVIO:
13532                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
13533                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
13534                     /* I have no idea why fake dirp (rsfps)
13535                        should be treated differently but otherwise
13536                        we end up with leaks -- sky*/
13537                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
13538                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
13539                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
13540                 } else {
13541                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
13542                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
13543                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
13544                     if (IoDIRP(dstr)) {
13545                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
13546                     } else {
13547                         NOOP;
13548                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
13549                     }
13550                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
13551                 }
13552                 if (IoOFP(dstr) == IoIFP(sstr))
13553                     IoOFP(dstr) = IoIFP(dstr);
13554                 else
13555                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
13556                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
13557                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
13558                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
13559                 break;
13560             case SVt_PVAV:
13561                 /* avoid cloning an empty array */
13562                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
13563                     SV **dst_ary, **src_ary;
13564                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
13565
13566                     src_ary = AvARRAY((const AV *)sstr);
13567                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
13568                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
13569                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
13570                     AvALLOC((const AV *)dstr) = dst_ary;
13571                     if (AvREAL((const AV *)sstr)) {
13572                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
13573                                                       param);
13574                     }
13575                     else {
13576                         while (items-- > 0)
13577                             *dst_ary++ = sv_dup(*src_ary++, param);
13578                     }
13579                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
13580                     while (items-- > 0) {
13581                         *dst_ary++ = &PL_sv_undef;
13582                     }
13583                 }
13584                 else {
13585                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
13586                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
13587                     AvMAX(  (const AV *)dstr)   = -1;
13588                     AvFILLp((const AV *)dstr)   = -1;
13589                 }
13590                 break;
13591             case SVt_PVHV:
13592                 if (HvARRAY((const HV *)sstr)) {
13593                     STRLEN i = 0;
13594                     const bool sharekeys = !!HvSHAREKEYS(sstr);
13595                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
13596                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
13597                     char *darray;
13598                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
13599                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
13600                         char);
13601                     HvARRAY(dstr) = (HE**)darray;
13602                     while (i <= sxhv->xhv_max) {
13603                         const HE * const source = HvARRAY(sstr)[i];
13604                         HvARRAY(dstr)[i] = source
13605                             ? he_dup(source, sharekeys, param) : 0;
13606                         ++i;
13607                     }
13608                     if (SvOOK(sstr)) {
13609                         const struct xpvhv_aux * const saux = HvAUX(sstr);
13610                         struct xpvhv_aux * const daux = HvAUX(dstr);
13611                         /* This flag isn't copied.  */
13612                         SvOOK_on(dstr);
13613
13614                         if (saux->xhv_name_count) {
13615                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
13616                             const I32 count
13617                              = saux->xhv_name_count < 0
13618                                 ? -saux->xhv_name_count
13619                                 :  saux->xhv_name_count;
13620                             HEK **shekp = sname + count;
13621                             HEK **dhekp;
13622                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
13623                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
13624                             while (shekp-- > sname) {
13625                                 dhekp--;
13626                                 *dhekp = hek_dup(*shekp, param);
13627                             }
13628                         }
13629                         else {
13630                             daux->xhv_name_u.xhvnameu_name
13631                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
13632                                           param);
13633                         }
13634                         daux->xhv_name_count = saux->xhv_name_count;
13635
13636                         daux->xhv_fill_lazy = saux->xhv_fill_lazy;
13637                         daux->xhv_aux_flags = saux->xhv_aux_flags;
13638 #ifdef PERL_HASH_RANDOMIZE_KEYS
13639                         daux->xhv_rand = saux->xhv_rand;
13640                         daux->xhv_last_rand = saux->xhv_last_rand;
13641 #endif
13642                         daux->xhv_riter = saux->xhv_riter;
13643                         daux->xhv_eiter = saux->xhv_eiter
13644                             ? he_dup(saux->xhv_eiter,
13645                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
13646                         /* backref array needs refcnt=2; see sv_add_backref */
13647                         daux->xhv_backreferences =
13648                             (param->flags & CLONEf_JOIN_IN)
13649                                 /* when joining, we let the individual GVs and
13650                                  * CVs add themselves to backref as
13651                                  * needed. This avoids pulling in stuff
13652                                  * that isn't required, and simplifies the
13653                                  * case where stashes aren't cloned back
13654                                  * if they already exist in the parent
13655                                  * thread */
13656                             ? NULL
13657                             : saux->xhv_backreferences
13658                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
13659                                     ? MUTABLE_AV(SvREFCNT_inc(
13660                                           sv_dup_inc((const SV *)
13661                                             saux->xhv_backreferences, param)))
13662                                     : MUTABLE_AV(sv_dup((const SV *)
13663                                             saux->xhv_backreferences, param))
13664                                 : 0;
13665
13666                         daux->xhv_mro_meta = saux->xhv_mro_meta
13667                             ? mro_meta_dup(saux->xhv_mro_meta, param)
13668                             : 0;
13669
13670                         /* Record stashes for possible cloning in Perl_clone(). */
13671                         if (HvNAME(sstr))
13672                             av_push(param->stashes, dstr);
13673                     }
13674                 }
13675                 else
13676                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
13677                 break;
13678             case SVt_PVCV:
13679                 if (!(param->flags & CLONEf_COPY_STACKS)) {
13680                     CvDEPTH(dstr) = 0;
13681                 }
13682                 /* FALLTHROUGH */
13683             case SVt_PVFM:
13684                 /* NOTE: not refcounted */
13685                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
13686                     hv_dup(CvSTASH(dstr), param);
13687                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
13688                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
13689                 if (!CvISXSUB(dstr)) {
13690                     OP_REFCNT_LOCK;
13691                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
13692                     OP_REFCNT_UNLOCK;
13693                     CvSLABBED_off(dstr);
13694                 } else if (CvCONST(dstr)) {
13695                     CvXSUBANY(dstr).any_ptr =
13696                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
13697                 }
13698                 assert(!CvSLABBED(dstr));
13699                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
13700                 if (CvNAMED(dstr))
13701                     SvANY((CV *)dstr)->xcv_gv_u.xcv_hek =
13702                         hek_dup(CvNAME_HEK((CV *)sstr), param);
13703                 /* don't dup if copying back - CvGV isn't refcounted, so the
13704                  * duped GV may never be freed. A bit of a hack! DAPM */
13705                 else
13706                   SvANY(MUTABLE_CV(dstr))->xcv_gv_u.xcv_gv =
13707                     CvCVGV_RC(dstr)
13708                     ? gv_dup_inc(CvGV(sstr), param)
13709                     : (param->flags & CLONEf_JOIN_IN)
13710                         ? NULL
13711                         : gv_dup(CvGV(sstr), param);
13712
13713                 if (!CvISXSUB(sstr)) {
13714                     PADLIST * padlist = CvPADLIST(sstr);
13715                     if(padlist)
13716                         padlist = padlist_dup(padlist, param);
13717                     CvPADLIST_set(dstr, padlist);
13718                 } else
13719 /* unthreaded perl can't sv_dup so we dont support unthreaded's CvHSCXT */
13720                     PoisonPADLIST(dstr);
13721
13722                 CvOUTSIDE(dstr) =
13723                     CvWEAKOUTSIDE(sstr)
13724                     ? cv_dup(    CvOUTSIDE(dstr), param)
13725                     : cv_dup_inc(CvOUTSIDE(dstr), param);
13726                 break;
13727             }
13728         }
13729     }
13730
13731     return dstr;
13732  }
13733
13734 SV *
13735 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
13736 {
13737     PERL_ARGS_ASSERT_SV_DUP_INC;
13738     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
13739 }
13740
13741 SV *
13742 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
13743 {
13744     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
13745     PERL_ARGS_ASSERT_SV_DUP;
13746
13747     /* Track every SV that (at least initially) had a reference count of 0.
13748        We need to do this by holding an actual reference to it in this array.
13749        If we attempt to cheat, turn AvREAL_off(), and store only pointers
13750        (akin to the stashes hash, and the perl stack), we come unstuck if
13751        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
13752        thread) is manipulated in a CLONE method, because CLONE runs before the
13753        unreferenced array is walked to find SVs still with SvREFCNT() == 0
13754        (and fix things up by giving each a reference via the temps stack).
13755        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
13756        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
13757        before the walk of unreferenced happens and a reference to that is SV
13758        added to the temps stack. At which point we have the same SV considered
13759        to be in use, and free to be re-used. Not good.
13760     */
13761     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
13762         assert(param->unreferenced);
13763         av_push(param->unreferenced, SvREFCNT_inc(dstr));
13764     }
13765
13766     return dstr;
13767 }
13768
13769 /* duplicate a context */
13770
13771 PERL_CONTEXT *
13772 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
13773 {
13774     PERL_CONTEXT *ncxs;
13775
13776     PERL_ARGS_ASSERT_CX_DUP;
13777
13778     if (!cxs)
13779         return (PERL_CONTEXT*)NULL;
13780
13781     /* look for it in the table first */
13782     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
13783     if (ncxs)
13784         return ncxs;
13785
13786     /* create anew and remember what it is */
13787     Newx(ncxs, max + 1, PERL_CONTEXT);
13788     ptr_table_store(PL_ptr_table, cxs, ncxs);
13789     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
13790
13791     while (ix >= 0) {
13792         PERL_CONTEXT * const ncx = &ncxs[ix];
13793         if (CxTYPE(ncx) == CXt_SUBST) {
13794             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
13795         }
13796         else {
13797             ncx->blk_oldcop = (COP*)any_dup(ncx->blk_oldcop, param->proto_perl);
13798             switch (CxTYPE(ncx)) {
13799             case CXt_SUB:
13800                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
13801                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
13802                                            : cv_dup(ncx->blk_sub.cv,param));
13803                 if(CxHASARGS(ncx)){
13804                     ncx->blk_sub.argarray = av_dup_inc(ncx->blk_sub.argarray,param);
13805                     ncx->blk_sub.savearray = av_dup_inc(ncx->blk_sub.savearray,param);
13806                 } else {
13807                     ncx->blk_sub.argarray = NULL;
13808                     ncx->blk_sub.savearray = NULL;
13809                 }
13810                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
13811                                            ncx->blk_sub.oldcomppad);
13812                 break;
13813             case CXt_EVAL:
13814                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
13815                                                       param);
13816                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
13817                 ncx->blk_eval.cv = cv_dup(ncx->blk_eval.cv, param);
13818                 break;
13819             case CXt_LOOP_LAZYSV:
13820                 ncx->blk_loop.state_u.lazysv.end
13821                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
13822                 /* We are taking advantage of av_dup_inc and sv_dup_inc
13823                    actually being the same function, and order equivalence of
13824                    the two unions.
13825                    We can assert the later [but only at run time :-(]  */
13826                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
13827                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
13828             case CXt_LOOP_FOR:
13829                 ncx->blk_loop.state_u.ary.ary
13830                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
13831             case CXt_LOOP_LAZYIV:
13832             case CXt_LOOP_PLAIN:
13833                 if (CxPADLOOP(ncx)) {
13834                     ncx->blk_loop.itervar_u.oldcomppad
13835                         = (PAD*)ptr_table_fetch(PL_ptr_table,
13836                                         ncx->blk_loop.itervar_u.oldcomppad);
13837                 } else {
13838                     ncx->blk_loop.itervar_u.gv
13839                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
13840                                     param);
13841                 }
13842                 break;
13843             case CXt_FORMAT:
13844                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
13845                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
13846                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
13847                                                      param);
13848                 break;
13849             case CXt_BLOCK:
13850             case CXt_NULL:
13851             case CXt_WHEN:
13852             case CXt_GIVEN:
13853                 break;
13854             }
13855         }
13856         --ix;
13857     }
13858     return ncxs;
13859 }
13860
13861 /* duplicate a stack info structure */
13862
13863 PERL_SI *
13864 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
13865 {
13866     PERL_SI *nsi;
13867
13868     PERL_ARGS_ASSERT_SI_DUP;
13869
13870     if (!si)
13871         return (PERL_SI*)NULL;
13872
13873     /* look for it in the table first */
13874     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
13875     if (nsi)
13876         return nsi;
13877
13878     /* create anew and remember what it is */
13879     Newxz(nsi, 1, PERL_SI);
13880     ptr_table_store(PL_ptr_table, si, nsi);
13881
13882     nsi->si_stack       = av_dup_inc(si->si_stack, param);
13883     nsi->si_cxix        = si->si_cxix;
13884     nsi->si_cxmax       = si->si_cxmax;
13885     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
13886     nsi->si_type        = si->si_type;
13887     nsi->si_prev        = si_dup(si->si_prev, param);
13888     nsi->si_next        = si_dup(si->si_next, param);
13889     nsi->si_markoff     = si->si_markoff;
13890
13891     return nsi;
13892 }
13893
13894 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
13895 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
13896 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
13897 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
13898 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
13899 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
13900 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
13901 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
13902 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
13903 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
13904 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
13905 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
13906 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
13907 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
13908 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
13909 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
13910
13911 /* XXXXX todo */
13912 #define pv_dup_inc(p)   SAVEPV(p)
13913 #define pv_dup(p)       SAVEPV(p)
13914 #define svp_dup_inc(p,pp)       any_dup(p,pp)
13915
13916 /* map any object to the new equivent - either something in the
13917  * ptr table, or something in the interpreter structure
13918  */
13919
13920 void *
13921 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
13922 {
13923     void *ret;
13924
13925     PERL_ARGS_ASSERT_ANY_DUP;
13926
13927     if (!v)
13928         return (void*)NULL;
13929
13930     /* look for it in the table first */
13931     ret = ptr_table_fetch(PL_ptr_table, v);
13932     if (ret)
13933         return ret;
13934
13935     /* see if it is part of the interpreter structure */
13936     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
13937         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
13938     else {
13939         ret = v;
13940     }
13941
13942     return ret;
13943 }
13944
13945 /* duplicate the save stack */
13946
13947 ANY *
13948 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
13949 {
13950     dVAR;
13951     ANY * const ss      = proto_perl->Isavestack;
13952     const I32 max       = proto_perl->Isavestack_max;
13953     I32 ix              = proto_perl->Isavestack_ix;
13954     ANY *nss;
13955     const SV *sv;
13956     const GV *gv;
13957     const AV *av;
13958     const HV *hv;
13959     void* ptr;
13960     int intval;
13961     long longval;
13962     GP *gp;
13963     IV iv;
13964     I32 i;
13965     char *c = NULL;
13966     void (*dptr) (void*);
13967     void (*dxptr) (pTHX_ void*);
13968
13969     PERL_ARGS_ASSERT_SS_DUP;
13970
13971     Newxz(nss, max, ANY);
13972
13973     while (ix > 0) {
13974         const UV uv = POPUV(ss,ix);
13975         const U8 type = (U8)uv & SAVE_MASK;
13976
13977         TOPUV(nss,ix) = uv;
13978         switch (type) {
13979         case SAVEt_CLEARSV:
13980         case SAVEt_CLEARPADRANGE:
13981             break;
13982         case SAVEt_HELEM:               /* hash element */
13983             sv = (const SV *)POPPTR(ss,ix);
13984             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13985             /* FALLTHROUGH */
13986         case SAVEt_ITEM:                        /* normal string */
13987         case SAVEt_GVSV:                        /* scalar slot in GV */
13988         case SAVEt_SV:                          /* scalar reference */
13989             sv = (const SV *)POPPTR(ss,ix);
13990             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13991             /* FALLTHROUGH */
13992         case SAVEt_FREESV:
13993         case SAVEt_MORTALIZESV:
13994         case SAVEt_READONLY_OFF:
13995             sv = (const SV *)POPPTR(ss,ix);
13996             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13997             break;
13998         case SAVEt_FREEPADNAME:
13999             ptr = POPPTR(ss,ix);
14000             TOPPTR(nss,ix) = padname_dup((PADNAME *)ptr, param);
14001             PadnameREFCNT((PADNAME *)TOPPTR(nss,ix))++;
14002             break;
14003         case SAVEt_SHARED_PVREF:                /* char* in shared space */
14004             c = (char*)POPPTR(ss,ix);
14005             TOPPTR(nss,ix) = savesharedpv(c);
14006             ptr = POPPTR(ss,ix);
14007             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14008             break;
14009         case SAVEt_GENERIC_SVREF:               /* generic sv */
14010         case SAVEt_SVREF:                       /* scalar reference */
14011             sv = (const SV *)POPPTR(ss,ix);
14012             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14013             ptr = POPPTR(ss,ix);
14014             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
14015             break;
14016         case SAVEt_GVSLOT:              /* any slot in GV */
14017             sv = (const SV *)POPPTR(ss,ix);
14018             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14019             ptr = POPPTR(ss,ix);
14020             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
14021             sv = (const SV *)POPPTR(ss,ix);
14022             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14023             break;
14024         case SAVEt_HV:                          /* hash reference */
14025         case SAVEt_AV:                          /* array reference */
14026             sv = (const SV *) POPPTR(ss,ix);
14027             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14028             /* FALLTHROUGH */
14029         case SAVEt_COMPPAD:
14030         case SAVEt_NSTAB:
14031             sv = (const SV *) POPPTR(ss,ix);
14032             TOPPTR(nss,ix) = sv_dup(sv, param);
14033             break;
14034         case SAVEt_INT:                         /* int reference */
14035             ptr = POPPTR(ss,ix);
14036             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14037             intval = (int)POPINT(ss,ix);
14038             TOPINT(nss,ix) = intval;
14039             break;
14040         case SAVEt_LONG:                        /* long reference */
14041             ptr = POPPTR(ss,ix);
14042             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14043             longval = (long)POPLONG(ss,ix);
14044             TOPLONG(nss,ix) = longval;
14045             break;
14046         case SAVEt_I32:                         /* I32 reference */
14047             ptr = POPPTR(ss,ix);
14048             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14049             i = POPINT(ss,ix);
14050             TOPINT(nss,ix) = i;
14051             break;
14052         case SAVEt_IV:                          /* IV reference */
14053         case SAVEt_STRLEN:                      /* STRLEN/size_t ref */
14054             ptr = POPPTR(ss,ix);
14055             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14056             iv = POPIV(ss,ix);
14057             TOPIV(nss,ix) = iv;
14058             break;
14059         case SAVEt_HPTR:                        /* HV* reference */
14060         case SAVEt_APTR:                        /* AV* reference */
14061         case SAVEt_SPTR:                        /* SV* reference */
14062             ptr = POPPTR(ss,ix);
14063             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14064             sv = (const SV *)POPPTR(ss,ix);
14065             TOPPTR(nss,ix) = sv_dup(sv, param);
14066             break;
14067         case SAVEt_VPTR:                        /* random* reference */
14068             ptr = POPPTR(ss,ix);
14069             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14070             /* FALLTHROUGH */
14071         case SAVEt_INT_SMALL:
14072         case SAVEt_I32_SMALL:
14073         case SAVEt_I16:                         /* I16 reference */
14074         case SAVEt_I8:                          /* I8 reference */
14075         case SAVEt_BOOL:
14076             ptr = POPPTR(ss,ix);
14077             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14078             break;
14079         case SAVEt_GENERIC_PVREF:               /* generic char* */
14080         case SAVEt_PPTR:                        /* char* reference */
14081             ptr = POPPTR(ss,ix);
14082             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14083             c = (char*)POPPTR(ss,ix);
14084             TOPPTR(nss,ix) = pv_dup(c);
14085             break;
14086         case SAVEt_GP:                          /* scalar reference */
14087             gp = (GP*)POPPTR(ss,ix);
14088             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
14089             (void)GpREFCNT_inc(gp);
14090             gv = (const GV *)POPPTR(ss,ix);
14091             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
14092             break;
14093         case SAVEt_FREEOP:
14094             ptr = POPPTR(ss,ix);
14095             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
14096                 /* these are assumed to be refcounted properly */
14097                 OP *o;
14098                 switch (((OP*)ptr)->op_type) {
14099                 case OP_LEAVESUB:
14100                 case OP_LEAVESUBLV:
14101                 case OP_LEAVEEVAL:
14102                 case OP_LEAVE:
14103                 case OP_SCOPE:
14104                 case OP_LEAVEWRITE:
14105                     TOPPTR(nss,ix) = ptr;
14106                     o = (OP*)ptr;
14107                     OP_REFCNT_LOCK;
14108                     (void) OpREFCNT_inc(o);
14109                     OP_REFCNT_UNLOCK;
14110                     break;
14111                 default:
14112                     TOPPTR(nss,ix) = NULL;
14113                     break;
14114                 }
14115             }
14116             else
14117                 TOPPTR(nss,ix) = NULL;
14118             break;
14119         case SAVEt_FREECOPHH:
14120             ptr = POPPTR(ss,ix);
14121             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
14122             break;
14123         case SAVEt_ADELETE:
14124             av = (const AV *)POPPTR(ss,ix);
14125             TOPPTR(nss,ix) = av_dup_inc(av, param);
14126             i = POPINT(ss,ix);
14127             TOPINT(nss,ix) = i;
14128             break;
14129         case SAVEt_DELETE:
14130             hv = (const HV *)POPPTR(ss,ix);
14131             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
14132             i = POPINT(ss,ix);
14133             TOPINT(nss,ix) = i;
14134             /* FALLTHROUGH */
14135         case SAVEt_FREEPV:
14136             c = (char*)POPPTR(ss,ix);
14137             TOPPTR(nss,ix) = pv_dup_inc(c);
14138             break;
14139         case SAVEt_STACK_POS:           /* Position on Perl stack */
14140             i = POPINT(ss,ix);
14141             TOPINT(nss,ix) = i;
14142             break;
14143         case SAVEt_DESTRUCTOR:
14144             ptr = POPPTR(ss,ix);
14145             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
14146             dptr = POPDPTR(ss,ix);
14147             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
14148                                         any_dup(FPTR2DPTR(void *, dptr),
14149                                                 proto_perl));
14150             break;
14151         case SAVEt_DESTRUCTOR_X:
14152             ptr = POPPTR(ss,ix);
14153             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
14154             dxptr = POPDXPTR(ss,ix);
14155             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
14156                                          any_dup(FPTR2DPTR(void *, dxptr),
14157                                                  proto_perl));
14158             break;
14159         case SAVEt_REGCONTEXT:
14160         case SAVEt_ALLOC:
14161             ix -= uv >> SAVE_TIGHT_SHIFT;
14162             break;
14163         case SAVEt_AELEM:               /* array element */
14164             sv = (const SV *)POPPTR(ss,ix);
14165             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14166             i = POPINT(ss,ix);
14167             TOPINT(nss,ix) = i;
14168             av = (const AV *)POPPTR(ss,ix);
14169             TOPPTR(nss,ix) = av_dup_inc(av, param);
14170             break;
14171         case SAVEt_OP:
14172             ptr = POPPTR(ss,ix);
14173             TOPPTR(nss,ix) = ptr;
14174             break;
14175         case SAVEt_HINTS:
14176             ptr = POPPTR(ss,ix);
14177             ptr = cophh_copy((COPHH*)ptr);
14178             TOPPTR(nss,ix) = ptr;
14179             i = POPINT(ss,ix);
14180             TOPINT(nss,ix) = i;
14181             if (i & HINT_LOCALIZE_HH) {
14182                 hv = (const HV *)POPPTR(ss,ix);
14183                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
14184             }
14185             break;
14186         case SAVEt_PADSV_AND_MORTALIZE:
14187             longval = (long)POPLONG(ss,ix);
14188             TOPLONG(nss,ix) = longval;
14189             ptr = POPPTR(ss,ix);
14190             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14191             sv = (const SV *)POPPTR(ss,ix);
14192             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14193             break;
14194         case SAVEt_SET_SVFLAGS:
14195             i = POPINT(ss,ix);
14196             TOPINT(nss,ix) = i;
14197             i = POPINT(ss,ix);
14198             TOPINT(nss,ix) = i;
14199             sv = (const SV *)POPPTR(ss,ix);
14200             TOPPTR(nss,ix) = sv_dup(sv, param);
14201             break;
14202         case SAVEt_COMPILE_WARNINGS:
14203             ptr = POPPTR(ss,ix);
14204             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
14205             break;
14206         case SAVEt_PARSER:
14207             ptr = POPPTR(ss,ix);
14208             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
14209             break;
14210         case SAVEt_GP_ALIASED_SV: {
14211             GP * gp_ptr = (GP *)POPPTR(ss,ix);
14212             GP * new_gp_ptr = gp_dup(gp_ptr, param);
14213             TOPPTR(nss,ix) = new_gp_ptr;
14214             new_gp_ptr->gp_refcnt++;
14215             break;
14216         }
14217         default:
14218             Perl_croak(aTHX_
14219                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
14220         }
14221     }
14222
14223     return nss;
14224 }
14225
14226
14227 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
14228  * flag to the result. This is done for each stash before cloning starts,
14229  * so we know which stashes want their objects cloned */
14230
14231 static void
14232 do_mark_cloneable_stash(pTHX_ SV *const sv)
14233 {
14234     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
14235     if (hvname) {
14236         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
14237         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
14238         if (cloner && GvCV(cloner)) {
14239             dSP;
14240             UV status;
14241
14242             ENTER;
14243             SAVETMPS;
14244             PUSHMARK(SP);
14245             mXPUSHs(newSVhek(hvname));
14246             PUTBACK;
14247             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
14248             SPAGAIN;
14249             status = POPu;
14250             PUTBACK;
14251             FREETMPS;
14252             LEAVE;
14253             if (status)
14254                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
14255         }
14256     }
14257 }
14258
14259
14260
14261 /*
14262 =for apidoc perl_clone
14263
14264 Create and return a new interpreter by cloning the current one.
14265
14266 perl_clone takes these flags as parameters:
14267
14268 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
14269 without it we only clone the data and zero the stacks,
14270 with it we copy the stacks and the new perl interpreter is
14271 ready to run at the exact same point as the previous one.
14272 The pseudo-fork code uses COPY_STACKS while the
14273 threads->create doesn't.
14274
14275 CLONEf_KEEP_PTR_TABLE -
14276 perl_clone keeps a ptr_table with the pointer of the old
14277 variable as a key and the new variable as a value,
14278 this allows it to check if something has been cloned and not
14279 clone it again but rather just use the value and increase the
14280 refcount.  If KEEP_PTR_TABLE is not set then perl_clone will kill
14281 the ptr_table using the function
14282 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
14283 reason to keep it around is if you want to dup some of your own
14284 variable who are outside the graph perl scans, example of this
14285 code is in threads.xs create.
14286
14287 CLONEf_CLONE_HOST -
14288 This is a win32 thing, it is ignored on unix, it tells perls
14289 win32host code (which is c++) to clone itself, this is needed on
14290 win32 if you want to run two threads at the same time,
14291 if you just want to do some stuff in a separate perl interpreter
14292 and then throw it away and return to the original one,
14293 you don't need to do anything.
14294
14295 =cut
14296 */
14297
14298 /* XXX the above needs expanding by someone who actually understands it ! */
14299 EXTERN_C PerlInterpreter *
14300 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
14301
14302 PerlInterpreter *
14303 perl_clone(PerlInterpreter *proto_perl, UV flags)
14304 {
14305    dVAR;
14306 #ifdef PERL_IMPLICIT_SYS
14307
14308     PERL_ARGS_ASSERT_PERL_CLONE;
14309
14310    /* perlhost.h so we need to call into it
14311    to clone the host, CPerlHost should have a c interface, sky */
14312
14313    if (flags & CLONEf_CLONE_HOST) {
14314        return perl_clone_host(proto_perl,flags);
14315    }
14316    return perl_clone_using(proto_perl, flags,
14317                             proto_perl->IMem,
14318                             proto_perl->IMemShared,
14319                             proto_perl->IMemParse,
14320                             proto_perl->IEnv,
14321                             proto_perl->IStdIO,
14322                             proto_perl->ILIO,
14323                             proto_perl->IDir,
14324                             proto_perl->ISock,
14325                             proto_perl->IProc);
14326 }
14327
14328 PerlInterpreter *
14329 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
14330                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
14331                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
14332                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
14333                  struct IPerlDir* ipD, struct IPerlSock* ipS,
14334                  struct IPerlProc* ipP)
14335 {
14336     /* XXX many of the string copies here can be optimized if they're
14337      * constants; they need to be allocated as common memory and just
14338      * their pointers copied. */
14339
14340     IV i;
14341     CLONE_PARAMS clone_params;
14342     CLONE_PARAMS* const param = &clone_params;
14343
14344     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
14345
14346     PERL_ARGS_ASSERT_PERL_CLONE_USING;
14347 #else           /* !PERL_IMPLICIT_SYS */
14348     IV i;
14349     CLONE_PARAMS clone_params;
14350     CLONE_PARAMS* param = &clone_params;
14351     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
14352
14353     PERL_ARGS_ASSERT_PERL_CLONE;
14354 #endif          /* PERL_IMPLICIT_SYS */
14355
14356     /* for each stash, determine whether its objects should be cloned */
14357     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
14358     PERL_SET_THX(my_perl);
14359
14360 #ifdef DEBUGGING
14361     PoisonNew(my_perl, 1, PerlInterpreter);
14362     PL_op = NULL;
14363     PL_curcop = NULL;
14364     PL_defstash = NULL; /* may be used by perl malloc() */
14365     PL_markstack = 0;
14366     PL_scopestack = 0;
14367     PL_scopestack_name = 0;
14368     PL_savestack = 0;
14369     PL_savestack_ix = 0;
14370     PL_savestack_max = -1;
14371     PL_sig_pending = 0;
14372     PL_parser = NULL;
14373     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
14374     Zero(&PL_padname_undef, 1, PADNAME);
14375     Zero(&PL_padname_const, 1, PADNAME);
14376 #  ifdef DEBUG_LEAKING_SCALARS
14377     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
14378 #  endif
14379 #else   /* !DEBUGGING */
14380     Zero(my_perl, 1, PerlInterpreter);
14381 #endif  /* DEBUGGING */
14382
14383 #ifdef PERL_IMPLICIT_SYS
14384     /* host pointers */
14385     PL_Mem              = ipM;
14386     PL_MemShared        = ipMS;
14387     PL_MemParse         = ipMP;
14388     PL_Env              = ipE;
14389     PL_StdIO            = ipStd;
14390     PL_LIO              = ipLIO;
14391     PL_Dir              = ipD;
14392     PL_Sock             = ipS;
14393     PL_Proc             = ipP;
14394 #endif          /* PERL_IMPLICIT_SYS */
14395
14396
14397     param->flags = flags;
14398     /* Nothing in the core code uses this, but we make it available to
14399        extensions (using mg_dup).  */
14400     param->proto_perl = proto_perl;
14401     /* Likely nothing will use this, but it is initialised to be consistent
14402        with Perl_clone_params_new().  */
14403     param->new_perl = my_perl;
14404     param->unreferenced = NULL;
14405
14406
14407     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
14408
14409     PL_body_arenas = NULL;
14410     Zero(&PL_body_roots, 1, PL_body_roots);
14411     
14412     PL_sv_count         = 0;
14413     PL_sv_root          = NULL;
14414     PL_sv_arenaroot     = NULL;
14415
14416     PL_debug            = proto_perl->Idebug;
14417
14418     /* dbargs array probably holds garbage */
14419     PL_dbargs           = NULL;
14420
14421     PL_compiling = proto_perl->Icompiling;
14422
14423     /* pseudo environmental stuff */
14424     PL_origargc         = proto_perl->Iorigargc;
14425     PL_origargv         = proto_perl->Iorigargv;
14426
14427 #ifndef NO_TAINT_SUPPORT
14428     /* Set tainting stuff before PerlIO_debug can possibly get called */
14429     PL_tainting         = proto_perl->Itainting;
14430     PL_taint_warn       = proto_perl->Itaint_warn;
14431 #else
14432     PL_tainting         = FALSE;
14433     PL_taint_warn       = FALSE;
14434 #endif
14435
14436     PL_minus_c          = proto_perl->Iminus_c;
14437
14438     PL_localpatches     = proto_perl->Ilocalpatches;
14439     PL_splitstr         = proto_perl->Isplitstr;
14440     PL_minus_n          = proto_perl->Iminus_n;
14441     PL_minus_p          = proto_perl->Iminus_p;
14442     PL_minus_l          = proto_perl->Iminus_l;
14443     PL_minus_a          = proto_perl->Iminus_a;
14444     PL_minus_E          = proto_perl->Iminus_E;
14445     PL_minus_F          = proto_perl->Iminus_F;
14446     PL_doswitches       = proto_perl->Idoswitches;
14447     PL_dowarn           = proto_perl->Idowarn;
14448     PL_sawalias         = proto_perl->Isawalias;
14449 #ifdef PERL_SAWAMPERSAND
14450     PL_sawampersand     = proto_perl->Isawampersand;
14451 #endif
14452     PL_unsafe           = proto_perl->Iunsafe;
14453     PL_perldb           = proto_perl->Iperldb;
14454     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
14455     PL_exit_flags       = proto_perl->Iexit_flags;
14456
14457     /* XXX time(&PL_basetime) when asked for? */
14458     PL_basetime         = proto_perl->Ibasetime;
14459
14460     PL_maxsysfd         = proto_perl->Imaxsysfd;
14461     PL_statusvalue      = proto_perl->Istatusvalue;
14462 #ifdef __VMS
14463     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
14464 #else
14465     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
14466 #endif
14467
14468     /* RE engine related */
14469     PL_regmatch_slab    = NULL;
14470     PL_reg_curpm        = NULL;
14471
14472     PL_sub_generation   = proto_perl->Isub_generation;
14473
14474     /* funky return mechanisms */
14475     PL_forkprocess      = proto_perl->Iforkprocess;
14476
14477     /* internal state */
14478     PL_maxo             = proto_perl->Imaxo;
14479
14480     PL_main_start       = proto_perl->Imain_start;
14481     PL_eval_root        = proto_perl->Ieval_root;
14482     PL_eval_start       = proto_perl->Ieval_start;
14483
14484     PL_filemode         = proto_perl->Ifilemode;
14485     PL_lastfd           = proto_perl->Ilastfd;
14486     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
14487     PL_Argv             = NULL;
14488     PL_Cmd              = NULL;
14489     PL_gensym           = proto_perl->Igensym;
14490
14491     PL_laststatval      = proto_perl->Ilaststatval;
14492     PL_laststype        = proto_perl->Ilaststype;
14493     PL_mess_sv          = NULL;
14494
14495     PL_profiledata      = NULL;
14496
14497     PL_generation       = proto_perl->Igeneration;
14498
14499     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
14500     PL_in_clean_all     = proto_perl->Iin_clean_all;
14501
14502     PL_delaymagic_uid   = proto_perl->Idelaymagic_uid;
14503     PL_delaymagic_euid  = proto_perl->Idelaymagic_euid;
14504     PL_delaymagic_gid   = proto_perl->Idelaymagic_gid;
14505     PL_delaymagic_egid  = proto_perl->Idelaymagic_egid;
14506     PL_nomemok          = proto_perl->Inomemok;
14507     PL_an               = proto_perl->Ian;
14508     PL_evalseq          = proto_perl->Ievalseq;
14509     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
14510     PL_origalen         = proto_perl->Iorigalen;
14511
14512     PL_sighandlerp      = proto_perl->Isighandlerp;
14513
14514     PL_runops           = proto_perl->Irunops;
14515
14516     PL_subline          = proto_perl->Isubline;
14517
14518 #ifdef FCRYPT
14519     PL_cryptseen        = proto_perl->Icryptseen;
14520 #endif
14521
14522 #ifdef USE_LOCALE_COLLATE
14523     PL_collation_ix     = proto_perl->Icollation_ix;
14524     PL_collation_standard       = proto_perl->Icollation_standard;
14525     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
14526     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
14527 #endif /* USE_LOCALE_COLLATE */
14528
14529 #ifdef USE_LOCALE_NUMERIC
14530     PL_numeric_standard = proto_perl->Inumeric_standard;
14531     PL_numeric_local    = proto_perl->Inumeric_local;
14532 #endif /* !USE_LOCALE_NUMERIC */
14533
14534     /* Did the locale setup indicate UTF-8? */
14535     PL_utf8locale       = proto_perl->Iutf8locale;
14536     PL_in_utf8_CTYPE_locale = proto_perl->Iin_utf8_CTYPE_locale;
14537     /* Unicode features (see perlrun/-C) */
14538     PL_unicode          = proto_perl->Iunicode;
14539
14540     /* Pre-5.8 signals control */
14541     PL_signals          = proto_perl->Isignals;
14542
14543     /* times() ticks per second */
14544     PL_clocktick        = proto_perl->Iclocktick;
14545
14546     /* Recursion stopper for PerlIO_find_layer */
14547     PL_in_load_module   = proto_perl->Iin_load_module;
14548
14549     /* sort() routine */
14550     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
14551
14552     /* Not really needed/useful since the reenrant_retint is "volatile",
14553      * but do it for consistency's sake. */
14554     PL_reentrant_retint = proto_perl->Ireentrant_retint;
14555
14556     /* Hooks to shared SVs and locks. */
14557     PL_sharehook        = proto_perl->Isharehook;
14558     PL_lockhook         = proto_perl->Ilockhook;
14559     PL_unlockhook       = proto_perl->Iunlockhook;
14560     PL_threadhook       = proto_perl->Ithreadhook;
14561     PL_destroyhook      = proto_perl->Idestroyhook;
14562     PL_signalhook       = proto_perl->Isignalhook;
14563
14564     PL_globhook         = proto_perl->Iglobhook;
14565
14566     /* swatch cache */
14567     PL_last_swash_hv    = NULL; /* reinits on demand */
14568     PL_last_swash_klen  = 0;
14569     PL_last_swash_key[0]= '\0';
14570     PL_last_swash_tmps  = (U8*)NULL;
14571     PL_last_swash_slen  = 0;
14572
14573     PL_srand_called     = proto_perl->Isrand_called;
14574     Copy(&(proto_perl->Irandom_state), &PL_random_state, 1, PL_RANDOM_STATE_TYPE);
14575
14576     if (flags & CLONEf_COPY_STACKS) {
14577         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
14578         PL_tmps_ix              = proto_perl->Itmps_ix;
14579         PL_tmps_max             = proto_perl->Itmps_max;
14580         PL_tmps_floor           = proto_perl->Itmps_floor;
14581
14582         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
14583          * NOTE: unlike the others! */
14584         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
14585         PL_scopestack_max       = proto_perl->Iscopestack_max;
14586
14587         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
14588          * NOTE: unlike the others! */
14589         PL_savestack_ix         = proto_perl->Isavestack_ix;
14590         PL_savestack_max        = proto_perl->Isavestack_max;
14591     }
14592
14593     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
14594     PL_top_env          = &PL_start_env;
14595
14596     PL_op               = proto_perl->Iop;
14597
14598     PL_Sv               = NULL;
14599     PL_Xpv              = (XPV*)NULL;
14600     my_perl->Ina        = proto_perl->Ina;
14601
14602     PL_statbuf          = proto_perl->Istatbuf;
14603     PL_statcache        = proto_perl->Istatcache;
14604
14605 #ifndef NO_TAINT_SUPPORT
14606     PL_tainted          = proto_perl->Itainted;
14607 #else
14608     PL_tainted          = FALSE;
14609 #endif
14610     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
14611
14612     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
14613
14614     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
14615     PL_restartop        = proto_perl->Irestartop;
14616     PL_in_eval          = proto_perl->Iin_eval;
14617     PL_delaymagic       = proto_perl->Idelaymagic;
14618     PL_phase            = proto_perl->Iphase;
14619     PL_localizing       = proto_perl->Ilocalizing;
14620
14621     PL_hv_fetch_ent_mh  = NULL;
14622     PL_modcount         = proto_perl->Imodcount;
14623     PL_lastgotoprobe    = NULL;
14624     PL_dumpindent       = proto_perl->Idumpindent;
14625
14626     PL_efloatbuf        = NULL;         /* reinits on demand */
14627     PL_efloatsize       = 0;                    /* reinits on demand */
14628
14629     /* regex stuff */
14630
14631     PL_colorset         = 0;            /* reinits PL_colors[] */
14632     /*PL_colors[6]      = {0,0,0,0,0,0};*/
14633
14634     /* Pluggable optimizer */
14635     PL_peepp            = proto_perl->Ipeepp;
14636     PL_rpeepp           = proto_perl->Irpeepp;
14637     /* op_free() hook */
14638     PL_opfreehook       = proto_perl->Iopfreehook;
14639
14640 #ifdef USE_REENTRANT_API
14641     /* XXX: things like -Dm will segfault here in perlio, but doing
14642      *  PERL_SET_CONTEXT(proto_perl);
14643      * breaks too many other things
14644      */
14645     Perl_reentrant_init(aTHX);
14646 #endif
14647
14648     /* create SV map for pointer relocation */
14649     PL_ptr_table = ptr_table_new();
14650
14651     /* initialize these special pointers as early as possible */
14652     init_constants();
14653     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
14654     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
14655     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
14656     ptr_table_store(PL_ptr_table, &proto_perl->Ipadname_const,
14657                     &PL_padname_const);
14658
14659     /* create (a non-shared!) shared string table */
14660     PL_strtab           = newHV();
14661     HvSHAREKEYS_off(PL_strtab);
14662     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
14663     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
14664
14665     Zero(PL_sv_consts, SV_CONSTS_COUNT, SV*);
14666
14667     /* This PV will be free'd special way so must set it same way op.c does */
14668     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
14669     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
14670
14671     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
14672     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
14673     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
14674     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
14675
14676     param->stashes      = newAV();  /* Setup array of objects to call clone on */
14677     /* This makes no difference to the implementation, as it always pushes
14678        and shifts pointers to other SVs without changing their reference
14679        count, with the array becoming empty before it is freed. However, it
14680        makes it conceptually clear what is going on, and will avoid some
14681        work inside av.c, filling slots between AvFILL() and AvMAX() with
14682        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
14683     AvREAL_off(param->stashes);
14684
14685     if (!(flags & CLONEf_COPY_STACKS)) {
14686         param->unreferenced = newAV();
14687     }
14688
14689 #ifdef PERLIO_LAYERS
14690     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
14691     PerlIO_clone(aTHX_ proto_perl, param);
14692 #endif
14693
14694     PL_envgv            = gv_dup_inc(proto_perl->Ienvgv, param);
14695     PL_incgv            = gv_dup_inc(proto_perl->Iincgv, param);
14696     PL_hintgv           = gv_dup_inc(proto_perl->Ihintgv, param);
14697     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
14698     PL_xsubfilename     = proto_perl->Ixsubfilename;
14699     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
14700     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
14701
14702     /* switches */
14703     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
14704     PL_inplace          = SAVEPV(proto_perl->Iinplace);
14705     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
14706
14707     /* magical thingies */
14708
14709     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
14710     PL_lex_encoding     = sv_dup(proto_perl->Ilex_encoding, param);
14711
14712     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
14713     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
14714     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
14715
14716    
14717     /* Clone the regex array */
14718     /* ORANGE FIXME for plugins, probably in the SV dup code.
14719        newSViv(PTR2IV(CALLREGDUPE(
14720        INT2PTR(REGEXP *, SvIVX(regex)), param))))
14721     */
14722     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
14723     PL_regex_pad = AvARRAY(PL_regex_padav);
14724
14725     PL_stashpadmax      = proto_perl->Istashpadmax;
14726     PL_stashpadix       = proto_perl->Istashpadix ;
14727     Newx(PL_stashpad, PL_stashpadmax, HV *);
14728     {
14729         PADOFFSET o = 0;
14730         for (; o < PL_stashpadmax; ++o)
14731             PL_stashpad[o] = hv_dup(proto_perl->Istashpad[o], param);
14732     }
14733
14734     /* shortcuts to various I/O objects */
14735     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
14736     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
14737     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
14738     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
14739     PL_argvgv           = gv_dup_inc(proto_perl->Iargvgv, param);
14740     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
14741     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
14742
14743     /* shortcuts to regexp stuff */
14744     PL_replgv           = gv_dup_inc(proto_perl->Ireplgv, param);
14745
14746     /* shortcuts to misc objects */
14747     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
14748
14749     /* shortcuts to debugging objects */
14750     PL_DBgv             = gv_dup_inc(proto_perl->IDBgv, param);
14751     PL_DBline           = gv_dup_inc(proto_perl->IDBline, param);
14752     PL_DBsub            = gv_dup_inc(proto_perl->IDBsub, param);
14753     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
14754     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
14755     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
14756     Copy(proto_perl->IDBcontrol, PL_DBcontrol, DBVARMG_COUNT, IV);
14757
14758     /* symbol tables */
14759     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
14760     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
14761     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
14762     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
14763     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
14764
14765     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
14766     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
14767     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
14768     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
14769     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
14770     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
14771     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
14772     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
14773
14774     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
14775
14776     /* subprocess state */
14777     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
14778
14779     if (proto_perl->Iop_mask)
14780         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
14781     else
14782         PL_op_mask      = NULL;
14783     /* PL_asserting        = proto_perl->Iasserting; */
14784
14785     /* current interpreter roots */
14786     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
14787     OP_REFCNT_LOCK;
14788     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
14789     OP_REFCNT_UNLOCK;
14790
14791     /* runtime control stuff */
14792     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
14793
14794     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
14795
14796     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
14797
14798     /* interpreter atexit processing */
14799     PL_exitlistlen      = proto_perl->Iexitlistlen;
14800     if (PL_exitlistlen) {
14801         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
14802         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
14803     }
14804     else
14805         PL_exitlist     = (PerlExitListEntry*)NULL;
14806
14807     PL_my_cxt_size = proto_perl->Imy_cxt_size;
14808     if (PL_my_cxt_size) {
14809         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
14810         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
14811 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
14812         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
14813         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
14814 #endif
14815     }
14816     else {
14817         PL_my_cxt_list  = (void**)NULL;
14818 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
14819         PL_my_cxt_keys  = (const char**)NULL;
14820 #endif
14821     }
14822     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
14823     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
14824     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
14825     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
14826
14827     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
14828
14829     PAD_CLONE_VARS(proto_perl, param);
14830
14831 #ifdef HAVE_INTERP_INTERN
14832     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
14833 #endif
14834
14835     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
14836
14837 #ifdef PERL_USES_PL_PIDSTATUS
14838     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
14839 #endif
14840     PL_osname           = SAVEPV(proto_perl->Iosname);
14841     PL_parser           = parser_dup(proto_perl->Iparser, param);
14842
14843     /* XXX this only works if the saved cop has already been cloned */
14844     if (proto_perl->Iparser) {
14845         PL_parser->saved_curcop = (COP*)any_dup(
14846                                     proto_perl->Iparser->saved_curcop,
14847                                     proto_perl);
14848     }
14849
14850     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
14851
14852 #ifdef USE_LOCALE_COLLATE
14853     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
14854 #endif /* USE_LOCALE_COLLATE */
14855
14856 #ifdef USE_LOCALE_NUMERIC
14857     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
14858     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
14859 #endif /* !USE_LOCALE_NUMERIC */
14860
14861     /* Unicode inversion lists */
14862     PL_Latin1           = sv_dup_inc(proto_perl->ILatin1, param);
14863     PL_UpperLatin1      = sv_dup_inc(proto_perl->IUpperLatin1, param);
14864     PL_AboveLatin1      = sv_dup_inc(proto_perl->IAboveLatin1, param);
14865     PL_InBitmap         = sv_dup_inc(proto_perl->IInBitmap, param);
14866
14867     PL_NonL1NonFinalFold = sv_dup_inc(proto_perl->INonL1NonFinalFold, param);
14868     PL_HasMultiCharFold = sv_dup_inc(proto_perl->IHasMultiCharFold, param);
14869
14870     /* utf8 character class swashes */
14871     for (i = 0; i < POSIX_SWASH_COUNT; i++) {
14872         PL_utf8_swash_ptrs[i] = sv_dup_inc(proto_perl->Iutf8_swash_ptrs[i], param);
14873     }
14874     for (i = 0; i < POSIX_CC_COUNT; i++) {
14875         PL_XPosix_ptrs[i] = sv_dup_inc(proto_perl->IXPosix_ptrs[i], param);
14876     }
14877     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
14878     PL_utf8_X_regular_begin     = sv_dup_inc(proto_perl->Iutf8_X_regular_begin, param);
14879     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
14880     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
14881     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
14882     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
14883     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
14884     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
14885     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
14886     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
14887     PL_utf8_perl_idcont = sv_dup_inc(proto_perl->Iutf8_perl_idcont, param);
14888     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
14889     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
14890     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
14891     PL_utf8_charname_begin = sv_dup_inc(proto_perl->Iutf8_charname_begin, param);
14892     PL_utf8_charname_continue = sv_dup_inc(proto_perl->Iutf8_charname_continue, param);
14893
14894     if (proto_perl->Ipsig_pend) {
14895         Newxz(PL_psig_pend, SIG_SIZE, int);
14896     }
14897     else {
14898         PL_psig_pend    = (int*)NULL;
14899     }
14900
14901     if (proto_perl->Ipsig_name) {
14902         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
14903         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
14904                             param);
14905         PL_psig_ptr = PL_psig_name + SIG_SIZE;
14906     }
14907     else {
14908         PL_psig_ptr     = (SV**)NULL;
14909         PL_psig_name    = (SV**)NULL;
14910     }
14911
14912     if (flags & CLONEf_COPY_STACKS) {
14913         Newx(PL_tmps_stack, PL_tmps_max, SV*);
14914         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
14915                             PL_tmps_ix+1, param);
14916
14917         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
14918         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
14919         Newxz(PL_markstack, i, I32);
14920         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
14921                                                   - proto_perl->Imarkstack);
14922         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
14923                                                   - proto_perl->Imarkstack);
14924         Copy(proto_perl->Imarkstack, PL_markstack,
14925              PL_markstack_ptr - PL_markstack + 1, I32);
14926
14927         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
14928          * NOTE: unlike the others! */
14929         Newxz(PL_scopestack, PL_scopestack_max, I32);
14930         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
14931
14932 #ifdef DEBUGGING
14933         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
14934         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
14935 #endif
14936         /* reset stack AV to correct length before its duped via
14937          * PL_curstackinfo */
14938         AvFILLp(proto_perl->Icurstack) =
14939                             proto_perl->Istack_sp - proto_perl->Istack_base;
14940
14941         /* NOTE: si_dup() looks at PL_markstack */
14942         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
14943
14944         /* PL_curstack          = PL_curstackinfo->si_stack; */
14945         PL_curstack             = av_dup(proto_perl->Icurstack, param);
14946         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
14947
14948         /* next PUSHs() etc. set *(PL_stack_sp+1) */
14949         PL_stack_base           = AvARRAY(PL_curstack);
14950         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
14951                                                    - proto_perl->Istack_base);
14952         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
14953
14954         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
14955         PL_savestack            = ss_dup(proto_perl, param);
14956     }
14957     else {
14958         init_stacks();
14959         ENTER;                  /* perl_destruct() wants to LEAVE; */
14960     }
14961
14962     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
14963     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
14964
14965     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
14966     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
14967     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
14968     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
14969     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
14970     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
14971
14972     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
14973
14974     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
14975     PL_firstgv          = gv_dup_inc(proto_perl->Ifirstgv, param);
14976     PL_secondgv         = gv_dup_inc(proto_perl->Isecondgv, param);
14977
14978     PL_stashcache       = newHV();
14979
14980     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
14981                                             proto_perl->Iwatchaddr);
14982     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
14983     if (PL_debug && PL_watchaddr) {
14984         PerlIO_printf(Perl_debug_log,
14985           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
14986           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
14987           PTR2UV(PL_watchok));
14988     }
14989
14990     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
14991     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
14992     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
14993
14994     /* Call the ->CLONE method, if it exists, for each of the stashes
14995        identified by sv_dup() above.
14996     */
14997     while(av_tindex(param->stashes) != -1) {
14998         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
14999         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
15000         if (cloner && GvCV(cloner)) {
15001             dSP;
15002             ENTER;
15003             SAVETMPS;
15004             PUSHMARK(SP);
15005             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
15006             PUTBACK;
15007             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
15008             FREETMPS;
15009             LEAVE;
15010         }
15011     }
15012
15013     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
15014         ptr_table_free(PL_ptr_table);
15015         PL_ptr_table = NULL;
15016     }
15017
15018     if (!(flags & CLONEf_COPY_STACKS)) {
15019         unreferenced_to_tmp_stack(param->unreferenced);
15020     }
15021
15022     SvREFCNT_dec(param->stashes);
15023
15024     /* orphaned? eg threads->new inside BEGIN or use */
15025     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
15026         SvREFCNT_inc_simple_void(PL_compcv);
15027         SAVEFREESV(PL_compcv);
15028     }
15029
15030     return my_perl;
15031 }
15032
15033 static void
15034 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
15035 {
15036     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
15037     
15038     if (AvFILLp(unreferenced) > -1) {
15039         SV **svp = AvARRAY(unreferenced);
15040         SV **const last = svp + AvFILLp(unreferenced);
15041         SSize_t count = 0;
15042
15043         do {
15044             if (SvREFCNT(*svp) == 1)
15045                 ++count;
15046         } while (++svp <= last);
15047
15048         EXTEND_MORTAL(count);
15049         svp = AvARRAY(unreferenced);
15050
15051         do {
15052             if (SvREFCNT(*svp) == 1) {
15053                 /* Our reference is the only one to this SV. This means that
15054                    in this thread, the scalar effectively has a 0 reference.
15055                    That doesn't work (cleanup never happens), so donate our
15056                    reference to it onto the save stack. */
15057                 PL_tmps_stack[++PL_tmps_ix] = *svp;
15058             } else {
15059                 /* As an optimisation, because we are already walking the
15060                    entire array, instead of above doing either
15061                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
15062                    release our reference to the scalar, so that at the end of
15063                    the array owns zero references to the scalars it happens to
15064                    point to. We are effectively converting the array from
15065                    AvREAL() on to AvREAL() off. This saves the av_clear()
15066                    (triggered by the SvREFCNT_dec(unreferenced) below) from
15067                    walking the array a second time.  */
15068                 SvREFCNT_dec(*svp);
15069             }
15070
15071         } while (++svp <= last);
15072         AvREAL_off(unreferenced);
15073     }
15074     SvREFCNT_dec_NN(unreferenced);
15075 }
15076
15077 void
15078 Perl_clone_params_del(CLONE_PARAMS *param)
15079 {
15080     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
15081        happy: */
15082     PerlInterpreter *const to = param->new_perl;
15083     dTHXa(to);
15084     PerlInterpreter *const was = PERL_GET_THX;
15085
15086     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
15087
15088     if (was != to) {
15089         PERL_SET_THX(to);
15090     }
15091
15092     SvREFCNT_dec(param->stashes);
15093     if (param->unreferenced)
15094         unreferenced_to_tmp_stack(param->unreferenced);
15095
15096     Safefree(param);
15097
15098     if (was != to) {
15099         PERL_SET_THX(was);
15100     }
15101 }
15102
15103 CLONE_PARAMS *
15104 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
15105 {
15106     dVAR;
15107     /* Need to play this game, as newAV() can call safesysmalloc(), and that
15108        does a dTHX; to get the context from thread local storage.
15109        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
15110        a version that passes in my_perl.  */
15111     PerlInterpreter *const was = PERL_GET_THX;
15112     CLONE_PARAMS *param;
15113
15114     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
15115
15116     if (was != to) {
15117         PERL_SET_THX(to);
15118     }
15119
15120     /* Given that we've set the context, we can do this unshared.  */
15121     Newx(param, 1, CLONE_PARAMS);
15122
15123     param->flags = 0;
15124     param->proto_perl = from;
15125     param->new_perl = to;
15126     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
15127     AvREAL_off(param->stashes);
15128     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
15129
15130     if (was != to) {
15131         PERL_SET_THX(was);
15132     }
15133     return param;
15134 }
15135
15136 #endif /* USE_ITHREADS */
15137
15138 void
15139 Perl_init_constants(pTHX)
15140 {
15141     SvREFCNT(&PL_sv_undef)      = SvREFCNT_IMMORTAL;
15142     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVf_PROTECT|SVt_NULL;
15143     SvANY(&PL_sv_undef)         = NULL;
15144
15145     SvANY(&PL_sv_no)            = new_XPVNV();
15146     SvREFCNT(&PL_sv_no)         = SvREFCNT_IMMORTAL;
15147     SvFLAGS(&PL_sv_no)          = SVt_PVNV|SVf_READONLY|SVf_PROTECT
15148                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
15149                                   |SVp_POK|SVf_POK;
15150
15151     SvANY(&PL_sv_yes)           = new_XPVNV();
15152     SvREFCNT(&PL_sv_yes)        = SvREFCNT_IMMORTAL;
15153     SvFLAGS(&PL_sv_yes)         = SVt_PVNV|SVf_READONLY|SVf_PROTECT
15154                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
15155                                   |SVp_POK|SVf_POK;
15156
15157     SvPV_set(&PL_sv_no, (char*)PL_No);
15158     SvCUR_set(&PL_sv_no, 0);
15159     SvLEN_set(&PL_sv_no, 0);
15160     SvIV_set(&PL_sv_no, 0);
15161     SvNV_set(&PL_sv_no, 0);
15162
15163     SvPV_set(&PL_sv_yes, (char*)PL_Yes);
15164     SvCUR_set(&PL_sv_yes, 1);
15165     SvLEN_set(&PL_sv_yes, 0);
15166     SvIV_set(&PL_sv_yes, 1);
15167     SvNV_set(&PL_sv_yes, 1);
15168
15169     PadnamePV(&PL_padname_const) = (char *)PL_No;
15170 }
15171
15172 /*
15173 =head1 Unicode Support
15174
15175 =for apidoc sv_recode_to_utf8
15176
15177 The encoding is assumed to be an Encode object, on entry the PV
15178 of the sv is assumed to be octets in that encoding, and the sv
15179 will be converted into Unicode (and UTF-8).
15180
15181 If the sv already is UTF-8 (or if it is not POK), or if the encoding
15182 is not a reference, nothing is done to the sv.  If the encoding is not
15183 an C<Encode::XS> Encoding object, bad things will happen.
15184 (See F<lib/encoding.pm> and L<Encode>.)
15185
15186 The PV of the sv is returned.
15187
15188 =cut */
15189
15190 char *
15191 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
15192 {
15193     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
15194
15195     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
15196         SV *uni;
15197         STRLEN len;
15198         const char *s;
15199         dSP;
15200         SV *nsv = sv;
15201         ENTER;
15202         PUSHSTACK;
15203         SAVETMPS;
15204         if (SvPADTMP(nsv)) {
15205             nsv = sv_newmortal();
15206             SvSetSV_nosteal(nsv, sv);
15207         }
15208         PUSHMARK(sp);
15209         EXTEND(SP, 3);
15210         PUSHs(encoding);
15211         PUSHs(nsv);
15212 /*
15213   NI-S 2002/07/09
15214   Passing sv_yes is wrong - it needs to be or'ed set of constants
15215   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
15216   remove converted chars from source.
15217
15218   Both will default the value - let them.
15219
15220         XPUSHs(&PL_sv_yes);
15221 */
15222         PUTBACK;
15223         call_method("decode", G_SCALAR);
15224         SPAGAIN;
15225         uni = POPs;
15226         PUTBACK;
15227         s = SvPV_const(uni, len);
15228         if (s != SvPVX_const(sv)) {
15229             SvGROW(sv, len + 1);
15230             Move(s, SvPVX(sv), len + 1, char);
15231             SvCUR_set(sv, len);
15232         }
15233         FREETMPS;
15234         POPSTACK;
15235         LEAVE;
15236         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
15237             /* clear pos and any utf8 cache */
15238             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
15239             if (mg)
15240                 mg->mg_len = -1;
15241             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
15242                 magic_setutf8(sv,mg); /* clear UTF8 cache */
15243         }
15244         SvUTF8_on(sv);
15245         return SvPVX(sv);
15246     }
15247     return SvPOKp(sv) ? SvPVX(sv) : NULL;
15248 }
15249
15250 /*
15251 =for apidoc sv_cat_decode
15252
15253 The encoding is assumed to be an Encode object, the PV of the ssv is
15254 assumed to be octets in that encoding and decoding the input starts
15255 from the position which (PV + *offset) pointed to.  The dsv will be
15256 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
15257 when the string tstr appears in decoding output or the input ends on
15258 the PV of the ssv.  The value which the offset points will be modified
15259 to the last input position on the ssv.
15260
15261 Returns TRUE if the terminator was found, else returns FALSE.
15262
15263 =cut */
15264
15265 bool
15266 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
15267                    SV *ssv, int *offset, char *tstr, int tlen)
15268 {
15269     bool ret = FALSE;
15270
15271     PERL_ARGS_ASSERT_SV_CAT_DECODE;
15272
15273     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
15274         SV *offsv;
15275         dSP;
15276         ENTER;
15277         SAVETMPS;
15278         PUSHMARK(sp);
15279         EXTEND(SP, 6);
15280         PUSHs(encoding);
15281         PUSHs(dsv);
15282         PUSHs(ssv);
15283         offsv = newSViv(*offset);
15284         mPUSHs(offsv);
15285         mPUSHp(tstr, tlen);
15286         PUTBACK;
15287         call_method("cat_decode", G_SCALAR);
15288         SPAGAIN;
15289         ret = SvTRUE(TOPs);
15290         *offset = SvIV(offsv);
15291         PUTBACK;
15292         FREETMPS;
15293         LEAVE;
15294     }
15295     else
15296         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
15297     return ret;
15298
15299 }
15300
15301 /* ---------------------------------------------------------------------
15302  *
15303  * support functions for report_uninit()
15304  */
15305
15306 /* the maxiumum size of array or hash where we will scan looking
15307  * for the undefined element that triggered the warning */
15308
15309 #define FUV_MAX_SEARCH_SIZE 1000
15310
15311 /* Look for an entry in the hash whose value has the same SV as val;
15312  * If so, return a mortal copy of the key. */
15313
15314 STATIC SV*
15315 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
15316 {
15317     dVAR;
15318     HE **array;
15319     I32 i;
15320
15321     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
15322
15323     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
15324                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
15325         return NULL;
15326
15327     array = HvARRAY(hv);
15328
15329     for (i=HvMAX(hv); i>=0; i--) {
15330         HE *entry;
15331         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
15332             if (HeVAL(entry) != val)
15333                 continue;
15334             if (    HeVAL(entry) == &PL_sv_undef ||
15335                     HeVAL(entry) == &PL_sv_placeholder)
15336                 continue;
15337             if (!HeKEY(entry))
15338                 return NULL;
15339             if (HeKLEN(entry) == HEf_SVKEY)
15340                 return sv_mortalcopy(HeKEY_sv(entry));
15341             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
15342         }
15343     }
15344     return NULL;
15345 }
15346
15347 /* Look for an entry in the array whose value has the same SV as val;
15348  * If so, return the index, otherwise return -1. */
15349
15350 STATIC I32
15351 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
15352 {
15353     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
15354
15355     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
15356                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
15357         return -1;
15358
15359     if (val != &PL_sv_undef) {
15360         SV ** const svp = AvARRAY(av);
15361         I32 i;
15362
15363         for (i=AvFILLp(av); i>=0; i--)
15364             if (svp[i] == val)
15365                 return i;
15366     }
15367     return -1;
15368 }
15369
15370 /* varname(): return the name of a variable, optionally with a subscript.
15371  * If gv is non-zero, use the name of that global, along with gvtype (one
15372  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
15373  * targ.  Depending on the value of the subscript_type flag, return:
15374  */
15375
15376 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
15377 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
15378 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
15379 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
15380
15381 SV*
15382 Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
15383         const SV *const keyname, I32 aindex, int subscript_type)
15384 {
15385
15386     SV * const name = sv_newmortal();
15387     if (gv && isGV(gv)) {
15388         char buffer[2];
15389         buffer[0] = gvtype;
15390         buffer[1] = 0;
15391
15392         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
15393
15394         gv_fullname4(name, gv, buffer, 0);
15395
15396         if ((unsigned int)SvPVX(name)[1] <= 26) {
15397             buffer[0] = '^';
15398             buffer[1] = SvPVX(name)[1] + 'A' - 1;
15399
15400             /* Swap the 1 unprintable control character for the 2 byte pretty
15401                version - ie substr($name, 1, 1) = $buffer; */
15402             sv_insert(name, 1, 1, buffer, 2);
15403         }
15404     }
15405     else {
15406         CV * const cv = gv ? ((CV *)gv) : find_runcv(NULL);
15407         PADNAME *sv;
15408
15409         assert(!cv || SvTYPE(cv) == SVt_PVCV || SvTYPE(cv) == SVt_PVFM);
15410
15411         if (!cv || !CvPADLIST(cv))
15412             return NULL;
15413         sv = padnamelist_fetch(PadlistNAMES(CvPADLIST(cv)), targ);
15414         sv_setpvn(name, PadnamePV(sv), PadnameLEN(sv));
15415         SvUTF8_on(name);
15416     }
15417
15418     if (subscript_type == FUV_SUBSCRIPT_HASH) {
15419         SV * const sv = newSV(0);
15420         *SvPVX(name) = '$';
15421         Perl_sv_catpvf(aTHX_ name, "{%s}",
15422             pv_pretty(sv, SvPVX_const(keyname), SvCUR(keyname), 32, NULL, NULL,
15423                     PERL_PV_PRETTY_DUMP | PERL_PV_ESCAPE_UNI_DETECT ));
15424         SvREFCNT_dec_NN(sv);
15425     }
15426     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
15427         *SvPVX(name) = '$';
15428         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
15429     }
15430     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
15431         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
15432         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
15433     }
15434
15435     return name;
15436 }
15437
15438
15439 /*
15440 =for apidoc find_uninit_var
15441
15442 Find the name of the undefined variable (if any) that caused the operator
15443 to issue a "Use of uninitialized value" warning.
15444 If match is true, only return a name if its value matches uninit_sv.
15445 So roughly speaking, if a unary operator (such as OP_COS) generates a
15446 warning, then following the direct child of the op may yield an
15447 OP_PADSV or OP_GV that gives the name of the undefined variable.  On the
15448 other hand, with OP_ADD there are two branches to follow, so we only print
15449 the variable name if we get an exact match.
15450
15451 The name is returned as a mortal SV.
15452
15453 Assumes that PL_op is the op that originally triggered the error, and that
15454 PL_comppad/PL_curpad points to the currently executing pad.
15455
15456 =cut
15457 */
15458
15459 STATIC SV *
15460 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
15461                   bool match)
15462 {
15463     dVAR;
15464     SV *sv;
15465     const GV *gv;
15466     const OP *o, *o2, *kid;
15467
15468     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
15469                             uninit_sv == &PL_sv_placeholder)))
15470         return NULL;
15471
15472     switch (obase->op_type) {
15473
15474     case OP_RV2AV:
15475     case OP_RV2HV:
15476     case OP_PADAV:
15477     case OP_PADHV:
15478       {
15479         const bool pad  = (    obase->op_type == OP_PADAV
15480                             || obase->op_type == OP_PADHV
15481                             || obase->op_type == OP_PADRANGE
15482                           );
15483
15484         const bool hash = (    obase->op_type == OP_PADHV
15485                             || obase->op_type == OP_RV2HV
15486                             || (obase->op_type == OP_PADRANGE
15487                                 && SvTYPE(PAD_SVl(obase->op_targ)) == SVt_PVHV)
15488                           );
15489         I32 index = 0;
15490         SV *keysv = NULL;
15491         int subscript_type = FUV_SUBSCRIPT_WITHIN;
15492
15493         if (pad) { /* @lex, %lex */
15494             sv = PAD_SVl(obase->op_targ);
15495             gv = NULL;
15496         }
15497         else {
15498             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
15499             /* @global, %global */
15500                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
15501                 if (!gv)
15502                     break;
15503                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
15504             }
15505             else if (obase == PL_op) /* @{expr}, %{expr} */
15506                 return find_uninit_var(cUNOPx(obase)->op_first,
15507                                                     uninit_sv, match);
15508             else /* @{expr}, %{expr} as a sub-expression */
15509                 return NULL;
15510         }
15511
15512         /* attempt to find a match within the aggregate */
15513         if (hash) {
15514             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
15515             if (keysv)
15516                 subscript_type = FUV_SUBSCRIPT_HASH;
15517         }
15518         else {
15519             index = find_array_subscript((const AV *)sv, uninit_sv);
15520             if (index >= 0)
15521                 subscript_type = FUV_SUBSCRIPT_ARRAY;
15522         }
15523
15524         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
15525             break;
15526
15527         return varname(gv, (char)(hash ? '%' : '@'), obase->op_targ,
15528                                     keysv, index, subscript_type);
15529       }
15530
15531     case OP_RV2SV:
15532         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
15533             /* $global */
15534             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
15535             if (!gv || !GvSTASH(gv))
15536                 break;
15537             if (match && (GvSV(gv) != uninit_sv))
15538                 break;
15539             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
15540         }
15541         /* ${expr} */
15542         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
15543
15544     case OP_PADSV:
15545         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
15546             break;
15547         return varname(NULL, '$', obase->op_targ,
15548                                     NULL, 0, FUV_SUBSCRIPT_NONE);
15549
15550     case OP_GVSV:
15551         gv = cGVOPx_gv(obase);
15552         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
15553             break;
15554         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
15555
15556     case OP_AELEMFAST_LEX:
15557         if (match) {
15558             SV **svp;
15559             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
15560             if (!av || SvRMAGICAL(av))
15561                 break;
15562             svp = av_fetch(av, (I8)obase->op_private, FALSE);
15563             if (!svp || *svp != uninit_sv)
15564                 break;
15565         }
15566         return varname(NULL, '$', obase->op_targ,
15567                        NULL, (I8)obase->op_private, FUV_SUBSCRIPT_ARRAY);
15568     case OP_AELEMFAST:
15569         {
15570             gv = cGVOPx_gv(obase);
15571             if (!gv)
15572                 break;
15573             if (match) {
15574                 SV **svp;
15575                 AV *const av = GvAV(gv);
15576                 if (!av || SvRMAGICAL(av))
15577                     break;
15578                 svp = av_fetch(av, (I8)obase->op_private, FALSE);
15579                 if (!svp || *svp != uninit_sv)
15580                     break;
15581             }
15582             return varname(gv, '$', 0,
15583                     NULL, (I8)obase->op_private, FUV_SUBSCRIPT_ARRAY);
15584         }
15585         NOT_REACHED; /* NOTREACHED */
15586
15587     case OP_EXISTS:
15588         o = cUNOPx(obase)->op_first;
15589         if (!o || o->op_type != OP_NULL ||
15590                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
15591             break;
15592         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
15593
15594     case OP_AELEM:
15595     case OP_HELEM:
15596     {
15597         bool negate = FALSE;
15598
15599         if (PL_op == obase)
15600             /* $a[uninit_expr] or $h{uninit_expr} */
15601             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
15602
15603         gv = NULL;
15604         o = cBINOPx(obase)->op_first;
15605         kid = cBINOPx(obase)->op_last;
15606
15607         /* get the av or hv, and optionally the gv */
15608         sv = NULL;
15609         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
15610             sv = PAD_SV(o->op_targ);
15611         }
15612         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
15613                 && cUNOPo->op_first->op_type == OP_GV)
15614         {
15615             gv = cGVOPx_gv(cUNOPo->op_first);
15616             if (!gv)
15617                 break;
15618             sv = o->op_type
15619                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
15620         }
15621         if (!sv)
15622             break;
15623
15624         if (kid && kid->op_type == OP_NEGATE) {
15625             negate = TRUE;
15626             kid = cUNOPx(kid)->op_first;
15627         }
15628
15629         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
15630             /* index is constant */
15631             SV* kidsv;
15632             if (negate) {
15633                 kidsv = newSVpvs_flags("-", SVs_TEMP);
15634                 sv_catsv(kidsv, cSVOPx_sv(kid));
15635             }
15636             else
15637                 kidsv = cSVOPx_sv(kid);
15638             if (match) {
15639                 if (SvMAGICAL(sv))
15640                     break;
15641                 if (obase->op_type == OP_HELEM) {
15642                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
15643                     if (!he || HeVAL(he) != uninit_sv)
15644                         break;
15645                 }
15646                 else {
15647                     SV * const  opsv = cSVOPx_sv(kid);
15648                     const IV  opsviv = SvIV(opsv);
15649                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
15650                         negate ? - opsviv : opsviv,
15651                         FALSE);
15652                     if (!svp || *svp != uninit_sv)
15653                         break;
15654                 }
15655             }
15656             if (obase->op_type == OP_HELEM)
15657                 return varname(gv, '%', o->op_targ,
15658                             kidsv, 0, FUV_SUBSCRIPT_HASH);
15659             else
15660                 return varname(gv, '@', o->op_targ, NULL,
15661                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
15662                     FUV_SUBSCRIPT_ARRAY);
15663         }
15664         else  {
15665             /* index is an expression;
15666              * attempt to find a match within the aggregate */
15667             if (obase->op_type == OP_HELEM) {
15668                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
15669                 if (keysv)
15670                     return varname(gv, '%', o->op_targ,
15671                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
15672             }
15673             else {
15674                 const I32 index
15675                     = find_array_subscript((const AV *)sv, uninit_sv);
15676                 if (index >= 0)
15677                     return varname(gv, '@', o->op_targ,
15678                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
15679             }
15680             if (match)
15681                 break;
15682             return varname(gv,
15683                 (char)((o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
15684                 ? '@' : '%'),
15685                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
15686         }
15687         NOT_REACHED; /* NOTREACHED */
15688     }
15689
15690     case OP_AASSIGN:
15691         /* only examine RHS */
15692         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
15693
15694     case OP_OPEN:
15695         o = cUNOPx(obase)->op_first;
15696         if (   o->op_type == OP_PUSHMARK
15697            || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)
15698         )
15699             o = OP_SIBLING(o);
15700
15701         if (!OP_HAS_SIBLING(o)) {
15702             /* one-arg version of open is highly magical */
15703
15704             if (o->op_type == OP_GV) { /* open FOO; */
15705                 gv = cGVOPx_gv(o);
15706                 if (match && GvSV(gv) != uninit_sv)
15707                     break;
15708                 return varname(gv, '$', 0,
15709                             NULL, 0, FUV_SUBSCRIPT_NONE);
15710             }
15711             /* other possibilities not handled are:
15712              * open $x; or open my $x;  should return '${*$x}'
15713              * open expr;               should return '$'.expr ideally
15714              */
15715              break;
15716         }
15717         goto do_op;
15718
15719     /* ops where $_ may be an implicit arg */
15720     case OP_TRANS:
15721     case OP_TRANSR:
15722     case OP_SUBST:
15723     case OP_MATCH:
15724         if ( !(obase->op_flags & OPf_STACKED)) {
15725             if (uninit_sv == DEFSV)
15726                 return newSVpvs_flags("$_", SVs_TEMP);
15727             else if (obase->op_targ
15728                   && uninit_sv == PAD_SVl(obase->op_targ))
15729                 return varname(NULL, '$', obase->op_targ, NULL, 0,
15730                                FUV_SUBSCRIPT_NONE);
15731         }
15732         goto do_op;
15733
15734     case OP_PRTF:
15735     case OP_PRINT:
15736     case OP_SAY:
15737         match = 1; /* print etc can return undef on defined args */
15738         /* skip filehandle as it can't produce 'undef' warning  */
15739         o = cUNOPx(obase)->op_first;
15740         if ((obase->op_flags & OPf_STACKED)
15741             &&
15742                (   o->op_type == OP_PUSHMARK
15743                || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)))
15744             o = OP_SIBLING(OP_SIBLING(o));
15745         goto do_op2;
15746
15747
15748     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
15749     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
15750
15751         /* the following ops are capable of returning PL_sv_undef even for
15752          * defined arg(s) */
15753
15754     case OP_BACKTICK:
15755     case OP_PIPE_OP:
15756     case OP_FILENO:
15757     case OP_BINMODE:
15758     case OP_TIED:
15759     case OP_GETC:
15760     case OP_SYSREAD:
15761     case OP_SEND:
15762     case OP_IOCTL:
15763     case OP_SOCKET:
15764     case OP_SOCKPAIR:
15765     case OP_BIND:
15766     case OP_CONNECT:
15767     case OP_LISTEN:
15768     case OP_ACCEPT:
15769     case OP_SHUTDOWN:
15770     case OP_SSOCKOPT:
15771     case OP_GETPEERNAME:
15772     case OP_FTRREAD:
15773     case OP_FTRWRITE:
15774     case OP_FTREXEC:
15775     case OP_FTROWNED:
15776     case OP_FTEREAD:
15777     case OP_FTEWRITE:
15778     case OP_FTEEXEC:
15779     case OP_FTEOWNED:
15780     case OP_FTIS:
15781     case OP_FTZERO:
15782     case OP_FTSIZE:
15783     case OP_FTFILE:
15784     case OP_FTDIR:
15785     case OP_FTLINK:
15786     case OP_FTPIPE:
15787     case OP_FTSOCK:
15788     case OP_FTBLK:
15789     case OP_FTCHR:
15790     case OP_FTTTY:
15791     case OP_FTSUID:
15792     case OP_FTSGID:
15793     case OP_FTSVTX:
15794     case OP_FTTEXT:
15795     case OP_FTBINARY:
15796     case OP_FTMTIME:
15797     case OP_FTATIME:
15798     case OP_FTCTIME:
15799     case OP_READLINK:
15800     case OP_OPEN_DIR:
15801     case OP_READDIR:
15802     case OP_TELLDIR:
15803     case OP_SEEKDIR:
15804     case OP_REWINDDIR:
15805     case OP_CLOSEDIR:
15806     case OP_GMTIME:
15807     case OP_ALARM:
15808     case OP_SEMGET:
15809     case OP_GETLOGIN:
15810     case OP_UNDEF:
15811     case OP_SUBSTR:
15812     case OP_AEACH:
15813     case OP_EACH:
15814     case OP_SORT:
15815     case OP_CALLER:
15816     case OP_DOFILE:
15817     case OP_PROTOTYPE:
15818     case OP_NCMP:
15819     case OP_SMARTMATCH:
15820     case OP_UNPACK:
15821     case OP_SYSOPEN:
15822     case OP_SYSSEEK:
15823         match = 1;
15824         goto do_op;
15825
15826     case OP_ENTERSUB:
15827     case OP_GOTO:
15828         /* XXX tmp hack: these two may call an XS sub, and currently
15829           XS subs don't have a SUB entry on the context stack, so CV and
15830           pad determination goes wrong, and BAD things happen. So, just
15831           don't try to determine the value under those circumstances.
15832           Need a better fix at dome point. DAPM 11/2007 */
15833         break;
15834
15835     case OP_FLIP:
15836     case OP_FLOP:
15837     {
15838         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
15839         if (gv && GvSV(gv) == uninit_sv)
15840             return newSVpvs_flags("$.", SVs_TEMP);
15841         goto do_op;
15842     }
15843
15844     case OP_POS:
15845         /* def-ness of rval pos() is independent of the def-ness of its arg */
15846         if ( !(obase->op_flags & OPf_MOD))
15847             break;
15848
15849     case OP_SCHOMP:
15850     case OP_CHOMP:
15851         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
15852             return newSVpvs_flags("${$/}", SVs_TEMP);
15853         /* FALLTHROUGH */
15854
15855     default:
15856     do_op:
15857         if (!(obase->op_flags & OPf_KIDS))
15858             break;
15859         o = cUNOPx(obase)->op_first;
15860         
15861     do_op2:
15862         if (!o)
15863             break;
15864
15865         /* This loop checks all the kid ops, skipping any that cannot pos-
15866          * sibly be responsible for the uninitialized value; i.e., defined
15867          * constants and ops that return nothing.  If there is only one op
15868          * left that is not skipped, then we *know* it is responsible for
15869          * the uninitialized value.  If there is more than one op left, we
15870          * have to look for an exact match in the while() loop below.
15871          * Note that we skip padrange, because the individual pad ops that
15872          * it replaced are still in the tree, so we work on them instead.
15873          */
15874         o2 = NULL;
15875         for (kid=o; kid; kid = OP_SIBLING(kid)) {
15876             const OPCODE type = kid->op_type;
15877             if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
15878               || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
15879               || (type == OP_PUSHMARK)
15880               || (type == OP_PADRANGE)
15881             )
15882             continue;
15883
15884             if (o2) { /* more than one found */
15885                 o2 = NULL;
15886                 break;
15887             }
15888             o2 = kid;
15889         }
15890         if (o2)
15891             return find_uninit_var(o2, uninit_sv, match);
15892
15893         /* scan all args */
15894         while (o) {
15895             sv = find_uninit_var(o, uninit_sv, 1);
15896             if (sv)
15897                 return sv;
15898             o = OP_SIBLING(o);
15899         }
15900         break;
15901     }
15902     return NULL;
15903 }
15904
15905
15906 /*
15907 =for apidoc report_uninit
15908
15909 Print appropriate "Use of uninitialized variable" warning.
15910
15911 =cut
15912 */
15913
15914 void
15915 Perl_report_uninit(pTHX_ const SV *uninit_sv)
15916 {
15917     if (PL_op) {
15918         SV* varname = NULL;
15919         const char *desc;
15920         if (uninit_sv && PL_curpad) {
15921             varname = find_uninit_var(PL_op, uninit_sv,0);
15922             if (varname)
15923                 sv_insert(varname, 0, 0, " ", 1);
15924         }
15925         desc = PL_op->op_type == OP_STRINGIFY && PL_op->op_folded
15926                 ? "join or string"
15927                 : OP_DESC(PL_op);
15928         /* PL_warn_uninit_sv is constant */
15929         GCC_DIAG_IGNORE(-Wformat-nonliteral);
15930         /* diag_listed_as: Use of uninitialized value%s */
15931         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
15932                 SVfARG(varname ? varname : &PL_sv_no),
15933                 " in ", desc);
15934         GCC_DIAG_RESTORE;
15935     }
15936     else {
15937         /* PL_warn_uninit is constant */
15938         GCC_DIAG_IGNORE(-Wformat-nonliteral);
15939         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
15940                     "", "", "");
15941         GCC_DIAG_RESTORE;
15942     }
15943 }
15944
15945 /*
15946  * Local variables:
15947  * c-indentation-style: bsd
15948  * c-basic-offset: 4
15949  * indent-tabs-mode: nil
15950  * End:
15951  *
15952  * ex: set ts=8 sts=4 sw=4 et:
15953  */