This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
6b56726f840e8d42ee209d5f750b1cec9adda040
[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 POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
263 */
264 #  define POSION_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 POSION_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         POSION_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 /*
413 =head1 SV Manipulation Functions
414
415 =for apidoc sv_add_arena
416
417 Given a chunk of memory, link it to the head of the list of arenas,
418 and split it into a list of free SVs.
419
420 =cut
421 */
422
423 static void
424 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
425 {
426     SV *const sva = MUTABLE_SV(ptr);
427     SV* sv;
428     SV* svend;
429
430     PERL_ARGS_ASSERT_SV_ADD_ARENA;
431
432     /* The first SV in an arena isn't an SV. */
433     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
434     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
435     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
436
437     PL_sv_arenaroot = sva;
438     PL_sv_root = sva + 1;
439
440     svend = &sva[SvREFCNT(sva) - 1];
441     sv = sva + 1;
442     while (sv < svend) {
443         SvARENA_CHAIN_SET(sv, (sv + 1));
444 #ifdef DEBUGGING
445         SvREFCNT(sv) = 0;
446 #endif
447         /* Must always set typemask because it's always checked in on cleanup
448            when the arenas are walked looking for objects.  */
449         SvFLAGS(sv) = SVTYPEMASK;
450         sv++;
451     }
452     SvARENA_CHAIN_SET(sv, 0);
453 #ifdef DEBUGGING
454     SvREFCNT(sv) = 0;
455 #endif
456     SvFLAGS(sv) = SVTYPEMASK;
457 }
458
459 /* visit(): call the named function for each non-free SV in the arenas
460  * whose flags field matches the flags/mask args. */
461
462 STATIC I32
463 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
464 {
465     SV* sva;
466     I32 visited = 0;
467
468     PERL_ARGS_ASSERT_VISIT;
469
470     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
471         const SV * const svend = &sva[SvREFCNT(sva)];
472         SV* sv;
473         for (sv = sva + 1; sv < svend; ++sv) {
474             if (SvTYPE(sv) != (svtype)SVTYPEMASK
475                     && (sv->sv_flags & mask) == flags
476                     && SvREFCNT(sv))
477             {
478                 (*f)(aTHX_ sv);
479                 ++visited;
480             }
481         }
482     }
483     return visited;
484 }
485
486 #ifdef DEBUGGING
487
488 /* called by sv_report_used() for each live SV */
489
490 static void
491 do_report_used(pTHX_ SV *const sv)
492 {
493     if (SvTYPE(sv) != (svtype)SVTYPEMASK) {
494         PerlIO_printf(Perl_debug_log, "****\n");
495         sv_dump(sv);
496     }
497 }
498 #endif
499
500 /*
501 =for apidoc sv_report_used
502
503 Dump the contents of all SVs not yet freed (debugging aid).
504
505 =cut
506 */
507
508 void
509 Perl_sv_report_used(pTHX)
510 {
511 #ifdef DEBUGGING
512     visit(do_report_used, 0, 0);
513 #else
514     PERL_UNUSED_CONTEXT;
515 #endif
516 }
517
518 /* called by sv_clean_objs() for each live SV */
519
520 static void
521 do_clean_objs(pTHX_ SV *const ref)
522 {
523     assert (SvROK(ref));
524     {
525         SV * const target = SvRV(ref);
526         if (SvOBJECT(target)) {
527             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
528             if (SvWEAKREF(ref)) {
529                 sv_del_backref(target, ref);
530                 SvWEAKREF_off(ref);
531                 SvRV_set(ref, NULL);
532             } else {
533                 SvROK_off(ref);
534                 SvRV_set(ref, NULL);
535                 SvREFCNT_dec_NN(target);
536             }
537         }
538     }
539 }
540
541
542 /* clear any slots in a GV which hold objects - except IO;
543  * called by sv_clean_objs() for each live GV */
544
545 static void
546 do_clean_named_objs(pTHX_ SV *const sv)
547 {
548     SV *obj;
549     assert(SvTYPE(sv) == SVt_PVGV);
550     assert(isGV_with_GP(sv));
551     if (!GvGP(sv))
552         return;
553
554     /* freeing GP entries may indirectly free the current GV;
555      * hold onto it while we mess with the GP slots */
556     SvREFCNT_inc(sv);
557
558     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
559         DEBUG_D((PerlIO_printf(Perl_debug_log,
560                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
561         GvSV(sv) = NULL;
562         SvREFCNT_dec_NN(obj);
563     }
564     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
565         DEBUG_D((PerlIO_printf(Perl_debug_log,
566                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
567         GvAV(sv) = NULL;
568         SvREFCNT_dec_NN(obj);
569     }
570     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
571         DEBUG_D((PerlIO_printf(Perl_debug_log,
572                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
573         GvHV(sv) = NULL;
574         SvREFCNT_dec_NN(obj);
575     }
576     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
577         DEBUG_D((PerlIO_printf(Perl_debug_log,
578                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
579         GvCV_set(sv, NULL);
580         SvREFCNT_dec_NN(obj);
581     }
582     SvREFCNT_dec_NN(sv); /* undo the inc above */
583 }
584
585 /* clear any IO slots in a GV which hold objects (except stderr, defout);
586  * called by sv_clean_objs() for each live GV */
587
588 static void
589 do_clean_named_io_objs(pTHX_ SV *const sv)
590 {
591     SV *obj;
592     assert(SvTYPE(sv) == SVt_PVGV);
593     assert(isGV_with_GP(sv));
594     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
595         return;
596
597     SvREFCNT_inc(sv);
598     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
599         DEBUG_D((PerlIO_printf(Perl_debug_log,
600                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
601         GvIOp(sv) = NULL;
602         SvREFCNT_dec_NN(obj);
603     }
604     SvREFCNT_dec_NN(sv); /* undo the inc above */
605 }
606
607 /* Void wrapper to pass to visit() */
608 static void
609 do_curse(pTHX_ SV * const sv) {
610     if ((PL_stderrgv && GvGP(PL_stderrgv) && (SV*)GvIO(PL_stderrgv) == sv)
611      || (PL_defoutgv && GvGP(PL_defoutgv) && (SV*)GvIO(PL_defoutgv) == sv))
612         return;
613     (void)curse(sv, 0);
614 }
615
616 /*
617 =for apidoc sv_clean_objs
618
619 Attempt to destroy all objects not yet freed.
620
621 =cut
622 */
623
624 void
625 Perl_sv_clean_objs(pTHX)
626 {
627     GV *olddef, *olderr;
628     PL_in_clean_objs = TRUE;
629     visit(do_clean_objs, SVf_ROK, SVf_ROK);
630     /* Some barnacles may yet remain, clinging to typeglobs.
631      * Run the non-IO destructors first: they may want to output
632      * error messages, close files etc */
633     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
634     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
635     /* And if there are some very tenacious barnacles clinging to arrays,
636        closures, or what have you.... */
637     visit(do_curse, SVs_OBJECT, SVs_OBJECT);
638     olddef = PL_defoutgv;
639     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
640     if (olddef && isGV_with_GP(olddef))
641         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
642     olderr = PL_stderrgv;
643     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
644     if (olderr && isGV_with_GP(olderr))
645         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
646     SvREFCNT_dec(olddef);
647     PL_in_clean_objs = FALSE;
648 }
649
650 /* called by sv_clean_all() for each live SV */
651
652 static void
653 do_clean_all(pTHX_ SV *const sv)
654 {
655     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
656         /* don't clean pid table and strtab */
657         return;
658     }
659     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
660     SvFLAGS(sv) |= SVf_BREAK;
661     SvREFCNT_dec_NN(sv);
662 }
663
664 /*
665 =for apidoc sv_clean_all
666
667 Decrement the refcnt of each remaining SV, possibly triggering a
668 cleanup.  This function may have to be called multiple times to free
669 SVs which are in complex self-referential hierarchies.
670
671 =cut
672 */
673
674 I32
675 Perl_sv_clean_all(pTHX)
676 {
677     I32 cleaned;
678     PL_in_clean_all = TRUE;
679     cleaned = visit(do_clean_all, 0,0);
680     return cleaned;
681 }
682
683 /*
684   ARENASETS: a meta-arena implementation which separates arena-info
685   into struct arena_set, which contains an array of struct
686   arena_descs, each holding info for a single arena.  By separating
687   the meta-info from the arena, we recover the 1st slot, formerly
688   borrowed for list management.  The arena_set is about the size of an
689   arena, avoiding the needless malloc overhead of a naive linked-list.
690
691   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
692   memory in the last arena-set (1/2 on average).  In trade, we get
693   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
694   smaller types).  The recovery of the wasted space allows use of
695   small arenas for large, rare body types, by changing array* fields
696   in body_details_by_type[] below.
697 */
698 struct arena_desc {
699     char       *arena;          /* the raw storage, allocated aligned */
700     size_t      size;           /* its size ~4k typ */
701     svtype      utype;          /* bodytype stored in arena */
702 };
703
704 struct arena_set;
705
706 /* Get the maximum number of elements in set[] such that struct arena_set
707    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
708    therefore likely to be 1 aligned memory page.  */
709
710 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
711                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
712
713 struct arena_set {
714     struct arena_set* next;
715     unsigned int   set_size;    /* ie ARENAS_PER_SET */
716     unsigned int   curr;        /* index of next available arena-desc */
717     struct arena_desc set[ARENAS_PER_SET];
718 };
719
720 /*
721 =for apidoc sv_free_arenas
722
723 Deallocate the memory used by all arenas.  Note that all the individual SV
724 heads and bodies within the arenas must already have been freed.
725
726 =cut
727
728 */
729 void
730 Perl_sv_free_arenas(pTHX)
731 {
732     SV* sva;
733     SV* svanext;
734     unsigned int i;
735
736     /* Free arenas here, but be careful about fake ones.  (We assume
737        contiguity of the fake ones with the corresponding real ones.) */
738
739     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
740         svanext = MUTABLE_SV(SvANY(sva));
741         while (svanext && SvFAKE(svanext))
742             svanext = MUTABLE_SV(SvANY(svanext));
743
744         if (!SvFAKE(sva))
745             Safefree(sva);
746     }
747
748     {
749         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
750
751         while (aroot) {
752             struct arena_set *current = aroot;
753             i = aroot->curr;
754             while (i--) {
755                 assert(aroot->set[i].arena);
756                 Safefree(aroot->set[i].arena);
757             }
758             aroot = aroot->next;
759             Safefree(current);
760         }
761     }
762     PL_body_arenas = 0;
763
764     i = PERL_ARENA_ROOTS_SIZE;
765     while (i--)
766         PL_body_roots[i] = 0;
767
768     PL_sv_arenaroot = 0;
769     PL_sv_root = 0;
770 }
771
772 /*
773   Here are mid-level routines that manage the allocation of bodies out
774   of the various arenas.  There are 5 kinds of arenas:
775
776   1. SV-head arenas, which are discussed and handled above
777   2. regular body arenas
778   3. arenas for reduced-size bodies
779   4. Hash-Entry arenas
780
781   Arena types 2 & 3 are chained by body-type off an array of
782   arena-root pointers, which is indexed by svtype.  Some of the
783   larger/less used body types are malloced singly, since a large
784   unused block of them is wasteful.  Also, several svtypes dont have
785   bodies; the data fits into the sv-head itself.  The arena-root
786   pointer thus has a few unused root-pointers (which may be hijacked
787   later for arena types 4,5)
788
789   3 differs from 2 as an optimization; some body types have several
790   unused fields in the front of the structure (which are kept in-place
791   for consistency).  These bodies can be allocated in smaller chunks,
792   because the leading fields arent accessed.  Pointers to such bodies
793   are decremented to point at the unused 'ghost' memory, knowing that
794   the pointers are used with offsets to the real memory.
795
796
797 =head1 SV-Body Allocation
798
799 =cut
800
801 Allocation of SV-bodies is similar to SV-heads, differing as follows;
802 the allocation mechanism is used for many body types, so is somewhat
803 more complicated, it uses arena-sets, and has no need for still-live
804 SV detection.
805
806 At the outermost level, (new|del)_X*V macros return bodies of the
807 appropriate type.  These macros call either (new|del)_body_type or
808 (new|del)_body_allocated macro pairs, depending on specifics of the
809 type.  Most body types use the former pair, the latter pair is used to
810 allocate body types with "ghost fields".
811
812 "ghost fields" are fields that are unused in certain types, and
813 consequently don't need to actually exist.  They are declared because
814 they're part of a "base type", which allows use of functions as
815 methods.  The simplest examples are AVs and HVs, 2 aggregate types
816 which don't use the fields which support SCALAR semantics.
817
818 For these types, the arenas are carved up into appropriately sized
819 chunks, we thus avoid wasted memory for those unaccessed members.
820 When bodies are allocated, we adjust the pointer back in memory by the
821 size of the part not allocated, so it's as if we allocated the full
822 structure.  (But things will all go boom if you write to the part that
823 is "not there", because you'll be overwriting the last members of the
824 preceding structure in memory.)
825
826 We calculate the correction using the STRUCT_OFFSET macro on the first
827 member present.  If the allocated structure is smaller (no initial NV
828 actually allocated) then the net effect is to subtract the size of the NV
829 from the pointer, to return a new pointer as if an initial NV were actually
830 allocated.  (We were using structures named *_allocated for this, but
831 this turned out to be a subtle bug, because a structure without an NV
832 could have a lower alignment constraint, but the compiler is allowed to
833 optimised accesses based on the alignment constraint of the actual pointer
834 to the full structure, for example, using a single 64 bit load instruction
835 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
836
837 This is the same trick as was used for NV and IV bodies.  Ironically it
838 doesn't need to be used for NV bodies any more, because NV is now at
839 the start of the structure.  IV bodies, and also in some builds NV bodies,
840 don't need it either, because they are no longer allocated.
841
842 In turn, the new_body_* allocators call S_new_body(), which invokes
843 new_body_inline macro, which takes a lock, and takes a body off the
844 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
845 necessary to refresh an empty list.  Then the lock is released, and
846 the body is returned.
847
848 Perl_more_bodies allocates a new arena, and carves it up into an array of N
849 bodies, which it strings into a linked list.  It looks up arena-size
850 and body-size from the body_details table described below, thus
851 supporting the multiple body-types.
852
853 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
854 the (new|del)_X*V macros are mapped directly to malloc/free.
855
856 For each sv-type, struct body_details bodies_by_type[] carries
857 parameters which control these aspects of SV handling:
858
859 Arena_size determines whether arenas are used for this body type, and if
860 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
861 zero, forcing individual mallocs and frees.
862
863 Body_size determines how big a body is, and therefore how many fit into
864 each arena.  Offset carries the body-pointer adjustment needed for
865 "ghost fields", and is used in *_allocated macros.
866
867 But its main purpose is to parameterize info needed in
868 Perl_sv_upgrade().  The info here dramatically simplifies the function
869 vs the implementation in 5.8.8, making it table-driven.  All fields
870 are used for this, except for arena_size.
871
872 For the sv-types that have no bodies, arenas are not used, so those
873 PL_body_roots[sv_type] are unused, and can be overloaded.  In
874 something of a special case, SVt_NULL is borrowed for HE arenas;
875 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
876 bodies_by_type[SVt_NULL] slot is not used, as the table is not
877 available in hv.c.
878
879 */
880
881 struct body_details {
882     U8 body_size;       /* Size to allocate  */
883     U8 copy;            /* Size of structure to copy (may be shorter)  */
884     U8 offset;          /* Size of unalloced ghost fields to first alloced field*/
885     PERL_BITFIELD8 type : 4;        /* We have space for a sanity check. */
886     PERL_BITFIELD8 cant_upgrade : 1;/* Cannot upgrade this type */
887     PERL_BITFIELD8 zero_nv : 1;     /* zero the NV when upgrading from this */
888     PERL_BITFIELD8 arena : 1;       /* Allocated from an arena */
889     U32 arena_size;                 /* Size of arena to allocate */
890 };
891
892 #define HADNV FALSE
893 #define NONV TRUE
894
895
896 #ifdef PURIFY
897 /* With -DPURFIY we allocate everything directly, and don't use arenas.
898    This seems a rather elegant way to simplify some of the code below.  */
899 #define HASARENA FALSE
900 #else
901 #define HASARENA TRUE
902 #endif
903 #define NOARENA FALSE
904
905 /* Size the arenas to exactly fit a given number of bodies.  A count
906    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
907    simplifying the default.  If count > 0, the arena is sized to fit
908    only that many bodies, allowing arenas to be used for large, rare
909    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
910    limited by PERL_ARENA_SIZE, so we can safely oversize the
911    declarations.
912  */
913 #define FIT_ARENA0(body_size)                           \
914     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
915 #define FIT_ARENAn(count,body_size)                     \
916     ( count * body_size <= PERL_ARENA_SIZE)             \
917     ? count * body_size                                 \
918     : FIT_ARENA0 (body_size)
919 #define FIT_ARENA(count,body_size)                      \
920    (U32)(count                                          \
921     ? FIT_ARENAn (count, body_size)                     \
922     : FIT_ARENA0 (body_size))
923
924 /* Calculate the length to copy. Specifically work out the length less any
925    final padding the compiler needed to add.  See the comment in sv_upgrade
926    for why copying the padding proved to be a bug.  */
927
928 #define copy_length(type, last_member) \
929         STRUCT_OFFSET(type, last_member) \
930         + sizeof (((type*)SvANY((const SV *)0))->last_member)
931
932 static const struct body_details bodies_by_type[] = {
933     /* HEs use this offset for their arena.  */
934     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
935
936     /* IVs are in the head, so the allocation size is 0.  */
937     { 0,
938       sizeof(IV), /* This is used to copy out the IV body.  */
939       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
940       NOARENA /* IVS don't need an arena  */, 0
941     },
942
943 #if NVSIZE <= IVSIZE
944     { 0, sizeof(NV),
945       STRUCT_OFFSET(XPVNV, xnv_u),
946       SVt_NV, FALSE, HADNV, NOARENA, 0 },
947 #else
948     { sizeof(NV), sizeof(NV),
949       STRUCT_OFFSET(XPVNV, xnv_u),
950       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
951 #endif
952
953     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
954       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
955       + STRUCT_OFFSET(XPV, xpv_cur),
956       SVt_PV, FALSE, NONV, HASARENA,
957       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
958
959     { sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur),
960       copy_length(XINVLIST, is_offset) - STRUCT_OFFSET(XPV, xpv_cur),
961       + STRUCT_OFFSET(XPV, xpv_cur),
962       SVt_INVLIST, TRUE, NONV, HASARENA,
963       FIT_ARENA(0, sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur)) },
964
965     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
966       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
967       + STRUCT_OFFSET(XPV, xpv_cur),
968       SVt_PVIV, FALSE, NONV, HASARENA,
969       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
970
971     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
972       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
973       + STRUCT_OFFSET(XPV, xpv_cur),
974       SVt_PVNV, FALSE, HADNV, HASARENA,
975       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
976
977     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
978       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
979
980     { sizeof(regexp),
981       sizeof(regexp),
982       0,
983       SVt_REGEXP, TRUE, NONV, HASARENA,
984       FIT_ARENA(0, sizeof(regexp))
985     },
986
987     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
988       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
989     
990     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
991       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
992
993     { sizeof(XPVAV),
994       copy_length(XPVAV, xav_alloc),
995       0,
996       SVt_PVAV, TRUE, NONV, HASARENA,
997       FIT_ARENA(0, sizeof(XPVAV)) },
998
999     { sizeof(XPVHV),
1000       copy_length(XPVHV, xhv_max),
1001       0,
1002       SVt_PVHV, TRUE, NONV, HASARENA,
1003       FIT_ARENA(0, sizeof(XPVHV)) },
1004
1005     { sizeof(XPVCV),
1006       sizeof(XPVCV),
1007       0,
1008       SVt_PVCV, TRUE, NONV, HASARENA,
1009       FIT_ARENA(0, sizeof(XPVCV)) },
1010
1011     { sizeof(XPVFM),
1012       sizeof(XPVFM),
1013       0,
1014       SVt_PVFM, TRUE, NONV, NOARENA,
1015       FIT_ARENA(20, sizeof(XPVFM)) },
1016
1017     { sizeof(XPVIO),
1018       sizeof(XPVIO),
1019       0,
1020       SVt_PVIO, TRUE, NONV, HASARENA,
1021       FIT_ARENA(24, sizeof(XPVIO)) },
1022 };
1023
1024 #define new_body_allocated(sv_type)             \
1025     (void *)((char *)S_new_body(aTHX_ sv_type)  \
1026              - bodies_by_type[sv_type].offset)
1027
1028 /* return a thing to the free list */
1029
1030 #define del_body(thing, root)                           \
1031     STMT_START {                                        \
1032         void ** const thing_copy = (void **)thing;      \
1033         *thing_copy = *root;                            \
1034         *root = (void*)thing_copy;                      \
1035     } STMT_END
1036
1037 #ifdef PURIFY
1038 #if !(NVSIZE <= IVSIZE)
1039 #  define new_XNV()     safemalloc(sizeof(XPVNV))
1040 #endif
1041 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
1042 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
1043
1044 #define del_XPVGV(p)    safefree(p)
1045
1046 #else /* !PURIFY */
1047
1048 #if !(NVSIZE <= IVSIZE)
1049 #  define new_XNV()     new_body_allocated(SVt_NV)
1050 #endif
1051 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
1052 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
1053
1054 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
1055                                  &PL_body_roots[SVt_PVGV])
1056
1057 #endif /* PURIFY */
1058
1059 /* no arena for you! */
1060
1061 #define new_NOARENA(details) \
1062         safemalloc((details)->body_size + (details)->offset)
1063 #define new_NOARENAZ(details) \
1064         safecalloc((details)->body_size + (details)->offset, 1)
1065
1066 void *
1067 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1068                   const size_t arena_size)
1069 {
1070     void ** const root = &PL_body_roots[sv_type];
1071     struct arena_desc *adesc;
1072     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1073     unsigned int curr;
1074     char *start;
1075     const char *end;
1076     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1077 #if defined(DEBUGGING) && defined(PERL_GLOBAL_STRUCT)
1078     dVAR;
1079 #endif
1080 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1081     static bool done_sanity_check;
1082
1083     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1084      * variables like done_sanity_check. */
1085     if (!done_sanity_check) {
1086         unsigned int i = SVt_LAST;
1087
1088         done_sanity_check = TRUE;
1089
1090         while (i--)
1091             assert (bodies_by_type[i].type == i);
1092     }
1093 #endif
1094
1095     assert(arena_size);
1096
1097     /* may need new arena-set to hold new arena */
1098     if (!aroot || aroot->curr >= aroot->set_size) {
1099         struct arena_set *newroot;
1100         Newxz(newroot, 1, struct arena_set);
1101         newroot->set_size = ARENAS_PER_SET;
1102         newroot->next = aroot;
1103         aroot = newroot;
1104         PL_body_arenas = (void *) newroot;
1105         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1106     }
1107
1108     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1109     curr = aroot->curr++;
1110     adesc = &(aroot->set[curr]);
1111     assert(!adesc->arena);
1112     
1113     Newx(adesc->arena, good_arena_size, char);
1114     adesc->size = good_arena_size;
1115     adesc->utype = sv_type;
1116     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
1117                           curr, (void*)adesc->arena, (UV)good_arena_size));
1118
1119     start = (char *) adesc->arena;
1120
1121     /* Get the address of the byte after the end of the last body we can fit.
1122        Remember, this is integer division:  */
1123     end = start + good_arena_size / body_size * body_size;
1124
1125     /* computed count doesn't reflect the 1st slot reservation */
1126 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1127     DEBUG_m(PerlIO_printf(Perl_debug_log,
1128                           "arena %p end %p arena-size %d (from %d) type %d "
1129                           "size %d ct %d\n",
1130                           (void*)start, (void*)end, (int)good_arena_size,
1131                           (int)arena_size, sv_type, (int)body_size,
1132                           (int)good_arena_size / (int)body_size));
1133 #else
1134     DEBUG_m(PerlIO_printf(Perl_debug_log,
1135                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1136                           (void*)start, (void*)end,
1137                           (int)arena_size, sv_type, (int)body_size,
1138                           (int)good_arena_size / (int)body_size));
1139 #endif
1140     *root = (void *)start;
1141
1142     while (1) {
1143         /* Where the next body would start:  */
1144         char * const next = start + body_size;
1145
1146         if (next >= end) {
1147             /* This is the last body:  */
1148             assert(next == end);
1149
1150             *(void **)start = 0;
1151             return *root;
1152         }
1153
1154         *(void**) start = (void *)next;
1155         start = next;
1156     }
1157 }
1158
1159 /* grab a new thing from the free list, allocating more if necessary.
1160    The inline version is used for speed in hot routines, and the
1161    function using it serves the rest (unless PURIFY).
1162 */
1163 #define new_body_inline(xpv, sv_type) \
1164     STMT_START { \
1165         void ** const r3wt = &PL_body_roots[sv_type]; \
1166         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1167           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1168                                              bodies_by_type[sv_type].body_size,\
1169                                              bodies_by_type[sv_type].arena_size)); \
1170         *(r3wt) = *(void**)(xpv); \
1171     } STMT_END
1172
1173 #ifndef PURIFY
1174
1175 STATIC void *
1176 S_new_body(pTHX_ const svtype sv_type)
1177 {
1178     void *xpv;
1179     new_body_inline(xpv, sv_type);
1180     return xpv;
1181 }
1182
1183 #endif
1184
1185 static const struct body_details fake_rv =
1186     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1187
1188 /*
1189 =for apidoc sv_upgrade
1190
1191 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1192 SV, then copies across as much information as possible from the old body.
1193 It croaks if the SV is already in a more complex form than requested.  You
1194 generally want to use the C<SvUPGRADE> macro wrapper, which checks the type
1195 before calling C<sv_upgrade>, and hence does not croak.  See also
1196 C<svtype>.
1197
1198 =cut
1199 */
1200
1201 void
1202 Perl_sv_upgrade(pTHX_ SV *const sv, svtype new_type)
1203 {
1204     void*       old_body;
1205     void*       new_body;
1206     const svtype old_type = SvTYPE(sv);
1207     const struct body_details *new_type_details;
1208     const struct body_details *old_type_details
1209         = bodies_by_type + old_type;
1210     SV *referant = NULL;
1211
1212     PERL_ARGS_ASSERT_SV_UPGRADE;
1213
1214     if (old_type == new_type)
1215         return;
1216
1217     /* This clause was purposefully added ahead of the early return above to
1218        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1219        inference by Nick I-S that it would fix other troublesome cases. See
1220        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1221
1222        Given that shared hash key scalars are no longer PVIV, but PV, there is
1223        no longer need to unshare so as to free up the IVX slot for its proper
1224        purpose. So it's safe to move the early return earlier.  */
1225
1226     if (new_type > SVt_PVMG && SvIsCOW(sv)) {
1227         sv_force_normal_flags(sv, 0);
1228     }
1229
1230     old_body = SvANY(sv);
1231
1232     /* Copying structures onto other structures that have been neatly zeroed
1233        has a subtle gotcha. Consider XPVMG
1234
1235        +------+------+------+------+------+-------+-------+
1236        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1237        +------+------+------+------+------+-------+-------+
1238        0      4      8     12     16     20      24      28
1239
1240        where NVs are aligned to 8 bytes, so that sizeof that structure is
1241        actually 32 bytes long, with 4 bytes of padding at the end:
1242
1243        +------+------+------+------+------+-------+-------+------+
1244        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1245        +------+------+------+------+------+-------+-------+------+
1246        0      4      8     12     16     20      24      28     32
1247
1248        so what happens if you allocate memory for this structure:
1249
1250        +------+------+------+------+------+-------+-------+------+------+...
1251        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1252        +------+------+------+------+------+-------+-------+------+------+...
1253        0      4      8     12     16     20      24      28     32     36
1254
1255        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1256        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1257        started out as zero once, but it's quite possible that it isn't. So now,
1258        rather than a nicely zeroed GP, you have it pointing somewhere random.
1259        Bugs ensue.
1260
1261        (In fact, GP ends up pointing at a previous GP structure, because the
1262        principle cause of the padding in XPVMG getting garbage is a copy of
1263        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1264        this happens to be moot because XPVGV has been re-ordered, with GP
1265        no longer after STASH)
1266
1267        So we are careful and work out the size of used parts of all the
1268        structures.  */
1269
1270     switch (old_type) {
1271     case SVt_NULL:
1272         break;
1273     case SVt_IV:
1274         if (SvROK(sv)) {
1275             referant = SvRV(sv);
1276             old_type_details = &fake_rv;
1277             if (new_type == SVt_NV)
1278                 new_type = SVt_PVNV;
1279         } else {
1280             if (new_type < SVt_PVIV) {
1281                 new_type = (new_type == SVt_NV)
1282                     ? SVt_PVNV : SVt_PVIV;
1283             }
1284         }
1285         break;
1286     case SVt_NV:
1287         if (new_type < SVt_PVNV) {
1288             new_type = SVt_PVNV;
1289         }
1290         break;
1291     case SVt_PV:
1292         assert(new_type > SVt_PV);
1293         assert(SVt_IV < SVt_PV);
1294         assert(SVt_NV < SVt_PV);
1295         break;
1296     case SVt_PVIV:
1297         break;
1298     case SVt_PVNV:
1299         break;
1300     case SVt_PVMG:
1301         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1302            there's no way that it can be safely upgraded, because perl.c
1303            expects to Safefree(SvANY(PL_mess_sv))  */
1304         assert(sv != PL_mess_sv);
1305         /* This flag bit is used to mean other things in other scalar types.
1306            Given that it only has meaning inside the pad, it shouldn't be set
1307            on anything that can get upgraded.  */
1308         assert(!SvPAD_TYPED(sv));
1309         break;
1310     default:
1311         if (UNLIKELY(old_type_details->cant_upgrade))
1312             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1313                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1314     }
1315
1316     if (UNLIKELY(old_type > new_type))
1317         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1318                 (int)old_type, (int)new_type);
1319
1320     new_type_details = bodies_by_type + new_type;
1321
1322     SvFLAGS(sv) &= ~SVTYPEMASK;
1323     SvFLAGS(sv) |= new_type;
1324
1325     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1326        the return statements above will have triggered.  */
1327     assert (new_type != SVt_NULL);
1328     switch (new_type) {
1329     case SVt_IV:
1330         assert(old_type == SVt_NULL);
1331         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1332         SvIV_set(sv, 0);
1333         return;
1334     case SVt_NV:
1335         assert(old_type == SVt_NULL);
1336 #if NVSIZE <= IVSIZE
1337         SvANY(sv) = (XPVNV*)((char*)&(sv->sv_u.svu_nv) - STRUCT_OFFSET(XPVNV, xnv_u.xnv_nv));
1338 #else
1339         SvANY(sv) = new_XNV();
1340 #endif
1341         SvNV_set(sv, 0);
1342         return;
1343     case SVt_PVHV:
1344     case SVt_PVAV:
1345         assert(new_type_details->body_size);
1346
1347 #ifndef PURIFY  
1348         assert(new_type_details->arena);
1349         assert(new_type_details->arena_size);
1350         /* This points to the start of the allocated area.  */
1351         new_body_inline(new_body, new_type);
1352         Zero(new_body, new_type_details->body_size, char);
1353         new_body = ((char *)new_body) - new_type_details->offset;
1354 #else
1355         /* We always allocated the full length item with PURIFY. To do this
1356            we fake things so that arena is false for all 16 types..  */
1357         new_body = new_NOARENAZ(new_type_details);
1358 #endif
1359         SvANY(sv) = new_body;
1360         if (new_type == SVt_PVAV) {
1361             AvMAX(sv)   = -1;
1362             AvFILLp(sv) = -1;
1363             AvREAL_only(sv);
1364             if (old_type_details->body_size) {
1365                 AvALLOC(sv) = 0;
1366             } else {
1367                 /* It will have been zeroed when the new body was allocated.
1368                    Lets not write to it, in case it confuses a write-back
1369                    cache.  */
1370             }
1371         } else {
1372             assert(!SvOK(sv));
1373             SvOK_off(sv);
1374 #ifndef NODEFAULT_SHAREKEYS
1375             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1376 #endif
1377             /* start with PERL_HASH_DEFAULT_HvMAX+1 buckets: */
1378             HvMAX(sv) = PERL_HASH_DEFAULT_HvMAX;
1379         }
1380
1381         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1382            The target created by newSVrv also is, and it can have magic.
1383            However, it never has SvPVX set.
1384         */
1385         if (old_type == SVt_IV) {
1386             assert(!SvROK(sv));
1387         } else if (old_type >= SVt_PV) {
1388             assert(SvPVX_const(sv) == 0);
1389         }
1390
1391         if (old_type >= SVt_PVMG) {
1392             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1393             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1394         } else {
1395             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1396         }
1397         break;
1398
1399     case SVt_PVIV:
1400         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1401            no route from NV to PVIV, NOK can never be true  */
1402         assert(!SvNOKp(sv));
1403         assert(!SvNOK(sv));
1404     case SVt_PVIO:
1405     case SVt_PVFM:
1406     case SVt_PVGV:
1407     case SVt_PVCV:
1408     case SVt_PVLV:
1409     case SVt_INVLIST:
1410     case SVt_REGEXP:
1411     case SVt_PVMG:
1412     case SVt_PVNV:
1413     case SVt_PV:
1414
1415         assert(new_type_details->body_size);
1416         /* We always allocated the full length item with PURIFY. To do this
1417            we fake things so that arena is false for all 16 types..  */
1418         if(new_type_details->arena) {
1419             /* This points to the start of the allocated area.  */
1420             new_body_inline(new_body, new_type);
1421             Zero(new_body, new_type_details->body_size, char);
1422             new_body = ((char *)new_body) - new_type_details->offset;
1423         } else {
1424             new_body = new_NOARENAZ(new_type_details);
1425         }
1426         SvANY(sv) = new_body;
1427
1428         if (old_type_details->copy) {
1429             /* There is now the potential for an upgrade from something without
1430                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1431             int offset = old_type_details->offset;
1432             int length = old_type_details->copy;
1433
1434             if (new_type_details->offset > old_type_details->offset) {
1435                 const int difference
1436                     = new_type_details->offset - old_type_details->offset;
1437                 offset += difference;
1438                 length -= difference;
1439             }
1440             assert (length >= 0);
1441                 
1442             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1443                  char);
1444         }
1445
1446 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1447         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1448          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1449          * NV slot, but the new one does, then we need to initialise the
1450          * freshly created NV slot with whatever the correct bit pattern is
1451          * for 0.0  */
1452         if (old_type_details->zero_nv && !new_type_details->zero_nv
1453             && !isGV_with_GP(sv))
1454             SvNV_set(sv, 0);
1455 #endif
1456
1457         if (UNLIKELY(new_type == SVt_PVIO)) {
1458             IO * const io = MUTABLE_IO(sv);
1459             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1460
1461             SvOBJECT_on(io);
1462             /* Clear the stashcache because a new IO could overrule a package
1463                name */
1464             DEBUG_o(Perl_deb(aTHX_ "sv_upgrade clearing PL_stashcache\n"));
1465             hv_clear(PL_stashcache);
1466
1467             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1468             IoPAGE_LEN(sv) = 60;
1469         }
1470         if (UNLIKELY(new_type == SVt_REGEXP))
1471             sv->sv_u.svu_rx = (regexp *)new_body;
1472         else if (old_type < SVt_PV) {
1473             /* referant will be NULL unless the old type was SVt_IV emulating
1474                SVt_RV */
1475             sv->sv_u.svu_rv = referant;
1476         }
1477         break;
1478     default:
1479         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1480                    (unsigned long)new_type);
1481     }
1482
1483     /* if this is zero, this is a body-less SVt_NULL, SVt_IV/SVt_RV,
1484        and sometimes SVt_NV */
1485     if (old_type_details->body_size) {
1486 #ifdef PURIFY
1487         safefree(old_body);
1488 #else
1489         /* Note that there is an assumption that all bodies of types that
1490            can be upgraded came from arenas. Only the more complex non-
1491            upgradable types are allowed to be directly malloc()ed.  */
1492         assert(old_type_details->arena);
1493         del_body((void*)((char*)old_body + old_type_details->offset),
1494                  &PL_body_roots[old_type]);
1495 #endif
1496     }
1497 }
1498
1499 /*
1500 =for apidoc sv_backoff
1501
1502 Remove any string offset.  You should normally use the C<SvOOK_off> macro
1503 wrapper instead.
1504
1505 =cut
1506 */
1507
1508 int
1509 Perl_sv_backoff(SV *const sv)
1510 {
1511     STRLEN delta;
1512     const char * const s = SvPVX_const(sv);
1513
1514     PERL_ARGS_ASSERT_SV_BACKOFF;
1515
1516     assert(SvOOK(sv));
1517     assert(SvTYPE(sv) != SVt_PVHV);
1518     assert(SvTYPE(sv) != SVt_PVAV);
1519
1520     SvOOK_offset(sv, delta);
1521     
1522     SvLEN_set(sv, SvLEN(sv) + delta);
1523     SvPV_set(sv, SvPVX(sv) - delta);
1524     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1525     SvFLAGS(sv) &= ~SVf_OOK;
1526     return 0;
1527 }
1528
1529 /*
1530 =for apidoc sv_grow
1531
1532 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1533 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1534 Use the C<SvGROW> wrapper instead.
1535
1536 =cut
1537 */
1538
1539 static void S_sv_uncow(pTHX_ SV * const sv, const U32 flags);
1540
1541 char *
1542 Perl_sv_grow(pTHX_ SV *const sv, STRLEN newlen)
1543 {
1544     char *s;
1545
1546     PERL_ARGS_ASSERT_SV_GROW;
1547
1548     if (SvROK(sv))
1549         sv_unref(sv);
1550     if (SvTYPE(sv) < SVt_PV) {
1551         sv_upgrade(sv, SVt_PV);
1552         s = SvPVX_mutable(sv);
1553     }
1554     else if (SvOOK(sv)) {       /* pv is offset? */
1555         sv_backoff(sv);
1556         s = SvPVX_mutable(sv);
1557         if (newlen > SvLEN(sv))
1558             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1559     }
1560     else
1561     {
1562         if (SvIsCOW(sv)) S_sv_uncow(aTHX_ sv, 0);
1563         s = SvPVX_mutable(sv);
1564     }
1565
1566 #ifdef PERL_NEW_COPY_ON_WRITE
1567     /* the new COW scheme uses SvPVX(sv)[SvLEN(sv)-1] (if spare)
1568      * to store the COW count. So in general, allocate one more byte than
1569      * asked for, to make it likely this byte is always spare: and thus
1570      * make more strings COW-able.
1571      * If the new size is a big power of two, don't bother: we assume the
1572      * caller wanted a nice 2^N sized block and will be annoyed at getting
1573      * 2^N+1 */
1574     if (newlen & 0xff)
1575         newlen++;
1576 #endif
1577
1578 #if defined(PERL_USE_MALLOC_SIZE) && defined(Perl_safesysmalloc_size)
1579 #define PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1580 #endif
1581
1582     if (newlen > SvLEN(sv)) {           /* need more room? */
1583         STRLEN minlen = SvCUR(sv);
1584         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1585         if (newlen < minlen)
1586             newlen = minlen;
1587 #ifndef PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1588
1589         /* Don't round up on the first allocation, as odds are pretty good that
1590          * the initial request is accurate as to what is really needed */
1591         if (SvLEN(sv)) {
1592             newlen = PERL_STRLEN_ROUNDUP(newlen);
1593         }
1594 #endif
1595         if (SvLEN(sv) && s) {
1596             s = (char*)saferealloc(s, newlen);
1597         }
1598         else {
1599             s = (char*)safemalloc(newlen);
1600             if (SvPVX_const(sv) && SvCUR(sv)) {
1601                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1602             }
1603         }
1604         SvPV_set(sv, s);
1605 #ifdef PERL_UNWARANTED_CHUMMINESS_WITH_MALLOC
1606         /* Do this here, do it once, do it right, and then we will never get
1607            called back into sv_grow() unless there really is some growing
1608            needed.  */
1609         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1610 #else
1611         SvLEN_set(sv, newlen);
1612 #endif
1613     }
1614     return s;
1615 }
1616
1617 /*
1618 =for apidoc sv_setiv
1619
1620 Copies an integer into the given SV, upgrading first if necessary.
1621 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1622
1623 =cut
1624 */
1625
1626 void
1627 Perl_sv_setiv(pTHX_ SV *const sv, const IV i)
1628 {
1629     PERL_ARGS_ASSERT_SV_SETIV;
1630
1631     SV_CHECK_THINKFIRST_COW_DROP(sv);
1632     switch (SvTYPE(sv)) {
1633     case SVt_NULL:
1634     case SVt_NV:
1635         sv_upgrade(sv, SVt_IV);
1636         break;
1637     case SVt_PV:
1638         sv_upgrade(sv, SVt_PVIV);
1639         break;
1640
1641     case SVt_PVGV:
1642         if (!isGV_with_GP(sv))
1643             break;
1644     case SVt_PVAV:
1645     case SVt_PVHV:
1646     case SVt_PVCV:
1647     case SVt_PVFM:
1648     case SVt_PVIO:
1649         /* diag_listed_as: Can't coerce %s to %s in %s */
1650         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1651                    OP_DESC(PL_op));
1652     default: NOOP;
1653     }
1654     (void)SvIOK_only(sv);                       /* validate number */
1655     SvIV_set(sv, i);
1656     SvTAINT(sv);
1657 }
1658
1659 /*
1660 =for apidoc sv_setiv_mg
1661
1662 Like C<sv_setiv>, but also handles 'set' magic.
1663
1664 =cut
1665 */
1666
1667 void
1668 Perl_sv_setiv_mg(pTHX_ SV *const sv, const IV i)
1669 {
1670     PERL_ARGS_ASSERT_SV_SETIV_MG;
1671
1672     sv_setiv(sv,i);
1673     SvSETMAGIC(sv);
1674 }
1675
1676 /*
1677 =for apidoc sv_setuv
1678
1679 Copies an unsigned integer into the given SV, upgrading first if necessary.
1680 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1681
1682 =cut
1683 */
1684
1685 void
1686 Perl_sv_setuv(pTHX_ SV *const sv, const UV u)
1687 {
1688     PERL_ARGS_ASSERT_SV_SETUV;
1689
1690     /* With the if statement to ensure that integers are stored as IVs whenever
1691        possible:
1692        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1693
1694        without
1695        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1696
1697        If you wish to remove the following if statement, so that this routine
1698        (and its callers) always return UVs, please benchmark to see what the
1699        effect is. Modern CPUs may be different. Or may not :-)
1700     */
1701     if (u <= (UV)IV_MAX) {
1702        sv_setiv(sv, (IV)u);
1703        return;
1704     }
1705     sv_setiv(sv, 0);
1706     SvIsUV_on(sv);
1707     SvUV_set(sv, u);
1708 }
1709
1710 /*
1711 =for apidoc sv_setuv_mg
1712
1713 Like C<sv_setuv>, but also handles 'set' magic.
1714
1715 =cut
1716 */
1717
1718 void
1719 Perl_sv_setuv_mg(pTHX_ SV *const sv, const UV u)
1720 {
1721     PERL_ARGS_ASSERT_SV_SETUV_MG;
1722
1723     sv_setuv(sv,u);
1724     SvSETMAGIC(sv);
1725 }
1726
1727 /*
1728 =for apidoc sv_setnv
1729
1730 Copies a double into the given SV, upgrading first if necessary.
1731 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1732
1733 =cut
1734 */
1735
1736 void
1737 Perl_sv_setnv(pTHX_ SV *const sv, const NV num)
1738 {
1739     PERL_ARGS_ASSERT_SV_SETNV;
1740
1741     SV_CHECK_THINKFIRST_COW_DROP(sv);
1742     switch (SvTYPE(sv)) {
1743     case SVt_NULL:
1744     case SVt_IV:
1745         sv_upgrade(sv, SVt_NV);
1746         break;
1747     case SVt_PV:
1748     case SVt_PVIV:
1749         sv_upgrade(sv, SVt_PVNV);
1750         break;
1751
1752     case SVt_PVGV:
1753         if (!isGV_with_GP(sv))
1754             break;
1755     case SVt_PVAV:
1756     case SVt_PVHV:
1757     case SVt_PVCV:
1758     case SVt_PVFM:
1759     case SVt_PVIO:
1760         /* diag_listed_as: Can't coerce %s to %s in %s */
1761         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1762                    OP_DESC(PL_op));
1763     default: NOOP;
1764     }
1765     SvNV_set(sv, num);
1766     (void)SvNOK_only(sv);                       /* validate number */
1767     SvTAINT(sv);
1768 }
1769
1770 /*
1771 =for apidoc sv_setnv_mg
1772
1773 Like C<sv_setnv>, but also handles 'set' magic.
1774
1775 =cut
1776 */
1777
1778 void
1779 Perl_sv_setnv_mg(pTHX_ SV *const sv, const NV num)
1780 {
1781     PERL_ARGS_ASSERT_SV_SETNV_MG;
1782
1783     sv_setnv(sv,num);
1784     SvSETMAGIC(sv);
1785 }
1786
1787 /* Return a cleaned-up, printable version of sv, for non-numeric, or
1788  * not incrementable warning display.
1789  * Originally part of S_not_a_number().
1790  * The return value may be != tmpbuf.
1791  */
1792
1793 STATIC const char *
1794 S_sv_display(pTHX_ SV *const sv, char *tmpbuf, STRLEN tmpbuf_size) {
1795     const char *pv;
1796
1797      PERL_ARGS_ASSERT_SV_DISPLAY;
1798
1799      if (DO_UTF8(sv)) {
1800           SV *dsv = newSVpvs_flags("", SVs_TEMP);
1801           pv = sv_uni_display(dsv, sv, 10, UNI_DISPLAY_ISPRINT);
1802      } else {
1803           char *d = tmpbuf;
1804           const char * const limit = tmpbuf + tmpbuf_size - 8;
1805           /* each *s can expand to 4 chars + "...\0",
1806              i.e. need room for 8 chars */
1807         
1808           const char *s = SvPVX_const(sv);
1809           const char * const end = s + SvCUR(sv);
1810           for ( ; s < end && d < limit; s++ ) {
1811                int ch = *s & 0xFF;
1812                if (! isASCII(ch) && !isPRINT_LC(ch)) {
1813                     *d++ = 'M';
1814                     *d++ = '-';
1815
1816                     /* Map to ASCII "equivalent" of Latin1 */
1817                     ch = LATIN1_TO_NATIVE(NATIVE_TO_LATIN1(ch) & 127);
1818                }
1819                if (ch == '\n') {
1820                     *d++ = '\\';
1821                     *d++ = 'n';
1822                }
1823                else if (ch == '\r') {
1824                     *d++ = '\\';
1825                     *d++ = 'r';
1826                }
1827                else if (ch == '\f') {
1828                     *d++ = '\\';
1829                     *d++ = 'f';
1830                }
1831                else if (ch == '\\') {
1832                     *d++ = '\\';
1833                     *d++ = '\\';
1834                }
1835                else if (ch == '\0') {
1836                     *d++ = '\\';
1837                     *d++ = '0';
1838                }
1839                else if (isPRINT_LC(ch))
1840                     *d++ = ch;
1841                else {
1842                     *d++ = '^';
1843                     *d++ = toCTRL(ch);
1844                }
1845           }
1846           if (s < end) {
1847                *d++ = '.';
1848                *d++ = '.';
1849                *d++ = '.';
1850           }
1851           *d = '\0';
1852           pv = tmpbuf;
1853     }
1854
1855     return pv;
1856 }
1857
1858 /* Print an "isn't numeric" warning, using a cleaned-up,
1859  * printable version of the offending string
1860  */
1861
1862 STATIC void
1863 S_not_a_number(pTHX_ SV *const sv)
1864 {
1865      char tmpbuf[64];
1866      const char *pv;
1867
1868      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1869
1870      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1871
1872     if (PL_op)
1873         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1874                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1875                     "Argument \"%s\" isn't numeric in %s", pv,
1876                     OP_DESC(PL_op));
1877     else
1878         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1879                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1880                     "Argument \"%s\" isn't numeric", pv);
1881 }
1882
1883 STATIC void
1884 S_not_incrementable(pTHX_ SV *const sv) {
1885      char tmpbuf[64];
1886      const char *pv;
1887
1888      PERL_ARGS_ASSERT_NOT_INCREMENTABLE;
1889
1890      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1891
1892      Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1893                  "Argument \"%s\" treated as 0 in increment (++)", pv);
1894 }
1895
1896 /*
1897 =for apidoc looks_like_number
1898
1899 Test if the content of an SV looks like a number (or is a number).
1900 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1901 non-numeric warning), even if your atof() doesn't grok them.  Get-magic is
1902 ignored.
1903
1904 =cut
1905 */
1906
1907 I32
1908 Perl_looks_like_number(pTHX_ SV *const sv)
1909 {
1910     const char *sbegin;
1911     STRLEN len;
1912
1913     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1914
1915     if (SvPOK(sv) || SvPOKp(sv)) {
1916         sbegin = SvPV_nomg_const(sv, len);
1917     }
1918     else
1919         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1920     return grok_number(sbegin, len, NULL);
1921 }
1922
1923 STATIC bool
1924 S_glob_2number(pTHX_ GV * const gv)
1925 {
1926     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1927
1928     /* We know that all GVs stringify to something that is not-a-number,
1929         so no need to test that.  */
1930     if (ckWARN(WARN_NUMERIC))
1931     {
1932         SV *const buffer = sv_newmortal();
1933         gv_efullname3(buffer, gv, "*");
1934         not_a_number(buffer);
1935     }
1936     /* We just want something true to return, so that S_sv_2iuv_common
1937         can tail call us and return true.  */
1938     return TRUE;
1939 }
1940
1941 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1942    until proven guilty, assume that things are not that bad... */
1943
1944 /*
1945    NV_PRESERVES_UV:
1946
1947    As 64 bit platforms often have an NV that doesn't preserve all bits of
1948    an IV (an assumption perl has been based on to date) it becomes necessary
1949    to remove the assumption that the NV always carries enough precision to
1950    recreate the IV whenever needed, and that the NV is the canonical form.
1951    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1952    precision as a side effect of conversion (which would lead to insanity
1953    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1954    1) to distinguish between IV/UV/NV slots that have a valid conversion cached
1955       where precision was lost, and IV/UV/NV slots that have a valid conversion
1956       which has lost no precision
1957    2) to ensure that if a numeric conversion to one form is requested that
1958       would lose precision, the precise conversion (or differently
1959       imprecise conversion) is also performed and cached, to prevent
1960       requests for different numeric formats on the same SV causing
1961       lossy conversion chains. (lossless conversion chains are perfectly
1962       acceptable (still))
1963
1964
1965    flags are used:
1966    SvIOKp is true if the IV slot contains a valid value
1967    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1968    SvNOKp is true if the NV slot contains a valid value
1969    SvNOK  is true only if the NV value is accurate
1970
1971    so
1972    while converting from PV to NV, check to see if converting that NV to an
1973    IV(or UV) would lose accuracy over a direct conversion from PV to
1974    IV(or UV). If it would, cache both conversions, return NV, but mark
1975    SV as IOK NOKp (ie not NOK).
1976
1977    While converting from PV to IV, check to see if converting that IV to an
1978    NV would lose accuracy over a direct conversion from PV to NV. If it
1979    would, cache both conversions, flag similarly.
1980
1981    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1982    correctly because if IV & NV were set NV *always* overruled.
1983    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1984    changes - now IV and NV together means that the two are interchangeable:
1985    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1986
1987    The benefit of this is that operations such as pp_add know that if
1988    SvIOK is true for both left and right operands, then integer addition
1989    can be used instead of floating point (for cases where the result won't
1990    overflow). Before, floating point was always used, which could lead to
1991    loss of precision compared with integer addition.
1992
1993    * making IV and NV equal status should make maths accurate on 64 bit
1994      platforms
1995    * may speed up maths somewhat if pp_add and friends start to use
1996      integers when possible instead of fp. (Hopefully the overhead in
1997      looking for SvIOK and checking for overflow will not outweigh the
1998      fp to integer speedup)
1999    * will slow down integer operations (callers of SvIV) on "inaccurate"
2000      values, as the change from SvIOK to SvIOKp will cause a call into
2001      sv_2iv each time rather than a macro access direct to the IV slot
2002    * should speed up number->string conversion on integers as IV is
2003      favoured when IV and NV are equally accurate
2004
2005    ####################################################################
2006    You had better be using SvIOK_notUV if you want an IV for arithmetic:
2007    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
2008    On the other hand, SvUOK is true iff UV.
2009    ####################################################################
2010
2011    Your mileage will vary depending your CPU's relative fp to integer
2012    performance ratio.
2013 */
2014
2015 #ifndef NV_PRESERVES_UV
2016 #  define IS_NUMBER_UNDERFLOW_IV 1
2017 #  define IS_NUMBER_UNDERFLOW_UV 2
2018 #  define IS_NUMBER_IV_AND_UV    2
2019 #  define IS_NUMBER_OVERFLOW_IV  4
2020 #  define IS_NUMBER_OVERFLOW_UV  5
2021
2022 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
2023
2024 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
2025 STATIC int
2026 S_sv_2iuv_non_preserve(pTHX_ SV *const sv
2027 #  ifdef DEBUGGING
2028                        , I32 numtype
2029 #  endif
2030                        )
2031 {
2032     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
2033     PERL_UNUSED_CONTEXT;
2034
2035     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));
2036     if (SvNVX(sv) < (NV)IV_MIN) {
2037         (void)SvIOKp_on(sv);
2038         (void)SvNOK_on(sv);
2039         SvIV_set(sv, IV_MIN);
2040         return IS_NUMBER_UNDERFLOW_IV;
2041     }
2042     if (SvNVX(sv) > (NV)UV_MAX) {
2043         (void)SvIOKp_on(sv);
2044         (void)SvNOK_on(sv);
2045         SvIsUV_on(sv);
2046         SvUV_set(sv, UV_MAX);
2047         return IS_NUMBER_OVERFLOW_UV;
2048     }
2049     (void)SvIOKp_on(sv);
2050     (void)SvNOK_on(sv);
2051     /* Can't use strtol etc to convert this string.  (See truth table in
2052        sv_2iv  */
2053     if (SvNVX(sv) <= (UV)IV_MAX) {
2054         SvIV_set(sv, I_V(SvNVX(sv)));
2055         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2056             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
2057         } else {
2058             /* Integer is imprecise. NOK, IOKp */
2059         }
2060         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
2061     }
2062     SvIsUV_on(sv);
2063     SvUV_set(sv, U_V(SvNVX(sv)));
2064     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2065         if (SvUVX(sv) == UV_MAX) {
2066             /* As we know that NVs don't preserve UVs, UV_MAX cannot
2067                possibly be preserved by NV. Hence, it must be overflow.
2068                NOK, IOKp */
2069             return IS_NUMBER_OVERFLOW_UV;
2070         }
2071         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2072     } else {
2073         /* Integer is imprecise. NOK, IOKp */
2074     }
2075     return IS_NUMBER_OVERFLOW_IV;
2076 }
2077 #endif /* !NV_PRESERVES_UV*/
2078
2079 /* If numtype is infnan, set the NV of the sv accordingly.
2080  * If numtype is anything else, try setting the NV using Atof(PV). */
2081 static void
2082 S_sv_setnv(pTHX_ SV* sv, int numtype)
2083 {
2084     bool pok = cBOOL(SvPOK(sv));
2085     bool nok = FALSE;
2086     if ((numtype & IS_NUMBER_INFINITY)) {
2087         SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -NV_INF : NV_INF);
2088         nok = TRUE;
2089     }
2090     else if ((numtype & IS_NUMBER_NAN)) {
2091         SvNV_set(sv, NV_NAN);
2092         nok = TRUE;
2093     }
2094     else if (pok) {
2095         SvNV_set(sv, Atof(SvPVX_const(sv)));
2096         /* Purposefully no true nok here, since we don't want to blow
2097          * away the possible IOK/UV of an existing sv. */
2098     }
2099     if (nok) {
2100         SvNOK_only(sv); /* No IV or UV please, this is pure infnan. */
2101         if (pok)
2102             SvPOK_on(sv); /* PV is okay, though. */
2103     }
2104 }
2105
2106 STATIC bool
2107 S_sv_2iuv_common(pTHX_ SV *const sv)
2108 {
2109     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
2110
2111     if (SvNOKp(sv)) {
2112         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2113          * without also getting a cached IV/UV from it at the same time
2114          * (ie PV->NV conversion should detect loss of accuracy and cache
2115          * IV or UV at same time to avoid this. */
2116         /* IV-over-UV optimisation - choose to cache IV if possible */
2117
2118         if (SvTYPE(sv) == SVt_NV)
2119             sv_upgrade(sv, SVt_PVNV);
2120
2121         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2122         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2123            certainly cast into the IV range at IV_MAX, whereas the correct
2124            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2125            cases go to UV */
2126 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2127         if (Perl_isnan(SvNVX(sv))) {
2128             SvUV_set(sv, 0);
2129             SvIsUV_on(sv);
2130             return FALSE;
2131         }
2132 #endif
2133         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2134             SvIV_set(sv, I_V(SvNVX(sv)));
2135             if (SvNVX(sv) == (NV) SvIVX(sv)
2136 #ifndef NV_PRESERVES_UV
2137                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2138                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2139                 /* Don't flag it as "accurately an integer" if the number
2140                    came from a (by definition imprecise) NV operation, and
2141                    we're outside the range of NV integer precision */
2142 #endif
2143                 ) {
2144                 if (SvNOK(sv))
2145                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2146                 else {
2147                     /* scalar has trailing garbage, eg "42a" */
2148                 }
2149                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2150                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2151                                       PTR2UV(sv),
2152                                       SvNVX(sv),
2153                                       SvIVX(sv)));
2154
2155             } else {
2156                 /* IV not precise.  No need to convert from PV, as NV
2157                    conversion would already have cached IV if it detected
2158                    that PV->IV would be better than PV->NV->IV
2159                    flags already correct - don't set public IOK.  */
2160                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2161                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2162                                       PTR2UV(sv),
2163                                       SvNVX(sv),
2164                                       SvIVX(sv)));
2165             }
2166             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2167                but the cast (NV)IV_MIN rounds to a the value less (more
2168                negative) than IV_MIN which happens to be equal to SvNVX ??
2169                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2170                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2171                (NV)UVX == NVX are both true, but the values differ. :-(
2172                Hopefully for 2s complement IV_MIN is something like
2173                0x8000000000000000 which will be exact. NWC */
2174         }
2175         else {
2176             SvUV_set(sv, U_V(SvNVX(sv)));
2177             if (
2178                 (SvNVX(sv) == (NV) SvUVX(sv))
2179 #ifndef  NV_PRESERVES_UV
2180                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2181                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2182                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2183                 /* Don't flag it as "accurately an integer" if the number
2184                    came from a (by definition imprecise) NV operation, and
2185                    we're outside the range of NV integer precision */
2186 #endif
2187                 && SvNOK(sv)
2188                 )
2189                 SvIOK_on(sv);
2190             SvIsUV_on(sv);
2191             DEBUG_c(PerlIO_printf(Perl_debug_log,
2192                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2193                                   PTR2UV(sv),
2194                                   SvUVX(sv),
2195                                   SvUVX(sv)));
2196         }
2197     }
2198     else if (SvPOKp(sv)) {
2199         UV value;
2200         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2201         /* We want to avoid a possible problem when we cache an IV/ a UV which
2202            may be later translated to an NV, and the resulting NV is not
2203            the same as the direct translation of the initial string
2204            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2205            be careful to ensure that the value with the .456 is around if the
2206            NV value is requested in the future).
2207         
2208            This means that if we cache such an IV/a UV, we need to cache the
2209            NV as well.  Moreover, we trade speed for space, and do not
2210            cache the NV if we are sure it's not needed.
2211          */
2212
2213         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2214         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2215              == IS_NUMBER_IN_UV) {
2216             /* It's definitely an integer, only upgrade to PVIV */
2217             if (SvTYPE(sv) < SVt_PVIV)
2218                 sv_upgrade(sv, SVt_PVIV);
2219             (void)SvIOK_on(sv);
2220         } else if (SvTYPE(sv) < SVt_PVNV)
2221             sv_upgrade(sv, SVt_PVNV);
2222
2223         if ((numtype & (IS_NUMBER_INFINITY | IS_NUMBER_NAN))) {
2224             S_sv_setnv(aTHX_ sv, numtype);
2225             return FALSE;
2226         }
2227
2228         /* If NVs preserve UVs then we only use the UV value if we know that
2229            we aren't going to call atof() below. If NVs don't preserve UVs
2230            then the value returned may have more precision than atof() will
2231            return, even though value isn't perfectly accurate.  */
2232         if ((numtype & (IS_NUMBER_IN_UV
2233 #ifdef NV_PRESERVES_UV
2234                         | IS_NUMBER_NOT_INT
2235 #endif
2236             )) == IS_NUMBER_IN_UV) {
2237             /* This won't turn off the public IOK flag if it was set above  */
2238             (void)SvIOKp_on(sv);
2239
2240             if (!(numtype & IS_NUMBER_NEG)) {
2241                 /* positive */;
2242                 if (value <= (UV)IV_MAX) {
2243                     SvIV_set(sv, (IV)value);
2244                 } else {
2245                     /* it didn't overflow, and it was positive. */
2246                     SvUV_set(sv, value);
2247                     SvIsUV_on(sv);
2248                 }
2249             } else {
2250                 /* 2s complement assumption  */
2251                 if (value <= (UV)IV_MIN) {
2252                     SvIV_set(sv, -(IV)value);
2253                 } else {
2254                     /* Too negative for an IV.  This is a double upgrade, but
2255                        I'm assuming it will be rare.  */
2256                     if (SvTYPE(sv) < SVt_PVNV)
2257                         sv_upgrade(sv, SVt_PVNV);
2258                     SvNOK_on(sv);
2259                     SvIOK_off(sv);
2260                     SvIOKp_on(sv);
2261                     SvNV_set(sv, -(NV)value);
2262                     SvIV_set(sv, IV_MIN);
2263                 }
2264             }
2265         }
2266         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2267            will be in the previous block to set the IV slot, and the next
2268            block to set the NV slot.  So no else here.  */
2269         
2270         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2271             != IS_NUMBER_IN_UV) {
2272             /* It wasn't an (integer that doesn't overflow the UV). */
2273             S_sv_setnv(aTHX_ sv, numtype);
2274
2275             if (! numtype && ckWARN(WARN_NUMERIC))
2276                 not_a_number(sv);
2277
2278             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" NVgf ")\n",
2279                                   PTR2UV(sv), SvNVX(sv)));
2280
2281 #ifdef NV_PRESERVES_UV
2282             (void)SvIOKp_on(sv);
2283             (void)SvNOK_on(sv);
2284 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2285             if (Perl_isnan(SvNVX(sv))) {
2286                 SvUV_set(sv, 0);
2287                 SvIsUV_on(sv);
2288                 return FALSE;
2289             }
2290 #endif
2291             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2292                 SvIV_set(sv, I_V(SvNVX(sv)));
2293                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2294                     SvIOK_on(sv);
2295                 } else {
2296                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2297                 }
2298                 /* UV will not work better than IV */
2299             } else {
2300                 if (SvNVX(sv) > (NV)UV_MAX) {
2301                     SvIsUV_on(sv);
2302                     /* Integer is inaccurate. NOK, IOKp, is UV */
2303                     SvUV_set(sv, UV_MAX);
2304                 } else {
2305                     SvUV_set(sv, U_V(SvNVX(sv)));
2306                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2307                        NV preservse UV so can do correct comparison.  */
2308                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2309                         SvIOK_on(sv);
2310                     } else {
2311                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2312                     }
2313                 }
2314                 SvIsUV_on(sv);
2315             }
2316 #else /* NV_PRESERVES_UV */
2317             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2318                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2319                 /* The IV/UV slot will have been set from value returned by
2320                    grok_number above.  The NV slot has just been set using
2321                    Atof.  */
2322                 SvNOK_on(sv);
2323                 assert (SvIOKp(sv));
2324             } else {
2325                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2326                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2327                     /* Small enough to preserve all bits. */
2328                     (void)SvIOKp_on(sv);
2329                     SvNOK_on(sv);
2330                     SvIV_set(sv, I_V(SvNVX(sv)));
2331                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2332                         SvIOK_on(sv);
2333                     /* Assumption: first non-preserved integer is < IV_MAX,
2334                        this NV is in the preserved range, therefore: */
2335                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2336                           < (UV)IV_MAX)) {
2337                         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);
2338                     }
2339                 } else {
2340                     /* IN_UV NOT_INT
2341                          0      0       already failed to read UV.
2342                          0      1       already failed to read UV.
2343                          1      0       you won't get here in this case. IV/UV
2344                                         slot set, public IOK, Atof() unneeded.
2345                          1      1       already read UV.
2346                        so there's no point in sv_2iuv_non_preserve() attempting
2347                        to use atol, strtol, strtoul etc.  */
2348 #  ifdef DEBUGGING
2349                     sv_2iuv_non_preserve (sv, numtype);
2350 #  else
2351                     sv_2iuv_non_preserve (sv);
2352 #  endif
2353                 }
2354             }
2355 #endif /* NV_PRESERVES_UV */
2356         /* It might be more code efficient to go through the entire logic above
2357            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2358            gets complex and potentially buggy, so more programmer efficient
2359            to do it this way, by turning off the public flags:  */
2360         if (!numtype)
2361             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2362         }
2363     }
2364     else  {
2365         if (isGV_with_GP(sv))
2366             return glob_2number(MUTABLE_GV(sv));
2367
2368         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2369                 report_uninit(sv);
2370         if (SvTYPE(sv) < SVt_IV)
2371             /* Typically the caller expects that sv_any is not NULL now.  */
2372             sv_upgrade(sv, SVt_IV);
2373         /* Return 0 from the caller.  */
2374         return TRUE;
2375     }
2376     return FALSE;
2377 }
2378
2379 /*
2380 =for apidoc sv_2iv_flags
2381
2382 Return the integer value of an SV, doing any necessary string
2383 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2384 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2385
2386 =cut
2387 */
2388
2389 IV
2390 Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags)
2391 {
2392     PERL_ARGS_ASSERT_SV_2IV_FLAGS;
2393
2394     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2395          && SvTYPE(sv) != SVt_PVFM);
2396
2397     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2398         mg_get(sv);
2399
2400     if (SvROK(sv)) {
2401         if (SvAMAGIC(sv)) {
2402             SV * tmpstr;
2403             if (flags & SV_SKIP_OVERLOAD)
2404                 return 0;
2405             tmpstr = AMG_CALLunary(sv, numer_amg);
2406             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2407                 return SvIV(tmpstr);
2408             }
2409         }
2410         return PTR2IV(SvRV(sv));
2411     }
2412
2413     if (SvVALID(sv) || isREGEXP(sv)) {
2414         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2415            the same flag bit as SVf_IVisUV, so must not let them cache IVs.
2416            In practice they are extremely unlikely to actually get anywhere
2417            accessible by user Perl code - the only way that I'm aware of is when
2418            a constant subroutine which is used as the second argument to index.
2419
2420            Regexps have no SvIVX and SvNVX fields.
2421         */
2422         assert(isREGEXP(sv) || SvPOKp(sv));
2423         {
2424             UV value;
2425             const char * const ptr =
2426                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2427             const int numtype
2428                 = grok_number(ptr, SvCUR(sv), &value);
2429
2430             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2431                 == IS_NUMBER_IN_UV) {
2432                 /* It's definitely an integer */
2433                 if (numtype & IS_NUMBER_NEG) {
2434                     if (value < (UV)IV_MIN)
2435                         return -(IV)value;
2436                 } else {
2437                     if (value < (UV)IV_MAX)
2438                         return (IV)value;
2439                 }
2440             }
2441
2442             /* Quite wrong but no good choices. */
2443             if ((numtype & IS_NUMBER_INFINITY)) {
2444                 return (numtype & IS_NUMBER_NEG) ? IV_MIN : IV_MAX;
2445             } else if ((numtype & IS_NUMBER_NAN)) {
2446                 return 0; /* So wrong. */
2447             }
2448
2449             if (!numtype) {
2450                 if (ckWARN(WARN_NUMERIC))
2451                     not_a_number(sv);
2452             }
2453             return I_V(Atof(ptr));
2454         }
2455     }
2456
2457     if (SvTHINKFIRST(sv)) {
2458 #ifdef PERL_OLD_COPY_ON_WRITE
2459         if (SvIsCOW(sv)) {
2460             sv_force_normal_flags(sv, 0);
2461         }
2462 #endif
2463         if (SvREADONLY(sv) && !SvOK(sv)) {
2464             if (ckWARN(WARN_UNINITIALIZED))
2465                 report_uninit(sv);
2466             return 0;
2467         }
2468     }
2469
2470     if (!SvIOKp(sv)) {
2471         if (S_sv_2iuv_common(aTHX_ sv))
2472             return 0;
2473     }
2474
2475     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2476         PTR2UV(sv),SvIVX(sv)));
2477     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2478 }
2479
2480 /*
2481 =for apidoc sv_2uv_flags
2482
2483 Return the unsigned integer value of an SV, doing any necessary string
2484 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2485 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2486
2487 =cut
2488 */
2489
2490 UV
2491 Perl_sv_2uv_flags(pTHX_ SV *const sv, const I32 flags)
2492 {
2493     PERL_ARGS_ASSERT_SV_2UV_FLAGS;
2494
2495     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2496         mg_get(sv);
2497
2498     if (SvROK(sv)) {
2499         if (SvAMAGIC(sv)) {
2500             SV *tmpstr;
2501             if (flags & SV_SKIP_OVERLOAD)
2502                 return 0;
2503             tmpstr = AMG_CALLunary(sv, numer_amg);
2504             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2505                 return SvUV(tmpstr);
2506             }
2507         }
2508         return PTR2UV(SvRV(sv));
2509     }
2510
2511     if (SvVALID(sv) || isREGEXP(sv)) {
2512         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2513            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  
2514            Regexps have no SvIVX and SvNVX fields. */
2515         assert(isREGEXP(sv) || SvPOKp(sv));
2516         {
2517             UV value;
2518             const char * const ptr =
2519                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2520             const int numtype
2521                 = grok_number(ptr, SvCUR(sv), &value);
2522
2523             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2524                 == IS_NUMBER_IN_UV) {
2525                 /* It's definitely an integer */
2526                 if (!(numtype & IS_NUMBER_NEG))
2527                     return value;
2528             }
2529
2530             /* Quite wrong but no good choices. */
2531             if ((numtype & IS_NUMBER_INFINITY)) {
2532                 return UV_MAX; /* So wrong. */
2533             } else if ((numtype & IS_NUMBER_NAN)) {
2534                 return 0; /* So wrong. */
2535             }
2536
2537             if (!numtype) {
2538                 if (ckWARN(WARN_NUMERIC))
2539                     not_a_number(sv);
2540             }
2541             return U_V(Atof(ptr));
2542         }
2543     }
2544
2545     if (SvTHINKFIRST(sv)) {
2546 #ifdef PERL_OLD_COPY_ON_WRITE
2547         if (SvIsCOW(sv)) {
2548             sv_force_normal_flags(sv, 0);
2549         }
2550 #endif
2551         if (SvREADONLY(sv) && !SvOK(sv)) {
2552             if (ckWARN(WARN_UNINITIALIZED))
2553                 report_uninit(sv);
2554             return 0;
2555         }
2556     }
2557
2558     if (!SvIOKp(sv)) {
2559         if (S_sv_2iuv_common(aTHX_ sv))
2560             return 0;
2561     }
2562
2563     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2564                           PTR2UV(sv),SvUVX(sv)));
2565     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2566 }
2567
2568 /*
2569 =for apidoc sv_2nv_flags
2570
2571 Return the num value of an SV, doing any necessary string or integer
2572 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2573 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2574
2575 =cut
2576 */
2577
2578 NV
2579 Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags)
2580 {
2581     PERL_ARGS_ASSERT_SV_2NV_FLAGS;
2582
2583     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2584          && SvTYPE(sv) != SVt_PVFM);
2585     if (SvGMAGICAL(sv) || SvVALID(sv) || isREGEXP(sv)) {
2586         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2587            the same flag bit as SVf_IVisUV, so must not let them cache NVs.
2588            Regexps have no SvIVX and SvNVX fields.  */
2589         const char *ptr;
2590         if (flags & SV_GMAGIC)
2591             mg_get(sv);
2592         if (SvNOKp(sv))
2593             return SvNVX(sv);
2594         if (SvPOKp(sv) && !SvIOKp(sv)) {
2595             ptr = SvPVX_const(sv);
2596           grokpv:
2597             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2598                 !grok_number(ptr, SvCUR(sv), NULL))
2599                 not_a_number(sv);
2600             return Atof(ptr);
2601         }
2602         if (SvIOKp(sv)) {
2603             if (SvIsUV(sv))
2604                 return (NV)SvUVX(sv);
2605             else
2606                 return (NV)SvIVX(sv);
2607         }
2608         if (SvROK(sv)) {
2609             goto return_rok;
2610         }
2611         if (isREGEXP(sv)) {
2612             ptr = RX_WRAPPED((REGEXP *)sv);
2613             goto grokpv;
2614         }
2615         assert(SvTYPE(sv) >= SVt_PVMG);
2616         /* This falls through to the report_uninit near the end of the
2617            function. */
2618     } else if (SvTHINKFIRST(sv)) {
2619         if (SvROK(sv)) {
2620         return_rok:
2621             if (SvAMAGIC(sv)) {
2622                 SV *tmpstr;
2623                 if (flags & SV_SKIP_OVERLOAD)
2624                     return 0;
2625                 tmpstr = AMG_CALLunary(sv, numer_amg);
2626                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2627                     return SvNV(tmpstr);
2628                 }
2629             }
2630             return PTR2NV(SvRV(sv));
2631         }
2632 #ifdef PERL_OLD_COPY_ON_WRITE
2633         if (SvIsCOW(sv)) {
2634             sv_force_normal_flags(sv, 0);
2635         }
2636 #endif
2637         if (SvREADONLY(sv) && !SvOK(sv)) {
2638             if (ckWARN(WARN_UNINITIALIZED))
2639                 report_uninit(sv);
2640             return 0.0;
2641         }
2642     }
2643     if (SvTYPE(sv) < SVt_NV) {
2644         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2645         sv_upgrade(sv, SVt_NV);
2646         DEBUG_c({
2647             STORE_NUMERIC_LOCAL_SET_STANDARD();
2648             PerlIO_printf(Perl_debug_log,
2649                           "0x%"UVxf" num(%" NVgf ")\n",
2650                           PTR2UV(sv), SvNVX(sv));
2651             RESTORE_NUMERIC_LOCAL();
2652         });
2653     }
2654     else if (SvTYPE(sv) < SVt_PVNV)
2655         sv_upgrade(sv, SVt_PVNV);
2656     if (SvNOKp(sv)) {
2657         return SvNVX(sv);
2658     }
2659     if (SvIOKp(sv)) {
2660         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2661 #ifdef NV_PRESERVES_UV
2662         if (SvIOK(sv))
2663             SvNOK_on(sv);
2664         else
2665             SvNOKp_on(sv);
2666 #else
2667         /* Only set the public NV OK flag if this NV preserves the IV  */
2668         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2669         if (SvIOK(sv) &&
2670             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2671                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2672             SvNOK_on(sv);
2673         else
2674             SvNOKp_on(sv);
2675 #endif
2676     }
2677     else if (SvPOKp(sv)) {
2678         UV value;
2679         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2680         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2681             not_a_number(sv);
2682 #ifdef NV_PRESERVES_UV
2683         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2684             == IS_NUMBER_IN_UV) {
2685             /* It's definitely an integer */
2686             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2687         } else {
2688             S_sv_setnv(aTHX_ sv, numtype);
2689         }
2690         if (numtype)
2691             SvNOK_on(sv);
2692         else
2693             SvNOKp_on(sv);
2694 #else
2695         SvNV_set(sv, Atof(SvPVX_const(sv)));
2696         /* Only set the public NV OK flag if this NV preserves the value in
2697            the PV at least as well as an IV/UV would.
2698            Not sure how to do this 100% reliably. */
2699         /* if that shift count is out of range then Configure's test is
2700            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2701            UV_BITS */
2702         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2703             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2704             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2705         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2706             /* Can't use strtol etc to convert this string, so don't try.
2707                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2708             SvNOK_on(sv);
2709         } else {
2710             /* value has been set.  It may not be precise.  */
2711             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2712                 /* 2s complement assumption for (UV)IV_MIN  */
2713                 SvNOK_on(sv); /* Integer is too negative.  */
2714             } else {
2715                 SvNOKp_on(sv);
2716                 SvIOKp_on(sv);
2717
2718                 if (numtype & IS_NUMBER_NEG) {
2719                     SvIV_set(sv, -(IV)value);
2720                 } else if (value <= (UV)IV_MAX) {
2721                     SvIV_set(sv, (IV)value);
2722                 } else {
2723                     SvUV_set(sv, value);
2724                     SvIsUV_on(sv);
2725                 }
2726
2727                 if (numtype & IS_NUMBER_NOT_INT) {
2728                     /* I believe that even if the original PV had decimals,
2729                        they are lost beyond the limit of the FP precision.
2730                        However, neither is canonical, so both only get p
2731                        flags.  NWC, 2000/11/25 */
2732                     /* Both already have p flags, so do nothing */
2733                 } else {
2734                     const NV nv = SvNVX(sv);
2735                     /* XXX should this spot have NAN_COMPARE_BROKEN, too? */
2736                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2737                         if (SvIVX(sv) == I_V(nv)) {
2738                             SvNOK_on(sv);
2739                         } else {
2740                             /* It had no "." so it must be integer.  */
2741                         }
2742                         SvIOK_on(sv);
2743                     } else {
2744                         /* between IV_MAX and NV(UV_MAX).
2745                            Could be slightly > UV_MAX */
2746
2747                         if (numtype & IS_NUMBER_NOT_INT) {
2748                             /* UV and NV both imprecise.  */
2749                         } else {
2750                             const UV nv_as_uv = U_V(nv);
2751
2752                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2753                                 SvNOK_on(sv);
2754                             }
2755                             SvIOK_on(sv);
2756                         }
2757                     }
2758                 }
2759             }
2760         }
2761         /* It might be more code efficient to go through the entire logic above
2762            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2763            gets complex and potentially buggy, so more programmer efficient
2764            to do it this way, by turning off the public flags:  */
2765         if (!numtype)
2766             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2767 #endif /* NV_PRESERVES_UV */
2768     }
2769     else  {
2770         if (isGV_with_GP(sv)) {
2771             glob_2number(MUTABLE_GV(sv));
2772             return 0.0;
2773         }
2774
2775         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2776             report_uninit(sv);
2777         assert (SvTYPE(sv) >= SVt_NV);
2778         /* Typically the caller expects that sv_any is not NULL now.  */
2779         /* XXX Ilya implies that this is a bug in callers that assume this
2780            and ideally should be fixed.  */
2781         return 0.0;
2782     }
2783     DEBUG_c({
2784         STORE_NUMERIC_LOCAL_SET_STANDARD();
2785         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" NVgf ")\n",
2786                       PTR2UV(sv), SvNVX(sv));
2787         RESTORE_NUMERIC_LOCAL();
2788     });
2789     return SvNVX(sv);
2790 }
2791
2792 /*
2793 =for apidoc sv_2num
2794
2795 Return an SV with the numeric value of the source SV, doing any necessary
2796 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2797 access this function.
2798
2799 =cut
2800 */
2801
2802 SV *
2803 Perl_sv_2num(pTHX_ SV *const sv)
2804 {
2805     PERL_ARGS_ASSERT_SV_2NUM;
2806
2807     if (!SvROK(sv))
2808         return sv;
2809     if (SvAMAGIC(sv)) {
2810         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2811         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2812         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2813             return sv_2num(tmpsv);
2814     }
2815     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2816 }
2817
2818 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2819  * UV as a string towards the end of buf, and return pointers to start and
2820  * end of it.
2821  *
2822  * We assume that buf is at least TYPE_CHARS(UV) long.
2823  */
2824
2825 static char *
2826 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2827 {
2828     char *ptr = buf + TYPE_CHARS(UV);
2829     char * const ebuf = ptr;
2830     int sign;
2831
2832     PERL_ARGS_ASSERT_UIV_2BUF;
2833
2834     if (is_uv)
2835         sign = 0;
2836     else if (iv >= 0) {
2837         uv = iv;
2838         sign = 0;
2839     } else {
2840         uv = -iv;
2841         sign = 1;
2842     }
2843     do {
2844         *--ptr = '0' + (char)(uv % 10);
2845     } while (uv /= 10);
2846     if (sign)
2847         *--ptr = '-';
2848     *peob = ebuf;
2849     return ptr;
2850 }
2851
2852 /* Helper for sv_2pv_flags and sv_vcatpvfn_flags.  If the NV is an
2853  * infinity or a not-a-number, writes the appropriate strings to the
2854  * buffer, including a zero byte.  On success returns the written length,
2855  * excluding the zero byte, on failure (not an infinity, not a nan, or the
2856  * maxlen too small) returns zero.
2857  *
2858  * XXX for "Inf", "-Inf", and "NaN", we could have three read-only
2859  * shared string constants we point to, instead of generating a new
2860  * string for each instance. */
2861 STATIC size_t
2862 S_infnan_2pv(NV nv, char* buffer, size_t maxlen) {
2863     assert(maxlen >= 4);
2864     if (maxlen < 4) /* "Inf\0", "NaN\0" */
2865         return 0;
2866     else {
2867         char* s = buffer;
2868         if (Perl_isinf(nv)) {
2869             if (nv < 0) {
2870                 if (maxlen < 5) /* "-Inf\0"  */
2871                     return 0;
2872                 *s++ = '-';
2873             }
2874             *s++ = 'I';
2875             *s++ = 'n';
2876             *s++ = 'f';
2877         } else if (Perl_isnan(nv)) {
2878             *s++ = 'N';
2879             *s++ = 'a';
2880             *s++ = 'N';
2881             /* XXX optionally output the payload mantissa bits as
2882              * "(unsigned)" (to match the nan("...") C99 function,
2883              * or maybe as "(0xhhh...)"  would make more sense...
2884              * provide a format string so that the user can decide?
2885              * NOTE: would affect the maxlen and assert() logic.*/
2886         }
2887
2888         else
2889             return 0;
2890         assert((s == buffer + 3) || (s == buffer + 4));
2891         *s++ = 0;
2892         return s - buffer - 1; /* -1: excluding the zero byte */
2893     }
2894 }
2895
2896 /*
2897 =for apidoc sv_2pv_flags
2898
2899 Returns a pointer to the string value of an SV, and sets *lp to its length.
2900 If flags includes SV_GMAGIC, does an mg_get() first.  Coerces sv to a
2901 string if necessary.  Normally invoked via the C<SvPV_flags> macro.
2902 C<sv_2pv()> and C<sv_2pv_nomg> usually end up here too.
2903
2904 =cut
2905 */
2906
2907 char *
2908 Perl_sv_2pv_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
2909 {
2910     char *s;
2911
2912     PERL_ARGS_ASSERT_SV_2PV_FLAGS;
2913
2914     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2915          && SvTYPE(sv) != SVt_PVFM);
2916     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2917         mg_get(sv);
2918     if (SvROK(sv)) {
2919         if (SvAMAGIC(sv)) {
2920             SV *tmpstr;
2921             if (flags & SV_SKIP_OVERLOAD)
2922                 return NULL;
2923             tmpstr = AMG_CALLunary(sv, string_amg);
2924             TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2925             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2926                 /* Unwrap this:  */
2927                 /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2928                  */
2929
2930                 char *pv;
2931                 if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2932                     if (flags & SV_CONST_RETURN) {
2933                         pv = (char *) SvPVX_const(tmpstr);
2934                     } else {
2935                         pv = (flags & SV_MUTABLE_RETURN)
2936                             ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2937                     }
2938                     if (lp)
2939                         *lp = SvCUR(tmpstr);
2940                 } else {
2941                     pv = sv_2pv_flags(tmpstr, lp, flags);
2942                 }
2943                 if (SvUTF8(tmpstr))
2944                     SvUTF8_on(sv);
2945                 else
2946                     SvUTF8_off(sv);
2947                 return pv;
2948             }
2949         }
2950         {
2951             STRLEN len;
2952             char *retval;
2953             char *buffer;
2954             SV *const referent = SvRV(sv);
2955
2956             if (!referent) {
2957                 len = 7;
2958                 retval = buffer = savepvn("NULLREF", len);
2959             } else if (SvTYPE(referent) == SVt_REGEXP &&
2960                        (!(PL_curcop->cop_hints & HINT_NO_AMAGIC) ||
2961                         amagic_is_enabled(string_amg))) {
2962                 REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2963
2964                 assert(re);
2965                         
2966                 /* If the regex is UTF-8 we want the containing scalar to
2967                    have an UTF-8 flag too */
2968                 if (RX_UTF8(re))
2969                     SvUTF8_on(sv);
2970                 else
2971                     SvUTF8_off(sv);     
2972
2973                 if (lp)
2974                     *lp = RX_WRAPLEN(re);
2975  
2976                 return RX_WRAPPED(re);
2977             } else {
2978                 const char *const typestr = sv_reftype(referent, 0);
2979                 const STRLEN typelen = strlen(typestr);
2980                 UV addr = PTR2UV(referent);
2981                 const char *stashname = NULL;
2982                 STRLEN stashnamelen = 0; /* hush, gcc */
2983                 const char *buffer_end;
2984
2985                 if (SvOBJECT(referent)) {
2986                     const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2987
2988                     if (name) {
2989                         stashname = HEK_KEY(name);
2990                         stashnamelen = HEK_LEN(name);
2991
2992                         if (HEK_UTF8(name)) {
2993                             SvUTF8_on(sv);
2994                         } else {
2995                             SvUTF8_off(sv);
2996                         }
2997                     } else {
2998                         stashname = "__ANON__";
2999                         stashnamelen = 8;
3000                     }
3001                     len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
3002                         + 2 * sizeof(UV) + 2 /* )\0 */;
3003                 } else {
3004                     len = typelen + 3 /* (0x */
3005                         + 2 * sizeof(UV) + 2 /* )\0 */;
3006                 }
3007
3008                 Newx(buffer, len, char);
3009                 buffer_end = retval = buffer + len;
3010
3011                 /* Working backwards  */
3012                 *--retval = '\0';
3013                 *--retval = ')';
3014                 do {
3015                     *--retval = PL_hexdigit[addr & 15];
3016                 } while (addr >>= 4);
3017                 *--retval = 'x';
3018                 *--retval = '0';
3019                 *--retval = '(';
3020
3021                 retval -= typelen;
3022                 memcpy(retval, typestr, typelen);
3023
3024                 if (stashname) {
3025                     *--retval = '=';
3026                     retval -= stashnamelen;
3027                     memcpy(retval, stashname, stashnamelen);
3028                 }
3029                 /* retval may not necessarily have reached the start of the
3030                    buffer here.  */
3031                 assert (retval >= buffer);
3032
3033                 len = buffer_end - retval - 1; /* -1 for that \0  */
3034             }
3035             if (lp)
3036                 *lp = len;
3037             SAVEFREEPV(buffer);
3038             return retval;
3039         }
3040     }
3041
3042     if (SvPOKp(sv)) {
3043         if (lp)
3044             *lp = SvCUR(sv);
3045         if (flags & SV_MUTABLE_RETURN)
3046             return SvPVX_mutable(sv);
3047         if (flags & SV_CONST_RETURN)
3048             return (char *)SvPVX_const(sv);
3049         return SvPVX(sv);
3050     }
3051
3052     if (SvIOK(sv)) {
3053         /* I'm assuming that if both IV and NV are equally valid then
3054            converting the IV is going to be more efficient */
3055         const U32 isUIOK = SvIsUV(sv);
3056         char buf[TYPE_CHARS(UV)];
3057         char *ebuf, *ptr;
3058         STRLEN len;
3059
3060         if (SvTYPE(sv) < SVt_PVIV)
3061             sv_upgrade(sv, SVt_PVIV);
3062         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
3063         len = ebuf - ptr;
3064         /* inlined from sv_setpvn */
3065         s = SvGROW_mutable(sv, len + 1);
3066         Move(ptr, s, len, char);
3067         s += len;
3068         *s = '\0';
3069         SvPOK_on(sv);
3070     }
3071     else if (SvNOK(sv)) {
3072         if (SvTYPE(sv) < SVt_PVNV)
3073             sv_upgrade(sv, SVt_PVNV);
3074         if (SvNVX(sv) == 0.0
3075 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
3076             && !Perl_isnan(SvNVX(sv))
3077 #endif
3078         ) {
3079             s = SvGROW_mutable(sv, 2);
3080             *s++ = '0';
3081             *s = '\0';
3082         } else {
3083             STRLEN len;
3084             STRLEN size = 5; /* "-Inf\0" */
3085
3086             s = SvGROW_mutable(sv, size);
3087             len = S_infnan_2pv(SvNVX(sv), s, size);
3088             if (len > 0) {
3089                 s += len;
3090                 SvPOK_on(sv);
3091             }
3092             else {
3093                 /* some Xenix systems wipe out errno here */
3094                 dSAVE_ERRNO;
3095
3096                 size =
3097                     1 + /* sign */
3098                     1 + /* "." */
3099                     NV_DIG +
3100                     1 + /* "e" */
3101                     1 + /* sign */
3102                     5 + /* exponent digits */
3103                     1 + /* \0 */
3104                     2; /* paranoia */
3105
3106                 s = SvGROW_mutable(sv, size);
3107 #ifndef USE_LOCALE_NUMERIC
3108                 SNPRINTF_G(SvNVX(sv), s, SvLEN(sv), NV_DIG);
3109
3110                 SvPOK_on(sv);
3111 #else
3112                 {
3113                     bool local_radix;
3114                     DECLARE_STORE_LC_NUMERIC_SET_TO_NEEDED();
3115
3116                     local_radix =
3117                         PL_numeric_local &&
3118                         PL_numeric_radix_sv &&
3119                         SvUTF8(PL_numeric_radix_sv);
3120                     if (local_radix && SvLEN(PL_numeric_radix_sv) > 1) {
3121                         size += SvLEN(PL_numeric_radix_sv) - 1;
3122                         s = SvGROW_mutable(sv, size);
3123                     }
3124
3125                     SNPRINTF_G(SvNVX(sv), s, SvLEN(sv), NV_DIG);
3126
3127                     /* If the radix character is UTF-8, and actually is in the
3128                      * output, turn on the UTF-8 flag for the scalar */
3129                     if (local_radix &&
3130                         instr(s, SvPVX_const(PL_numeric_radix_sv))) {
3131                         SvUTF8_on(sv);
3132                     }
3133
3134                     RESTORE_LC_NUMERIC();
3135                 }
3136
3137                 /* We don't call SvPOK_on(), because it may come to
3138                  * pass that the locale changes so that the
3139                  * stringification we just did is no longer correct.  We
3140                  * will have to re-stringify every time it is needed */
3141 #endif
3142                 RESTORE_ERRNO;
3143             }
3144             while (*s) s++;
3145         }
3146     }
3147     else if (isGV_with_GP(sv)) {
3148         GV *const gv = MUTABLE_GV(sv);
3149         SV *const buffer = sv_newmortal();
3150
3151         gv_efullname3(buffer, gv, "*");
3152
3153         assert(SvPOK(buffer));
3154         if (SvUTF8(buffer))
3155             SvUTF8_on(sv);
3156         if (lp)
3157             *lp = SvCUR(buffer);
3158         return SvPVX(buffer);
3159     }
3160     else if (isREGEXP(sv)) {
3161         if (lp) *lp = RX_WRAPLEN((REGEXP *)sv);
3162         return RX_WRAPPED((REGEXP *)sv);
3163     }
3164     else {
3165         if (lp)
3166             *lp = 0;
3167         if (flags & SV_UNDEF_RETURNS_NULL)
3168             return NULL;
3169         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
3170             report_uninit(sv);
3171         /* Typically the caller expects that sv_any is not NULL now.  */
3172         if (!SvREADONLY(sv) && SvTYPE(sv) < SVt_PV)
3173             sv_upgrade(sv, SVt_PV);
3174         return (char *)"";
3175     }
3176
3177     {
3178         const STRLEN len = s - SvPVX_const(sv);
3179         if (lp) 
3180             *lp = len;
3181         SvCUR_set(sv, len);
3182     }
3183     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3184                           PTR2UV(sv),SvPVX_const(sv)));
3185     if (flags & SV_CONST_RETURN)
3186         return (char *)SvPVX_const(sv);
3187     if (flags & SV_MUTABLE_RETURN)
3188         return SvPVX_mutable(sv);
3189     return SvPVX(sv);
3190 }
3191
3192 /*
3193 =for apidoc sv_copypv
3194
3195 Copies a stringified representation of the source SV into the
3196 destination SV.  Automatically performs any necessary mg_get and
3197 coercion of numeric values into strings.  Guaranteed to preserve
3198 UTF8 flag even from overloaded objects.  Similar in nature to
3199 sv_2pv[_flags] but operates directly on an SV instead of just the
3200 string.  Mostly uses sv_2pv_flags to do its work, except when that
3201 would lose the UTF-8'ness of the PV.
3202
3203 =for apidoc sv_copypv_nomg
3204
3205 Like sv_copypv, but doesn't invoke get magic first.
3206
3207 =for apidoc sv_copypv_flags
3208
3209 Implementation of sv_copypv and sv_copypv_nomg.  Calls get magic iff flags
3210 include SV_GMAGIC.
3211
3212 =cut
3213 */
3214
3215 void
3216 Perl_sv_copypv(pTHX_ SV *const dsv, SV *const ssv)
3217 {
3218     PERL_ARGS_ASSERT_SV_COPYPV;
3219
3220     sv_copypv_flags(dsv, ssv, 0);
3221 }
3222
3223 void
3224 Perl_sv_copypv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
3225 {
3226     STRLEN len;
3227     const char *s;
3228
3229     PERL_ARGS_ASSERT_SV_COPYPV_FLAGS;
3230
3231     s = SvPV_flags_const(ssv,len,(flags & SV_GMAGIC));
3232     sv_setpvn(dsv,s,len);
3233     if (SvUTF8(ssv))
3234         SvUTF8_on(dsv);
3235     else
3236         SvUTF8_off(dsv);
3237 }
3238
3239 /*
3240 =for apidoc sv_2pvbyte
3241
3242 Return a pointer to the byte-encoded representation of the SV, and set *lp
3243 to its length.  May cause the SV to be downgraded from UTF-8 as a
3244 side-effect.
3245
3246 Usually accessed via the C<SvPVbyte> macro.
3247
3248 =cut
3249 */
3250
3251 char *
3252 Perl_sv_2pvbyte(pTHX_ SV *sv, STRLEN *const lp)
3253 {
3254     PERL_ARGS_ASSERT_SV_2PVBYTE;
3255
3256     SvGETMAGIC(sv);
3257     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3258      || isGV_with_GP(sv) || SvROK(sv)) {
3259         SV *sv2 = sv_newmortal();
3260         sv_copypv_nomg(sv2,sv);
3261         sv = sv2;
3262     }
3263     sv_utf8_downgrade(sv,0);
3264     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3265 }
3266
3267 /*
3268 =for apidoc sv_2pvutf8
3269
3270 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3271 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3272
3273 Usually accessed via the C<SvPVutf8> macro.
3274
3275 =cut
3276 */
3277
3278 char *
3279 Perl_sv_2pvutf8(pTHX_ SV *sv, STRLEN *const lp)
3280 {
3281     PERL_ARGS_ASSERT_SV_2PVUTF8;
3282
3283     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3284      || isGV_with_GP(sv) || SvROK(sv))
3285         sv = sv_mortalcopy(sv);
3286     else
3287         SvGETMAGIC(sv);
3288     sv_utf8_upgrade_nomg(sv);
3289     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3290 }
3291
3292
3293 /*
3294 =for apidoc sv_2bool
3295
3296 This macro is only used by sv_true() or its macro equivalent, and only if
3297 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3298 It calls sv_2bool_flags with the SV_GMAGIC flag.
3299
3300 =for apidoc sv_2bool_flags
3301
3302 This function is only used by sv_true() and friends,  and only if
3303 the latter's argument is neither SvPOK, SvIOK nor SvNOK.  If the flags
3304 contain SV_GMAGIC, then it does an mg_get() first.
3305
3306
3307 =cut
3308 */
3309
3310 bool
3311 Perl_sv_2bool_flags(pTHX_ SV *sv, I32 flags)
3312 {
3313     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3314
3315     restart:
3316     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3317
3318     if (!SvOK(sv))
3319         return 0;
3320     if (SvROK(sv)) {
3321         if (SvAMAGIC(sv)) {
3322             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3323             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv)))) {
3324                 bool svb;
3325                 sv = tmpsv;
3326                 if(SvGMAGICAL(sv)) {
3327                     flags = SV_GMAGIC;
3328                     goto restart; /* call sv_2bool */
3329                 }
3330                 /* expanded SvTRUE_common(sv, (flags = 0, goto restart)) */
3331                 else if(!SvOK(sv)) {
3332                     svb = 0;
3333                 }
3334                 else if(SvPOK(sv)) {
3335                     svb = SvPVXtrue(sv);
3336                 }
3337                 else if((SvFLAGS(sv) & (SVf_IOK|SVf_NOK))) {
3338                     svb = (SvIOK(sv) && SvIVX(sv) != 0)
3339                         || (SvNOK(sv) && SvNVX(sv) != 0.0);
3340                 }
3341                 else {
3342                     flags = 0;
3343                     goto restart; /* call sv_2bool_nomg */
3344                 }
3345                 return cBOOL(svb);
3346             }
3347         }
3348         return SvRV(sv) != 0;
3349     }
3350     if (isREGEXP(sv))
3351         return
3352           RX_WRAPLEN(sv) > 1 || (RX_WRAPLEN(sv) && *RX_WRAPPED(sv) != '0');
3353     return SvTRUE_common(sv, isGV_with_GP(sv) ? 1 : 0);
3354 }
3355
3356 /*
3357 =for apidoc sv_utf8_upgrade
3358
3359 Converts the PV of an SV to its UTF-8-encoded form.
3360 Forces the SV to string form if it is not already.
3361 Will C<mg_get> on C<sv> if appropriate.
3362 Always sets the SvUTF8 flag to avoid future validity checks even
3363 if the whole string is the same in UTF-8 as not.
3364 Returns the number of bytes in the converted string
3365
3366 This is not a general purpose byte encoding to Unicode interface:
3367 use the Encode extension for that.
3368
3369 =for apidoc sv_utf8_upgrade_nomg
3370
3371 Like sv_utf8_upgrade, but doesn't do magic on C<sv>.
3372
3373 =for apidoc sv_utf8_upgrade_flags
3374
3375 Converts the PV of an SV to its UTF-8-encoded form.
3376 Forces the SV to string form if it is not already.
3377 Always sets the SvUTF8 flag to avoid future validity checks even
3378 if all the bytes are invariant in UTF-8.
3379 If C<flags> has C<SV_GMAGIC> bit set,
3380 will C<mg_get> on C<sv> if appropriate, else not.
3381
3382 If C<flags> has SV_FORCE_UTF8_UPGRADE set, this function assumes that the PV
3383 will expand when converted to UTF-8, and skips the extra work of checking for
3384 that.  Typically this flag is used by a routine that has already parsed the
3385 string and found such characters, and passes this information on so that the
3386 work doesn't have to be repeated.
3387
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_flags_grow
3394
3395 Like sv_utf8_upgrade_flags, but has an additional parameter C<extra>, which is
3396 the number of unused bytes the string of 'sv' is guaranteed to have free after
3397 it upon return.  This allows the caller to reserve extra space that it intends
3398 to fill, to avoid extra grows.
3399
3400 C<sv_utf8_upgrade>, C<sv_utf8_upgrade_nomg>, and C<sv_utf8_upgrade_flags>
3401 are implemented in terms of this function.
3402
3403 Returns the number of bytes in the converted string (not including the spares).
3404
3405 =cut
3406
3407 (One might think that the calling routine could pass in the position of the
3408 first variant character when it has set SV_FORCE_UTF8_UPGRADE, so it wouldn't
3409 have to be found again.  But that is not the case, because typically when the
3410 caller is likely to use this flag, it won't be calling this routine unless it
3411 finds something that won't fit into a byte.  Otherwise it tries to not upgrade
3412 and just use bytes.  But some things that do fit into a byte are variants in
3413 utf8, and the caller may not have been keeping track of these.)
3414
3415 If the routine itself changes the string, it adds a trailing C<NUL>.  Such a
3416 C<NUL> isn't guaranteed due to having other routines do the work in some input
3417 cases, or if the input is already flagged as being in utf8.
3418
3419 The speed of this could perhaps be improved for many cases if someone wanted to
3420 write a fast function that counts the number of variant characters in a string,
3421 especially if it could return the position of the first one.
3422
3423 */
3424
3425 STRLEN
3426 Perl_sv_utf8_upgrade_flags_grow(pTHX_ SV *const sv, const I32 flags, STRLEN extra)
3427 {
3428     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3429
3430     if (sv == &PL_sv_undef)
3431         return 0;
3432     if (!SvPOK_nog(sv)) {
3433         STRLEN len = 0;
3434         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3435             (void) sv_2pv_flags(sv,&len, flags);
3436             if (SvUTF8(sv)) {
3437                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3438                 return len;
3439             }
3440         } else {
3441             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3442         }
3443     }
3444
3445     if (SvUTF8(sv)) {
3446         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3447         return SvCUR(sv);
3448     }
3449
3450     if (SvIsCOW(sv)) {
3451         S_sv_uncow(aTHX_ sv, 0);
3452     }
3453
3454     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3455         sv_recode_to_utf8(sv, PL_encoding);
3456         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3457         return SvCUR(sv);
3458     }
3459
3460     if (SvCUR(sv) == 0) {
3461         if (extra) SvGROW(sv, extra);
3462     } else { /* Assume Latin-1/EBCDIC */
3463         /* This function could be much more efficient if we
3464          * had a FLAG in SVs to signal if there are any variant
3465          * chars in the PV.  Given that there isn't such a flag
3466          * make the loop as fast as possible (although there are certainly ways
3467          * to speed this up, eg. through vectorization) */
3468         U8 * s = (U8 *) SvPVX_const(sv);
3469         U8 * e = (U8 *) SvEND(sv);
3470         U8 *t = s;
3471         STRLEN two_byte_count = 0;
3472         
3473         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3474
3475         /* See if really will need to convert to utf8.  We mustn't rely on our
3476          * incoming SV being well formed and having a trailing '\0', as certain
3477          * code in pp_formline can send us partially built SVs. */
3478
3479         while (t < e) {
3480             const U8 ch = *t++;
3481             if (NATIVE_BYTE_IS_INVARIANT(ch)) continue;
3482
3483             t--;    /* t already incremented; re-point to first variant */
3484             two_byte_count = 1;
3485             goto must_be_utf8;
3486         }
3487
3488         /* utf8 conversion not needed because all are invariants.  Mark as
3489          * UTF-8 even if no variant - saves scanning loop */
3490         SvUTF8_on(sv);
3491         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3492         return SvCUR(sv);
3493
3494 must_be_utf8:
3495
3496         /* Here, the string should be converted to utf8, either because of an
3497          * input flag (two_byte_count = 0), or because a character that
3498          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3499          * the beginning of the string (if we didn't examine anything), or to
3500          * the first variant.  In either case, everything from s to t - 1 will
3501          * occupy only 1 byte each on output.
3502          *
3503          * There are two main ways to convert.  One is to create a new string
3504          * and go through the input starting from the beginning, appending each
3505          * converted value onto the new string as we go along.  It's probably
3506          * best to allocate enough space in the string for the worst possible
3507          * case rather than possibly running out of space and having to
3508          * reallocate and then copy what we've done so far.  Since everything
3509          * from s to t - 1 is invariant, the destination can be initialized
3510          * with these using a fast memory copy
3511          *
3512          * The other way is to figure out exactly how big the string should be
3513          * by parsing the entire input.  Then you don't have to make it big
3514          * enough to handle the worst possible case, and more importantly, if
3515          * the string you already have is large enough, you don't have to
3516          * allocate a new string, you can copy the last character in the input
3517          * string to the final position(s) that will be occupied by the
3518          * converted string and go backwards, stopping at t, since everything
3519          * before that is invariant.
3520          *
3521          * There are advantages and disadvantages to each method.
3522          *
3523          * In the first method, we can allocate a new string, do the memory
3524          * copy from the s to t - 1, and then proceed through the rest of the
3525          * string byte-by-byte.
3526          *
3527          * In the second method, we proceed through the rest of the input
3528          * string just calculating how big the converted string will be.  Then
3529          * there are two cases:
3530          *  1)  if the string has enough extra space to handle the converted
3531          *      value.  We go backwards through the string, converting until we
3532          *      get to the position we are at now, and then stop.  If this
3533          *      position is far enough along in the string, this method is
3534          *      faster than the other method.  If the memory copy were the same
3535          *      speed as the byte-by-byte loop, that position would be about
3536          *      half-way, as at the half-way mark, parsing to the end and back
3537          *      is one complete string's parse, the same amount as starting
3538          *      over and going all the way through.  Actually, it would be
3539          *      somewhat less than half-way, as it's faster to just count bytes
3540          *      than to also copy, and we don't have the overhead of allocating
3541          *      a new string, changing the scalar to use it, and freeing the
3542          *      existing one.  But if the memory copy is fast, the break-even
3543          *      point is somewhere after half way.  The counting loop could be
3544          *      sped up by vectorization, etc, to move the break-even point
3545          *      further towards the beginning.
3546          *  2)  if the string doesn't have enough space to handle the converted
3547          *      value.  A new string will have to be allocated, and one might
3548          *      as well, given that, start from the beginning doing the first
3549          *      method.  We've spent extra time parsing the string and in
3550          *      exchange all we've gotten is that we know precisely how big to
3551          *      make the new one.  Perl is more optimized for time than space,
3552          *      so this case is a loser.
3553          * So what I've decided to do is not use the 2nd method unless it is
3554          * guaranteed that a new string won't have to be allocated, assuming
3555          * the worst case.  I also decided not to put any more conditions on it
3556          * than this, for now.  It seems likely that, since the worst case is
3557          * twice as big as the unknown portion of the string (plus 1), we won't
3558          * be guaranteed enough space, causing us to go to the first method,
3559          * unless the string is short, or the first variant character is near
3560          * the end of it.  In either of these cases, it seems best to use the
3561          * 2nd method.  The only circumstance I can think of where this would
3562          * be really slower is if the string had once had much more data in it
3563          * than it does now, but there is still a substantial amount in it  */
3564
3565         {
3566             STRLEN invariant_head = t - s;
3567             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3568             if (SvLEN(sv) < size) {
3569
3570                 /* Here, have decided to allocate a new string */
3571
3572                 U8 *dst;
3573                 U8 *d;
3574
3575                 Newx(dst, size, U8);
3576
3577                 /* If no known invariants at the beginning of the input string,
3578                  * set so starts from there.  Otherwise, can use memory copy to
3579                  * get up to where we are now, and then start from here */
3580
3581                 if (invariant_head == 0) {
3582                     d = dst;
3583                 } else {
3584                     Copy(s, dst, invariant_head, char);
3585                     d = dst + invariant_head;
3586                 }
3587
3588                 while (t < e) {
3589                     append_utf8_from_native_byte(*t, &d);
3590                     t++;
3591                 }
3592                 *d = '\0';
3593                 SvPV_free(sv); /* No longer using pre-existing string */
3594                 SvPV_set(sv, (char*)dst);
3595                 SvCUR_set(sv, d - dst);
3596                 SvLEN_set(sv, size);
3597             } else {
3598
3599                 /* Here, have decided to get the exact size of the string.
3600                  * Currently this happens only when we know that there is
3601                  * guaranteed enough space to fit the converted string, so
3602                  * don't have to worry about growing.  If two_byte_count is 0,
3603                  * then t points to the first byte of the string which hasn't
3604                  * been examined yet.  Otherwise two_byte_count is 1, and t
3605                  * points to the first byte in the string that will expand to
3606                  * two.  Depending on this, start examining at t or 1 after t.
3607                  * */
3608
3609                 U8 *d = t + two_byte_count;
3610
3611
3612                 /* Count up the remaining bytes that expand to two */
3613
3614                 while (d < e) {
3615                     const U8 chr = *d++;
3616                     if (! NATIVE_BYTE_IS_INVARIANT(chr)) two_byte_count++;
3617                 }
3618
3619                 /* The string will expand by just the number of bytes that
3620                  * occupy two positions.  But we are one afterwards because of
3621                  * the increment just above.  This is the place to put the
3622                  * trailing NUL, and to set the length before we decrement */
3623
3624                 d += two_byte_count;
3625                 SvCUR_set(sv, d - s);
3626                 *d-- = '\0';
3627
3628
3629                 /* Having decremented d, it points to the position to put the
3630                  * very last byte of the expanded string.  Go backwards through
3631                  * the string, copying and expanding as we go, stopping when we
3632                  * get to the part that is invariant the rest of the way down */
3633
3634                 e--;
3635                 while (e >= t) {
3636                     if (NATIVE_BYTE_IS_INVARIANT(*e)) {
3637                         *d-- = *e;
3638                     } else {
3639                         *d-- = UTF8_EIGHT_BIT_LO(*e);
3640                         *d-- = UTF8_EIGHT_BIT_HI(*e);
3641                     }
3642                     e--;
3643                 }
3644             }
3645
3646             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3647                 /* Update pos. We do it at the end rather than during
3648                  * the upgrade, to avoid slowing down the common case
3649                  * (upgrade without pos).
3650                  * pos can be stored as either bytes or characters.  Since
3651                  * this was previously a byte string we can just turn off
3652                  * the bytes flag. */
3653                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3654                 if (mg) {
3655                     mg->mg_flags &= ~MGf_BYTES;
3656                 }
3657                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3658                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3659             }
3660         }
3661     }
3662
3663     /* Mark as UTF-8 even if no variant - saves scanning loop */
3664     SvUTF8_on(sv);
3665     return SvCUR(sv);
3666 }
3667
3668 /*
3669 =for apidoc sv_utf8_downgrade
3670
3671 Attempts to convert the PV of an SV from characters to bytes.
3672 If the PV contains a character that cannot fit
3673 in a byte, this conversion will fail;
3674 in this case, either returns false or, if C<fail_ok> is not
3675 true, croaks.
3676
3677 This is not a general purpose Unicode to byte encoding interface:
3678 use the Encode extension for that.
3679
3680 =cut
3681 */
3682
3683 bool
3684 Perl_sv_utf8_downgrade(pTHX_ SV *const sv, const bool fail_ok)
3685 {
3686     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3687
3688     if (SvPOKp(sv) && SvUTF8(sv)) {
3689         if (SvCUR(sv)) {
3690             U8 *s;
3691             STRLEN len;
3692             int mg_flags = SV_GMAGIC;
3693
3694             if (SvIsCOW(sv)) {
3695                 S_sv_uncow(aTHX_ sv, 0);
3696             }
3697             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3698                 /* update pos */
3699                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3700                 if (mg && mg->mg_len > 0 && mg->mg_flags & MGf_BYTES) {
3701                         mg->mg_len = sv_pos_b2u_flags(sv, mg->mg_len,
3702                                                 SV_GMAGIC|SV_CONST_RETURN);
3703                         mg_flags = 0; /* sv_pos_b2u does get magic */
3704                 }
3705                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3706                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3707
3708             }
3709             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3710
3711             if (!utf8_to_bytes(s, &len)) {
3712                 if (fail_ok)
3713                     return FALSE;
3714                 else {
3715                     if (PL_op)
3716                         Perl_croak(aTHX_ "Wide character in %s",
3717                                    OP_DESC(PL_op));
3718                     else
3719                         Perl_croak(aTHX_ "Wide character");
3720                 }
3721             }
3722             SvCUR_set(sv, len);
3723         }
3724     }
3725     SvUTF8_off(sv);
3726     return TRUE;
3727 }
3728
3729 /*
3730 =for apidoc sv_utf8_encode
3731
3732 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3733 flag off so that it looks like octets again.
3734
3735 =cut
3736 */
3737
3738 void
3739 Perl_sv_utf8_encode(pTHX_ SV *const sv)
3740 {
3741     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3742
3743     if (SvREADONLY(sv)) {
3744         sv_force_normal_flags(sv, 0);
3745     }
3746     (void) sv_utf8_upgrade(sv);
3747     SvUTF8_off(sv);
3748 }
3749
3750 /*
3751 =for apidoc sv_utf8_decode
3752
3753 If the PV of the SV is an octet sequence in UTF-8
3754 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3755 so that it looks like a character.  If the PV contains only single-byte
3756 characters, the C<SvUTF8> flag stays off.
3757 Scans PV for validity and returns false if the PV is invalid UTF-8.
3758
3759 =cut
3760 */
3761
3762 bool
3763 Perl_sv_utf8_decode(pTHX_ SV *const sv)
3764 {
3765     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3766
3767     if (SvPOKp(sv)) {
3768         const U8 *start, *c;
3769         const U8 *e;
3770
3771         /* The octets may have got themselves encoded - get them back as
3772          * bytes
3773          */
3774         if (!sv_utf8_downgrade(sv, TRUE))
3775             return FALSE;
3776
3777         /* it is actually just a matter of turning the utf8 flag on, but
3778          * we want to make sure everything inside is valid utf8 first.
3779          */
3780         c = start = (const U8 *) SvPVX_const(sv);
3781         if (!is_utf8_string(c, SvCUR(sv)))
3782             return FALSE;
3783         e = (const U8 *) SvEND(sv);
3784         while (c < e) {
3785             const U8 ch = *c++;
3786             if (!UTF8_IS_INVARIANT(ch)) {
3787                 SvUTF8_on(sv);
3788                 break;
3789             }
3790         }
3791         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3792             /* XXX Is this dead code?  XS_utf8_decode calls SvSETMAGIC
3793                    after this, clearing pos.  Does anything on CPAN
3794                    need this? */
3795             /* adjust pos to the start of a UTF8 char sequence */
3796             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3797             if (mg) {
3798                 I32 pos = mg->mg_len;
3799                 if (pos > 0) {
3800                     for (c = start + pos; c > start; c--) {
3801                         if (UTF8_IS_START(*c))
3802                             break;
3803                     }
3804                     mg->mg_len  = c - start;
3805                 }
3806             }
3807             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3808                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3809         }
3810     }
3811     return TRUE;
3812 }
3813
3814 /*
3815 =for apidoc sv_setsv
3816
3817 Copies the contents of the source SV C<ssv> into the destination SV
3818 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3819 function if the source SV needs to be reused.  Does not handle 'set' magic on
3820 destination SV.  Calls 'get' magic on source SV.  Loosely speaking, it
3821 performs a copy-by-value, obliterating any previous content of the
3822 destination.
3823
3824 You probably want to use one of the assortment of wrappers, such as
3825 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3826 C<SvSetMagicSV_nosteal>.
3827
3828 =for apidoc sv_setsv_flags
3829
3830 Copies the contents of the source SV C<ssv> into the destination SV
3831 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3832 function if the source SV needs to be reused.  Does not handle 'set' magic.
3833 Loosely speaking, it performs a copy-by-value, obliterating any previous
3834 content of the destination.
3835 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3836 C<ssv> if appropriate, else not.  If the C<flags>
3837 parameter has the C<SV_NOSTEAL> bit set then the
3838 buffers of temps will not be stolen.  <sv_setsv>
3839 and C<sv_setsv_nomg> are implemented in terms of this function.
3840
3841 You probably want to use one of the assortment of wrappers, such as
3842 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3843 C<SvSetMagicSV_nosteal>.
3844
3845 This is the primary function for copying scalars, and most other
3846 copy-ish functions and macros use this underneath.
3847
3848 =cut
3849 */
3850
3851 static void
3852 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3853 {
3854     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3855     HV *old_stash = NULL;
3856
3857     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3858
3859     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3860         const char * const name = GvNAME(sstr);
3861         const STRLEN len = GvNAMELEN(sstr);
3862         {
3863             if (dtype >= SVt_PV) {
3864                 SvPV_free(dstr);
3865                 SvPV_set(dstr, 0);
3866                 SvLEN_set(dstr, 0);
3867                 SvCUR_set(dstr, 0);
3868             }
3869             SvUPGRADE(dstr, SVt_PVGV);
3870             (void)SvOK_off(dstr);
3871             isGV_with_GP_on(dstr);
3872         }
3873         GvSTASH(dstr) = GvSTASH(sstr);
3874         if (GvSTASH(dstr))
3875             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3876         gv_name_set(MUTABLE_GV(dstr), name, len,
3877                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3878         SvFAKE_on(dstr);        /* can coerce to non-glob */
3879     }
3880
3881     if(GvGP(MUTABLE_GV(sstr))) {
3882         /* If source has method cache entry, clear it */
3883         if(GvCVGEN(sstr)) {
3884             SvREFCNT_dec(GvCV(sstr));
3885             GvCV_set(sstr, NULL);
3886             GvCVGEN(sstr) = 0;
3887         }
3888         /* If source has a real method, then a method is
3889            going to change */
3890         else if(
3891          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3892         ) {
3893             mro_changes = 1;
3894         }
3895     }
3896
3897     /* If dest already had a real method, that's a change as well */
3898     if(
3899         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3900      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3901     ) {
3902         mro_changes = 1;
3903     }
3904
3905     /* We don't need to check the name of the destination if it was not a
3906        glob to begin with. */
3907     if(dtype == SVt_PVGV) {
3908         const char * const name = GvNAME((const GV *)dstr);
3909         if(
3910             strEQ(name,"ISA")
3911          /* The stash may have been detached from the symbol table, so
3912             check its name. */
3913          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3914         )
3915             mro_changes = 2;
3916         else {
3917             const STRLEN len = GvNAMELEN(dstr);
3918             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3919              || (len == 1 && name[0] == ':')) {
3920                 mro_changes = 3;
3921
3922                 /* Set aside the old stash, so we can reset isa caches on
3923                    its subclasses. */
3924                 if((old_stash = GvHV(dstr)))
3925                     /* Make sure we do not lose it early. */
3926                     SvREFCNT_inc_simple_void_NN(
3927                      sv_2mortal((SV *)old_stash)
3928                     );
3929             }
3930         }
3931
3932         SvREFCNT_inc_simple_void_NN(sv_2mortal(dstr));
3933     }
3934
3935     gp_free(MUTABLE_GV(dstr));
3936     GvINTRO_off(dstr);          /* one-shot flag */
3937     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3938     if (SvTAINTED(sstr))
3939         SvTAINT(dstr);
3940     if (GvIMPORTED(dstr) != GVf_IMPORTED
3941         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3942         {
3943             GvIMPORTED_on(dstr);
3944         }
3945     GvMULTI_on(dstr);
3946     if(mro_changes == 2) {
3947       if (GvAV((const GV *)sstr)) {
3948         MAGIC *mg;
3949         SV * const sref = (SV *)GvAV((const GV *)dstr);
3950         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3951             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3952                 AV * const ary = newAV();
3953                 av_push(ary, mg->mg_obj); /* takes the refcount */
3954                 mg->mg_obj = (SV *)ary;
3955             }
3956             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3957         }
3958         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3959       }
3960       mro_isa_changed_in(GvSTASH(dstr));
3961     }
3962     else if(mro_changes == 3) {
3963         HV * const stash = GvHV(dstr);
3964         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3965             mro_package_moved(
3966                 stash, old_stash,
3967                 (GV *)dstr, 0
3968             );
3969     }
3970     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3971     if (GvIO(dstr) && dtype == SVt_PVGV) {
3972         DEBUG_o(Perl_deb(aTHX_
3973                         "glob_assign_glob clearing PL_stashcache\n"));
3974         /* It's a cache. It will rebuild itself quite happily.
3975            It's a lot of effort to work out exactly which key (or keys)
3976            might be invalidated by the creation of the this file handle.
3977          */
3978         hv_clear(PL_stashcache);
3979     }
3980     return;
3981 }
3982
3983 void
3984 Perl_gv_setref(pTHX_ SV *const dstr, SV *const sstr)
3985 {
3986     SV * const sref = SvRV(sstr);
3987     SV *dref;
3988     const int intro = GvINTRO(dstr);
3989     SV **location;
3990     U8 import_flag = 0;
3991     const U32 stype = SvTYPE(sref);
3992
3993     PERL_ARGS_ASSERT_GV_SETREF;
3994
3995     if (intro) {
3996         GvINTRO_off(dstr);      /* one-shot flag */
3997         GvLINE(dstr) = CopLINE(PL_curcop);
3998         GvEGV(dstr) = MUTABLE_GV(dstr);
3999     }
4000     GvMULTI_on(dstr);
4001     switch (stype) {
4002     case SVt_PVCV:
4003         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
4004         import_flag = GVf_IMPORTED_CV;
4005         goto common;
4006     case SVt_PVHV:
4007         location = (SV **) &GvHV(dstr);
4008         import_flag = GVf_IMPORTED_HV;
4009         goto common;
4010     case SVt_PVAV:
4011         location = (SV **) &GvAV(dstr);
4012         import_flag = GVf_IMPORTED_AV;
4013         goto common;
4014     case SVt_PVIO:
4015         location = (SV **) &GvIOp(dstr);
4016         goto common;
4017     case SVt_PVFM:
4018         location = (SV **) &GvFORM(dstr);
4019         goto common;
4020     default:
4021         location = &GvSV(dstr);
4022         import_flag = GVf_IMPORTED_SV;
4023     common:
4024         if (intro) {
4025             if (stype == SVt_PVCV) {
4026                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
4027                 if (GvCVGEN(dstr)) {
4028                     SvREFCNT_dec(GvCV(dstr));
4029                     GvCV_set(dstr, NULL);
4030                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
4031                 }
4032             }
4033             /* SAVEt_GVSLOT takes more room on the savestack and has more
4034                overhead in leave_scope than SAVEt_GENERIC_SV.  But for CVs
4035                leave_scope needs access to the GV so it can reset method
4036                caches.  We must use SAVEt_GVSLOT whenever the type is
4037                SVt_PVCV, even if the stash is anonymous, as the stash may
4038                gain a name somehow before leave_scope. */
4039             if (stype == SVt_PVCV) {
4040                 /* There is no save_pushptrptrptr.  Creating it for this
4041                    one call site would be overkill.  So inline the ss add
4042                    routines here. */
4043                 dSS_ADD;
4044                 SS_ADD_PTR(dstr);
4045                 SS_ADD_PTR(location);
4046                 SS_ADD_PTR(SvREFCNT_inc(*location));
4047                 SS_ADD_UV(SAVEt_GVSLOT);
4048                 SS_ADD_END(4);
4049             }
4050             else SAVEGENERICSV(*location);
4051         }
4052         dref = *location;
4053         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
4054             CV* const cv = MUTABLE_CV(*location);
4055             if (cv) {
4056                 if (!GvCVGEN((const GV *)dstr) &&
4057                     (CvROOT(cv) || CvXSUB(cv)) &&
4058                     /* redundant check that avoids creating the extra SV
4059                        most of the time: */
4060                     (CvCONST(cv) || ckWARN(WARN_REDEFINE)))
4061                     {
4062                         SV * const new_const_sv =
4063                             CvCONST((const CV *)sref)
4064                                  ? cv_const_sv((const CV *)sref)
4065                                  : NULL;
4066                         report_redefined_cv(
4067                            sv_2mortal(Perl_newSVpvf(aTHX_
4068                                 "%"HEKf"::%"HEKf,
4069                                 HEKfARG(
4070                                  HvNAME_HEK(GvSTASH((const GV *)dstr))
4071                                 ),
4072                                 HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr)))
4073                            )),
4074                            cv,
4075                            CvCONST((const CV *)sref) ? &new_const_sv : NULL
4076                         );
4077                     }
4078                 if (!intro)
4079                     cv_ckproto_len_flags(cv, (const GV *)dstr,
4080                                    SvPOK(sref) ? CvPROTO(sref) : NULL,
4081                                    SvPOK(sref) ? CvPROTOLEN(sref) : 0,
4082                                    SvPOK(sref) ? SvUTF8(sref) : 0);
4083             }
4084             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
4085             GvASSUMECV_on(dstr);
4086             if(GvSTASH(dstr)) { /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
4087                 if (intro && GvREFCNT(dstr) > 1) {
4088                     /* temporary remove extra savestack's ref */
4089                     --GvREFCNT(dstr);
4090                     gv_method_changed(dstr);
4091                     ++GvREFCNT(dstr);
4092                 }
4093                 else gv_method_changed(dstr);
4094             }
4095         }
4096         *location = SvREFCNT_inc_simple_NN(sref);
4097         if (import_flag && !(GvFLAGS(dstr) & import_flag)
4098             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
4099             GvFLAGS(dstr) |= import_flag;
4100         }
4101         if (import_flag == GVf_IMPORTED_SV) {
4102             if (intro) {
4103                 save_aliased_sv((GV *)dstr);
4104             }
4105             /* Turn off the flag if sref is not referenced elsewhere,
4106                even by weak refs.  (SvRMAGICAL is a pessimistic check for
4107                back refs.)  */
4108             if (SvREFCNT(sref) <= 2 && !SvRMAGICAL(sref))
4109                 GvALIASED_SV_off(dstr);
4110             else
4111                 GvALIASED_SV_on(dstr);
4112         }
4113         if (stype == SVt_PVHV) {
4114             const char * const name = GvNAME((GV*)dstr);
4115             const STRLEN len = GvNAMELEN(dstr);
4116             if (
4117                 (
4118                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
4119                 || (len == 1 && name[0] == ':')
4120                 )
4121              && (!dref || HvENAME_get(dref))
4122             ) {
4123                 mro_package_moved(
4124                     (HV *)sref, (HV *)dref,
4125                     (GV *)dstr, 0
4126                 );
4127             }
4128         }
4129         else if (
4130             stype == SVt_PVAV && sref != dref
4131          && strEQ(GvNAME((GV*)dstr), "ISA")
4132          /* The stash may have been detached from the symbol table, so
4133             check its name before doing anything. */
4134          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
4135         ) {
4136             MAGIC *mg;
4137             MAGIC * const omg = dref && SvSMAGICAL(dref)
4138                                  ? mg_find(dref, PERL_MAGIC_isa)
4139                                  : NULL;
4140             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
4141                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
4142                     AV * const ary = newAV();
4143                     av_push(ary, mg->mg_obj); /* takes the refcount */
4144                     mg->mg_obj = (SV *)ary;
4145                 }
4146                 if (omg) {
4147                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
4148                         SV **svp = AvARRAY((AV *)omg->mg_obj);
4149                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
4150                         while (items--)
4151                             av_push(
4152                              (AV *)mg->mg_obj,
4153                              SvREFCNT_inc_simple_NN(*svp++)
4154                             );
4155                     }
4156                     else
4157                         av_push(
4158                          (AV *)mg->mg_obj,
4159                          SvREFCNT_inc_simple_NN(omg->mg_obj)
4160                         );
4161                 }
4162                 else
4163                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
4164             }
4165             else
4166             {
4167                 sv_magic(
4168                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
4169                 );
4170                 mg = mg_find(sref, PERL_MAGIC_isa);
4171             }
4172             /* Since the *ISA assignment could have affected more than
4173                one stash, don't call mro_isa_changed_in directly, but let
4174                magic_clearisa do it for us, as it already has the logic for
4175                dealing with globs vs arrays of globs. */
4176             assert(mg);
4177             Perl_magic_clearisa(aTHX_ NULL, mg);
4178         }
4179         else if (stype == SVt_PVIO) {
4180             DEBUG_o(Perl_deb(aTHX_ "gv_setref clearing PL_stashcache\n"));
4181             /* It's a cache. It will rebuild itself quite happily.
4182                It's a lot of effort to work out exactly which key (or keys)
4183                might be invalidated by the creation of the this file handle.
4184             */
4185             hv_clear(PL_stashcache);
4186         }
4187         break;
4188     }
4189     if (!intro) SvREFCNT_dec(dref);
4190     if (SvTAINTED(sstr))
4191         SvTAINT(dstr);
4192     return;
4193 }
4194
4195
4196
4197
4198 #ifdef PERL_DEBUG_READONLY_COW
4199 # include <sys/mman.h>
4200
4201 # ifndef PERL_MEMORY_DEBUG_HEADER_SIZE
4202 #  define PERL_MEMORY_DEBUG_HEADER_SIZE 0
4203 # endif
4204
4205 void
4206 Perl_sv_buf_to_ro(pTHX_ SV *sv)
4207 {
4208     struct perl_memory_debug_header * const header =
4209         (struct perl_memory_debug_header *)(SvPVX(sv)-PERL_MEMORY_DEBUG_HEADER_SIZE);
4210     const MEM_SIZE len = header->size;
4211     PERL_ARGS_ASSERT_SV_BUF_TO_RO;
4212 # ifdef PERL_TRACK_MEMPOOL
4213     if (!header->readonly) header->readonly = 1;
4214 # endif
4215     if (mprotect(header, len, PROT_READ))
4216         Perl_warn(aTHX_ "mprotect RW for COW string %p %lu failed with %d",
4217                          header, len, errno);
4218 }
4219
4220 static void
4221 S_sv_buf_to_rw(pTHX_ SV *sv)
4222 {
4223     struct perl_memory_debug_header * const header =
4224         (struct perl_memory_debug_header *)(SvPVX(sv)-PERL_MEMORY_DEBUG_HEADER_SIZE);
4225     const MEM_SIZE len = header->size;
4226     PERL_ARGS_ASSERT_SV_BUF_TO_RW;
4227     if (mprotect(header, len, PROT_READ|PROT_WRITE))
4228         Perl_warn(aTHX_ "mprotect for COW string %p %lu failed with %d",
4229                          header, len, errno);
4230 # ifdef PERL_TRACK_MEMPOOL
4231     header->readonly = 0;
4232 # endif
4233 }
4234
4235 #else
4236 # define sv_buf_to_ro(sv)       NOOP
4237 # define sv_buf_to_rw(sv)       NOOP
4238 #endif
4239
4240 void
4241 Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags)
4242 {
4243     U32 sflags;
4244     int dtype;
4245     svtype stype;
4246
4247     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
4248
4249     if (sstr == dstr)
4250         return;
4251
4252     if (SvIS_FREED(dstr)) {
4253         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
4254                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
4255     }
4256     SV_CHECK_THINKFIRST_COW_DROP(dstr);
4257     if (!sstr)
4258         sstr = &PL_sv_undef;
4259     if (SvIS_FREED(sstr)) {
4260         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
4261                    (void*)sstr, (void*)dstr);
4262     }
4263     stype = SvTYPE(sstr);
4264     dtype = SvTYPE(dstr);
4265
4266     /* There's a lot of redundancy below but we're going for speed here */
4267
4268     switch (stype) {
4269     case SVt_NULL:
4270       undef_sstr:
4271         if (dtype != SVt_PVGV && dtype != SVt_PVLV) {
4272             (void)SvOK_off(dstr);
4273             return;
4274         }
4275         break;
4276     case SVt_IV:
4277         if (SvIOK(sstr)) {
4278             switch (dtype) {
4279             case SVt_NULL:
4280                 sv_upgrade(dstr, SVt_IV);
4281                 break;
4282             case SVt_NV:
4283             case SVt_PV:
4284                 sv_upgrade(dstr, SVt_PVIV);
4285                 break;
4286             case SVt_PVGV:
4287             case SVt_PVLV:
4288                 goto end_of_first_switch;
4289             }
4290             (void)SvIOK_only(dstr);
4291             SvIV_set(dstr,  SvIVX(sstr));
4292             if (SvIsUV(sstr))
4293                 SvIsUV_on(dstr);
4294             /* SvTAINTED can only be true if the SV has taint magic, which in
4295                turn means that the SV type is PVMG (or greater). This is the
4296                case statement for SVt_IV, so this cannot be true (whatever gcov
4297                may say).  */
4298             assert(!SvTAINTED(sstr));
4299             return;
4300         }
4301         if (!SvROK(sstr))
4302             goto undef_sstr;
4303         if (dtype < SVt_PV && dtype != SVt_IV)
4304             sv_upgrade(dstr, SVt_IV);
4305         break;
4306
4307     case SVt_NV:
4308         if (SvNOK(sstr)) {
4309             switch (dtype) {
4310             case SVt_NULL:
4311             case SVt_IV:
4312                 sv_upgrade(dstr, SVt_NV);
4313                 break;
4314             case SVt_PV:
4315             case SVt_PVIV:
4316                 sv_upgrade(dstr, SVt_PVNV);
4317                 break;
4318             case SVt_PVGV:
4319             case SVt_PVLV:
4320                 goto end_of_first_switch;
4321             }
4322             SvNV_set(dstr, SvNVX(sstr));
4323             (void)SvNOK_only(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_NV, so this cannot be true (whatever gcov
4327                may say).  */
4328             assert(!SvTAINTED(sstr));
4329             return;
4330         }
4331         goto undef_sstr;
4332
4333     case SVt_PV:
4334         if (dtype < SVt_PV)
4335             sv_upgrade(dstr, SVt_PV);
4336         break;
4337     case SVt_PVIV:
4338         if (dtype < SVt_PVIV)
4339             sv_upgrade(dstr, SVt_PVIV);
4340         break;
4341     case SVt_PVNV:
4342         if (dtype < SVt_PVNV)
4343             sv_upgrade(dstr, SVt_PVNV);
4344         break;
4345     default:
4346         {
4347         const char * const type = sv_reftype(sstr,0);
4348         if (PL_op)
4349             /* diag_listed_as: Bizarre copy of %s */
4350             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4351         else
4352             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4353         }
4354         NOT_REACHED; /* NOTREACHED */
4355
4356     case SVt_REGEXP:
4357       upgregexp:
4358         if (dtype < SVt_REGEXP)
4359         {
4360             if (dtype >= SVt_PV) {
4361                 SvPV_free(dstr);
4362                 SvPV_set(dstr, 0);
4363                 SvLEN_set(dstr, 0);
4364                 SvCUR_set(dstr, 0);
4365             }
4366             sv_upgrade(dstr, SVt_REGEXP);
4367         }
4368         break;
4369
4370         case SVt_INVLIST:
4371     case SVt_PVLV:
4372     case SVt_PVGV:
4373     case SVt_PVMG:
4374         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4375             mg_get(sstr);
4376             if (SvTYPE(sstr) != stype)
4377                 stype = SvTYPE(sstr);
4378         }
4379         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4380                     glob_assign_glob(dstr, sstr, dtype);
4381                     return;
4382         }
4383         if (stype == SVt_PVLV)
4384         {
4385             if (isREGEXP(sstr)) goto upgregexp;
4386             SvUPGRADE(dstr, SVt_PVNV);
4387         }
4388         else
4389             SvUPGRADE(dstr, (svtype)stype);
4390     }
4391  end_of_first_switch:
4392
4393     /* dstr may have been upgraded.  */
4394     dtype = SvTYPE(dstr);
4395     sflags = SvFLAGS(sstr);
4396
4397     if (dtype == SVt_PVCV) {
4398         /* Assigning to a subroutine sets the prototype.  */
4399         if (SvOK(sstr)) {
4400             STRLEN len;
4401             const char *const ptr = SvPV_const(sstr, len);
4402
4403             SvGROW(dstr, len + 1);
4404             Copy(ptr, SvPVX(dstr), len + 1, char);
4405             SvCUR_set(dstr, len);
4406             SvPOK_only(dstr);
4407             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4408             CvAUTOLOAD_off(dstr);
4409         } else {
4410             SvOK_off(dstr);
4411         }
4412     }
4413     else if (dtype == SVt_PVAV || dtype == SVt_PVHV || dtype == SVt_PVFM) {
4414         const char * const type = sv_reftype(dstr,0);
4415         if (PL_op)
4416             /* diag_listed_as: Cannot copy to %s */
4417             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4418         else
4419             Perl_croak(aTHX_ "Cannot copy to %s", type);
4420     } else if (sflags & SVf_ROK) {
4421         if (isGV_with_GP(dstr)
4422             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4423             sstr = SvRV(sstr);
4424             if (sstr == dstr) {
4425                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4426                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4427                 {
4428                     GvIMPORTED_on(dstr);
4429                 }
4430                 GvMULTI_on(dstr);
4431                 return;
4432             }
4433             glob_assign_glob(dstr, sstr, dtype);
4434             return;
4435         }
4436
4437         if (dtype >= SVt_PV) {
4438             if (isGV_with_GP(dstr)) {
4439                 gv_setref(dstr, sstr);
4440                 return;
4441             }
4442             if (SvPVX_const(dstr)) {
4443                 SvPV_free(dstr);
4444                 SvLEN_set(dstr, 0);
4445                 SvCUR_set(dstr, 0);
4446             }
4447         }
4448         (void)SvOK_off(dstr);
4449         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4450         SvFLAGS(dstr) |= sflags & SVf_ROK;
4451         assert(!(sflags & SVp_NOK));
4452         assert(!(sflags & SVp_IOK));
4453         assert(!(sflags & SVf_NOK));
4454         assert(!(sflags & SVf_IOK));
4455     }
4456     else if (isGV_with_GP(dstr)) {
4457         if (!(sflags & SVf_OK)) {
4458             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4459                            "Undefined value assigned to typeglob");
4460         }
4461         else {
4462             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4463             if (dstr != (const SV *)gv) {
4464                 const char * const name = GvNAME((const GV *)dstr);
4465                 const STRLEN len = GvNAMELEN(dstr);
4466                 HV *old_stash = NULL;
4467                 bool reset_isa = FALSE;
4468                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4469                  || (len == 1 && name[0] == ':')) {
4470                     /* Set aside the old stash, so we can reset isa caches
4471                        on its subclasses. */
4472                     if((old_stash = GvHV(dstr))) {
4473                         /* Make sure we do not lose it early. */
4474                         SvREFCNT_inc_simple_void_NN(
4475                          sv_2mortal((SV *)old_stash)
4476                         );
4477                     }
4478                     reset_isa = TRUE;
4479                 }
4480
4481                 if (GvGP(dstr)) {
4482                     SvREFCNT_inc_simple_void_NN(sv_2mortal(dstr));
4483                     gp_free(MUTABLE_GV(dstr));
4484                 }
4485                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4486
4487                 if (reset_isa) {
4488                     HV * const stash = GvHV(dstr);
4489                     if(
4490                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4491                     )
4492                         mro_package_moved(
4493                          stash, old_stash,
4494                          (GV *)dstr, 0
4495                         );
4496                 }
4497             }
4498         }
4499     }
4500     else if ((dtype == SVt_REGEXP || dtype == SVt_PVLV)
4501           && (stype == SVt_REGEXP || isREGEXP(sstr))) {
4502         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4503     }
4504     else if (sflags & SVp_POK) {
4505         const STRLEN cur = SvCUR(sstr);
4506         const STRLEN len = SvLEN(sstr);
4507
4508         /*
4509          * We have three basic ways to copy the string:
4510          *
4511          *  1. Swipe
4512          *  2. Copy-on-write
4513          *  3. Actual copy
4514          * 
4515          * Which we choose is based on various factors.  The following
4516          * things are listed in order of speed, fastest to slowest:
4517          *  - Swipe
4518          *  - Copying a short string
4519          *  - Copy-on-write bookkeeping
4520          *  - malloc
4521          *  - Copying a long string
4522          * 
4523          * We swipe the string (steal the string buffer) if the SV on the
4524          * rhs is about to be freed anyway (TEMP and refcnt==1).  This is a
4525          * big win on long strings.  It should be a win on short strings if
4526          * SvPVX_const(dstr) has to be allocated.  If not, it should not 
4527          * slow things down, as SvPVX_const(sstr) would have been freed
4528          * soon anyway.
4529          * 
4530          * We also steal the buffer from a PADTMP (operator target) if it
4531          * is â€˜long enough’.  For short strings, a swipe does not help
4532          * here, as it causes more malloc calls the next time the target
4533          * is used.  Benchmarks show that even if SvPVX_const(dstr) has to
4534          * be allocated it is still not worth swiping PADTMPs for short
4535          * strings, as the savings here are small.
4536          * 
4537          * If swiping is not an option, then we see whether it is
4538          * worth using copy-on-write.  If the lhs already has a buf-
4539          * fer big enough and the string is short, we skip it and fall back
4540          * to method 3, since memcpy is faster for short strings than the
4541          * later bookkeeping overhead that copy-on-write entails.
4542
4543          * If the rhs is not a copy-on-write string yet, then we also
4544          * consider whether the buffer is too large relative to the string
4545          * it holds.  Some operations such as readline allocate a large
4546          * buffer in the expectation of reusing it.  But turning such into
4547          * a COW buffer is counter-productive because it increases memory
4548          * usage by making readline allocate a new large buffer the sec-
4549          * ond time round.  So, if the buffer is too large, again, we use
4550          * method 3 (copy).
4551          * 
4552          * Finally, if there is no buffer on the left, or the buffer is too 
4553          * small, then we use copy-on-write and make both SVs share the
4554          * string buffer.
4555          *
4556          */
4557
4558         /* Whichever path we take through the next code, we want this true,
4559            and doing it now facilitates the COW check.  */
4560         (void)SvPOK_only(dstr);
4561
4562         if (
4563                  (              /* Either ... */
4564                                 /* slated for free anyway (and not COW)? */
4565                     (sflags & (SVs_TEMP|SVf_IsCOW)) == SVs_TEMP
4566                                 /* or a swipable TARG */
4567                  || ((sflags &
4568                            (SVs_PADTMP|SVf_READONLY|SVf_PROTECT|SVf_IsCOW))
4569                        == SVs_PADTMP
4570                                 /* whose buffer is worth stealing */
4571                      && CHECK_COWBUF_THRESHOLD(cur,len)
4572                     )
4573                  ) &&
4574                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4575                  (!(flags & SV_NOSTEAL)) &&
4576                                         /* and we're allowed to steal temps */
4577                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4578                  len)             /* and really is a string */
4579         {       /* Passes the swipe test.  */
4580             if (SvPVX_const(dstr))      /* we know that dtype >= SVt_PV */
4581                 SvPV_free(dstr);
4582             SvPV_set(dstr, SvPVX_mutable(sstr));
4583             SvLEN_set(dstr, SvLEN(sstr));
4584             SvCUR_set(dstr, SvCUR(sstr));
4585
4586             SvTEMP_off(dstr);
4587             (void)SvOK_off(sstr);       /* NOTE: nukes most SvFLAGS on sstr */
4588             SvPV_set(sstr, NULL);
4589             SvLEN_set(sstr, 0);
4590             SvCUR_set(sstr, 0);
4591             SvTEMP_off(sstr);
4592         }
4593         else if (flags & SV_COW_SHARED_HASH_KEYS
4594               &&
4595 #ifdef PERL_OLD_COPY_ON_WRITE
4596                  (  sflags & SVf_IsCOW
4597                  || (   (sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4598                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4599                      && SvTYPE(sstr) >= SVt_PVIV && len
4600                     )
4601                  )
4602 #elif defined(PERL_NEW_COPY_ON_WRITE)
4603                  (sflags & SVf_IsCOW
4604                    ? (!len ||
4605                        (  (CHECK_COWBUF_THRESHOLD(cur,len) || SvLEN(dstr) < cur+1)
4606                           /* If this is a regular (non-hek) COW, only so
4607                              many COW "copies" are possible. */
4608                        && CowREFCNT(sstr) != SV_COW_REFCNT_MAX  ))
4609                    : (  (sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4610                      && !(SvFLAGS(dstr) & SVf_BREAK)
4611                      && CHECK_COW_THRESHOLD(cur,len) && cur+1 < len
4612                      && (CHECK_COWBUF_THRESHOLD(cur,len) || SvLEN(dstr) < cur+1)
4613                     ))
4614 #else
4615                  sflags & SVf_IsCOW
4616               && !(SvFLAGS(dstr) & SVf_BREAK)
4617 #endif
4618             ) {
4619             /* Either it's a shared hash key, or it's suitable for
4620                copy-on-write.  */
4621             if (DEBUG_C_TEST) {
4622                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4623                 sv_dump(sstr);
4624                 sv_dump(dstr);
4625             }
4626 #ifdef PERL_ANY_COW
4627             if (!(sflags & SVf_IsCOW)) {
4628                     SvIsCOW_on(sstr);
4629 # ifdef PERL_OLD_COPY_ON_WRITE
4630                     /* Make the source SV into a loop of 1.
4631                        (about to become 2) */
4632                     SV_COW_NEXT_SV_SET(sstr, sstr);
4633 # else
4634                     CowREFCNT(sstr) = 0;
4635 # endif
4636             }
4637 #endif
4638             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4639                 SvPV_free(dstr);
4640             }
4641
4642 #ifdef PERL_ANY_COW
4643             if (len) {
4644 # ifdef PERL_OLD_COPY_ON_WRITE
4645                     assert (SvTYPE(dstr) >= SVt_PVIV);
4646                     /* SvIsCOW_normal */
4647                     /* splice us in between source and next-after-source.  */
4648                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4649                     SV_COW_NEXT_SV_SET(sstr, dstr);
4650 # else
4651                     if (sflags & SVf_IsCOW) {
4652                         sv_buf_to_rw(sstr);
4653                     }
4654                     CowREFCNT(sstr)++;
4655 # endif
4656                     SvPV_set(dstr, SvPVX_mutable(sstr));
4657                     sv_buf_to_ro(sstr);
4658             } else
4659 #endif
4660             {
4661                     /* SvIsCOW_shared_hash */
4662                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4663                                           "Copy on write: Sharing hash\n"));
4664
4665                     assert (SvTYPE(dstr) >= SVt_PV);
4666                     SvPV_set(dstr,
4667                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4668             }
4669             SvLEN_set(dstr, len);
4670             SvCUR_set(dstr, cur);
4671             SvIsCOW_on(dstr);
4672         } else {
4673             /* Failed the swipe test, and we cannot do copy-on-write either.
4674                Have to copy the string.  */
4675             SvGROW(dstr, cur + 1);      /* inlined from sv_setpvn */
4676             Move(SvPVX_const(sstr),SvPVX(dstr),cur,char);
4677             SvCUR_set(dstr, cur);
4678             *SvEND(dstr) = '\0';
4679         }
4680         if (sflags & SVp_NOK) {
4681             SvNV_set(dstr, SvNVX(sstr));
4682         }
4683         if (sflags & SVp_IOK) {
4684             SvIV_set(dstr, SvIVX(sstr));
4685             /* Must do this otherwise some other overloaded use of 0x80000000
4686                gets confused. I guess SVpbm_VALID */
4687             if (sflags & SVf_IVisUV)
4688                 SvIsUV_on(dstr);
4689         }
4690         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4691         {
4692             const MAGIC * const smg = SvVSTRING_mg(sstr);
4693             if (smg) {
4694                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4695                          smg->mg_ptr, smg->mg_len);
4696                 SvRMAGICAL_on(dstr);
4697             }
4698         }
4699     }
4700     else if (sflags & (SVp_IOK|SVp_NOK)) {
4701         (void)SvOK_off(dstr);
4702         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4703         if (sflags & SVp_IOK) {
4704             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4705             SvIV_set(dstr, SvIVX(sstr));
4706         }
4707         if (sflags & SVp_NOK) {
4708             SvNV_set(dstr, SvNVX(sstr));
4709         }
4710     }
4711     else {
4712         if (isGV_with_GP(sstr)) {
4713             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4714         }
4715         else
4716             (void)SvOK_off(dstr);
4717     }
4718     if (SvTAINTED(sstr))
4719         SvTAINT(dstr);
4720 }
4721
4722 /*
4723 =for apidoc sv_setsv_mg
4724
4725 Like C<sv_setsv>, but also handles 'set' magic.
4726
4727 =cut
4728 */
4729
4730 void
4731 Perl_sv_setsv_mg(pTHX_ SV *const dstr, SV *const sstr)
4732 {
4733     PERL_ARGS_ASSERT_SV_SETSV_MG;
4734
4735     sv_setsv(dstr,sstr);
4736     SvSETMAGIC(dstr);
4737 }
4738
4739 #ifdef PERL_ANY_COW
4740 # ifdef PERL_OLD_COPY_ON_WRITE
4741 #  define SVt_COW SVt_PVIV
4742 # else
4743 #  define SVt_COW SVt_PV
4744 # endif
4745 SV *
4746 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4747 {
4748     STRLEN cur = SvCUR(sstr);
4749     STRLEN len = SvLEN(sstr);
4750     char *new_pv;
4751 #if defined(PERL_DEBUG_READONLY_COW) && defined(PERL_NEW_COPY_ON_WRITE)
4752     const bool already = cBOOL(SvIsCOW(sstr));
4753 #endif
4754
4755     PERL_ARGS_ASSERT_SV_SETSV_COW;
4756
4757     if (DEBUG_C_TEST) {
4758         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4759                       (void*)sstr, (void*)dstr);
4760         sv_dump(sstr);
4761         if (dstr)
4762                     sv_dump(dstr);
4763     }
4764
4765     if (dstr) {
4766         if (SvTHINKFIRST(dstr))
4767             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4768         else if (SvPVX_const(dstr))
4769             Safefree(SvPVX_mutable(dstr));
4770     }
4771     else
4772         new_SV(dstr);
4773     SvUPGRADE(dstr, SVt_COW);
4774
4775     assert (SvPOK(sstr));
4776     assert (SvPOKp(sstr));
4777 # ifdef PERL_OLD_COPY_ON_WRITE
4778     assert (!SvIOK(sstr));
4779     assert (!SvIOKp(sstr));
4780     assert (!SvNOK(sstr));
4781     assert (!SvNOKp(sstr));
4782 # endif
4783
4784     if (SvIsCOW(sstr)) {
4785
4786         if (SvLEN(sstr) == 0) {
4787             /* source is a COW shared hash key.  */
4788             DEBUG_C(PerlIO_printf(Perl_debug_log,
4789                                   "Fast copy on write: Sharing hash\n"));
4790             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4791             goto common_exit;
4792         }
4793 # ifdef PERL_OLD_COPY_ON_WRITE
4794         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4795 # else
4796         assert(SvCUR(sstr)+1 < SvLEN(sstr));
4797         assert(CowREFCNT(sstr) < SV_COW_REFCNT_MAX);
4798 # endif
4799     } else {
4800         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4801         SvUPGRADE(sstr, SVt_COW);
4802         SvIsCOW_on(sstr);
4803         DEBUG_C(PerlIO_printf(Perl_debug_log,
4804                               "Fast copy on write: Converting sstr to COW\n"));
4805 # ifdef PERL_OLD_COPY_ON_WRITE
4806         SV_COW_NEXT_SV_SET(dstr, sstr);
4807 # else
4808         CowREFCNT(sstr) = 0;    
4809 # endif
4810     }
4811 # ifdef PERL_OLD_COPY_ON_WRITE
4812     SV_COW_NEXT_SV_SET(sstr, dstr);
4813 # else
4814 #  ifdef PERL_DEBUG_READONLY_COW
4815     if (already) sv_buf_to_rw(sstr);
4816 #  endif
4817     CowREFCNT(sstr)++;  
4818 # endif
4819     new_pv = SvPVX_mutable(sstr);
4820     sv_buf_to_ro(sstr);
4821
4822   common_exit:
4823     SvPV_set(dstr, new_pv);
4824     SvFLAGS(dstr) = (SVt_COW|SVf_POK|SVp_POK|SVf_IsCOW);
4825     if (SvUTF8(sstr))
4826         SvUTF8_on(dstr);
4827     SvLEN_set(dstr, len);
4828     SvCUR_set(dstr, cur);
4829     if (DEBUG_C_TEST) {
4830         sv_dump(dstr);
4831     }
4832     return dstr;
4833 }
4834 #endif
4835
4836 /*
4837 =for apidoc sv_setpvn
4838
4839 Copies a string (possibly containing embedded C<NUL> characters) into an SV.
4840 The C<len> parameter indicates the number of
4841 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4842 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4843
4844 =cut
4845 */
4846
4847 void
4848 Perl_sv_setpvn(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4849 {
4850     char *dptr;
4851
4852     PERL_ARGS_ASSERT_SV_SETPVN;
4853
4854     SV_CHECK_THINKFIRST_COW_DROP(sv);
4855     if (!ptr) {
4856         (void)SvOK_off(sv);
4857         return;
4858     }
4859     else {
4860         /* len is STRLEN which is unsigned, need to copy to signed */
4861         const IV iv = len;
4862         if (iv < 0)
4863             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen %"
4864                        IVdf, iv);
4865     }
4866     SvUPGRADE(sv, SVt_PV);
4867
4868     dptr = SvGROW(sv, len + 1);
4869     Move(ptr,dptr,len,char);
4870     dptr[len] = '\0';
4871     SvCUR_set(sv, len);
4872     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4873     SvTAINT(sv);
4874     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4875 }
4876
4877 /*
4878 =for apidoc sv_setpvn_mg
4879
4880 Like C<sv_setpvn>, but also handles 'set' magic.
4881
4882 =cut
4883 */
4884
4885 void
4886 Perl_sv_setpvn_mg(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4887 {
4888     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4889
4890     sv_setpvn(sv,ptr,len);
4891     SvSETMAGIC(sv);
4892 }
4893
4894 /*
4895 =for apidoc sv_setpv
4896
4897 Copies a string into an SV.  The string must be terminated with a C<NUL>
4898 character.
4899 Does not handle 'set' magic.  See C<sv_setpv_mg>.
4900
4901 =cut
4902 */
4903
4904 void
4905 Perl_sv_setpv(pTHX_ SV *const sv, const char *const ptr)
4906 {
4907     STRLEN len;
4908
4909     PERL_ARGS_ASSERT_SV_SETPV;
4910
4911     SV_CHECK_THINKFIRST_COW_DROP(sv);
4912     if (!ptr) {
4913         (void)SvOK_off(sv);
4914         return;
4915     }
4916     len = strlen(ptr);
4917     SvUPGRADE(sv, SVt_PV);
4918
4919     SvGROW(sv, len + 1);
4920     Move(ptr,SvPVX(sv),len+1,char);
4921     SvCUR_set(sv, len);
4922     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4923     SvTAINT(sv);
4924     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4925 }
4926
4927 /*
4928 =for apidoc sv_setpv_mg
4929
4930 Like C<sv_setpv>, but also handles 'set' magic.
4931
4932 =cut
4933 */
4934
4935 void
4936 Perl_sv_setpv_mg(pTHX_ SV *const sv, const char *const ptr)
4937 {
4938     PERL_ARGS_ASSERT_SV_SETPV_MG;
4939
4940     sv_setpv(sv,ptr);
4941     SvSETMAGIC(sv);
4942 }
4943
4944 void
4945 Perl_sv_sethek(pTHX_ SV *const sv, const HEK *const hek)
4946 {
4947     PERL_ARGS_ASSERT_SV_SETHEK;
4948
4949     if (!hek) {
4950         return;
4951     }
4952
4953     if (HEK_LEN(hek) == HEf_SVKEY) {
4954         sv_setsv(sv, *(SV**)HEK_KEY(hek));
4955         return;
4956     } else {
4957         const int flags = HEK_FLAGS(hek);
4958         if (flags & HVhek_WASUTF8) {
4959             STRLEN utf8_len = HEK_LEN(hek);
4960             char *as_utf8 = (char *)bytes_to_utf8((U8*)HEK_KEY(hek), &utf8_len);
4961             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
4962             SvUTF8_on(sv);
4963             return;
4964         } else if (flags & HVhek_UNSHARED) {
4965             sv_setpvn(sv, HEK_KEY(hek), HEK_LEN(hek));
4966             if (HEK_UTF8(hek))
4967                 SvUTF8_on(sv);
4968             else SvUTF8_off(sv);
4969             return;
4970         }
4971         {
4972             SV_CHECK_THINKFIRST_COW_DROP(sv);
4973             SvUPGRADE(sv, SVt_PV);
4974             SvPV_free(sv);
4975             SvPV_set(sv,(char *)HEK_KEY(share_hek_hek(hek)));
4976             SvCUR_set(sv, HEK_LEN(hek));
4977             SvLEN_set(sv, 0);
4978             SvIsCOW_on(sv);
4979             SvPOK_on(sv);
4980             if (HEK_UTF8(hek))
4981                 SvUTF8_on(sv);
4982             else SvUTF8_off(sv);
4983             return;
4984         }
4985     }
4986 }
4987
4988
4989 /*
4990 =for apidoc sv_usepvn_flags
4991
4992 Tells an SV to use C<ptr> to find its string value.  Normally the
4993 string is stored inside the SV, but sv_usepvn allows the SV to use an
4994 outside string.  The C<ptr> should point to memory that was allocated
4995 by L<Newx|perlclib/Memory Management and String Handling>.  It must be
4996 the start of a Newx-ed block of memory, and not a pointer to the
4997 middle of it (beware of L<OOK|perlguts/Offsets> and copy-on-write),
4998 and not be from a non-Newx memory allocator like C<malloc>.  The
4999 string length, C<len>, must be supplied.  By default this function
5000 will C<Renew> (i.e. realloc, move) the memory pointed to by C<ptr>,
5001 so that pointer should not be freed or used by the programmer after
5002 giving it to sv_usepvn, and neither should any pointers from "behind"
5003 that pointer (e.g. ptr + 1) be used.
5004
5005 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC.  If C<flags> &
5006 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be C<NUL>, and the realloc
5007 will be skipped (i.e. the buffer is actually at least 1 byte longer than
5008 C<len>, and already meets the requirements for storing in C<SvPVX>).
5009
5010 =cut
5011 */
5012
5013 void
5014 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
5015 {
5016     STRLEN allocate;
5017
5018     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
5019
5020     SV_CHECK_THINKFIRST_COW_DROP(sv);
5021     SvUPGRADE(sv, SVt_PV);
5022     if (!ptr) {
5023         (void)SvOK_off(sv);
5024         if (flags & SV_SMAGIC)
5025             SvSETMAGIC(sv);
5026         return;
5027     }
5028     if (SvPVX_const(sv))
5029         SvPV_free(sv);
5030
5031 #ifdef DEBUGGING
5032     if (flags & SV_HAS_TRAILING_NUL)
5033         assert(ptr[len] == '\0');
5034 #endif
5035
5036     allocate = (flags & SV_HAS_TRAILING_NUL)
5037         ? len + 1 :
5038 #ifdef Perl_safesysmalloc_size
5039         len + 1;
5040 #else 
5041         PERL_STRLEN_ROUNDUP(len + 1);
5042 #endif
5043     if (flags & SV_HAS_TRAILING_NUL) {
5044         /* It's long enough - do nothing.
5045            Specifically Perl_newCONSTSUB is relying on this.  */
5046     } else {
5047 #ifdef DEBUGGING
5048         /* Force a move to shake out bugs in callers.  */
5049         char *new_ptr = (char*)safemalloc(allocate);
5050         Copy(ptr, new_ptr, len, char);
5051         PoisonFree(ptr,len,char);
5052         Safefree(ptr);
5053         ptr = new_ptr;
5054 #else
5055         ptr = (char*) saferealloc (ptr, allocate);
5056 #endif
5057     }
5058 #ifdef Perl_safesysmalloc_size
5059     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
5060 #else
5061     SvLEN_set(sv, allocate);
5062 #endif
5063     SvCUR_set(sv, len);
5064     SvPV_set(sv, ptr);
5065     if (!(flags & SV_HAS_TRAILING_NUL)) {
5066         ptr[len] = '\0';
5067     }
5068     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5069     SvTAINT(sv);
5070     if (flags & SV_SMAGIC)
5071         SvSETMAGIC(sv);
5072 }
5073
5074 #ifdef PERL_OLD_COPY_ON_WRITE
5075 /* Need to do this *after* making the SV normal, as we need the buffer
5076    pointer to remain valid until after we've copied it.  If we let go too early,
5077    another thread could invalidate it by unsharing last of the same hash key
5078    (which it can do by means other than releasing copy-on-write Svs)
5079    or by changing the other copy-on-write SVs in the loop.  */
5080 STATIC void
5081 S_sv_release_COW(pTHX_ SV *sv, const char *pvx, SV *after)
5082 {
5083     PERL_ARGS_ASSERT_SV_RELEASE_COW;
5084
5085     { /* this SV was SvIsCOW_normal(sv) */
5086          /* we need to find the SV pointing to us.  */
5087         SV *current = SV_COW_NEXT_SV(after);
5088
5089         if (current == sv) {
5090             /* The SV we point to points back to us (there were only two of us
5091                in the loop.)
5092                Hence other SV is no longer copy on write either.  */
5093             SvIsCOW_off(after);
5094             sv_buf_to_rw(after);
5095         } else {
5096             /* We need to follow the pointers around the loop.  */
5097             SV *next;
5098             while ((next = SV_COW_NEXT_SV(current)) != sv) {
5099                 assert (next);
5100                 current = next;
5101                  /* don't loop forever if the structure is bust, and we have
5102                     a pointer into a closed loop.  */
5103                 assert (current != after);
5104                 assert (SvPVX_const(current) == pvx);
5105             }
5106             /* Make the SV before us point to the SV after us.  */
5107             SV_COW_NEXT_SV_SET(current, after);
5108         }
5109     }
5110 }
5111 #endif
5112 /*
5113 =for apidoc sv_force_normal_flags
5114
5115 Undo various types of fakery on an SV, where fakery means
5116 "more than" a string: if the PV is a shared string, make
5117 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
5118 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
5119 we do the copy, and is also used locally; if this is a
5120 vstring, drop the vstring magic.  If C<SV_COW_DROP_PV> is set
5121 then a copy-on-write scalar drops its PV buffer (if any) and becomes
5122 SvPOK_off rather than making a copy.  (Used where this
5123 scalar is about to be set to some other value.)  In addition,
5124 the C<flags> parameter gets passed to C<sv_unref_flags()>
5125 when unreffing.  C<sv_force_normal> calls this function
5126 with flags set to 0.
5127
5128 This function is expected to be used to signal to perl that this SV is
5129 about to be written to, and any extra book-keeping needs to be taken care
5130 of.  Hence, it croaks on read-only values.
5131
5132 =cut
5133 */
5134
5135 static void
5136 S_sv_uncow(pTHX_ SV * const sv, const U32 flags)
5137 {
5138     assert(SvIsCOW(sv));
5139     {
5140 #ifdef PERL_ANY_COW
5141         const char * const pvx = SvPVX_const(sv);
5142         const STRLEN len = SvLEN(sv);
5143         const STRLEN cur = SvCUR(sv);
5144 # ifdef PERL_OLD_COPY_ON_WRITE
5145         /* next COW sv in the loop.  If len is 0 then this is a shared-hash
5146            key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
5147            we'll fail an assertion.  */
5148         SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
5149 # endif
5150
5151         if (DEBUG_C_TEST) {
5152                 PerlIO_printf(Perl_debug_log,
5153                               "Copy on write: Force normal %ld\n",
5154                               (long) flags);
5155                 sv_dump(sv);
5156         }
5157         SvIsCOW_off(sv);
5158 # ifdef PERL_NEW_COPY_ON_WRITE
5159         if (len && CowREFCNT(sv) == 0)
5160             /* We own the buffer ourselves. */
5161             sv_buf_to_rw(sv);
5162         else
5163 # endif
5164         {
5165                 
5166             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
5167 # ifdef PERL_NEW_COPY_ON_WRITE
5168             /* Must do this first, since the macro uses SvPVX. */
5169             if (len) {
5170                 sv_buf_to_rw(sv);
5171                 CowREFCNT(sv)--;
5172                 sv_buf_to_ro(sv);
5173             }
5174 # endif
5175             SvPV_set(sv, NULL);
5176             SvCUR_set(sv, 0);
5177             SvLEN_set(sv, 0);
5178             if (flags & SV_COW_DROP_PV) {
5179                 /* OK, so we don't need to copy our buffer.  */
5180                 SvPOK_off(sv);
5181             } else {
5182                 SvGROW(sv, cur + 1);
5183                 Move(pvx,SvPVX(sv),cur,char);
5184                 SvCUR_set(sv, cur);
5185                 *SvEND(sv) = '\0';
5186             }
5187             if (len) {
5188 # ifdef PERL_OLD_COPY_ON_WRITE
5189                 sv_release_COW(sv, pvx, next);
5190 # endif
5191             } else {
5192                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
5193             }
5194             if (DEBUG_C_TEST) {
5195                 sv_dump(sv);
5196             }
5197         }
5198 #else
5199             const char * const pvx = SvPVX_const(sv);
5200             const STRLEN len = SvCUR(sv);
5201             SvIsCOW_off(sv);
5202             SvPV_set(sv, NULL);
5203             SvLEN_set(sv, 0);
5204             if (flags & SV_COW_DROP_PV) {
5205                 /* OK, so we don't need to copy our buffer.  */
5206                 SvPOK_off(sv);
5207             } else {
5208                 SvGROW(sv, len + 1);
5209                 Move(pvx,SvPVX(sv),len,char);
5210                 *SvEND(sv) = '\0';
5211             }
5212             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
5213 #endif
5214     }
5215 }
5216
5217 void
5218 Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags)
5219 {
5220     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
5221
5222     if (SvREADONLY(sv))
5223         Perl_croak_no_modify();
5224     else if (SvIsCOW(sv) && LIKELY(SvTYPE(sv) != SVt_PVHV))
5225         S_sv_uncow(aTHX_ sv, flags);
5226     if (SvROK(sv))
5227         sv_unref_flags(sv, flags);
5228     else if (SvFAKE(sv) && isGV_with_GP(sv))
5229         sv_unglob(sv, flags);
5230     else if (SvFAKE(sv) && isREGEXP(sv)) {
5231         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
5232            to sv_unglob. We only need it here, so inline it.  */
5233         const bool islv = SvTYPE(sv) == SVt_PVLV;
5234         const svtype new_type =
5235           islv ? SVt_NULL : SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
5236         SV *const temp = newSV_type(new_type);
5237         regexp *const temp_p = ReANY((REGEXP *)sv);
5238
5239         if (new_type == SVt_PVMG) {
5240             SvMAGIC_set(temp, SvMAGIC(sv));
5241             SvMAGIC_set(sv, NULL);
5242             SvSTASH_set(temp, SvSTASH(sv));
5243             SvSTASH_set(sv, NULL);
5244         }
5245         if (!islv) SvCUR_set(temp, SvCUR(sv));
5246         /* Remember that SvPVX is in the head, not the body.  But
5247            RX_WRAPPED is in the body. */
5248         assert(ReANY((REGEXP *)sv)->mother_re);
5249         /* Their buffer is already owned by someone else. */
5250         if (flags & SV_COW_DROP_PV) {
5251             /* SvLEN is already 0.  For SVt_REGEXP, we have a brand new
5252                zeroed body.  For SVt_PVLV, it should have been set to 0
5253                before turning into a regexp. */
5254             assert(!SvLEN(islv ? sv : temp));
5255             sv->sv_u.svu_pv = 0;
5256         }
5257         else {
5258             sv->sv_u.svu_pv = savepvn(RX_WRAPPED((REGEXP *)sv), SvCUR(sv));
5259             SvLEN_set(islv ? sv : temp, SvCUR(sv)+1);
5260             SvPOK_on(sv);
5261         }
5262
5263         /* Now swap the rest of the bodies. */
5264
5265         SvFAKE_off(sv);
5266         if (!islv) {
5267             SvFLAGS(sv) &= ~SVTYPEMASK;
5268             SvFLAGS(sv) |= new_type;
5269             SvANY(sv) = SvANY(temp);
5270         }
5271
5272         SvFLAGS(temp) &= ~(SVTYPEMASK);
5273         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
5274         SvANY(temp) = temp_p;
5275         temp->sv_u.svu_rx = (regexp *)temp_p;
5276
5277         SvREFCNT_dec_NN(temp);
5278     }
5279     else if (SvVOK(sv)) sv_unmagic(sv, PERL_MAGIC_vstring);
5280 }
5281
5282 /*
5283 =for apidoc sv_chop
5284
5285 Efficient removal of characters from the beginning of the string buffer.
5286 SvPOK(sv), or at least SvPOKp(sv), must be true and the C<ptr> must be a
5287 pointer to somewhere inside the string buffer.  The C<ptr> becomes the first
5288 character of the adjusted string.  Uses the "OOK hack".  On return, only
5289 SvPOK(sv) and SvPOKp(sv) among the OK flags will be true.
5290
5291 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
5292 refer to the same chunk of data.
5293
5294 The unfortunate similarity of this function's name to that of Perl's C<chop>
5295 operator is strictly coincidental.  This function works from the left;
5296 C<chop> works from the right.
5297
5298 =cut
5299 */
5300
5301 void
5302 Perl_sv_chop(pTHX_ SV *const sv, const char *const ptr)
5303 {
5304     STRLEN delta;
5305     STRLEN old_delta;
5306     U8 *p;
5307 #ifdef DEBUGGING
5308     const U8 *evacp;
5309     STRLEN evacn;
5310 #endif
5311     STRLEN max_delta;
5312
5313     PERL_ARGS_ASSERT_SV_CHOP;
5314
5315     if (!ptr || !SvPOKp(sv))
5316         return;
5317     delta = ptr - SvPVX_const(sv);
5318     if (!delta) {
5319         /* Nothing to do.  */
5320         return;
5321     }
5322     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
5323     if (delta > max_delta)
5324         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
5325                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
5326     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), so don't use ptr any more */
5327     SV_CHECK_THINKFIRST(sv);
5328     SvPOK_only_UTF8(sv);
5329
5330     if (!SvOOK(sv)) {
5331         if (!SvLEN(sv)) { /* make copy of shared string */
5332             const char *pvx = SvPVX_const(sv);
5333             const STRLEN len = SvCUR(sv);
5334             SvGROW(sv, len + 1);
5335             Move(pvx,SvPVX(sv),len,char);
5336             *SvEND(sv) = '\0';
5337         }
5338         SvOOK_on(sv);
5339         old_delta = 0;
5340     } else {
5341         SvOOK_offset(sv, old_delta);
5342     }
5343     SvLEN_set(sv, SvLEN(sv) - delta);
5344     SvCUR_set(sv, SvCUR(sv) - delta);
5345     SvPV_set(sv, SvPVX(sv) + delta);
5346
5347     p = (U8 *)SvPVX_const(sv);
5348
5349 #ifdef DEBUGGING
5350     /* how many bytes were evacuated?  we will fill them with sentinel
5351        bytes, except for the part holding the new offset of course. */
5352     evacn = delta;
5353     if (old_delta)
5354         evacn += (old_delta < 0x100 ? 1 : 1 + sizeof(STRLEN));
5355     assert(evacn);
5356     assert(evacn <= delta + old_delta);
5357     evacp = p - evacn;
5358 #endif
5359
5360     /* This sets 'delta' to the accumulated value of all deltas so far */
5361     delta += old_delta;
5362     assert(delta);
5363
5364     /* If 'delta' fits in a byte, store it just prior to the new beginning of
5365      * the string; otherwise store a 0 byte there and store 'delta' just prior
5366      * to that, using as many bytes as a STRLEN occupies.  Thus it overwrites a
5367      * portion of the chopped part of the string */
5368     if (delta < 0x100) {
5369         *--p = (U8) delta;
5370     } else {
5371         *--p = 0;
5372         p -= sizeof(STRLEN);
5373         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
5374     }
5375
5376 #ifdef DEBUGGING
5377     /* Fill the preceding buffer with sentinals to verify that no-one is
5378        using it.  */
5379     while (p > evacp) {
5380         --p;
5381         *p = (U8)PTR2UV(p);
5382     }
5383 #endif
5384 }
5385
5386 /*
5387 =for apidoc sv_catpvn
5388
5389 Concatenates the string onto the end of the string which is in the SV.  The
5390 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5391 status set, then the bytes appended should be valid UTF-8.
5392 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
5393
5394 =for apidoc sv_catpvn_flags
5395
5396 Concatenates the string onto the end of the string which is in the SV.  The
5397 C<len> indicates number of bytes to copy.
5398
5399 By default, the string appended is assumed to be valid UTF-8 if the SV has
5400 the UTF-8 status set, and a string of bytes otherwise.  One can force the
5401 appended string to be interpreted as UTF-8 by supplying the C<SV_CATUTF8>
5402 flag, and as bytes by supplying the C<SV_CATBYTES> flag; the SV or the
5403 string appended will be upgraded to UTF-8 if necessary.
5404
5405 If C<flags> has the C<SV_SMAGIC> bit set, will
5406 C<mg_set> on C<dsv> afterwards if appropriate.
5407 C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5408 in terms of this function.
5409
5410 =cut
5411 */
5412
5413 void
5414 Perl_sv_catpvn_flags(pTHX_ SV *const dsv, const char *sstr, const STRLEN slen, const I32 flags)
5415 {
5416     STRLEN dlen;
5417     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
5418
5419     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
5420     assert((flags & (SV_CATBYTES|SV_CATUTF8)) != (SV_CATBYTES|SV_CATUTF8));
5421
5422     if (!(flags & SV_CATBYTES) || !SvUTF8(dsv)) {
5423       if (flags & SV_CATUTF8 && !SvUTF8(dsv)) {
5424          sv_utf8_upgrade_flags_grow(dsv, 0, slen + 1);
5425          dlen = SvCUR(dsv);
5426       }
5427       else SvGROW(dsv, dlen + slen + 1);
5428       if (sstr == dstr)
5429         sstr = SvPVX_const(dsv);
5430       Move(sstr, SvPVX(dsv) + dlen, slen, char);
5431       SvCUR_set(dsv, SvCUR(dsv) + slen);
5432     }
5433     else {
5434         /* We inline bytes_to_utf8, to avoid an extra malloc. */
5435         const char * const send = sstr + slen;
5436         U8 *d;
5437
5438         /* Something this code does not account for, which I think is
5439            impossible; it would require the same pv to be treated as
5440            bytes *and* utf8, which would indicate a bug elsewhere. */
5441         assert(sstr != dstr);
5442
5443         SvGROW(dsv, dlen + slen * 2 + 1);
5444         d = (U8 *)SvPVX(dsv) + dlen;
5445
5446         while (sstr < send) {
5447             append_utf8_from_native_byte(*sstr, &d);
5448             sstr++;
5449         }
5450         SvCUR_set(dsv, d-(const U8 *)SvPVX(dsv));
5451     }
5452     *SvEND(dsv) = '\0';
5453     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5454     SvTAINT(dsv);
5455     if (flags & SV_SMAGIC)
5456         SvSETMAGIC(dsv);
5457 }
5458
5459 /*
5460 =for apidoc sv_catsv
5461
5462 Concatenates the string from SV C<ssv> onto the end of the string in SV
5463 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5464 Handles 'get' magic on both SVs, but no 'set' magic.  See C<sv_catsv_mg> and
5465 C<sv_catsv_nomg>.
5466
5467 =for apidoc sv_catsv_flags
5468
5469 Concatenates the string from SV C<ssv> onto the end of the string in SV
5470 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5471 If C<flags> include C<SV_GMAGIC> bit set, will call C<mg_get> on both SVs if
5472 appropriate.  If C<flags> include C<SV_SMAGIC>, C<mg_set> will be called on
5473 the modified SV afterward, if appropriate.  C<sv_catsv>, C<sv_catsv_nomg>,
5474 and C<sv_catsv_mg> are implemented in terms of this function.
5475
5476 =cut */
5477
5478 void
5479 Perl_sv_catsv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
5480 {
5481     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
5482
5483     if (ssv) {
5484         STRLEN slen;
5485         const char *spv = SvPV_flags_const(ssv, slen, flags);
5486         if (flags & SV_GMAGIC)
5487                 SvGETMAGIC(dsv);
5488         sv_catpvn_flags(dsv, spv, slen,
5489                             DO_UTF8(ssv) ? SV_CATUTF8 : SV_CATBYTES);
5490         if (flags & SV_SMAGIC)
5491                 SvSETMAGIC(dsv);
5492     }
5493 }
5494
5495 /*
5496 =for apidoc sv_catpv
5497
5498 Concatenates the C<NUL>-terminated string onto the end of the string which is
5499 in the SV.
5500 If the SV has the UTF-8 status set, then the bytes appended should be
5501 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5502
5503 =cut */
5504
5505 void
5506 Perl_sv_catpv(pTHX_ SV *const sv, const char *ptr)
5507 {
5508     STRLEN len;
5509     STRLEN tlen;
5510     char *junk;
5511
5512     PERL_ARGS_ASSERT_SV_CATPV;
5513
5514     if (!ptr)
5515         return;
5516     junk = SvPV_force(sv, tlen);
5517     len = strlen(ptr);
5518     SvGROW(sv, tlen + len + 1);
5519     if (ptr == junk)
5520         ptr = SvPVX_const(sv);
5521     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5522     SvCUR_set(sv, SvCUR(sv) + len);
5523     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5524     SvTAINT(sv);
5525 }
5526
5527 /*
5528 =for apidoc sv_catpv_flags
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
5533 be valid UTF-8.  If C<flags> has the C<SV_SMAGIC> bit set, will C<mg_set>
5534 on the modified SV if appropriate.
5535
5536 =cut
5537 */
5538
5539 void
5540 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5541 {
5542     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5543     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5544 }
5545
5546 /*
5547 =for apidoc sv_catpv_mg
5548
5549 Like C<sv_catpv>, but also handles 'set' magic.
5550
5551 =cut
5552 */
5553
5554 void
5555 Perl_sv_catpv_mg(pTHX_ SV *const sv, const char *const ptr)
5556 {
5557     PERL_ARGS_ASSERT_SV_CATPV_MG;
5558
5559     sv_catpv(sv,ptr);
5560     SvSETMAGIC(sv);
5561 }
5562
5563 /*
5564 =for apidoc newSV
5565
5566 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5567 bytes of preallocated string space the SV should have.  An extra byte for a
5568 trailing C<NUL> is also reserved.  (SvPOK is not set for the SV even if string
5569 space is allocated.)  The reference count for the new SV is set to 1.
5570
5571 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5572 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5573 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5574 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5575 modules supporting older perls.
5576
5577 =cut
5578 */
5579
5580 SV *
5581 Perl_newSV(pTHX_ const STRLEN len)
5582 {
5583     SV *sv;
5584
5585     new_SV(sv);
5586     if (len) {
5587         sv_grow(sv, len + 1);
5588     }
5589     return sv;
5590 }
5591 /*
5592 =for apidoc sv_magicext
5593
5594 Adds magic to an SV, upgrading it if necessary.  Applies the
5595 supplied vtable and returns a pointer to the magic added.
5596
5597 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5598 In particular, you can add magic to SvREADONLY SVs, and add more than
5599 one instance of the same 'how'.
5600
5601 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5602 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5603 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5604 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5605
5606 (This is now used as a subroutine by C<sv_magic>.)
5607
5608 =cut
5609 */
5610 MAGIC * 
5611 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5612                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5613 {
5614     MAGIC* mg;
5615
5616     PERL_ARGS_ASSERT_SV_MAGICEXT;
5617
5618     if (SvTYPE(sv)==SVt_PVAV) { assert (!AvPAD_NAMELIST(sv)); }
5619
5620     SvUPGRADE(sv, SVt_PVMG);
5621     Newxz(mg, 1, MAGIC);
5622     mg->mg_moremagic = SvMAGIC(sv);
5623     SvMAGIC_set(sv, mg);
5624
5625     /* Sometimes a magic contains a reference loop, where the sv and
5626        object refer to each other.  To prevent a reference loop that
5627        would prevent such objects being freed, we look for such loops
5628        and if we find one we avoid incrementing the object refcount.
5629
5630        Note we cannot do this to avoid self-tie loops as intervening RV must
5631        have its REFCNT incremented to keep it in existence.
5632
5633     */
5634     if (!obj || obj == sv ||
5635         how == PERL_MAGIC_arylen ||
5636         how == PERL_MAGIC_symtab ||
5637         (SvTYPE(obj) == SVt_PVGV &&
5638             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5639              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5640              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5641     {
5642         mg->mg_obj = obj;
5643     }
5644     else {
5645         mg->mg_obj = SvREFCNT_inc_simple(obj);
5646         mg->mg_flags |= MGf_REFCOUNTED;
5647     }
5648
5649     /* Normal self-ties simply pass a null object, and instead of
5650        using mg_obj directly, use the SvTIED_obj macro to produce a
5651        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5652        with an RV obj pointing to the glob containing the PVIO.  In
5653        this case, to avoid a reference loop, we need to weaken the
5654        reference.
5655     */
5656
5657     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5658         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5659     {
5660       sv_rvweaken(obj);
5661     }
5662
5663     mg->mg_type = how;
5664     mg->mg_len = namlen;
5665     if (name) {
5666         if (namlen > 0)
5667             mg->mg_ptr = savepvn(name, namlen);
5668         else if (namlen == HEf_SVKEY) {
5669             /* Yes, this is casting away const. This is only for the case of
5670                HEf_SVKEY. I think we need to document this aberation of the
5671                constness of the API, rather than making name non-const, as
5672                that change propagating outwards a long way.  */
5673             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5674         } else
5675             mg->mg_ptr = (char *) name;
5676     }
5677     mg->mg_virtual = (MGVTBL *) vtable;
5678
5679     mg_magical(sv);
5680     return mg;
5681 }
5682
5683 MAGIC *
5684 Perl_sv_magicext_mglob(pTHX_ SV *sv)
5685 {
5686     PERL_ARGS_ASSERT_SV_MAGICEXT_MGLOB;
5687     if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y') {
5688         /* This sv is only a delegate.  //g magic must be attached to
5689            its target. */
5690         vivify_defelem(sv);
5691         sv = LvTARG(sv);
5692     }
5693 #ifdef PERL_OLD_COPY_ON_WRITE
5694     if (SvIsCOW(sv))
5695         sv_force_normal_flags(sv, 0);
5696 #endif
5697     return sv_magicext(sv, NULL, PERL_MAGIC_regex_global,
5698                        &PL_vtbl_mglob, 0, 0);
5699 }
5700
5701 /*
5702 =for apidoc sv_magic
5703
5704 Adds magic to an SV.  First upgrades C<sv> to type C<SVt_PVMG> if
5705 necessary, then adds a new magic item of type C<how> to the head of the
5706 magic list.
5707
5708 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5709 handling of the C<name> and C<namlen> arguments.
5710
5711 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5712 to add more than one instance of the same 'how'.
5713
5714 =cut
5715 */
5716
5717 void
5718 Perl_sv_magic(pTHX_ SV *const sv, SV *const obj, const int how,
5719              const char *const name, const I32 namlen)
5720 {
5721     const MGVTBL *vtable;
5722     MAGIC* mg;
5723     unsigned int flags;
5724     unsigned int vtable_index;
5725
5726     PERL_ARGS_ASSERT_SV_MAGIC;
5727
5728     if (how < 0 || (unsigned)how >= C_ARRAY_LENGTH(PL_magic_data)
5729         || ((flags = PL_magic_data[how]),
5730             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5731             > magic_vtable_max))
5732         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5733
5734     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5735        Useful for attaching extension internal data to perl vars.
5736        Note that multiple extensions may clash if magical scalars
5737        etc holding private data from one are passed to another. */
5738
5739     vtable = (vtable_index == magic_vtable_max)
5740         ? NULL : PL_magic_vtables + vtable_index;
5741
5742 #ifdef PERL_OLD_COPY_ON_WRITE
5743     if (SvIsCOW(sv))
5744         sv_force_normal_flags(sv, 0);
5745 #endif
5746     if (SvREADONLY(sv)) {
5747         if (
5748             !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5749            )
5750         {
5751             Perl_croak_no_modify();
5752         }
5753     }
5754     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5755         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5756             /* sv_magic() refuses to add a magic of the same 'how' as an
5757                existing one
5758              */
5759             if (how == PERL_MAGIC_taint)
5760                 mg->mg_len |= 1;
5761             return;
5762         }
5763     }
5764
5765     /* Force pos to be stored as characters, not bytes. */
5766     if (SvMAGICAL(sv) && DO_UTF8(sv)
5767       && (mg = mg_find(sv, PERL_MAGIC_regex_global))
5768       && mg->mg_len != -1
5769       && mg->mg_flags & MGf_BYTES) {
5770         mg->mg_len = (SSize_t)sv_pos_b2u_flags(sv, (STRLEN)mg->mg_len,
5771                                                SV_CONST_RETURN);
5772         mg->mg_flags &= ~MGf_BYTES;
5773     }
5774
5775     /* Rest of work is done else where */
5776     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5777
5778     switch (how) {
5779     case PERL_MAGIC_taint:
5780         mg->mg_len = 1;
5781         break;
5782     case PERL_MAGIC_ext:
5783     case PERL_MAGIC_dbfile:
5784         SvRMAGICAL_on(sv);
5785         break;
5786     }
5787 }
5788
5789 static int
5790 S_sv_unmagicext_flags(pTHX_ SV *const sv, const int type, MGVTBL *vtbl, const U32 flags)
5791 {
5792     MAGIC* mg;
5793     MAGIC** mgp;
5794
5795     assert(flags <= 1);
5796
5797     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5798         return 0;
5799     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5800     for (mg = *mgp; mg; mg = *mgp) {
5801         const MGVTBL* const virt = mg->mg_virtual;
5802         if (mg->mg_type == type && (!flags || virt == vtbl)) {
5803             *mgp = mg->mg_moremagic;
5804             if (virt && virt->svt_free)
5805                 virt->svt_free(aTHX_ sv, mg);
5806             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5807                 if (mg->mg_len > 0)
5808                     Safefree(mg->mg_ptr);
5809                 else if (mg->mg_len == HEf_SVKEY)
5810                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5811                 else if (mg->mg_type == PERL_MAGIC_utf8)
5812                     Safefree(mg->mg_ptr);
5813             }
5814             if (mg->mg_flags & MGf_REFCOUNTED)
5815                 SvREFCNT_dec(mg->mg_obj);
5816             Safefree(mg);
5817         }
5818         else
5819             mgp = &mg->mg_moremagic;
5820     }
5821     if (SvMAGIC(sv)) {
5822         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5823             mg_magical(sv);     /*    else fix the flags now */
5824     }
5825     else {
5826         SvMAGICAL_off(sv);
5827         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5828     }
5829     return 0;
5830 }
5831
5832 /*
5833 =for apidoc sv_unmagic
5834
5835 Removes all magic of type C<type> from an SV.
5836
5837 =cut
5838 */
5839
5840 int
5841 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5842 {
5843     PERL_ARGS_ASSERT_SV_UNMAGIC;
5844     return S_sv_unmagicext_flags(aTHX_ sv, type, NULL, 0);
5845 }
5846
5847 /*
5848 =for apidoc sv_unmagicext
5849
5850 Removes all magic of type C<type> with the specified C<vtbl> from an SV.
5851
5852 =cut
5853 */
5854
5855 int
5856 Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl)
5857 {
5858     PERL_ARGS_ASSERT_SV_UNMAGICEXT;
5859     return S_sv_unmagicext_flags(aTHX_ sv, type, vtbl, 1);
5860 }
5861
5862 /*
5863 =for apidoc sv_rvweaken
5864
5865 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5866 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5867 push a back-reference to this RV onto the array of backreferences
5868 associated with that magic.  If the RV is magical, set magic will be
5869 called after the RV is cleared.
5870
5871 =cut
5872 */
5873
5874 SV *
5875 Perl_sv_rvweaken(pTHX_ SV *const sv)
5876 {
5877     SV *tsv;
5878
5879     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5880
5881     if (!SvOK(sv))  /* let undefs pass */
5882         return sv;
5883     if (!SvROK(sv))
5884         Perl_croak(aTHX_ "Can't weaken a nonreference");
5885     else if (SvWEAKREF(sv)) {
5886         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5887         return sv;
5888     }
5889     else if (SvREADONLY(sv)) croak_no_modify();
5890     tsv = SvRV(sv);
5891     Perl_sv_add_backref(aTHX_ tsv, sv);
5892     SvWEAKREF_on(sv);
5893     SvREFCNT_dec_NN(tsv);
5894     return sv;
5895 }
5896
5897 /* Give tsv backref magic if it hasn't already got it, then push a
5898  * back-reference to sv onto the array associated with the backref magic.
5899  *
5900  * As an optimisation, if there's only one backref and it's not an AV,
5901  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
5902  * allocate an AV. (Whether the slot holds an AV tells us whether this is
5903  * active.)
5904  */
5905
5906 /* A discussion about the backreferences array and its refcount:
5907  *
5908  * The AV holding the backreferences is pointed to either as the mg_obj of
5909  * PERL_MAGIC_backref, or in the specific case of a HV, from the
5910  * xhv_backreferences field. The array is created with a refcount
5911  * of 2. This means that if during global destruction the array gets
5912  * picked on before its parent to have its refcount decremented by the
5913  * random zapper, it won't actually be freed, meaning it's still there for
5914  * when its parent gets freed.
5915  *
5916  * When the parent SV is freed, the extra ref is killed by
5917  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
5918  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
5919  *
5920  * When a single backref SV is stored directly, it is not reference
5921  * counted.
5922  */
5923
5924 void
5925 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5926 {
5927     SV **svp;
5928     AV *av = NULL;
5929     MAGIC *mg = NULL;
5930
5931     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5932
5933     /* find slot to store array or singleton backref */
5934
5935     if (SvTYPE(tsv) == SVt_PVHV) {
5936         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5937     } else {
5938         if (SvMAGICAL(tsv))
5939             mg = mg_find(tsv, PERL_MAGIC_backref);
5940         if (!mg)
5941             mg = sv_magicext(tsv, NULL, PERL_MAGIC_backref, &PL_vtbl_backref, NULL, 0);
5942         svp = &(mg->mg_obj);
5943     }
5944
5945     /* create or retrieve the array */
5946
5947     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
5948         || (*svp && SvTYPE(*svp) != SVt_PVAV)
5949     ) {
5950         /* create array */
5951         if (mg)
5952             mg->mg_flags |= MGf_REFCOUNTED;
5953         av = newAV();
5954         AvREAL_off(av);
5955         SvREFCNT_inc_simple_void_NN(av);
5956         /* av now has a refcnt of 2; see discussion above */
5957         av_extend(av, *svp ? 2 : 1);
5958         if (*svp) {
5959             /* move single existing backref to the array */
5960             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
5961         }
5962         *svp = (SV*)av;
5963     }
5964     else {
5965         av = MUTABLE_AV(*svp);
5966         if (!av) {
5967             /* optimisation: store single backref directly in HvAUX or mg_obj */
5968             *svp = sv;
5969             return;
5970         }
5971         assert(SvTYPE(av) == SVt_PVAV);
5972         if (AvFILLp(av) >= AvMAX(av)) {
5973             av_extend(av, AvFILLp(av)+1);
5974         }
5975     }
5976     /* push new backref */
5977     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5978 }
5979
5980 /* delete a back-reference to ourselves from the backref magic associated
5981  * with the SV we point to.
5982  */
5983
5984 void
5985 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5986 {
5987     SV **svp = NULL;
5988
5989     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5990
5991     if (SvTYPE(tsv) == SVt_PVHV) {
5992         if (SvOOK(tsv))
5993             svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5994     }
5995     else if (SvIS_FREED(tsv) && PL_phase == PERL_PHASE_DESTRUCT) {
5996         /* It's possible for the the last (strong) reference to tsv to have
5997            become freed *before* the last thing holding a weak reference.
5998            If both survive longer than the backreferences array, then when
5999            the referent's reference count drops to 0 and it is freed, it's
6000            not able to chase the backreferences, so they aren't NULLed.
6001
6002            For example, a CV holds a weak reference to its stash. If both the
6003            CV and the stash survive longer than the backreferences array,
6004            and the CV gets picked for the SvBREAK() treatment first,
6005            *and* it turns out that the stash is only being kept alive because
6006            of an our variable in the pad of the CV, then midway during CV
6007            destruction the stash gets freed, but CvSTASH() isn't set to NULL.
6008            It ends up pointing to the freed HV. Hence it's chased in here, and
6009            if this block wasn't here, it would hit the !svp panic just below.
6010
6011            I don't believe that "better" destruction ordering is going to help
6012            here - during global destruction there's always going to be the
6013            chance that something goes out of order. We've tried to make it
6014            foolproof before, and it only resulted in evolutionary pressure on
6015            fools. Which made us look foolish for our hubris. :-(
6016         */
6017         return;
6018     }
6019     else {
6020         MAGIC *const mg
6021             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
6022         svp =  mg ? &(mg->mg_obj) : NULL;
6023     }
6024
6025     if (!svp)
6026         Perl_croak(aTHX_ "panic: del_backref, svp=0");
6027     if (!*svp) {
6028         /* It's possible that sv is being freed recursively part way through the
6029            freeing of tsv. If this happens, the backreferences array of tsv has
6030            already been freed, and so svp will be NULL. If this is the case,
6031            we should not panic. Instead, nothing needs doing, so return.  */
6032         if (PL_phase == PERL_PHASE_DESTRUCT && SvREFCNT(tsv) == 0)
6033             return;
6034         Perl_croak(aTHX_ "panic: del_backref, *svp=%p phase=%s refcnt=%" UVuf,
6035                    (void*)*svp, PL_phase_names[PL_phase], (UV)SvREFCNT(tsv));
6036     }
6037
6038     if (SvTYPE(*svp) == SVt_PVAV) {
6039 #ifdef DEBUGGING
6040         int count = 1;
6041 #endif
6042         AV * const av = (AV*)*svp;
6043         SSize_t fill;
6044         assert(!SvIS_FREED(av));
6045         fill = AvFILLp(av);
6046         assert(fill > -1);
6047         svp = AvARRAY(av);
6048         /* for an SV with N weak references to it, if all those
6049          * weak refs are deleted, then sv_del_backref will be called
6050          * N times and O(N^2) compares will be done within the backref
6051          * array. To ameliorate this potential slowness, we:
6052          * 1) make sure this code is as tight as possible;
6053          * 2) when looking for SV, look for it at both the head and tail of the
6054          *    array first before searching the rest, since some create/destroy
6055          *    patterns will cause the backrefs to be freed in order.
6056          */
6057         if (*svp == sv) {
6058             AvARRAY(av)++;
6059             AvMAX(av)--;
6060         }
6061         else {
6062             SV **p = &svp[fill];
6063             SV *const topsv = *p;
6064             if (topsv != sv) {
6065 #ifdef DEBUGGING
6066                 count = 0;
6067 #endif
6068                 while (--p > svp) {
6069                     if (*p == sv) {
6070                         /* We weren't the last entry.
6071                            An unordered list has this property that you
6072                            can take the last element off the end to fill
6073                            the hole, and it's still an unordered list :-)
6074                         */
6075                         *p = topsv;
6076 #ifdef DEBUGGING
6077                         count++;
6078 #else
6079                         break; /* should only be one */
6080 #endif
6081                     }
6082                 }
6083             }
6084         }
6085         assert(count ==1);
6086         AvFILLp(av) = fill-1;
6087     }
6088     else if (SvIS_FREED(*svp) && PL_phase == PERL_PHASE_DESTRUCT) {
6089         /* freed AV; skip */
6090     }
6091     else {
6092         /* optimisation: only a single backref, stored directly */
6093         if (*svp != sv)
6094             Perl_croak(aTHX_ "panic: del_backref, *svp=%p, sv=%p",
6095                        (void*)*svp, (void*)sv);
6096         *svp = NULL;
6097     }
6098
6099 }
6100
6101 void
6102 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
6103 {
6104     SV **svp;
6105     SV **last;
6106     bool is_array;
6107
6108     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
6109
6110     if (!av)
6111         return;
6112
6113     /* after multiple passes through Perl_sv_clean_all() for a thingy
6114      * that has badly leaked, the backref array may have gotten freed,
6115      * since we only protect it against 1 round of cleanup */
6116     if (SvIS_FREED(av)) {
6117         if (PL_in_clean_all) /* All is fair */
6118             return;
6119         Perl_croak(aTHX_
6120                    "panic: magic_killbackrefs (freed backref AV/SV)");
6121     }
6122
6123
6124     is_array = (SvTYPE(av) == SVt_PVAV);
6125     if (is_array) {
6126         assert(!SvIS_FREED(av));
6127         svp = AvARRAY(av);
6128         if (svp)
6129             last = svp + AvFILLp(av);
6130     }
6131     else {
6132         /* optimisation: only a single backref, stored directly */
6133         svp = (SV**)&av;
6134         last = svp;
6135     }
6136
6137     if (svp) {
6138         while (svp <= last) {
6139             if (*svp) {
6140                 SV *const referrer = *svp;
6141                 if (SvWEAKREF(referrer)) {
6142                     /* XXX Should we check that it hasn't changed? */
6143                     assert(SvROK(referrer));
6144                     SvRV_set(referrer, 0);
6145                     SvOK_off(referrer);
6146                     SvWEAKREF_off(referrer);
6147                     SvSETMAGIC(referrer);
6148                 } else if (SvTYPE(referrer) == SVt_PVGV ||
6149                            SvTYPE(referrer) == SVt_PVLV) {
6150                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
6151                     /* You lookin' at me?  */
6152                     assert(GvSTASH(referrer));
6153                     assert(GvSTASH(referrer) == (const HV *)sv);
6154                     GvSTASH(referrer) = 0;
6155                 } else if (SvTYPE(referrer) == SVt_PVCV ||
6156                            SvTYPE(referrer) == SVt_PVFM) {
6157                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
6158                         /* You lookin' at me?  */
6159                         assert(CvSTASH(referrer));
6160                         assert(CvSTASH(referrer) == (const HV *)sv);
6161                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
6162                     }
6163                     else {
6164                         assert(SvTYPE(sv) == SVt_PVGV);
6165                         /* You lookin' at me?  */
6166                         assert(CvGV(referrer));
6167                         assert(CvGV(referrer) == (const GV *)sv);
6168                         anonymise_cv_maybe(MUTABLE_GV(sv),
6169                                                 MUTABLE_CV(referrer));
6170                     }
6171
6172                 } else {
6173                     Perl_croak(aTHX_
6174                                "panic: magic_killbackrefs (flags=%"UVxf")",
6175                                (UV)SvFLAGS(referrer));
6176                 }
6177
6178                 if (is_array)
6179                     *svp = NULL;
6180             }
6181             svp++;
6182         }
6183     }
6184     if (is_array) {
6185         AvFILLp(av) = -1;
6186         SvREFCNT_dec_NN(av); /* remove extra count added by sv_add_backref() */
6187     }
6188     return;
6189 }
6190
6191 /*
6192 =for apidoc sv_insert
6193
6194 Inserts a string at the specified offset/length within the SV.  Similar to
6195 the Perl substr() function.  Handles get magic.
6196
6197 =for apidoc sv_insert_flags
6198
6199 Same as C<sv_insert>, but the extra C<flags> are passed to the
6200 C<SvPV_force_flags> that applies to C<bigstr>.
6201
6202 =cut
6203 */
6204
6205 void
6206 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
6207 {
6208     char *big;
6209     char *mid;
6210     char *midend;
6211     char *bigend;
6212     SSize_t i;          /* better be sizeof(STRLEN) or bad things happen */
6213     STRLEN curlen;
6214
6215     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
6216
6217     if (!bigstr)
6218         Perl_croak(aTHX_ "Can't modify nonexistent substring");
6219     SvPV_force_flags(bigstr, curlen, flags);
6220     (void)SvPOK_only_UTF8(bigstr);
6221     if (offset + len > curlen) {
6222         SvGROW(bigstr, offset+len+1);
6223         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
6224         SvCUR_set(bigstr, offset+len);
6225     }
6226
6227     SvTAINT(bigstr);
6228     i = littlelen - len;
6229     if (i > 0) {                        /* string might grow */
6230         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
6231         mid = big + offset + len;
6232         midend = bigend = big + SvCUR(bigstr);
6233         bigend += i;
6234         *bigend = '\0';
6235         while (midend > mid)            /* shove everything down */
6236             *--bigend = *--midend;
6237         Move(little,big+offset,littlelen,char);
6238         SvCUR_set(bigstr, SvCUR(bigstr) + i);
6239         SvSETMAGIC(bigstr);
6240         return;
6241     }
6242     else if (i == 0) {
6243         Move(little,SvPVX(bigstr)+offset,len,char);
6244         SvSETMAGIC(bigstr);
6245         return;
6246     }
6247
6248     big = SvPVX(bigstr);
6249     mid = big + offset;
6250     midend = mid + len;
6251     bigend = big + SvCUR(bigstr);
6252
6253     if (midend > bigend)
6254         Perl_croak(aTHX_ "panic: sv_insert, midend=%p, bigend=%p",
6255                    midend, bigend);
6256
6257     if (mid - big > bigend - midend) {  /* faster to shorten from end */
6258         if (littlelen) {
6259             Move(little, mid, littlelen,char);
6260             mid += littlelen;
6261         }
6262         i = bigend - midend;
6263         if (i > 0) {
6264             Move(midend, mid, i,char);
6265             mid += i;
6266         }
6267         *mid = '\0';
6268         SvCUR_set(bigstr, mid - big);
6269     }
6270     else if ((i = mid - big)) { /* faster from front */
6271         midend -= littlelen;
6272         mid = midend;
6273         Move(big, midend - i, i, char);
6274         sv_chop(bigstr,midend-i);
6275         if (littlelen)
6276             Move(little, mid, littlelen,char);
6277     }
6278     else if (littlelen) {
6279         midend -= littlelen;
6280         sv_chop(bigstr,midend);
6281         Move(little,midend,littlelen,char);
6282     }
6283     else {
6284         sv_chop(bigstr,midend);
6285     }
6286     SvSETMAGIC(bigstr);
6287 }
6288
6289 /*
6290 =for apidoc sv_replace
6291
6292 Make the first argument a copy of the second, then delete the original.
6293 The target SV physically takes over ownership of the body of the source SV
6294 and inherits its flags; however, the target keeps any magic it owns,
6295 and any magic in the source is discarded.
6296 Note that this is a rather specialist SV copying operation; most of the
6297 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
6298
6299 =cut
6300 */
6301
6302 void
6303 Perl_sv_replace(pTHX_ SV *const sv, SV *const nsv)
6304 {
6305     const U32 refcnt = SvREFCNT(sv);
6306
6307     PERL_ARGS_ASSERT_SV_REPLACE;
6308
6309     SV_CHECK_THINKFIRST_COW_DROP(sv);
6310     if (SvREFCNT(nsv) != 1) {
6311         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
6312                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
6313     }
6314     if (SvMAGICAL(sv)) {
6315         if (SvMAGICAL(nsv))
6316             mg_free(nsv);
6317         else
6318             sv_upgrade(nsv, SVt_PVMG);
6319         SvMAGIC_set(nsv, SvMAGIC(sv));
6320         SvFLAGS(nsv) |= SvMAGICAL(sv);
6321         SvMAGICAL_off(sv);
6322         SvMAGIC_set(sv, NULL);
6323     }
6324     SvREFCNT(sv) = 0;
6325     sv_clear(sv);
6326     assert(!SvREFCNT(sv));
6327 #ifdef DEBUG_LEAKING_SCALARS
6328     sv->sv_flags  = nsv->sv_flags;
6329     sv->sv_any    = nsv->sv_any;
6330     sv->sv_refcnt = nsv->sv_refcnt;
6331     sv->sv_u      = nsv->sv_u;
6332 #else
6333     StructCopy(nsv,sv,SV);
6334 #endif
6335     if(SvTYPE(sv) == SVt_IV) {
6336         SvANY(sv)
6337             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
6338     }
6339         
6340
6341 #ifdef PERL_OLD_COPY_ON_WRITE
6342     if (SvIsCOW_normal(nsv)) {
6343         /* We need to follow the pointers around the loop to make the
6344            previous SV point to sv, rather than nsv.  */
6345         SV *next;
6346         SV *current = nsv;
6347         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
6348             assert(next);
6349             current = next;
6350             assert(SvPVX_const(current) == SvPVX_const(nsv));
6351         }
6352         /* Make the SV before us point to the SV after us.  */
6353         if (DEBUG_C_TEST) {
6354             PerlIO_printf(Perl_debug_log, "previous is\n");
6355             sv_dump(current);
6356             PerlIO_printf(Perl_debug_log,
6357                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
6358                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
6359         }
6360         SV_COW_NEXT_SV_SET(current, sv);
6361     }
6362 #endif
6363     SvREFCNT(sv) = refcnt;
6364     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
6365     SvREFCNT(nsv) = 0;
6366     del_SV(nsv);
6367 }
6368
6369 /* We're about to free a GV which has a CV that refers back to us.
6370  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
6371  * field) */
6372
6373 STATIC void
6374 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
6375 {
6376     SV *gvname;
6377     GV *anongv;
6378
6379     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
6380
6381     /* be assertive! */
6382     assert(SvREFCNT(gv) == 0);
6383     assert(isGV(gv) && isGV_with_GP(gv));
6384     assert(GvGP(gv));
6385     assert(!CvANON(cv));
6386     assert(CvGV(cv) == gv);
6387     assert(!CvNAMED(cv));
6388
6389     /* will the CV shortly be freed by gp_free() ? */
6390     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
6391         SvANY(cv)->xcv_gv_u.xcv_gv = NULL;
6392         return;
6393     }
6394
6395     /* if not, anonymise: */
6396     gvname = (GvSTASH(gv) && HvNAME(GvSTASH(gv)) && HvENAME(GvSTASH(gv)))
6397                     ? newSVhek(HvENAME_HEK(GvSTASH(gv)))
6398                     : newSVpvn_flags( "__ANON__", 8, 0 );
6399     sv_catpvs(gvname, "::__ANON__");
6400     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
6401     SvREFCNT_dec_NN(gvname);
6402
6403     CvANON_on(cv);
6404     CvCVGV_RC_on(cv);
6405     SvANY(cv)->xcv_gv_u.xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
6406 }
6407
6408
6409 /*
6410 =for apidoc sv_clear
6411
6412 Clear an SV: call any destructors, free up any memory used by the body,
6413 and free the body itself.  The SV's head is I<not> freed, although
6414 its type is set to all 1's so that it won't inadvertently be assumed
6415 to be live during global destruction etc.
6416 This function should only be called when REFCNT is zero.  Most of the time
6417 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
6418 instead.
6419
6420 =cut
6421 */
6422
6423 void
6424 Perl_sv_clear(pTHX_ SV *const orig_sv)
6425 {
6426     dVAR;
6427     HV *stash;
6428     U32 type;
6429     const struct body_details *sv_type_details;
6430     SV* iter_sv = NULL;
6431     SV* next_sv = NULL;
6432     SV *sv = orig_sv;
6433     STRLEN hash_index;
6434
6435     PERL_ARGS_ASSERT_SV_CLEAR;
6436
6437     /* within this loop, sv is the SV currently being freed, and
6438      * iter_sv is the most recent AV or whatever that's being iterated
6439      * over to provide more SVs */
6440
6441     while (sv) {
6442
6443         type = SvTYPE(sv);
6444
6445         assert(SvREFCNT(sv) == 0);
6446         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
6447
6448         if (type <= SVt_IV) {
6449             /* See the comment in sv.h about the collusion between this
6450              * early return and the overloading of the NULL slots in the
6451              * size table.  */
6452             if (SvROK(sv))
6453                 goto free_rv;
6454             SvFLAGS(sv) &= SVf_BREAK;
6455             SvFLAGS(sv) |= SVTYPEMASK;
6456             goto free_head;
6457         }
6458
6459         assert(!SvOBJECT(sv) || type >= SVt_PVMG); /* objs are always >= MG */
6460
6461         if (type >= SVt_PVMG) {
6462             if (SvOBJECT(sv)) {
6463                 if (!curse(sv, 1)) goto get_next_sv;
6464                 type = SvTYPE(sv); /* destructor may have changed it */
6465             }
6466             /* Free back-references before magic, in case the magic calls
6467              * Perl code that has weak references to sv. */
6468             if (type == SVt_PVHV) {
6469                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
6470                 if (SvMAGIC(sv))
6471                     mg_free(sv);
6472             }
6473             else if (type == SVt_PVMG && SvPAD_OUR(sv)) {
6474                 SvREFCNT_dec(SvOURSTASH(sv));
6475             }
6476             else if (type == SVt_PVAV && AvPAD_NAMELIST(sv)) {
6477                 assert(!SvMAGICAL(sv));
6478             } else if (SvMAGIC(sv)) {
6479                 /* Free back-references before other types of magic. */
6480                 sv_unmagic(sv, PERL_MAGIC_backref);
6481                 mg_free(sv);
6482             }
6483             SvMAGICAL_off(sv);
6484             if (type == SVt_PVMG && SvPAD_TYPED(sv))
6485                 SvREFCNT_dec(SvSTASH(sv));
6486         }
6487         switch (type) {
6488             /* case SVt_INVLIST: */
6489         case SVt_PVIO:
6490             if (IoIFP(sv) &&
6491                 IoIFP(sv) != PerlIO_stdin() &&
6492                 IoIFP(sv) != PerlIO_stdout() &&
6493                 IoIFP(sv) != PerlIO_stderr() &&
6494                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6495             {
6496                 io_close(MUTABLE_IO(sv), NULL, FALSE,
6497                          (IoTYPE(sv) == IoTYPE_WRONLY ||
6498                           IoTYPE(sv) == IoTYPE_RDWR   ||
6499                           IoTYPE(sv) == IoTYPE_APPEND));
6500             }
6501             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6502                 PerlDir_close(IoDIRP(sv));
6503             IoDIRP(sv) = (DIR*)NULL;
6504             Safefree(IoTOP_NAME(sv));
6505             Safefree(IoFMT_NAME(sv));
6506             Safefree(IoBOTTOM_NAME(sv));
6507             if ((const GV *)sv == PL_statgv)
6508                 PL_statgv = NULL;
6509             goto freescalar;
6510         case SVt_REGEXP:
6511             /* FIXME for plugins */
6512           freeregexp:
6513             pregfree2((REGEXP*) sv);
6514             goto freescalar;
6515         case SVt_PVCV:
6516         case SVt_PVFM:
6517             cv_undef(MUTABLE_CV(sv));
6518             /* If we're in a stash, we don't own a reference to it.
6519              * However it does have a back reference to us, which needs to
6520              * be cleared.  */
6521             if ((stash = CvSTASH(sv)))
6522                 sv_del_backref(MUTABLE_SV(stash), sv);
6523             goto freescalar;
6524         case SVt_PVHV:
6525             if (PL_last_swash_hv == (const HV *)sv) {
6526                 PL_last_swash_hv = NULL;
6527             }
6528             if (HvTOTALKEYS((HV*)sv) > 0) {
6529                 const char *name;
6530                 /* this statement should match the one at the beginning of
6531                  * hv_undef_flags() */
6532                 if (   PL_phase != PERL_PHASE_DESTRUCT
6533                     && (name = HvNAME((HV*)sv)))
6534                 {
6535                     if (PL_stashcache) {
6536                     DEBUG_o(Perl_deb(aTHX_ "sv_clear clearing PL_stashcache for '%"SVf"'\n",
6537                                      SVfARG(sv)));
6538                         (void)hv_deletehek(PL_stashcache,
6539                                            HvNAME_HEK((HV*)sv), G_DISCARD);
6540                     }
6541                     hv_name_set((HV*)sv, NULL, 0, 0);
6542                 }
6543
6544                 /* save old iter_sv in unused SvSTASH field */
6545                 assert(!SvOBJECT(sv));
6546                 SvSTASH(sv) = (HV*)iter_sv;
6547                 iter_sv = sv;
6548
6549                 /* save old hash_index in unused SvMAGIC field */
6550                 assert(!SvMAGICAL(sv));
6551                 assert(!SvMAGIC(sv));
6552                 ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index = hash_index;
6553                 hash_index = 0;
6554
6555                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6556                 goto get_next_sv; /* process this new sv */
6557             }
6558             /* free empty hash */
6559             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6560             assert(!HvARRAY((HV*)sv));
6561             break;
6562         case SVt_PVAV:
6563             {
6564                 AV* av = MUTABLE_AV(sv);
6565                 if (PL_comppad == av) {
6566                     PL_comppad = NULL;
6567                     PL_curpad = NULL;
6568                 }
6569                 if (AvREAL(av) && AvFILLp(av) > -1) {
6570                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6571                     /* save old iter_sv in top-most slot of AV,
6572                      * and pray that it doesn't get wiped in the meantime */
6573                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6574                     iter_sv = sv;
6575                     goto get_next_sv; /* process this new sv */
6576                 }
6577                 Safefree(AvALLOC(av));
6578             }
6579
6580             break;
6581         case SVt_PVLV:
6582             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6583                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6584                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6585                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6586             }
6587             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6588                 SvREFCNT_dec(LvTARG(sv));
6589             if (isREGEXP(sv)) goto freeregexp;
6590         case SVt_PVGV:
6591             if (isGV_with_GP(sv)) {
6592                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6593                    && HvENAME_get(stash))
6594                     mro_method_changed_in(stash);
6595                 gp_free(MUTABLE_GV(sv));
6596                 if (GvNAME_HEK(sv))
6597                     unshare_hek(GvNAME_HEK(sv));
6598                 /* If we're in a stash, we don't own a reference to it.
6599                  * However it does have a back reference to us, which
6600                  * needs to be cleared.  */
6601                 if (!SvVALID(sv) && (stash = GvSTASH(sv)))
6602                         sv_del_backref(MUTABLE_SV(stash), sv);
6603             }
6604             /* FIXME. There are probably more unreferenced pointers to SVs
6605              * in the interpreter struct that we should check and tidy in
6606              * a similar fashion to this:  */
6607             /* See also S_sv_unglob, which does the same thing. */
6608             if ((const GV *)sv == PL_last_in_gv)
6609                 PL_last_in_gv = NULL;
6610             else if ((const GV *)sv == PL_statgv)
6611                 PL_statgv = NULL;
6612             else if ((const GV *)sv == PL_stderrgv)
6613                 PL_stderrgv = NULL;
6614         case SVt_PVMG:
6615         case SVt_PVNV:
6616         case SVt_PVIV:
6617         case SVt_INVLIST:
6618         case SVt_PV:
6619           freescalar:
6620             /* Don't bother with SvOOK_off(sv); as we're only going to
6621              * free it.  */
6622             if (SvOOK(sv)) {
6623                 STRLEN offset;
6624                 SvOOK_offset(sv, offset);
6625                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6626                 /* Don't even bother with turning off the OOK flag.  */
6627             }
6628             if (SvROK(sv)) {
6629             free_rv:
6630                 {
6631                     SV * const target = SvRV(sv);
6632                     if (SvWEAKREF(sv))
6633                         sv_del_backref(target, sv);
6634                     else
6635                         next_sv = target;
6636                 }
6637             }
6638 #ifdef PERL_ANY_COW
6639             else if (SvPVX_const(sv)
6640                      && !(SvTYPE(sv) == SVt_PVIO
6641                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6642             {
6643                 if (SvIsCOW(sv)) {
6644                     if (DEBUG_C_TEST) {
6645                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6646                         sv_dump(sv);
6647                     }
6648                     if (SvLEN(sv)) {
6649 # ifdef PERL_OLD_COPY_ON_WRITE
6650                         sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6651 # else
6652                         if (CowREFCNT(sv)) {
6653                             sv_buf_to_rw(sv);
6654                             CowREFCNT(sv)--;
6655                             sv_buf_to_ro(sv);
6656                             SvLEN_set(sv, 0);
6657                         }
6658 # endif
6659                     } else {
6660                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6661                     }
6662
6663                 }
6664 # ifdef PERL_OLD_COPY_ON_WRITE
6665                 else
6666 # endif
6667                 if (SvLEN(sv)) {
6668                     Safefree(SvPVX_mutable(sv));
6669                 }
6670             }
6671 #else
6672             else if (SvPVX_const(sv) && SvLEN(sv)
6673                      && !(SvTYPE(sv) == SVt_PVIO
6674                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6675                 Safefree(SvPVX_mutable(sv));
6676             else if (SvPVX_const(sv) && SvIsCOW(sv)) {
6677                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6678             }
6679 #endif
6680             break;
6681         case SVt_NV:
6682             break;
6683         }
6684
6685       free_body:
6686
6687         SvFLAGS(sv) &= SVf_BREAK;
6688         SvFLAGS(sv) |= SVTYPEMASK;
6689
6690         sv_type_details = bodies_by_type + type;
6691         if (sv_type_details->arena) {
6692             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6693                      &PL_body_roots[type]);
6694         }
6695         else if (sv_type_details->body_size) {
6696             safefree(SvANY(sv));
6697         }
6698
6699       free_head:
6700         /* caller is responsible for freeing the head of the original sv */
6701         if (sv != orig_sv && !SvREFCNT(sv))
6702             del_SV(sv);
6703
6704         /* grab and free next sv, if any */
6705       get_next_sv:
6706         while (1) {
6707             sv = NULL;
6708             if (next_sv) {
6709                 sv = next_sv;
6710                 next_sv = NULL;
6711             }
6712             else if (!iter_sv) {
6713                 break;
6714             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6715                 AV *const av = (AV*)iter_sv;
6716                 if (AvFILLp(av) > -1) {
6717                     sv = AvARRAY(av)[AvFILLp(av)--];
6718                 }
6719                 else { /* no more elements of current AV to free */
6720                     sv = iter_sv;
6721                     type = SvTYPE(sv);
6722                     /* restore previous value, squirrelled away */
6723                     iter_sv = AvARRAY(av)[AvMAX(av)];
6724                     Safefree(AvALLOC(av));
6725                     goto free_body;
6726                 }
6727             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6728                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6729                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6730                     /* no more elements of current HV to free */
6731                     sv = iter_sv;
6732                     type = SvTYPE(sv);
6733                     /* Restore previous values of iter_sv and hash_index,
6734                      * squirrelled away */
6735                     assert(!SvOBJECT(sv));
6736                     iter_sv = (SV*)SvSTASH(sv);
6737                     assert(!SvMAGICAL(sv));
6738                     hash_index = ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index;
6739 #ifdef DEBUGGING
6740                     /* perl -DA does not like rubbish in SvMAGIC. */
6741                     SvMAGIC_set(sv, 0);
6742 #endif
6743
6744                     /* free any remaining detritus from the hash struct */
6745                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6746                     assert(!HvARRAY((HV*)sv));
6747                     goto free_body;
6748                 }
6749             }
6750
6751             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6752
6753             if (!sv)
6754                 continue;
6755             if (!SvREFCNT(sv)) {
6756                 sv_free(sv);
6757                 continue;
6758             }
6759             if (--(SvREFCNT(sv)))
6760                 continue;
6761 #ifdef DEBUGGING
6762             if (SvTEMP(sv)) {
6763                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6764                          "Attempt to free temp prematurely: SV 0x%"UVxf
6765                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6766                 continue;
6767             }
6768 #endif
6769             if (SvIMMORTAL(sv)) {
6770                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6771                 SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6772                 continue;
6773             }
6774             break;
6775         } /* while 1 */
6776
6777     } /* while sv */
6778 }
6779
6780 /* This routine curses the sv itself, not the object referenced by sv. So
6781    sv does not have to be ROK. */
6782
6783 static bool
6784 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6785     PERL_ARGS_ASSERT_CURSE;
6786     assert(SvOBJECT(sv));
6787
6788     if (PL_defstash &&  /* Still have a symbol table? */
6789         SvDESTROYABLE(sv))
6790     {
6791         dSP;
6792         HV* stash;
6793         do {
6794           stash = SvSTASH(sv);
6795           assert(SvTYPE(stash) == SVt_PVHV);
6796           if (HvNAME(stash)) {
6797             CV* destructor = NULL;
6798             assert (SvOOK(stash));
6799             if (!SvOBJECT(stash)) destructor = (CV *)SvSTASH(stash);
6800             if (!destructor || HvMROMETA(stash)->destroy_gen
6801                                 != PL_sub_generation)
6802             {
6803                 GV * const gv =
6804                     gv_fetchmeth_autoload(stash, "DESTROY", 7, 0);
6805                 if (gv) destructor = GvCV(gv);
6806                 if (!SvOBJECT(stash))
6807                 {
6808                     SvSTASH(stash) =
6809                         destructor ? (HV *)destructor : ((HV *)0)+1;
6810                     HvAUX(stash)->xhv_mro_meta->destroy_gen =
6811                         PL_sub_generation;
6812                 }
6813             }
6814             assert(!destructor || destructor == ((CV *)0)+1
6815                 || SvTYPE(destructor) == SVt_PVCV);
6816             if (destructor && destructor != ((CV *)0)+1
6817                 /* A constant subroutine can have no side effects, so
6818                    don't bother calling it.  */
6819                 && !CvCONST(destructor)
6820                 /* Don't bother calling an empty destructor or one that
6821                    returns immediately. */
6822                 && (CvISXSUB(destructor)
6823                 || (CvSTART(destructor)
6824                     && (CvSTART(destructor)->op_next->op_type
6825                                         != OP_LEAVESUB)
6826                     && (CvSTART(destructor)->op_next->op_type
6827                                         != OP_PUSHMARK
6828                         || CvSTART(destructor)->op_next->op_next->op_type
6829                                         != OP_RETURN
6830                        )
6831                    ))
6832                )
6833             {
6834                 SV* const tmpref = newRV(sv);
6835                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
6836                 ENTER;
6837                 PUSHSTACKi(PERLSI_DESTROY);
6838                 EXTEND(SP, 2);
6839                 PUSHMARK(SP);
6840                 PUSHs(tmpref);
6841                 PUTBACK;
6842                 call_sv(MUTABLE_SV(destructor),
6843                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
6844                 POPSTACK;
6845                 SPAGAIN;
6846                 LEAVE;
6847                 if(SvREFCNT(tmpref) < 2) {
6848                     /* tmpref is not kept alive! */
6849                     SvREFCNT(sv)--;
6850                     SvRV_set(tmpref, NULL);
6851                     SvROK_off(tmpref);
6852                 }
6853                 SvREFCNT_dec_NN(tmpref);
6854             }
6855           }
6856         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
6857
6858
6859         if (check_refcnt && SvREFCNT(sv)) {
6860             if (PL_in_clean_objs)
6861                 Perl_croak(aTHX_
6862                   "DESTROY created new reference to dead object '%"HEKf"'",
6863                    HEKfARG(HvNAME_HEK(stash)));
6864             /* DESTROY gave object new lease on life */
6865             return FALSE;
6866         }
6867     }
6868
6869     if (SvOBJECT(sv)) {
6870         HV * const stash = SvSTASH(sv);
6871         /* Curse before freeing the stash, as freeing the stash could cause
6872            a recursive call into S_curse. */
6873         SvOBJECT_off(sv);       /* Curse the object. */
6874         SvSTASH_set(sv,0);      /* SvREFCNT_dec may try to read this */
6875         SvREFCNT_dec(stash); /* possibly of changed persuasion */
6876     }
6877     return TRUE;
6878 }
6879
6880 /*
6881 =for apidoc sv_newref
6882
6883 Increment an SV's reference count.  Use the C<SvREFCNT_inc()> wrapper
6884 instead.
6885
6886 =cut
6887 */
6888
6889 SV *
6890 Perl_sv_newref(pTHX_ SV *const sv)
6891 {
6892     PERL_UNUSED_CONTEXT;
6893     if (sv)
6894         (SvREFCNT(sv))++;
6895     return sv;
6896 }
6897
6898 /*
6899 =for apidoc sv_free
6900
6901 Decrement an SV's reference count, and if it drops to zero, call
6902 C<sv_clear> to invoke destructors and free up any memory used by
6903 the body; finally, deallocate the SV's head itself.
6904 Normally called via a wrapper macro C<SvREFCNT_dec>.
6905
6906 =cut
6907 */
6908
6909 void
6910 Perl_sv_free(pTHX_ SV *const sv)
6911 {
6912     SvREFCNT_dec(sv);
6913 }
6914
6915
6916 /* Private helper function for SvREFCNT_dec().
6917  * Called with rc set to original SvREFCNT(sv), where rc == 0 or 1 */
6918
6919 void
6920 Perl_sv_free2(pTHX_ SV *const sv, const U32 rc)
6921 {
6922     dVAR;
6923
6924     PERL_ARGS_ASSERT_SV_FREE2;
6925
6926     if (LIKELY( rc == 1 )) {
6927         /* normal case */
6928         SvREFCNT(sv) = 0;
6929
6930 #ifdef DEBUGGING
6931         if (SvTEMP(sv)) {
6932             Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6933                              "Attempt to free temp prematurely: SV 0x%"UVxf
6934                              pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6935             return;
6936         }
6937 #endif
6938         if (SvIMMORTAL(sv)) {
6939             /* make sure SvREFCNT(sv)==0 happens very seldom */
6940             SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6941             return;
6942         }
6943         sv_clear(sv);
6944         if (! SvREFCNT(sv)) /* may have have been resurrected */
6945             del_SV(sv);
6946         return;
6947     }
6948
6949     /* handle exceptional cases */
6950
6951     assert(rc == 0);
6952
6953     if (SvFLAGS(sv) & SVf_BREAK)
6954         /* this SV's refcnt has been artificially decremented to
6955          * trigger cleanup */
6956         return;
6957     if (PL_in_clean_all) /* All is fair */
6958         return;
6959     if (SvIMMORTAL(sv)) {
6960         /* make sure SvREFCNT(sv)==0 happens very seldom */
6961         SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6962         return;
6963     }
6964     if (ckWARN_d(WARN_INTERNAL)) {
6965 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6966         Perl_dump_sv_child(aTHX_ sv);
6967 #else
6968     #ifdef DEBUG_LEAKING_SCALARS
6969         sv_dump(sv);
6970     #endif
6971 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6972         if (PL_warnhook == PERL_WARNHOOK_FATAL
6973             || ckDEAD(packWARN(WARN_INTERNAL))) {
6974             /* Don't let Perl_warner cause us to escape our fate:  */
6975             abort();
6976         }
6977 #endif
6978         /* This may not return:  */
6979         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6980                     "Attempt to free unreferenced scalar: SV 0x%"UVxf
6981                     pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6982 #endif
6983     }
6984 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6985     abort();
6986 #endif
6987
6988 }
6989
6990
6991 /*
6992 =for apidoc sv_len
6993
6994 Returns the length of the string in the SV.  Handles magic and type
6995 coercion and sets the UTF8 flag appropriately.  See also C<SvCUR>, which
6996 gives raw access to the xpv_cur slot.
6997
6998 =cut
6999 */
7000
7001 STRLEN
7002 Perl_sv_len(pTHX_ SV *const sv)
7003 {
7004     STRLEN len;
7005
7006     if (!sv)
7007         return 0;
7008
7009     (void)SvPV_const(sv, len);
7010     return len;
7011 }
7012
7013 /*
7014 =for apidoc sv_len_utf8
7015
7016 Returns the number of characters in the string in an SV, counting wide
7017 UTF-8 bytes as a single character.  Handles magic and type coercion.
7018
7019 =cut
7020 */
7021
7022 /*
7023  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
7024  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
7025  * (Note that the mg_len is not the length of the mg_ptr field.
7026  * This allows the cache to store the character length of the string without
7027  * needing to malloc() extra storage to attach to the mg_ptr.)
7028  *
7029  */
7030
7031 STRLEN
7032 Perl_sv_len_utf8(pTHX_ SV *const sv)
7033 {
7034     if (!sv)
7035         return 0;
7036
7037     SvGETMAGIC(sv);
7038     return sv_len_utf8_nomg(sv);
7039 }
7040
7041 STRLEN
7042 Perl_sv_len_utf8_nomg(pTHX_ SV * const sv)
7043 {
7044     STRLEN len;
7045     const U8 *s = (U8*)SvPV_nomg_const(sv, len);
7046
7047     PERL_ARGS_ASSERT_SV_LEN_UTF8_NOMG;
7048
7049     if (PL_utf8cache && SvUTF8(sv)) {
7050             STRLEN ulen;
7051             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
7052
7053             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
7054                 if (mg->mg_len != -1)
7055                     ulen = mg->mg_len;
7056                 else {
7057                     /* We can use the offset cache for a headstart.
7058                        The longer value is stored in the first pair.  */
7059                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
7060
7061                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
7062                                                        s + len);
7063                 }
7064                 
7065                 if (PL_utf8cache < 0) {
7066                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
7067                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
7068                 }
7069             }
7070             else {
7071                 ulen = Perl_utf8_length(aTHX_ s, s + len);
7072                 utf8_mg_len_cache_update(sv, &mg, ulen);
7073             }
7074             return ulen;
7075     }
7076     return SvUTF8(sv) ? Perl_utf8_length(aTHX_ s, s + len) : len;
7077 }
7078
7079 /* Walk forwards to find the byte corresponding to the passed in UTF-8
7080    offset.  */
7081 static STRLEN
7082 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
7083                       STRLEN *const uoffset_p, bool *const at_end)
7084 {
7085     const U8 *s = start;
7086     STRLEN uoffset = *uoffset_p;
7087
7088     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
7089
7090     while (s < send && uoffset) {
7091         --uoffset;
7092         s += UTF8SKIP(s);
7093     }
7094     if (s == send) {
7095         *at_end = TRUE;
7096     }
7097     else if (s > send) {
7098         *at_end = TRUE;
7099         /* This is the existing behaviour. Possibly it should be a croak, as
7100            it's actually a bounds error  */
7101         s = send;
7102     }
7103     *uoffset_p -= uoffset;
7104     return s - start;
7105 }
7106
7107 /* Given the length of the string in both bytes and UTF-8 characters, decide
7108    whether to walk forwards or backwards to find the byte corresponding to
7109    the passed in UTF-8 offset.  */
7110 static STRLEN
7111 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
7112                     STRLEN uoffset, const STRLEN uend)
7113 {
7114     STRLEN backw = uend - uoffset;
7115
7116     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
7117
7118     if (uoffset < 2 * backw) {
7119         /* The assumption is that going forwards is twice the speed of going
7120            forward (that's where the 2 * backw comes from).
7121            (The real figure of course depends on the UTF-8 data.)  */
7122         const U8 *s = start;
7123
7124         while (s < send && uoffset--)
7125             s += UTF8SKIP(s);
7126         assert (s <= send);
7127         if (s > send)
7128             s = send;
7129         return s - start;
7130     }
7131
7132     while (backw--) {
7133         send--;
7134         while (UTF8_IS_CONTINUATION(*send))
7135             send--;
7136     }
7137     return send - start;
7138 }
7139
7140 /* For the string representation of the given scalar, find the byte
7141    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
7142    give another position in the string, *before* the sought offset, which
7143    (which is always true, as 0, 0 is a valid pair of positions), which should
7144    help reduce the amount of linear searching.
7145    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
7146    will be used to reduce the amount of linear searching. The cache will be
7147    created if necessary, and the found value offered to it for update.  */
7148 static STRLEN
7149 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
7150                     const U8 *const send, STRLEN uoffset,
7151                     STRLEN uoffset0, STRLEN boffset0)
7152 {
7153     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
7154     bool found = FALSE;
7155     bool at_end = FALSE;
7156
7157     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
7158
7159     assert (uoffset >= uoffset0);
7160
7161     if (!uoffset)
7162         return 0;
7163
7164     if (!SvREADONLY(sv) && !SvGMAGICAL(sv) && SvPOK(sv)
7165         && PL_utf8cache
7166         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
7167                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
7168         if ((*mgp)->mg_ptr) {
7169             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
7170             if (cache[0] == uoffset) {
7171                 /* An exact match. */
7172                 return cache[1];
7173             }
7174             if (cache[2] == uoffset) {
7175                 /* An exact match. */
7176                 return cache[3];
7177             }
7178
7179             if (cache[0] < uoffset) {
7180                 /* The cache already knows part of the way.   */
7181                 if (cache[0] > uoffset0) {
7182                     /* The cache knows more than the passed in pair  */
7183                     uoffset0 = cache[0];
7184                     boffset0 = cache[1];
7185                 }
7186                 if ((*mgp)->mg_len != -1) {
7187                     /* And we know the end too.  */
7188                     boffset = boffset0
7189                         + sv_pos_u2b_midway(start + boffset0, send,
7190                                               uoffset - uoffset0,
7191                                               (*mgp)->mg_len - uoffset0);
7192                 } else {
7193                     uoffset -= uoffset0;
7194                     boffset = boffset0
7195                         + sv_pos_u2b_forwards(start + boffset0,
7196                                               send, &uoffset, &at_end);
7197                     uoffset += uoffset0;
7198                 }
7199             }
7200             else if (cache[2] < uoffset) {
7201                 /* We're between the two cache entries.  */
7202                 if (cache[2] > uoffset0) {
7203                     /* and the cache knows more than the passed in pair  */
7204                     uoffset0 = cache[2];
7205                     boffset0 = cache[3];
7206                 }
7207
7208                 boffset = boffset0
7209                     + sv_pos_u2b_midway(start + boffset0,
7210                                           start + cache[1],
7211                                           uoffset - uoffset0,
7212                                           cache[0] - uoffset0);
7213             } else {
7214                 boffset = boffset0
7215                     + sv_pos_u2b_midway(start + boffset0,
7216                                           start + cache[3],
7217                                           uoffset - uoffset0,
7218                                           cache[2] - uoffset0);
7219             }
7220             found = TRUE;
7221         }
7222         else if ((*mgp)->mg_len != -1) {
7223             /* If we can take advantage of a passed in offset, do so.  */
7224             /* In fact, offset0 is either 0, or less than offset, so don't
7225                need to worry about the other possibility.  */
7226             boffset = boffset0
7227                 + sv_pos_u2b_midway(start + boffset0, send,
7228                                       uoffset - uoffset0,
7229                                       (*mgp)->mg_len - uoffset0);
7230             found = TRUE;
7231         }
7232     }
7233
7234     if (!found || PL_utf8cache < 0) {
7235         STRLEN real_boffset;
7236         uoffset -= uoffset0;
7237         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
7238                                                       send, &uoffset, &at_end);
7239         uoffset += uoffset0;
7240
7241         if (found && PL_utf8cache < 0)
7242             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
7243                                        real_boffset, sv);
7244         boffset = real_boffset;
7245     }
7246
7247     if (PL_utf8cache && !SvGMAGICAL(sv) && SvPOK(sv)) {
7248         if (at_end)
7249             utf8_mg_len_cache_update(sv, mgp, uoffset);
7250         else
7251             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
7252     }
7253     return boffset;
7254 }
7255
7256
7257 /*
7258 =for apidoc sv_pos_u2b_flags
7259
7260 Converts the offset from a count of UTF-8 chars from
7261 the start of the string, to a count of the equivalent number of bytes; if
7262 lenp is non-zero, it does the same to lenp, but this time starting from
7263 the offset, rather than from the start
7264 of the string.  Handles type coercion.
7265 I<flags> is passed to C<SvPV_flags>, and usually should be
7266 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7267
7268 =cut
7269 */
7270
7271 /*
7272  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
7273  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7274  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7275  *
7276  */
7277
7278 STRLEN
7279 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
7280                       U32 flags)
7281 {
7282     const U8 *start;
7283     STRLEN len;
7284     STRLEN boffset;
7285
7286     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
7287
7288     start = (U8*)SvPV_flags(sv, len, flags);
7289     if (len) {
7290         const U8 * const send = start + len;
7291         MAGIC *mg = NULL;
7292         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
7293
7294         if (lenp
7295             && *lenp /* don't bother doing work for 0, as its bytes equivalent
7296                         is 0, and *lenp is already set to that.  */) {
7297             /* Convert the relative offset to absolute.  */
7298             const STRLEN uoffset2 = uoffset + *lenp;
7299             const STRLEN boffset2
7300                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
7301                                       uoffset, boffset) - boffset;
7302
7303             *lenp = boffset2;
7304         }
7305     } else {
7306         if (lenp)
7307             *lenp = 0;
7308         boffset = 0;
7309     }
7310
7311     return boffset;
7312 }
7313
7314 /*
7315 =for apidoc sv_pos_u2b
7316
7317 Converts the value pointed to by offsetp from a count of UTF-8 chars from
7318 the start of the string, to a count of the equivalent number of bytes; if
7319 lenp is non-zero, it does the same to lenp, but this time starting from
7320 the offset, rather than from the start of the string.  Handles magic and
7321 type coercion.
7322
7323 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
7324 than 2Gb.
7325
7326 =cut
7327 */
7328
7329 /*
7330  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
7331  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7332  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7333  *
7334  */
7335
7336 /* This function is subject to size and sign problems */
7337
7338 void
7339 Perl_sv_pos_u2b(pTHX_ SV *const sv, I32 *const offsetp, I32 *const lenp)
7340 {
7341     PERL_ARGS_ASSERT_SV_POS_U2B;
7342
7343     if (lenp) {
7344         STRLEN ulen = (STRLEN)*lenp;
7345         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
7346                                          SV_GMAGIC|SV_CONST_RETURN);
7347         *lenp = (I32)ulen;
7348     } else {
7349         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
7350                                          SV_GMAGIC|SV_CONST_RETURN);
7351     }
7352 }
7353
7354 static void
7355 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
7356                            const STRLEN ulen)
7357 {
7358     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
7359     if (SvREADONLY(sv) || SvGMAGICAL(sv) || !SvPOK(sv))
7360         return;
7361
7362     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7363                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7364         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
7365     }
7366     assert(*mgp);
7367
7368     (*mgp)->mg_len = ulen;
7369 }
7370
7371 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
7372    byte length pairing. The (byte) length of the total SV is passed in too,
7373    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
7374    may not have updated SvCUR, so we can't rely on reading it directly.
7375
7376    The proffered utf8/byte length pairing isn't used if the cache already has
7377    two pairs, and swapping either for the proffered pair would increase the
7378    RMS of the intervals between known byte offsets.
7379
7380    The cache itself consists of 4 STRLEN values
7381    0: larger UTF-8 offset
7382    1: corresponding byte offset
7383    2: smaller UTF-8 offset
7384    3: corresponding byte offset
7385
7386    Unused cache pairs have the value 0, 0.
7387    Keeping the cache "backwards" means that the invariant of
7388    cache[0] >= cache[2] is maintained even with empty slots, which means that
7389    the code that uses it doesn't need to worry if only 1 entry has actually
7390    been set to non-zero.  It also makes the "position beyond the end of the
7391    cache" logic much simpler, as the first slot is always the one to start
7392    from.   
7393 */
7394 static void
7395 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
7396                            const STRLEN utf8, const STRLEN blen)
7397 {
7398     STRLEN *cache;
7399
7400     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
7401
7402     if (SvREADONLY(sv))
7403         return;
7404
7405     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7406                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7407         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
7408                            0);
7409         (*mgp)->mg_len = -1;
7410     }
7411     assert(*mgp);
7412
7413     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
7414         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
7415         (*mgp)->mg_ptr = (char *) cache;
7416     }
7417     assert(cache);
7418
7419     if (PL_utf8cache < 0 && SvPOKp(sv)) {
7420         /* SvPOKp() because, if sv is a reference, then SvPVX() is actually
7421            a pointer.  Note that we no longer cache utf8 offsets on refer-
7422            ences, but this check is still a good idea, for robustness.  */
7423         const U8 *start = (const U8 *) SvPVX_const(sv);
7424         const STRLEN realutf8 = utf8_length(start, start + byte);
7425
7426         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
7427                                    sv);
7428     }
7429
7430     /* Cache is held with the later position first, to simplify the code
7431        that deals with unbounded ends.  */
7432        
7433     ASSERT_UTF8_CACHE(cache);
7434     if (cache[1] == 0) {
7435         /* Cache is totally empty  */
7436         cache[0] = utf8;
7437         cache[1] = byte;
7438     } else if (cache[3] == 0) {
7439         if (byte > cache[1]) {
7440             /* New one is larger, so goes first.  */
7441             cache[2] = cache[0];
7442             cache[3] = cache[1];
7443             cache[0] = utf8;
7444             cache[1] = byte;
7445         } else {
7446             cache[2] = utf8;
7447             cache[3] = byte;
7448         }
7449     } else {
7450 /* float casts necessary? XXX */
7451 #define THREEWAY_SQUARE(a,b,c,d) \
7452             ((float)((d) - (c))) * ((float)((d) - (c))) \
7453             + ((float)((c) - (b))) * ((float)((c) - (b))) \
7454                + ((float)((b) - (a))) * ((float)((b) - (a)))
7455
7456         /* Cache has 2 slots in use, and we know three potential pairs.
7457            Keep the two that give the lowest RMS distance. Do the
7458            calculation in bytes simply because we always know the byte
7459            length.  squareroot has the same ordering as the positive value,
7460            so don't bother with the actual square root.  */
7461         if (byte > cache[1]) {
7462             /* New position is after the existing pair of pairs.  */
7463             const float keep_earlier
7464                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
7465             const float keep_later
7466                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
7467
7468             if (keep_later < keep_earlier) {
7469                 cache[2] = cache[0];
7470                 cache[3] = cache[1];
7471             }
7472             cache[0] = utf8;
7473             cache[1] = byte;
7474         }
7475         else {
7476             const float keep_later = THREEWAY_SQUARE(0, byte, cache[1], blen);
7477             float b, c, keep_earlier;
7478             if (byte > cache[3]) {
7479                 /* New position is between the existing pair of pairs.  */
7480                 b = (float)cache[3];
7481                 c = (float)byte;
7482             } else {
7483                 /* New position is before the existing pair of pairs.  */
7484                 b = (float)byte;
7485                 c = (float)cache[3];
7486             }
7487             keep_earlier = THREEWAY_SQUARE(0, b, c, blen);
7488             if (byte > cache[3]) {
7489                 if (keep_later < keep_earlier) {
7490                     cache[2] = utf8;
7491                     cache[3] = byte;
7492                 }
7493                 else {
7494                     cache[0] = utf8;
7495                     cache[1] = byte;
7496                 }
7497             }
7498             else {
7499                 if (! (keep_later < keep_earlier)) {
7500                     cache[0] = cache[2];
7501                     cache[1] = cache[3];
7502                 }
7503                 cache[2] = utf8;
7504                 cache[3] = byte;
7505             }
7506         }
7507     }
7508     ASSERT_UTF8_CACHE(cache);
7509 }
7510
7511 /* We already know all of the way, now we may be able to walk back.  The same
7512    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
7513    backward is half the speed of walking forward. */
7514 static STRLEN
7515 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
7516                     const U8 *end, STRLEN endu)
7517 {
7518     const STRLEN forw = target - s;
7519     STRLEN backw = end - target;
7520
7521     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
7522
7523     if (forw < 2 * backw) {
7524         return utf8_length(s, target);
7525     }
7526
7527     while (end > target) {
7528         end--;
7529         while (UTF8_IS_CONTINUATION(*end)) {
7530             end--;
7531         }
7532         endu--;
7533     }
7534     return endu;
7535 }
7536
7537 /*
7538 =for apidoc sv_pos_b2u_flags
7539
7540 Converts the offset from a count of bytes from the start of the string, to
7541 a count of the equivalent number of UTF-8 chars.  Handles type coercion.
7542 I<flags> is passed to C<SvPV_flags>, and usually should be
7543 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7544
7545 =cut
7546 */
7547
7548 /*
7549  * sv_pos_b2u_flags() uses, like sv_pos_u2b_flags(), the mg_ptr of the
7550  * potential PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8
7551  * and byte offsets.
7552  *
7553  */
7554 STRLEN
7555 Perl_sv_pos_b2u_flags(pTHX_ SV *const sv, STRLEN const offset, U32 flags)
7556 {
7557     const U8* s;
7558     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
7559     STRLEN blen;
7560     MAGIC* mg = NULL;
7561     const U8* send;
7562     bool found = FALSE;
7563
7564     PERL_ARGS_ASSERT_SV_POS_B2U_FLAGS;
7565
7566     s = (const U8*)SvPV_flags(sv, blen, flags);
7567
7568     if (blen < offset)
7569         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset, blen=%"UVuf
7570                    ", byte=%"UVuf, (UV)blen, (UV)offset);
7571
7572     send = s + offset;
7573
7574     if (!SvREADONLY(sv)
7575         && PL_utf8cache
7576         && SvTYPE(sv) >= SVt_PVMG
7577         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7578     {
7579         if (mg->mg_ptr) {
7580             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7581             if (cache[1] == offset) {
7582                 /* An exact match. */
7583                 return cache[0];
7584             }
7585             if (cache[3] == offset) {
7586                 /* An exact match. */
7587                 return cache[2];
7588             }
7589
7590             if (cache[1] < offset) {
7591                 /* We already know part of the way. */
7592                 if (mg->mg_len != -1) {
7593                     /* Actually, we know the end too.  */
7594                     len = cache[0]
7595                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7596                                               s + blen, mg->mg_len - cache[0]);
7597                 } else {
7598                     len = cache[0] + utf8_length(s + cache[1], send);
7599                 }
7600             }
7601             else if (cache[3] < offset) {
7602                 /* We're between the two cached pairs, so we do the calculation
7603                    offset by the byte/utf-8 positions for the earlier pair,
7604                    then add the utf-8 characters from the string start to
7605                    there.  */
7606                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7607                                           s + cache[1], cache[0] - cache[2])
7608                     + cache[2];
7609
7610             }
7611             else { /* cache[3] > offset */
7612                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7613                                           cache[2]);
7614
7615             }
7616             ASSERT_UTF8_CACHE(cache);
7617             found = TRUE;
7618         } else if (mg->mg_len != -1) {
7619             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7620             found = TRUE;
7621         }
7622     }
7623     if (!found || PL_utf8cache < 0) {
7624         const STRLEN real_len = utf8_length(s, send);
7625
7626         if (found && PL_utf8cache < 0)
7627             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7628         len = real_len;
7629     }
7630
7631     if (PL_utf8cache) {
7632         if (blen == offset)
7633             utf8_mg_len_cache_update(sv, &mg, len);
7634         else
7635             utf8_mg_pos_cache_update(sv, &mg, offset, len, blen);
7636     }
7637
7638     return len;
7639 }
7640
7641 /*
7642 =for apidoc sv_pos_b2u
7643
7644 Converts the value pointed to by offsetp from a count of bytes from the
7645 start of the string, to a count of the equivalent number of UTF-8 chars.
7646 Handles magic and type coercion.
7647
7648 Use C<sv_pos_b2u_flags> in preference, which correctly handles strings
7649 longer than 2Gb.
7650
7651 =cut
7652 */
7653
7654 /*
7655  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
7656  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7657  * byte offsets.
7658  *
7659  */
7660 void
7661 Perl_sv_pos_b2u(pTHX_ SV *const sv, I32 *const offsetp)
7662 {
7663     PERL_ARGS_ASSERT_SV_POS_B2U;
7664
7665     if (!sv)
7666         return;
7667
7668     *offsetp = (I32)sv_pos_b2u_flags(sv, (STRLEN)*offsetp,
7669                                      SV_GMAGIC|SV_CONST_RETURN);
7670 }
7671
7672 static void
7673 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7674                              STRLEN real, SV *const sv)
7675 {
7676     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7677
7678     /* As this is debugging only code, save space by keeping this test here,
7679        rather than inlining it in all the callers.  */
7680     if (from_cache == real)
7681         return;
7682
7683     /* Need to turn the assertions off otherwise we may recurse infinitely
7684        while printing error messages.  */
7685     SAVEI8(PL_utf8cache);
7686     PL_utf8cache = 0;
7687     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
7688                func, (UV) from_cache, (UV) real, SVfARG(sv));
7689 }
7690
7691 /*
7692 =for apidoc sv_eq
7693
7694 Returns a boolean indicating whether the strings in the two SVs are
7695 identical.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7696 coerce its args to strings if necessary.
7697
7698 =for apidoc sv_eq_flags
7699
7700 Returns a boolean indicating whether the strings in the two SVs are
7701 identical.  Is UTF-8 and 'use bytes' aware and coerces its args to strings
7702 if necessary.  If the flags include SV_GMAGIC, it handles get-magic, too.
7703
7704 =cut
7705 */
7706
7707 I32
7708 Perl_sv_eq_flags(pTHX_ SV *sv1, SV *sv2, const U32 flags)
7709 {
7710     const char *pv1;
7711     STRLEN cur1;
7712     const char *pv2;
7713     STRLEN cur2;
7714     I32  eq     = 0;
7715     SV* svrecode = NULL;
7716
7717     if (!sv1) {
7718         pv1 = "";
7719         cur1 = 0;
7720     }
7721     else {
7722         /* if pv1 and pv2 are the same, second SvPV_const call may
7723          * invalidate pv1 (if we are handling magic), so we may need to
7724          * make a copy */
7725         if (sv1 == sv2 && flags & SV_GMAGIC
7726          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7727             pv1 = SvPV_const(sv1, cur1);
7728             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7729         }
7730         pv1 = SvPV_flags_const(sv1, cur1, flags);
7731     }
7732
7733     if (!sv2){
7734         pv2 = "";
7735         cur2 = 0;
7736     }
7737     else
7738         pv2 = SvPV_flags_const(sv2, cur2, flags);
7739
7740     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7741         /* Differing utf8ness.
7742          * Do not UTF8size the comparands as a side-effect. */
7743          if (PL_encoding) {
7744               if (SvUTF8(sv1)) {
7745                    svrecode = newSVpvn(pv2, cur2);
7746                    sv_recode_to_utf8(svrecode, PL_encoding);
7747                    pv2 = SvPV_const(svrecode, cur2);
7748               }
7749               else {
7750                    svrecode = newSVpvn(pv1, cur1);
7751                    sv_recode_to_utf8(svrecode, PL_encoding);
7752                    pv1 = SvPV_const(svrecode, cur1);
7753               }
7754               /* Now both are in UTF-8. */
7755               if (cur1 != cur2) {
7756                    SvREFCNT_dec_NN(svrecode);
7757                    return FALSE;
7758               }
7759          }
7760          else {
7761               if (SvUTF8(sv1)) {
7762                   /* sv1 is the UTF-8 one  */
7763                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7764                                         (const U8*)pv1, cur1) == 0;
7765               }
7766               else {
7767                   /* sv2 is the UTF-8 one  */
7768                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7769                                         (const U8*)pv2, cur2) == 0;
7770               }
7771          }
7772     }
7773
7774     if (cur1 == cur2)
7775         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7776         
7777     SvREFCNT_dec(svrecode);
7778
7779     return eq;
7780 }
7781
7782 /*
7783 =for apidoc sv_cmp
7784
7785 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7786 string in C<sv1> is less than, equal to, or greater than the string in
7787 C<sv2>.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7788 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
7789
7790 =for apidoc sv_cmp_flags
7791
7792 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7793 string in C<sv1> is less than, equal to, or greater than the string in
7794 C<sv2>.  Is UTF-8 and 'use bytes' aware and will coerce its args to strings
7795 if necessary.  If the flags include SV_GMAGIC, it handles get magic.  See
7796 also C<sv_cmp_locale_flags>.
7797
7798 =cut
7799 */
7800
7801 I32
7802 Perl_sv_cmp(pTHX_ SV *const sv1, SV *const sv2)
7803 {
7804     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7805 }
7806
7807 I32
7808 Perl_sv_cmp_flags(pTHX_ SV *const sv1, SV *const sv2,
7809                   const U32 flags)
7810 {
7811     STRLEN cur1, cur2;
7812     const char *pv1, *pv2;
7813     I32  cmp;
7814     SV *svrecode = NULL;
7815
7816     if (!sv1) {
7817         pv1 = "";
7818         cur1 = 0;
7819     }
7820     else
7821         pv1 = SvPV_flags_const(sv1, cur1, flags);
7822
7823     if (!sv2) {
7824         pv2 = "";
7825         cur2 = 0;
7826     }
7827     else
7828         pv2 = SvPV_flags_const(sv2, cur2, flags);
7829
7830     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7831         /* Differing utf8ness.
7832          * Do not UTF8size the comparands as a side-effect. */
7833         if (SvUTF8(sv1)) {
7834             if (PL_encoding) {
7835                  svrecode = newSVpvn(pv2, cur2);
7836                  sv_recode_to_utf8(svrecode, PL_encoding);
7837                  pv2 = SvPV_const(svrecode, cur2);
7838             }
7839             else {
7840                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
7841                                                    (const U8*)pv1, cur1);
7842                 return retval ? retval < 0 ? -1 : +1 : 0;
7843             }
7844         }
7845         else {
7846             if (PL_encoding) {
7847                  svrecode = newSVpvn(pv1, cur1);
7848                  sv_recode_to_utf8(svrecode, PL_encoding);
7849                  pv1 = SvPV_const(svrecode, cur1);
7850             }
7851             else {
7852                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
7853                                                   (const U8*)pv2, cur2);
7854                 return retval ? retval < 0 ? -1 : +1 : 0;
7855             }
7856         }
7857     }
7858
7859     if (!cur1) {
7860         cmp = cur2 ? -1 : 0;
7861     } else if (!cur2) {
7862         cmp = 1;
7863     } else {
7864         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7865
7866         if (retval) {
7867             cmp = retval < 0 ? -1 : 1;
7868         } else if (cur1 == cur2) {
7869             cmp = 0;
7870         } else {
7871             cmp = cur1 < cur2 ? -1 : 1;
7872         }
7873     }
7874
7875     SvREFCNT_dec(svrecode);
7876
7877     return cmp;
7878 }
7879
7880 /*
7881 =for apidoc sv_cmp_locale
7882
7883 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7884 'use bytes' aware, handles get magic, and will coerce its args to strings
7885 if necessary.  See also C<sv_cmp>.
7886
7887 =for apidoc sv_cmp_locale_flags
7888
7889 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7890 'use bytes' aware and will coerce its args to strings if necessary.  If the
7891 flags contain SV_GMAGIC, it handles get magic.  See also C<sv_cmp_flags>.
7892
7893 =cut
7894 */
7895
7896 I32
7897 Perl_sv_cmp_locale(pTHX_ SV *const sv1, SV *const sv2)
7898 {
7899     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7900 }
7901
7902 I32
7903 Perl_sv_cmp_locale_flags(pTHX_ SV *const sv1, SV *const sv2,
7904                          const U32 flags)
7905 {
7906 #ifdef USE_LOCALE_COLLATE
7907
7908     char *pv1, *pv2;
7909     STRLEN len1, len2;
7910     I32 retval;
7911
7912     if (PL_collation_standard)
7913         goto raw_compare;
7914
7915     len1 = 0;
7916     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7917     len2 = 0;
7918     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7919
7920     if (!pv1 || !len1) {
7921         if (pv2 && len2)
7922             return -1;
7923         else
7924             goto raw_compare;
7925     }
7926     else {
7927         if (!pv2 || !len2)
7928             return 1;
7929     }
7930
7931     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7932
7933     if (retval)
7934         return retval < 0 ? -1 : 1;
7935
7936     /*
7937      * When the result of collation is equality, that doesn't mean
7938      * that there are no differences -- some locales exclude some
7939      * characters from consideration.  So to avoid false equalities,
7940      * we use the raw string as a tiebreaker.
7941      */
7942
7943   raw_compare:
7944     /* FALLTHROUGH */
7945
7946 #else
7947     PERL_UNUSED_ARG(flags);
7948 #endif /* USE_LOCALE_COLLATE */
7949
7950     return sv_cmp(sv1, sv2);
7951 }
7952
7953
7954 #ifdef USE_LOCALE_COLLATE
7955
7956 /*
7957 =for apidoc sv_collxfrm
7958
7959 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag.  See
7960 C<sv_collxfrm_flags>.
7961
7962 =for apidoc sv_collxfrm_flags
7963
7964 Add Collate Transform magic to an SV if it doesn't already have it.  If the
7965 flags contain SV_GMAGIC, it handles get-magic.
7966
7967 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7968 scalar data of the variable, but transformed to such a format that a normal
7969 memory comparison can be used to compare the data according to the locale
7970 settings.
7971
7972 =cut
7973 */
7974
7975 char *
7976 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
7977 {
7978     MAGIC *mg;
7979
7980     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
7981
7982     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
7983     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
7984         const char *s;
7985         char *xf;
7986         STRLEN len, xlen;
7987
7988         if (mg)
7989             Safefree(mg->mg_ptr);
7990         s = SvPV_flags_const(sv, len, flags);
7991         if ((xf = mem_collxfrm(s, len, &xlen))) {
7992             if (! mg) {
7993 #ifdef PERL_OLD_COPY_ON_WRITE
7994                 if (SvIsCOW(sv))
7995                     sv_force_normal_flags(sv, 0);
7996 #endif
7997                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7998                                  0, 0);
7999                 assert(mg);
8000             }
8001             mg->mg_ptr = xf;
8002             mg->mg_len = xlen;
8003         }
8004         else {
8005             if (mg) {
8006                 mg->mg_ptr = NULL;
8007                 mg->mg_len = -1;
8008             }
8009         }
8010     }
8011     if (mg && mg->mg_ptr) {
8012         *nxp = mg->mg_len;
8013         return mg->mg_ptr + sizeof(PL_collation_ix);
8014     }
8015     else {
8016         *nxp = 0;
8017         return NULL;
8018     }
8019 }
8020
8021 #endif /* USE_LOCALE_COLLATE */
8022
8023 static char *
8024 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8025 {
8026     SV * const tsv = newSV(0);
8027     ENTER;
8028     SAVEFREESV(tsv);
8029     sv_gets(tsv, fp, 0);
8030     sv_utf8_upgrade_nomg(tsv);
8031     SvCUR_set(sv,append);
8032     sv_catsv(sv,tsv);
8033     LEAVE;
8034     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8035 }
8036
8037 static char *
8038 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8039 {
8040     SSize_t bytesread;
8041     const STRLEN recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
8042       /* Grab the size of the record we're getting */
8043     char *buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
8044     
8045     /* Go yank in */
8046 #ifdef __VMS
8047     int fd;
8048     Stat_t st;
8049
8050     /* With a true, record-oriented file on VMS, we need to use read directly
8051      * to ensure that we respect RMS record boundaries.  The user is responsible
8052      * for providing a PL_rs value that corresponds to the FAB$W_MRS (maximum
8053      * record size) field.  N.B. This is likely to produce invalid results on
8054      * varying-width character data when a record ends mid-character.
8055      */
8056     fd = PerlIO_fileno(fp);
8057     if (fd != -1
8058         && PerlLIO_fstat(fd, &st) == 0
8059         && (st.st_fab_rfm == FAB$C_VAR
8060             || st.st_fab_rfm == FAB$C_VFC
8061             || st.st_fab_rfm == FAB$C_FIX)) {
8062
8063         bytesread = PerlLIO_read(fd, buffer, recsize);
8064     }
8065     else /* in-memory file from PerlIO::Scalar
8066           * or not a record-oriented file
8067           */
8068 #endif
8069     {
8070         bytesread = PerlIO_read(fp, buffer, recsize);
8071
8072         /* At this point, the logic in sv_get() means that sv will
8073            be treated as utf-8 if the handle is utf8.
8074         */
8075         if (PerlIO_isutf8(fp) && bytesread > 0) {
8076             char *bend = buffer + bytesread;
8077             char *bufp = buffer;
8078             size_t charcount = 0;
8079             bool charstart = TRUE;
8080             STRLEN skip = 0;
8081
8082             while (charcount < recsize) {
8083                 /* count accumulated characters */
8084                 while (bufp < bend) {
8085                     if (charstart) {
8086                         skip = UTF8SKIP(bufp);
8087                     }
8088                     if (bufp + skip > bend) {
8089                         /* partial at the end */
8090                         charstart = FALSE;
8091                         break;
8092                     }
8093                     else {
8094                         ++charcount;
8095                         bufp += skip;
8096                         charstart = TRUE;
8097                     }
8098                 }
8099
8100                 if (charcount < recsize) {
8101                     STRLEN readsize;
8102                     STRLEN bufp_offset = bufp - buffer;
8103                     SSize_t morebytesread;
8104
8105                     /* originally I read enough to fill any incomplete
8106                        character and the first byte of the next
8107                        character if needed, but if there's many
8108                        multi-byte encoded characters we're going to be
8109                        making a read call for every character beyond
8110                        the original read size.
8111
8112                        So instead, read the rest of the character if
8113                        any, and enough bytes to match at least the
8114                        start bytes for each character we're going to
8115                        read.
8116                     */
8117                     if (charstart)
8118                         readsize = recsize - charcount;
8119                     else 
8120                         readsize = skip - (bend - bufp) + recsize - charcount - 1;
8121                     buffer = SvGROW(sv, append + bytesread + readsize + 1) + append;
8122                     bend = buffer + bytesread;
8123                     morebytesread = PerlIO_read(fp, bend, readsize);
8124                     if (morebytesread <= 0) {
8125                         /* we're done, if we still have incomplete
8126                            characters the check code in sv_gets() will
8127                            warn about them.
8128
8129                            I'd originally considered doing
8130                            PerlIO_ungetc() on all but the lead
8131                            character of the incomplete character, but
8132                            read() doesn't do that, so I don't.
8133                         */
8134                         break;
8135                     }
8136
8137                     /* prepare to scan some more */
8138                     bytesread += morebytesread;
8139                     bend = buffer + bytesread;
8140                     bufp = buffer + bufp_offset;
8141                 }
8142             }
8143         }
8144     }
8145
8146     if (bytesread < 0)
8147         bytesread = 0;
8148     SvCUR_set(sv, bytesread + append);
8149     buffer[bytesread] = '\0';
8150     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8151 }
8152
8153 /*
8154 =for apidoc sv_gets
8155
8156 Get a line from the filehandle and store it into the SV, optionally
8157 appending to the currently-stored string.  If C<append> is not 0, the
8158 line is appended to the SV instead of overwriting it.  C<append> should
8159 be set to the byte offset that the appended string should start at
8160 in the SV (typically, C<SvCUR(sv)> is a suitable choice).
8161
8162 =cut
8163 */
8164
8165 char *
8166 Perl_sv_gets(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8167 {
8168     const char *rsptr;
8169     STRLEN rslen;
8170     STDCHAR rslast;
8171     STDCHAR *bp;
8172     SSize_t cnt;
8173     int i = 0;
8174     int rspara = 0;
8175
8176     PERL_ARGS_ASSERT_SV_GETS;
8177
8178     if (SvTHINKFIRST(sv))
8179         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
8180     /* XXX. If you make this PVIV, then copy on write can copy scalars read
8181        from <>.
8182        However, perlbench says it's slower, because the existing swipe code
8183        is faster than copy on write.
8184        Swings and roundabouts.  */
8185     SvUPGRADE(sv, SVt_PV);
8186
8187     if (append) {
8188         /* line is going to be appended to the existing buffer in the sv */
8189         if (PerlIO_isutf8(fp)) {
8190             if (!SvUTF8(sv)) {
8191                 sv_utf8_upgrade_nomg(sv);
8192                 sv_pos_u2b(sv,&append,0);
8193             }
8194         } else if (SvUTF8(sv)) {
8195             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
8196         }
8197     }
8198
8199     SvPOK_only(sv);
8200     if (!append) {
8201         /* not appending - "clear" the string by setting SvCUR to 0,
8202          * the pv is still avaiable. */
8203         SvCUR_set(sv,0);
8204     }
8205     if (PerlIO_isutf8(fp))
8206         SvUTF8_on(sv);
8207
8208     if (IN_PERL_COMPILETIME) {
8209         /* we always read code in line mode */
8210         rsptr = "\n";
8211         rslen = 1;
8212     }
8213     else if (RsSNARF(PL_rs)) {
8214         /* If it is a regular disk file use size from stat() as estimate
8215            of amount we are going to read -- may result in mallocing
8216            more memory than we really need if the layers below reduce
8217            the size we read (e.g. CRLF or a gzip layer).
8218          */
8219         Stat_t st;
8220         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
8221             const Off_t offset = PerlIO_tell(fp);
8222             if (offset != (Off_t) -1 && st.st_size + append > offset) {
8223 #ifdef PERL_NEW_COPY_ON_WRITE
8224                 /* Add an extra byte for the sake of copy-on-write's
8225                  * buffer reference count. */
8226                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 2));
8227 #else
8228                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
8229 #endif
8230             }
8231         }
8232         rsptr = NULL;
8233         rslen = 0;
8234     }
8235     else if (RsRECORD(PL_rs)) {
8236         return S_sv_gets_read_record(aTHX_ sv, fp, append);
8237     }
8238     else if (RsPARA(PL_rs)) {
8239         rsptr = "\n\n";
8240         rslen = 2;
8241         rspara = 1;
8242     }
8243     else {
8244         /* Get $/ i.e. PL_rs into same encoding as stream wants */
8245         if (PerlIO_isutf8(fp)) {
8246             rsptr = SvPVutf8(PL_rs, rslen);
8247         }
8248         else {
8249             if (SvUTF8(PL_rs)) {
8250                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
8251                     Perl_croak(aTHX_ "Wide character in $/");
8252                 }
8253             }
8254             /* extract the raw pointer to the record separator */
8255             rsptr = SvPV_const(PL_rs, rslen);
8256         }
8257     }
8258
8259     /* rslast is the last character in the record separator
8260      * note we don't use rslast except when rslen is true, so the
8261      * null assign is a placeholder. */
8262     rslast = rslen ? rsptr[rslen - 1] : '\0';
8263
8264     if (rspara) {               /* have to do this both before and after */
8265         do {                    /* to make sure file boundaries work right */
8266             if (PerlIO_eof(fp))
8267                 return 0;
8268             i = PerlIO_getc(fp);
8269             if (i != '\n') {
8270                 if (i == -1)
8271                     return 0;
8272                 PerlIO_ungetc(fp,i);
8273                 break;
8274             }
8275         } while (i != EOF);
8276     }
8277
8278     /* See if we know enough about I/O mechanism to cheat it ! */
8279
8280     /* This used to be #ifdef test - it is made run-time test for ease
8281        of abstracting out stdio interface. One call should be cheap
8282        enough here - and may even be a macro allowing compile
8283        time optimization.
8284      */
8285
8286     if (PerlIO_fast_gets(fp)) {
8287     /*
8288      * We can do buffer based IO operations on this filehandle.
8289      *
8290      * This means we can bypass a lot of subcalls and process
8291      * the buffer directly, it also means we know the upper bound
8292      * on the amount of data we might read of the current buffer
8293      * into our sv. Knowing this allows us to preallocate the pv
8294      * to be able to hold that maximum, which allows us to simplify
8295      * a lot of logic. */
8296
8297     /*
8298      * We're going to steal some values from the stdio struct
8299      * and put EVERYTHING in the innermost loop into registers.
8300      */
8301     STDCHAR *ptr;       /* pointer into fp's read-ahead buffer */
8302     STRLEN bpx;         /* length of the data in the target sv
8303                            used to fix pointers after a SvGROW */
8304     I32 shortbuffered;  /* If the pv buffer is shorter than the amount
8305                            of data left in the read-ahead buffer.
8306                            If 0 then the pv buffer can hold the full
8307                            amount left, otherwise this is the amount it
8308                            can hold. */
8309
8310 #if defined(__VMS) && defined(PERLIO_IS_STDIO)
8311     /* An ungetc()d char is handled separately from the regular
8312      * buffer, so we getc() it back out and stuff it in the buffer.
8313      */
8314     i = PerlIO_getc(fp);
8315     if (i == EOF) return 0;
8316     *(--((*fp)->_ptr)) = (unsigned char) i;
8317     (*fp)->_cnt++;
8318 #endif
8319
8320     /* Here is some breathtakingly efficient cheating */
8321
8322     /* When you read the following logic resist the urge to think
8323      * of record separators that are 1 byte long. They are an
8324      * uninteresting special (simple) case.
8325      *
8326      * Instead think of record separators which are at least 2 bytes
8327      * long, and keep in mind that we need to deal with such
8328      * separators when they cross a read-ahead buffer boundary.
8329      *
8330      * Also consider that we need to gracefully deal with separators
8331      * that may be longer than a single read ahead buffer.
8332      *
8333      * Lastly do not forget we want to copy the delimiter as well. We
8334      * are copying all data in the file _up_to_and_including_ the separator
8335      * itself.
8336      *
8337      * Now that you have all that in mind here is what is happening below:
8338      *
8339      * 1. When we first enter the loop we do some memory book keeping to see
8340      * how much free space there is in the target SV. (This sub assumes that
8341      * it is operating on the same SV most of the time via $_ and that it is
8342      * going to be able to reuse the same pv buffer each call.) If there is
8343      * "enough" room then we set "shortbuffered" to how much space there is
8344      * and start reading forward.
8345      *
8346      * 2. When we scan forward we copy from the read-ahead buffer to the target
8347      * SV's pv buffer. While we go we watch for the end of the read-ahead buffer,
8348      * and the end of the of pv, as well as for the "rslast", which is the last
8349      * char of the separator.
8350      *
8351      * 3. When scanning forward if we see rslast then we jump backwards in *pv*
8352      * (which has a "complete" record up to the point we saw rslast) and check
8353      * it to see if it matches the separator. If it does we are done. If it doesn't
8354      * we continue on with the scan/copy.
8355      *
8356      * 4. If we run out of read-ahead buffer (cnt goes to 0) then we have to get
8357      * the IO system to read the next buffer. We do this by doing a getc(), which
8358      * returns a single char read (or EOF), and prefills the buffer, and also
8359      * allows us to find out how full the buffer is.  We use this information to
8360      * SvGROW() the sv to the size remaining in the buffer, after which we copy
8361      * the returned single char into the target sv, and then go back into scan
8362      * forward mode.
8363      *
8364      * 5. If we run out of write-buffer then we SvGROW() it by the size of the
8365      * remaining space in the read-buffer.
8366      *
8367      * Note that this code despite its twisty-turny nature is pretty darn slick.
8368      * It manages single byte separators, multi-byte cross boundary separators,
8369      * and cross-read-buffer separators cleanly and efficiently at the cost
8370      * of potentially greatly overallocating the target SV.
8371      *
8372      * Yves
8373      */
8374
8375
8376     /* get the number of bytes remaining in the read-ahead buffer
8377      * on first call on a given fp this will return 0.*/
8378     cnt = PerlIO_get_cnt(fp);
8379
8380     /* make sure we have the room */
8381     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
8382         /* Not room for all of it
8383            if we are looking for a separator and room for some
8384          */
8385         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
8386             /* just process what we have room for */
8387             shortbuffered = cnt - SvLEN(sv) + append + 1;
8388             cnt -= shortbuffered;
8389         }
8390         else {
8391             /* ensure that the target sv has enough room to hold
8392              * the rest of the read-ahead buffer */
8393             shortbuffered = 0;
8394             /* remember that cnt can be negative */
8395             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
8396         }
8397     }
8398     else {
8399         /* we have enough room to hold the full buffer, lets scream */
8400         shortbuffered = 0;
8401     }
8402
8403     /* extract the pointer to sv's string buffer, offset by append as necessary */
8404     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
8405     /* extract the point to the read-ahead buffer */
8406     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
8407
8408     /* some trace debug output */
8409     DEBUG_P(PerlIO_printf(Perl_debug_log,
8410         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
8411     DEBUG_P(PerlIO_printf(Perl_debug_log,
8412         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%"IVdf", base=%"
8413          UVuf"\n",
8414                PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8415                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
8416
8417     for (;;) {
8418       screamer:
8419         /* if there is stuff left in the read-ahead buffer */
8420         if (cnt > 0) {
8421             /* if there is a separator */
8422             if (rslen) {
8423                 /* loop until we hit the end of the read-ahead buffer */
8424                 while (cnt > 0) {                    /* this     |  eat */
8425                     /* scan forward copying and searching for rslast as we go */
8426                     cnt--;
8427                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
8428                         goto thats_all_folks;        /* screams  |  sed :-) */
8429                 }
8430             }
8431             else {
8432                 /* no separator, slurp the full buffer */
8433                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
8434                 bp += cnt;                           /* screams  |  dust */
8435                 ptr += cnt;                          /* louder   |  sed :-) */
8436                 cnt = 0;
8437                 assert (!shortbuffered);
8438                 goto cannot_be_shortbuffered;
8439             }
8440         }
8441         
8442         if (shortbuffered) {            /* oh well, must extend */
8443             /* we didnt have enough room to fit the line into the target buffer
8444              * so we must extend the target buffer and keep going */
8445             cnt = shortbuffered;
8446             shortbuffered = 0;
8447             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
8448             SvCUR_set(sv, bpx);
8449             /* extned the target sv's buffer so it can hold the full read-ahead buffer */
8450             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
8451             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
8452             continue;
8453         }
8454
8455     cannot_be_shortbuffered:
8456         /* we need to refill the read-ahead buffer if possible */
8457
8458         DEBUG_P(PerlIO_printf(Perl_debug_log,
8459                              "Screamer: going to getc, ptr=%"UVuf", cnt=%"IVdf"\n",
8460                               PTR2UV(ptr),(IV)cnt));
8461         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
8462
8463         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8464            "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%"IVdf", base=%"UVuf"\n",
8465             PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8466             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8467
8468         /*
8469             call PerlIO_getc() to let it prefill the lookahead buffer
8470
8471             This used to call 'filbuf' in stdio form, but as that behaves like
8472             getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
8473             another abstraction.
8474
8475             Note we have to deal with the char in 'i' if we are not at EOF
8476         */
8477         i   = PerlIO_getc(fp);          /* get more characters */
8478
8479         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8480            "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%"IVdf", base=%"UVuf"\n",
8481             PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8482             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8483
8484         /* find out how much is left in the read-ahead buffer, and rextract its pointer */
8485         cnt = PerlIO_get_cnt(fp);
8486         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
8487         DEBUG_P(PerlIO_printf(Perl_debug_log,
8488             "Screamer: after getc, ptr=%"UVuf", cnt=%"IVdf"\n",
8489             PTR2UV(ptr),(IV)cnt));
8490
8491         if (i == EOF)                   /* all done for ever? */
8492             goto thats_really_all_folks;
8493
8494         /* make sure we have enough space in the target sv */
8495         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
8496         SvCUR_set(sv, bpx);
8497         SvGROW(sv, bpx + cnt + 2);
8498         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
8499
8500         /* copy of the char we got from getc() */
8501         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
8502
8503         /* make sure we deal with the i being the last character of a separator */
8504         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
8505             goto thats_all_folks;
8506     }
8507
8508 thats_all_folks:
8509     /* check if we have actually found the separator - only really applies
8510      * when rslen > 1 */
8511     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
8512           memNE((char*)bp - rslen, rsptr, rslen))
8513         goto screamer;                          /* go back to the fray */
8514 thats_really_all_folks:
8515     if (shortbuffered)
8516         cnt += shortbuffered;
8517         DEBUG_P(PerlIO_printf(Perl_debug_log,
8518              "Screamer: quitting, ptr=%"UVuf", cnt=%"IVdf"\n",PTR2UV(ptr),(IV)cnt));
8519     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
8520     DEBUG_P(PerlIO_printf(Perl_debug_log,
8521         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%"IVdf", base=%"UVuf
8522         "\n",
8523         PTR2UV(PerlIO_get_ptr(fp)), (IV)PerlIO_get_cnt(fp),
8524         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8525     *bp = '\0';
8526     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
8527     DEBUG_P(PerlIO_printf(Perl_debug_log,
8528         "Screamer: done, len=%ld, string=|%.*s|\n",
8529         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
8530     }
8531    else
8532     {
8533        /*The big, slow, and stupid way. */
8534 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
8535         STDCHAR *buf = NULL;
8536         Newx(buf, 8192, STDCHAR);
8537         assert(buf);
8538 #else
8539         STDCHAR buf[8192];
8540 #endif
8541
8542 screamer2:
8543         if (rslen) {
8544             const STDCHAR * const bpe = buf + sizeof(buf);
8545             bp = buf;
8546             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
8547                 ; /* keep reading */
8548             cnt = bp - buf;
8549         }
8550         else {
8551             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
8552             /* Accommodate broken VAXC compiler, which applies U8 cast to
8553              * both args of ?: operator, causing EOF to change into 255
8554              */
8555             if (cnt > 0)
8556                  i = (U8)buf[cnt - 1];
8557             else
8558                  i = EOF;
8559         }
8560
8561         if (cnt < 0)
8562             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
8563         if (append)
8564             sv_catpvn_nomg(sv, (char *) buf, cnt);
8565         else
8566             sv_setpvn(sv, (char *) buf, cnt);   /* "nomg" is implied */
8567
8568         if (i != EOF &&                 /* joy */
8569             (!rslen ||
8570              SvCUR(sv) < rslen ||
8571              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
8572         {
8573             append = -1;
8574             /*
8575              * If we're reading from a TTY and we get a short read,
8576              * indicating that the user hit his EOF character, we need
8577              * to notice it now, because if we try to read from the TTY
8578              * again, the EOF condition will disappear.
8579              *
8580              * The comparison of cnt to sizeof(buf) is an optimization
8581              * that prevents unnecessary calls to feof().
8582              *
8583              * - jik 9/25/96
8584              */
8585             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
8586                 goto screamer2;
8587         }
8588
8589 #ifdef USE_HEAP_INSTEAD_OF_STACK
8590         Safefree(buf);
8591 #endif
8592     }
8593
8594     if (rspara) {               /* have to do this both before and after */
8595         while (i != EOF) {      /* to make sure file boundaries work right */
8596             i = PerlIO_getc(fp);
8597             if (i != '\n') {
8598                 PerlIO_ungetc(fp,i);
8599                 break;
8600             }
8601         }
8602     }
8603
8604     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8605 }
8606
8607 /*
8608 =for apidoc sv_inc
8609
8610 Auto-increment of the value in the SV, doing string to numeric conversion
8611 if necessary.  Handles 'get' magic and operator overloading.
8612
8613 =cut
8614 */
8615
8616 void
8617 Perl_sv_inc(pTHX_ SV *const sv)
8618 {
8619     if (!sv)
8620         return;
8621     SvGETMAGIC(sv);
8622     sv_inc_nomg(sv);
8623 }
8624
8625 /*
8626 =for apidoc sv_inc_nomg
8627
8628 Auto-increment of the value in the SV, doing string to numeric conversion
8629 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8630
8631 =cut
8632 */
8633
8634 void
8635 Perl_sv_inc_nomg(pTHX_ SV *const sv)
8636 {
8637     char *d;
8638     int flags;
8639
8640     if (!sv)
8641         return;
8642     if (SvTHINKFIRST(sv)) {
8643         if (SvREADONLY(sv)) {
8644                 Perl_croak_no_modify();
8645         }
8646         if (SvROK(sv)) {
8647             IV i;
8648             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
8649                 return;
8650             i = PTR2IV(SvRV(sv));
8651             sv_unref(sv);
8652             sv_setiv(sv, i);
8653         }
8654         else sv_force_normal_flags(sv, 0);
8655     }
8656     flags = SvFLAGS(sv);
8657     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
8658         /* It's (privately or publicly) a float, but not tested as an
8659            integer, so test it to see. */
8660         (void) SvIV(sv);
8661         flags = SvFLAGS(sv);
8662     }
8663     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8664         /* It's publicly an integer, or privately an integer-not-float */
8665 #ifdef PERL_PRESERVE_IVUV
8666       oops_its_int:
8667 #endif
8668         if (SvIsUV(sv)) {
8669             if (SvUVX(sv) == UV_MAX)
8670                 sv_setnv(sv, UV_MAX_P1);
8671             else
8672                 (void)SvIOK_only_UV(sv);
8673                 SvUV_set(sv, SvUVX(sv) + 1);
8674         } else {
8675             if (SvIVX(sv) == IV_MAX)
8676                 sv_setuv(sv, (UV)IV_MAX + 1);
8677             else {
8678                 (void)SvIOK_only(sv);
8679                 SvIV_set(sv, SvIVX(sv) + 1);
8680             }   
8681         }
8682         return;
8683     }
8684     if (flags & SVp_NOK) {
8685         const NV was = SvNVX(sv);
8686         if (LIKELY(!Perl_isinfnan(was)) &&
8687             NV_OVERFLOWS_INTEGERS_AT &&
8688             was >= NV_OVERFLOWS_INTEGERS_AT) {
8689             /* diag_listed_as: Lost precision when %s %f by 1 */
8690             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8691                            "Lost precision when incrementing %" NVff " by 1",
8692                            was);
8693         }
8694         (void)SvNOK_only(sv);
8695         SvNV_set(sv, was + 1.0);
8696         return;
8697     }
8698
8699     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
8700         if ((flags & SVTYPEMASK) < SVt_PVIV)
8701             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
8702         (void)SvIOK_only(sv);
8703         SvIV_set(sv, 1);
8704         return;
8705     }
8706     d = SvPVX(sv);
8707     while (isALPHA(*d)) d++;
8708     while (isDIGIT(*d)) d++;
8709     if (d < SvEND(sv)) {
8710         const int numtype = grok_number_flags(SvPVX_const(sv), SvCUR(sv), NULL, PERL_SCAN_TRAILING);
8711 #ifdef PERL_PRESERVE_IVUV
8712         /* Got to punt this as an integer if needs be, but we don't issue
8713            warnings. Probably ought to make the sv_iv_please() that does
8714            the conversion if possible, and silently.  */
8715         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8716             /* Need to try really hard to see if it's an integer.
8717                9.22337203685478e+18 is an integer.
8718                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8719                so $a="9.22337203685478e+18"; $a+0; $a++
8720                needs to be the same as $a="9.22337203685478e+18"; $a++
8721                or we go insane. */
8722         
8723             (void) sv_2iv(sv);
8724             if (SvIOK(sv))
8725                 goto oops_its_int;
8726
8727             /* sv_2iv *should* have made this an NV */
8728             if (flags & SVp_NOK) {
8729                 (void)SvNOK_only(sv);
8730                 SvNV_set(sv, SvNVX(sv) + 1.0);
8731                 return;
8732             }
8733             /* I don't think we can get here. Maybe I should assert this
8734                And if we do get here I suspect that sv_setnv will croak. NWC
8735                Fall through. */
8736             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8737                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8738         }
8739 #endif /* PERL_PRESERVE_IVUV */
8740         if (!numtype && ckWARN(WARN_NUMERIC))
8741             not_incrementable(sv);
8742         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
8743         return;
8744     }
8745     d--;
8746     while (d >= SvPVX_const(sv)) {
8747         if (isDIGIT(*d)) {
8748             if (++*d <= '9')
8749                 return;
8750             *(d--) = '0';
8751         }
8752         else {
8753 #ifdef EBCDIC
8754             /* MKS: The original code here died if letters weren't consecutive.
8755              * at least it didn't have to worry about non-C locales.  The
8756              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
8757              * arranged in order (although not consecutively) and that only
8758              * [A-Za-z] are accepted by isALPHA in the C locale.
8759              */
8760             if (isALPHA_FOLD_NE(*d, 'z')) {
8761                 do { ++*d; } while (!isALPHA(*d));
8762                 return;
8763             }
8764             *(d--) -= 'z' - 'a';
8765 #else
8766             ++*d;
8767             if (isALPHA(*d))
8768                 return;
8769             *(d--) -= 'z' - 'a' + 1;
8770 #endif
8771         }
8772     }
8773     /* oh,oh, the number grew */
8774     SvGROW(sv, SvCUR(sv) + 2);
8775     SvCUR_set(sv, SvCUR(sv) + 1);
8776     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
8777         *d = d[-1];
8778     if (isDIGIT(d[1]))
8779         *d = '1';
8780     else
8781         *d = d[1];
8782 }
8783
8784 /*
8785 =for apidoc sv_dec
8786
8787 Auto-decrement of the value in the SV, doing string to numeric conversion
8788 if necessary.  Handles 'get' magic and operator overloading.
8789
8790 =cut
8791 */
8792
8793 void
8794 Perl_sv_dec(pTHX_ SV *const sv)
8795 {
8796     if (!sv)
8797         return;
8798     SvGETMAGIC(sv);
8799     sv_dec_nomg(sv);
8800 }
8801
8802 /*
8803 =for apidoc sv_dec_nomg
8804
8805 Auto-decrement of the value in the SV, doing string to numeric conversion
8806 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8807
8808 =cut
8809 */
8810
8811 void
8812 Perl_sv_dec_nomg(pTHX_ SV *const sv)
8813 {
8814     int flags;
8815
8816     if (!sv)
8817         return;
8818     if (SvTHINKFIRST(sv)) {
8819         if (SvREADONLY(sv)) {
8820                 Perl_croak_no_modify();
8821         }
8822         if (SvROK(sv)) {
8823             IV i;
8824             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
8825                 return;
8826             i = PTR2IV(SvRV(sv));
8827             sv_unref(sv);
8828             sv_setiv(sv, i);
8829         }
8830         else sv_force_normal_flags(sv, 0);
8831     }
8832     /* Unlike sv_inc we don't have to worry about string-never-numbers
8833        and keeping them magic. But we mustn't warn on punting */
8834     flags = SvFLAGS(sv);
8835     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8836         /* It's publicly an integer, or privately an integer-not-float */
8837 #ifdef PERL_PRESERVE_IVUV
8838       oops_its_int:
8839 #endif
8840         if (SvIsUV(sv)) {
8841             if (SvUVX(sv) == 0) {
8842                 (void)SvIOK_only(sv);
8843                 SvIV_set(sv, -1);
8844             }
8845             else {
8846                 (void)SvIOK_only_UV(sv);
8847                 SvUV_set(sv, SvUVX(sv) - 1);
8848             }   
8849         } else {
8850             if (SvIVX(sv) == IV_MIN) {
8851                 sv_setnv(sv, (NV)IV_MIN);
8852                 goto oops_its_num;
8853             }
8854             else {
8855                 (void)SvIOK_only(sv);
8856                 SvIV_set(sv, SvIVX(sv) - 1);
8857             }   
8858         }
8859         return;
8860     }
8861     if (flags & SVp_NOK) {
8862     oops_its_num:
8863         {
8864             const NV was = SvNVX(sv);
8865             if (LIKELY(!Perl_isinfnan(was)) &&
8866                 NV_OVERFLOWS_INTEGERS_AT &&
8867                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
8868                 /* diag_listed_as: Lost precision when %s %f by 1 */
8869                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8870                                "Lost precision when decrementing %" NVff " by 1",
8871                                was);
8872             }
8873             (void)SvNOK_only(sv);
8874             SvNV_set(sv, was - 1.0);
8875             return;
8876         }
8877     }
8878     if (!(flags & SVp_POK)) {
8879         if ((flags & SVTYPEMASK) < SVt_PVIV)
8880             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
8881         SvIV_set(sv, -1);
8882         (void)SvIOK_only(sv);
8883         return;
8884     }
8885 #ifdef PERL_PRESERVE_IVUV
8886     {
8887         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8888         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8889             /* Need to try really hard to see if it's an integer.
8890                9.22337203685478e+18 is an integer.
8891                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8892                so $a="9.22337203685478e+18"; $a+0; $a--
8893                needs to be the same as $a="9.22337203685478e+18"; $a--
8894                or we go insane. */
8895         
8896             (void) sv_2iv(sv);
8897             if (SvIOK(sv))
8898                 goto oops_its_int;
8899
8900             /* sv_2iv *should* have made this an NV */
8901             if (flags & SVp_NOK) {
8902                 (void)SvNOK_only(sv);
8903                 SvNV_set(sv, SvNVX(sv) - 1.0);
8904                 return;
8905             }
8906             /* I don't think we can get here. Maybe I should assert this
8907                And if we do get here I suspect that sv_setnv will croak. NWC
8908                Fall through. */
8909             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8910                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8911         }
8912     }
8913 #endif /* PERL_PRESERVE_IVUV */
8914     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
8915 }
8916
8917 /* this define is used to eliminate a chunk of duplicated but shared logic
8918  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
8919  * used anywhere but here - yves
8920  */
8921 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
8922     STMT_START {      \
8923         SSize_t ix = ++PL_tmps_ix;              \
8924         if (UNLIKELY(ix >= PL_tmps_max))        \
8925             ix = tmps_grow_p(ix);                       \
8926         PL_tmps_stack[ix] = (AnSv); \
8927     } STMT_END
8928
8929 /*
8930 =for apidoc sv_mortalcopy
8931
8932 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
8933 The new SV is marked as mortal.  It will be destroyed "soon", either by an
8934 explicit call to FREETMPS, or by an implicit call at places such as
8935 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
8936
8937 =cut
8938 */
8939
8940 /* Make a string that will exist for the duration of the expression
8941  * evaluation.  Actually, it may have to last longer than that, but
8942  * hopefully we won't free it until it has been assigned to a
8943  * permanent location. */
8944
8945 SV *
8946 Perl_sv_mortalcopy_flags(pTHX_ SV *const oldstr, U32 flags)
8947 {
8948     SV *sv;
8949
8950     if (flags & SV_GMAGIC)
8951         SvGETMAGIC(oldstr); /* before new_SV, in case it dies */
8952     new_SV(sv);
8953     sv_setsv_flags(sv,oldstr,flags & ~SV_GMAGIC);
8954     PUSH_EXTEND_MORTAL__SV_C(sv);
8955     SvTEMP_on(sv);
8956     return sv;
8957 }
8958
8959 /*
8960 =for apidoc sv_newmortal
8961
8962 Creates a new null SV which is mortal.  The reference count of the SV is
8963 set to 1.  It will be destroyed "soon", either by an explicit call to
8964 FREETMPS, or by an implicit call at places such as statement boundaries.
8965 See also C<sv_mortalcopy> and C<sv_2mortal>.
8966
8967 =cut
8968 */
8969
8970 SV *
8971 Perl_sv_newmortal(pTHX)
8972 {
8973     SV *sv;
8974
8975     new_SV(sv);
8976     SvFLAGS(sv) = SVs_TEMP;
8977     PUSH_EXTEND_MORTAL__SV_C(sv);
8978     return sv;
8979 }
8980
8981
8982 /*
8983 =for apidoc newSVpvn_flags
8984
8985 Creates a new SV and copies a string (which may contain C<NUL> (C<\0>)
8986 characters) into it.  The reference count for the
8987 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8988 string.  You are responsible for ensuring that the source string is at least
8989 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8990 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
8991 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
8992 returning.  If C<SVf_UTF8> is set, C<s>
8993 is considered to be in UTF-8 and the
8994 C<SVf_UTF8> flag will be set on the new SV.
8995 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
8996
8997     #define newSVpvn_utf8(s, len, u)                    \
8998         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
8999
9000 =cut
9001 */
9002
9003 SV *
9004 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
9005 {
9006     SV *sv;
9007
9008     /* All the flags we don't support must be zero.
9009        And we're new code so I'm going to assert this from the start.  */
9010     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
9011     new_SV(sv);
9012     sv_setpvn(sv,s,len);
9013
9014     /* This code used to do a sv_2mortal(), however we now unroll the call to
9015      * sv_2mortal() and do what it does ourselves here.  Since we have asserted
9016      * that flags can only have the SVf_UTF8 and/or SVs_TEMP flags set above we
9017      * can use it to enable the sv flags directly (bypassing SvTEMP_on), which
9018      * in turn means we dont need to mask out the SVf_UTF8 flag below, which
9019      * means that we eliminate quite a few steps than it looks - Yves
9020      * (explaining patch by gfx) */
9021
9022     SvFLAGS(sv) |= flags;
9023
9024     if(flags & SVs_TEMP){
9025         PUSH_EXTEND_MORTAL__SV_C(sv);
9026     }
9027
9028     return sv;
9029 }
9030
9031 /*
9032 =for apidoc sv_2mortal
9033
9034 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
9035 by an explicit call to FREETMPS, or by an implicit call at places such as
9036 statement boundaries.  SvTEMP() is turned on which means that the SV's
9037 string buffer can be "stolen" if this SV is copied.  See also C<sv_newmortal>
9038 and C<sv_mortalcopy>.
9039
9040 =cut
9041 */
9042
9043 SV *
9044 Perl_sv_2mortal(pTHX_ SV *const sv)
9045 {
9046     dVAR;
9047     if (!sv)
9048         return sv;
9049     if (SvIMMORTAL(sv))
9050         return sv;
9051     PUSH_EXTEND_MORTAL__SV_C(sv);
9052     SvTEMP_on(sv);
9053     return sv;
9054 }
9055
9056 /*
9057 =for apidoc newSVpv
9058
9059 Creates a new SV and copies a string (which may contain C<NUL> (C<\0>)
9060 characters) into it.  The reference count for the
9061 SV is set to 1.  If C<len> is zero, Perl will compute the length using
9062 strlen(), (which means if you use this option, that C<s> can't have embedded
9063 C<NUL> characters and has to have a terminating C<NUL> byte).
9064
9065 For efficiency, consider using C<newSVpvn> instead.
9066
9067 =cut
9068 */
9069
9070 SV *
9071 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
9072 {
9073     SV *sv;
9074
9075     new_SV(sv);
9076     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
9077     return sv;
9078 }
9079
9080 /*
9081 =for apidoc newSVpvn
9082
9083 Creates a new SV and copies a string into it, which may contain C<NUL> characters
9084 (C<\0>) and other binary data.  The reference count for the SV is set to 1.
9085 Note that if C<len> is zero, Perl will create a zero length (Perl) string.  You
9086 are responsible for ensuring that the source buffer is at least
9087 C<len> bytes long.  If the C<buffer> argument is NULL the new SV will be
9088 undefined.
9089
9090 =cut
9091 */
9092
9093 SV *
9094 Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len)
9095 {
9096     SV *sv;
9097     new_SV(sv);
9098     sv_setpvn(sv,buffer,len);
9099     return sv;
9100 }
9101
9102 /*
9103 =for apidoc newSVhek
9104
9105 Creates a new SV from the hash key structure.  It will generate scalars that
9106 point to the shared string table where possible.  Returns a new (undefined)
9107 SV if the hek is NULL.
9108
9109 =cut
9110 */
9111
9112 SV *
9113 Perl_newSVhek(pTHX_ const HEK *const hek)
9114 {
9115     if (!hek) {
9116         SV *sv;
9117
9118         new_SV(sv);
9119         return sv;
9120     }
9121
9122     if (HEK_LEN(hek) == HEf_SVKEY) {
9123         return newSVsv(*(SV**)HEK_KEY(hek));
9124     } else {
9125         const int flags = HEK_FLAGS(hek);
9126         if (flags & HVhek_WASUTF8) {
9127             /* Trouble :-)
9128                Andreas would like keys he put in as utf8 to come back as utf8
9129             */
9130             STRLEN utf8_len = HEK_LEN(hek);
9131             SV * const sv = newSV_type(SVt_PV);
9132             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
9133             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
9134             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
9135             SvUTF8_on (sv);
9136             return sv;
9137         } else if (flags & HVhek_UNSHARED) {
9138             /* A hash that isn't using shared hash keys has to have
9139                the flag in every key so that we know not to try to call
9140                share_hek_hek on it.  */
9141
9142             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
9143             if (HEK_UTF8(hek))
9144                 SvUTF8_on (sv);
9145             return sv;
9146         }
9147         /* This will be overwhelminly the most common case.  */
9148         {
9149             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
9150                more efficient than sharepvn().  */
9151             SV *sv;
9152
9153             new_SV(sv);
9154             sv_upgrade(sv, SVt_PV);
9155             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
9156             SvCUR_set(sv, HEK_LEN(hek));
9157             SvLEN_set(sv, 0);
9158             SvIsCOW_on(sv);
9159             SvPOK_on(sv);
9160             if (HEK_UTF8(hek))
9161                 SvUTF8_on(sv);
9162             return sv;
9163         }
9164     }
9165 }
9166
9167 /*
9168 =for apidoc newSVpvn_share
9169
9170 Creates a new SV with its SvPVX_const pointing to a shared string in the string
9171 table.  If the string does not already exist in the table, it is
9172 created first.  Turns on the SvIsCOW flag (or READONLY
9173 and FAKE in 5.16 and earlier).  If the C<hash> parameter
9174 is non-zero, that value is used; otherwise the hash is computed.
9175 The string's hash can later be retrieved from the SV
9176 with the C<SvSHARED_HASH()> macro.  The idea here is
9177 that as the string table is used for shared hash keys these strings will have
9178 SvPVX_const == HeKEY and hash lookup will avoid string compare.
9179
9180 =cut
9181 */
9182
9183 SV *
9184 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
9185 {
9186     dVAR;
9187     SV *sv;
9188     bool is_utf8 = FALSE;
9189     const char *const orig_src = src;
9190
9191     if (len < 0) {
9192         STRLEN tmplen = -len;
9193         is_utf8 = TRUE;
9194         /* See the note in hv.c:hv_fetch() --jhi */
9195         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
9196         len = tmplen;
9197     }
9198     if (!hash)
9199         PERL_HASH(hash, src, len);
9200     new_SV(sv);
9201     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
9202        changes here, update it there too.  */
9203     sv_upgrade(sv, SVt_PV);
9204     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
9205     SvCUR_set(sv, len);
9206     SvLEN_set(sv, 0);
9207     SvIsCOW_on(sv);
9208     SvPOK_on(sv);
9209     if (is_utf8)
9210         SvUTF8_on(sv);
9211     if (src != orig_src)
9212         Safefree(src);
9213     return sv;
9214 }
9215
9216 /*
9217 =for apidoc newSVpv_share
9218
9219 Like C<newSVpvn_share>, but takes a C<NUL>-terminated string instead of a
9220 string/length pair.
9221
9222 =cut
9223 */
9224
9225 SV *
9226 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
9227 {
9228     return newSVpvn_share(src, strlen(src), hash);
9229 }
9230
9231 #if defined(PERL_IMPLICIT_CONTEXT)
9232
9233 /* pTHX_ magic can't cope with varargs, so this is a no-context
9234  * version of the main function, (which may itself be aliased to us).
9235  * Don't access this version directly.
9236  */
9237
9238 SV *
9239 Perl_newSVpvf_nocontext(const char *const pat, ...)
9240 {
9241     dTHX;
9242     SV *sv;
9243     va_list args;
9244
9245     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
9246
9247     va_start(args, pat);
9248     sv = vnewSVpvf(pat, &args);
9249     va_end(args);
9250     return sv;
9251 }
9252 #endif
9253
9254 /*
9255 =for apidoc newSVpvf
9256
9257 Creates a new SV and initializes it with the string formatted like
9258 C<sprintf>.
9259
9260 =cut
9261 */
9262
9263 SV *
9264 Perl_newSVpvf(pTHX_ const char *const pat, ...)
9265 {
9266     SV *sv;
9267     va_list args;
9268
9269     PERL_ARGS_ASSERT_NEWSVPVF;
9270
9271     va_start(args, pat);
9272     sv = vnewSVpvf(pat, &args);
9273     va_end(args);
9274     return sv;
9275 }
9276
9277 /* backend for newSVpvf() and newSVpvf_nocontext() */
9278
9279 SV *
9280 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
9281 {
9282     SV *sv;
9283
9284     PERL_ARGS_ASSERT_VNEWSVPVF;
9285
9286     new_SV(sv);
9287     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9288     return sv;
9289 }
9290
9291 /*
9292 =for apidoc newSVnv
9293
9294 Creates a new SV and copies a floating point value into it.
9295 The reference count for the SV is set to 1.
9296
9297 =cut
9298 */
9299
9300 SV *
9301 Perl_newSVnv(pTHX_ const NV n)
9302 {
9303     SV *sv;
9304
9305     new_SV(sv);
9306     sv_setnv(sv,n);
9307     return sv;
9308 }
9309
9310 /*
9311 =for apidoc newSViv
9312
9313 Creates a new SV and copies an integer into it.  The reference count for the
9314 SV is set to 1.
9315
9316 =cut
9317 */
9318
9319 SV *
9320 Perl_newSViv(pTHX_ const IV i)
9321 {
9322     SV *sv;
9323
9324     new_SV(sv);
9325     sv_setiv(sv,i);
9326     return sv;
9327 }
9328
9329 /*
9330 =for apidoc newSVuv
9331
9332 Creates a new SV and copies an unsigned integer into it.
9333 The reference count for the SV is set to 1.
9334
9335 =cut
9336 */
9337
9338 SV *
9339 Perl_newSVuv(pTHX_ const UV u)
9340 {
9341     SV *sv;
9342
9343     new_SV(sv);
9344     sv_setuv(sv,u);
9345     return sv;
9346 }
9347
9348 /*
9349 =for apidoc newSV_type
9350
9351 Creates a new SV, of the type specified.  The reference count for the new SV
9352 is set to 1.
9353
9354 =cut
9355 */
9356
9357 SV *
9358 Perl_newSV_type(pTHX_ const svtype type)
9359 {
9360     SV *sv;
9361
9362     new_SV(sv);
9363     ASSUME(SvTYPE(sv) == SVt_FIRST);
9364     if(type != SVt_FIRST)
9365         sv_upgrade(sv, type);
9366     return sv;
9367 }
9368
9369 /*
9370 =for apidoc newRV_noinc
9371
9372 Creates an RV wrapper for an SV.  The reference count for the original
9373 SV is B<not> incremented.
9374
9375 =cut
9376 */
9377
9378 SV *
9379 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
9380 {
9381     SV *sv = newSV_type(SVt_IV);
9382
9383     PERL_ARGS_ASSERT_NEWRV_NOINC;
9384
9385     SvTEMP_off(tmpRef);
9386     SvRV_set(sv, tmpRef);
9387     SvROK_on(sv);
9388     return sv;
9389 }
9390
9391 /* newRV_inc is the official function name to use now.
9392  * newRV_inc is in fact #defined to newRV in sv.h
9393  */
9394
9395 SV *
9396 Perl_newRV(pTHX_ SV *const sv)
9397 {
9398     PERL_ARGS_ASSERT_NEWRV;
9399
9400     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
9401 }
9402
9403 /*
9404 =for apidoc newSVsv
9405
9406 Creates a new SV which is an exact duplicate of the original SV.
9407 (Uses C<sv_setsv>.)
9408
9409 =cut
9410 */
9411
9412 SV *
9413 Perl_newSVsv(pTHX_ SV *const old)
9414 {
9415     SV *sv;
9416
9417     if (!old)
9418         return NULL;
9419     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
9420         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
9421         return NULL;
9422     }
9423     /* Do this here, otherwise we leak the new SV if this croaks. */
9424     SvGETMAGIC(old);
9425     new_SV(sv);
9426     /* SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
9427        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
9428     sv_setsv_flags(sv, old, SV_NOSTEAL);
9429     return sv;
9430 }
9431
9432 /*
9433 =for apidoc sv_reset
9434
9435 Underlying implementation for the C<reset> Perl function.
9436 Note that the perl-level function is vaguely deprecated.
9437
9438 =cut
9439 */
9440
9441 void
9442 Perl_sv_reset(pTHX_ const char *s, HV *const stash)
9443 {
9444     PERL_ARGS_ASSERT_SV_RESET;
9445
9446     sv_resetpvn(*s ? s : NULL, strlen(s), stash);
9447 }
9448
9449 void
9450 Perl_sv_resetpvn(pTHX_ const char *s, STRLEN len, HV * const stash)
9451 {
9452     char todo[PERL_UCHAR_MAX+1];
9453     const char *send;
9454
9455     if (!stash || SvTYPE(stash) != SVt_PVHV)
9456         return;
9457
9458     if (!s) {           /* reset ?? searches */
9459         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
9460         if (mg) {
9461             const U32 count = mg->mg_len / sizeof(PMOP**);
9462             PMOP **pmp = (PMOP**) mg->mg_ptr;
9463             PMOP *const *const end = pmp + count;
9464
9465             while (pmp < end) {
9466 #ifdef USE_ITHREADS
9467                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
9468 #else
9469                 (*pmp)->op_pmflags &= ~PMf_USED;
9470 #endif
9471                 ++pmp;
9472             }
9473         }
9474         return;
9475     }
9476
9477     /* reset variables */
9478
9479     if (!HvARRAY(stash))
9480         return;
9481
9482     Zero(todo, 256, char);
9483     send = s + len;
9484     while (s < send) {
9485         I32 max;
9486         I32 i = (unsigned char)*s;
9487         if (s[1] == '-') {
9488             s += 2;
9489         }
9490         max = (unsigned char)*s++;
9491         for ( ; i <= max; i++) {
9492             todo[i] = 1;
9493         }
9494         for (i = 0; i <= (I32) HvMAX(stash); i++) {
9495             HE *entry;
9496             for (entry = HvARRAY(stash)[i];
9497                  entry;
9498                  entry = HeNEXT(entry))
9499             {
9500                 GV *gv;
9501                 SV *sv;
9502
9503                 if (!todo[(U8)*HeKEY(entry)])
9504                     continue;
9505                 gv = MUTABLE_GV(HeVAL(entry));
9506                 sv = GvSV(gv);
9507                 if (sv && !SvREADONLY(sv)) {
9508                     SV_CHECK_THINKFIRST_COW_DROP(sv);
9509                     if (!isGV(sv)) SvOK_off(sv);
9510                 }
9511                 if (GvAV(gv)) {
9512                     av_clear(GvAV(gv));
9513                 }
9514                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
9515                     hv_clear(GvHV(gv));
9516                 }
9517             }
9518         }
9519     }
9520 }
9521
9522 /*
9523 =for apidoc sv_2io
9524
9525 Using various gambits, try to get an IO from an SV: the IO slot if its a
9526 GV; or the recursive result if we're an RV; or the IO slot of the symbol
9527 named after the PV if we're a string.
9528
9529 'Get' magic is ignored on the sv passed in, but will be called on
9530 C<SvRV(sv)> if sv is an RV.
9531
9532 =cut
9533 */
9534
9535 IO*
9536 Perl_sv_2io(pTHX_ SV *const sv)
9537 {
9538     IO* io;
9539     GV* gv;
9540
9541     PERL_ARGS_ASSERT_SV_2IO;
9542
9543     switch (SvTYPE(sv)) {
9544     case SVt_PVIO:
9545         io = MUTABLE_IO(sv);
9546         break;
9547     case SVt_PVGV:
9548     case SVt_PVLV:
9549         if (isGV_with_GP(sv)) {
9550             gv = MUTABLE_GV(sv);
9551             io = GvIO(gv);
9552             if (!io)
9553                 Perl_croak(aTHX_ "Bad filehandle: %"HEKf,
9554                                     HEKfARG(GvNAME_HEK(gv)));
9555             break;
9556         }
9557         /* FALLTHROUGH */
9558     default:
9559         if (!SvOK(sv))
9560             Perl_croak(aTHX_ PL_no_usym, "filehandle");
9561         if (SvROK(sv)) {
9562             SvGETMAGIC(SvRV(sv));
9563             return sv_2io(SvRV(sv));
9564         }
9565         gv = gv_fetchsv_nomg(sv, 0, SVt_PVIO);
9566         if (gv)
9567             io = GvIO(gv);
9568         else
9569             io = 0;
9570         if (!io) {
9571             SV *newsv = sv;
9572             if (SvGMAGICAL(sv)) {
9573                 newsv = sv_newmortal();
9574                 sv_setsv_nomg(newsv, sv);
9575             }
9576             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(newsv));
9577         }
9578         break;
9579     }
9580     return io;
9581 }
9582
9583 /*
9584 =for apidoc sv_2cv
9585
9586 Using various gambits, try to get a CV from an SV; in addition, try if
9587 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
9588 The flags in C<lref> are passed to gv_fetchsv.
9589
9590 =cut
9591 */
9592
9593 CV *
9594 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
9595 {
9596     GV *gv = NULL;
9597     CV *cv = NULL;
9598
9599     PERL_ARGS_ASSERT_SV_2CV;
9600
9601     if (!sv) {
9602         *st = NULL;
9603         *gvp = NULL;
9604         return NULL;
9605     }
9606     switch (SvTYPE(sv)) {
9607     case SVt_PVCV:
9608         *st = CvSTASH(sv);
9609         *gvp = NULL;
9610         return MUTABLE_CV(sv);
9611     case SVt_PVHV:
9612     case SVt_PVAV:
9613         *st = NULL;
9614         *gvp = NULL;
9615         return NULL;
9616     default:
9617         SvGETMAGIC(sv);
9618         if (SvROK(sv)) {
9619             if (SvAMAGIC(sv))
9620                 sv = amagic_deref_call(sv, to_cv_amg);
9621
9622             sv = SvRV(sv);
9623             if (SvTYPE(sv) == SVt_PVCV) {
9624                 cv = MUTABLE_CV(sv);
9625                 *gvp = NULL;
9626                 *st = CvSTASH(cv);
9627                 return cv;
9628             }
9629             else if(SvGETMAGIC(sv), isGV_with_GP(sv))
9630                 gv = MUTABLE_GV(sv);
9631             else
9632                 Perl_croak(aTHX_ "Not a subroutine reference");
9633         }
9634         else if (isGV_with_GP(sv)) {
9635             gv = MUTABLE_GV(sv);
9636         }
9637         else {
9638             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
9639         }
9640         *gvp = gv;
9641         if (!gv) {
9642             *st = NULL;
9643             return NULL;
9644         }
9645         /* Some flags to gv_fetchsv mean don't really create the GV  */
9646         if (!isGV_with_GP(gv)) {
9647             *st = NULL;
9648             return NULL;
9649         }
9650         *st = GvESTASH(gv);
9651         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
9652             /* XXX this is probably not what they think they're getting.
9653              * It has the same effect as "sub name;", i.e. just a forward
9654              * declaration! */
9655             newSTUB(gv,0);
9656         }
9657         return GvCVu(gv);
9658     }
9659 }
9660
9661 /*
9662 =for apidoc sv_true
9663
9664 Returns true if the SV has a true value by Perl's rules.
9665 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
9666 instead use an in-line version.
9667
9668 =cut
9669 */
9670
9671 I32
9672 Perl_sv_true(pTHX_ SV *const sv)
9673 {
9674     if (!sv)
9675         return 0;
9676     if (SvPOK(sv)) {
9677         const XPV* const tXpv = (XPV*)SvANY(sv);
9678         if (tXpv &&
9679                 (tXpv->xpv_cur > 1 ||
9680                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
9681             return 1;
9682         else
9683             return 0;
9684     }
9685     else {
9686         if (SvIOK(sv))
9687             return SvIVX(sv) != 0;
9688         else {
9689             if (SvNOK(sv))
9690                 return SvNVX(sv) != 0.0;
9691             else
9692                 return sv_2bool(sv);
9693         }
9694     }
9695 }
9696
9697 /*
9698 =for apidoc sv_pvn_force
9699
9700 Get a sensible string out of the SV somehow.
9701 A private implementation of the C<SvPV_force> macro for compilers which
9702 can't cope with complex macro expressions.  Always use the macro instead.
9703
9704 =for apidoc sv_pvn_force_flags
9705
9706 Get a sensible string out of the SV somehow.
9707 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
9708 appropriate, else not.  C<sv_pvn_force> and C<sv_pvn_force_nomg> are
9709 implemented in terms of this function.
9710 You normally want to use the various wrapper macros instead: see
9711 C<SvPV_force> and C<SvPV_force_nomg>
9712
9713 =cut
9714 */
9715
9716 char *
9717 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
9718 {
9719     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
9720
9721     if (flags & SV_GMAGIC) SvGETMAGIC(sv);
9722     if (SvTHINKFIRST(sv) && (!SvROK(sv) || SvREADONLY(sv)))
9723         sv_force_normal_flags(sv, 0);
9724
9725     if (SvPOK(sv)) {
9726         if (lp)
9727             *lp = SvCUR(sv);
9728     }
9729     else {
9730         char *s;
9731         STRLEN len;
9732  
9733         if (SvTYPE(sv) > SVt_PVLV
9734             || isGV_with_GP(sv))
9735             /* diag_listed_as: Can't coerce %s to %s in %s */
9736             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
9737                 OP_DESC(PL_op));
9738         s = sv_2pv_flags(sv, &len, flags &~ SV_GMAGIC);
9739         if (!s) {
9740           s = (char *)"";
9741         }
9742         if (lp)
9743             *lp = len;
9744
9745         if (SvTYPE(sv) < SVt_PV ||
9746             s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
9747             if (SvROK(sv))
9748                 sv_unref(sv);
9749             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
9750             SvGROW(sv, len + 1);
9751             Move(s,SvPVX(sv),len,char);
9752             SvCUR_set(sv, len);
9753             SvPVX(sv)[len] = '\0';
9754         }
9755         if (!SvPOK(sv)) {
9756             SvPOK_on(sv);               /* validate pointer */
9757             SvTAINT(sv);
9758             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9759                                   PTR2UV(sv),SvPVX_const(sv)));
9760         }
9761     }
9762     (void)SvPOK_only_UTF8(sv);
9763     return SvPVX_mutable(sv);
9764 }
9765
9766 /*
9767 =for apidoc sv_pvbyten_force
9768
9769 The backend for the C<SvPVbytex_force> macro.  Always use the macro
9770 instead.
9771
9772 =cut
9773 */
9774
9775 char *
9776 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9777 {
9778     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9779
9780     sv_pvn_force(sv,lp);
9781     sv_utf8_downgrade(sv,0);
9782     *lp = SvCUR(sv);
9783     return SvPVX(sv);
9784 }
9785
9786 /*
9787 =for apidoc sv_pvutf8n_force
9788
9789 The backend for the C<SvPVutf8x_force> macro.  Always use the macro
9790 instead.
9791
9792 =cut
9793 */
9794
9795 char *
9796 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9797 {
9798     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9799
9800     sv_pvn_force(sv,0);
9801     sv_utf8_upgrade_nomg(sv);
9802     *lp = SvCUR(sv);
9803     return SvPVX(sv);
9804 }
9805
9806 /*
9807 =for apidoc sv_reftype
9808
9809 Returns a string describing what the SV is a reference to.
9810
9811 =cut
9812 */
9813
9814 const char *
9815 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9816 {
9817     PERL_ARGS_ASSERT_SV_REFTYPE;
9818     if (ob && SvOBJECT(sv)) {
9819         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
9820     }
9821     else {
9822         /* WARNING - There is code, for instance in mg.c, that assumes that
9823          * the only reason that sv_reftype(sv,0) would return a string starting
9824          * with 'L' or 'S' is that it is a LVALUE or a SCALAR.
9825          * Yes this a dodgy way to do type checking, but it saves practically reimplementing
9826          * this routine inside other subs, and it saves time.
9827          * Do not change this assumption without searching for "dodgy type check" in
9828          * the code.
9829          * - Yves */
9830         switch (SvTYPE(sv)) {
9831         case SVt_NULL:
9832         case SVt_IV:
9833         case SVt_NV:
9834         case SVt_PV:
9835         case SVt_PVIV:
9836         case SVt_PVNV:
9837         case SVt_PVMG:
9838                                 if (SvVOK(sv))
9839                                     return "VSTRING";
9840                                 if (SvROK(sv))
9841                                     return "REF";
9842                                 else
9843                                     return "SCALAR";
9844
9845         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9846                                 /* tied lvalues should appear to be
9847                                  * scalars for backwards compatibility */
9848                                 : (isALPHA_FOLD_EQ(LvTYPE(sv), 't'))
9849                                     ? "SCALAR" : "LVALUE");
9850         case SVt_PVAV:          return "ARRAY";
9851         case SVt_PVHV:          return "HASH";
9852         case SVt_PVCV:          return "CODE";
9853         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9854                                     ? "GLOB" : "SCALAR");
9855         case SVt_PVFM:          return "FORMAT";
9856         case SVt_PVIO:          return "IO";
9857         case SVt_INVLIST:       return "INVLIST";
9858         case SVt_REGEXP:        return "REGEXP";
9859         default:                return "UNKNOWN";
9860         }
9861     }
9862 }
9863
9864 /*
9865 =for apidoc sv_ref
9866
9867 Returns a SV describing what the SV passed in is a reference to.
9868
9869 =cut
9870 */
9871
9872 SV *
9873 Perl_sv_ref(pTHX_ SV *dst, const SV *const sv, const int ob)
9874 {
9875     PERL_ARGS_ASSERT_SV_REF;
9876
9877     if (!dst)
9878         dst = sv_newmortal();
9879
9880     if (ob && SvOBJECT(sv)) {
9881         HvNAME_get(SvSTASH(sv))
9882                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
9883                     : sv_setpvn(dst, "__ANON__", 8);
9884     }
9885     else {
9886         const char * reftype = sv_reftype(sv, 0);
9887         sv_setpv(dst, reftype);
9888     }
9889     return dst;
9890 }
9891
9892 /*
9893 =for apidoc sv_isobject
9894
9895 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9896 object.  If the SV is not an RV, or if the object is not blessed, then this
9897 will return false.
9898
9899 =cut
9900 */
9901
9902 int
9903 Perl_sv_isobject(pTHX_ SV *sv)
9904 {
9905     if (!sv)
9906         return 0;
9907     SvGETMAGIC(sv);
9908     if (!SvROK(sv))
9909         return 0;
9910     sv = SvRV(sv);
9911     if (!SvOBJECT(sv))
9912         return 0;
9913     return 1;
9914 }
9915
9916 /*
9917 =for apidoc sv_isa
9918
9919 Returns a boolean indicating whether the SV is blessed into the specified
9920 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9921 an inheritance relationship.
9922
9923 =cut
9924 */
9925
9926 int
9927 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
9928 {
9929     const char *hvname;
9930
9931     PERL_ARGS_ASSERT_SV_ISA;
9932
9933     if (!sv)
9934         return 0;
9935     SvGETMAGIC(sv);
9936     if (!SvROK(sv))
9937         return 0;
9938     sv = SvRV(sv);
9939     if (!SvOBJECT(sv))
9940         return 0;
9941     hvname = HvNAME_get(SvSTASH(sv));
9942     if (!hvname)
9943         return 0;
9944
9945     return strEQ(hvname, name);
9946 }
9947
9948 /*
9949 =for apidoc newSVrv
9950
9951 Creates a new SV for the existing RV, C<rv>, to point to.  If C<rv> is not an
9952 RV then it will be upgraded to one.  If C<classname> is non-null then the new
9953 SV will be blessed in the specified package.  The new SV is returned and its
9954 reference count is 1.  The reference count 1 is owned by C<rv>.
9955
9956 =cut
9957 */
9958
9959 SV*
9960 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
9961 {
9962     SV *sv;
9963
9964     PERL_ARGS_ASSERT_NEWSVRV;
9965
9966     new_SV(sv);
9967
9968     SV_CHECK_THINKFIRST_COW_DROP(rv);
9969
9970     if (SvTYPE(rv) >= SVt_PVMG) {
9971         const U32 refcnt = SvREFCNT(rv);
9972         SvREFCNT(rv) = 0;
9973         sv_clear(rv);
9974         SvFLAGS(rv) = 0;
9975         SvREFCNT(rv) = refcnt;
9976
9977         sv_upgrade(rv, SVt_IV);
9978     } else if (SvROK(rv)) {
9979         SvREFCNT_dec(SvRV(rv));
9980     } else {
9981         prepare_SV_for_RV(rv);
9982     }
9983
9984     SvOK_off(rv);
9985     SvRV_set(rv, sv);
9986     SvROK_on(rv);
9987
9988     if (classname) {
9989         HV* const stash = gv_stashpv(classname, GV_ADD);
9990         (void)sv_bless(rv, stash);
9991     }
9992     return sv;
9993 }
9994
9995 SV *
9996 Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible)
9997 {
9998     SV * const lv = newSV_type(SVt_PVLV);
9999     PERL_ARGS_ASSERT_NEWSVAVDEFELEM;
10000     LvTYPE(lv) = 'y';
10001     sv_magic(lv, NULL, PERL_MAGIC_defelem, NULL, 0);
10002     LvTARG(lv) = SvREFCNT_inc_simple_NN(av);
10003     LvSTARGOFF(lv) = ix;
10004     LvTARGLEN(lv) = extendible ? 1 : (STRLEN)UV_MAX;
10005     return lv;
10006 }
10007
10008 /*
10009 =for apidoc sv_setref_pv
10010
10011 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
10012 argument will be upgraded to an RV.  That RV will be modified to point to
10013 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
10014 into the SV.  The C<classname> argument indicates the package for the
10015 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10016 will have a reference count of 1, and the RV will be returned.
10017
10018 Do not use with other Perl types such as HV, AV, SV, CV, because those
10019 objects will become corrupted by the pointer copy process.
10020
10021 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
10022
10023 =cut
10024 */
10025
10026 SV*
10027 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
10028 {
10029     PERL_ARGS_ASSERT_SV_SETREF_PV;
10030
10031     if (!pv) {
10032         sv_setsv(rv, &PL_sv_undef);
10033         SvSETMAGIC(rv);
10034     }
10035     else
10036         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
10037     return rv;
10038 }
10039
10040 /*
10041 =for apidoc sv_setref_iv
10042
10043 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
10044 argument will be upgraded to an RV.  That RV will be modified to point to
10045 the new SV.  The C<classname> argument indicates the package for the
10046 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10047 will have a reference count of 1, and the RV will be returned.
10048
10049 =cut
10050 */
10051
10052 SV*
10053 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
10054 {
10055     PERL_ARGS_ASSERT_SV_SETREF_IV;
10056
10057     sv_setiv(newSVrv(rv,classname), iv);
10058     return rv;
10059 }
10060
10061 /*
10062 =for apidoc sv_setref_uv
10063
10064 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
10065 argument will be upgraded to an RV.  That RV will be modified to point to
10066 the new SV.  The C<classname> argument indicates the package for the
10067 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10068 will have a reference count of 1, and the RV will be returned.
10069
10070 =cut
10071 */
10072
10073 SV*
10074 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
10075 {
10076     PERL_ARGS_ASSERT_SV_SETREF_UV;
10077
10078     sv_setuv(newSVrv(rv,classname), uv);
10079     return rv;
10080 }
10081
10082 /*
10083 =for apidoc sv_setref_nv
10084
10085 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
10086 argument will be upgraded to an RV.  That RV will be modified to point to
10087 the new SV.  The C<classname> argument indicates the package for the
10088 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
10089 will have a reference count of 1, and the RV will be returned.
10090
10091 =cut
10092 */
10093
10094 SV*
10095 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
10096 {
10097     PERL_ARGS_ASSERT_SV_SETREF_NV;
10098
10099     sv_setnv(newSVrv(rv,classname), nv);
10100     return rv;
10101 }
10102
10103 /*
10104 =for apidoc sv_setref_pvn
10105
10106 Copies a string into a new SV, optionally blessing the SV.  The length of the
10107 string must be specified with C<n>.  The C<rv> argument will be upgraded to
10108 an RV.  That RV will be modified to point to the new SV.  The C<classname>
10109 argument indicates the package for the blessing.  Set C<classname> to
10110 C<NULL> to avoid the blessing.  The new SV will have a reference count
10111 of 1, and the RV will be returned.
10112
10113 Note that C<sv_setref_pv> copies the pointer while this copies the string.
10114
10115 =cut
10116 */
10117
10118 SV*
10119 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
10120                    const char *const pv, const STRLEN n)
10121 {
10122     PERL_ARGS_ASSERT_SV_SETREF_PVN;
10123
10124     sv_setpvn(newSVrv(rv,classname), pv, n);
10125     return rv;
10126 }
10127
10128 /*
10129 =for apidoc sv_bless
10130
10131 Blesses an SV into a specified package.  The SV must be an RV.  The package
10132 must be designated by its stash (see C<gv_stashpv()>).  The reference count
10133 of the SV is unaffected.
10134
10135 =cut
10136 */
10137
10138 SV*
10139 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
10140 {
10141     SV *tmpRef;
10142     HV *oldstash = NULL;
10143
10144     PERL_ARGS_ASSERT_SV_BLESS;
10145
10146     SvGETMAGIC(sv);
10147     if (!SvROK(sv))
10148         Perl_croak(aTHX_ "Can't bless non-reference value");
10149     tmpRef = SvRV(sv);
10150     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY|SVf_PROTECT)) {
10151         if (SvREADONLY(tmpRef))
10152             Perl_croak_no_modify();
10153         if (SvOBJECT(tmpRef)) {
10154             oldstash = SvSTASH(tmpRef);
10155         }
10156     }
10157     SvOBJECT_on(tmpRef);
10158     SvUPGRADE(tmpRef, SVt_PVMG);
10159     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
10160     SvREFCNT_dec(oldstash);
10161
10162     if(SvSMAGICAL(tmpRef))
10163         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
10164             mg_set(tmpRef);
10165
10166
10167
10168     return sv;
10169 }
10170
10171 /* Downgrades a PVGV to a PVMG. If it's actually a PVLV, we leave the type
10172  * as it is after unglobbing it.
10173  */
10174
10175 PERL_STATIC_INLINE void
10176 S_sv_unglob(pTHX_ SV *const sv, U32 flags)
10177 {
10178     void *xpvmg;
10179     HV *stash;
10180     SV * const temp = flags & SV_COW_DROP_PV ? NULL : sv_newmortal();
10181
10182     PERL_ARGS_ASSERT_SV_UNGLOB;
10183
10184     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
10185     SvFAKE_off(sv);
10186     if (!(flags & SV_COW_DROP_PV))
10187         gv_efullname3(temp, MUTABLE_GV(sv), "*");
10188
10189     SvREFCNT_inc_simple_void_NN(sv_2mortal(sv));
10190     if (GvGP(sv)) {
10191         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
10192            && HvNAME_get(stash))
10193             mro_method_changed_in(stash);
10194         gp_free(MUTABLE_GV(sv));
10195     }
10196     if (GvSTASH(sv)) {
10197         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
10198         GvSTASH(sv) = NULL;
10199     }
10200     GvMULTI_off(sv);
10201     if (GvNAME_HEK(sv)) {
10202         unshare_hek(GvNAME_HEK(sv));
10203     }
10204     isGV_with_GP_off(sv);
10205
10206     if(SvTYPE(sv) == SVt_PVGV) {
10207         /* need to keep SvANY(sv) in the right arena */
10208         xpvmg = new_XPVMG();
10209         StructCopy(SvANY(sv), xpvmg, XPVMG);
10210         del_XPVGV(SvANY(sv));
10211         SvANY(sv) = xpvmg;
10212
10213         SvFLAGS(sv) &= ~SVTYPEMASK;
10214         SvFLAGS(sv) |= SVt_PVMG;
10215     }
10216
10217     /* Intentionally not calling any local SET magic, as this isn't so much a
10218        set operation as merely an internal storage change.  */
10219     if (flags & SV_COW_DROP_PV) SvOK_off(sv);
10220     else sv_setsv_flags(sv, temp, 0);
10221
10222     if ((const GV *)sv == PL_last_in_gv)
10223         PL_last_in_gv = NULL;
10224     else if ((const GV *)sv == PL_statgv)
10225         PL_statgv = NULL;
10226 }
10227
10228 /*
10229 =for apidoc sv_unref_flags
10230
10231 Unsets the RV status of the SV, and decrements the reference count of
10232 whatever was being referenced by the RV.  This can almost be thought of
10233 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
10234 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
10235 (otherwise the decrementing is conditional on the reference count being
10236 different from one or the reference being a readonly SV).
10237 See C<SvROK_off>.
10238
10239 =cut
10240 */
10241
10242 void
10243 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
10244 {
10245     SV* const target = SvRV(ref);
10246
10247     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
10248
10249     if (SvWEAKREF(ref)) {
10250         sv_del_backref(target, ref);
10251         SvWEAKREF_off(ref);
10252         SvRV_set(ref, NULL);
10253         return;
10254     }
10255     SvRV_set(ref, NULL);
10256     SvROK_off(ref);
10257     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
10258        assigned to as BEGIN {$a = \"Foo"} will fail.  */
10259     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
10260         SvREFCNT_dec_NN(target);
10261     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
10262         sv_2mortal(target);     /* Schedule for freeing later */
10263 }
10264
10265 /*
10266 =for apidoc sv_untaint
10267
10268 Untaint an SV.  Use C<SvTAINTED_off> instead.
10269
10270 =cut
10271 */
10272
10273 void
10274 Perl_sv_untaint(pTHX_ SV *const sv)
10275 {
10276     PERL_ARGS_ASSERT_SV_UNTAINT;
10277     PERL_UNUSED_CONTEXT;
10278
10279     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10280         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10281         if (mg)
10282             mg->mg_len &= ~1;
10283     }
10284 }
10285
10286 /*
10287 =for apidoc sv_tainted
10288
10289 Test an SV for taintedness.  Use C<SvTAINTED> instead.
10290
10291 =cut
10292 */
10293
10294 bool
10295 Perl_sv_tainted(pTHX_ SV *const sv)
10296 {
10297     PERL_ARGS_ASSERT_SV_TAINTED;
10298     PERL_UNUSED_CONTEXT;
10299
10300     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10301         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10302         if (mg && (mg->mg_len & 1) )
10303             return TRUE;
10304     }
10305     return FALSE;
10306 }
10307
10308 /*
10309 =for apidoc sv_setpviv
10310
10311 Copies an integer into the given SV, also updating its string value.
10312 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
10313
10314 =cut
10315 */
10316
10317 void
10318 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
10319 {
10320     char buf[TYPE_CHARS(UV)];
10321     char *ebuf;
10322     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
10323
10324     PERL_ARGS_ASSERT_SV_SETPVIV;
10325
10326     sv_setpvn(sv, ptr, ebuf - ptr);
10327 }
10328
10329 /*
10330 =for apidoc sv_setpviv_mg
10331
10332 Like C<sv_setpviv>, but also handles 'set' magic.
10333
10334 =cut
10335 */
10336
10337 void
10338 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
10339 {
10340     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
10341
10342     sv_setpviv(sv, iv);
10343     SvSETMAGIC(sv);
10344 }
10345
10346 #if defined(PERL_IMPLICIT_CONTEXT)
10347
10348 /* pTHX_ magic can't cope with varargs, so this is a no-context
10349  * version of the main function, (which may itself be aliased to us).
10350  * Don't access this version directly.
10351  */
10352
10353 void
10354 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
10355 {
10356     dTHX;
10357     va_list args;
10358
10359     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
10360
10361     va_start(args, pat);
10362     sv_vsetpvf(sv, pat, &args);
10363     va_end(args);
10364 }
10365
10366 /* pTHX_ magic can't cope with varargs, so this is a no-context
10367  * version of the main function, (which may itself be aliased to us).
10368  * Don't access this version directly.
10369  */
10370
10371 void
10372 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10373 {
10374     dTHX;
10375     va_list args;
10376
10377     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
10378
10379     va_start(args, pat);
10380     sv_vsetpvf_mg(sv, pat, &args);
10381     va_end(args);
10382 }
10383 #endif
10384
10385 /*
10386 =for apidoc sv_setpvf
10387
10388 Works like C<sv_catpvf> but copies the text into the SV instead of
10389 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
10390
10391 =cut
10392 */
10393
10394 void
10395 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
10396 {
10397     va_list args;
10398
10399     PERL_ARGS_ASSERT_SV_SETPVF;
10400
10401     va_start(args, pat);
10402     sv_vsetpvf(sv, pat, &args);
10403     va_end(args);
10404 }
10405
10406 /*
10407 =for apidoc sv_vsetpvf
10408
10409 Works like C<sv_vcatpvf> but copies the text into the SV instead of
10410 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
10411
10412 Usually used via its frontend C<sv_setpvf>.
10413
10414 =cut
10415 */
10416
10417 void
10418 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10419 {
10420     PERL_ARGS_ASSERT_SV_VSETPVF;
10421
10422     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10423 }
10424
10425 /*
10426 =for apidoc sv_setpvf_mg
10427
10428 Like C<sv_setpvf>, but also handles 'set' magic.
10429
10430 =cut
10431 */
10432
10433 void
10434 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10435 {
10436     va_list args;
10437
10438     PERL_ARGS_ASSERT_SV_SETPVF_MG;
10439
10440     va_start(args, pat);
10441     sv_vsetpvf_mg(sv, pat, &args);
10442     va_end(args);
10443 }
10444
10445 /*
10446 =for apidoc sv_vsetpvf_mg
10447
10448 Like C<sv_vsetpvf>, but also handles 'set' magic.
10449
10450 Usually used via its frontend C<sv_setpvf_mg>.
10451
10452 =cut
10453 */
10454
10455 void
10456 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10457 {
10458     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
10459
10460     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10461     SvSETMAGIC(sv);
10462 }
10463
10464 #if defined(PERL_IMPLICIT_CONTEXT)
10465
10466 /* pTHX_ magic can't cope with varargs, so this is a no-context
10467  * version of the main function, (which may itself be aliased to us).
10468  * Don't access this version directly.
10469  */
10470
10471 void
10472 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
10473 {
10474     dTHX;
10475     va_list args;
10476
10477     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
10478
10479     va_start(args, pat);
10480     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10481     va_end(args);
10482 }
10483
10484 /* pTHX_ magic can't cope with varargs, so this is a no-context
10485  * version of the main function, (which may itself be aliased to us).
10486  * Don't access this version directly.
10487  */
10488
10489 void
10490 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10491 {
10492     dTHX;
10493     va_list args;
10494
10495     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
10496
10497     va_start(args, pat);
10498     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10499     SvSETMAGIC(sv);
10500     va_end(args);
10501 }
10502 #endif
10503
10504 /*
10505 =for apidoc sv_catpvf
10506
10507 Processes its arguments like C<sprintf> and appends the formatted
10508 output to an SV.  If the appended data contains "wide" characters
10509 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
10510 and characters >255 formatted with %c), the original SV might get
10511 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
10512 C<sv_catpvf_mg>.  If the original SV was UTF-8, the pattern should be
10513 valid UTF-8; if the original SV was bytes, the pattern should be too.
10514
10515 =cut */
10516
10517 void
10518 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
10519 {
10520     va_list args;
10521
10522     PERL_ARGS_ASSERT_SV_CATPVF;
10523
10524     va_start(args, pat);
10525     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10526     va_end(args);
10527 }
10528
10529 /*
10530 =for apidoc sv_vcatpvf
10531
10532 Processes its arguments like C<vsprintf> and appends the formatted output
10533 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
10534
10535 Usually used via its frontend C<sv_catpvf>.
10536
10537 =cut
10538 */
10539
10540 void
10541 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10542 {
10543     PERL_ARGS_ASSERT_SV_VCATPVF;
10544
10545     sv_vcatpvfn_flags(sv, pat, strlen(pat), args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10546 }
10547
10548 /*
10549 =for apidoc sv_catpvf_mg
10550
10551 Like C<sv_catpvf>, but also handles 'set' magic.
10552
10553 =cut
10554 */
10555
10556 void
10557 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10558 {
10559     va_list args;
10560
10561     PERL_ARGS_ASSERT_SV_CATPVF_MG;
10562
10563     va_start(args, pat);
10564     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10565     SvSETMAGIC(sv);
10566     va_end(args);
10567 }
10568
10569 /*
10570 =for apidoc sv_vcatpvf_mg
10571
10572 Like C<sv_vcatpvf>, but also handles 'set' magic.
10573
10574 Usually used via its frontend C<sv_catpvf_mg>.
10575
10576 =cut
10577 */
10578
10579 void
10580 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10581 {
10582     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
10583
10584     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10585     SvSETMAGIC(sv);
10586 }
10587
10588 /*
10589 =for apidoc sv_vsetpvfn
10590
10591 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
10592 appending it.
10593
10594 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
10595
10596 =cut
10597 */
10598
10599 void
10600 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10601                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10602 {
10603     PERL_ARGS_ASSERT_SV_VSETPVFN;
10604
10605     sv_setpvs(sv, "");
10606     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, 0);
10607 }
10608
10609
10610 /*
10611  * Warn of missing argument to sprintf, and then return a defined value
10612  * to avoid inappropriate "use of uninit" warnings [perl #71000].
10613  */
10614 STATIC SV*
10615 S_vcatpvfn_missing_argument(pTHX) {
10616     if (ckWARN(WARN_MISSING)) {
10617         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
10618                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
10619     }
10620     return &PL_sv_no;
10621 }
10622
10623
10624 STATIC I32
10625 S_expect_number(pTHX_ char **const pattern)
10626 {
10627     I32 var = 0;
10628
10629     PERL_ARGS_ASSERT_EXPECT_NUMBER;
10630
10631     switch (**pattern) {
10632     case '1': case '2': case '3':
10633     case '4': case '5': case '6':
10634     case '7': case '8': case '9':
10635         var = *(*pattern)++ - '0';
10636         while (isDIGIT(**pattern)) {
10637             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
10638             if (tmp < var)
10639                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
10640             var = tmp;
10641         }
10642     }
10643     return var;
10644 }
10645
10646 STATIC char *
10647 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
10648 {
10649     const int neg = nv < 0;
10650     UV uv;
10651
10652     PERL_ARGS_ASSERT_F0CONVERT;
10653
10654     if (UNLIKELY(Perl_isinfnan(nv))) {
10655         STRLEN n = S_infnan_2pv(nv, endbuf - *len, *len);
10656         *len = n;
10657         return endbuf - n;
10658     }
10659     if (neg)
10660         nv = -nv;
10661     if (nv < UV_MAX) {
10662         char *p = endbuf;
10663         nv += 0.5;
10664         uv = (UV)nv;
10665         if (uv & 1 && uv == nv)
10666             uv--;                       /* Round to even */
10667         do {
10668             const unsigned dig = uv % 10;
10669             *--p = '0' + dig;
10670         } while (uv /= 10);
10671         if (neg)
10672             *--p = '-';
10673         *len = endbuf - p;
10674         return p;
10675     }
10676     return NULL;
10677 }
10678
10679
10680 /*
10681 =for apidoc sv_vcatpvfn
10682
10683 =for apidoc sv_vcatpvfn_flags
10684
10685 Processes its arguments like C<vsprintf> and appends the formatted output
10686 to an SV.  Uses an array of SVs if the C style variable argument list is
10687 missing (NULL).  When running with taint checks enabled, indicates via
10688 C<maybe_tainted> if results are untrustworthy (often due to the use of
10689 locales).
10690
10691 If called as C<sv_vcatpvfn> or flags include C<SV_GMAGIC>, calls get magic.
10692
10693 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
10694
10695 =cut
10696 */
10697
10698 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
10699                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
10700                         vec_utf8 = DO_UTF8(vecsv);
10701
10702 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
10703
10704 void
10705 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10706                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10707 {
10708     PERL_ARGS_ASSERT_SV_VCATPVFN;
10709
10710     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, SV_GMAGIC|SV_SMAGIC);
10711 }
10712
10713 #if DOUBLEKIND == DOUBLE_IS_IEEE_754_32_BIT_LITTLE_ENDIAN || \
10714     DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_LITTLE_ENDIAN || \
10715     DOUBLEKIND == DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
10716 #  define DOUBLE_LITTLE_ENDIAN
10717 #endif
10718
10719 #if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN || \
10720     LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN || \
10721     LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN
10722 #  define LONGDOUBLE_LITTLE_ENDIAN
10723 #endif
10724
10725 #if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN || \
10726     LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN || \
10727     LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN
10728 #  define LONGDOUBLE_BIG_ENDIAN
10729 #endif
10730
10731 #if LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN || \
10732     LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
10733 #  define LONGDOUBLE_X86_80_BIT
10734 #endif
10735
10736 #if LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_LITTLE_ENDIAN || \
10737     LONG_DOUBLEKIND == LONG_DOUBLE_IS_DOUBLEDOUBLE_128_BIT_BIG_ENDIAN
10738 #  define LONGDOUBLE_DOUBLEDOUBLE
10739 /* The first double can be as large as 2**1023, or '1' x '0' x 1023.
10740  * The second double can be as small as 2**-1074, or '0' x 1073 . '1'.
10741  * The sum of them can be '1' . '0' x 2096 . '1', with implied radix point
10742  * after the first 1023 zero bits.
10743  *
10744  * XXX The 2098 is quite large (262.25 bytes) and therefore some sort
10745  * of dynamically growing buffer might be better, start at just 16 bytes
10746  * (for example) and grow only when necessary.  Or maybe just by looking
10747  * at the exponents of the two doubles? */
10748 #  define DOUBLEDOUBLE_MAXBITS 2098
10749 #endif
10750
10751 /* vhex will contain the values (0..15) of the hex digits ("nybbles"
10752  * of 4 bits); 1 for the implicit 1, and the mantissa bits, four bits
10753  * per xdigit.  For the double-double case, this can be rather many.
10754  * The non-double-double-long-double overshoots since all bits of NV
10755  * are not mantissa bits, there are also exponent bits. */
10756 #ifdef LONGDOUBLE_DOUBLEDOUBLE
10757 #  define VHEX_SIZE (1+DOUBLEDOUBLE_MAXBITS/4)
10758 #else
10759 #  define VHEX_SIZE (1+(NVSIZE * 8)/4)
10760 #endif
10761
10762 /* If we do not have a known long double format, (including not using
10763  * long doubles, or long doubles being equal to doubles) then we will
10764  * fall back to the ldexp/frexp route, with which we can retrieve at
10765  * most as many bits as our widest unsigned integer type is.  We try
10766  * to get a 64-bit unsigned integer even if we are not using a 64-bit UV.
10767  *
10768  * (If you want to test the case of UVSIZE == 4, NVSIZE == 8,
10769  *  set the MANTISSATYPE to int and the MANTISSASIZE to 4.)
10770  */
10771 #if defined(HAS_QUAD) && defined(Uquad_t)
10772 #  define MANTISSATYPE Uquad_t
10773 #  define MANTISSASIZE 8
10774 #else
10775 #  define MANTISSATYPE UV
10776 #  define MANTISSASIZE UVSIZE
10777 #endif
10778
10779 #if defined(DOUBLE_LITTLE_ENDIAN) || defined(LONGDOUBLE_LITTLE_ENDIAN)
10780 #  define HEXTRACT_LITTLE_ENDIAN
10781 #elif defined(DOUBLE_BIG_ENDIAN) || defined(LONGDOUBLE_BIG_ENDIAN)
10782 #  define HEXTRACT_BIG_ENDIAN
10783 #else
10784 #  define HEXTRACT_MIX_ENDIAN
10785 #endif
10786
10787 /* S_hextract() is a helper for Perl_sv_vcatpvfn_flags, for extracting
10788  * the hexadecimal values (for %a/%A).  The nv is the NV where the value
10789  * are being extracted from (either directly from the long double in-memory
10790  * presentation, or from the uquad computed via frexp+ldexp).  frexp also
10791  * is used to update the exponent.  vhex is the pointer to the beginning
10792  * of the output buffer (of VHEX_SIZE).
10793  *
10794  * The tricky part is that S_hextract() needs to be called twice:
10795  * the first time with vend as NULL, and the second time with vend as
10796  * the pointer returned by the first call.  What happens is that on
10797  * the first round the output size is computed, and the intended
10798  * extraction sanity checked.  On the second round the actual output
10799  * (the extraction of the hexadecimal values) takes place.
10800  * Sanity failures cause fatal failures during both rounds. */
10801 STATIC U8*
10802 S_hextract(pTHX_ const NV nv, int* exponent, U8* vhex, U8* vend)
10803 {
10804     U8* v = vhex;
10805     int ix;
10806     int ixmin = 0, ixmax = 0;
10807
10808     /* XXX Inf/NaN/denormal handling in the HEXTRACT_IMPLICIT_BIT,
10809      * and elsewhere. */
10810
10811     /* These macros are just to reduce typos, they have multiple
10812      * repetitions below, but usually only one (or sometimes two)
10813      * of them is really being used. */
10814     /* HEXTRACT_OUTPUT() extracts the high nybble first. */
10815 #define HEXTRACT_OUTPUT_HI(ix) (*v++ = nvp[ix] >> 4)
10816 #define HEXTRACT_OUTPUT_LO(ix) (*v++ = nvp[ix] & 0xF)
10817 #define HEXTRACT_OUTPUT(ix) \
10818     STMT_START { \
10819       HEXTRACT_OUTPUT_HI(ix); HEXTRACT_OUTPUT_LO(ix); \
10820    } STMT_END
10821 #define HEXTRACT_COUNT(ix, c) \
10822     STMT_START { \
10823       v += c; if (ix < ixmin) ixmin = ix; else if (ix > ixmax) ixmax = ix; \
10824    } STMT_END
10825 #define HEXTRACT_BYTE(ix) \
10826     STMT_START { \
10827       if (vend) HEXTRACT_OUTPUT(ix); else HEXTRACT_COUNT(ix, 2); \
10828    } STMT_END
10829 #define HEXTRACT_LO_NYBBLE(ix) \
10830     STMT_START { \
10831       if (vend) HEXTRACT_OUTPUT_LO(ix); else HEXTRACT_COUNT(ix, 1); \
10832    } STMT_END
10833     /* HEXTRACT_TOP_NYBBLE is just convenience disguise,
10834      * to make it look less odd when the top bits of a NV
10835      * are extracted using HEXTRACT_LO_NYBBLE: the highest
10836      * order bits can be in the "low nybble" of a byte. */
10837 #define HEXTRACT_TOP_NYBBLE(ix) HEXTRACT_LO_NYBBLE(ix)
10838 #define HEXTRACT_BYTES_LE(a, b) \
10839     for (ix = a; ix >= b; ix--) { HEXTRACT_BYTE(ix); }
10840 #define HEXTRACT_BYTES_BE(a, b) \
10841     for (ix = a; ix <= b; ix++) { HEXTRACT_BYTE(ix); }
10842 #define HEXTRACT_IMPLICIT_BIT(nv) \
10843     STMT_START { \
10844         if (vend) *v++ = ((nv) == 0.0) ? 0 : 1; else v++; \
10845    } STMT_END
10846
10847 /* Most formats do.  Those which don't should undef this. */
10848 #define HEXTRACT_HAS_IMPLICIT_BIT
10849 /* Many formats do.  Those which don't should undef this. */
10850 #define HEXTRACT_HAS_TOP_NYBBLE
10851
10852     /* HEXTRACTSIZE is the maximum number of xdigits. */
10853 #if defined(USE_LONG_DOUBLE) && defined(LONGDOUBLE_DOUBLEDOUBLE)
10854 #  define HEXTRACTSIZE (DOUBLEDOUBLE_MAXBITS/4)
10855 #else
10856 #  define HEXTRACTSIZE 2 * NVSIZE
10857 #endif
10858
10859     const U8* vmaxend = vhex + HEXTRACTSIZE;
10860     PERL_UNUSED_VAR(ix); /* might happen */
10861     (void)Perl_frexp(PERL_ABS(nv), exponent);
10862     if (vend && (vend <= vhex || vend > vmaxend))
10863         Perl_croak(aTHX_ "Hexadecimal float: internal error");
10864     {
10865         /* First check if using long doubles. */
10866 #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE)
10867 #  if LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_LITTLE_ENDIAN
10868         /* Used in e.g. VMS and HP-UX IA-64, e.g. -0.1L:
10869          * 9a 99 99 99 99 99 99 99 99 99 99 99 99 99 fb 3f */
10870         /* The bytes 13..0 are the mantissa/fraction,
10871          * the 15,14 are the sign+exponent. */
10872         const U8* nvp = (const U8*)(&nv);
10873         HEXTRACT_IMPLICIT_BIT(nv);
10874 #   undef HEXTRACT_HAS_TOP_NYBBLE
10875         HEXTRACT_BYTES_LE(13, 0);
10876 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_IEEE_754_128_BIT_BIG_ENDIAN
10877         /* Used in e.g. Solaris Sparc and HP-UX PA-RISC, e.g. -0.1L:
10878          * bf fb 99 99 99 99 99 99 99 99 99 99 99 99 99 9a */
10879         /* The bytes 2..15 are the mantissa/fraction,
10880          * the 0,1 are the sign+exponent. */
10881         const U8* nvp = (const U8*)(&nv);
10882         HEXTRACT_IMPLICIT_BIT(nv);
10883 #   undef HEXTRACT_HAS_TOP_NYBBLE
10884         HEXTRACT_BYTES_BE(2, 15);
10885 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_LITTLE_ENDIAN
10886         /* x86 80-bit "extended precision", 64 bits of mantissa / fraction /
10887          * significand, 15 bits of exponent, 1 bit of sign.  NVSIZE can
10888          * be either 12 (ILP32, Solaris x86) or 16 (LP64, Linux and OS X),
10889          * meaning that 2 or 6 bytes are empty padding. */
10890         /* The bytes 7..0 are the mantissa/fraction */
10891         const U8* nvp = (const U8*)(&nv);
10892 #    undef HEXTRACT_HAS_IMPLICIT_BIT
10893 #    undef HEXTRACT_HAS_TOP_NYBBLE
10894         HEXTRACT_BYTES_LE(7, 0);
10895 #  elif LONG_DOUBLEKIND == LONG_DOUBLE_IS_X86_80_BIT_BIG_ENDIAN
10896         /* Does this format ever happen? (Wikipedia says the Motorola
10897          * 6888x math coprocessors used format _like_ this but padded
10898          * to 96 bits with 16 unused bits between the exponent and the
10899          * mantissa.) */
10900         const U8* nvp = (const U8*)(&nv);
10901 #    undef HEXTRACT_HAS_IMPLICIT_BIT
10902 #    undef HEXTRACT_HAS_TOP_NYBBLE
10903         HEXTRACT_BYTES_BE(0, 7);
10904 #  else
10905 #    define HEXTRACT_FALLBACK
10906         /* Double-double format: two doubles next to each other.
10907          * The first double is the high-order one, exactly like
10908          * it would be for a "lone" double.  The second double
10909          * is shifted down using the exponent so that that there
10910          * are no common bits.  The tricky part is that the value
10911          * of the double-double is the SUM of the two doubles and
10912          * the second one can be also NEGATIVE.
10913          *
10914          * Because of this tricky construction the bytewise extraction we
10915          * use for the other long double formats doesn't work, we must
10916          * extract the values bit by bit.
10917          *
10918          * The little-endian double-double is used .. somewhere?
10919          *
10920          * The big endian double-double is used in e.g. PPC/Power (AIX)
10921          * and MIPS (SGI).
10922          *
10923          * The mantissa bits are in two separate stretches, e.g. for -0.1L:
10924          * 9a 99 99 99 99 99 59 bc 9a 99 99 99 99 99 b9 3f (LE)
10925          * 3f b9 99 99 99 99 99 9a bc 59 99 99 99 99 99 9a (BE)
10926          */
10927 #  endif
10928 #else /* #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE) */
10929         /* Using normal doubles, not long doubles.
10930          *
10931          * We generate 4-bit xdigits (nybble/nibble) instead of 8-bit
10932          * bytes, since we might need to handle printf precision, and
10933          * also need to insert the radix. */
10934 #  if NVSIZE == 8
10935 #    ifdef HEXTRACT_LITTLE_ENDIAN
10936         /* 0 1 2 3 4 5 6 7 (MSB = 7, LSB = 0, 6+7 = exponent+sign) */
10937         const U8* nvp = (const U8*)(&nv);
10938         HEXTRACT_IMPLICIT_BIT(nv);
10939         HEXTRACT_TOP_NYBBLE(6);
10940         HEXTRACT_BYTES_LE(5, 0);
10941 #    elif defined(HEXTRACT_BIG_ENDIAN)
10942         /* 7 6 5 4 3 2 1 0 (MSB = 7, LSB = 0, 6+7 = exponent+sign) */
10943         const U8* nvp = (const U8*)(&nv);
10944         HEXTRACT_IMPLICIT_BIT(nv);
10945         HEXTRACT_TOP_NYBBLE(1);
10946         HEXTRACT_BYTES_BE(2, 7);
10947 #    elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_LE_BE
10948         /* 4 5 6 7 0 1 2 3 (MSB = 7, LSB = 0, 6:7 = nybble:exponent:sign) */
10949         const U8* nvp = (const U8*)(&nv);
10950         HEXTRACT_IMPLICIT_BIT(nv);
10951         HEXTRACT_TOP_NYBBLE(2); /* 6 */
10952         HEXTRACT_BYTE(1); /* 5 */
10953         HEXTRACT_BYTE(0); /* 4 */
10954         HEXTRACT_BYTE(7); /* 3 */
10955         HEXTRACT_BYTE(6); /* 2 */
10956         HEXTRACT_BYTE(5); /* 1 */
10957         HEXTRACT_BYTE(4); /* 0 */
10958 #    elif DOUBLEKIND == DOUBLE_IS_IEEE_754_64_BIT_MIXED_ENDIAN_BE_LE
10959         /* 3 2 1 0 7 6 5 4 (MSB = 7, LSB = 0, 7:6 = sign:exponent:nybble) */
10960         const U8* nvp = (const U8*)(&nv);
10961         HEXTRACT_IMPLICIT_BIT(nv);
10962         HEXTRACT_TOP_NYBBLE(5); /* 6 */
10963         HEXTRACT_BYTE(6); /* 5 */
10964         HEXTRACT_BYTE(7); /* 4 */
10965         HEXTRACT_BYTE(0); /* 3 */
10966         HEXTRACT_BYTE(1); /* 2 */
10967         HEXTRACT_BYTE(2); /* 1 */
10968         HEXTRACT_BYTE(3); /* 0 */
10969 #    else
10970 #      define HEXTRACT_FALLBACK
10971 #    endif
10972 #  else
10973 #    define HEXTRACT_FALLBACK
10974 #  endif
10975 #endif /* #if defined(USE_LONG_DOUBLE) && (NVSIZE > DOUBLESIZE) #else */
10976 #  ifdef HEXTRACT_FALLBACK
10977 #    undef HEXTRACT_HAS_TOP_NYBBLE /* Meaningless, but consistent. */
10978         /* The fallback is used for the double-double format, and
10979          * for unknown long double formats, and for unknown double
10980          * formats, or in general unknown NV formats. */
10981         if (nv == (NV)0.0) {
10982             if (vend)
10983                 *v++ = 0;
10984             else
10985                 v++;
10986             *exponent = 0;
10987         }
10988         else {
10989             NV d = nv < 0 ? -nv : nv;
10990             NV e = (NV)1.0;
10991             U8 ha = 0x0; /* hexvalue accumulator */
10992             U8 hd = 0x8; /* hexvalue digit */
10993
10994             /* Shift d and e (and update exponent) so that e <= d < 2*e,
10995              * this is essentially manual frexp(). Multiplying by 0.5 and
10996              * doubling should be lossless in binary floating point. */
10997
10998             *exponent = 1;
10999
11000             while (e > d) {
11001                 e *= (NV)0.5;
11002                 (*exponent)--;
11003             }
11004             /* Now d >= e */
11005
11006             while (d >= e + e) {
11007                 e += e;
11008                 (*exponent)++;
11009             }
11010             /* Now e <= d < 2*e */
11011
11012             /* First extract the leading hexdigit (the implicit bit). */
11013             if (d >= e) {
11014                 d -= e;
11015                 if (vend)
11016                     *v++ = 1;
11017                 else
11018                     v++;
11019             }
11020             else {
11021                 if (vend)
11022                     *v++ = 0;
11023                 else
11024                     v++;
11025             }
11026             e *= (NV)0.5;
11027
11028             /* Then extract the remaining hexdigits. */
11029             while (d > (NV)0.0) {
11030                 if (d >= e) {
11031                     ha |= hd;
11032                     d -= e;
11033                 }
11034                 if (hd == 1) {
11035                     /* Output or count in groups of four bits,
11036                      * that is, when the hexdigit is down to one. */
11037                     if (vend)
11038                         *v++ = ha;
11039                     else
11040                         v++;
11041                     /* Reset the hexvalue. */
11042                     ha = 0x0;
11043                     hd = 0x8;
11044                 }
11045                 else
11046                     hd >>= 1;
11047                 e *= (NV)0.5;
11048             }
11049
11050             /* Flush possible pending hexvalue. */
11051             if (ha) {
11052                 if (vend)
11053                     *v++ = ha;
11054                 else
11055                     v++;
11056             }
11057         }
11058 #  endif
11059     }
11060     /* Croak for various reasons: if the output pointer escaped the
11061      * output buffer, if the extraction index escaped the extraction
11062      * buffer, or if the ending output pointer didn't match the
11063      * previously computed value. */
11064     if (v <= vhex || v - vhex >= VHEX_SIZE ||
11065         /* For double-double the ixmin and ixmax stay at zero,
11066          * which is convenient since the HEXTRACTSIZE is tricky
11067          * for double-double. */
11068         ixmin < 0 || ixmax >= NVSIZE ||
11069         (vend && v != vend))
11070         Perl_croak(aTHX_ "Hexadecimal float: internal error");
11071     return v;
11072 }
11073
11074 void
11075 Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
11076                        va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted,
11077                        const U32 flags)
11078 {
11079     char *p;
11080     char *q;
11081     const char *patend;
11082     STRLEN origlen;
11083     I32 svix = 0;
11084     static const char nullstr[] = "(null)";
11085     SV *argsv = NULL;
11086     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
11087     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
11088     SV *nsv = NULL;
11089     /* Times 4: a decimal digit takes more than 3 binary digits.
11090      * NV_DIG: mantissa takes than many decimal digits.
11091      * Plus 32: Playing safe. */
11092     char ebuf[IV_DIG * 4 + NV_DIG + 32];
11093     bool no_redundant_warning = FALSE; /* did we use any explicit format parameter index? */
11094     bool hexfp = FALSE; /* hexadecimal floating point? */
11095
11096     DECLARATION_FOR_STORE_LC_NUMERIC_SET_TO_NEEDED;
11097
11098     PERL_ARGS_ASSERT_SV_VCATPVFN_FLAGS;
11099     PERL_UNUSED_ARG(maybe_tainted);
11100
11101     if (flags & SV_GMAGIC)
11102         SvGETMAGIC(sv);
11103
11104     /* no matter what, this is a string now */
11105     (void)SvPV_force_nomg(sv, origlen);
11106
11107     /* special-case "", "%s", and "%-p" (SVf - see below) */
11108     if (patlen == 0) {
11109         if (svmax && ckWARN(WARN_REDUNDANT))
11110             Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
11111                         PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
11112         return;
11113     }
11114     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
11115         if (svmax > 1 && ckWARN(WARN_REDUNDANT))
11116             Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
11117                         PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
11118
11119         if (args) {
11120             const char * const s = va_arg(*args, char*);
11121             sv_catpv_nomg(sv, s ? s : nullstr);
11122         }
11123         else if (svix < svmax) {
11124             /* we want get magic on the source but not the target. sv_catsv can't do that, though */
11125             SvGETMAGIC(*svargs);
11126             sv_catsv_nomg(sv, *svargs);
11127         }
11128         else
11129             S_vcatpvfn_missing_argument(aTHX);
11130         return;
11131     }
11132     if (args && patlen == 3 && pat[0] == '%' &&
11133                 pat[1] == '-' && pat[2] == 'p') {
11134         if (svmax > 1 && ckWARN(WARN_REDUNDANT))
11135             Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
11136                         PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
11137         argsv = MUTABLE_SV(va_arg(*args, void*));
11138         sv_catsv_nomg(sv, argsv);
11139         return;
11140     }
11141
11142 #if !defined(USE_LONG_DOUBLE) && !defined(USE_QUADMATH)
11143     /* special-case "%.<number>[gf]" */
11144     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
11145          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
11146         unsigned digits = 0;
11147         const char *pp;
11148
11149         pp = pat + 2;
11150         while (*pp >= '0' && *pp <= '9')
11151             digits = 10 * digits + (*pp++ - '0');
11152
11153         /* XXX: Why do this `svix < svmax` test? Couldn't we just
11154            format the first argument and WARN_REDUNDANT if svmax > 1?
11155            Munged by Nicholas Clark in v5.13.0-209-g95ea86d */
11156         if (pp - pat == (int)patlen - 1 && svix < svmax) {
11157             const NV nv = SvNV(*svargs);
11158             if (LIKELY(!Perl_isinfnan(nv))) {
11159                 if (*pp == 'g') {
11160                     /* Add check for digits != 0 because it seems that some
11161                        gconverts are buggy in this case, and we don't yet have
11162                        a Configure test for this.  */
11163                     if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
11164                         /* 0, point, slack */
11165                         STORE_LC_NUMERIC_SET_TO_NEEDED();
11166                         SNPRINTF_G(nv, ebuf, size, digits);
11167                         sv_catpv_nomg(sv, ebuf);
11168                         if (*ebuf)      /* May return an empty string for digits==0 */
11169                             return;
11170                     }
11171                 } else if (!digits) {
11172                     STRLEN l;
11173
11174                     if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
11175                         sv_catpvn_nomg(sv, p, l);
11176                         return;
11177                     }
11178                 }
11179             }
11180         }
11181     }
11182 #endif /* !USE_LONG_DOUBLE */
11183
11184     if (!args && svix < svmax && DO_UTF8(*svargs))
11185         has_utf8 = TRUE;
11186
11187     patend = (char*)pat + patlen;
11188     for (p = (char*)pat; p < patend; p = q) {
11189         bool alt = FALSE;
11190         bool left = FALSE;
11191         bool vectorize = FALSE;
11192         bool vectorarg = FALSE;
11193         bool vec_utf8 = FALSE;
11194         char fill = ' ';
11195         char plus = 0;
11196         char intsize = 0;
11197         STRLEN width = 0;
11198         STRLEN zeros = 0;
11199         bool has_precis = FALSE;
11200         STRLEN precis = 0;
11201         const I32 osvix = svix;
11202         bool is_utf8 = FALSE;  /* is this item utf8?   */
11203 #ifdef HAS_LDBL_SPRINTF_BUG
11204         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
11205            with sfio - Allen <allens@cpan.org> */
11206         bool fix_ldbl_sprintf_bug = FALSE;
11207 #endif
11208
11209         char esignbuf[4];
11210         U8 utf8buf[UTF8_MAXBYTES+1];
11211         STRLEN esignlen = 0;
11212
11213         const char *eptr = NULL;
11214         const char *fmtstart;
11215         STRLEN elen = 0;
11216         SV *vecsv = NULL;
11217         const U8 *vecstr = NULL;
11218         STRLEN veclen = 0;
11219         char c = 0;
11220         int i;
11221         unsigned base = 0;
11222         IV iv = 0;
11223         UV uv = 0;
11224         /* We need a long double target in case HAS_LONG_DOUBLE,
11225          * even without USE_LONG_DOUBLE, so that we can printf with
11226          * long double formats, even without NV being long double.
11227          * But we call the target 'fv' instead of 'nv', since most of
11228          * the time it is not (most compilers these days recognize
11229          * "long double", even if only as a synonym for "double").
11230         */
11231 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE && \
11232         defined(PERL_PRIgldbl) && !defined(USE_QUADMATH)
11233         long double fv;
11234 #  define FV_ISFINITE(x) Perl_isfinitel(x)
11235 #  define FV_GF PERL_PRIgldbl
11236 #    if defined(__VMS) && defined(__ia64) && defined(__IEEE_FLOAT)
11237        /* Work around breakage in OTS$CVT_FLOAT_T_X */
11238 #      define NV_TO_FV(nv,fv) STMT_START {                   \
11239                                            double _dv = nv;  \
11240                                            fv = Perl_isnan(_dv) ? LDBL_QNAN : _dv; \
11241                               } STMT_END
11242 #    else
11243 #      define NV_TO_FV(nv,fv) (fv)=(nv)
11244 #    endif
11245 #else
11246         NV fv;
11247 #  define FV_ISFINITE(x) Perl_isfinite((NV)(x))
11248 #  define FV_GF NVgf
11249 #  define NV_TO_FV(nv,fv) (fv)=(nv)
11250 #endif
11251         STRLEN have;
11252         STRLEN need;
11253         STRLEN gap;
11254         const char *dotstr = ".";
11255         STRLEN dotstrlen = 1;
11256         I32 efix = 0; /* explicit format parameter index */
11257         I32 ewix = 0; /* explicit width index */
11258         I32 epix = 0; /* explicit precision index */
11259         I32 evix = 0; /* explicit vector index */
11260         bool asterisk = FALSE;
11261         bool infnan = FALSE;
11262
11263         /* echo everything up to the next format specification */
11264         for (q = p; q < patend && *q != '%'; ++q) ;
11265         if (q > p) {
11266             if (has_utf8 && !pat_utf8)
11267                 sv_catpvn_nomg_utf8_upgrade(sv, p, q - p, nsv);
11268             else
11269                 sv_catpvn_nomg(sv, p, q - p);
11270             p = q;
11271         }
11272         if (q++ >= patend)
11273             break;
11274
11275         fmtstart = q;
11276
11277 /*
11278     We allow format specification elements in this order:
11279         \d+\$              explicit format parameter index
11280         [-+ 0#]+           flags
11281         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
11282         0                  flag (as above): repeated to allow "v02"     
11283         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
11284         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
11285         [hlqLV]            size
11286     [%bcdefginopsuxDFOUX] format (mandatory)
11287 */
11288
11289         if (args) {
11290 /*  
11291         As of perl5.9.3, printf format checking is on by default.
11292         Internally, perl uses %p formats to provide an escape to
11293         some extended formatting.  This block deals with those
11294         extensions: if it does not match, (char*)q is reset and
11295         the normal format processing code is used.
11296
11297         Currently defined extensions are:
11298                 %p              include pointer address (standard)      
11299                 %-p     (SVf)   include an SV (previously %_)
11300                 %-<num>p        include an SV with precision <num>      
11301                 %2p             include a HEK
11302                 %3p             include a HEK with precision of 256
11303                 %4p             char* preceded by utf8 flag and length
11304                 %<num>p         (where num is 1 or > 4) reserved for future
11305                                 extensions
11306
11307         Robin Barker 2005-07-14 (but modified since)
11308
11309                 %1p     (VDf)   removed.  RMB 2007-10-19
11310 */
11311             char* r = q; 
11312             bool sv = FALSE;    
11313             STRLEN n = 0;
11314             if (*q == '-')
11315                 sv = *q++;
11316             else if (strnEQ(q, UTF8f, sizeof(UTF8f)-1)) { /* UTF8f */
11317                 /* The argument has already gone through cBOOL, so the cast
11318                    is safe. */
11319                 is_utf8 = (bool)va_arg(*args, int);
11320                 elen = va_arg(*args, UV);
11321                 if ((IV)elen < 0) {
11322                     /* check if utf8 length is larger than 0 when cast to IV */
11323                     assert( (IV)elen >= 0 ); /* in DEBUGGING build we want to crash */
11324                     elen= 0; /* otherwise we want to treat this as an empty string */
11325                 }
11326                 eptr = va_arg(*args, char *);
11327                 q += sizeof(UTF8f)-1;
11328                 goto string;
11329             }
11330             n = expect_number(&q);
11331             if (*q++ == 'p') {
11332                 if (sv) {                       /* SVf */
11333                     if (n) {
11334                         precis = n;
11335                         has_precis = TRUE;
11336                     }
11337                     argsv = MUTABLE_SV(va_arg(*args, void*));
11338                     eptr = SvPV_const(argsv, elen);
11339                     if (DO_UTF8(argsv))
11340                         is_utf8 = TRUE;
11341                     goto string;
11342                 }
11343                 else if (n==2 || n==3) {        /* HEKf */
11344                     HEK * const hek = va_arg(*args, HEK *);
11345                     eptr = HEK_KEY(hek);
11346                     elen = HEK_LEN(hek);
11347                     if (HEK_UTF8(hek)) is_utf8 = TRUE;
11348                     if (n==3) precis = 256, has_precis = TRUE;
11349                     goto string;
11350                 }
11351                 else if (n) {
11352                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
11353                                      "internal %%<num>p might conflict with future printf extensions");
11354                 }
11355             }
11356             q = r; 
11357         }
11358
11359         if ( (width = expect_number(&q)) ) {
11360             if (*q == '$') {
11361                 ++q;
11362                 efix = width;
11363                 if (!no_redundant_warning)
11364                     /* I've forgotten if it's a better
11365                        micro-optimization to always set this or to
11366                        only set it if it's unset */
11367                     no_redundant_warning = TRUE;
11368             } else {
11369                 goto gotwidth;
11370             }
11371         }
11372
11373         /* FLAGS */
11374
11375         while (*q) {
11376             switch (*q) {
11377             case ' ':
11378             case '+':
11379                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
11380                     q++;
11381                 else
11382                     plus = *q++;
11383                 continue;
11384
11385             case '-':
11386                 left = TRUE;
11387                 q++;
11388                 continue;
11389
11390             case '0':
11391                 fill = *q++;
11392                 continue;
11393
11394             case '#':
11395                 alt = TRUE;
11396                 q++;
11397                 continue;
11398
11399             default:
11400                 break;
11401             }
11402             break;
11403         }
11404
11405       tryasterisk:
11406         if (*q == '*') {
11407             q++;
11408             if ( (ewix = expect_number(&q)) )
11409                 if (*q++ != '$')
11410                     goto unknown;
11411             asterisk = TRUE;
11412         }
11413         if (*q == 'v') {
11414             q++;
11415             if (vectorize)
11416                 goto unknown;
11417             if ((vectorarg = asterisk)) {
11418                 evix = ewix;
11419                 ewix = 0;
11420                 asterisk = FALSE;
11421             }
11422             vectorize = TRUE;
11423             goto tryasterisk;
11424         }
11425
11426         if (!asterisk)
11427         {
11428             if( *q == '0' )
11429                 fill = *q++;
11430             width = expect_number(&q);
11431         }
11432
11433         if (vectorize && vectorarg) {
11434             /* vectorizing, but not with the default "." */
11435             if (args)
11436                 vecsv = va_arg(*args, SV*);
11437             else if (evix) {
11438                 vecsv = (evix > 0 && evix <= svmax)
11439                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
11440             } else {
11441                 vecsv = svix < svmax
11442                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
11443             }
11444             dotstr = SvPV_const(vecsv, dotstrlen);
11445             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
11446                bad with tied or overloaded values that return UTF8.  */
11447             if (DO_UTF8(vecsv))
11448                 is_utf8 = TRUE;
11449             else if (has_utf8) {
11450                 vecsv = sv_mortalcopy(vecsv);
11451                 sv_utf8_upgrade(vecsv);
11452                 dotstr = SvPV_const(vecsv, dotstrlen);
11453                 is_utf8 = TRUE;
11454             }               
11455         }
11456
11457         if (asterisk) {
11458             if (args)
11459                 i = va_arg(*args, int);
11460             else
11461                 i = (ewix ? ewix <= svmax : svix < svmax) ?
11462                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
11463             left |= (i < 0);
11464             width = (i < 0) ? -i : i;
11465         }
11466       gotwidth:
11467
11468         /* PRECISION */
11469
11470         if (*q == '.') {
11471             q++;
11472             if (*q == '*') {
11473                 q++;
11474                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
11475                     goto unknown;
11476                 /* XXX: todo, support specified precision parameter */
11477                 if (epix)
11478                     goto unknown;
11479                 if (args)
11480                     i = va_arg(*args, int);
11481                 else
11482                     i = (ewix ? ewix <= svmax : svix < svmax)
11483                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
11484                 precis = i;
11485                 has_precis = !(i < 0);
11486             }
11487             else {
11488                 precis = 0;
11489                 while (isDIGIT(*q))
11490                     precis = precis * 10 + (*q++ - '0');
11491                 has_precis = TRUE;
11492             }
11493         }
11494
11495         if (vectorize) {
11496             if (args) {
11497                 VECTORIZE_ARGS
11498             }
11499             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
11500                 vecsv = svargs[efix ? efix-1 : svix++];
11501                 vecstr = (U8*)SvPV_const(vecsv,veclen);
11502                 vec_utf8 = DO_UTF8(vecsv);
11503
11504                 /* if this is a version object, we need to convert
11505                  * back into v-string notation and then let the
11506                  * vectorize happen normally
11507                  */
11508                 if (sv_isobject(vecsv) && sv_derived_from(vecsv, "version")) {
11509                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
11510                         Perl_ck_warner_d(aTHX_ packWARN(WARN_PRINTF),
11511                         "vector argument not supported with alpha versions");
11512                         goto vdblank;
11513                     }
11514                     vecsv = sv_newmortal();
11515                     scan_vstring((char *)vecstr, (char *)vecstr + veclen,
11516                                  vecsv);
11517                     vecstr = (U8*)SvPV_const(vecsv, veclen);
11518                     vec_utf8 = DO_UTF8(vecsv);
11519                 }
11520             }
11521             else {
11522               vdblank:
11523                 vecstr = (U8*)"";
11524                 veclen = 0;
11525             }
11526         }
11527
11528         /* SIZE */
11529
11530         switch (*q) {
11531 #ifdef WIN32
11532         case 'I':                       /* Ix, I32x, and I64x */
11533 #  ifdef USE_64_BIT_INT
11534             if (q[1] == '6' && q[2] == '4') {
11535                 q += 3;
11536                 intsize = 'q';
11537                 break;
11538             }
11539 #  endif
11540             if (q[1] == '3' && q[2] == '2') {
11541                 q += 3;
11542                 break;
11543             }
11544 #  ifdef USE_64_BIT_INT
11545             intsize = 'q';
11546 #  endif
11547             q++;
11548             break;
11549 #endif
11550 #if IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)
11551         case 'L':                       /* Ld */
11552             /* FALLTHROUGH */
11553 #ifdef USE_QUADMATH
11554         case 'Q':
11555             /* FALLTHROUGH */
11556 #endif
11557 #if IVSIZE >= 8
11558         case 'q':                       /* qd */
11559 #endif
11560             intsize = 'q';
11561             q++;
11562             break;
11563 #endif
11564         case 'l':
11565             ++q;
11566 #if IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)
11567             if (*q == 'l') {    /* lld, llf */
11568                 intsize = 'q';
11569                 ++q;
11570             }
11571             else
11572 #endif
11573                 intsize = 'l';
11574             break;
11575         case 'h':
11576             if (*++q == 'h') {  /* hhd, hhu */
11577                 intsize = 'c';
11578                 ++q;
11579             }
11580             else
11581                 intsize = 'h';
11582             break;
11583         case 'V':
11584         case 'z':
11585         case 't':
11586 #ifdef I_STDINT
11587         case 'j':
11588 #endif
11589             intsize = *q++;
11590             break;
11591         }
11592
11593         /* CONVERSION */
11594
11595         if (*q == '%') {
11596             eptr = q++;
11597             elen = 1;
11598             if (vectorize) {
11599                 c = '%';
11600                 goto unknown;
11601             }
11602             goto string;
11603         }
11604
11605         if (!vectorize && !args) {
11606             if (efix) {
11607                 const I32 i = efix-1;
11608                 argsv = (i >= 0 && i < svmax)
11609                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
11610             } else {
11611                 argsv = (svix >= 0 && svix < svmax)
11612                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
11613             }
11614         }
11615
11616         if (argsv && strchr("BbcDdiOopuUXx",*q)) {
11617             /* XXX va_arg(*args) case? need peek, use va_copy? */
11618             SvGETMAGIC(argsv);
11619             infnan = UNLIKELY(isinfnansv(argsv));
11620         }
11621
11622         switch (c = *q++) {
11623
11624             /* STRINGS */
11625
11626         case 'c':
11627             if (vectorize)
11628                 goto unknown;
11629             if (infnan)
11630                 Perl_croak(aTHX_ "Cannot printf %"NVgf" with '%c'",
11631                            /* no va_arg() case */
11632                            SvNV_nomg(argsv), (int)c);
11633             uv = (args) ? va_arg(*args, int) : SvIV_nomg(argsv);
11634             if ((uv > 255 ||
11635                  (!UVCHR_IS_INVARIANT(uv) && SvUTF8(sv)))
11636                 && !IN_BYTES) {
11637                 eptr = (char*)utf8buf;
11638                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
11639                 is_utf8 = TRUE;
11640             }
11641             else {
11642                 c = (char)uv;
11643                 eptr = &c;
11644                 elen = 1;
11645             }
11646             goto string;
11647
11648         case 's':
11649             if (vectorize)
11650                 goto unknown;
11651             if (args) {
11652                 eptr = va_arg(*args, char*);
11653                 if (eptr)
11654                     elen = strlen(eptr);
11655                 else {
11656                     eptr = (char *)nullstr;
11657                     elen = sizeof nullstr - 1;
11658                 }
11659             }
11660             else {
11661                 eptr = SvPV_const(argsv, elen);
11662                 if (DO_UTF8(argsv)) {
11663                     STRLEN old_precis = precis;
11664                     if (has_precis && precis < elen) {
11665                         STRLEN ulen = sv_or_pv_len_utf8(argsv, eptr, elen);
11666                         STRLEN p = precis > ulen ? ulen : precis;
11667                         precis = sv_or_pv_pos_u2b(argsv, eptr, p, 0);
11668                                                         /* sticks at end */
11669                     }
11670                     if (width) { /* fudge width (can't fudge elen) */
11671                         if (has_precis && precis < elen)
11672                             width += precis - old_precis;
11673                         else
11674                             width +=
11675                                 elen - sv_or_pv_len_utf8(argsv,eptr,elen);
11676                     }
11677                     is_utf8 = TRUE;
11678                 }
11679             }
11680
11681         string:
11682             if (has_precis && precis < elen)
11683                 elen = precis;
11684             break;
11685
11686             /* INTEGERS */
11687
11688         case 'p':
11689             if (infnan) {
11690                 goto floating_point;
11691             }
11692             if (alt || vectorize)
11693                 goto unknown;
11694             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
11695             base = 16;
11696             goto integer;
11697
11698         case 'D':
11699 #ifdef IV_IS_QUAD
11700             intsize = 'q';
11701 #else
11702             intsize = 'l';
11703 #endif
11704             /* FALLTHROUGH */
11705         case 'd':
11706         case 'i':
11707             if (infnan) {
11708                 goto floating_point;
11709             }
11710             if (vectorize) {
11711                 STRLEN ulen;
11712                 if (!veclen)
11713                     continue;
11714                 if (vec_utf8)
11715                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11716                                         UTF8_ALLOW_ANYUV);
11717                 else {
11718                     uv = *vecstr;
11719                     ulen = 1;
11720                 }
11721                 vecstr += ulen;
11722                 veclen -= ulen;
11723                 if (plus)
11724                      esignbuf[esignlen++] = plus;
11725             }
11726             else if (args) {
11727                 switch (intsize) {
11728                 case 'c':       iv = (char)va_arg(*args, int); break;
11729                 case 'h':       iv = (short)va_arg(*args, int); break;
11730                 case 'l':       iv = va_arg(*args, long); break;
11731                 case 'V':       iv = va_arg(*args, IV); break;
11732                 case 'z':       iv = va_arg(*args, SSize_t); break;
11733 #ifdef HAS_PTRDIFF_T
11734                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
11735 #endif
11736                 default:        iv = va_arg(*args, int); break;
11737 #ifdef I_STDINT
11738                 case 'j':       iv = va_arg(*args, intmax_t); break;
11739 #endif
11740                 case 'q':
11741 #if IVSIZE >= 8
11742                                 iv = va_arg(*args, Quad_t); break;
11743 #else
11744                                 goto unknown;
11745 #endif
11746                 }
11747             }
11748             else {
11749                 IV tiv = SvIV_nomg(argsv); /* work around GCC bug #13488 */
11750                 switch (intsize) {
11751                 case 'c':       iv = (char)tiv; break;
11752                 case 'h':       iv = (short)tiv; break;
11753                 case 'l':       iv = (long)tiv; break;
11754                 case 'V':
11755                 default:        iv = tiv; break;
11756                 case 'q':
11757 #if IVSIZE >= 8
11758                                 iv = (Quad_t)tiv; break;
11759 #else
11760                                 goto unknown;
11761 #endif
11762                 }
11763             }
11764             if ( !vectorize )   /* we already set uv above */
11765             {
11766                 if (iv >= 0) {
11767                     uv = iv;
11768                     if (plus)
11769                         esignbuf[esignlen++] = plus;
11770                 }
11771                 else {
11772                     uv = -iv;
11773                     esignbuf[esignlen++] = '-';
11774                 }
11775             }
11776             base = 10;
11777             goto integer;
11778
11779         case 'U':
11780 #ifdef IV_IS_QUAD
11781             intsize = 'q';
11782 #else
11783             intsize = 'l';
11784 #endif
11785             /* FALLTHROUGH */
11786         case 'u':
11787             base = 10;
11788             goto uns_integer;
11789
11790         case 'B':
11791         case 'b':
11792             base = 2;
11793             goto uns_integer;
11794
11795         case 'O':
11796 #ifdef IV_IS_QUAD
11797             intsize = 'q';
11798 #else
11799             intsize = 'l';
11800 #endif
11801             /* FALLTHROUGH */
11802         case 'o':
11803             base = 8;
11804             goto uns_integer;
11805
11806         case 'X':
11807         case 'x':
11808             base = 16;
11809
11810         uns_integer:
11811             if (infnan) {
11812                 goto floating_point;
11813             }
11814             if (vectorize) {
11815                 STRLEN ulen;
11816         vector:
11817                 if (!veclen)
11818                     continue;
11819                 if (vec_utf8)
11820                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11821                                         UTF8_ALLOW_ANYUV);
11822                 else {
11823                     uv = *vecstr;
11824                     ulen = 1;
11825                 }
11826                 vecstr += ulen;
11827                 veclen -= ulen;
11828             }
11829             else if (args) {
11830                 switch (intsize) {
11831                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
11832                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
11833                 case 'l':  uv = va_arg(*args, unsigned long); break;
11834                 case 'V':  uv = va_arg(*args, UV); break;
11835                 case 'z':  uv = va_arg(*args, Size_t); break;
11836 #ifdef HAS_PTRDIFF_T
11837                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
11838 #endif
11839 #ifdef I_STDINT
11840                 case 'j':  uv = va_arg(*args, uintmax_t); break;
11841 #endif
11842                 default:   uv = va_arg(*args, unsigned); break;
11843                 case 'q':
11844 #if IVSIZE >= 8
11845                            uv = va_arg(*args, Uquad_t); break;
11846 #else
11847                            goto unknown;
11848 #endif
11849                 }
11850             }
11851             else {
11852                 UV tuv = SvUV_nomg(argsv); /* work around GCC bug #13488 */
11853                 switch (intsize) {
11854                 case 'c':       uv = (unsigned char)tuv; break;
11855                 case 'h':       uv = (unsigned short)tuv; break;
11856                 case 'l':       uv = (unsigned long)tuv; break;
11857                 case 'V':
11858                 default:        uv = tuv; break;
11859                 case 'q':
11860 #if IVSIZE >= 8
11861                                 uv = (Uquad_t)tuv; break;
11862 #else
11863                                 goto unknown;
11864 #endif
11865                 }
11866             }
11867
11868         integer:
11869             {
11870                 char *ptr = ebuf + sizeof ebuf;
11871                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
11872                 unsigned dig;
11873                 zeros = 0;
11874
11875                 switch (base) {
11876                 case 16:
11877                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
11878                     do {
11879                         dig = uv & 15;
11880                         *--ptr = p[dig];
11881                     } while (uv >>= 4);
11882                     if (tempalt) {
11883                         esignbuf[esignlen++] = '0';
11884                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
11885                     }
11886                     break;
11887                 case 8:
11888                     do {
11889                         dig = uv & 7;
11890                         *--ptr = '0' + dig;
11891                     } while (uv >>= 3);
11892                     if (alt && *ptr != '0')
11893                         *--ptr = '0';
11894                     break;
11895                 case 2:
11896                     do {
11897                         dig = uv & 1;
11898                         *--ptr = '0' + dig;
11899                     } while (uv >>= 1);
11900                     if (tempalt) {
11901                         esignbuf[esignlen++] = '0';
11902                         esignbuf[esignlen++] = c;
11903                     }
11904                     break;
11905                 default:                /* it had better be ten or less */
11906                     do {
11907                         dig = uv % base;
11908                         *--ptr = '0' + dig;
11909                     } while (uv /= base);
11910                     break;
11911                 }
11912                 elen = (ebuf + sizeof ebuf) - ptr;
11913                 eptr = ptr;
11914                 if (has_precis) {
11915                     if (precis > elen)
11916                         zeros = precis - elen;
11917                     else if (precis == 0 && elen == 1 && *eptr == '0'
11918                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
11919                         elen = 0;
11920
11921                 /* a precision nullifies the 0 flag. */
11922                     if (fill == '0')
11923                         fill = ' ';
11924                 }
11925             }
11926             break;
11927
11928             /* FLOATING POINT */
11929
11930         floating_point:
11931
11932         case 'F':
11933             c = 'f';            /* maybe %F isn't supported here */
11934             /* FALLTHROUGH */
11935         case 'e': case 'E':
11936         case 'f':
11937         case 'g': case 'G':
11938         case 'a': case 'A':
11939             if (vectorize)
11940                 goto unknown;
11941
11942             /* This is evil, but floating point is even more evil */
11943
11944             /* for SV-style calling, we can only get NV
11945                for C-style calling, we assume %f is double;
11946                for simplicity we allow any of %Lf, %llf, %qf for long double
11947             */
11948             switch (intsize) {
11949             case 'V':
11950 #if defined(USE_LONG_DOUBLE) || defined(USE_QUADMATH)
11951                 intsize = 'q';
11952 #endif
11953                 break;
11954 /* [perl #20339] - we should accept and ignore %lf rather than die */
11955             case 'l':
11956                 /* FALLTHROUGH */
11957             default:
11958 #if defined(USE_LONG_DOUBLE) || defined(USE_QUADMATH)
11959                 intsize = args ? 0 : 'q';
11960 #endif
11961                 break;
11962             case 'q':
11963 #if defined(HAS_LONG_DOUBLE)
11964                 break;
11965 #else
11966                 /* FALLTHROUGH */
11967 #endif
11968             case 'c':
11969             case 'h':
11970             case 'z':
11971             case 't':
11972             case 'j':
11973                 goto unknown;
11974             }
11975
11976             /* Now we need (long double) if intsize == 'q', else (double). */
11977             if (args) {
11978                 /* Note: do not pull NVs off the va_list with va_arg()
11979                  * (pull doubles instead) because if you have a build
11980                  * with long doubles, you would always be pulling long
11981                  * doubles, which would badly break anyone using only
11982                  * doubles (i.e. the majority of builds). In other
11983                  * words, you cannot mix doubles and long doubles.
11984                  * The only case where you can pull off long doubles
11985                  * is when the format specifier explicitly asks so with
11986                  * e.g. "%Lg". */
11987 #ifdef USE_QUADMATH
11988                 fv = intsize == 'q' ?
11989                     va_arg(*args, NV) : va_arg(*args, double);
11990 #elif LONG_DOUBLESIZE > DOUBLESIZE
11991                 if (intsize == 'q')
11992                     fv = va_arg(*args, long double);
11993                 else
11994                     NV_TO_FV(va_arg(*args, double), fv);
11995 #else
11996                 fv = va_arg(*args, double);
11997 #endif
11998             }
11999             else
12000             {
12001                 if (!infnan) SvGETMAGIC(argsv);
12002                 NV_TO_FV(SvNV_nomg(argsv), fv);
12003             }
12004
12005             need = 0;
12006             /* frexp() (or frexpl) has some unspecified behaviour for
12007              * nan/inf/-inf, so let's avoid calling that on non-finites. */
12008             if (isALPHA_FOLD_NE(c, 'e') && FV_ISFINITE(fv)) {
12009                 i = PERL_INT_MIN;
12010                 (void)Perl_frexp((NV)fv, &i);
12011                 if (i == PERL_INT_MIN)
12012                     Perl_die(aTHX_ "panic: frexp: %"FV_GF, fv);
12013                 /* Do not set hexfp earlier since we want to printf
12014                  * Inf/NaN for Inf/NaN, not their hexfp. */
12015                 hexfp = isALPHA_FOLD_EQ(c, 'a');
12016                 if (UNLIKELY(hexfp)) {
12017                     /* This seriously overshoots in most cases, but
12018                      * better the undershooting.  Firstly, all bytes
12019                      * of the NV are not mantissa, some of them are
12020                      * exponent.  Secondly, for the reasonably common
12021                      * long doubles case, the "80-bit extended", two
12022                      * or six bytes of the NV are unused. */
12023                     need +=
12024                         (fv < 0) ? 1 : 0 + /* possible unary minus */
12025                         2 + /* "0x" */
12026                         1 + /* the very unlikely carry */
12027                         1 + /* "1" */
12028                         1 + /* "." */
12029                         2 * NVSIZE + /* 2 hexdigits for each byte */
12030                         2 + /* "p+" */
12031                         6 + /* exponent: sign, plus up to 16383 (quad fp) */
12032                         1;   /* \0 */
12033 #ifdef LONGDOUBLE_DOUBLEDOUBLE
12034                     /* However, for the "double double", we need more.
12035                      * Since each double has their own exponent, the
12036                      * doubles may float (haha) rather far from each
12037                      * other, and the number of required bits is much
12038                      * larger, up to total of DOUBLEDOUBLE_MAXBITS bits.
12039                      * See the definition of DOUBLEDOUBLE_MAXBITS.
12040                      *
12041                      * Need 2 hexdigits for each byte. */
12042                     need += (DOUBLEDOUBLE_MAXBITS/8 + 1) * 2;
12043                     /* the size for the exponent already added */
12044 #endif
12045 #ifdef USE_LOCALE_NUMERIC
12046                         STORE_LC_NUMERIC_SET_TO_NEEDED();
12047                         if (PL_numeric_radix_sv && IN_LC(LC_NUMERIC))
12048                             need += SvLEN(PL_numeric_radix_sv);
12049                         RESTORE_LC_NUMERIC();
12050 #endif
12051                 }
12052                 else if (i > 0) {
12053                     need = BIT_DIGITS(i);
12054                 } /* if i < 0, the number of digits is hard to predict. */
12055             }
12056             need += has_precis ? precis : 6; /* known default */
12057
12058             if (need < width)
12059                 need = width;
12060
12061 #ifdef HAS_LDBL_SPRINTF_BUG
12062             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
12063                with sfio - Allen <allens@cpan.org> */
12064
12065 #  ifdef DBL_MAX
12066 #    define MY_DBL_MAX DBL_MAX
12067 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
12068 #    if DOUBLESIZE >= 8
12069 #      define MY_DBL_MAX 1.7976931348623157E+308L
12070 #    else
12071 #      define MY_DBL_MAX 3.40282347E+38L
12072 #    endif
12073 #  endif
12074
12075 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
12076 #    define MY_DBL_MAX_BUG 1L
12077 #  else
12078 #    define MY_DBL_MAX_BUG MY_DBL_MAX
12079 #  endif
12080
12081 #  ifdef DBL_MIN
12082 #    define MY_DBL_MIN DBL_MIN
12083 #  else  /* XXX guessing! -Allen */
12084 #    if DOUBLESIZE >= 8
12085 #      define MY_DBL_MIN 2.2250738585072014E-308L
12086 #    else
12087 #      define MY_DBL_MIN 1.17549435E-38L
12088 #    endif
12089 #  endif
12090
12091             if ((intsize == 'q') && (c == 'f') &&
12092                 ((fv < MY_DBL_MAX_BUG) && (fv > -MY_DBL_MAX_BUG)) &&
12093                 (need < DBL_DIG)) {
12094                 /* it's going to be short enough that
12095                  * long double precision is not needed */
12096
12097                 if ((fv <= 0L) && (fv >= -0L))
12098                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
12099                 else {
12100                     /* would use Perl_fp_class as a double-check but not
12101                      * functional on IRIX - see perl.h comments */
12102
12103                     if ((fv >= MY_DBL_MIN) || (fv <= -MY_DBL_MIN)) {
12104                         /* It's within the range that a double can represent */
12105 #if defined(DBL_MAX) && !defined(DBL_MIN)
12106                         if ((fv >= ((long double)1/DBL_MAX)) ||
12107                             (fv <= (-(long double)1/DBL_MAX)))
12108 #endif
12109                         fix_ldbl_sprintf_bug = TRUE;
12110                     }
12111                 }
12112                 if (fix_ldbl_sprintf_bug == TRUE) {
12113                     double temp;
12114
12115                     intsize = 0;
12116                     temp = (double)fv;
12117                     fv = (NV)temp;
12118                 }
12119             }
12120
12121 #  undef MY_DBL_MAX
12122 #  undef MY_DBL_MAX_BUG
12123 #  undef MY_DBL_MIN
12124
12125 #endif /* HAS_LDBL_SPRINTF_BUG */
12126
12127             need += 20; /* fudge factor */
12128             if (PL_efloatsize < need) {
12129                 Safefree(PL_efloatbuf);
12130                 PL_efloatsize = need + 20; /* more fudge */
12131                 Newx(PL_efloatbuf, PL_efloatsize, char);
12132                 PL_efloatbuf[0] = '\0';
12133             }
12134
12135             if ( !(width || left || plus || alt) && fill != '0'
12136                  && has_precis && intsize != 'q'        /* Shortcuts */
12137                  && LIKELY(!Perl_isinfnan((NV)fv)) ) {
12138                 /* See earlier comment about buggy Gconvert when digits,
12139                    aka precis is 0  */
12140                 if ( c == 'g' && precis ) {
12141                     STORE_LC_NUMERIC_SET_TO_NEEDED();
12142                     SNPRINTF_G(fv, PL_efloatbuf, PL_efloatsize, precis);
12143                     /* May return an empty string for digits==0 */
12144                     if (*PL_efloatbuf) {
12145                         elen = strlen(PL_efloatbuf);
12146                         goto float_converted;
12147                     }
12148                 } else if ( c == 'f' && !precis ) {
12149                     if ((eptr = F0convert(fv, ebuf + sizeof ebuf, &elen)))
12150                         break;
12151                 }
12152             }
12153
12154             if (UNLIKELY(hexfp)) {
12155                 /* Hexadecimal floating point. */
12156                 char* p = PL_efloatbuf;
12157                 U8 vhex[VHEX_SIZE];
12158                 U8* v = vhex; /* working pointer to vhex */
12159                 U8* vend; /* pointer to one beyond last digit of vhex */
12160                 U8* vfnz = NULL; /* first non-zero */
12161                 const bool lower = (c == 'a');
12162                 /* At output the values of vhex (up to vend) will
12163                  * be mapped through the xdig to get the actual
12164                  * human-readable xdigits. */
12165                 const char* xdig = PL_hexdigit;
12166                 int zerotail = 0; /* how many extra zeros to append */
12167                 int exponent = 0; /* exponent of the floating point input */
12168
12169                 /* XXX: denormals, NaN, Inf.
12170                  *
12171                  * For example with denormals, (assuming the vanilla
12172                  * 64-bit double): the exponent is zero. 1xp-1074 is
12173                  * the smallest denormal and the smallest double, it
12174                  * should be output as 0x0.0000000000001p-1022 to
12175                  * match its internal structure. */
12176
12177                 /* Note: fv can be (and often is) long double.
12178                  * Here it is explicitly cast to NV. */
12179                 vend = S_hextract(aTHX_ (NV)fv, &exponent, vhex, NULL);
12180                 S_hextract(aTHX_ (NV)fv, &exponent, vhex, vend);
12181
12182 #if NVSIZE > DOUBLESIZE
12183 #  ifdef HEXTRACT_HAS_IMPLICIT_BIT
12184                 /* In this case there is an implicit bit,
12185                  * and therefore the exponent is shifted shift by one. */
12186                 exponent--;
12187 #  else
12188                 /* In this case there is no implicit bit,
12189                  * and the exponent is shifted by the first xdigit. */
12190                 exponent -= 4;
12191 #  endif
12192 #endif
12193
12194                 if (fv < 0)
12195                     *p++ = '-';
12196                 else if (plus)
12197                     *p++ = plus;
12198                 *p++ = '0';
12199                 if (lower) {
12200                     *p++ = 'x';
12201                 }
12202                 else {
12203                     *p++ = 'X';
12204                     xdig += 16; /* Use uppercase hex. */
12205                 }
12206
12207                 /* Find the first non-zero xdigit. */
12208                 for (v = vhex; v < vend; v++) {
12209                     if (*v) {
12210                         vfnz = v;
12211                         break;
12212                     }
12213                 }
12214
12215                 if (vfnz) {
12216                     U8* vlnz = NULL; /* The last non-zero. */
12217
12218                     /* Find the last non-zero xdigit. */
12219                     for (v = vend - 1; v >= vhex; v--) {
12220                         if (*v) {
12221                             vlnz = v;
12222                             break;
12223                         }
12224                     }
12225
12226 #if NVSIZE == DOUBLESIZE
12227                     if (fv != 0.0)
12228                         exponent--;
12229 #endif
12230
12231                     if (precis > 0) {
12232                         v = vhex + precis + 1;
12233                         if (v < vend) {
12234                             /* Round away from zero: if the tail
12235                              * beyond the precis xdigits is equal to
12236                              * or greater than 0x8000... */
12237                             bool round = *v > 0x8;
12238                             if (!round && *v == 0x8) {
12239                                 for (v++; v < vend; v++) {
12240                                     if (*v) {
12241                                         round = TRUE;
12242                                         break;
12243                                     }
12244                                 }
12245                             }
12246                             if (round) {
12247                                 for (v = vhex + precis; v >= vhex; v--) {
12248                                     if (*v < 0xF) {
12249                                         (*v)++;
12250                                         break;
12251                                     }
12252                                     *v = 0;
12253                                     if (v == vhex) {
12254                                         /* If the carry goes all the way to
12255                                          * the front, we need to output
12256                                          * a single '1'. This goes against
12257                                          * the "xdigit and then radix"
12258                                          * but since this is "cannot happen"
12259                                          * category, that is probably good. */
12260                                         *p++ = xdig[1];
12261                                     }
12262                                 }
12263                             }
12264                             /* The new effective "last non zero". */
12265                             vlnz = vhex + precis;
12266                         }
12267                         else {
12268                             zerotail = precis - (vlnz - vhex);
12269                         }
12270                     }
12271
12272                     v = vhex;
12273                     *p++ = xdig[*v++];
12274
12275                     /* The radix is always output after the first
12276                      * non-zero xdigit, or if alt.  */
12277                     if (vfnz < vlnz || alt) {
12278 #ifndef USE_LOCALE_NUMERIC
12279                         *p++ = '.';
12280 #else
12281                         STORE_LC_NUMERIC_SET_TO_NEEDED();
12282                         if (PL_numeric_radix_sv && IN_LC(LC_NUMERIC)) {
12283                             STRLEN n;
12284                             const char* r = SvPV(PL_numeric_radix_sv, n);
12285                             Copy(r, p, n, char);
12286                             p += n;
12287                         }
12288                         else {
12289                             *p++ = '.';
12290                         }
12291                         RESTORE_LC_NUMERIC();
12292 #endif
12293                     }
12294
12295                     while (v <= vlnz)
12296                         *p++ = xdig[*v++];
12297
12298                     while (zerotail--)
12299                         *p++ = '0';
12300                 }
12301                 else {
12302                     *p++ = '0';
12303                     exponent = 0;
12304                 }
12305
12306                 elen = p - PL_efloatbuf;
12307                 elen += my_snprintf(p, PL_efloatsize - elen,
12308                                     "%c%+d", lower ? 'p' : 'P',
12309                                     exponent);
12310
12311                 if (elen < width) {
12312                     if (left) {
12313                         /* Pad the back with spaces. */
12314                         memset(PL_efloatbuf + elen, ' ', width - elen);
12315                     }
12316                     else if (fill == '0') {
12317                         /* Insert the zeros between the "0x" and
12318                          * the digits, otherwise we end up with
12319                          * "0000xHHH..." */
12320                         STRLEN nzero = width - elen;
12321                         char* zerox = PL_efloatbuf + 2;
12322                         Move(zerox, zerox + nzero,  elen - 2, char);
12323                         memset(zerox, fill, nzero);
12324                     }
12325                     else {
12326                         /* Move it to the right. */
12327                         Move(PL_efloatbuf, PL_efloatbuf + width - elen,
12328                              elen, char);
12329                         /* Pad the front with spaces. */
12330                         memset(PL_efloatbuf, ' ', width - elen);
12331                     }
12332                     elen = width;
12333                 }
12334             }
12335             else
12336                 elen = S_infnan_2pv(fv, PL_efloatbuf, PL_efloatsize);
12337
12338             if (elen == 0) {
12339                 char *ptr = ebuf + sizeof ebuf;
12340                 *--ptr = '\0';
12341                 *--ptr = c;
12342 #if defined(USE_QUADMATH)
12343                 if (intsize == 'q') {
12344                     /* "g" -> "Qg" */
12345                     *--ptr = 'Q';
12346                 }
12347                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
12348 #elif defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
12349                 /* Note that this is HAS_LONG_DOUBLE and PERL_PRIfldbl,
12350                  * not USE_LONG_DOUBLE and NVff.  In other words,
12351                  * this needs to work without USE_LONG_DOUBLE. */
12352                 if (intsize == 'q') {
12353                     /* Copy the one or more characters in a long double
12354                      * format before the 'base' ([efgEFG]) character to
12355                      * the format string. */
12356                     static char const ldblf[] = PERL_PRIfldbl;
12357                     char const *p = ldblf + sizeof(ldblf) - 3;
12358                     while (p >= ldblf) { *--ptr = *p--; }
12359                 }
12360 #endif
12361                 if (has_precis) {
12362                     base = precis;
12363                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
12364                     *--ptr = '.';
12365                 }
12366                 if (width) {
12367                     base = width;
12368                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
12369                 }
12370                 if (fill == '0')
12371                     *--ptr = fill;
12372                 if (left)
12373                     *--ptr = '-';
12374                 if (plus)
12375                     *--ptr = plus;
12376                 if (alt)
12377                     *--ptr = '#';
12378                 *--ptr = '%';
12379
12380                 /* No taint.  Otherwise we are in the strange situation
12381                  * where printf() taints but print($float) doesn't.
12382                  * --jhi */
12383
12384                 STORE_LC_NUMERIC_SET_TO_NEEDED();
12385
12386                 /* hopefully the above makes ptr a very constrained format
12387                  * that is safe to use, even though it's not literal */
12388                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
12389 #ifdef USE_QUADMATH
12390                 {
12391                     const char* qfmt = quadmath_format_single(ptr);
12392                     if (!qfmt)
12393                         Perl_croak_nocontext("panic: quadmath invalid format \"%s\"", ptr);
12394                     elen = quadmath_snprintf(PL_efloatbuf, PL_efloatsize,
12395                                              qfmt, fv);
12396                     if ((IV)elen == -1)
12397                         Perl_croak_nocontext("panic: quadmath_snprintf failed, format \"%s|'", qfmt);
12398                     if (qfmt != ptr)
12399                         Safefree(qfmt);
12400                 }
12401 #elif defined(HAS_LONG_DOUBLE)
12402                 elen = ((intsize == 'q')
12403                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, fv)
12404                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)fv));
12405 #else
12406                 elen = my_sprintf(PL_efloatbuf, ptr, fv);
12407 #endif
12408                 GCC_DIAG_RESTORE;
12409             }
12410
12411         float_converted:
12412             eptr = PL_efloatbuf;
12413             assert((IV)elen > 0); /* here zero elen is bad */
12414
12415 #ifdef USE_LOCALE_NUMERIC
12416             /* If the decimal point character in the string is UTF-8, make the
12417              * output utf8 */
12418             if (PL_numeric_radix_sv && SvUTF8(PL_numeric_radix_sv)
12419                 && instr(eptr, SvPVX_const(PL_numeric_radix_sv)))
12420             {
12421                 is_utf8 = TRUE;
12422             }
12423 #endif
12424
12425             break;
12426
12427             /* SPECIAL */
12428
12429         case 'n':
12430             if (vectorize)
12431                 goto unknown;
12432             i = SvCUR(sv) - origlen;
12433             if (args) {
12434                 switch (intsize) {
12435                 case 'c':       *(va_arg(*args, char*)) = i; break;
12436                 case 'h':       *(va_arg(*args, short*)) = i; break;
12437                 default:        *(va_arg(*args, int*)) = i; break;
12438                 case 'l':       *(va_arg(*args, long*)) = i; break;
12439                 case 'V':       *(va_arg(*args, IV*)) = i; break;
12440                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
12441 #ifdef HAS_PTRDIFF_T
12442                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
12443 #endif
12444 #ifdef I_STDINT
12445                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
12446 #endif
12447                 case 'q':
12448 #if IVSIZE >= 8
12449                                 *(va_arg(*args, Quad_t*)) = i; break;
12450 #else
12451                                 goto unknown;
12452 #endif
12453                 }
12454             }
12455             else
12456                 sv_setuv_mg(argsv, has_utf8 ? (UV)sv_len_utf8(sv) : (UV)i);
12457             continue;   /* not "break" */
12458
12459             /* UNKNOWN */
12460
12461         default:
12462       unknown:
12463             if (!args
12464                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
12465                 && ckWARN(WARN_PRINTF))
12466             {
12467                 SV * const msg = sv_newmortal();
12468                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
12469                           (PL_op->op_type == OP_PRTF) ? "" : "s");
12470                 if (fmtstart < patend) {
12471                     const char * const fmtend = q < patend ? q : patend;
12472                     const char * f;
12473                     sv_catpvs(msg, "\"%");
12474                     for (f = fmtstart; f < fmtend; f++) {
12475                         if (isPRINT(*f)) {
12476                             sv_catpvn_nomg(msg, f, 1);
12477                         } else {
12478                             Perl_sv_catpvf(aTHX_ msg,
12479                                            "\\%03"UVof, (UV)*f & 0xFF);
12480                         }
12481                     }
12482                     sv_catpvs(msg, "\"");
12483                 } else {
12484                     sv_catpvs(msg, "end of string");
12485                 }
12486                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
12487             }
12488
12489             /* output mangled stuff ... */
12490             if (c == '\0')
12491                 --q;
12492             eptr = p;
12493             elen = q - p;
12494
12495             /* ... right here, because formatting flags should not apply */
12496             SvGROW(sv, SvCUR(sv) + elen + 1);
12497             p = SvEND(sv);
12498             Copy(eptr, p, elen, char);
12499             p += elen;
12500             *p = '\0';
12501             SvCUR_set(sv, p - SvPVX_const(sv));
12502             svix = osvix;
12503             continue;   /* not "break" */
12504         }
12505
12506         if (is_utf8 != has_utf8) {
12507             if (is_utf8) {
12508                 if (SvCUR(sv))
12509                     sv_utf8_upgrade(sv);
12510             }
12511             else {
12512                 const STRLEN old_elen = elen;
12513                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
12514                 sv_utf8_upgrade(nsv);
12515                 eptr = SvPVX_const(nsv);
12516                 elen = SvCUR(nsv);
12517
12518                 if (width) { /* fudge width (can't fudge elen) */
12519                     width += elen - old_elen;
12520                 }
12521                 is_utf8 = TRUE;
12522             }
12523         }
12524
12525         assert((IV)elen >= 0); /* here zero elen is fine */
12526         have = esignlen + zeros + elen;
12527         if (have < zeros)
12528             croak_memory_wrap();
12529
12530         need = (have > width ? have : width);
12531         gap = need - have;
12532
12533         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
12534             croak_memory_wrap();
12535         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
12536         p = SvEND(sv);
12537         if (esignlen && fill == '0') {
12538             int i;
12539             for (i = 0; i < (int)esignlen; i++)
12540                 *p++ = esignbuf[i];
12541         }
12542         if (gap && !left) {
12543             memset(p, fill, gap);
12544             p += gap;
12545         }
12546         if (esignlen && fill != '0') {
12547             int i;
12548             for (i = 0; i < (int)esignlen; i++)
12549                 *p++ = esignbuf[i];
12550         }
12551         if (zeros) {
12552             int i;
12553             for (i = zeros; i; i--)
12554                 *p++ = '0';
12555         }
12556         if (elen) {
12557             Copy(eptr, p, elen, char);
12558             p += elen;
12559         }
12560         if (gap && left) {
12561             memset(p, ' ', gap);
12562             p += gap;
12563         }
12564         if (vectorize) {
12565             if (veclen) {
12566                 Copy(dotstr, p, dotstrlen, char);
12567                 p += dotstrlen;
12568             }
12569             else
12570                 vectorize = FALSE;              /* done iterating over vecstr */
12571         }
12572         if (is_utf8)
12573             has_utf8 = TRUE;
12574         if (has_utf8)
12575             SvUTF8_on(sv);
12576         *p = '\0';
12577         SvCUR_set(sv, p - SvPVX_const(sv));
12578         if (vectorize) {
12579             esignlen = 0;
12580             goto vector;
12581         }
12582     }
12583
12584     /* Now that we've consumed all our printf format arguments (svix)
12585      * do we have things left on the stack that we didn't use?
12586      */
12587     if (!no_redundant_warning && svmax >= svix + 1 && ckWARN(WARN_REDUNDANT)) {
12588         Perl_warner(aTHX_ packWARN(WARN_REDUNDANT), "Redundant argument in %s",
12589                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
12590     }
12591
12592     SvTAINT(sv);
12593
12594     RESTORE_LC_NUMERIC();   /* Done outside loop, so don't have to save/restore
12595                                each iteration. */
12596 }
12597
12598 /* =========================================================================
12599
12600 =head1 Cloning an interpreter
12601
12602 =cut
12603
12604 All the macros and functions in this section are for the private use of
12605 the main function, perl_clone().
12606
12607 The foo_dup() functions make an exact copy of an existing foo thingy.
12608 During the course of a cloning, a hash table is used to map old addresses
12609 to new addresses.  The table is created and manipulated with the
12610 ptr_table_* functions.
12611
12612  * =========================================================================*/
12613
12614
12615 #if defined(USE_ITHREADS)
12616
12617 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
12618 #ifndef GpREFCNT_inc
12619 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
12620 #endif
12621
12622
12623 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
12624    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
12625    If this changes, please unmerge ss_dup.
12626    Likewise, sv_dup_inc_multiple() relies on this fact.  */
12627 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
12628 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
12629 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
12630 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
12631 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
12632 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
12633 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
12634 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
12635 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
12636 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
12637 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
12638 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
12639 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
12640
12641 /* clone a parser */
12642
12643 yy_parser *
12644 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
12645 {
12646     yy_parser *parser;
12647
12648     PERL_ARGS_ASSERT_PARSER_DUP;
12649
12650     if (!proto)
12651         return NULL;
12652
12653     /* look for it in the table first */
12654     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
12655     if (parser)
12656         return parser;
12657
12658     /* create anew and remember what it is */
12659     Newxz(parser, 1, yy_parser);
12660     ptr_table_store(PL_ptr_table, proto, parser);
12661
12662     /* XXX these not yet duped */
12663     parser->old_parser = NULL;
12664     parser->stack = NULL;
12665     parser->ps = NULL;
12666     parser->stack_size = 0;
12667     /* XXX parser->stack->state = 0; */
12668
12669     /* XXX eventually, just Copy() most of the parser struct ? */
12670
12671     parser->lex_brackets = proto->lex_brackets;
12672     parser->lex_casemods = proto->lex_casemods;
12673     parser->lex_brackstack = savepvn(proto->lex_brackstack,
12674                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
12675     parser->lex_casestack = savepvn(proto->lex_casestack,
12676                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
12677     parser->lex_defer   = proto->lex_defer;
12678     parser->lex_dojoin  = proto->lex_dojoin;
12679     parser->lex_formbrack = proto->lex_formbrack;
12680     parser->lex_inpat   = proto->lex_inpat;
12681     parser->lex_inwhat  = proto->lex_inwhat;
12682     parser->lex_op      = proto->lex_op;
12683     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
12684     parser->lex_starts  = proto->lex_starts;
12685     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
12686     parser->multi_close = proto->multi_close;
12687     parser->multi_open  = proto->multi_open;
12688     parser->multi_start = proto->multi_start;
12689     parser->multi_end   = proto->multi_end;
12690     parser->preambled   = proto->preambled;
12691     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
12692     parser->linestr     = sv_dup_inc(proto->linestr, param);
12693     parser->expect      = proto->expect;
12694     parser->copline     = proto->copline;
12695     parser->last_lop_op = proto->last_lop_op;
12696     parser->lex_state   = proto->lex_state;
12697     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
12698     /* rsfp_filters entries have fake IoDIRP() */
12699     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
12700     parser->in_my       = proto->in_my;
12701     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
12702     parser->error_count = proto->error_count;
12703
12704
12705     parser->linestr     = sv_dup_inc(proto->linestr, param);
12706
12707     {
12708         char * const ols = SvPVX(proto->linestr);
12709         char * const ls  = SvPVX(parser->linestr);
12710
12711         parser->bufptr      = ls + (proto->bufptr >= ols ?
12712                                     proto->bufptr -  ols : 0);
12713         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
12714                                     proto->oldbufptr -  ols : 0);
12715         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
12716                                     proto->oldoldbufptr -  ols : 0);
12717         parser->linestart   = ls + (proto->linestart >= ols ?
12718                                     proto->linestart -  ols : 0);
12719         parser->last_uni    = ls + (proto->last_uni >= ols ?
12720                                     proto->last_uni -  ols : 0);
12721         parser->last_lop    = ls + (proto->last_lop >= ols ?
12722                                     proto->last_lop -  ols : 0);
12723
12724         parser->bufend      = ls + SvCUR(parser->linestr);
12725     }
12726
12727     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
12728
12729
12730     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
12731     Copy(proto->nexttype, parser->nexttype, 5,  I32);
12732     parser->nexttoke    = proto->nexttoke;
12733
12734     /* XXX should clone saved_curcop here, but we aren't passed
12735      * proto_perl; so do it in perl_clone_using instead */
12736
12737     return parser;
12738 }
12739
12740
12741 /* duplicate a file handle */
12742
12743 PerlIO *
12744 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
12745 {
12746     PerlIO *ret;
12747
12748     PERL_ARGS_ASSERT_FP_DUP;
12749     PERL_UNUSED_ARG(type);
12750
12751     if (!fp)
12752         return (PerlIO*)NULL;
12753
12754     /* look for it in the table first */
12755     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
12756     if (ret)
12757         return ret;
12758
12759     /* create anew and remember what it is */
12760     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
12761     ptr_table_store(PL_ptr_table, fp, ret);
12762     return ret;
12763 }
12764
12765 /* duplicate a directory handle */
12766
12767 DIR *
12768 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
12769 {
12770     DIR *ret;
12771
12772 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
12773     DIR *pwd;
12774     const Direntry_t *dirent;
12775     char smallbuf[256];
12776     char *name = NULL;
12777     STRLEN len = 0;
12778     long pos;
12779 #endif
12780
12781     PERL_UNUSED_CONTEXT;
12782     PERL_ARGS_ASSERT_DIRP_DUP;
12783
12784     if (!dp)
12785         return (DIR*)NULL;
12786
12787     /* look for it in the table first */
12788     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
12789     if (ret)
12790         return ret;
12791
12792 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
12793
12794     PERL_UNUSED_ARG(param);
12795
12796     /* create anew */
12797
12798     /* open the current directory (so we can switch back) */
12799     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
12800
12801     /* chdir to our dir handle and open the present working directory */
12802     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
12803         PerlDir_close(pwd);
12804         return (DIR *)NULL;
12805     }
12806     /* Now we should have two dir handles pointing to the same dir. */
12807
12808     /* Be nice to the calling code and chdir back to where we were. */
12809     /* XXX If this fails, then what? */
12810     PERL_UNUSED_RESULT(fchdir(my_dirfd(pwd)));
12811
12812     /* We have no need of the pwd handle any more. */
12813     PerlDir_close(pwd);
12814
12815 #ifdef DIRNAMLEN
12816 # define d_namlen(d) (d)->d_namlen
12817 #else
12818 # define d_namlen(d) strlen((d)->d_name)
12819 #endif
12820     /* Iterate once through dp, to get the file name at the current posi-
12821        tion. Then step back. */
12822     pos = PerlDir_tell(dp);
12823     if ((dirent = PerlDir_read(dp))) {
12824         len = d_namlen(dirent);
12825         if (len <= sizeof smallbuf) name = smallbuf;
12826         else Newx(name, len, char);
12827         Move(dirent->d_name, name, len, char);
12828     }
12829     PerlDir_seek(dp, pos);
12830
12831     /* Iterate through the new dir handle, till we find a file with the
12832        right name. */
12833     if (!dirent) /* just before the end */
12834         for(;;) {
12835             pos = PerlDir_tell(ret);
12836             if (PerlDir_read(ret)) continue; /* not there yet */
12837             PerlDir_seek(ret, pos); /* step back */
12838             break;
12839         }
12840     else {
12841         const long pos0 = PerlDir_tell(ret);
12842         for(;;) {
12843             pos = PerlDir_tell(ret);
12844             if ((dirent = PerlDir_read(ret))) {
12845                 if (len == (STRLEN)d_namlen(dirent)
12846                     && memEQ(name, dirent->d_name, len)) {
12847                     /* found it */
12848                     PerlDir_seek(ret, pos); /* step back */
12849                     break;
12850                 }
12851                 /* else we are not there yet; keep iterating */
12852             }
12853             else { /* This is not meant to happen. The best we can do is
12854                       reset the iterator to the beginning. */
12855                 PerlDir_seek(ret, pos0);
12856                 break;
12857             }
12858         }
12859     }
12860 #undef d_namlen
12861
12862     if (name && name != smallbuf)
12863         Safefree(name);
12864 #endif
12865
12866 #ifdef WIN32
12867     ret = win32_dirp_dup(dp, param);
12868 #endif
12869
12870     /* pop it in the pointer table */
12871     if (ret)
12872         ptr_table_store(PL_ptr_table, dp, ret);
12873
12874     return ret;
12875 }
12876
12877 /* duplicate a typeglob */
12878
12879 GP *
12880 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
12881 {
12882     GP *ret;
12883
12884     PERL_ARGS_ASSERT_GP_DUP;
12885
12886     if (!gp)
12887         return (GP*)NULL;
12888     /* look for it in the table first */
12889     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
12890     if (ret)
12891         return ret;
12892
12893     /* create anew and remember what it is */
12894     Newxz(ret, 1, GP);
12895     ptr_table_store(PL_ptr_table, gp, ret);
12896
12897     /* clone */
12898     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
12899        on Newxz() to do this for us.  */
12900     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
12901     ret->gp_io          = io_dup_inc(gp->gp_io, param);
12902     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
12903     ret->gp_av          = av_dup_inc(gp->gp_av, param);
12904     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
12905     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
12906     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
12907     ret->gp_cvgen       = gp->gp_cvgen;
12908     ret->gp_line        = gp->gp_line;
12909     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
12910     return ret;
12911 }
12912
12913 /* duplicate a chain of magic */
12914
12915 MAGIC *
12916 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
12917 {
12918     MAGIC *mgret = NULL;
12919     MAGIC **mgprev_p = &mgret;
12920
12921     PERL_ARGS_ASSERT_MG_DUP;
12922
12923     for (; mg; mg = mg->mg_moremagic) {
12924         MAGIC *nmg;
12925
12926         if ((param->flags & CLONEf_JOIN_IN)
12927                 && mg->mg_type == PERL_MAGIC_backref)
12928             /* when joining, we let the individual SVs add themselves to
12929              * backref as needed. */
12930             continue;
12931
12932         Newx(nmg, 1, MAGIC);
12933         *mgprev_p = nmg;
12934         mgprev_p = &(nmg->mg_moremagic);
12935
12936         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
12937            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
12938            from the original commit adding Perl_mg_dup() - revision 4538.
12939            Similarly there is the annotation "XXX random ptr?" next to the
12940            assignment to nmg->mg_ptr.  */
12941         *nmg = *mg;
12942
12943         /* FIXME for plugins
12944         if (nmg->mg_type == PERL_MAGIC_qr) {
12945             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
12946         }
12947         else
12948         */
12949         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
12950                           ? nmg->mg_type == PERL_MAGIC_backref
12951                                 /* The backref AV has its reference
12952                                  * count deliberately bumped by 1 */
12953                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
12954                                                     nmg->mg_obj, param))
12955                                 : sv_dup_inc(nmg->mg_obj, param)
12956                           : sv_dup(nmg->mg_obj, param);
12957
12958         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
12959             if (nmg->mg_len > 0) {
12960                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
12961                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
12962                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
12963                 {
12964                     AMT * const namtp = (AMT*)nmg->mg_ptr;
12965                     sv_dup_inc_multiple((SV**)(namtp->table),
12966                                         (SV**)(namtp->table), NofAMmeth, param);
12967                 }
12968             }
12969             else if (nmg->mg_len == HEf_SVKEY)
12970                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
12971         }
12972         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
12973             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
12974         }
12975     }
12976     return mgret;
12977 }
12978
12979 #endif /* USE_ITHREADS */
12980
12981 struct ptr_tbl_arena {
12982     struct ptr_tbl_arena *next;
12983     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
12984 };
12985
12986 /* create a new pointer-mapping table */
12987
12988 PTR_TBL_t *
12989 Perl_ptr_table_new(pTHX)
12990 {
12991     PTR_TBL_t *tbl;
12992     PERL_UNUSED_CONTEXT;
12993
12994     Newx(tbl, 1, PTR_TBL_t);
12995     tbl->tbl_max        = 511;
12996     tbl->tbl_items      = 0;
12997     tbl->tbl_arena      = NULL;
12998     tbl->tbl_arena_next = NULL;
12999     tbl->tbl_arena_end  = NULL;
13000     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
13001     return tbl;
13002 }
13003
13004 #define PTR_TABLE_HASH(ptr) \
13005   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
13006
13007 /* map an existing pointer using a table */
13008
13009 STATIC PTR_TBL_ENT_t *
13010 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
13011 {
13012     PTR_TBL_ENT_t *tblent;
13013     const UV hash = PTR_TABLE_HASH(sv);
13014
13015     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
13016
13017     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
13018     for (; tblent; tblent = tblent->next) {
13019         if (tblent->oldval == sv)
13020             return tblent;
13021     }
13022     return NULL;
13023 }
13024
13025 void *
13026 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
13027 {
13028     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
13029
13030     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
13031     PERL_UNUSED_CONTEXT;
13032
13033     return tblent ? tblent->newval : NULL;
13034 }
13035
13036 /* add a new entry to a pointer-mapping table 'tbl'.  In hash terms, 'oldsv' is
13037  * the key; 'newsv' is the value.  The names "old" and "new" are specific to
13038  * the core's typical use of ptr_tables in thread cloning. */
13039
13040 void
13041 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
13042 {
13043     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
13044
13045     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
13046     PERL_UNUSED_CONTEXT;
13047
13048     if (tblent) {
13049         tblent->newval = newsv;
13050     } else {
13051         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
13052
13053         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
13054             struct ptr_tbl_arena *new_arena;
13055
13056             Newx(new_arena, 1, struct ptr_tbl_arena);
13057             new_arena->next = tbl->tbl_arena;
13058             tbl->tbl_arena = new_arena;
13059             tbl->tbl_arena_next = new_arena->array;
13060             tbl->tbl_arena_end = C_ARRAY_END(new_arena->array);
13061         }
13062
13063         tblent = tbl->tbl_arena_next++;
13064
13065         tblent->oldval = oldsv;
13066         tblent->newval = newsv;
13067         tblent->next = tbl->tbl_ary[entry];
13068         tbl->tbl_ary[entry] = tblent;
13069         tbl->tbl_items++;
13070         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
13071             ptr_table_split(tbl);
13072     }
13073 }
13074
13075 /* double the hash bucket size of an existing ptr table */
13076
13077 void
13078 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
13079 {
13080     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
13081     const UV oldsize = tbl->tbl_max + 1;
13082     UV newsize = oldsize * 2;
13083     UV i;
13084
13085     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
13086     PERL_UNUSED_CONTEXT;
13087
13088     Renew(ary, newsize, PTR_TBL_ENT_t*);
13089     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
13090     tbl->tbl_max = --newsize;
13091     tbl->tbl_ary = ary;
13092     for (i=0; i < oldsize; i++, ary++) {
13093         PTR_TBL_ENT_t **entp = ary;
13094         PTR_TBL_ENT_t *ent = *ary;
13095         PTR_TBL_ENT_t **curentp;
13096         if (!ent)
13097             continue;
13098         curentp = ary + oldsize;
13099         do {
13100             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
13101                 *entp = ent->next;
13102                 ent->next = *curentp;
13103                 *curentp = ent;
13104             }
13105             else
13106                 entp = &ent->next;
13107             ent = *entp;
13108         } while (ent);
13109     }
13110 }
13111
13112 /* remove all the entries from a ptr table */
13113 /* Deprecated - will be removed post 5.14 */
13114
13115 void
13116 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
13117 {
13118     PERL_UNUSED_CONTEXT;
13119     if (tbl && tbl->tbl_items) {
13120         struct ptr_tbl_arena *arena = tbl->tbl_arena;
13121
13122         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
13123
13124         while (arena) {
13125             struct ptr_tbl_arena *next = arena->next;
13126
13127             Safefree(arena);
13128             arena = next;
13129         };
13130
13131         tbl->tbl_items = 0;
13132         tbl->tbl_arena = NULL;
13133         tbl->tbl_arena_next = NULL;
13134         tbl->tbl_arena_end = NULL;
13135     }
13136 }
13137
13138 /* clear and free a ptr table */
13139
13140 void
13141 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
13142 {
13143     struct ptr_tbl_arena *arena;
13144
13145     PERL_UNUSED_CONTEXT;
13146
13147     if (!tbl) {
13148         return;
13149     }
13150
13151     arena = tbl->tbl_arena;
13152
13153     while (arena) {
13154         struct ptr_tbl_arena *next = arena->next;
13155
13156         Safefree(arena);
13157         arena = next;
13158     }
13159
13160     Safefree(tbl->tbl_ary);
13161     Safefree(tbl);
13162 }
13163
13164 #if defined(USE_ITHREADS)
13165
13166 void
13167 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
13168 {
13169     PERL_ARGS_ASSERT_RVPV_DUP;
13170
13171     assert(!isREGEXP(sstr));
13172     if (SvROK(sstr)) {
13173         if (SvWEAKREF(sstr)) {
13174             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
13175             if (param->flags & CLONEf_JOIN_IN) {
13176                 /* if joining, we add any back references individually rather
13177                  * than copying the whole backref array */
13178                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
13179             }
13180         }
13181         else
13182             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
13183     }
13184     else if (SvPVX_const(sstr)) {
13185         /* Has something there */
13186         if (SvLEN(sstr)) {
13187             /* Normal PV - clone whole allocated space */
13188             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
13189             /* sstr may not be that normal, but actually copy on write.
13190                But we are a true, independent SV, so:  */
13191             SvIsCOW_off(dstr);
13192         }
13193         else {
13194             /* Special case - not normally malloced for some reason */
13195             if (isGV_with_GP(sstr)) {
13196                 /* Don't need to do anything here.  */
13197             }
13198             else if ((SvIsCOW(sstr))) {
13199                 /* A "shared" PV - clone it as "shared" PV */
13200                 SvPV_set(dstr,
13201                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
13202                                          param)));
13203             }
13204             else {
13205                 /* Some other special case - random pointer */
13206                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
13207             }
13208         }
13209     }
13210     else {
13211         /* Copy the NULL */
13212         SvPV_set(dstr, NULL);
13213     }
13214 }
13215
13216 /* duplicate a list of SVs. source and dest may point to the same memory.  */
13217 static SV **
13218 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
13219                       SSize_t items, CLONE_PARAMS *const param)
13220 {
13221     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
13222
13223     while (items-- > 0) {
13224         *dest++ = sv_dup_inc(*source++, param);
13225     }
13226
13227     return dest;
13228 }
13229
13230 /* duplicate an SV of any type (including AV, HV etc) */
13231
13232 static SV *
13233 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
13234 {
13235     dVAR;
13236     SV *dstr;
13237
13238     PERL_ARGS_ASSERT_SV_DUP_COMMON;
13239
13240     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
13241 #ifdef DEBUG_LEAKING_SCALARS_ABORT
13242         abort();
13243 #endif
13244         return NULL;
13245     }
13246     /* look for it in the table first */
13247     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
13248     if (dstr)
13249         return dstr;
13250
13251     if(param->flags & CLONEf_JOIN_IN) {
13252         /** We are joining here so we don't want do clone
13253             something that is bad **/
13254         if (SvTYPE(sstr) == SVt_PVHV) {
13255             const HEK * const hvname = HvNAME_HEK(sstr);
13256             if (hvname) {
13257                 /** don't clone stashes if they already exist **/
13258                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
13259                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
13260                 ptr_table_store(PL_ptr_table, sstr, dstr);
13261                 return dstr;
13262             }
13263         }
13264         else if (SvTYPE(sstr) == SVt_PVGV && !SvFAKE(sstr)) {
13265             HV *stash = GvSTASH(sstr);
13266             const HEK * hvname;
13267             if (stash && (hvname = HvNAME_HEK(stash))) {
13268                 /** don't clone GVs if they already exist **/
13269                 SV **svp;
13270                 stash = gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
13271                                     HEK_UTF8(hvname) ? SVf_UTF8 : 0);
13272                 svp = hv_fetch(
13273                         stash, GvNAME(sstr),
13274                         GvNAMEUTF8(sstr)
13275                             ? -GvNAMELEN(sstr)
13276                             :  GvNAMELEN(sstr),
13277                         0
13278                       );
13279                 if (svp && *svp && SvTYPE(*svp) == SVt_PVGV) {
13280                     ptr_table_store(PL_ptr_table, sstr, *svp);
13281                     return *svp;
13282                 }
13283             }
13284         }
13285     }
13286
13287     /* create anew and remember what it is */
13288     new_SV(dstr);
13289
13290 #ifdef DEBUG_LEAKING_SCALARS
13291     dstr->sv_debug_optype = sstr->sv_debug_optype;
13292     dstr->sv_debug_line = sstr->sv_debug_line;
13293     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
13294     dstr->sv_debug_parent = (SV*)sstr;
13295     FREE_SV_DEBUG_FILE(dstr);
13296     dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
13297 #endif
13298
13299     ptr_table_store(PL_ptr_table, sstr, dstr);
13300
13301     /* clone */
13302     SvFLAGS(dstr)       = SvFLAGS(sstr);
13303     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
13304     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
13305
13306 #ifdef DEBUGGING
13307     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
13308         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
13309                       (void*)PL_watch_pvx, SvPVX_const(sstr));
13310 #endif
13311
13312     /* don't clone objects whose class has asked us not to */
13313     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
13314         SvFLAGS(dstr) = 0;
13315         return dstr;
13316     }
13317
13318     switch (SvTYPE(sstr)) {
13319     case SVt_NULL:
13320         SvANY(dstr)     = NULL;
13321         break;
13322     case SVt_IV:
13323         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
13324         if(SvROK(sstr)) {
13325             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
13326         } else {
13327             SvIV_set(dstr, SvIVX(sstr));
13328         }
13329         break;
13330     case SVt_NV:
13331 #if NVSIZE <= IVSIZE
13332         SvANY(dstr) = (XPVNV*)((char*)&(dstr->sv_u.svu_nv) - STRUCT_OFFSET(XPVNV, xnv_u.xnv_nv));
13333 #else
13334         SvANY(dstr)     = new_XNV();
13335 #endif
13336         SvNV_set(dstr, SvNVX(sstr));
13337         break;
13338     default:
13339         {
13340             /* These are all the types that need complex bodies allocating.  */
13341             void *new_body;
13342             const svtype sv_type = SvTYPE(sstr);
13343             const struct body_details *const sv_type_details
13344                 = bodies_by_type + sv_type;
13345
13346             switch (sv_type) {
13347             default:
13348                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
13349                 break;
13350
13351             case SVt_PVGV:
13352             case SVt_PVIO:
13353             case SVt_PVFM:
13354             case SVt_PVHV:
13355             case SVt_PVAV:
13356             case SVt_PVCV:
13357             case SVt_PVLV:
13358             case SVt_REGEXP:
13359             case SVt_PVMG:
13360             case SVt_PVNV:
13361             case SVt_PVIV:
13362             case SVt_INVLIST:
13363             case SVt_PV:
13364                 assert(sv_type_details->body_size);
13365                 if (sv_type_details->arena) {
13366                     new_body_inline(new_body, sv_type);
13367                     new_body
13368                         = (void*)((char*)new_body - sv_type_details->offset);
13369                 } else {
13370                     new_body = new_NOARENA(sv_type_details);
13371                 }
13372             }
13373             assert(new_body);
13374             SvANY(dstr) = new_body;
13375
13376 #ifndef PURIFY
13377             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
13378                  ((char*)SvANY(dstr)) + sv_type_details->offset,
13379                  sv_type_details->copy, char);
13380 #else
13381             Copy(((char*)SvANY(sstr)),
13382                  ((char*)SvANY(dstr)),
13383                  sv_type_details->body_size + sv_type_details->offset, char);
13384 #endif
13385
13386             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
13387                 && !isGV_with_GP(dstr)
13388                 && !isREGEXP(dstr)
13389                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
13390                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
13391
13392             /* The Copy above means that all the source (unduplicated) pointers
13393                are now in the destination.  We can check the flags and the
13394                pointers in either, but it's possible that there's less cache
13395                missing by always going for the destination.
13396                FIXME - instrument and check that assumption  */
13397             if (sv_type >= SVt_PVMG) {
13398                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
13399                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
13400                 } else if (sv_type == SVt_PVAV && AvPAD_NAMELIST(dstr)) {
13401                     NOOP;
13402                 } else if (SvMAGIC(dstr))
13403                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
13404                 if (SvOBJECT(dstr) && SvSTASH(dstr))
13405                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
13406                 else SvSTASH_set(dstr, 0); /* don't copy DESTROY cache */
13407             }
13408
13409             /* The cast silences a GCC warning about unhandled types.  */
13410             switch ((int)sv_type) {
13411             case SVt_PV:
13412                 break;
13413             case SVt_PVIV:
13414                 break;
13415             case SVt_PVNV:
13416                 break;
13417             case SVt_PVMG:
13418                 break;
13419             case SVt_REGEXP:
13420               duprex:
13421                 /* FIXME for plugins */
13422                 dstr->sv_u.svu_rx = ((REGEXP *)dstr)->sv_any;
13423                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
13424                 break;
13425             case SVt_PVLV:
13426                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
13427                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
13428                     LvTARG(dstr) = dstr;
13429                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
13430                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
13431                 else
13432                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
13433                 if (isREGEXP(sstr)) goto duprex;
13434             case SVt_PVGV:
13435                 /* non-GP case already handled above */
13436                 if(isGV_with_GP(sstr)) {
13437                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
13438                     /* Don't call sv_add_backref here as it's going to be
13439                        created as part of the magic cloning of the symbol
13440                        table--unless this is during a join and the stash
13441                        is not actually being cloned.  */
13442                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
13443                        at the point of this comment.  */
13444                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
13445                     if (param->flags & CLONEf_JOIN_IN)
13446                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
13447                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
13448                     (void)GpREFCNT_inc(GvGP(dstr));
13449                 }
13450                 break;
13451             case SVt_PVIO:
13452                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
13453                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
13454                     /* I have no idea why fake dirp (rsfps)
13455                        should be treated differently but otherwise
13456                        we end up with leaks -- sky*/
13457                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
13458                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
13459                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
13460                 } else {
13461                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
13462                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
13463                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
13464                     if (IoDIRP(dstr)) {
13465                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
13466                     } else {
13467                         NOOP;
13468                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
13469                     }
13470                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
13471                 }
13472                 if (IoOFP(dstr) == IoIFP(sstr))
13473                     IoOFP(dstr) = IoIFP(dstr);
13474                 else
13475                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
13476                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
13477                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
13478                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
13479                 break;
13480             case SVt_PVAV:
13481                 /* avoid cloning an empty array */
13482                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
13483                     SV **dst_ary, **src_ary;
13484                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
13485
13486                     src_ary = AvARRAY((const AV *)sstr);
13487                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
13488                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
13489                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
13490                     AvALLOC((const AV *)dstr) = dst_ary;
13491                     if (AvREAL((const AV *)sstr)) {
13492                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
13493                                                       param);
13494                     }
13495                     else {
13496                         while (items-- > 0)
13497                             *dst_ary++ = sv_dup(*src_ary++, param);
13498                     }
13499                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
13500                     while (items-- > 0) {
13501                         *dst_ary++ = &PL_sv_undef;
13502                     }
13503                 }
13504                 else {
13505                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
13506                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
13507                     AvMAX(  (const AV *)dstr)   = -1;
13508                     AvFILLp((const AV *)dstr)   = -1;
13509                 }
13510                 break;
13511             case SVt_PVHV:
13512                 if (HvARRAY((const HV *)sstr)) {
13513                     STRLEN i = 0;
13514                     const bool sharekeys = !!HvSHAREKEYS(sstr);
13515                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
13516                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
13517                     char *darray;
13518                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
13519                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
13520                         char);
13521                     HvARRAY(dstr) = (HE**)darray;
13522                     while (i <= sxhv->xhv_max) {
13523                         const HE * const source = HvARRAY(sstr)[i];
13524                         HvARRAY(dstr)[i] = source
13525                             ? he_dup(source, sharekeys, param) : 0;
13526                         ++i;
13527                     }
13528                     if (SvOOK(sstr)) {
13529                         const struct xpvhv_aux * const saux = HvAUX(sstr);
13530                         struct xpvhv_aux * const daux = HvAUX(dstr);
13531                         /* This flag isn't copied.  */
13532                         SvOOK_on(dstr);
13533
13534                         if (saux->xhv_name_count) {
13535                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
13536                             const I32 count
13537                              = saux->xhv_name_count < 0
13538                                 ? -saux->xhv_name_count
13539                                 :  saux->xhv_name_count;
13540                             HEK **shekp = sname + count;
13541                             HEK **dhekp;
13542                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
13543                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
13544                             while (shekp-- > sname) {
13545                                 dhekp--;
13546                                 *dhekp = hek_dup(*shekp, param);
13547                             }
13548                         }
13549                         else {
13550                             daux->xhv_name_u.xhvnameu_name
13551                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
13552                                           param);
13553                         }
13554                         daux->xhv_name_count = saux->xhv_name_count;
13555
13556                         daux->xhv_fill_lazy = saux->xhv_fill_lazy;
13557                         daux->xhv_aux_flags = saux->xhv_aux_flags;
13558 #ifdef PERL_HASH_RANDOMIZE_KEYS
13559                         daux->xhv_rand = saux->xhv_rand;
13560                         daux->xhv_last_rand = saux->xhv_last_rand;
13561 #endif
13562                         daux->xhv_riter = saux->xhv_riter;
13563                         daux->xhv_eiter = saux->xhv_eiter
13564                             ? he_dup(saux->xhv_eiter,
13565                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
13566                         /* backref array needs refcnt=2; see sv_add_backref */
13567                         daux->xhv_backreferences =
13568                             (param->flags & CLONEf_JOIN_IN)
13569                                 /* when joining, we let the individual GVs and
13570                                  * CVs add themselves to backref as
13571                                  * needed. This avoids pulling in stuff
13572                                  * that isn't required, and simplifies the
13573                                  * case where stashes aren't cloned back
13574                                  * if they already exist in the parent
13575                                  * thread */
13576                             ? NULL
13577                             : saux->xhv_backreferences
13578                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
13579                                     ? MUTABLE_AV(SvREFCNT_inc(
13580                                           sv_dup_inc((const SV *)
13581                                             saux->xhv_backreferences, param)))
13582                                     : MUTABLE_AV(sv_dup((const SV *)
13583                                             saux->xhv_backreferences, param))
13584                                 : 0;
13585
13586                         daux->xhv_mro_meta = saux->xhv_mro_meta
13587                             ? mro_meta_dup(saux->xhv_mro_meta, param)
13588                             : 0;
13589
13590                         /* Record stashes for possible cloning in Perl_clone(). */
13591                         if (HvNAME(sstr))
13592                             av_push(param->stashes, dstr);
13593                     }
13594                 }
13595                 else
13596                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
13597                 break;
13598             case SVt_PVCV:
13599                 if (!(param->flags & CLONEf_COPY_STACKS)) {
13600                     CvDEPTH(dstr) = 0;
13601                 }
13602                 /* FALLTHROUGH */
13603             case SVt_PVFM:
13604                 /* NOTE: not refcounted */
13605                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
13606                     hv_dup(CvSTASH(dstr), param);
13607                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
13608                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
13609                 if (!CvISXSUB(dstr)) {
13610                     OP_REFCNT_LOCK;
13611                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
13612                     OP_REFCNT_UNLOCK;
13613                     CvSLABBED_off(dstr);
13614                 } else if (CvCONST(dstr)) {
13615                     CvXSUBANY(dstr).any_ptr =
13616                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
13617                 }
13618                 assert(!CvSLABBED(dstr));
13619                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
13620                 if (CvNAMED(dstr))
13621                     SvANY((CV *)dstr)->xcv_gv_u.xcv_hek =
13622                         hek_dup(CvNAME_HEK((CV *)sstr), param);
13623                 /* don't dup if copying back - CvGV isn't refcounted, so the
13624                  * duped GV may never be freed. A bit of a hack! DAPM */
13625                 else
13626                   SvANY(MUTABLE_CV(dstr))->xcv_gv_u.xcv_gv =
13627                     CvCVGV_RC(dstr)
13628                     ? gv_dup_inc(CvGV(sstr), param)
13629                     : (param->flags & CLONEf_JOIN_IN)
13630                         ? NULL
13631                         : gv_dup(CvGV(sstr), param);
13632
13633                 if (!CvISXSUB(sstr)) {
13634                     if(CvPADLIST(sstr))
13635                         CvPADLIST_set(dstr, padlist_dup(CvPADLIST(sstr), param));
13636                     else
13637                         CvPADLIST_set(dstr, NULL);
13638                 } else { /* future union here */
13639                     CvRESERVED(dstr) = NULL;
13640                 }
13641                 CvOUTSIDE(dstr) =
13642                     CvWEAKOUTSIDE(sstr)
13643                     ? cv_dup(    CvOUTSIDE(dstr), param)
13644                     : cv_dup_inc(CvOUTSIDE(dstr), param);
13645                 break;
13646             }
13647         }
13648     }
13649
13650     return dstr;
13651  }
13652
13653 SV *
13654 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
13655 {
13656     PERL_ARGS_ASSERT_SV_DUP_INC;
13657     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
13658 }
13659
13660 SV *
13661 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
13662 {
13663     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
13664     PERL_ARGS_ASSERT_SV_DUP;
13665
13666     /* Track every SV that (at least initially) had a reference count of 0.
13667        We need to do this by holding an actual reference to it in this array.
13668        If we attempt to cheat, turn AvREAL_off(), and store only pointers
13669        (akin to the stashes hash, and the perl stack), we come unstuck if
13670        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
13671        thread) is manipulated in a CLONE method, because CLONE runs before the
13672        unreferenced array is walked to find SVs still with SvREFCNT() == 0
13673        (and fix things up by giving each a reference via the temps stack).
13674        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
13675        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
13676        before the walk of unreferenced happens and a reference to that is SV
13677        added to the temps stack. At which point we have the same SV considered
13678        to be in use, and free to be re-used. Not good.
13679     */
13680     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
13681         assert(param->unreferenced);
13682         av_push(param->unreferenced, SvREFCNT_inc(dstr));
13683     }
13684
13685     return dstr;
13686 }
13687
13688 /* duplicate a context */
13689
13690 PERL_CONTEXT *
13691 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
13692 {
13693     PERL_CONTEXT *ncxs;
13694
13695     PERL_ARGS_ASSERT_CX_DUP;
13696
13697     if (!cxs)
13698         return (PERL_CONTEXT*)NULL;
13699
13700     /* look for it in the table first */
13701     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
13702     if (ncxs)
13703         return ncxs;
13704
13705     /* create anew and remember what it is */
13706     Newx(ncxs, max + 1, PERL_CONTEXT);
13707     ptr_table_store(PL_ptr_table, cxs, ncxs);
13708     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
13709
13710     while (ix >= 0) {
13711         PERL_CONTEXT * const ncx = &ncxs[ix];
13712         if (CxTYPE(ncx) == CXt_SUBST) {
13713             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
13714         }
13715         else {
13716             ncx->blk_oldcop = (COP*)any_dup(ncx->blk_oldcop, param->proto_perl);
13717             switch (CxTYPE(ncx)) {
13718             case CXt_SUB:
13719                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
13720                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
13721                                            : cv_dup(ncx->blk_sub.cv,param));
13722                 if(CxHASARGS(ncx)){
13723                     ncx->blk_sub.argarray = av_dup_inc(ncx->blk_sub.argarray,param);
13724                     ncx->blk_sub.savearray = av_dup_inc(ncx->blk_sub.savearray,param);
13725                 } else {
13726                     ncx->blk_sub.argarray = NULL;
13727                     ncx->blk_sub.savearray = NULL;
13728                 }
13729                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
13730                                            ncx->blk_sub.oldcomppad);
13731                 break;
13732             case CXt_EVAL:
13733                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
13734                                                       param);
13735                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
13736                 ncx->blk_eval.cv = cv_dup(ncx->blk_eval.cv, param);
13737                 break;
13738             case CXt_LOOP_LAZYSV:
13739                 ncx->blk_loop.state_u.lazysv.end
13740                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
13741                 /* We are taking advantage of av_dup_inc and sv_dup_inc
13742                    actually being the same function, and order equivalence of
13743                    the two unions.
13744                    We can assert the later [but only at run time :-(]  */
13745                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
13746                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
13747             case CXt_LOOP_FOR:
13748                 ncx->blk_loop.state_u.ary.ary
13749                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
13750             case CXt_LOOP_LAZYIV:
13751             case CXt_LOOP_PLAIN:
13752                 if (CxPADLOOP(ncx)) {
13753                     ncx->blk_loop.itervar_u.oldcomppad
13754                         = (PAD*)ptr_table_fetch(PL_ptr_table,
13755                                         ncx->blk_loop.itervar_u.oldcomppad);
13756                 } else {
13757                     ncx->blk_loop.itervar_u.gv
13758                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
13759                                     param);
13760                 }
13761                 break;
13762             case CXt_FORMAT:
13763                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
13764                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
13765                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
13766                                                      param);
13767                 break;
13768             case CXt_BLOCK:
13769             case CXt_NULL:
13770             case CXt_WHEN:
13771             case CXt_GIVEN:
13772                 break;
13773             }
13774         }
13775         --ix;
13776     }
13777     return ncxs;
13778 }
13779
13780 /* duplicate a stack info structure */
13781
13782 PERL_SI *
13783 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
13784 {
13785     PERL_SI *nsi;
13786
13787     PERL_ARGS_ASSERT_SI_DUP;
13788
13789     if (!si)
13790         return (PERL_SI*)NULL;
13791
13792     /* look for it in the table first */
13793     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
13794     if (nsi)
13795         return nsi;
13796
13797     /* create anew and remember what it is */
13798     Newxz(nsi, 1, PERL_SI);
13799     ptr_table_store(PL_ptr_table, si, nsi);
13800
13801     nsi->si_stack       = av_dup_inc(si->si_stack, param);
13802     nsi->si_cxix        = si->si_cxix;
13803     nsi->si_cxmax       = si->si_cxmax;
13804     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
13805     nsi->si_type        = si->si_type;
13806     nsi->si_prev        = si_dup(si->si_prev, param);
13807     nsi->si_next        = si_dup(si->si_next, param);
13808     nsi->si_markoff     = si->si_markoff;
13809
13810     return nsi;
13811 }
13812
13813 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
13814 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
13815 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
13816 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
13817 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
13818 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
13819 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
13820 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
13821 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
13822 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
13823 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
13824 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
13825 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
13826 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
13827 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
13828 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
13829
13830 /* XXXXX todo */
13831 #define pv_dup_inc(p)   SAVEPV(p)
13832 #define pv_dup(p)       SAVEPV(p)
13833 #define svp_dup_inc(p,pp)       any_dup(p,pp)
13834
13835 /* map any object to the new equivent - either something in the
13836  * ptr table, or something in the interpreter structure
13837  */
13838
13839 void *
13840 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
13841 {
13842     void *ret;
13843
13844     PERL_ARGS_ASSERT_ANY_DUP;
13845
13846     if (!v)
13847         return (void*)NULL;
13848
13849     /* look for it in the table first */
13850     ret = ptr_table_fetch(PL_ptr_table, v);
13851     if (ret)
13852         return ret;
13853
13854     /* see if it is part of the interpreter structure */
13855     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
13856         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
13857     else {
13858         ret = v;
13859     }
13860
13861     return ret;
13862 }
13863
13864 /* duplicate the save stack */
13865
13866 ANY *
13867 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
13868 {
13869     dVAR;
13870     ANY * const ss      = proto_perl->Isavestack;
13871     const I32 max       = proto_perl->Isavestack_max;
13872     I32 ix              = proto_perl->Isavestack_ix;
13873     ANY *nss;
13874     const SV *sv;
13875     const GV *gv;
13876     const AV *av;
13877     const HV *hv;
13878     void* ptr;
13879     int intval;
13880     long longval;
13881     GP *gp;
13882     IV iv;
13883     I32 i;
13884     char *c = NULL;
13885     void (*dptr) (void*);
13886     void (*dxptr) (pTHX_ void*);
13887
13888     PERL_ARGS_ASSERT_SS_DUP;
13889
13890     Newxz(nss, max, ANY);
13891
13892     while (ix > 0) {
13893         const UV uv = POPUV(ss,ix);
13894         const U8 type = (U8)uv & SAVE_MASK;
13895
13896         TOPUV(nss,ix) = uv;
13897         switch (type) {
13898         case SAVEt_CLEARSV:
13899         case SAVEt_CLEARPADRANGE:
13900             break;
13901         case SAVEt_HELEM:               /* hash element */
13902             sv = (const SV *)POPPTR(ss,ix);
13903             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13904             /* FALLTHROUGH */
13905         case SAVEt_ITEM:                        /* normal string */
13906         case SAVEt_GVSV:                        /* scalar slot in GV */
13907         case SAVEt_SV:                          /* scalar reference */
13908             sv = (const SV *)POPPTR(ss,ix);
13909             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13910             /* FALLTHROUGH */
13911         case SAVEt_FREESV:
13912         case SAVEt_MORTALIZESV:
13913         case SAVEt_READONLY_OFF:
13914             sv = (const SV *)POPPTR(ss,ix);
13915             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13916             break;
13917         case SAVEt_SHARED_PVREF:                /* char* in shared space */
13918             c = (char*)POPPTR(ss,ix);
13919             TOPPTR(nss,ix) = savesharedpv(c);
13920             ptr = POPPTR(ss,ix);
13921             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13922             break;
13923         case SAVEt_GENERIC_SVREF:               /* generic sv */
13924         case SAVEt_SVREF:                       /* scalar reference */
13925             sv = (const SV *)POPPTR(ss,ix);
13926             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13927             ptr = POPPTR(ss,ix);
13928             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
13929             break;
13930         case SAVEt_GVSLOT:              /* any slot in GV */
13931             sv = (const SV *)POPPTR(ss,ix);
13932             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13933             ptr = POPPTR(ss,ix);
13934             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
13935             sv = (const SV *)POPPTR(ss,ix);
13936             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13937             break;
13938         case SAVEt_HV:                          /* hash reference */
13939         case SAVEt_AV:                          /* array reference */
13940             sv = (const SV *) POPPTR(ss,ix);
13941             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13942             /* FALLTHROUGH */
13943         case SAVEt_COMPPAD:
13944         case SAVEt_NSTAB:
13945             sv = (const SV *) POPPTR(ss,ix);
13946             TOPPTR(nss,ix) = sv_dup(sv, param);
13947             break;
13948         case SAVEt_INT:                         /* int reference */
13949             ptr = POPPTR(ss,ix);
13950             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13951             intval = (int)POPINT(ss,ix);
13952             TOPINT(nss,ix) = intval;
13953             break;
13954         case SAVEt_LONG:                        /* long reference */
13955             ptr = POPPTR(ss,ix);
13956             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13957             longval = (long)POPLONG(ss,ix);
13958             TOPLONG(nss,ix) = longval;
13959             break;
13960         case SAVEt_I32:                         /* I32 reference */
13961             ptr = POPPTR(ss,ix);
13962             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13963             i = POPINT(ss,ix);
13964             TOPINT(nss,ix) = i;
13965             break;
13966         case SAVEt_IV:                          /* IV reference */
13967         case SAVEt_STRLEN:                      /* STRLEN/size_t ref */
13968             ptr = POPPTR(ss,ix);
13969             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13970             iv = POPIV(ss,ix);
13971             TOPIV(nss,ix) = iv;
13972             break;
13973         case SAVEt_HPTR:                        /* HV* reference */
13974         case SAVEt_APTR:                        /* AV* reference */
13975         case SAVEt_SPTR:                        /* SV* reference */
13976             ptr = POPPTR(ss,ix);
13977             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13978             sv = (const SV *)POPPTR(ss,ix);
13979             TOPPTR(nss,ix) = sv_dup(sv, param);
13980             break;
13981         case SAVEt_VPTR:                        /* random* reference */
13982             ptr = POPPTR(ss,ix);
13983             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13984             /* FALLTHROUGH */
13985         case SAVEt_INT_SMALL:
13986         case SAVEt_I32_SMALL:
13987         case SAVEt_I16:                         /* I16 reference */
13988         case SAVEt_I8:                          /* I8 reference */
13989         case SAVEt_BOOL:
13990             ptr = POPPTR(ss,ix);
13991             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13992             break;
13993         case SAVEt_GENERIC_PVREF:               /* generic char* */
13994         case SAVEt_PPTR:                        /* char* reference */
13995             ptr = POPPTR(ss,ix);
13996             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13997             c = (char*)POPPTR(ss,ix);
13998             TOPPTR(nss,ix) = pv_dup(c);
13999             break;
14000         case SAVEt_GP:                          /* scalar reference */
14001             gp = (GP*)POPPTR(ss,ix);
14002             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
14003             (void)GpREFCNT_inc(gp);
14004             gv = (const GV *)POPPTR(ss,ix);
14005             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
14006             break;
14007         case SAVEt_FREEOP:
14008             ptr = POPPTR(ss,ix);
14009             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
14010                 /* these are assumed to be refcounted properly */
14011                 OP *o;
14012                 switch (((OP*)ptr)->op_type) {
14013                 case OP_LEAVESUB:
14014                 case OP_LEAVESUBLV:
14015                 case OP_LEAVEEVAL:
14016                 case OP_LEAVE:
14017                 case OP_SCOPE:
14018                 case OP_LEAVEWRITE:
14019                     TOPPTR(nss,ix) = ptr;
14020                     o = (OP*)ptr;
14021                     OP_REFCNT_LOCK;
14022                     (void) OpREFCNT_inc(o);
14023                     OP_REFCNT_UNLOCK;
14024                     break;
14025                 default:
14026                     TOPPTR(nss,ix) = NULL;
14027                     break;
14028                 }
14029             }
14030             else
14031                 TOPPTR(nss,ix) = NULL;
14032             break;
14033         case SAVEt_FREECOPHH:
14034             ptr = POPPTR(ss,ix);
14035             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
14036             break;
14037         case SAVEt_ADELETE:
14038             av = (const AV *)POPPTR(ss,ix);
14039             TOPPTR(nss,ix) = av_dup_inc(av, param);
14040             i = POPINT(ss,ix);
14041             TOPINT(nss,ix) = i;
14042             break;
14043         case SAVEt_DELETE:
14044             hv = (const HV *)POPPTR(ss,ix);
14045             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
14046             i = POPINT(ss,ix);
14047             TOPINT(nss,ix) = i;
14048             /* FALLTHROUGH */
14049         case SAVEt_FREEPV:
14050             c = (char*)POPPTR(ss,ix);
14051             TOPPTR(nss,ix) = pv_dup_inc(c);
14052             break;
14053         case SAVEt_STACK_POS:           /* Position on Perl stack */
14054             i = POPINT(ss,ix);
14055             TOPINT(nss,ix) = i;
14056             break;
14057         case SAVEt_DESTRUCTOR:
14058             ptr = POPPTR(ss,ix);
14059             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
14060             dptr = POPDPTR(ss,ix);
14061             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
14062                                         any_dup(FPTR2DPTR(void *, dptr),
14063                                                 proto_perl));
14064             break;
14065         case SAVEt_DESTRUCTOR_X:
14066             ptr = POPPTR(ss,ix);
14067             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
14068             dxptr = POPDXPTR(ss,ix);
14069             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
14070                                          any_dup(FPTR2DPTR(void *, dxptr),
14071                                                  proto_perl));
14072             break;
14073         case SAVEt_REGCONTEXT:
14074         case SAVEt_ALLOC:
14075             ix -= uv >> SAVE_TIGHT_SHIFT;
14076             break;
14077         case SAVEt_AELEM:               /* array element */
14078             sv = (const SV *)POPPTR(ss,ix);
14079             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14080             i = POPINT(ss,ix);
14081             TOPINT(nss,ix) = i;
14082             av = (const AV *)POPPTR(ss,ix);
14083             TOPPTR(nss,ix) = av_dup_inc(av, param);
14084             break;
14085         case SAVEt_OP:
14086             ptr = POPPTR(ss,ix);
14087             TOPPTR(nss,ix) = ptr;
14088             break;
14089         case SAVEt_HINTS:
14090             ptr = POPPTR(ss,ix);
14091             ptr = cophh_copy((COPHH*)ptr);
14092             TOPPTR(nss,ix) = ptr;
14093             i = POPINT(ss,ix);
14094             TOPINT(nss,ix) = i;
14095             if (i & HINT_LOCALIZE_HH) {
14096                 hv = (const HV *)POPPTR(ss,ix);
14097                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
14098             }
14099             break;
14100         case SAVEt_PADSV_AND_MORTALIZE:
14101             longval = (long)POPLONG(ss,ix);
14102             TOPLONG(nss,ix) = longval;
14103             ptr = POPPTR(ss,ix);
14104             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
14105             sv = (const SV *)POPPTR(ss,ix);
14106             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
14107             break;
14108         case SAVEt_SET_SVFLAGS:
14109             i = POPINT(ss,ix);
14110             TOPINT(nss,ix) = i;
14111             i = POPINT(ss,ix);
14112             TOPINT(nss,ix) = i;
14113             sv = (const SV *)POPPTR(ss,ix);
14114             TOPPTR(nss,ix) = sv_dup(sv, param);
14115             break;
14116         case SAVEt_COMPILE_WARNINGS:
14117             ptr = POPPTR(ss,ix);
14118             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
14119             break;
14120         case SAVEt_PARSER:
14121             ptr = POPPTR(ss,ix);
14122             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
14123             break;
14124         case SAVEt_GP_ALIASED_SV:
14125             ptr = POPPTR(ss,ix);
14126             TOPPTR(nss,ix) = gp_dup((GP *)ptr, param);
14127             ((GP *)ptr)->gp_refcnt++;
14128             break;
14129         default:
14130             Perl_croak(aTHX_
14131                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
14132         }
14133     }
14134
14135     return nss;
14136 }
14137
14138
14139 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
14140  * flag to the result. This is done for each stash before cloning starts,
14141  * so we know which stashes want their objects cloned */
14142
14143 static void
14144 do_mark_cloneable_stash(pTHX_ SV *const sv)
14145 {
14146     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
14147     if (hvname) {
14148         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
14149         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
14150         if (cloner && GvCV(cloner)) {
14151             dSP;
14152             UV status;
14153
14154             ENTER;
14155             SAVETMPS;
14156             PUSHMARK(SP);
14157             mXPUSHs(newSVhek(hvname));
14158             PUTBACK;
14159             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
14160             SPAGAIN;
14161             status = POPu;
14162             PUTBACK;
14163             FREETMPS;
14164             LEAVE;
14165             if (status)
14166                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
14167         }
14168     }
14169 }
14170
14171
14172
14173 /*
14174 =for apidoc perl_clone
14175
14176 Create and return a new interpreter by cloning the current one.
14177
14178 perl_clone takes these flags as parameters:
14179
14180 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
14181 without it we only clone the data and zero the stacks,
14182 with it we copy the stacks and the new perl interpreter is
14183 ready to run at the exact same point as the previous one.
14184 The pseudo-fork code uses COPY_STACKS while the
14185 threads->create doesn't.
14186
14187 CLONEf_KEEP_PTR_TABLE -
14188 perl_clone keeps a ptr_table with the pointer of the old
14189 variable as a key and the new variable as a value,
14190 this allows it to check if something has been cloned and not
14191 clone it again but rather just use the value and increase the
14192 refcount.  If KEEP_PTR_TABLE is not set then perl_clone will kill
14193 the ptr_table using the function
14194 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
14195 reason to keep it around is if you want to dup some of your own
14196 variable who are outside the graph perl scans, example of this
14197 code is in threads.xs create.
14198
14199 CLONEf_CLONE_HOST -
14200 This is a win32 thing, it is ignored on unix, it tells perls
14201 win32host code (which is c++) to clone itself, this is needed on
14202 win32 if you want to run two threads at the same time,
14203 if you just want to do some stuff in a separate perl interpreter
14204 and then throw it away and return to the original one,
14205 you don't need to do anything.
14206
14207 =cut
14208 */
14209
14210 /* XXX the above needs expanding by someone who actually understands it ! */
14211 EXTERN_C PerlInterpreter *
14212 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
14213
14214 PerlInterpreter *
14215 perl_clone(PerlInterpreter *proto_perl, UV flags)
14216 {
14217    dVAR;
14218 #ifdef PERL_IMPLICIT_SYS
14219
14220     PERL_ARGS_ASSERT_PERL_CLONE;
14221
14222    /* perlhost.h so we need to call into it
14223    to clone the host, CPerlHost should have a c interface, sky */
14224
14225    if (flags & CLONEf_CLONE_HOST) {
14226        return perl_clone_host(proto_perl,flags);
14227    }
14228    return perl_clone_using(proto_perl, flags,
14229                             proto_perl->IMem,
14230                             proto_perl->IMemShared,
14231                             proto_perl->IMemParse,
14232                             proto_perl->IEnv,
14233                             proto_perl->IStdIO,
14234                             proto_perl->ILIO,
14235                             proto_perl->IDir,
14236                             proto_perl->ISock,
14237                             proto_perl->IProc);
14238 }
14239
14240 PerlInterpreter *
14241 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
14242                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
14243                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
14244                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
14245                  struct IPerlDir* ipD, struct IPerlSock* ipS,
14246                  struct IPerlProc* ipP)
14247 {
14248     /* XXX many of the string copies here can be optimized if they're
14249      * constants; they need to be allocated as common memory and just
14250      * their pointers copied. */
14251
14252     IV i;
14253     CLONE_PARAMS clone_params;
14254     CLONE_PARAMS* const param = &clone_params;
14255
14256     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
14257
14258     PERL_ARGS_ASSERT_PERL_CLONE_USING;
14259 #else           /* !PERL_IMPLICIT_SYS */
14260     IV i;
14261     CLONE_PARAMS clone_params;
14262     CLONE_PARAMS* param = &clone_params;
14263     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
14264
14265     PERL_ARGS_ASSERT_PERL_CLONE;
14266 #endif          /* PERL_IMPLICIT_SYS */
14267
14268     /* for each stash, determine whether its objects should be cloned */
14269     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
14270     PERL_SET_THX(my_perl);
14271
14272 #ifdef DEBUGGING
14273     PoisonNew(my_perl, 1, PerlInterpreter);
14274     PL_op = NULL;
14275     PL_curcop = NULL;
14276     PL_defstash = NULL; /* may be used by perl malloc() */
14277     PL_markstack = 0;
14278     PL_scopestack = 0;
14279     PL_scopestack_name = 0;
14280     PL_savestack = 0;
14281     PL_savestack_ix = 0;
14282     PL_savestack_max = -1;
14283     PL_sig_pending = 0;
14284     PL_parser = NULL;
14285     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
14286 #  ifdef DEBUG_LEAKING_SCALARS
14287     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
14288 #  endif
14289 #else   /* !DEBUGGING */
14290     Zero(my_perl, 1, PerlInterpreter);
14291 #endif  /* DEBUGGING */
14292
14293 #ifdef PERL_IMPLICIT_SYS
14294     /* host pointers */
14295     PL_Mem              = ipM;
14296     PL_MemShared        = ipMS;
14297     PL_MemParse         = ipMP;
14298     PL_Env              = ipE;
14299     PL_StdIO            = ipStd;
14300     PL_LIO              = ipLIO;
14301     PL_Dir              = ipD;
14302     PL_Sock             = ipS;
14303     PL_Proc             = ipP;
14304 #endif          /* PERL_IMPLICIT_SYS */
14305
14306
14307     param->flags = flags;
14308     /* Nothing in the core code uses this, but we make it available to
14309        extensions (using mg_dup).  */
14310     param->proto_perl = proto_perl;
14311     /* Likely nothing will use this, but it is initialised to be consistent
14312        with Perl_clone_params_new().  */
14313     param->new_perl = my_perl;
14314     param->unreferenced = NULL;
14315
14316
14317     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
14318
14319     PL_body_arenas = NULL;
14320     Zero(&PL_body_roots, 1, PL_body_roots);
14321     
14322     PL_sv_count         = 0;
14323     PL_sv_root          = NULL;
14324     PL_sv_arenaroot     = NULL;
14325
14326     PL_debug            = proto_perl->Idebug;
14327
14328     /* dbargs array probably holds garbage */
14329     PL_dbargs           = NULL;
14330
14331     PL_compiling = proto_perl->Icompiling;
14332
14333     /* pseudo environmental stuff */
14334     PL_origargc         = proto_perl->Iorigargc;
14335     PL_origargv         = proto_perl->Iorigargv;
14336
14337 #ifndef NO_TAINT_SUPPORT
14338     /* Set tainting stuff before PerlIO_debug can possibly get called */
14339     PL_tainting         = proto_perl->Itainting;
14340     PL_taint_warn       = proto_perl->Itaint_warn;
14341 #else
14342     PL_tainting         = FALSE;
14343     PL_taint_warn       = FALSE;
14344 #endif
14345
14346     PL_minus_c          = proto_perl->Iminus_c;
14347
14348     PL_localpatches     = proto_perl->Ilocalpatches;
14349     PL_splitstr         = proto_perl->Isplitstr;
14350     PL_minus_n          = proto_perl->Iminus_n;
14351     PL_minus_p          = proto_perl->Iminus_p;
14352     PL_minus_l          = proto_perl->Iminus_l;
14353     PL_minus_a          = proto_perl->Iminus_a;
14354     PL_minus_E          = proto_perl->Iminus_E;
14355     PL_minus_F          = proto_perl->Iminus_F;
14356     PL_doswitches       = proto_perl->Idoswitches;
14357     PL_dowarn           = proto_perl->Idowarn;
14358     PL_sawalias         = proto_perl->Isawalias;
14359 #ifdef PERL_SAWAMPERSAND
14360     PL_sawampersand     = proto_perl->Isawampersand;
14361 #endif
14362     PL_unsafe           = proto_perl->Iunsafe;
14363     PL_perldb           = proto_perl->Iperldb;
14364     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
14365     PL_exit_flags       = proto_perl->Iexit_flags;
14366
14367     /* XXX time(&PL_basetime) when asked for? */
14368     PL_basetime         = proto_perl->Ibasetime;
14369
14370     PL_maxsysfd         = proto_perl->Imaxsysfd;
14371     PL_statusvalue      = proto_perl->Istatusvalue;
14372 #ifdef __VMS
14373     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
14374 #else
14375     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
14376 #endif
14377
14378     /* RE engine related */
14379     PL_regmatch_slab    = NULL;
14380     PL_reg_curpm        = NULL;
14381
14382     PL_sub_generation   = proto_perl->Isub_generation;
14383
14384     /* funky return mechanisms */
14385     PL_forkprocess      = proto_perl->Iforkprocess;
14386
14387     /* internal state */
14388     PL_maxo             = proto_perl->Imaxo;
14389
14390     PL_main_start       = proto_perl->Imain_start;
14391     PL_eval_root        = proto_perl->Ieval_root;
14392     PL_eval_start       = proto_perl->Ieval_start;
14393
14394     PL_filemode         = proto_perl->Ifilemode;
14395     PL_lastfd           = proto_perl->Ilastfd;
14396     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
14397     PL_Argv             = NULL;
14398     PL_Cmd              = NULL;
14399     PL_gensym           = proto_perl->Igensym;
14400
14401     PL_laststatval      = proto_perl->Ilaststatval;
14402     PL_laststype        = proto_perl->Ilaststype;
14403     PL_mess_sv          = NULL;
14404
14405     PL_profiledata      = NULL;
14406
14407     PL_generation       = proto_perl->Igeneration;
14408
14409     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
14410     PL_in_clean_all     = proto_perl->Iin_clean_all;
14411
14412     PL_delaymagic_uid   = proto_perl->Idelaymagic_uid;
14413     PL_delaymagic_euid  = proto_perl->Idelaymagic_euid;
14414     PL_delaymagic_gid   = proto_perl->Idelaymagic_gid;
14415     PL_delaymagic_egid  = proto_perl->Idelaymagic_egid;
14416     PL_nomemok          = proto_perl->Inomemok;
14417     PL_an               = proto_perl->Ian;
14418     PL_evalseq          = proto_perl->Ievalseq;
14419     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
14420     PL_origalen         = proto_perl->Iorigalen;
14421
14422     PL_sighandlerp      = proto_perl->Isighandlerp;
14423
14424     PL_runops           = proto_perl->Irunops;
14425
14426     PL_subline          = proto_perl->Isubline;
14427
14428 #ifdef FCRYPT
14429     PL_cryptseen        = proto_perl->Icryptseen;
14430 #endif
14431
14432 #ifdef USE_LOCALE_COLLATE
14433     PL_collation_ix     = proto_perl->Icollation_ix;
14434     PL_collation_standard       = proto_perl->Icollation_standard;
14435     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
14436     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
14437 #endif /* USE_LOCALE_COLLATE */
14438
14439 #ifdef USE_LOCALE_NUMERIC
14440     PL_numeric_standard = proto_perl->Inumeric_standard;
14441     PL_numeric_local    = proto_perl->Inumeric_local;
14442 #endif /* !USE_LOCALE_NUMERIC */
14443
14444     /* Did the locale setup indicate UTF-8? */
14445     PL_utf8locale       = proto_perl->Iutf8locale;
14446     PL_in_utf8_CTYPE_locale = proto_perl->Iin_utf8_CTYPE_locale;
14447     /* Unicode features (see perlrun/-C) */
14448     PL_unicode          = proto_perl->Iunicode;
14449
14450     /* Pre-5.8 signals control */
14451     PL_signals          = proto_perl->Isignals;
14452
14453     /* times() ticks per second */
14454     PL_clocktick        = proto_perl->Iclocktick;
14455
14456     /* Recursion stopper for PerlIO_find_layer */
14457     PL_in_load_module   = proto_perl->Iin_load_module;
14458
14459     /* sort() routine */
14460     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
14461
14462     /* Not really needed/useful since the reenrant_retint is "volatile",
14463      * but do it for consistency's sake. */
14464     PL_reentrant_retint = proto_perl->Ireentrant_retint;
14465
14466     /* Hooks to shared SVs and locks. */
14467     PL_sharehook        = proto_perl->Isharehook;
14468     PL_lockhook         = proto_perl->Ilockhook;
14469     PL_unlockhook       = proto_perl->Iunlockhook;
14470     PL_threadhook       = proto_perl->Ithreadhook;
14471     PL_destroyhook      = proto_perl->Idestroyhook;
14472     PL_signalhook       = proto_perl->Isignalhook;
14473
14474     PL_globhook         = proto_perl->Iglobhook;
14475
14476     /* swatch cache */
14477     PL_last_swash_hv    = NULL; /* reinits on demand */
14478     PL_last_swash_klen  = 0;
14479     PL_last_swash_key[0]= '\0';
14480     PL_last_swash_tmps  = (U8*)NULL;
14481     PL_last_swash_slen  = 0;
14482
14483     PL_srand_called     = proto_perl->Isrand_called;
14484     Copy(&(proto_perl->Irandom_state), &PL_random_state, 1, PL_RANDOM_STATE_TYPE);
14485
14486     if (flags & CLONEf_COPY_STACKS) {
14487         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
14488         PL_tmps_ix              = proto_perl->Itmps_ix;
14489         PL_tmps_max             = proto_perl->Itmps_max;
14490         PL_tmps_floor           = proto_perl->Itmps_floor;
14491
14492         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
14493          * NOTE: unlike the others! */
14494         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
14495         PL_scopestack_max       = proto_perl->Iscopestack_max;
14496
14497         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
14498          * NOTE: unlike the others! */
14499         PL_savestack_ix         = proto_perl->Isavestack_ix;
14500         PL_savestack_max        = proto_perl->Isavestack_max;
14501     }
14502
14503     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
14504     PL_top_env          = &PL_start_env;
14505
14506     PL_op               = proto_perl->Iop;
14507
14508     PL_Sv               = NULL;
14509     PL_Xpv              = (XPV*)NULL;
14510     my_perl->Ina        = proto_perl->Ina;
14511
14512     PL_statbuf          = proto_perl->Istatbuf;
14513     PL_statcache        = proto_perl->Istatcache;
14514
14515 #ifndef NO_TAINT_SUPPORT
14516     PL_tainted          = proto_perl->Itainted;
14517 #else
14518     PL_tainted          = FALSE;
14519 #endif
14520     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
14521
14522     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
14523
14524     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
14525     PL_restartop        = proto_perl->Irestartop;
14526     PL_in_eval          = proto_perl->Iin_eval;
14527     PL_delaymagic       = proto_perl->Idelaymagic;
14528     PL_phase            = proto_perl->Iphase;
14529     PL_localizing       = proto_perl->Ilocalizing;
14530
14531     PL_hv_fetch_ent_mh  = NULL;
14532     PL_modcount         = proto_perl->Imodcount;
14533     PL_lastgotoprobe    = NULL;
14534     PL_dumpindent       = proto_perl->Idumpindent;
14535
14536     PL_efloatbuf        = NULL;         /* reinits on demand */
14537     PL_efloatsize       = 0;                    /* reinits on demand */
14538
14539     /* regex stuff */
14540
14541     PL_colorset         = 0;            /* reinits PL_colors[] */
14542     /*PL_colors[6]      = {0,0,0,0,0,0};*/
14543
14544     /* Pluggable optimizer */
14545     PL_peepp            = proto_perl->Ipeepp;
14546     PL_rpeepp           = proto_perl->Irpeepp;
14547     /* op_free() hook */
14548     PL_opfreehook       = proto_perl->Iopfreehook;
14549
14550 #ifdef USE_REENTRANT_API
14551     /* XXX: things like -Dm will segfault here in perlio, but doing
14552      *  PERL_SET_CONTEXT(proto_perl);
14553      * breaks too many other things
14554      */
14555     Perl_reentrant_init(aTHX);
14556 #endif
14557
14558     /* create SV map for pointer relocation */
14559     PL_ptr_table = ptr_table_new();
14560
14561     /* initialize these special pointers as early as possible */
14562     init_constants();
14563     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
14564     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
14565     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
14566
14567     /* create (a non-shared!) shared string table */
14568     PL_strtab           = newHV();
14569     HvSHAREKEYS_off(PL_strtab);
14570     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
14571     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
14572
14573     Zero(PL_sv_consts, SV_CONSTS_COUNT, SV*);
14574
14575     /* This PV will be free'd special way so must set it same way op.c does */
14576     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
14577     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
14578
14579     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
14580     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
14581     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
14582     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
14583
14584     param->stashes      = newAV();  /* Setup array of objects to call clone on */
14585     /* This makes no difference to the implementation, as it always pushes
14586        and shifts pointers to other SVs without changing their reference
14587        count, with the array becoming empty before it is freed. However, it
14588        makes it conceptually clear what is going on, and will avoid some
14589        work inside av.c, filling slots between AvFILL() and AvMAX() with
14590        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
14591     AvREAL_off(param->stashes);
14592
14593     if (!(flags & CLONEf_COPY_STACKS)) {
14594         param->unreferenced = newAV();
14595     }
14596
14597 #ifdef PERLIO_LAYERS
14598     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
14599     PerlIO_clone(aTHX_ proto_perl, param);
14600 #endif
14601
14602     PL_envgv            = gv_dup_inc(proto_perl->Ienvgv, param);
14603     PL_incgv            = gv_dup_inc(proto_perl->Iincgv, param);
14604     PL_hintgv           = gv_dup_inc(proto_perl->Ihintgv, param);
14605     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
14606     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
14607     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
14608
14609     /* switches */
14610     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
14611     PL_inplace          = SAVEPV(proto_perl->Iinplace);
14612     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
14613
14614     /* magical thingies */
14615
14616     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
14617
14618     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
14619     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
14620     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
14621
14622    
14623     /* Clone the regex array */
14624     /* ORANGE FIXME for plugins, probably in the SV dup code.
14625        newSViv(PTR2IV(CALLREGDUPE(
14626        INT2PTR(REGEXP *, SvIVX(regex)), param))))
14627     */
14628     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
14629     PL_regex_pad = AvARRAY(PL_regex_padav);
14630
14631     PL_stashpadmax      = proto_perl->Istashpadmax;
14632     PL_stashpadix       = proto_perl->Istashpadix ;
14633     Newx(PL_stashpad, PL_stashpadmax, HV *);
14634     {
14635         PADOFFSET o = 0;
14636         for (; o < PL_stashpadmax; ++o)
14637             PL_stashpad[o] = hv_dup(proto_perl->Istashpad[o], param);
14638     }
14639
14640     /* shortcuts to various I/O objects */
14641     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
14642     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
14643     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
14644     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
14645     PL_argvgv           = gv_dup_inc(proto_perl->Iargvgv, param);
14646     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
14647     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
14648
14649     /* shortcuts to regexp stuff */
14650     PL_replgv           = gv_dup_inc(proto_perl->Ireplgv, param);
14651
14652     /* shortcuts to misc objects */
14653     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
14654
14655     /* shortcuts to debugging objects */
14656     PL_DBgv             = gv_dup_inc(proto_perl->IDBgv, param);
14657     PL_DBline           = gv_dup_inc(proto_perl->IDBline, param);
14658     PL_DBsub            = gv_dup_inc(proto_perl->IDBsub, param);
14659     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
14660     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
14661     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
14662     Copy(proto_perl->IDBcontrol, PL_DBcontrol, DBVARMG_COUNT, IV);
14663
14664     /* symbol tables */
14665     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
14666     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
14667     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
14668     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
14669     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
14670
14671     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
14672     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
14673     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
14674     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
14675     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
14676     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
14677     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
14678     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
14679
14680     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
14681
14682     /* subprocess state */
14683     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
14684
14685     if (proto_perl->Iop_mask)
14686         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
14687     else
14688         PL_op_mask      = NULL;
14689     /* PL_asserting        = proto_perl->Iasserting; */
14690
14691     /* current interpreter roots */
14692     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
14693     OP_REFCNT_LOCK;
14694     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
14695     OP_REFCNT_UNLOCK;
14696
14697     /* runtime control stuff */
14698     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
14699
14700     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
14701
14702     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
14703
14704     /* interpreter atexit processing */
14705     PL_exitlistlen      = proto_perl->Iexitlistlen;
14706     if (PL_exitlistlen) {
14707         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
14708         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
14709     }
14710     else
14711         PL_exitlist     = (PerlExitListEntry*)NULL;
14712
14713     PL_my_cxt_size = proto_perl->Imy_cxt_size;
14714     if (PL_my_cxt_size) {
14715         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
14716         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
14717 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
14718         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
14719         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
14720 #endif
14721     }
14722     else {
14723         PL_my_cxt_list  = (void**)NULL;
14724 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
14725         PL_my_cxt_keys  = (const char**)NULL;
14726 #endif
14727     }
14728     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
14729     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
14730     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
14731     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
14732
14733     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
14734
14735     PAD_CLONE_VARS(proto_perl, param);
14736
14737 #ifdef HAVE_INTERP_INTERN
14738     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
14739 #endif
14740
14741     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
14742
14743 #ifdef PERL_USES_PL_PIDSTATUS
14744     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
14745 #endif
14746     PL_osname           = SAVEPV(proto_perl->Iosname);
14747     PL_parser           = parser_dup(proto_perl->Iparser, param);
14748
14749     /* XXX this only works if the saved cop has already been cloned */
14750     if (proto_perl->Iparser) {
14751         PL_parser->saved_curcop = (COP*)any_dup(
14752                                     proto_perl->Iparser->saved_curcop,
14753                                     proto_perl);
14754     }
14755
14756     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
14757
14758 #ifdef USE_LOCALE_COLLATE
14759     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
14760 #endif /* USE_LOCALE_COLLATE */
14761
14762 #ifdef USE_LOCALE_NUMERIC
14763     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
14764     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
14765 #endif /* !USE_LOCALE_NUMERIC */
14766
14767     /* Unicode inversion lists */
14768     PL_Latin1           = sv_dup_inc(proto_perl->ILatin1, param);
14769     PL_UpperLatin1      = sv_dup_inc(proto_perl->IUpperLatin1, param);
14770     PL_AboveLatin1      = sv_dup_inc(proto_perl->IAboveLatin1, param);
14771     PL_InBitmap         = sv_dup_inc(proto_perl->IInBitmap, param);
14772
14773     PL_NonL1NonFinalFold = sv_dup_inc(proto_perl->INonL1NonFinalFold, param);
14774     PL_HasMultiCharFold = sv_dup_inc(proto_perl->IHasMultiCharFold, param);
14775
14776     /* utf8 character class swashes */
14777     for (i = 0; i < POSIX_SWASH_COUNT; i++) {
14778         PL_utf8_swash_ptrs[i] = sv_dup_inc(proto_perl->Iutf8_swash_ptrs[i], param);
14779     }
14780     for (i = 0; i < POSIX_CC_COUNT; i++) {
14781         PL_XPosix_ptrs[i] = sv_dup_inc(proto_perl->IXPosix_ptrs[i], param);
14782     }
14783     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
14784     PL_utf8_X_regular_begin     = sv_dup_inc(proto_perl->Iutf8_X_regular_begin, param);
14785     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
14786     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
14787     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
14788     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
14789     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
14790     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
14791     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
14792     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
14793     PL_utf8_perl_idcont = sv_dup_inc(proto_perl->Iutf8_perl_idcont, param);
14794     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
14795     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
14796     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
14797     PL_utf8_charname_begin = sv_dup_inc(proto_perl->Iutf8_charname_begin, param);
14798     PL_utf8_charname_continue = sv_dup_inc(proto_perl->Iutf8_charname_continue, param);
14799
14800     if (proto_perl->Ipsig_pend) {
14801         Newxz(PL_psig_pend, SIG_SIZE, int);
14802     }
14803     else {
14804         PL_psig_pend    = (int*)NULL;
14805     }
14806
14807     if (proto_perl->Ipsig_name) {
14808         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
14809         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
14810                             param);
14811         PL_psig_ptr = PL_psig_name + SIG_SIZE;
14812     }
14813     else {
14814         PL_psig_ptr     = (SV**)NULL;
14815         PL_psig_name    = (SV**)NULL;
14816     }
14817
14818     if (flags & CLONEf_COPY_STACKS) {
14819         Newx(PL_tmps_stack, PL_tmps_max, SV*);
14820         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
14821                             PL_tmps_ix+1, param);
14822
14823         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
14824         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
14825         Newxz(PL_markstack, i, I32);
14826         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
14827                                                   - proto_perl->Imarkstack);
14828         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
14829                                                   - proto_perl->Imarkstack);
14830         Copy(proto_perl->Imarkstack, PL_markstack,
14831              PL_markstack_ptr - PL_markstack + 1, I32);
14832
14833         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
14834          * NOTE: unlike the others! */
14835         Newxz(PL_scopestack, PL_scopestack_max, I32);
14836         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
14837
14838 #ifdef DEBUGGING
14839         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
14840         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
14841 #endif
14842         /* reset stack AV to correct length before its duped via
14843          * PL_curstackinfo */
14844         AvFILLp(proto_perl->Icurstack) =
14845                             proto_perl->Istack_sp - proto_perl->Istack_base;
14846
14847         /* NOTE: si_dup() looks at PL_markstack */
14848         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
14849
14850         /* PL_curstack          = PL_curstackinfo->si_stack; */
14851         PL_curstack             = av_dup(proto_perl->Icurstack, param);
14852         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
14853
14854         /* next PUSHs() etc. set *(PL_stack_sp+1) */
14855         PL_stack_base           = AvARRAY(PL_curstack);
14856         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
14857                                                    - proto_perl->Istack_base);
14858         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
14859
14860         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
14861         PL_savestack            = ss_dup(proto_perl, param);
14862     }
14863     else {
14864         init_stacks();
14865         ENTER;                  /* perl_destruct() wants to LEAVE; */
14866     }
14867
14868     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
14869     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
14870
14871     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
14872     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
14873     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
14874     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
14875     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
14876     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
14877
14878     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
14879
14880     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
14881     PL_firstgv          = gv_dup_inc(proto_perl->Ifirstgv, param);
14882     PL_secondgv         = gv_dup_inc(proto_perl->Isecondgv, param);
14883
14884     PL_stashcache       = newHV();
14885
14886     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
14887                                             proto_perl->Iwatchaddr);
14888     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
14889     if (PL_debug && PL_watchaddr) {
14890         PerlIO_printf(Perl_debug_log,
14891           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
14892           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
14893           PTR2UV(PL_watchok));
14894     }
14895
14896     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
14897     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
14898     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
14899
14900     /* Call the ->CLONE method, if it exists, for each of the stashes
14901        identified by sv_dup() above.
14902     */
14903     while(av_tindex(param->stashes) != -1) {
14904         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
14905         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
14906         if (cloner && GvCV(cloner)) {
14907             dSP;
14908             ENTER;
14909             SAVETMPS;
14910             PUSHMARK(SP);
14911             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
14912             PUTBACK;
14913             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
14914             FREETMPS;
14915             LEAVE;
14916         }
14917     }
14918
14919     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
14920         ptr_table_free(PL_ptr_table);
14921         PL_ptr_table = NULL;
14922     }
14923
14924     if (!(flags & CLONEf_COPY_STACKS)) {
14925         unreferenced_to_tmp_stack(param->unreferenced);
14926     }
14927
14928     SvREFCNT_dec(param->stashes);
14929
14930     /* orphaned? eg threads->new inside BEGIN or use */
14931     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
14932         SvREFCNT_inc_simple_void(PL_compcv);
14933         SAVEFREESV(PL_compcv);
14934     }
14935
14936     return my_perl;
14937 }
14938
14939 static void
14940 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
14941 {
14942     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
14943     
14944     if (AvFILLp(unreferenced) > -1) {
14945         SV **svp = AvARRAY(unreferenced);
14946         SV **const last = svp + AvFILLp(unreferenced);
14947         SSize_t count = 0;
14948
14949         do {
14950             if (SvREFCNT(*svp) == 1)
14951                 ++count;
14952         } while (++svp <= last);
14953
14954         EXTEND_MORTAL(count);
14955         svp = AvARRAY(unreferenced);
14956
14957         do {
14958             if (SvREFCNT(*svp) == 1) {
14959                 /* Our reference is the only one to this SV. This means that
14960                    in this thread, the scalar effectively has a 0 reference.
14961                    That doesn't work (cleanup never happens), so donate our
14962                    reference to it onto the save stack. */
14963                 PL_tmps_stack[++PL_tmps_ix] = *svp;
14964             } else {
14965                 /* As an optimisation, because we are already walking the
14966                    entire array, instead of above doing either
14967                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
14968                    release our reference to the scalar, so that at the end of
14969                    the array owns zero references to the scalars it happens to
14970                    point to. We are effectively converting the array from
14971                    AvREAL() on to AvREAL() off. This saves the av_clear()
14972                    (triggered by the SvREFCNT_dec(unreferenced) below) from
14973                    walking the array a second time.  */
14974                 SvREFCNT_dec(*svp);
14975             }
14976
14977         } while (++svp <= last);
14978         AvREAL_off(unreferenced);
14979     }
14980     SvREFCNT_dec_NN(unreferenced);
14981 }
14982
14983 void
14984 Perl_clone_params_del(CLONE_PARAMS *param)
14985 {
14986     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
14987        happy: */
14988     PerlInterpreter *const to = param->new_perl;
14989     dTHXa(to);
14990     PerlInterpreter *const was = PERL_GET_THX;
14991
14992     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
14993
14994     if (was != to) {
14995         PERL_SET_THX(to);
14996     }
14997
14998     SvREFCNT_dec(param->stashes);
14999     if (param->unreferenced)
15000         unreferenced_to_tmp_stack(param->unreferenced);
15001
15002     Safefree(param);
15003
15004     if (was != to) {
15005         PERL_SET_THX(was);
15006     }
15007 }
15008
15009 CLONE_PARAMS *
15010 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
15011 {
15012     dVAR;
15013     /* Need to play this game, as newAV() can call safesysmalloc(), and that
15014        does a dTHX; to get the context from thread local storage.
15015        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
15016        a version that passes in my_perl.  */
15017     PerlInterpreter *const was = PERL_GET_THX;
15018     CLONE_PARAMS *param;
15019
15020     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
15021
15022     if (was != to) {
15023         PERL_SET_THX(to);
15024     }
15025
15026     /* Given that we've set the context, we can do this unshared.  */
15027     Newx(param, 1, CLONE_PARAMS);
15028
15029     param->flags = 0;
15030     param->proto_perl = from;
15031     param->new_perl = to;
15032     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
15033     AvREAL_off(param->stashes);
15034     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
15035
15036     if (was != to) {
15037         PERL_SET_THX(was);
15038     }
15039     return param;
15040 }
15041
15042 #endif /* USE_ITHREADS */
15043
15044 void
15045 Perl_init_constants(pTHX)
15046 {
15047     SvREFCNT(&PL_sv_undef)      = SvREFCNT_IMMORTAL;
15048     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVf_PROTECT|SVt_NULL;
15049     SvANY(&PL_sv_undef)         = NULL;
15050
15051     SvANY(&PL_sv_no)            = new_XPVNV();
15052     SvREFCNT(&PL_sv_no)         = SvREFCNT_IMMORTAL;
15053     SvFLAGS(&PL_sv_no)          = SVt_PVNV|SVf_READONLY|SVf_PROTECT
15054                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
15055                                   |SVp_POK|SVf_POK;
15056
15057     SvANY(&PL_sv_yes)           = new_XPVNV();
15058     SvREFCNT(&PL_sv_yes)        = SvREFCNT_IMMORTAL;
15059     SvFLAGS(&PL_sv_yes)         = SVt_PVNV|SVf_READONLY|SVf_PROTECT
15060                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
15061                                   |SVp_POK|SVf_POK;
15062
15063     SvPV_set(&PL_sv_no, (char*)PL_No);
15064     SvCUR_set(&PL_sv_no, 0);
15065     SvLEN_set(&PL_sv_no, 0);
15066     SvIV_set(&PL_sv_no, 0);
15067     SvNV_set(&PL_sv_no, 0);
15068
15069     SvPV_set(&PL_sv_yes, (char*)PL_Yes);
15070     SvCUR_set(&PL_sv_yes, 1);
15071     SvLEN_set(&PL_sv_yes, 0);
15072     SvIV_set(&PL_sv_yes, 1);
15073     SvNV_set(&PL_sv_yes, 1);
15074 }
15075
15076 /*
15077 =head1 Unicode Support
15078
15079 =for apidoc sv_recode_to_utf8
15080
15081 The encoding is assumed to be an Encode object, on entry the PV
15082 of the sv is assumed to be octets in that encoding, and the sv
15083 will be converted into Unicode (and UTF-8).
15084
15085 If the sv already is UTF-8 (or if it is not POK), or if the encoding
15086 is not a reference, nothing is done to the sv.  If the encoding is not
15087 an C<Encode::XS> Encoding object, bad things will happen.
15088 (See F<lib/encoding.pm> and L<Encode>.)
15089
15090 The PV of the sv is returned.
15091
15092 =cut */
15093
15094 char *
15095 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
15096 {
15097     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
15098
15099     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
15100         SV *uni;
15101         STRLEN len;
15102         const char *s;
15103         dSP;
15104         SV *nsv = sv;
15105         ENTER;
15106         PUSHSTACK;
15107         SAVETMPS;
15108         if (SvPADTMP(nsv)) {
15109             nsv = sv_newmortal();
15110             SvSetSV_nosteal(nsv, sv);
15111         }
15112         PUSHMARK(sp);
15113         EXTEND(SP, 3);
15114         PUSHs(encoding);
15115         PUSHs(nsv);
15116 /*
15117   NI-S 2002/07/09
15118   Passing sv_yes is wrong - it needs to be or'ed set of constants
15119   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
15120   remove converted chars from source.
15121
15122   Both will default the value - let them.
15123
15124         XPUSHs(&PL_sv_yes);
15125 */
15126         PUTBACK;
15127         call_method("decode", G_SCALAR);
15128         SPAGAIN;
15129         uni = POPs;
15130         PUTBACK;
15131         s = SvPV_const(uni, len);
15132         if (s != SvPVX_const(sv)) {
15133             SvGROW(sv, len + 1);
15134             Move(s, SvPVX(sv), len + 1, char);
15135             SvCUR_set(sv, len);
15136         }
15137         FREETMPS;
15138         POPSTACK;
15139         LEAVE;
15140         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
15141             /* clear pos and any utf8 cache */
15142             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
15143             if (mg)
15144                 mg->mg_len = -1;
15145             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
15146                 magic_setutf8(sv,mg); /* clear UTF8 cache */
15147         }
15148         SvUTF8_on(sv);
15149         return SvPVX(sv);
15150     }
15151     return SvPOKp(sv) ? SvPVX(sv) : NULL;
15152 }
15153
15154 /*
15155 =for apidoc sv_cat_decode
15156
15157 The encoding is assumed to be an Encode object, the PV of the ssv is
15158 assumed to be octets in that encoding and decoding the input starts
15159 from the position which (PV + *offset) pointed to.  The dsv will be
15160 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
15161 when the string tstr appears in decoding output or the input ends on
15162 the PV of the ssv.  The value which the offset points will be modified
15163 to the last input position on the ssv.
15164
15165 Returns TRUE if the terminator was found, else returns FALSE.
15166
15167 =cut */
15168
15169 bool
15170 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
15171                    SV *ssv, int *offset, char *tstr, int tlen)
15172 {
15173     bool ret = FALSE;
15174
15175     PERL_ARGS_ASSERT_SV_CAT_DECODE;
15176
15177     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
15178         SV *offsv;
15179         dSP;
15180         ENTER;
15181         SAVETMPS;
15182         PUSHMARK(sp);
15183         EXTEND(SP, 6);
15184         PUSHs(encoding);
15185         PUSHs(dsv);
15186         PUSHs(ssv);
15187         offsv = newSViv(*offset);
15188         mPUSHs(offsv);
15189         mPUSHp(tstr, tlen);
15190         PUTBACK;
15191         call_method("cat_decode", G_SCALAR);
15192         SPAGAIN;
15193         ret = SvTRUE(TOPs);
15194         *offset = SvIV(offsv);
15195         PUTBACK;
15196         FREETMPS;
15197         LEAVE;
15198     }
15199     else
15200         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
15201     return ret;
15202
15203 }
15204
15205 /* ---------------------------------------------------------------------
15206  *
15207  * support functions for report_uninit()
15208  */
15209
15210 /* the maxiumum size of array or hash where we will scan looking
15211  * for the undefined element that triggered the warning */
15212
15213 #define FUV_MAX_SEARCH_SIZE 1000
15214
15215 /* Look for an entry in the hash whose value has the same SV as val;
15216  * If so, return a mortal copy of the key. */
15217
15218 STATIC SV*
15219 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
15220 {
15221     dVAR;
15222     HE **array;
15223     I32 i;
15224
15225     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
15226
15227     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
15228                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
15229         return NULL;
15230
15231     array = HvARRAY(hv);
15232
15233     for (i=HvMAX(hv); i>=0; i--) {
15234         HE *entry;
15235         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
15236             if (HeVAL(entry) != val)
15237                 continue;
15238             if (    HeVAL(entry) == &PL_sv_undef ||
15239                     HeVAL(entry) == &PL_sv_placeholder)
15240                 continue;
15241             if (!HeKEY(entry))
15242                 return NULL;
15243             if (HeKLEN(entry) == HEf_SVKEY)
15244                 return sv_mortalcopy(HeKEY_sv(entry));
15245             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
15246         }
15247     }
15248     return NULL;
15249 }
15250
15251 /* Look for an entry in the array whose value has the same SV as val;
15252  * If so, return the index, otherwise return -1. */
15253
15254 STATIC I32
15255 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
15256 {
15257     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
15258
15259     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
15260                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
15261         return -1;
15262
15263     if (val != &PL_sv_undef) {
15264         SV ** const svp = AvARRAY(av);
15265         I32 i;
15266
15267         for (i=AvFILLp(av); i>=0; i--)
15268             if (svp[i] == val)
15269                 return i;
15270     }
15271     return -1;
15272 }
15273
15274 /* varname(): return the name of a variable, optionally with a subscript.
15275  * If gv is non-zero, use the name of that global, along with gvtype (one
15276  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
15277  * targ.  Depending on the value of the subscript_type flag, return:
15278  */
15279
15280 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
15281 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
15282 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
15283 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
15284
15285 SV*
15286 Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
15287         const SV *const keyname, I32 aindex, int subscript_type)
15288 {
15289
15290     SV * const name = sv_newmortal();
15291     if (gv && isGV(gv)) {
15292         char buffer[2];
15293         buffer[0] = gvtype;
15294         buffer[1] = 0;
15295
15296         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
15297
15298         gv_fullname4(name, gv, buffer, 0);
15299
15300         if ((unsigned int)SvPVX(name)[1] <= 26) {
15301             buffer[0] = '^';
15302             buffer[1] = SvPVX(name)[1] + 'A' - 1;
15303
15304             /* Swap the 1 unprintable control character for the 2 byte pretty
15305                version - ie substr($name, 1, 1) = $buffer; */
15306             sv_insert(name, 1, 1, buffer, 2);
15307         }
15308     }
15309     else {
15310         CV * const cv = gv ? ((CV *)gv) : find_runcv(NULL);
15311         SV *sv;
15312         AV *av;
15313
15314         assert(!cv || SvTYPE(cv) == SVt_PVCV || SvTYPE(cv) == SVt_PVFM);
15315
15316         if (!cv || !CvPADLIST(cv))
15317             return NULL;
15318         av = *PadlistARRAY(CvPADLIST(cv));
15319         sv = *av_fetch(av, targ, FALSE);
15320         sv_setsv_flags(name, sv, 0);
15321     }
15322
15323     if (subscript_type == FUV_SUBSCRIPT_HASH) {
15324         SV * const sv = newSV(0);
15325         *SvPVX(name) = '$';
15326         Perl_sv_catpvf(aTHX_ name, "{%s}",
15327             pv_pretty(sv, SvPVX_const(keyname), SvCUR(keyname), 32, NULL, NULL,
15328                     PERL_PV_PRETTY_DUMP | PERL_PV_ESCAPE_UNI_DETECT ));
15329         SvREFCNT_dec_NN(sv);
15330     }
15331     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
15332         *SvPVX(name) = '$';
15333         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
15334     }
15335     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
15336         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
15337         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
15338     }
15339
15340     return name;
15341 }
15342
15343
15344 /*
15345 =for apidoc find_uninit_var
15346
15347 Find the name of the undefined variable (if any) that caused the operator
15348 to issue a "Use of uninitialized value" warning.
15349 If match is true, only return a name if its value matches uninit_sv.
15350 So roughly speaking, if a unary operator (such as OP_COS) generates a
15351 warning, then following the direct child of the op may yield an
15352 OP_PADSV or OP_GV that gives the name of the undefined variable.  On the
15353 other hand, with OP_ADD there are two branches to follow, so we only print
15354 the variable name if we get an exact match.
15355
15356 The name is returned as a mortal SV.
15357
15358 Assumes that PL_op is the op that originally triggered the error, and that
15359 PL_comppad/PL_curpad points to the currently executing pad.
15360
15361 =cut
15362 */
15363
15364 STATIC SV *
15365 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
15366                   bool match)
15367 {
15368     dVAR;
15369     SV *sv;
15370     const GV *gv;
15371     const OP *o, *o2, *kid;
15372
15373     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
15374                             uninit_sv == &PL_sv_placeholder)))
15375         return NULL;
15376
15377     switch (obase->op_type) {
15378
15379     case OP_RV2AV:
15380     case OP_RV2HV:
15381     case OP_PADAV:
15382     case OP_PADHV:
15383       {
15384         const bool pad  = (    obase->op_type == OP_PADAV
15385                             || obase->op_type == OP_PADHV
15386                             || obase->op_type == OP_PADRANGE
15387                           );
15388
15389         const bool hash = (    obase->op_type == OP_PADHV
15390                             || obase->op_type == OP_RV2HV
15391                             || (obase->op_type == OP_PADRANGE
15392                                 && SvTYPE(PAD_SVl(obase->op_targ)) == SVt_PVHV)
15393                           );
15394         I32 index = 0;
15395         SV *keysv = NULL;
15396         int subscript_type = FUV_SUBSCRIPT_WITHIN;
15397
15398         if (pad) { /* @lex, %lex */
15399             sv = PAD_SVl(obase->op_targ);
15400             gv = NULL;
15401         }
15402         else {
15403             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
15404             /* @global, %global */
15405                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
15406                 if (!gv)
15407                     break;
15408                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
15409             }
15410             else if (obase == PL_op) /* @{expr}, %{expr} */
15411                 return find_uninit_var(cUNOPx(obase)->op_first,
15412                                                     uninit_sv, match);
15413             else /* @{expr}, %{expr} as a sub-expression */
15414                 return NULL;
15415         }
15416
15417         /* attempt to find a match within the aggregate */
15418         if (hash) {
15419             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
15420             if (keysv)
15421                 subscript_type = FUV_SUBSCRIPT_HASH;
15422         }
15423         else {
15424             index = find_array_subscript((const AV *)sv, uninit_sv);
15425             if (index >= 0)
15426                 subscript_type = FUV_SUBSCRIPT_ARRAY;
15427         }
15428
15429         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
15430             break;
15431
15432         return varname(gv, (char)(hash ? '%' : '@'), obase->op_targ,
15433                                     keysv, index, subscript_type);
15434       }
15435
15436     case OP_RV2SV:
15437         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
15438             /* $global */
15439             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
15440             if (!gv || !GvSTASH(gv))
15441                 break;
15442             if (match && (GvSV(gv) != uninit_sv))
15443                 break;
15444             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
15445         }
15446         /* ${expr} */
15447         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
15448
15449     case OP_PADSV:
15450         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
15451             break;
15452         return varname(NULL, '$', obase->op_targ,
15453                                     NULL, 0, FUV_SUBSCRIPT_NONE);
15454
15455     case OP_GVSV:
15456         gv = cGVOPx_gv(obase);
15457         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
15458             break;
15459         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
15460
15461     case OP_AELEMFAST_LEX:
15462         if (match) {
15463             SV **svp;
15464             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
15465             if (!av || SvRMAGICAL(av))
15466                 break;
15467             svp = av_fetch(av, (I8)obase->op_private, FALSE);
15468             if (!svp || *svp != uninit_sv)
15469                 break;
15470         }
15471         return varname(NULL, '$', obase->op_targ,
15472                        NULL, (I8)obase->op_private, FUV_SUBSCRIPT_ARRAY);
15473     case OP_AELEMFAST:
15474         {
15475             gv = cGVOPx_gv(obase);
15476             if (!gv)
15477                 break;
15478             if (match) {
15479                 SV **svp;
15480                 AV *const av = GvAV(gv);
15481                 if (!av || SvRMAGICAL(av))
15482                     break;
15483                 svp = av_fetch(av, (I8)obase->op_private, FALSE);
15484                 if (!svp || *svp != uninit_sv)
15485                     break;
15486             }
15487             return varname(gv, '$', 0,
15488                     NULL, (I8)obase->op_private, FUV_SUBSCRIPT_ARRAY);
15489         }
15490         NOT_REACHED; /* NOTREACHED */
15491
15492     case OP_EXISTS:
15493         o = cUNOPx(obase)->op_first;
15494         if (!o || o->op_type != OP_NULL ||
15495                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
15496             break;
15497         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
15498
15499     case OP_AELEM:
15500     case OP_HELEM:
15501     {
15502         bool negate = FALSE;
15503
15504         if (PL_op == obase)
15505             /* $a[uninit_expr] or $h{uninit_expr} */
15506             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
15507
15508         gv = NULL;
15509         o = cBINOPx(obase)->op_first;
15510         kid = cBINOPx(obase)->op_last;
15511
15512         /* get the av or hv, and optionally the gv */
15513         sv = NULL;
15514         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
15515             sv = PAD_SV(o->op_targ);
15516         }
15517         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
15518                 && cUNOPo->op_first->op_type == OP_GV)
15519         {
15520             gv = cGVOPx_gv(cUNOPo->op_first);
15521             if (!gv)
15522                 break;
15523             sv = o->op_type
15524                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
15525         }
15526         if (!sv)
15527             break;
15528
15529         if (kid && kid->op_type == OP_NEGATE) {
15530             negate = TRUE;
15531             kid = cUNOPx(kid)->op_first;
15532         }
15533
15534         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
15535             /* index is constant */
15536             SV* kidsv;
15537             if (negate) {
15538                 kidsv = sv_2mortal(newSVpvs("-"));
15539                 sv_catsv(kidsv, cSVOPx_sv(kid));
15540             }
15541             else
15542                 kidsv = cSVOPx_sv(kid);
15543             if (match) {
15544                 if (SvMAGICAL(sv))
15545                     break;
15546                 if (obase->op_type == OP_HELEM) {
15547                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
15548                     if (!he || HeVAL(he) != uninit_sv)
15549                         break;
15550                 }
15551                 else {
15552                     SV * const  opsv = cSVOPx_sv(kid);
15553                     const IV  opsviv = SvIV(opsv);
15554                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
15555                         negate ? - opsviv : opsviv,
15556                         FALSE);
15557                     if (!svp || *svp != uninit_sv)
15558                         break;
15559                 }
15560             }
15561             if (obase->op_type == OP_HELEM)
15562                 return varname(gv, '%', o->op_targ,
15563                             kidsv, 0, FUV_SUBSCRIPT_HASH);
15564             else
15565                 return varname(gv, '@', o->op_targ, NULL,
15566                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
15567                     FUV_SUBSCRIPT_ARRAY);
15568         }
15569         else  {
15570             /* index is an expression;
15571              * attempt to find a match within the aggregate */
15572             if (obase->op_type == OP_HELEM) {
15573                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
15574                 if (keysv)
15575                     return varname(gv, '%', o->op_targ,
15576                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
15577             }
15578             else {
15579                 const I32 index
15580                     = find_array_subscript((const AV *)sv, uninit_sv);
15581                 if (index >= 0)
15582                     return varname(gv, '@', o->op_targ,
15583                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
15584             }
15585             if (match)
15586                 break;
15587             return varname(gv,
15588                 (char)((o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
15589                 ? '@' : '%'),
15590                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
15591         }
15592         NOT_REACHED; /* NOTREACHED */
15593     }
15594
15595     case OP_AASSIGN:
15596         /* only examine RHS */
15597         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
15598
15599     case OP_OPEN:
15600         o = cUNOPx(obase)->op_first;
15601         if (   o->op_type == OP_PUSHMARK
15602            || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)
15603         )
15604             o = OP_SIBLING(o);
15605
15606         if (!OP_HAS_SIBLING(o)) {
15607             /* one-arg version of open is highly magical */
15608
15609             if (o->op_type == OP_GV) { /* open FOO; */
15610                 gv = cGVOPx_gv(o);
15611                 if (match && GvSV(gv) != uninit_sv)
15612                     break;
15613                 return varname(gv, '$', 0,
15614                             NULL, 0, FUV_SUBSCRIPT_NONE);
15615             }
15616             /* other possibilities not handled are:
15617              * open $x; or open my $x;  should return '${*$x}'
15618              * open expr;               should return '$'.expr ideally
15619              */
15620              break;
15621         }
15622         goto do_op;
15623
15624     /* ops where $_ may be an implicit arg */
15625     case OP_TRANS:
15626     case OP_TRANSR:
15627     case OP_SUBST:
15628     case OP_MATCH:
15629         if ( !(obase->op_flags & OPf_STACKED)) {
15630             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
15631                                  ? PAD_SVl(obase->op_targ)
15632                                  : DEFSV))
15633             {
15634                 sv = sv_newmortal();
15635                 sv_setpvs(sv, "$_");
15636                 return sv;
15637             }
15638         }
15639         goto do_op;
15640
15641     case OP_PRTF:
15642     case OP_PRINT:
15643     case OP_SAY:
15644         match = 1; /* print etc can return undef on defined args */
15645         /* skip filehandle as it can't produce 'undef' warning  */
15646         o = cUNOPx(obase)->op_first;
15647         if ((obase->op_flags & OPf_STACKED)
15648             &&
15649                (   o->op_type == OP_PUSHMARK
15650                || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)))
15651             o = OP_SIBLING(OP_SIBLING(o));
15652         goto do_op2;
15653
15654
15655     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
15656     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
15657
15658         /* the following ops are capable of returning PL_sv_undef even for
15659          * defined arg(s) */
15660
15661     case OP_BACKTICK:
15662     case OP_PIPE_OP:
15663     case OP_FILENO:
15664     case OP_BINMODE:
15665     case OP_TIED:
15666     case OP_GETC:
15667     case OP_SYSREAD:
15668     case OP_SEND:
15669     case OP_IOCTL:
15670     case OP_SOCKET:
15671     case OP_SOCKPAIR:
15672     case OP_BIND:
15673     case OP_CONNECT:
15674     case OP_LISTEN:
15675     case OP_ACCEPT:
15676     case OP_SHUTDOWN:
15677     case OP_SSOCKOPT:
15678     case OP_GETPEERNAME:
15679     case OP_FTRREAD:
15680     case OP_FTRWRITE:
15681     case OP_FTREXEC:
15682     case OP_FTROWNED:
15683     case OP_FTEREAD:
15684     case OP_FTEWRITE:
15685     case OP_FTEEXEC:
15686     case OP_FTEOWNED:
15687     case OP_FTIS:
15688     case OP_FTZERO:
15689     case OP_FTSIZE:
15690     case OP_FTFILE:
15691     case OP_FTDIR:
15692     case OP_FTLINK:
15693     case OP_FTPIPE:
15694     case OP_FTSOCK:
15695     case OP_FTBLK:
15696     case OP_FTCHR:
15697     case OP_FTTTY:
15698     case OP_FTSUID:
15699     case OP_FTSGID:
15700     case OP_FTSVTX:
15701     case OP_FTTEXT:
15702     case OP_FTBINARY:
15703     case OP_FTMTIME:
15704     case OP_FTATIME:
15705     case OP_FTCTIME:
15706     case OP_READLINK:
15707     case OP_OPEN_DIR:
15708     case OP_READDIR:
15709     case OP_TELLDIR:
15710     case OP_SEEKDIR:
15711     case OP_REWINDDIR:
15712     case OP_CLOSEDIR:
15713     case OP_GMTIME:
15714     case OP_ALARM:
15715     case OP_SEMGET:
15716     case OP_GETLOGIN:
15717     case OP_UNDEF:
15718     case OP_SUBSTR:
15719     case OP_AEACH:
15720     case OP_EACH:
15721     case OP_SORT:
15722     case OP_CALLER:
15723     case OP_DOFILE:
15724     case OP_PROTOTYPE:
15725     case OP_NCMP:
15726     case OP_SMARTMATCH:
15727     case OP_UNPACK:
15728     case OP_SYSOPEN:
15729     case OP_SYSSEEK:
15730         match = 1;
15731         goto do_op;
15732
15733     case OP_ENTERSUB:
15734     case OP_GOTO:
15735         /* XXX tmp hack: these two may call an XS sub, and currently
15736           XS subs don't have a SUB entry on the context stack, so CV and
15737           pad determination goes wrong, and BAD things happen. So, just
15738           don't try to determine the value under those circumstances.
15739           Need a better fix at dome point. DAPM 11/2007 */
15740         break;
15741
15742     case OP_FLIP:
15743     case OP_FLOP:
15744     {
15745         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
15746         if (gv && GvSV(gv) == uninit_sv)
15747             return newSVpvs_flags("$.", SVs_TEMP);
15748         goto do_op;
15749     }
15750
15751     case OP_POS:
15752         /* def-ness of rval pos() is independent of the def-ness of its arg */
15753         if ( !(obase->op_flags & OPf_MOD))
15754             break;
15755
15756     case OP_SCHOMP:
15757     case OP_CHOMP:
15758         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
15759             return newSVpvs_flags("${$/}", SVs_TEMP);
15760         /* FALLTHROUGH */
15761
15762     default:
15763     do_op:
15764         if (!(obase->op_flags & OPf_KIDS))
15765             break;
15766         o = cUNOPx(obase)->op_first;
15767         
15768     do_op2:
15769         if (!o)
15770             break;
15771
15772         /* This loop checks all the kid ops, skipping any that cannot pos-
15773          * sibly be responsible for the uninitialized value; i.e., defined
15774          * constants and ops that return nothing.  If there is only one op
15775          * left that is not skipped, then we *know* it is responsible for
15776          * the uninitialized value.  If there is more than one op left, we
15777          * have to look for an exact match in the while() loop below.
15778          * Note that we skip padrange, because the individual pad ops that
15779          * it replaced are still in the tree, so we work on them instead.
15780          */
15781         o2 = NULL;
15782         for (kid=o; kid; kid = OP_SIBLING(kid)) {
15783             const OPCODE type = kid->op_type;
15784             if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
15785               || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
15786               || (type == OP_PUSHMARK)
15787               || (type == OP_PADRANGE)
15788             )
15789             continue;
15790
15791             if (o2) { /* more than one found */
15792                 o2 = NULL;
15793                 break;
15794             }
15795             o2 = kid;
15796         }
15797         if (o2)
15798             return find_uninit_var(o2, uninit_sv, match);
15799
15800         /* scan all args */
15801         while (o) {
15802             sv = find_uninit_var(o, uninit_sv, 1);
15803             if (sv)
15804                 return sv;
15805             o = OP_SIBLING(o);
15806         }
15807         break;
15808     }
15809     return NULL;
15810 }
15811
15812
15813 /*
15814 =for apidoc report_uninit
15815
15816 Print appropriate "Use of uninitialized variable" warning.
15817
15818 =cut
15819 */
15820
15821 void
15822 Perl_report_uninit(pTHX_ const SV *uninit_sv)
15823 {
15824     if (PL_op) {
15825         SV* varname = NULL;
15826         const char *desc;
15827         if (uninit_sv && PL_curpad) {
15828             varname = find_uninit_var(PL_op, uninit_sv,0);
15829             if (varname)
15830                 sv_insert(varname, 0, 0, " ", 1);
15831         }
15832         desc = PL_op->op_type == OP_STRINGIFY && PL_op->op_folded
15833                 ? "join or string"
15834                 : OP_DESC(PL_op);
15835         /* PL_warn_uninit_sv is constant */
15836         GCC_DIAG_IGNORE(-Wformat-nonliteral);
15837         /* diag_listed_as: Use of uninitialized value%s */
15838         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
15839                 SVfARG(varname ? varname : &PL_sv_no),
15840                 " in ", desc);
15841         GCC_DIAG_RESTORE;
15842     }
15843     else {
15844         /* PL_warn_uninit is constant */
15845         GCC_DIAG_IGNORE(-Wformat-nonliteral);
15846         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
15847                     "", "", "");
15848         GCC_DIAG_RESTORE;
15849     }
15850 }
15851
15852 /*
15853  * Local variables:
15854  * c-indentation-style: bsd
15855  * c-basic-offset: 4
15856  * indent-tabs-mode: nil
15857  * End:
15858  *
15859  * ex: set ts=8 sts=4 sw=4 et:
15860  */