This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Reinstate OS2::* modules to Module::CoreList
[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
35 #ifndef HAS_C99
36 # if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L && !defined(VMS)
37 #  define HAS_C99 1
38 # endif
39 #endif
40 #ifdef HAS_C99
41 # include <stdint.h>
42 #endif
43
44 #ifdef __Lynx__
45 /* Missing proto on LynxOS */
46   char *gconvert(double, int, int,  char *);
47 #endif
48
49 /* void Gconvert: on Linux at least, gcvt (which Gconvert gets deffed to),
50  * has a mandatory return value, even though that value is just the same
51  * as the buf arg */
52
53 #define V_Gconvert(x,n,t,b) \
54 { \
55     char *rc = (char *)Gconvert(x,n,t,b); \
56     PERL_UNUSED_VAR(rc); \
57 }
58
59
60 #ifdef PERL_UTF8_CACHE_ASSERT
61 /* if adding more checks watch out for the following tests:
62  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
63  *   lib/utf8.t lib/Unicode/Collate/t/index.t
64  * --jhi
65  */
66 #   define ASSERT_UTF8_CACHE(cache) \
67     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
68                               assert((cache)[2] <= (cache)[3]); \
69                               assert((cache)[3] <= (cache)[1]);} \
70                               } STMT_END
71 #else
72 #   define ASSERT_UTF8_CACHE(cache) NOOP
73 #endif
74
75 #ifdef PERL_OLD_COPY_ON_WRITE
76 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
77 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
78 #endif
79
80 /* ============================================================================
81
82 =head1 Allocation and deallocation of SVs.
83
84 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
85 sv, av, hv...) contains type and reference count information, and for
86 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
87 contains fields specific to each type.  Some types store all they need
88 in the head, so don't have a body.
89
90 In all but the most memory-paranoid configurations (ex: PURIFY), heads
91 and bodies are allocated out of arenas, which by default are
92 approximately 4K chunks of memory parcelled up into N heads or bodies.
93 Sv-bodies are allocated by their sv-type, guaranteeing size
94 consistency needed to allocate safely from arrays.
95
96 For SV-heads, the first slot in each arena is reserved, and holds a
97 link to the next arena, some flags, and a note of the number of slots.
98 Snaked through each arena chain is a linked list of free items; when
99 this becomes empty, an extra arena is allocated and divided up into N
100 items which are threaded into the free list.
101
102 SV-bodies are similar, but they use arena-sets by default, which
103 separate the link and info from the arena itself, and reclaim the 1st
104 slot in the arena.  SV-bodies are further described later.
105
106 The following global variables are associated with arenas:
107
108     PL_sv_arenaroot     pointer to list of SV arenas
109     PL_sv_root          pointer to list of free SV structures
110
111     PL_body_arenas      head of linked-list of body arenas
112     PL_body_roots[]     array of pointers to list of free bodies of svtype
113                         arrays are indexed by the svtype needed
114
115 A few special SV heads are not allocated from an arena, but are
116 instead directly created in the interpreter structure, eg PL_sv_undef.
117 The size of arenas can be changed from the default by setting
118 PERL_ARENA_SIZE appropriately at compile time.
119
120 The SV arena serves the secondary purpose of allowing still-live SVs
121 to be located and destroyed during final cleanup.
122
123 At the lowest level, the macros new_SV() and del_SV() grab and free
124 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
125 to return the SV to the free list with error checking.) new_SV() calls
126 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
127 SVs in the free list have their SvTYPE field set to all ones.
128
129 At the time of very final cleanup, sv_free_arenas() is called from
130 perl_destruct() to physically free all the arenas allocated since the
131 start of the interpreter.
132
133 The function visit() scans the SV arenas list, and calls a specified
134 function for each SV it finds which is still live - ie which has an SvTYPE
135 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
136 following functions (specified as [function that calls visit()] / [function
137 called by visit() for each SV]):
138
139     sv_report_used() / do_report_used()
140                         dump all remaining SVs (debugging aid)
141
142     sv_clean_objs() / do_clean_objs(),do_clean_named_objs(),
143                       do_clean_named_io_objs(),do_curse()
144                         Attempt to free all objects pointed to by RVs,
145                         try to do the same for all objects indir-
146                         ectly referenced by typeglobs too, and
147                         then do a final sweep, cursing any
148                         objects that remain.  Called once from
149                         perl_destruct(), prior to calling sv_clean_all()
150                         below.
151
152     sv_clean_all() / do_clean_all()
153                         SvREFCNT_dec(sv) each remaining SV, possibly
154                         triggering an sv_free(). It also sets the
155                         SVf_BREAK flag on the SV to indicate that the
156                         refcnt has been artificially lowered, and thus
157                         stopping sv_free() from giving spurious warnings
158                         about SVs which unexpectedly have a refcnt
159                         of zero.  called repeatedly from perl_destruct()
160                         until there are no SVs left.
161
162 =head2 Arena allocator API Summary
163
164 Private API to rest of sv.c
165
166     new_SV(),  del_SV(),
167
168     new_XPVNV(), del_XPVGV(),
169     etc
170
171 Public API:
172
173     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
174
175 =cut
176
177  * ========================================================================= */
178
179 /*
180  * "A time to plant, and a time to uproot what was planted..."
181  */
182
183 #ifdef PERL_MEM_LOG
184 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
185             Perl_mem_log_new_sv(sv, file, line, func)
186 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
187             Perl_mem_log_del_sv(sv, file, line, func)
188 #else
189 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
190 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
191 #endif
192
193 #ifdef DEBUG_LEAKING_SCALARS
194 #  define FREE_SV_DEBUG_FILE(sv) STMT_START { \
195         if ((sv)->sv_debug_file) PerlMemShared_free((sv)->sv_debug_file); \
196     } STMT_END
197 #  define DEBUG_SV_SERIAL(sv)                                               \
198     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
199             PTR2UV(sv), (long)(sv)->sv_debug_serial))
200 #else
201 #  define FREE_SV_DEBUG_FILE(sv)
202 #  define DEBUG_SV_SERIAL(sv)   NOOP
203 #endif
204
205 #ifdef PERL_POISON
206 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
207 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
208 /* Whilst I'd love to do this, it seems that things like to check on
209    unreferenced scalars
210 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
211 */
212 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
213                                 PoisonNew(&SvREFCNT(sv), 1, U32)
214 #else
215 #  define SvARENA_CHAIN(sv)     SvANY(sv)
216 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
217 #  define POSION_SV_HEAD(sv)
218 #endif
219
220 /* Mark an SV head as unused, and add to free list.
221  *
222  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
223  * its refcount artificially decremented during global destruction, so
224  * there may be dangling pointers to it. The last thing we want in that
225  * case is for it to be reused. */
226
227 #define plant_SV(p) \
228     STMT_START {                                        \
229         const U32 old_flags = SvFLAGS(p);                       \
230         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
231         DEBUG_SV_SERIAL(p);                             \
232         FREE_SV_DEBUG_FILE(p);                          \
233         POSION_SV_HEAD(p);                              \
234         SvFLAGS(p) = SVTYPEMASK;                        \
235         if (!(old_flags & SVf_BREAK)) {         \
236             SvARENA_CHAIN_SET(p, PL_sv_root);   \
237             PL_sv_root = (p);                           \
238         }                                               \
239         --PL_sv_count;                                  \
240     } STMT_END
241
242 #define uproot_SV(p) \
243     STMT_START {                                        \
244         (p) = PL_sv_root;                               \
245         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
246         ++PL_sv_count;                                  \
247     } STMT_END
248
249
250 /* make some more SVs by adding another arena */
251
252 STATIC SV*
253 S_more_sv(pTHX)
254 {
255     dVAR;
256     SV* sv;
257     char *chunk;                /* must use New here to match call to */
258     Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
259     sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
260     uproot_SV(sv);
261     return sv;
262 }
263
264 /* new_SV(): return a new, empty SV head */
265
266 #ifdef DEBUG_LEAKING_SCALARS
267 /* provide a real function for a debugger to play with */
268 STATIC SV*
269 S_new_SV(pTHX_ const char *file, int line, const char *func)
270 {
271     SV* sv;
272
273     if (PL_sv_root)
274         uproot_SV(sv);
275     else
276         sv = S_more_sv(aTHX);
277     SvANY(sv) = 0;
278     SvREFCNT(sv) = 1;
279     SvFLAGS(sv) = 0;
280     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
281     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
282                 ? PL_parser->copline
283                 :  PL_curcop
284                     ? CopLINE(PL_curcop)
285                     : 0
286             );
287     sv->sv_debug_inpad = 0;
288     sv->sv_debug_parent = NULL;
289     sv->sv_debug_file = PL_curcop ? savesharedpv(CopFILE(PL_curcop)): NULL;
290
291     sv->sv_debug_serial = PL_sv_serial++;
292
293     MEM_LOG_NEW_SV(sv, file, line, func);
294     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
295             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
296
297     return sv;
298 }
299 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
300
301 #else
302 #  define new_SV(p) \
303     STMT_START {                                        \
304         if (PL_sv_root)                                 \
305             uproot_SV(p);                               \
306         else                                            \
307             (p) = S_more_sv(aTHX);                      \
308         SvANY(p) = 0;                                   \
309         SvREFCNT(p) = 1;                                \
310         SvFLAGS(p) = 0;                                 \
311         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
312     } STMT_END
313 #endif
314
315
316 /* del_SV(): return an empty SV head to the free list */
317
318 #ifdef DEBUGGING
319
320 #define del_SV(p) \
321     STMT_START {                                        \
322         if (DEBUG_D_TEST)                               \
323             del_sv(p);                                  \
324         else                                            \
325             plant_SV(p);                                \
326     } STMT_END
327
328 STATIC void
329 S_del_sv(pTHX_ SV *p)
330 {
331     dVAR;
332
333     PERL_ARGS_ASSERT_DEL_SV;
334
335     if (DEBUG_D_TEST) {
336         SV* sva;
337         bool ok = 0;
338         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
339             const SV * const sv = sva + 1;
340             const SV * const svend = &sva[SvREFCNT(sva)];
341             if (p >= sv && p < svend) {
342                 ok = 1;
343                 break;
344             }
345         }
346         if (!ok) {
347             Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
348                              "Attempt to free non-arena SV: 0x%"UVxf
349                              pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
350             return;
351         }
352     }
353     plant_SV(p);
354 }
355
356 #else /* ! DEBUGGING */
357
358 #define del_SV(p)   plant_SV(p)
359
360 #endif /* DEBUGGING */
361
362
363 /*
364 =head1 SV Manipulation Functions
365
366 =for apidoc sv_add_arena
367
368 Given a chunk of memory, link it to the head of the list of arenas,
369 and split it into a list of free SVs.
370
371 =cut
372 */
373
374 static void
375 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
376 {
377     dVAR;
378     SV *const sva = MUTABLE_SV(ptr);
379     SV* sv;
380     SV* svend;
381
382     PERL_ARGS_ASSERT_SV_ADD_ARENA;
383
384     /* The first SV in an arena isn't an SV. */
385     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
386     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
387     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
388
389     PL_sv_arenaroot = sva;
390     PL_sv_root = sva + 1;
391
392     svend = &sva[SvREFCNT(sva) - 1];
393     sv = sva + 1;
394     while (sv < svend) {
395         SvARENA_CHAIN_SET(sv, (sv + 1));
396 #ifdef DEBUGGING
397         SvREFCNT(sv) = 0;
398 #endif
399         /* Must always set typemask because it's always checked in on cleanup
400            when the arenas are walked looking for objects.  */
401         SvFLAGS(sv) = SVTYPEMASK;
402         sv++;
403     }
404     SvARENA_CHAIN_SET(sv, 0);
405 #ifdef DEBUGGING
406     SvREFCNT(sv) = 0;
407 #endif
408     SvFLAGS(sv) = SVTYPEMASK;
409 }
410
411 /* visit(): call the named function for each non-free SV in the arenas
412  * whose flags field matches the flags/mask args. */
413
414 STATIC I32
415 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
416 {
417     dVAR;
418     SV* sva;
419     I32 visited = 0;
420
421     PERL_ARGS_ASSERT_VISIT;
422
423     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
424         const SV * const svend = &sva[SvREFCNT(sva)];
425         SV* sv;
426         for (sv = sva + 1; sv < svend; ++sv) {
427             if (SvTYPE(sv) != (svtype)SVTYPEMASK
428                     && (sv->sv_flags & mask) == flags
429                     && SvREFCNT(sv))
430             {
431                 (*f)(aTHX_ sv);
432                 ++visited;
433             }
434         }
435     }
436     return visited;
437 }
438
439 #ifdef DEBUGGING
440
441 /* called by sv_report_used() for each live SV */
442
443 static void
444 do_report_used(pTHX_ SV *const sv)
445 {
446     if (SvTYPE(sv) != (svtype)SVTYPEMASK) {
447         PerlIO_printf(Perl_debug_log, "****\n");
448         sv_dump(sv);
449     }
450 }
451 #endif
452
453 /*
454 =for apidoc sv_report_used
455
456 Dump the contents of all SVs not yet freed (debugging aid).
457
458 =cut
459 */
460
461 void
462 Perl_sv_report_used(pTHX)
463 {
464 #ifdef DEBUGGING
465     visit(do_report_used, 0, 0);
466 #else
467     PERL_UNUSED_CONTEXT;
468 #endif
469 }
470
471 /* called by sv_clean_objs() for each live SV */
472
473 static void
474 do_clean_objs(pTHX_ SV *const ref)
475 {
476     dVAR;
477     assert (SvROK(ref));
478     {
479         SV * const target = SvRV(ref);
480         if (SvOBJECT(target)) {
481             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
482             if (SvWEAKREF(ref)) {
483                 sv_del_backref(target, ref);
484                 SvWEAKREF_off(ref);
485                 SvRV_set(ref, NULL);
486             } else {
487                 SvROK_off(ref);
488                 SvRV_set(ref, NULL);
489                 SvREFCNT_dec_NN(target);
490             }
491         }
492     }
493 }
494
495
496 /* clear any slots in a GV which hold objects - except IO;
497  * called by sv_clean_objs() for each live GV */
498
499 static void
500 do_clean_named_objs(pTHX_ SV *const sv)
501 {
502     dVAR;
503     SV *obj;
504     assert(SvTYPE(sv) == SVt_PVGV);
505     assert(isGV_with_GP(sv));
506     if (!GvGP(sv))
507         return;
508
509     /* freeing GP entries may indirectly free the current GV;
510      * hold onto it while we mess with the GP slots */
511     SvREFCNT_inc(sv);
512
513     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
514         DEBUG_D((PerlIO_printf(Perl_debug_log,
515                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
516         GvSV(sv) = NULL;
517         SvREFCNT_dec_NN(obj);
518     }
519     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
520         DEBUG_D((PerlIO_printf(Perl_debug_log,
521                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
522         GvAV(sv) = NULL;
523         SvREFCNT_dec_NN(obj);
524     }
525     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
526         DEBUG_D((PerlIO_printf(Perl_debug_log,
527                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
528         GvHV(sv) = NULL;
529         SvREFCNT_dec_NN(obj);
530     }
531     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
532         DEBUG_D((PerlIO_printf(Perl_debug_log,
533                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
534         GvCV_set(sv, NULL);
535         SvREFCNT_dec_NN(obj);
536     }
537     SvREFCNT_dec_NN(sv); /* undo the inc above */
538 }
539
540 /* clear any IO slots in a GV which hold objects (except stderr, defout);
541  * called by sv_clean_objs() for each live GV */
542
543 static void
544 do_clean_named_io_objs(pTHX_ SV *const sv)
545 {
546     dVAR;
547     SV *obj;
548     assert(SvTYPE(sv) == SVt_PVGV);
549     assert(isGV_with_GP(sv));
550     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
551         return;
552
553     SvREFCNT_inc(sv);
554     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
555         DEBUG_D((PerlIO_printf(Perl_debug_log,
556                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
557         GvIOp(sv) = NULL;
558         SvREFCNT_dec_NN(obj);
559     }
560     SvREFCNT_dec_NN(sv); /* undo the inc above */
561 }
562
563 /* Void wrapper to pass to visit() */
564 static void
565 do_curse(pTHX_ SV * const sv) {
566     if ((PL_stderrgv && GvGP(PL_stderrgv) && (SV*)GvIO(PL_stderrgv) == sv)
567      || (PL_defoutgv && GvGP(PL_defoutgv) && (SV*)GvIO(PL_defoutgv) == sv))
568         return;
569     (void)curse(sv, 0);
570 }
571
572 /*
573 =for apidoc sv_clean_objs
574
575 Attempt to destroy all objects not yet freed.
576
577 =cut
578 */
579
580 void
581 Perl_sv_clean_objs(pTHX)
582 {
583     dVAR;
584     GV *olddef, *olderr;
585     PL_in_clean_objs = TRUE;
586     visit(do_clean_objs, SVf_ROK, SVf_ROK);
587     /* Some barnacles may yet remain, clinging to typeglobs.
588      * Run the non-IO destructors first: they may want to output
589      * error messages, close files etc */
590     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
591     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
592     /* And if there are some very tenacious barnacles clinging to arrays,
593        closures, or what have you.... */
594     visit(do_curse, SVs_OBJECT, SVs_OBJECT);
595     olddef = PL_defoutgv;
596     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
597     if (olddef && isGV_with_GP(olddef))
598         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
599     olderr = PL_stderrgv;
600     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
601     if (olderr && isGV_with_GP(olderr))
602         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
603     SvREFCNT_dec(olddef);
604     PL_in_clean_objs = FALSE;
605 }
606
607 /* called by sv_clean_all() for each live SV */
608
609 static void
610 do_clean_all(pTHX_ SV *const sv)
611 {
612     dVAR;
613     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
614         /* don't clean pid table and strtab */
615         return;
616     }
617     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
618     SvFLAGS(sv) |= SVf_BREAK;
619     SvREFCNT_dec_NN(sv);
620 }
621
622 /*
623 =for apidoc sv_clean_all
624
625 Decrement the refcnt of each remaining SV, possibly triggering a
626 cleanup.  This function may have to be called multiple times to free
627 SVs which are in complex self-referential hierarchies.
628
629 =cut
630 */
631
632 I32
633 Perl_sv_clean_all(pTHX)
634 {
635     dVAR;
636     I32 cleaned;
637     PL_in_clean_all = TRUE;
638     cleaned = visit(do_clean_all, 0,0);
639     return cleaned;
640 }
641
642 /*
643   ARENASETS: a meta-arena implementation which separates arena-info
644   into struct arena_set, which contains an array of struct
645   arena_descs, each holding info for a single arena.  By separating
646   the meta-info from the arena, we recover the 1st slot, formerly
647   borrowed for list management.  The arena_set is about the size of an
648   arena, avoiding the needless malloc overhead of a naive linked-list.
649
650   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
651   memory in the last arena-set (1/2 on average).  In trade, we get
652   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
653   smaller types).  The recovery of the wasted space allows use of
654   small arenas for large, rare body types, by changing array* fields
655   in body_details_by_type[] below.
656 */
657 struct arena_desc {
658     char       *arena;          /* the raw storage, allocated aligned */
659     size_t      size;           /* its size ~4k typ */
660     svtype      utype;          /* bodytype stored in arena */
661 };
662
663 struct arena_set;
664
665 /* Get the maximum number of elements in set[] such that struct arena_set
666    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
667    therefore likely to be 1 aligned memory page.  */
668
669 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
670                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
671
672 struct arena_set {
673     struct arena_set* next;
674     unsigned int   set_size;    /* ie ARENAS_PER_SET */
675     unsigned int   curr;        /* index of next available arena-desc */
676     struct arena_desc set[ARENAS_PER_SET];
677 };
678
679 /*
680 =for apidoc sv_free_arenas
681
682 Deallocate the memory used by all arenas.  Note that all the individual SV
683 heads and bodies within the arenas must already have been freed.
684
685 =cut
686 */
687 void
688 Perl_sv_free_arenas(pTHX)
689 {
690     dVAR;
691     SV* sva;
692     SV* svanext;
693     unsigned int i;
694
695     /* Free arenas here, but be careful about fake ones.  (We assume
696        contiguity of the fake ones with the corresponding real ones.) */
697
698     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
699         svanext = MUTABLE_SV(SvANY(sva));
700         while (svanext && SvFAKE(svanext))
701             svanext = MUTABLE_SV(SvANY(svanext));
702
703         if (!SvFAKE(sva))
704             Safefree(sva);
705     }
706
707     {
708         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
709
710         while (aroot) {
711             struct arena_set *current = aroot;
712             i = aroot->curr;
713             while (i--) {
714                 assert(aroot->set[i].arena);
715                 Safefree(aroot->set[i].arena);
716             }
717             aroot = aroot->next;
718             Safefree(current);
719         }
720     }
721     PL_body_arenas = 0;
722
723     i = PERL_ARENA_ROOTS_SIZE;
724     while (i--)
725         PL_body_roots[i] = 0;
726
727     PL_sv_arenaroot = 0;
728     PL_sv_root = 0;
729 }
730
731 /*
732   Here are mid-level routines that manage the allocation of bodies out
733   of the various arenas.  There are 5 kinds of arenas:
734
735   1. SV-head arenas, which are discussed and handled above
736   2. regular body arenas
737   3. arenas for reduced-size bodies
738   4. Hash-Entry arenas
739
740   Arena types 2 & 3 are chained by body-type off an array of
741   arena-root pointers, which is indexed by svtype.  Some of the
742   larger/less used body types are malloced singly, since a large
743   unused block of them is wasteful.  Also, several svtypes dont have
744   bodies; the data fits into the sv-head itself.  The arena-root
745   pointer thus has a few unused root-pointers (which may be hijacked
746   later for arena types 4,5)
747
748   3 differs from 2 as an optimization; some body types have several
749   unused fields in the front of the structure (which are kept in-place
750   for consistency).  These bodies can be allocated in smaller chunks,
751   because the leading fields arent accessed.  Pointers to such bodies
752   are decremented to point at the unused 'ghost' memory, knowing that
753   the pointers are used with offsets to the real memory.
754
755
756 =head1 SV-Body Allocation
757
758 Allocation of SV-bodies is similar to SV-heads, differing as follows;
759 the allocation mechanism is used for many body types, so is somewhat
760 more complicated, it uses arena-sets, and has no need for still-live
761 SV detection.
762
763 At the outermost level, (new|del)_X*V macros return bodies of the
764 appropriate type.  These macros call either (new|del)_body_type or
765 (new|del)_body_allocated macro pairs, depending on specifics of the
766 type.  Most body types use the former pair, the latter pair is used to
767 allocate body types with "ghost fields".
768
769 "ghost fields" are fields that are unused in certain types, and
770 consequently don't need to actually exist.  They are declared because
771 they're part of a "base type", which allows use of functions as
772 methods.  The simplest examples are AVs and HVs, 2 aggregate types
773 which don't use the fields which support SCALAR semantics.
774
775 For these types, the arenas are carved up into appropriately sized
776 chunks, we thus avoid wasted memory for those unaccessed members.
777 When bodies are allocated, we adjust the pointer back in memory by the
778 size of the part not allocated, so it's as if we allocated the full
779 structure.  (But things will all go boom if you write to the part that
780 is "not there", because you'll be overwriting the last members of the
781 preceding structure in memory.)
782
783 We calculate the correction using the STRUCT_OFFSET macro on the first
784 member present.  If the allocated structure is smaller (no initial NV
785 actually allocated) then the net effect is to subtract the size of the NV
786 from the pointer, to return a new pointer as if an initial NV were actually
787 allocated.  (We were using structures named *_allocated for this, but
788 this turned out to be a subtle bug, because a structure without an NV
789 could have a lower alignment constraint, but the compiler is allowed to
790 optimised accesses based on the alignment constraint of the actual pointer
791 to the full structure, for example, using a single 64 bit load instruction
792 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
793
794 This is the same trick as was used for NV and IV bodies.  Ironically it
795 doesn't need to be used for NV bodies any more, because NV is now at
796 the start of the structure.  IV bodies don't need it either, because
797 they are no longer allocated.
798
799 In turn, the new_body_* allocators call S_new_body(), which invokes
800 new_body_inline macro, which takes a lock, and takes a body off the
801 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
802 necessary to refresh an empty list.  Then the lock is released, and
803 the body is returned.
804
805 Perl_more_bodies allocates a new arena, and carves it up into an array of N
806 bodies, which it strings into a linked list.  It looks up arena-size
807 and body-size from the body_details table described below, thus
808 supporting the multiple body-types.
809
810 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
811 the (new|del)_X*V macros are mapped directly to malloc/free.
812
813 For each sv-type, struct body_details bodies_by_type[] carries
814 parameters which control these aspects of SV handling:
815
816 Arena_size determines whether arenas are used for this body type, and if
817 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
818 zero, forcing individual mallocs and frees.
819
820 Body_size determines how big a body is, and therefore how many fit into
821 each arena.  Offset carries the body-pointer adjustment needed for
822 "ghost fields", and is used in *_allocated macros.
823
824 But its main purpose is to parameterize info needed in
825 Perl_sv_upgrade().  The info here dramatically simplifies the function
826 vs the implementation in 5.8.8, making it table-driven.  All fields
827 are used for this, except for arena_size.
828
829 For the sv-types that have no bodies, arenas are not used, so those
830 PL_body_roots[sv_type] are unused, and can be overloaded.  In
831 something of a special case, SVt_NULL is borrowed for HE arenas;
832 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
833 bodies_by_type[SVt_NULL] slot is not used, as the table is not
834 available in hv.c.
835
836 */
837
838 struct body_details {
839     U8 body_size;       /* Size to allocate  */
840     U8 copy;            /* Size of structure to copy (may be shorter)  */
841     U8 offset;
842     unsigned int type : 4;          /* We have space for a sanity check.  */
843     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
844     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
845     unsigned int arena : 1;         /* Allocated from an arena */
846     size_t arena_size;              /* Size of arena to allocate */
847 };
848
849 #define HADNV FALSE
850 #define NONV TRUE
851
852
853 #ifdef PURIFY
854 /* With -DPURFIY we allocate everything directly, and don't use arenas.
855    This seems a rather elegant way to simplify some of the code below.  */
856 #define HASARENA FALSE
857 #else
858 #define HASARENA TRUE
859 #endif
860 #define NOARENA FALSE
861
862 /* Size the arenas to exactly fit a given number of bodies.  A count
863    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
864    simplifying the default.  If count > 0, the arena is sized to fit
865    only that many bodies, allowing arenas to be used for large, rare
866    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
867    limited by PERL_ARENA_SIZE, so we can safely oversize the
868    declarations.
869  */
870 #define FIT_ARENA0(body_size)                           \
871     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
872 #define FIT_ARENAn(count,body_size)                     \
873     ( count * body_size <= PERL_ARENA_SIZE)             \
874     ? count * body_size                                 \
875     : FIT_ARENA0 (body_size)
876 #define FIT_ARENA(count,body_size)                      \
877     count                                               \
878     ? FIT_ARENAn (count, body_size)                     \
879     : FIT_ARENA0 (body_size)
880
881 /* Calculate the length to copy. Specifically work out the length less any
882    final padding the compiler needed to add.  See the comment in sv_upgrade
883    for why copying the padding proved to be a bug.  */
884
885 #define copy_length(type, last_member) \
886         STRUCT_OFFSET(type, last_member) \
887         + sizeof (((type*)SvANY((const SV *)0))->last_member)
888
889 static const struct body_details bodies_by_type[] = {
890     /* HEs use this offset for their arena.  */
891     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
892
893     /* IVs are in the head, so the allocation size is 0.  */
894     { 0,
895       sizeof(IV), /* This is used to copy out the IV body.  */
896       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
897       NOARENA /* IVS don't need an arena  */, 0
898     },
899
900     { sizeof(NV), sizeof(NV),
901       STRUCT_OFFSET(XPVNV, xnv_u),
902       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
903
904     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
905       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
906       + STRUCT_OFFSET(XPV, xpv_cur),
907       SVt_PV, FALSE, NONV, HASARENA,
908       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
909
910     { sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur),
911       copy_length(XINVLIST, is_offset) - STRUCT_OFFSET(XPV, xpv_cur),
912       + STRUCT_OFFSET(XPV, xpv_cur),
913       SVt_INVLIST, TRUE, NONV, HASARENA,
914       FIT_ARENA(0, sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur)) },
915
916     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
917       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
918       + STRUCT_OFFSET(XPV, xpv_cur),
919       SVt_PVIV, FALSE, NONV, HASARENA,
920       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
921
922     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
923       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
924       + STRUCT_OFFSET(XPV, xpv_cur),
925       SVt_PVNV, FALSE, HADNV, HASARENA,
926       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
927
928     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
929       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
930
931     { sizeof(regexp),
932       sizeof(regexp),
933       0,
934       SVt_REGEXP, TRUE, NONV, HASARENA,
935       FIT_ARENA(0, sizeof(regexp))
936     },
937
938     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
939       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
940     
941     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
942       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
943
944     { sizeof(XPVAV),
945       copy_length(XPVAV, xav_alloc),
946       0,
947       SVt_PVAV, TRUE, NONV, HASARENA,
948       FIT_ARENA(0, sizeof(XPVAV)) },
949
950     { sizeof(XPVHV),
951       copy_length(XPVHV, xhv_max),
952       0,
953       SVt_PVHV, TRUE, NONV, HASARENA,
954       FIT_ARENA(0, sizeof(XPVHV)) },
955
956     { sizeof(XPVCV),
957       sizeof(XPVCV),
958       0,
959       SVt_PVCV, TRUE, NONV, HASARENA,
960       FIT_ARENA(0, sizeof(XPVCV)) },
961
962     { sizeof(XPVFM),
963       sizeof(XPVFM),
964       0,
965       SVt_PVFM, TRUE, NONV, NOARENA,
966       FIT_ARENA(20, sizeof(XPVFM)) },
967
968     { sizeof(XPVIO),
969       sizeof(XPVIO),
970       0,
971       SVt_PVIO, TRUE, NONV, HASARENA,
972       FIT_ARENA(24, sizeof(XPVIO)) },
973 };
974
975 #define new_body_allocated(sv_type)             \
976     (void *)((char *)S_new_body(aTHX_ sv_type)  \
977              - bodies_by_type[sv_type].offset)
978
979 /* return a thing to the free list */
980
981 #define del_body(thing, root)                           \
982     STMT_START {                                        \
983         void ** const thing_copy = (void **)thing;      \
984         *thing_copy = *root;                            \
985         *root = (void*)thing_copy;                      \
986     } STMT_END
987
988 #ifdef PURIFY
989
990 #define new_XNV()       safemalloc(sizeof(XPVNV))
991 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
992 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
993
994 #define del_XPVGV(p)    safefree(p)
995
996 #else /* !PURIFY */
997
998 #define new_XNV()       new_body_allocated(SVt_NV)
999 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
1000 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
1001
1002 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
1003                                  &PL_body_roots[SVt_PVGV])
1004
1005 #endif /* PURIFY */
1006
1007 /* no arena for you! */
1008
1009 #define new_NOARENA(details) \
1010         safemalloc((details)->body_size + (details)->offset)
1011 #define new_NOARENAZ(details) \
1012         safecalloc((details)->body_size + (details)->offset, 1)
1013
1014 void *
1015 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1016                   const size_t arena_size)
1017 {
1018     dVAR;
1019     void ** const root = &PL_body_roots[sv_type];
1020     struct arena_desc *adesc;
1021     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1022     unsigned int curr;
1023     char *start;
1024     const char *end;
1025     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1026 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1027     static bool done_sanity_check;
1028
1029     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1030      * variables like done_sanity_check. */
1031     if (!done_sanity_check) {
1032         unsigned int i = SVt_LAST;
1033
1034         done_sanity_check = TRUE;
1035
1036         while (i--)
1037             assert (bodies_by_type[i].type == i);
1038     }
1039 #endif
1040
1041     assert(arena_size);
1042
1043     /* may need new arena-set to hold new arena */
1044     if (!aroot || aroot->curr >= aroot->set_size) {
1045         struct arena_set *newroot;
1046         Newxz(newroot, 1, struct arena_set);
1047         newroot->set_size = ARENAS_PER_SET;
1048         newroot->next = aroot;
1049         aroot = newroot;
1050         PL_body_arenas = (void *) newroot;
1051         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1052     }
1053
1054     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1055     curr = aroot->curr++;
1056     adesc = &(aroot->set[curr]);
1057     assert(!adesc->arena);
1058     
1059     Newx(adesc->arena, good_arena_size, char);
1060     adesc->size = good_arena_size;
1061     adesc->utype = sv_type;
1062     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
1063                           curr, (void*)adesc->arena, (UV)good_arena_size));
1064
1065     start = (char *) adesc->arena;
1066
1067     /* Get the address of the byte after the end of the last body we can fit.
1068        Remember, this is integer division:  */
1069     end = start + good_arena_size / body_size * body_size;
1070
1071     /* computed count doesn't reflect the 1st slot reservation */
1072 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1073     DEBUG_m(PerlIO_printf(Perl_debug_log,
1074                           "arena %p end %p arena-size %d (from %d) type %d "
1075                           "size %d ct %d\n",
1076                           (void*)start, (void*)end, (int)good_arena_size,
1077                           (int)arena_size, sv_type, (int)body_size,
1078                           (int)good_arena_size / (int)body_size));
1079 #else
1080     DEBUG_m(PerlIO_printf(Perl_debug_log,
1081                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1082                           (void*)start, (void*)end,
1083                           (int)arena_size, sv_type, (int)body_size,
1084                           (int)good_arena_size / (int)body_size));
1085 #endif
1086     *root = (void *)start;
1087
1088     while (1) {
1089         /* Where the next body would start:  */
1090         char * const next = start + body_size;
1091
1092         if (next >= end) {
1093             /* This is the last body:  */
1094             assert(next == end);
1095
1096             *(void **)start = 0;
1097             return *root;
1098         }
1099
1100         *(void**) start = (void *)next;
1101         start = next;
1102     }
1103 }
1104
1105 /* grab a new thing from the free list, allocating more if necessary.
1106    The inline version is used for speed in hot routines, and the
1107    function using it serves the rest (unless PURIFY).
1108 */
1109 #define new_body_inline(xpv, sv_type) \
1110     STMT_START { \
1111         void ** const r3wt = &PL_body_roots[sv_type]; \
1112         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1113           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1114                                              bodies_by_type[sv_type].body_size,\
1115                                              bodies_by_type[sv_type].arena_size)); \
1116         *(r3wt) = *(void**)(xpv); \
1117     } STMT_END
1118
1119 #ifndef PURIFY
1120
1121 STATIC void *
1122 S_new_body(pTHX_ const svtype sv_type)
1123 {
1124     dVAR;
1125     void *xpv;
1126     new_body_inline(xpv, sv_type);
1127     return xpv;
1128 }
1129
1130 #endif
1131
1132 static const struct body_details fake_rv =
1133     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1134
1135 /*
1136 =for apidoc sv_upgrade
1137
1138 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1139 SV, then copies across as much information as possible from the old body.
1140 It croaks if the SV is already in a more complex form than requested.  You
1141 generally want to use the C<SvUPGRADE> macro wrapper, which checks the type
1142 before calling C<sv_upgrade>, and hence does not croak.  See also
1143 C<svtype>.
1144
1145 =cut
1146 */
1147
1148 void
1149 Perl_sv_upgrade(pTHX_ SV *const sv, svtype new_type)
1150 {
1151     dVAR;
1152     void*       old_body;
1153     void*       new_body;
1154     const svtype old_type = SvTYPE(sv);
1155     const struct body_details *new_type_details;
1156     const struct body_details *old_type_details
1157         = bodies_by_type + old_type;
1158     SV *referant = NULL;
1159
1160     PERL_ARGS_ASSERT_SV_UPGRADE;
1161
1162     if (old_type == new_type)
1163         return;
1164
1165     /* This clause was purposefully added ahead of the early return above to
1166        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1167        inference by Nick I-S that it would fix other troublesome cases. See
1168        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1169
1170        Given that shared hash key scalars are no longer PVIV, but PV, there is
1171        no longer need to unshare so as to free up the IVX slot for its proper
1172        purpose. So it's safe to move the early return earlier.  */
1173
1174     if (new_type > SVt_PVMG && SvIsCOW(sv)) {
1175         sv_force_normal_flags(sv, 0);
1176     }
1177
1178     old_body = SvANY(sv);
1179
1180     /* Copying structures onto other structures that have been neatly zeroed
1181        has a subtle gotcha. Consider XPVMG
1182
1183        +------+------+------+------+------+-------+-------+
1184        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1185        +------+------+------+------+------+-------+-------+
1186        0      4      8     12     16     20      24      28
1187
1188        where NVs are aligned to 8 bytes, so that sizeof that structure is
1189        actually 32 bytes long, with 4 bytes of padding at the end:
1190
1191        +------+------+------+------+------+-------+-------+------+
1192        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1193        +------+------+------+------+------+-------+-------+------+
1194        0      4      8     12     16     20      24      28     32
1195
1196        so what happens if you allocate memory for this structure:
1197
1198        +------+------+------+------+------+-------+-------+------+------+...
1199        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1200        +------+------+------+------+------+-------+-------+------+------+...
1201        0      4      8     12     16     20      24      28     32     36
1202
1203        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1204        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1205        started out as zero once, but it's quite possible that it isn't. So now,
1206        rather than a nicely zeroed GP, you have it pointing somewhere random.
1207        Bugs ensue.
1208
1209        (In fact, GP ends up pointing at a previous GP structure, because the
1210        principle cause of the padding in XPVMG getting garbage is a copy of
1211        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1212        this happens to be moot because XPVGV has been re-ordered, with GP
1213        no longer after STASH)
1214
1215        So we are careful and work out the size of used parts of all the
1216        structures.  */
1217
1218     switch (old_type) {
1219     case SVt_NULL:
1220         break;
1221     case SVt_IV:
1222         if (SvROK(sv)) {
1223             referant = SvRV(sv);
1224             old_type_details = &fake_rv;
1225             if (new_type == SVt_NV)
1226                 new_type = SVt_PVNV;
1227         } else {
1228             if (new_type < SVt_PVIV) {
1229                 new_type = (new_type == SVt_NV)
1230                     ? SVt_PVNV : SVt_PVIV;
1231             }
1232         }
1233         break;
1234     case SVt_NV:
1235         if (new_type < SVt_PVNV) {
1236             new_type = SVt_PVNV;
1237         }
1238         break;
1239     case SVt_PV:
1240         assert(new_type > SVt_PV);
1241         assert(SVt_IV < SVt_PV);
1242         assert(SVt_NV < SVt_PV);
1243         break;
1244     case SVt_PVIV:
1245         break;
1246     case SVt_PVNV:
1247         break;
1248     case SVt_PVMG:
1249         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1250            there's no way that it can be safely upgraded, because perl.c
1251            expects to Safefree(SvANY(PL_mess_sv))  */
1252         assert(sv != PL_mess_sv);
1253         /* This flag bit is used to mean other things in other scalar types.
1254            Given that it only has meaning inside the pad, it shouldn't be set
1255            on anything that can get upgraded.  */
1256         assert(!SvPAD_TYPED(sv));
1257         break;
1258     default:
1259         if (UNLIKELY(old_type_details->cant_upgrade))
1260             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1261                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1262     }
1263
1264     if (UNLIKELY(old_type > new_type))
1265         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1266                 (int)old_type, (int)new_type);
1267
1268     new_type_details = bodies_by_type + new_type;
1269
1270     SvFLAGS(sv) &= ~SVTYPEMASK;
1271     SvFLAGS(sv) |= new_type;
1272
1273     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1274        the return statements above will have triggered.  */
1275     assert (new_type != SVt_NULL);
1276     switch (new_type) {
1277     case SVt_IV:
1278         assert(old_type == SVt_NULL);
1279         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1280         SvIV_set(sv, 0);
1281         return;
1282     case SVt_NV:
1283         assert(old_type == SVt_NULL);
1284         SvANY(sv) = new_XNV();
1285         SvNV_set(sv, 0);
1286         return;
1287     case SVt_PVHV:
1288     case SVt_PVAV:
1289         assert(new_type_details->body_size);
1290
1291 #ifndef PURIFY  
1292         assert(new_type_details->arena);
1293         assert(new_type_details->arena_size);
1294         /* This points to the start of the allocated area.  */
1295         new_body_inline(new_body, new_type);
1296         Zero(new_body, new_type_details->body_size, char);
1297         new_body = ((char *)new_body) - new_type_details->offset;
1298 #else
1299         /* We always allocated the full length item with PURIFY. To do this
1300            we fake things so that arena is false for all 16 types..  */
1301         new_body = new_NOARENAZ(new_type_details);
1302 #endif
1303         SvANY(sv) = new_body;
1304         if (new_type == SVt_PVAV) {
1305             AvMAX(sv)   = -1;
1306             AvFILLp(sv) = -1;
1307             AvREAL_only(sv);
1308             if (old_type_details->body_size) {
1309                 AvALLOC(sv) = 0;
1310             } else {
1311                 /* It will have been zeroed when the new body was allocated.
1312                    Lets not write to it, in case it confuses a write-back
1313                    cache.  */
1314             }
1315         } else {
1316             assert(!SvOK(sv));
1317             SvOK_off(sv);
1318 #ifndef NODEFAULT_SHAREKEYS
1319             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1320 #endif
1321             /* start with PERL_HASH_DEFAULT_HvMAX+1 buckets: */
1322             HvMAX(sv) = PERL_HASH_DEFAULT_HvMAX;
1323         }
1324
1325         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1326            The target created by newSVrv also is, and it can have magic.
1327            However, it never has SvPVX set.
1328         */
1329         if (old_type == SVt_IV) {
1330             assert(!SvROK(sv));
1331         } else if (old_type >= SVt_PV) {
1332             assert(SvPVX_const(sv) == 0);
1333         }
1334
1335         if (old_type >= SVt_PVMG) {
1336             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1337             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1338         } else {
1339             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1340         }
1341         break;
1342
1343     case SVt_PVIV:
1344         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1345            no route from NV to PVIV, NOK can never be true  */
1346         assert(!SvNOKp(sv));
1347         assert(!SvNOK(sv));
1348     case SVt_PVIO:
1349     case SVt_PVFM:
1350     case SVt_PVGV:
1351     case SVt_PVCV:
1352     case SVt_PVLV:
1353     case SVt_INVLIST:
1354     case SVt_REGEXP:
1355     case SVt_PVMG:
1356     case SVt_PVNV:
1357     case SVt_PV:
1358
1359         assert(new_type_details->body_size);
1360         /* We always allocated the full length item with PURIFY. To do this
1361            we fake things so that arena is false for all 16 types..  */
1362         if(new_type_details->arena) {
1363             /* This points to the start of the allocated area.  */
1364             new_body_inline(new_body, new_type);
1365             Zero(new_body, new_type_details->body_size, char);
1366             new_body = ((char *)new_body) - new_type_details->offset;
1367         } else {
1368             new_body = new_NOARENAZ(new_type_details);
1369         }
1370         SvANY(sv) = new_body;
1371
1372         if (old_type_details->copy) {
1373             /* There is now the potential for an upgrade from something without
1374                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1375             int offset = old_type_details->offset;
1376             int length = old_type_details->copy;
1377
1378             if (new_type_details->offset > old_type_details->offset) {
1379                 const int difference
1380                     = new_type_details->offset - old_type_details->offset;
1381                 offset += difference;
1382                 length -= difference;
1383             }
1384             assert (length >= 0);
1385                 
1386             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1387                  char);
1388         }
1389
1390 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1391         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1392          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1393          * NV slot, but the new one does, then we need to initialise the
1394          * freshly created NV slot with whatever the correct bit pattern is
1395          * for 0.0  */
1396         if (old_type_details->zero_nv && !new_type_details->zero_nv
1397             && !isGV_with_GP(sv))
1398             SvNV_set(sv, 0);
1399 #endif
1400
1401         if (UNLIKELY(new_type == SVt_PVIO)) {
1402             IO * const io = MUTABLE_IO(sv);
1403             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1404
1405             SvOBJECT_on(io);
1406             /* Clear the stashcache because a new IO could overrule a package
1407                name */
1408             DEBUG_o(Perl_deb(aTHX_ "sv_upgrade clearing PL_stashcache\n"));
1409             hv_clear(PL_stashcache);
1410
1411             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1412             IoPAGE_LEN(sv) = 60;
1413         }
1414         if (UNLIKELY(new_type == SVt_REGEXP))
1415             sv->sv_u.svu_rx = (regexp *)new_body;
1416         else if (old_type < SVt_PV) {
1417             /* referant will be NULL unless the old type was SVt_IV emulating
1418                SVt_RV */
1419             sv->sv_u.svu_rv = referant;
1420         }
1421         break;
1422     default:
1423         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1424                    (unsigned long)new_type);
1425     }
1426
1427     if (old_type > SVt_IV) {
1428 #ifdef PURIFY
1429         safefree(old_body);
1430 #else
1431         /* Note that there is an assumption that all bodies of types that
1432            can be upgraded came from arenas. Only the more complex non-
1433            upgradable types are allowed to be directly malloc()ed.  */
1434         assert(old_type_details->arena);
1435         del_body((void*)((char*)old_body + old_type_details->offset),
1436                  &PL_body_roots[old_type]);
1437 #endif
1438     }
1439 }
1440
1441 /*
1442 =for apidoc sv_backoff
1443
1444 Remove any string offset.  You should normally use the C<SvOOK_off> macro
1445 wrapper instead.
1446
1447 =cut
1448 */
1449
1450 int
1451 Perl_sv_backoff(pTHX_ SV *const sv)
1452 {
1453     STRLEN delta;
1454     const char * const s = SvPVX_const(sv);
1455
1456     PERL_ARGS_ASSERT_SV_BACKOFF;
1457     PERL_UNUSED_CONTEXT;
1458
1459     assert(SvOOK(sv));
1460     assert(SvTYPE(sv) != SVt_PVHV);
1461     assert(SvTYPE(sv) != SVt_PVAV);
1462
1463     SvOOK_offset(sv, delta);
1464     
1465     SvLEN_set(sv, SvLEN(sv) + delta);
1466     SvPV_set(sv, SvPVX(sv) - delta);
1467     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1468     SvFLAGS(sv) &= ~SVf_OOK;
1469     return 0;
1470 }
1471
1472 /*
1473 =for apidoc sv_grow
1474
1475 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1476 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1477 Use the C<SvGROW> wrapper instead.
1478
1479 =cut
1480 */
1481
1482 static void S_sv_uncow(pTHX_ SV * const sv, const U32 flags);
1483
1484 char *
1485 Perl_sv_grow(pTHX_ SV *const sv, STRLEN newlen)
1486 {
1487     char *s;
1488
1489     PERL_ARGS_ASSERT_SV_GROW;
1490
1491     if (SvROK(sv))
1492         sv_unref(sv);
1493     if (SvTYPE(sv) < SVt_PV) {
1494         sv_upgrade(sv, SVt_PV);
1495         s = SvPVX_mutable(sv);
1496     }
1497     else if (SvOOK(sv)) {       /* pv is offset? */
1498         sv_backoff(sv);
1499         s = SvPVX_mutable(sv);
1500         if (newlen > SvLEN(sv))
1501             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1502     }
1503     else
1504     {
1505         if (SvIsCOW(sv)) S_sv_uncow(aTHX_ sv, 0);
1506         s = SvPVX_mutable(sv);
1507     }
1508
1509 #ifdef PERL_NEW_COPY_ON_WRITE
1510     /* the new COW scheme uses SvPVX(sv)[SvLEN(sv)-1] (if spare)
1511      * to store the COW count. So in general, allocate one more byte than
1512      * asked for, to make it likely this byte is always spare: and thus
1513      * make more strings COW-able.
1514      * If the new size is a big power of two, don't bother: we assume the
1515      * caller wanted a nice 2^N sized block and will be annoyed at getting
1516      * 2^N+1 */
1517     if (newlen & 0xff)
1518         newlen++;
1519 #endif
1520
1521     if (newlen > SvLEN(sv)) {           /* need more room? */
1522         STRLEN minlen = SvCUR(sv);
1523         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1524         if (newlen < minlen)
1525             newlen = minlen;
1526 #ifndef Perl_safesysmalloc_size
1527         newlen = PERL_STRLEN_ROUNDUP(newlen);
1528 #endif
1529         if (SvLEN(sv) && s) {
1530             s = (char*)saferealloc(s, newlen);
1531         }
1532         else {
1533             s = (char*)safemalloc(newlen);
1534             if (SvPVX_const(sv) && SvCUR(sv)) {
1535                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1536             }
1537         }
1538         SvPV_set(sv, s);
1539 #ifdef Perl_safesysmalloc_size
1540         /* Do this here, do it once, do it right, and then we will never get
1541            called back into sv_grow() unless there really is some growing
1542            needed.  */
1543         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1544 #else
1545         SvLEN_set(sv, newlen);
1546 #endif
1547     }
1548     return s;
1549 }
1550
1551 /*
1552 =for apidoc sv_setiv
1553
1554 Copies an integer into the given SV, upgrading first if necessary.
1555 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1556
1557 =cut
1558 */
1559
1560 void
1561 Perl_sv_setiv(pTHX_ SV *const sv, const IV i)
1562 {
1563     dVAR;
1564
1565     PERL_ARGS_ASSERT_SV_SETIV;
1566
1567     SV_CHECK_THINKFIRST_COW_DROP(sv);
1568     switch (SvTYPE(sv)) {
1569     case SVt_NULL:
1570     case SVt_NV:
1571         sv_upgrade(sv, SVt_IV);
1572         break;
1573     case SVt_PV:
1574         sv_upgrade(sv, SVt_PVIV);
1575         break;
1576
1577     case SVt_PVGV:
1578         if (!isGV_with_GP(sv))
1579             break;
1580     case SVt_PVAV:
1581     case SVt_PVHV:
1582     case SVt_PVCV:
1583     case SVt_PVFM:
1584     case SVt_PVIO:
1585         /* diag_listed_as: Can't coerce %s to %s in %s */
1586         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1587                    OP_DESC(PL_op));
1588     default: NOOP;
1589     }
1590     (void)SvIOK_only(sv);                       /* validate number */
1591     SvIV_set(sv, i);
1592     SvTAINT(sv);
1593 }
1594
1595 /*
1596 =for apidoc sv_setiv_mg
1597
1598 Like C<sv_setiv>, but also handles 'set' magic.
1599
1600 =cut
1601 */
1602
1603 void
1604 Perl_sv_setiv_mg(pTHX_ SV *const sv, const IV i)
1605 {
1606     PERL_ARGS_ASSERT_SV_SETIV_MG;
1607
1608     sv_setiv(sv,i);
1609     SvSETMAGIC(sv);
1610 }
1611
1612 /*
1613 =for apidoc sv_setuv
1614
1615 Copies an unsigned integer into the given SV, upgrading first if necessary.
1616 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1617
1618 =cut
1619 */
1620
1621 void
1622 Perl_sv_setuv(pTHX_ SV *const sv, const UV u)
1623 {
1624     PERL_ARGS_ASSERT_SV_SETUV;
1625
1626     /* With the if statement to ensure that integers are stored as IVs whenever
1627        possible:
1628        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1629
1630        without
1631        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1632
1633        If you wish to remove the following if statement, so that this routine
1634        (and its callers) always return UVs, please benchmark to see what the
1635        effect is. Modern CPUs may be different. Or may not :-)
1636     */
1637     if (u <= (UV)IV_MAX) {
1638        sv_setiv(sv, (IV)u);
1639        return;
1640     }
1641     sv_setiv(sv, 0);
1642     SvIsUV_on(sv);
1643     SvUV_set(sv, u);
1644 }
1645
1646 /*
1647 =for apidoc sv_setuv_mg
1648
1649 Like C<sv_setuv>, but also handles 'set' magic.
1650
1651 =cut
1652 */
1653
1654 void
1655 Perl_sv_setuv_mg(pTHX_ SV *const sv, const UV u)
1656 {
1657     PERL_ARGS_ASSERT_SV_SETUV_MG;
1658
1659     sv_setuv(sv,u);
1660     SvSETMAGIC(sv);
1661 }
1662
1663 /*
1664 =for apidoc sv_setnv
1665
1666 Copies a double into the given SV, upgrading first if necessary.
1667 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1668
1669 =cut
1670 */
1671
1672 void
1673 Perl_sv_setnv(pTHX_ SV *const sv, const NV num)
1674 {
1675     dVAR;
1676
1677     PERL_ARGS_ASSERT_SV_SETNV;
1678
1679     SV_CHECK_THINKFIRST_COW_DROP(sv);
1680     switch (SvTYPE(sv)) {
1681     case SVt_NULL:
1682     case SVt_IV:
1683         sv_upgrade(sv, SVt_NV);
1684         break;
1685     case SVt_PV:
1686     case SVt_PVIV:
1687         sv_upgrade(sv, SVt_PVNV);
1688         break;
1689
1690     case SVt_PVGV:
1691         if (!isGV_with_GP(sv))
1692             break;
1693     case SVt_PVAV:
1694     case SVt_PVHV:
1695     case SVt_PVCV:
1696     case SVt_PVFM:
1697     case SVt_PVIO:
1698         /* diag_listed_as: Can't coerce %s to %s in %s */
1699         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1700                    OP_DESC(PL_op));
1701     default: NOOP;
1702     }
1703     SvNV_set(sv, num);
1704     (void)SvNOK_only(sv);                       /* validate number */
1705     SvTAINT(sv);
1706 }
1707
1708 /*
1709 =for apidoc sv_setnv_mg
1710
1711 Like C<sv_setnv>, but also handles 'set' magic.
1712
1713 =cut
1714 */
1715
1716 void
1717 Perl_sv_setnv_mg(pTHX_ SV *const sv, const NV num)
1718 {
1719     PERL_ARGS_ASSERT_SV_SETNV_MG;
1720
1721     sv_setnv(sv,num);
1722     SvSETMAGIC(sv);
1723 }
1724
1725 /* Return a cleaned-up, printable version of sv, for non-numeric, or
1726  * not incrementable warning display.
1727  * Originally part of S_not_a_number().
1728  * The return value may be != tmpbuf.
1729  */
1730
1731 STATIC const char *
1732 S_sv_display(pTHX_ SV *const sv, char *tmpbuf, STRLEN tmpbuf_size) {
1733     const char *pv;
1734
1735      PERL_ARGS_ASSERT_SV_DISPLAY;
1736
1737      if (DO_UTF8(sv)) {
1738           SV *dsv = newSVpvs_flags("", SVs_TEMP);
1739           pv = sv_uni_display(dsv, sv, 10, UNI_DISPLAY_ISPRINT);
1740      } else {
1741           char *d = tmpbuf;
1742           const char * const limit = tmpbuf + tmpbuf_size - 8;
1743           /* each *s can expand to 4 chars + "...\0",
1744              i.e. need room for 8 chars */
1745         
1746           const char *s = SvPVX_const(sv);
1747           const char * const end = s + SvCUR(sv);
1748           for ( ; s < end && d < limit; s++ ) {
1749                int ch = *s & 0xFF;
1750                if (! isASCII(ch) && !isPRINT_LC(ch)) {
1751                     *d++ = 'M';
1752                     *d++ = '-';
1753
1754                     /* Map to ASCII "equivalent" of Latin1 */
1755                     ch = LATIN1_TO_NATIVE(NATIVE_TO_LATIN1(ch) & 127);
1756                }
1757                if (ch == '\n') {
1758                     *d++ = '\\';
1759                     *d++ = 'n';
1760                }
1761                else if (ch == '\r') {
1762                     *d++ = '\\';
1763                     *d++ = 'r';
1764                }
1765                else if (ch == '\f') {
1766                     *d++ = '\\';
1767                     *d++ = 'f';
1768                }
1769                else if (ch == '\\') {
1770                     *d++ = '\\';
1771                     *d++ = '\\';
1772                }
1773                else if (ch == '\0') {
1774                     *d++ = '\\';
1775                     *d++ = '0';
1776                }
1777                else if (isPRINT_LC(ch))
1778                     *d++ = ch;
1779                else {
1780                     *d++ = '^';
1781                     *d++ = toCTRL(ch);
1782                }
1783           }
1784           if (s < end) {
1785                *d++ = '.';
1786                *d++ = '.';
1787                *d++ = '.';
1788           }
1789           *d = '\0';
1790           pv = tmpbuf;
1791     }
1792
1793     return pv;
1794 }
1795
1796 /* Print an "isn't numeric" warning, using a cleaned-up,
1797  * printable version of the offending string
1798  */
1799
1800 STATIC void
1801 S_not_a_number(pTHX_ SV *const sv)
1802 {
1803      dVAR;
1804      char tmpbuf[64];
1805      const char *pv;
1806
1807      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1808
1809      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1810
1811     if (PL_op)
1812         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1813                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1814                     "Argument \"%s\" isn't numeric in %s", pv,
1815                     OP_DESC(PL_op));
1816     else
1817         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1818                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1819                     "Argument \"%s\" isn't numeric", pv);
1820 }
1821
1822 STATIC void
1823 S_not_incrementable(pTHX_ SV *const sv) {
1824      dVAR;
1825      char tmpbuf[64];
1826      const char *pv;
1827
1828      PERL_ARGS_ASSERT_NOT_INCREMENTABLE;
1829
1830      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1831
1832      Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1833                  "Argument \"%s\" treated as 0 in increment (++)", pv);
1834 }
1835
1836 /*
1837 =for apidoc looks_like_number
1838
1839 Test if the content of an SV looks like a number (or is a number).
1840 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1841 non-numeric warning), even if your atof() doesn't grok them.  Get-magic is
1842 ignored.
1843
1844 =cut
1845 */
1846
1847 I32
1848 Perl_looks_like_number(pTHX_ SV *const sv)
1849 {
1850     const char *sbegin;
1851     STRLEN len;
1852
1853     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1854
1855     if (SvPOK(sv) || SvPOKp(sv)) {
1856         sbegin = SvPV_nomg_const(sv, len);
1857     }
1858     else
1859         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1860     return grok_number(sbegin, len, NULL);
1861 }
1862
1863 STATIC bool
1864 S_glob_2number(pTHX_ GV * const gv)
1865 {
1866     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1867
1868     /* We know that all GVs stringify to something that is not-a-number,
1869         so no need to test that.  */
1870     if (ckWARN(WARN_NUMERIC))
1871     {
1872         SV *const buffer = sv_newmortal();
1873         gv_efullname3(buffer, gv, "*");
1874         not_a_number(buffer);
1875     }
1876     /* We just want something true to return, so that S_sv_2iuv_common
1877         can tail call us and return true.  */
1878     return TRUE;
1879 }
1880
1881 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1882    until proven guilty, assume that things are not that bad... */
1883
1884 /*
1885    NV_PRESERVES_UV:
1886
1887    As 64 bit platforms often have an NV that doesn't preserve all bits of
1888    an IV (an assumption perl has been based on to date) it becomes necessary
1889    to remove the assumption that the NV always carries enough precision to
1890    recreate the IV whenever needed, and that the NV is the canonical form.
1891    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1892    precision as a side effect of conversion (which would lead to insanity
1893    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1894    1) to distinguish between IV/UV/NV slots that have cached a valid
1895       conversion where precision was lost and IV/UV/NV slots that have a
1896       valid conversion which has lost no precision
1897    2) to ensure that if a numeric conversion to one form is requested that
1898       would lose precision, the precise conversion (or differently
1899       imprecise conversion) is also performed and cached, to prevent
1900       requests for different numeric formats on the same SV causing
1901       lossy conversion chains. (lossless conversion chains are perfectly
1902       acceptable (still))
1903
1904
1905    flags are used:
1906    SvIOKp is true if the IV slot contains a valid value
1907    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1908    SvNOKp is true if the NV slot contains a valid value
1909    SvNOK  is true only if the NV value is accurate
1910
1911    so
1912    while converting from PV to NV, check to see if converting that NV to an
1913    IV(or UV) would lose accuracy over a direct conversion from PV to
1914    IV(or UV). If it would, cache both conversions, return NV, but mark
1915    SV as IOK NOKp (ie not NOK).
1916
1917    While converting from PV to IV, check to see if converting that IV to an
1918    NV would lose accuracy over a direct conversion from PV to NV. If it
1919    would, cache both conversions, flag similarly.
1920
1921    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1922    correctly because if IV & NV were set NV *always* overruled.
1923    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1924    changes - now IV and NV together means that the two are interchangeable:
1925    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1926
1927    The benefit of this is that operations such as pp_add know that if
1928    SvIOK is true for both left and right operands, then integer addition
1929    can be used instead of floating point (for cases where the result won't
1930    overflow). Before, floating point was always used, which could lead to
1931    loss of precision compared with integer addition.
1932
1933    * making IV and NV equal status should make maths accurate on 64 bit
1934      platforms
1935    * may speed up maths somewhat if pp_add and friends start to use
1936      integers when possible instead of fp. (Hopefully the overhead in
1937      looking for SvIOK and checking for overflow will not outweigh the
1938      fp to integer speedup)
1939    * will slow down integer operations (callers of SvIV) on "inaccurate"
1940      values, as the change from SvIOK to SvIOKp will cause a call into
1941      sv_2iv each time rather than a macro access direct to the IV slot
1942    * should speed up number->string conversion on integers as IV is
1943      favoured when IV and NV are equally accurate
1944
1945    ####################################################################
1946    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1947    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1948    On the other hand, SvUOK is true iff UV.
1949    ####################################################################
1950
1951    Your mileage will vary depending your CPU's relative fp to integer
1952    performance ratio.
1953 */
1954
1955 #ifndef NV_PRESERVES_UV
1956 #  define IS_NUMBER_UNDERFLOW_IV 1
1957 #  define IS_NUMBER_UNDERFLOW_UV 2
1958 #  define IS_NUMBER_IV_AND_UV    2
1959 #  define IS_NUMBER_OVERFLOW_IV  4
1960 #  define IS_NUMBER_OVERFLOW_UV  5
1961
1962 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1963
1964 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1965 STATIC int
1966 S_sv_2iuv_non_preserve(pTHX_ SV *const sv
1967 #  ifdef DEBUGGING
1968                        , I32 numtype
1969 #  endif
1970                        )
1971 {
1972     dVAR;
1973
1974     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1975
1976     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));
1977     if (SvNVX(sv) < (NV)IV_MIN) {
1978         (void)SvIOKp_on(sv);
1979         (void)SvNOK_on(sv);
1980         SvIV_set(sv, IV_MIN);
1981         return IS_NUMBER_UNDERFLOW_IV;
1982     }
1983     if (SvNVX(sv) > (NV)UV_MAX) {
1984         (void)SvIOKp_on(sv);
1985         (void)SvNOK_on(sv);
1986         SvIsUV_on(sv);
1987         SvUV_set(sv, UV_MAX);
1988         return IS_NUMBER_OVERFLOW_UV;
1989     }
1990     (void)SvIOKp_on(sv);
1991     (void)SvNOK_on(sv);
1992     /* Can't use strtol etc to convert this string.  (See truth table in
1993        sv_2iv  */
1994     if (SvNVX(sv) <= (UV)IV_MAX) {
1995         SvIV_set(sv, I_V(SvNVX(sv)));
1996         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1997             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1998         } else {
1999             /* Integer is imprecise. NOK, IOKp */
2000         }
2001         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
2002     }
2003     SvIsUV_on(sv);
2004     SvUV_set(sv, U_V(SvNVX(sv)));
2005     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2006         if (SvUVX(sv) == UV_MAX) {
2007             /* As we know that NVs don't preserve UVs, UV_MAX cannot
2008                possibly be preserved by NV. Hence, it must be overflow.
2009                NOK, IOKp */
2010             return IS_NUMBER_OVERFLOW_UV;
2011         }
2012         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2013     } else {
2014         /* Integer is imprecise. NOK, IOKp */
2015     }
2016     return IS_NUMBER_OVERFLOW_IV;
2017 }
2018 #endif /* !NV_PRESERVES_UV*/
2019
2020 STATIC bool
2021 S_sv_2iuv_common(pTHX_ SV *const sv)
2022 {
2023     dVAR;
2024
2025     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
2026
2027     if (SvNOKp(sv)) {
2028         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2029          * without also getting a cached IV/UV from it at the same time
2030          * (ie PV->NV conversion should detect loss of accuracy and cache
2031          * IV or UV at same time to avoid this. */
2032         /* IV-over-UV optimisation - choose to cache IV if possible */
2033
2034         if (SvTYPE(sv) == SVt_NV)
2035             sv_upgrade(sv, SVt_PVNV);
2036
2037         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2038         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2039            certainly cast into the IV range at IV_MAX, whereas the correct
2040            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2041            cases go to UV */
2042 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2043         if (Perl_isnan(SvNVX(sv))) {
2044             SvUV_set(sv, 0);
2045             SvIsUV_on(sv);
2046             return FALSE;
2047         }
2048 #endif
2049         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2050             SvIV_set(sv, I_V(SvNVX(sv)));
2051             if (SvNVX(sv) == (NV) SvIVX(sv)
2052 #ifndef NV_PRESERVES_UV
2053                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2054                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2055                 /* Don't flag it as "accurately an integer" if the number
2056                    came from a (by definition imprecise) NV operation, and
2057                    we're outside the range of NV integer precision */
2058 #endif
2059                 ) {
2060                 if (SvNOK(sv))
2061                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2062                 else {
2063                     /* scalar has trailing garbage, eg "42a" */
2064                 }
2065                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2066                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2067                                       PTR2UV(sv),
2068                                       SvNVX(sv),
2069                                       SvIVX(sv)));
2070
2071             } else {
2072                 /* IV not precise.  No need to convert from PV, as NV
2073                    conversion would already have cached IV if it detected
2074                    that PV->IV would be better than PV->NV->IV
2075                    flags already correct - don't set public IOK.  */
2076                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2077                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2078                                       PTR2UV(sv),
2079                                       SvNVX(sv),
2080                                       SvIVX(sv)));
2081             }
2082             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2083                but the cast (NV)IV_MIN rounds to a the value less (more
2084                negative) than IV_MIN which happens to be equal to SvNVX ??
2085                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2086                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2087                (NV)UVX == NVX are both true, but the values differ. :-(
2088                Hopefully for 2s complement IV_MIN is something like
2089                0x8000000000000000 which will be exact. NWC */
2090         }
2091         else {
2092             SvUV_set(sv, U_V(SvNVX(sv)));
2093             if (
2094                 (SvNVX(sv) == (NV) SvUVX(sv))
2095 #ifndef  NV_PRESERVES_UV
2096                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2097                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2098                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2099                 /* Don't flag it as "accurately an integer" if the number
2100                    came from a (by definition imprecise) NV operation, and
2101                    we're outside the range of NV integer precision */
2102 #endif
2103                 && SvNOK(sv)
2104                 )
2105                 SvIOK_on(sv);
2106             SvIsUV_on(sv);
2107             DEBUG_c(PerlIO_printf(Perl_debug_log,
2108                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2109                                   PTR2UV(sv),
2110                                   SvUVX(sv),
2111                                   SvUVX(sv)));
2112         }
2113     }
2114     else if (SvPOKp(sv)) {
2115         UV value;
2116         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2117         /* We want to avoid a possible problem when we cache an IV/ a UV which
2118            may be later translated to an NV, and the resulting NV is not
2119            the same as the direct translation of the initial string
2120            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2121            be careful to ensure that the value with the .456 is around if the
2122            NV value is requested in the future).
2123         
2124            This means that if we cache such an IV/a UV, we need to cache the
2125            NV as well.  Moreover, we trade speed for space, and do not
2126            cache the NV if we are sure it's not needed.
2127          */
2128
2129         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2130         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2131              == IS_NUMBER_IN_UV) {
2132             /* It's definitely an integer, only upgrade to PVIV */
2133             if (SvTYPE(sv) < SVt_PVIV)
2134                 sv_upgrade(sv, SVt_PVIV);
2135             (void)SvIOK_on(sv);
2136         } else if (SvTYPE(sv) < SVt_PVNV)
2137             sv_upgrade(sv, SVt_PVNV);
2138
2139         /* If NVs preserve UVs then we only use the UV value if we know that
2140            we aren't going to call atof() below. If NVs don't preserve UVs
2141            then the value returned may have more precision than atof() will
2142            return, even though value isn't perfectly accurate.  */
2143         if ((numtype & (IS_NUMBER_IN_UV
2144 #ifdef NV_PRESERVES_UV
2145                         | IS_NUMBER_NOT_INT
2146 #endif
2147             )) == IS_NUMBER_IN_UV) {
2148             /* This won't turn off the public IOK flag if it was set above  */
2149             (void)SvIOKp_on(sv);
2150
2151             if (!(numtype & IS_NUMBER_NEG)) {
2152                 /* positive */;
2153                 if (value <= (UV)IV_MAX) {
2154                     SvIV_set(sv, (IV)value);
2155                 } else {
2156                     /* it didn't overflow, and it was positive. */
2157                     SvUV_set(sv, value);
2158                     SvIsUV_on(sv);
2159                 }
2160             } else {
2161                 /* 2s complement assumption  */
2162                 if (value <= (UV)IV_MIN) {
2163                     SvIV_set(sv, -(IV)value);
2164                 } else {
2165                     /* Too negative for an IV.  This is a double upgrade, but
2166                        I'm assuming it will be rare.  */
2167                     if (SvTYPE(sv) < SVt_PVNV)
2168                         sv_upgrade(sv, SVt_PVNV);
2169                     SvNOK_on(sv);
2170                     SvIOK_off(sv);
2171                     SvIOKp_on(sv);
2172                     SvNV_set(sv, -(NV)value);
2173                     SvIV_set(sv, IV_MIN);
2174                 }
2175             }
2176         }
2177         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2178            will be in the previous block to set the IV slot, and the next
2179            block to set the NV slot.  So no else here.  */
2180         
2181         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2182             != IS_NUMBER_IN_UV) {
2183             /* It wasn't an (integer that doesn't overflow the UV). */
2184             SvNV_set(sv, Atof(SvPVX_const(sv)));
2185
2186             if (! numtype && ckWARN(WARN_NUMERIC))
2187                 not_a_number(sv);
2188
2189 #if defined(USE_LONG_DOUBLE)
2190             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2191                                   PTR2UV(sv), SvNVX(sv)));
2192 #else
2193             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2194                                   PTR2UV(sv), SvNVX(sv)));
2195 #endif
2196
2197 #ifdef NV_PRESERVES_UV
2198             (void)SvIOKp_on(sv);
2199             (void)SvNOK_on(sv);
2200             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2201                 SvIV_set(sv, I_V(SvNVX(sv)));
2202                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2203                     SvIOK_on(sv);
2204                 } else {
2205                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2206                 }
2207                 /* UV will not work better than IV */
2208             } else {
2209                 if (SvNVX(sv) > (NV)UV_MAX) {
2210                     SvIsUV_on(sv);
2211                     /* Integer is inaccurate. NOK, IOKp, is UV */
2212                     SvUV_set(sv, UV_MAX);
2213                 } else {
2214                     SvUV_set(sv, U_V(SvNVX(sv)));
2215                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2216                        NV preservse UV so can do correct comparison.  */
2217                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2218                         SvIOK_on(sv);
2219                     } else {
2220                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2221                     }
2222                 }
2223                 SvIsUV_on(sv);
2224             }
2225 #else /* NV_PRESERVES_UV */
2226             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2227                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2228                 /* The IV/UV slot will have been set from value returned by
2229                    grok_number above.  The NV slot has just been set using
2230                    Atof.  */
2231                 SvNOK_on(sv);
2232                 assert (SvIOKp(sv));
2233             } else {
2234                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2235                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2236                     /* Small enough to preserve all bits. */
2237                     (void)SvIOKp_on(sv);
2238                     SvNOK_on(sv);
2239                     SvIV_set(sv, I_V(SvNVX(sv)));
2240                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2241                         SvIOK_on(sv);
2242                     /* Assumption: first non-preserved integer is < IV_MAX,
2243                        this NV is in the preserved range, therefore: */
2244                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2245                           < (UV)IV_MAX)) {
2246                         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);
2247                     }
2248                 } else {
2249                     /* IN_UV NOT_INT
2250                          0      0       already failed to read UV.
2251                          0      1       already failed to read UV.
2252                          1      0       you won't get here in this case. IV/UV
2253                                         slot set, public IOK, Atof() unneeded.
2254                          1      1       already read UV.
2255                        so there's no point in sv_2iuv_non_preserve() attempting
2256                        to use atol, strtol, strtoul etc.  */
2257 #  ifdef DEBUGGING
2258                     sv_2iuv_non_preserve (sv, numtype);
2259 #  else
2260                     sv_2iuv_non_preserve (sv);
2261 #  endif
2262                 }
2263             }
2264 #endif /* NV_PRESERVES_UV */
2265         /* It might be more code efficient to go through the entire logic above
2266            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2267            gets complex and potentially buggy, so more programmer efficient
2268            to do it this way, by turning off the public flags:  */
2269         if (!numtype)
2270             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2271         }
2272     }
2273     else  {
2274         if (isGV_with_GP(sv))
2275             return glob_2number(MUTABLE_GV(sv));
2276
2277         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2278                 report_uninit(sv);
2279         if (SvTYPE(sv) < SVt_IV)
2280             /* Typically the caller expects that sv_any is not NULL now.  */
2281             sv_upgrade(sv, SVt_IV);
2282         /* Return 0 from the caller.  */
2283         return TRUE;
2284     }
2285     return FALSE;
2286 }
2287
2288 /*
2289 =for apidoc sv_2iv_flags
2290
2291 Return the integer value of an SV, doing any necessary string
2292 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2293 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2294
2295 =cut
2296 */
2297
2298 IV
2299 Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags)
2300 {
2301     dVAR;
2302
2303     PERL_ARGS_ASSERT_SV_2IV_FLAGS;
2304
2305     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2306          && SvTYPE(sv) != SVt_PVFM);
2307
2308     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2309         mg_get(sv);
2310
2311     if (SvROK(sv)) {
2312         if (SvAMAGIC(sv)) {
2313             SV * tmpstr;
2314             if (flags & SV_SKIP_OVERLOAD)
2315                 return 0;
2316             tmpstr = AMG_CALLunary(sv, numer_amg);
2317             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2318                 return SvIV(tmpstr);
2319             }
2320         }
2321         return PTR2IV(SvRV(sv));
2322     }
2323
2324     if (SvVALID(sv) || isREGEXP(sv)) {
2325         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2326            the same flag bit as SVf_IVisUV, so must not let them cache IVs.
2327            In practice they are extremely unlikely to actually get anywhere
2328            accessible by user Perl code - the only way that I'm aware of is when
2329            a constant subroutine which is used as the second argument to index.
2330
2331            Regexps have no SvIVX and SvNVX fields.
2332         */
2333         assert(isREGEXP(sv) || SvPOKp(sv));
2334         {
2335             UV value;
2336             const char * const ptr =
2337                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2338             const int numtype
2339                 = grok_number(ptr, SvCUR(sv), &value);
2340
2341             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2342                 == IS_NUMBER_IN_UV) {
2343                 /* It's definitely an integer */
2344                 if (numtype & IS_NUMBER_NEG) {
2345                     if (value < (UV)IV_MIN)
2346                         return -(IV)value;
2347                 } else {
2348                     if (value < (UV)IV_MAX)
2349                         return (IV)value;
2350                 }
2351             }
2352             if (!numtype) {
2353                 if (ckWARN(WARN_NUMERIC))
2354                     not_a_number(sv);
2355             }
2356             return I_V(Atof(ptr));
2357         }
2358     }
2359
2360     if (SvTHINKFIRST(sv)) {
2361 #ifdef PERL_OLD_COPY_ON_WRITE
2362         if (SvIsCOW(sv)) {
2363             sv_force_normal_flags(sv, 0);
2364         }
2365 #endif
2366         if (SvREADONLY(sv) && !SvOK(sv)) {
2367             if (ckWARN(WARN_UNINITIALIZED))
2368                 report_uninit(sv);
2369             return 0;
2370         }
2371     }
2372
2373     if (!SvIOKp(sv)) {
2374         if (S_sv_2iuv_common(aTHX_ sv))
2375             return 0;
2376     }
2377
2378     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2379         PTR2UV(sv),SvIVX(sv)));
2380     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2381 }
2382
2383 /*
2384 =for apidoc sv_2uv_flags
2385
2386 Return the unsigned integer value of an SV, doing any necessary string
2387 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2388 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2389
2390 =cut
2391 */
2392
2393 UV
2394 Perl_sv_2uv_flags(pTHX_ SV *const sv, const I32 flags)
2395 {
2396     dVAR;
2397
2398     PERL_ARGS_ASSERT_SV_2UV_FLAGS;
2399
2400     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2401         mg_get(sv);
2402
2403     if (SvROK(sv)) {
2404         if (SvAMAGIC(sv)) {
2405             SV *tmpstr;
2406             if (flags & SV_SKIP_OVERLOAD)
2407                 return 0;
2408             tmpstr = AMG_CALLunary(sv, numer_amg);
2409             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2410                 return SvUV(tmpstr);
2411             }
2412         }
2413         return PTR2UV(SvRV(sv));
2414     }
2415
2416     if (SvVALID(sv) || isREGEXP(sv)) {
2417         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2418            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  
2419            Regexps have no SvIVX and SvNVX fields. */
2420         assert(isREGEXP(sv) || SvPOKp(sv));
2421         {
2422             UV value;
2423             const char * const ptr =
2424                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2425             const int numtype
2426                 = grok_number(ptr, SvCUR(sv), &value);
2427
2428             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2429                 == IS_NUMBER_IN_UV) {
2430                 /* It's definitely an integer */
2431                 if (!(numtype & IS_NUMBER_NEG))
2432                     return value;
2433             }
2434             if (!numtype) {
2435                 if (ckWARN(WARN_NUMERIC))
2436                     not_a_number(sv);
2437             }
2438             return U_V(Atof(ptr));
2439         }
2440     }
2441
2442     if (SvTHINKFIRST(sv)) {
2443 #ifdef PERL_OLD_COPY_ON_WRITE
2444         if (SvIsCOW(sv)) {
2445             sv_force_normal_flags(sv, 0);
2446         }
2447 #endif
2448         if (SvREADONLY(sv) && !SvOK(sv)) {
2449             if (ckWARN(WARN_UNINITIALIZED))
2450                 report_uninit(sv);
2451             return 0;
2452         }
2453     }
2454
2455     if (!SvIOKp(sv)) {
2456         if (S_sv_2iuv_common(aTHX_ sv))
2457             return 0;
2458     }
2459
2460     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2461                           PTR2UV(sv),SvUVX(sv)));
2462     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2463 }
2464
2465 /*
2466 =for apidoc sv_2nv_flags
2467
2468 Return the num value of an SV, doing any necessary string or integer
2469 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2470 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2471
2472 =cut
2473 */
2474
2475 NV
2476 Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags)
2477 {
2478     dVAR;
2479
2480     PERL_ARGS_ASSERT_SV_2NV_FLAGS;
2481
2482     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2483          && SvTYPE(sv) != SVt_PVFM);
2484     if (SvGMAGICAL(sv) || SvVALID(sv) || isREGEXP(sv)) {
2485         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2486            the same flag bit as SVf_IVisUV, so must not let them cache NVs.
2487            Regexps have no SvIVX and SvNVX fields.  */
2488         const char *ptr;
2489         if (flags & SV_GMAGIC)
2490             mg_get(sv);
2491         if (SvNOKp(sv))
2492             return SvNVX(sv);
2493         if (SvPOKp(sv) && !SvIOKp(sv)) {
2494             ptr = SvPVX_const(sv);
2495           grokpv:
2496             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2497                 !grok_number(ptr, SvCUR(sv), NULL))
2498                 not_a_number(sv);
2499             return Atof(ptr);
2500         }
2501         if (SvIOKp(sv)) {
2502             if (SvIsUV(sv))
2503                 return (NV)SvUVX(sv);
2504             else
2505                 return (NV)SvIVX(sv);
2506         }
2507         if (SvROK(sv)) {
2508             goto return_rok;
2509         }
2510         if (isREGEXP(sv)) {
2511             ptr = RX_WRAPPED((REGEXP *)sv);
2512             goto grokpv;
2513         }
2514         assert(SvTYPE(sv) >= SVt_PVMG);
2515         /* This falls through to the report_uninit near the end of the
2516            function. */
2517     } else if (SvTHINKFIRST(sv)) {
2518         if (SvROK(sv)) {
2519         return_rok:
2520             if (SvAMAGIC(sv)) {
2521                 SV *tmpstr;
2522                 if (flags & SV_SKIP_OVERLOAD)
2523                     return 0;
2524                 tmpstr = AMG_CALLunary(sv, numer_amg);
2525                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2526                     return SvNV(tmpstr);
2527                 }
2528             }
2529             return PTR2NV(SvRV(sv));
2530         }
2531 #ifdef PERL_OLD_COPY_ON_WRITE
2532         if (SvIsCOW(sv)) {
2533             sv_force_normal_flags(sv, 0);
2534         }
2535 #endif
2536         if (SvREADONLY(sv) && !SvOK(sv)) {
2537             if (ckWARN(WARN_UNINITIALIZED))
2538                 report_uninit(sv);
2539             return 0.0;
2540         }
2541     }
2542     if (SvTYPE(sv) < SVt_NV) {
2543         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2544         sv_upgrade(sv, SVt_NV);
2545 #ifdef USE_LONG_DOUBLE
2546         DEBUG_c({
2547             STORE_NUMERIC_LOCAL_SET_STANDARD();
2548             PerlIO_printf(Perl_debug_log,
2549                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2550                           PTR2UV(sv), SvNVX(sv));
2551             RESTORE_NUMERIC_LOCAL();
2552         });
2553 #else
2554         DEBUG_c({
2555             STORE_NUMERIC_LOCAL_SET_STANDARD();
2556             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2557                           PTR2UV(sv), SvNVX(sv));
2558             RESTORE_NUMERIC_LOCAL();
2559         });
2560 #endif
2561     }
2562     else if (SvTYPE(sv) < SVt_PVNV)
2563         sv_upgrade(sv, SVt_PVNV);
2564     if (SvNOKp(sv)) {
2565         return SvNVX(sv);
2566     }
2567     if (SvIOKp(sv)) {
2568         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2569 #ifdef NV_PRESERVES_UV
2570         if (SvIOK(sv))
2571             SvNOK_on(sv);
2572         else
2573             SvNOKp_on(sv);
2574 #else
2575         /* Only set the public NV OK flag if this NV preserves the IV  */
2576         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2577         if (SvIOK(sv) &&
2578             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2579                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2580             SvNOK_on(sv);
2581         else
2582             SvNOKp_on(sv);
2583 #endif
2584     }
2585     else if (SvPOKp(sv)) {
2586         UV value;
2587         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2588         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2589             not_a_number(sv);
2590 #ifdef NV_PRESERVES_UV
2591         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2592             == IS_NUMBER_IN_UV) {
2593             /* It's definitely an integer */
2594             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2595         } else
2596             SvNV_set(sv, Atof(SvPVX_const(sv)));
2597         if (numtype)
2598             SvNOK_on(sv);
2599         else
2600             SvNOKp_on(sv);
2601 #else
2602         SvNV_set(sv, Atof(SvPVX_const(sv)));
2603         /* Only set the public NV OK flag if this NV preserves the value in
2604            the PV at least as well as an IV/UV would.
2605            Not sure how to do this 100% reliably. */
2606         /* if that shift count is out of range then Configure's test is
2607            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2608            UV_BITS */
2609         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2610             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2611             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2612         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2613             /* Can't use strtol etc to convert this string, so don't try.
2614                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2615             SvNOK_on(sv);
2616         } else {
2617             /* value has been set.  It may not be precise.  */
2618             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2619                 /* 2s complement assumption for (UV)IV_MIN  */
2620                 SvNOK_on(sv); /* Integer is too negative.  */
2621             } else {
2622                 SvNOKp_on(sv);
2623                 SvIOKp_on(sv);
2624
2625                 if (numtype & IS_NUMBER_NEG) {
2626                     SvIV_set(sv, -(IV)value);
2627                 } else if (value <= (UV)IV_MAX) {
2628                     SvIV_set(sv, (IV)value);
2629                 } else {
2630                     SvUV_set(sv, value);
2631                     SvIsUV_on(sv);
2632                 }
2633
2634                 if (numtype & IS_NUMBER_NOT_INT) {
2635                     /* I believe that even if the original PV had decimals,
2636                        they are lost beyond the limit of the FP precision.
2637                        However, neither is canonical, so both only get p
2638                        flags.  NWC, 2000/11/25 */
2639                     /* Both already have p flags, so do nothing */
2640                 } else {
2641                     const NV nv = SvNVX(sv);
2642                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2643                         if (SvIVX(sv) == I_V(nv)) {
2644                             SvNOK_on(sv);
2645                         } else {
2646                             /* It had no "." so it must be integer.  */
2647                         }
2648                         SvIOK_on(sv);
2649                     } else {
2650                         /* between IV_MAX and NV(UV_MAX).
2651                            Could be slightly > UV_MAX */
2652
2653                         if (numtype & IS_NUMBER_NOT_INT) {
2654                             /* UV and NV both imprecise.  */
2655                         } else {
2656                             const UV nv_as_uv = U_V(nv);
2657
2658                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2659                                 SvNOK_on(sv);
2660                             }
2661                             SvIOK_on(sv);
2662                         }
2663                     }
2664                 }
2665             }
2666         }
2667         /* It might be more code efficient to go through the entire logic above
2668            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2669            gets complex and potentially buggy, so more programmer efficient
2670            to do it this way, by turning off the public flags:  */
2671         if (!numtype)
2672             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2673 #endif /* NV_PRESERVES_UV */
2674     }
2675     else  {
2676         if (isGV_with_GP(sv)) {
2677             glob_2number(MUTABLE_GV(sv));
2678             return 0.0;
2679         }
2680
2681         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2682             report_uninit(sv);
2683         assert (SvTYPE(sv) >= SVt_NV);
2684         /* Typically the caller expects that sv_any is not NULL now.  */
2685         /* XXX Ilya implies that this is a bug in callers that assume this
2686            and ideally should be fixed.  */
2687         return 0.0;
2688     }
2689 #if defined(USE_LONG_DOUBLE)
2690     DEBUG_c({
2691         STORE_NUMERIC_LOCAL_SET_STANDARD();
2692         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2693                       PTR2UV(sv), SvNVX(sv));
2694         RESTORE_NUMERIC_LOCAL();
2695     });
2696 #else
2697     DEBUG_c({
2698         STORE_NUMERIC_LOCAL_SET_STANDARD();
2699         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2700                       PTR2UV(sv), SvNVX(sv));
2701         RESTORE_NUMERIC_LOCAL();
2702     });
2703 #endif
2704     return SvNVX(sv);
2705 }
2706
2707 /*
2708 =for apidoc sv_2num
2709
2710 Return an SV with the numeric value of the source SV, doing any necessary
2711 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2712 access this function.
2713
2714 =cut
2715 */
2716
2717 SV *
2718 Perl_sv_2num(pTHX_ SV *const sv)
2719 {
2720     PERL_ARGS_ASSERT_SV_2NUM;
2721
2722     if (!SvROK(sv))
2723         return sv;
2724     if (SvAMAGIC(sv)) {
2725         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2726         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2727         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2728             return sv_2num(tmpsv);
2729     }
2730     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2731 }
2732
2733 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2734  * UV as a string towards the end of buf, and return pointers to start and
2735  * end of it.
2736  *
2737  * We assume that buf is at least TYPE_CHARS(UV) long.
2738  */
2739
2740 static char *
2741 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2742 {
2743     char *ptr = buf + TYPE_CHARS(UV);
2744     char * const ebuf = ptr;
2745     int sign;
2746
2747     PERL_ARGS_ASSERT_UIV_2BUF;
2748
2749     if (is_uv)
2750         sign = 0;
2751     else if (iv >= 0) {
2752         uv = iv;
2753         sign = 0;
2754     } else {
2755         uv = -iv;
2756         sign = 1;
2757     }
2758     do {
2759         *--ptr = '0' + (char)(uv % 10);
2760     } while (uv /= 10);
2761     if (sign)
2762         *--ptr = '-';
2763     *peob = ebuf;
2764     return ptr;
2765 }
2766
2767 /*
2768 =for apidoc sv_2pv_flags
2769
2770 Returns a pointer to the string value of an SV, and sets *lp to its length.
2771 If flags includes SV_GMAGIC, does an mg_get() first.  Coerces sv to a
2772 string if necessary.  Normally invoked via the C<SvPV_flags> macro.
2773 C<sv_2pv()> and C<sv_2pv_nomg> usually end up here too.
2774
2775 =cut
2776 */
2777
2778 char *
2779 Perl_sv_2pv_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
2780 {
2781     dVAR;
2782     char *s;
2783
2784     PERL_ARGS_ASSERT_SV_2PV_FLAGS;
2785
2786     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2787          && SvTYPE(sv) != SVt_PVFM);
2788     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2789         mg_get(sv);
2790     if (SvROK(sv)) {
2791         if (SvAMAGIC(sv)) {
2792             SV *tmpstr;
2793             if (flags & SV_SKIP_OVERLOAD)
2794                 return NULL;
2795             tmpstr = AMG_CALLunary(sv, string_amg);
2796             TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2797             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2798                 /* Unwrap this:  */
2799                 /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2800                  */
2801
2802                 char *pv;
2803                 if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2804                     if (flags & SV_CONST_RETURN) {
2805                         pv = (char *) SvPVX_const(tmpstr);
2806                     } else {
2807                         pv = (flags & SV_MUTABLE_RETURN)
2808                             ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2809                     }
2810                     if (lp)
2811                         *lp = SvCUR(tmpstr);
2812                 } else {
2813                     pv = sv_2pv_flags(tmpstr, lp, flags);
2814                 }
2815                 if (SvUTF8(tmpstr))
2816                     SvUTF8_on(sv);
2817                 else
2818                     SvUTF8_off(sv);
2819                 return pv;
2820             }
2821         }
2822         {
2823             STRLEN len;
2824             char *retval;
2825             char *buffer;
2826             SV *const referent = SvRV(sv);
2827
2828             if (!referent) {
2829                 len = 7;
2830                 retval = buffer = savepvn("NULLREF", len);
2831             } else if (SvTYPE(referent) == SVt_REGEXP &&
2832                        (!(PL_curcop->cop_hints & HINT_NO_AMAGIC) ||
2833                         amagic_is_enabled(string_amg))) {
2834                 REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2835
2836                 assert(re);
2837                         
2838                 /* If the regex is UTF-8 we want the containing scalar to
2839                    have an UTF-8 flag too */
2840                 if (RX_UTF8(re))
2841                     SvUTF8_on(sv);
2842                 else
2843                     SvUTF8_off(sv);     
2844
2845                 if (lp)
2846                     *lp = RX_WRAPLEN(re);
2847  
2848                 return RX_WRAPPED(re);
2849             } else {
2850                 const char *const typestr = sv_reftype(referent, 0);
2851                 const STRLEN typelen = strlen(typestr);
2852                 UV addr = PTR2UV(referent);
2853                 const char *stashname = NULL;
2854                 STRLEN stashnamelen = 0; /* hush, gcc */
2855                 const char *buffer_end;
2856
2857                 if (SvOBJECT(referent)) {
2858                     const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2859
2860                     if (name) {
2861                         stashname = HEK_KEY(name);
2862                         stashnamelen = HEK_LEN(name);
2863
2864                         if (HEK_UTF8(name)) {
2865                             SvUTF8_on(sv);
2866                         } else {
2867                             SvUTF8_off(sv);
2868                         }
2869                     } else {
2870                         stashname = "__ANON__";
2871                         stashnamelen = 8;
2872                     }
2873                     len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2874                         + 2 * sizeof(UV) + 2 /* )\0 */;
2875                 } else {
2876                     len = typelen + 3 /* (0x */
2877                         + 2 * sizeof(UV) + 2 /* )\0 */;
2878                 }
2879
2880                 Newx(buffer, len, char);
2881                 buffer_end = retval = buffer + len;
2882
2883                 /* Working backwards  */
2884                 *--retval = '\0';
2885                 *--retval = ')';
2886                 do {
2887                     *--retval = PL_hexdigit[addr & 15];
2888                 } while (addr >>= 4);
2889                 *--retval = 'x';
2890                 *--retval = '0';
2891                 *--retval = '(';
2892
2893                 retval -= typelen;
2894                 memcpy(retval, typestr, typelen);
2895
2896                 if (stashname) {
2897                     *--retval = '=';
2898                     retval -= stashnamelen;
2899                     memcpy(retval, stashname, stashnamelen);
2900                 }
2901                 /* retval may not necessarily have reached the start of the
2902                    buffer here.  */
2903                 assert (retval >= buffer);
2904
2905                 len = buffer_end - retval - 1; /* -1 for that \0  */
2906             }
2907             if (lp)
2908                 *lp = len;
2909             SAVEFREEPV(buffer);
2910             return retval;
2911         }
2912     }
2913
2914     if (SvPOKp(sv)) {
2915         if (lp)
2916             *lp = SvCUR(sv);
2917         if (flags & SV_MUTABLE_RETURN)
2918             return SvPVX_mutable(sv);
2919         if (flags & SV_CONST_RETURN)
2920             return (char *)SvPVX_const(sv);
2921         return SvPVX(sv);
2922     }
2923
2924     if (SvIOK(sv)) {
2925         /* I'm assuming that if both IV and NV are equally valid then
2926            converting the IV is going to be more efficient */
2927         const U32 isUIOK = SvIsUV(sv);
2928         char buf[TYPE_CHARS(UV)];
2929         char *ebuf, *ptr;
2930         STRLEN len;
2931
2932         if (SvTYPE(sv) < SVt_PVIV)
2933             sv_upgrade(sv, SVt_PVIV);
2934         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2935         len = ebuf - ptr;
2936         /* inlined from sv_setpvn */
2937         s = SvGROW_mutable(sv, len + 1);
2938         Move(ptr, s, len, char);
2939         s += len;
2940         *s = '\0';
2941         SvPOK_on(sv);
2942     }
2943     else if (SvNOK(sv)) {
2944         if (SvTYPE(sv) < SVt_PVNV)
2945             sv_upgrade(sv, SVt_PVNV);
2946         if (SvNVX(sv) == 0.0) {
2947             s = SvGROW_mutable(sv, 2);
2948             *s++ = '0';
2949             *s = '\0';
2950         } else {
2951             dSAVE_ERRNO;
2952             /* The +20 is pure guesswork.  Configure test needed. --jhi */
2953             s = SvGROW_mutable(sv, NV_DIG + 20);
2954             /* some Xenix systems wipe out errno here */
2955
2956 #ifndef USE_LOCALE_NUMERIC
2957             V_Gconvert(SvNVX(sv), NV_DIG, 0, s);
2958             SvPOK_on(sv);
2959 #else
2960             {
2961                 DECLARE_STORE_LC_NUMERIC_SET_TO_NEEDED();
2962                 V_Gconvert(SvNVX(sv), NV_DIG, 0, s);
2963
2964                 /* If the radix character is UTF-8, and actually is in the
2965                  * output, turn on the UTF-8 flag for the scalar */
2966                 if (PL_numeric_local
2967                     && PL_numeric_radix_sv && SvUTF8(PL_numeric_radix_sv)
2968                     && instr(s, SvPVX_const(PL_numeric_radix_sv)))
2969                 {
2970                     SvUTF8_on(sv);
2971                 }
2972                 RESTORE_LC_NUMERIC();
2973             }
2974
2975             /* We don't call SvPOK_on(), because it may come to pass that the
2976              * locale changes so that the stringification we just did is no
2977              * longer correct.  We will have to re-stringify every time it is
2978              * needed */
2979 #endif
2980             RESTORE_ERRNO;
2981             while (*s) s++;
2982         }
2983     }
2984     else if (isGV_with_GP(sv)) {
2985         GV *const gv = MUTABLE_GV(sv);
2986         SV *const buffer = sv_newmortal();
2987
2988         gv_efullname3(buffer, gv, "*");
2989
2990         assert(SvPOK(buffer));
2991         if (SvUTF8(buffer))
2992             SvUTF8_on(sv);
2993         if (lp)
2994             *lp = SvCUR(buffer);
2995         return SvPVX(buffer);
2996     }
2997     else if (isREGEXP(sv)) {
2998         if (lp) *lp = RX_WRAPLEN((REGEXP *)sv);
2999         return RX_WRAPPED((REGEXP *)sv);
3000     }
3001     else {
3002         if (lp)
3003             *lp = 0;
3004         if (flags & SV_UNDEF_RETURNS_NULL)
3005             return NULL;
3006         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
3007             report_uninit(sv);
3008         /* Typically the caller expects that sv_any is not NULL now.  */
3009         if (!SvREADONLY(sv) && SvTYPE(sv) < SVt_PV)
3010             sv_upgrade(sv, SVt_PV);
3011         return (char *)"";
3012     }
3013
3014     {
3015         const STRLEN len = s - SvPVX_const(sv);
3016         if (lp) 
3017             *lp = len;
3018         SvCUR_set(sv, len);
3019     }
3020     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3021                           PTR2UV(sv),SvPVX_const(sv)));
3022     if (flags & SV_CONST_RETURN)
3023         return (char *)SvPVX_const(sv);
3024     if (flags & SV_MUTABLE_RETURN)
3025         return SvPVX_mutable(sv);
3026     return SvPVX(sv);
3027 }
3028
3029 /*
3030 =for apidoc sv_copypv
3031
3032 Copies a stringified representation of the source SV into the
3033 destination SV.  Automatically performs any necessary mg_get and
3034 coercion of numeric values into strings.  Guaranteed to preserve
3035 UTF8 flag even from overloaded objects.  Similar in nature to
3036 sv_2pv[_flags] but operates directly on an SV instead of just the
3037 string.  Mostly uses sv_2pv_flags to do its work, except when that
3038 would lose the UTF-8'ness of the PV.
3039
3040 =for apidoc sv_copypv_nomg
3041
3042 Like sv_copypv, but doesn't invoke get magic first.
3043
3044 =for apidoc sv_copypv_flags
3045
3046 Implementation of sv_copypv and sv_copypv_nomg.  Calls get magic iff flags
3047 include SV_GMAGIC.
3048
3049 =cut
3050 */
3051
3052 void
3053 Perl_sv_copypv(pTHX_ SV *const dsv, SV *const ssv)
3054 {
3055     PERL_ARGS_ASSERT_SV_COPYPV;
3056
3057     sv_copypv_flags(dsv, ssv, 0);
3058 }
3059
3060 void
3061 Perl_sv_copypv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
3062 {
3063     STRLEN len;
3064     const char *s;
3065
3066     PERL_ARGS_ASSERT_SV_COPYPV_FLAGS;
3067
3068     if ((flags & SV_GMAGIC) && SvGMAGICAL(ssv))
3069         mg_get(ssv);
3070     s = SvPV_nomg_const(ssv,len);
3071     sv_setpvn(dsv,s,len);
3072     if (SvUTF8(ssv))
3073         SvUTF8_on(dsv);
3074     else
3075         SvUTF8_off(dsv);
3076 }
3077
3078 /*
3079 =for apidoc sv_2pvbyte
3080
3081 Return a pointer to the byte-encoded representation of the SV, and set *lp
3082 to its length.  May cause the SV to be downgraded from UTF-8 as a
3083 side-effect.
3084
3085 Usually accessed via the C<SvPVbyte> macro.
3086
3087 =cut
3088 */
3089
3090 char *
3091 Perl_sv_2pvbyte(pTHX_ SV *sv, STRLEN *const lp)
3092 {
3093     PERL_ARGS_ASSERT_SV_2PVBYTE;
3094
3095     SvGETMAGIC(sv);
3096     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3097      || isGV_with_GP(sv) || SvROK(sv)) {
3098         SV *sv2 = sv_newmortal();
3099         sv_copypv_nomg(sv2,sv);
3100         sv = sv2;
3101     }
3102     sv_utf8_downgrade(sv,0);
3103     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3104 }
3105
3106 /*
3107 =for apidoc sv_2pvutf8
3108
3109 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3110 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3111
3112 Usually accessed via the C<SvPVutf8> macro.
3113
3114 =cut
3115 */
3116
3117 char *
3118 Perl_sv_2pvutf8(pTHX_ SV *sv, STRLEN *const lp)
3119 {
3120     PERL_ARGS_ASSERT_SV_2PVUTF8;
3121
3122     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3123      || isGV_with_GP(sv) || SvROK(sv))
3124         sv = sv_mortalcopy(sv);
3125     else
3126         SvGETMAGIC(sv);
3127     sv_utf8_upgrade_nomg(sv);
3128     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3129 }
3130
3131
3132 /*
3133 =for apidoc sv_2bool
3134
3135 This macro is only used by sv_true() or its macro equivalent, and only if
3136 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3137 It calls sv_2bool_flags with the SV_GMAGIC flag.
3138
3139 =for apidoc sv_2bool_flags
3140
3141 This function is only used by sv_true() and friends,  and only if
3142 the latter's argument is neither SvPOK, SvIOK nor SvNOK.  If the flags
3143 contain SV_GMAGIC, then it does an mg_get() first.
3144
3145
3146 =cut
3147 */
3148
3149 bool
3150 Perl_sv_2bool_flags(pTHX_ SV *sv, I32 flags)
3151 {
3152     dVAR;
3153
3154     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3155
3156     restart:
3157     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3158
3159     if (!SvOK(sv))
3160         return 0;
3161     if (SvROK(sv)) {
3162         if (SvAMAGIC(sv)) {
3163             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3164             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv)))) {
3165                 bool svb;
3166                 sv = tmpsv;
3167                 if(SvGMAGICAL(sv)) {
3168                     flags = SV_GMAGIC;
3169                     goto restart; /* call sv_2bool */
3170                 }
3171                 /* expanded SvTRUE_common(sv, (flags = 0, goto restart)) */
3172                 else if(!SvOK(sv)) {
3173                     svb = 0;
3174                 }
3175                 else if(SvPOK(sv)) {
3176                     svb = SvPVXtrue(sv);
3177                 }
3178                 else if((SvFLAGS(sv) & (SVf_IOK|SVf_NOK))) {
3179                     svb = (SvIOK(sv) && SvIVX(sv) != 0)
3180                         || (SvNOK(sv) && SvNVX(sv) != 0.0);
3181                 }
3182                 else {
3183                     flags = 0;
3184                     goto restart; /* call sv_2bool_nomg */
3185                 }
3186                 return cBOOL(svb);
3187             }
3188         }
3189         return SvRV(sv) != 0;
3190     }
3191     if (isREGEXP(sv))
3192         return
3193           RX_WRAPLEN(sv) > 1 || (RX_WRAPLEN(sv) && *RX_WRAPPED(sv) != '0');
3194     return SvTRUE_common(sv, isGV_with_GP(sv) ? 1 : 0);
3195 }
3196
3197 /*
3198 =for apidoc sv_utf8_upgrade
3199
3200 Converts the PV of an SV to its UTF-8-encoded form.
3201 Forces the SV to string form if it is not already.
3202 Will C<mg_get> on C<sv> if appropriate.
3203 Always sets the SvUTF8 flag to avoid future validity checks even
3204 if the whole string is the same in UTF-8 as not.
3205 Returns the number of bytes in the converted string
3206
3207 This is not a general purpose byte encoding to Unicode interface:
3208 use the Encode extension for that.
3209
3210 =for apidoc sv_utf8_upgrade_nomg
3211
3212 Like sv_utf8_upgrade, but doesn't do magic on C<sv>.
3213
3214 =for apidoc sv_utf8_upgrade_flags
3215
3216 Converts the PV of an SV to its UTF-8-encoded form.
3217 Forces the SV to string form if it is not already.
3218 Always sets the SvUTF8 flag to avoid future validity checks even
3219 if all the bytes are invariant in UTF-8.
3220 If C<flags> has C<SV_GMAGIC> bit set,
3221 will C<mg_get> on C<sv> if appropriate, else not.
3222
3223 If C<flags> has SV_FORCE_UTF8_UPGRADE set, this function assumes that the PV
3224 will expand when converted to UTF-8, and skips the extra work of checking for
3225 that.  Typically this flag is used by a routine that has already parsed the
3226 string and found such characters, and passes this information on so that the
3227 work doesn't have to be repeated.
3228
3229 Returns the number of bytes in the converted string.
3230
3231 This is not a general purpose byte encoding to Unicode interface:
3232 use the Encode extension for that.
3233
3234 =for apidoc sv_utf8_upgrade_flags_grow
3235
3236 Like sv_utf8_upgrade_flags, but has an additional parameter C<extra>, which is
3237 the number of unused bytes the string of 'sv' is guaranteed to have free after
3238 it upon return.  This allows the caller to reserve extra space that it intends
3239 to fill, to avoid extra grows.
3240
3241 C<sv_utf8_upgrade>, C<sv_utf8_upgrade_nomg>, and C<sv_utf8_upgrade_flags>
3242 are implemented in terms of this function.
3243
3244 Returns the number of bytes in the converted string (not including the spares).
3245
3246 =cut
3247
3248 (One might think that the calling routine could pass in the position of the
3249 first variant character when it has set SV_FORCE_UTF8_UPGRADE, so it wouldn't
3250 have to be found again.  But that is not the case, because typically when the
3251 caller is likely to use this flag, it won't be calling this routine unless it
3252 finds something that won't fit into a byte.  Otherwise it tries to not upgrade
3253 and just use bytes.  But some things that do fit into a byte are variants in
3254 utf8, and the caller may not have been keeping track of these.)
3255
3256 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3257 isn't guaranteed due to having other routines do the work in some input cases,
3258 or if the input is already flagged as being in utf8.
3259
3260 The speed of this could perhaps be improved for many cases if someone wanted to
3261 write a fast function that counts the number of variant characters in a string,
3262 especially if it could return the position of the first one.
3263
3264 */
3265
3266 STRLEN
3267 Perl_sv_utf8_upgrade_flags_grow(pTHX_ SV *const sv, const I32 flags, STRLEN extra)
3268 {
3269     dVAR;
3270
3271     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3272
3273     if (sv == &PL_sv_undef)
3274         return 0;
3275     if (!SvPOK_nog(sv)) {
3276         STRLEN len = 0;
3277         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3278             (void) sv_2pv_flags(sv,&len, flags);
3279             if (SvUTF8(sv)) {
3280                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3281                 return len;
3282             }
3283         } else {
3284             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3285         }
3286     }
3287
3288     if (SvUTF8(sv)) {
3289         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3290         return SvCUR(sv);
3291     }
3292
3293     if (SvIsCOW(sv)) {
3294         S_sv_uncow(aTHX_ sv, 0);
3295     }
3296
3297     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3298         sv_recode_to_utf8(sv, PL_encoding);
3299         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3300         return SvCUR(sv);
3301     }
3302
3303     if (SvCUR(sv) == 0) {
3304         if (extra) SvGROW(sv, extra);
3305     } else { /* Assume Latin-1/EBCDIC */
3306         /* This function could be much more efficient if we
3307          * had a FLAG in SVs to signal if there are any variant
3308          * chars in the PV.  Given that there isn't such a flag
3309          * make the loop as fast as possible (although there are certainly ways
3310          * to speed this up, eg. through vectorization) */
3311         U8 * s = (U8 *) SvPVX_const(sv);
3312         U8 * e = (U8 *) SvEND(sv);
3313         U8 *t = s;
3314         STRLEN two_byte_count = 0;
3315         
3316         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3317
3318         /* See if really will need to convert to utf8.  We mustn't rely on our
3319          * incoming SV being well formed and having a trailing '\0', as certain
3320          * code in pp_formline can send us partially built SVs. */
3321
3322         while (t < e) {
3323             const U8 ch = *t++;
3324             if (NATIVE_BYTE_IS_INVARIANT(ch)) continue;
3325
3326             t--;    /* t already incremented; re-point to first variant */
3327             two_byte_count = 1;
3328             goto must_be_utf8;
3329         }
3330
3331         /* utf8 conversion not needed because all are invariants.  Mark as
3332          * UTF-8 even if no variant - saves scanning loop */
3333         SvUTF8_on(sv);
3334         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3335         return SvCUR(sv);
3336
3337 must_be_utf8:
3338
3339         /* Here, the string should be converted to utf8, either because of an
3340          * input flag (two_byte_count = 0), or because a character that
3341          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3342          * the beginning of the string (if we didn't examine anything), or to
3343          * the first variant.  In either case, everything from s to t - 1 will
3344          * occupy only 1 byte each on output.
3345          *
3346          * There are two main ways to convert.  One is to create a new string
3347          * and go through the input starting from the beginning, appending each
3348          * converted value onto the new string as we go along.  It's probably
3349          * best to allocate enough space in the string for the worst possible
3350          * case rather than possibly running out of space and having to
3351          * reallocate and then copy what we've done so far.  Since everything
3352          * from s to t - 1 is invariant, the destination can be initialized
3353          * with these using a fast memory copy
3354          *
3355          * The other way is to figure out exactly how big the string should be
3356          * by parsing the entire input.  Then you don't have to make it big
3357          * enough to handle the worst possible case, and more importantly, if
3358          * the string you already have is large enough, you don't have to
3359          * allocate a new string, you can copy the last character in the input
3360          * string to the final position(s) that will be occupied by the
3361          * converted string and go backwards, stopping at t, since everything
3362          * before that is invariant.
3363          *
3364          * There are advantages and disadvantages to each method.
3365          *
3366          * In the first method, we can allocate a new string, do the memory
3367          * copy from the s to t - 1, and then proceed through the rest of the
3368          * string byte-by-byte.
3369          *
3370          * In the second method, we proceed through the rest of the input
3371          * string just calculating how big the converted string will be.  Then
3372          * there are two cases:
3373          *  1)  if the string has enough extra space to handle the converted
3374          *      value.  We go backwards through the string, converting until we
3375          *      get to the position we are at now, and then stop.  If this
3376          *      position is far enough along in the string, this method is
3377          *      faster than the other method.  If the memory copy were the same
3378          *      speed as the byte-by-byte loop, that position would be about
3379          *      half-way, as at the half-way mark, parsing to the end and back
3380          *      is one complete string's parse, the same amount as starting
3381          *      over and going all the way through.  Actually, it would be
3382          *      somewhat less than half-way, as it's faster to just count bytes
3383          *      than to also copy, and we don't have the overhead of allocating
3384          *      a new string, changing the scalar to use it, and freeing the
3385          *      existing one.  But if the memory copy is fast, the break-even
3386          *      point is somewhere after half way.  The counting loop could be
3387          *      sped up by vectorization, etc, to move the break-even point
3388          *      further towards the beginning.
3389          *  2)  if the string doesn't have enough space to handle the converted
3390          *      value.  A new string will have to be allocated, and one might
3391          *      as well, given that, start from the beginning doing the first
3392          *      method.  We've spent extra time parsing the string and in
3393          *      exchange all we've gotten is that we know precisely how big to
3394          *      make the new one.  Perl is more optimized for time than space,
3395          *      so this case is a loser.
3396          * So what I've decided to do is not use the 2nd method unless it is
3397          * guaranteed that a new string won't have to be allocated, assuming
3398          * the worst case.  I also decided not to put any more conditions on it
3399          * than this, for now.  It seems likely that, since the worst case is
3400          * twice as big as the unknown portion of the string (plus 1), we won't
3401          * be guaranteed enough space, causing us to go to the first method,
3402          * unless the string is short, or the first variant character is near
3403          * the end of it.  In either of these cases, it seems best to use the
3404          * 2nd method.  The only circumstance I can think of where this would
3405          * be really slower is if the string had once had much more data in it
3406          * than it does now, but there is still a substantial amount in it  */
3407
3408         {
3409             STRLEN invariant_head = t - s;
3410             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3411             if (SvLEN(sv) < size) {
3412
3413                 /* Here, have decided to allocate a new string */
3414
3415                 U8 *dst;
3416                 U8 *d;
3417
3418                 Newx(dst, size, U8);
3419
3420                 /* If no known invariants at the beginning of the input string,
3421                  * set so starts from there.  Otherwise, can use memory copy to
3422                  * get up to where we are now, and then start from here */
3423
3424                 if (invariant_head <= 0) {
3425                     d = dst;
3426                 } else {
3427                     Copy(s, dst, invariant_head, char);
3428                     d = dst + invariant_head;
3429                 }
3430
3431                 while (t < e) {
3432                     append_utf8_from_native_byte(*t, &d);
3433                     t++;
3434                 }
3435                 *d = '\0';
3436                 SvPV_free(sv); /* No longer using pre-existing string */
3437                 SvPV_set(sv, (char*)dst);
3438                 SvCUR_set(sv, d - dst);
3439                 SvLEN_set(sv, size);
3440             } else {
3441
3442                 /* Here, have decided to get the exact size of the string.
3443                  * Currently this happens only when we know that there is
3444                  * guaranteed enough space to fit the converted string, so
3445                  * don't have to worry about growing.  If two_byte_count is 0,
3446                  * then t points to the first byte of the string which hasn't
3447                  * been examined yet.  Otherwise two_byte_count is 1, and t
3448                  * points to the first byte in the string that will expand to
3449                  * two.  Depending on this, start examining at t or 1 after t.
3450                  * */
3451
3452                 U8 *d = t + two_byte_count;
3453
3454
3455                 /* Count up the remaining bytes that expand to two */
3456
3457                 while (d < e) {
3458                     const U8 chr = *d++;
3459                     if (! NATIVE_BYTE_IS_INVARIANT(chr)) two_byte_count++;
3460                 }
3461
3462                 /* The string will expand by just the number of bytes that
3463                  * occupy two positions.  But we are one afterwards because of
3464                  * the increment just above.  This is the place to put the
3465                  * trailing NUL, and to set the length before we decrement */
3466
3467                 d += two_byte_count;
3468                 SvCUR_set(sv, d - s);
3469                 *d-- = '\0';
3470
3471
3472                 /* Having decremented d, it points to the position to put the
3473                  * very last byte of the expanded string.  Go backwards through
3474                  * the string, copying and expanding as we go, stopping when we
3475                  * get to the part that is invariant the rest of the way down */
3476
3477                 e--;
3478                 while (e >= t) {
3479                     if (NATIVE_BYTE_IS_INVARIANT(*e)) {
3480                         *d-- = *e;
3481                     } else {
3482                         *d-- = UTF8_EIGHT_BIT_LO(*e);
3483                         *d-- = UTF8_EIGHT_BIT_HI(*e);
3484                     }
3485                     e--;
3486                 }
3487             }
3488
3489             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3490                 /* Update pos. We do it at the end rather than during
3491                  * the upgrade, to avoid slowing down the common case
3492                  * (upgrade without pos).
3493                  * pos can be stored as either bytes or characters.  Since
3494                  * this was previously a byte string we can just turn off
3495                  * the bytes flag. */
3496                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3497                 if (mg) {
3498                     mg->mg_flags &= ~MGf_BYTES;
3499                 }
3500                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3501                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3502             }
3503         }
3504     }
3505
3506     /* Mark as UTF-8 even if no variant - saves scanning loop */
3507     SvUTF8_on(sv);
3508     return SvCUR(sv);
3509 }
3510
3511 /*
3512 =for apidoc sv_utf8_downgrade
3513
3514 Attempts to convert the PV of an SV from characters to bytes.
3515 If the PV contains a character that cannot fit
3516 in a byte, this conversion will fail;
3517 in this case, either returns false or, if C<fail_ok> is not
3518 true, croaks.
3519
3520 This is not a general purpose Unicode to byte encoding interface:
3521 use the Encode extension for that.
3522
3523 =cut
3524 */
3525
3526 bool
3527 Perl_sv_utf8_downgrade(pTHX_ SV *const sv, const bool fail_ok)
3528 {
3529     dVAR;
3530
3531     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3532
3533     if (SvPOKp(sv) && SvUTF8(sv)) {
3534         if (SvCUR(sv)) {
3535             U8 *s;
3536             STRLEN len;
3537             int mg_flags = SV_GMAGIC;
3538
3539             if (SvIsCOW(sv)) {
3540                 S_sv_uncow(aTHX_ sv, 0);
3541             }
3542             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3543                 /* update pos */
3544                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3545                 if (mg && mg->mg_len > 0 && mg->mg_flags & MGf_BYTES) {
3546                         mg->mg_len = sv_pos_b2u_flags(sv, mg->mg_len,
3547                                                 SV_GMAGIC|SV_CONST_RETURN);
3548                         mg_flags = 0; /* sv_pos_b2u does get magic */
3549                 }
3550                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3551                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3552
3553             }
3554             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3555
3556             if (!utf8_to_bytes(s, &len)) {
3557                 if (fail_ok)
3558                     return FALSE;
3559                 else {
3560                     if (PL_op)
3561                         Perl_croak(aTHX_ "Wide character in %s",
3562                                    OP_DESC(PL_op));
3563                     else
3564                         Perl_croak(aTHX_ "Wide character");
3565                 }
3566             }
3567             SvCUR_set(sv, len);
3568         }
3569     }
3570     SvUTF8_off(sv);
3571     return TRUE;
3572 }
3573
3574 /*
3575 =for apidoc sv_utf8_encode
3576
3577 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3578 flag off so that it looks like octets again.
3579
3580 =cut
3581 */
3582
3583 void
3584 Perl_sv_utf8_encode(pTHX_ SV *const sv)
3585 {
3586     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3587
3588     if (SvREADONLY(sv)) {
3589         sv_force_normal_flags(sv, 0);
3590     }
3591     (void) sv_utf8_upgrade(sv);
3592     SvUTF8_off(sv);
3593 }
3594
3595 /*
3596 =for apidoc sv_utf8_decode
3597
3598 If the PV of the SV is an octet sequence in UTF-8
3599 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3600 so that it looks like a character.  If the PV contains only single-byte
3601 characters, the C<SvUTF8> flag stays off.
3602 Scans PV for validity and returns false if the PV is invalid UTF-8.
3603
3604 =cut
3605 */
3606
3607 bool
3608 Perl_sv_utf8_decode(pTHX_ SV *const sv)
3609 {
3610     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3611
3612     if (SvPOKp(sv)) {
3613         const U8 *start, *c;
3614         const U8 *e;
3615
3616         /* The octets may have got themselves encoded - get them back as
3617          * bytes
3618          */
3619         if (!sv_utf8_downgrade(sv, TRUE))
3620             return FALSE;
3621
3622         /* it is actually just a matter of turning the utf8 flag on, but
3623          * we want to make sure everything inside is valid utf8 first.
3624          */
3625         c = start = (const U8 *) SvPVX_const(sv);
3626         if (!is_utf8_string(c, SvCUR(sv)))
3627             return FALSE;
3628         e = (const U8 *) SvEND(sv);
3629         while (c < e) {
3630             const U8 ch = *c++;
3631             if (!UTF8_IS_INVARIANT(ch)) {
3632                 SvUTF8_on(sv);
3633                 break;
3634             }
3635         }
3636         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3637             /* XXX Is this dead code?  XS_utf8_decode calls SvSETMAGIC
3638                    after this, clearing pos.  Does anything on CPAN
3639                    need this? */
3640             /* adjust pos to the start of a UTF8 char sequence */
3641             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3642             if (mg) {
3643                 I32 pos = mg->mg_len;
3644                 if (pos > 0) {
3645                     for (c = start + pos; c > start; c--) {
3646                         if (UTF8_IS_START(*c))
3647                             break;
3648                     }
3649                     mg->mg_len  = c - start;
3650                 }
3651             }
3652             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3653                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3654         }
3655     }
3656     return TRUE;
3657 }
3658
3659 /*
3660 =for apidoc sv_setsv
3661
3662 Copies the contents of the source SV C<ssv> into the destination SV
3663 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3664 function if the source SV needs to be reused.  Does not handle 'set' magic on
3665 destination SV.  Calls 'get' magic on source SV.  Loosely speaking, it
3666 performs a copy-by-value, obliterating any previous content of the
3667 destination.
3668
3669 You probably want to use one of the assortment of wrappers, such as
3670 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3671 C<SvSetMagicSV_nosteal>.
3672
3673 =for apidoc sv_setsv_flags
3674
3675 Copies the contents of the source SV C<ssv> into the destination SV
3676 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3677 function if the source SV needs to be reused.  Does not handle 'set' magic.
3678 Loosely speaking, it performs a copy-by-value, obliterating any previous
3679 content of the destination.
3680 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3681 C<ssv> if appropriate, else not.  If the C<flags>
3682 parameter has the C<SV_NOSTEAL> bit set then the
3683 buffers of temps will not be stolen.  <sv_setsv>
3684 and C<sv_setsv_nomg> are implemented in terms of this function.
3685
3686 You probably want to use one of the assortment of wrappers, such as
3687 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3688 C<SvSetMagicSV_nosteal>.
3689
3690 This is the primary function for copying scalars, and most other
3691 copy-ish functions and macros use this underneath.
3692
3693 =cut
3694 */
3695
3696 static void
3697 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3698 {
3699     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3700     HV *old_stash = NULL;
3701
3702     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3703
3704     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3705         const char * const name = GvNAME(sstr);
3706         const STRLEN len = GvNAMELEN(sstr);
3707         {
3708             if (dtype >= SVt_PV) {
3709                 SvPV_free(dstr);
3710                 SvPV_set(dstr, 0);
3711                 SvLEN_set(dstr, 0);
3712                 SvCUR_set(dstr, 0);
3713             }
3714             SvUPGRADE(dstr, SVt_PVGV);
3715             (void)SvOK_off(dstr);
3716             isGV_with_GP_on(dstr);
3717         }
3718         GvSTASH(dstr) = GvSTASH(sstr);
3719         if (GvSTASH(dstr))
3720             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3721         gv_name_set(MUTABLE_GV(dstr), name, len,
3722                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3723         SvFAKE_on(dstr);        /* can coerce to non-glob */
3724     }
3725
3726     if(GvGP(MUTABLE_GV(sstr))) {
3727         /* If source has method cache entry, clear it */
3728         if(GvCVGEN(sstr)) {
3729             SvREFCNT_dec(GvCV(sstr));
3730             GvCV_set(sstr, NULL);
3731             GvCVGEN(sstr) = 0;
3732         }
3733         /* If source has a real method, then a method is
3734            going to change */
3735         else if(
3736          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3737         ) {
3738             mro_changes = 1;
3739         }
3740     }
3741
3742     /* If dest already had a real method, that's a change as well */
3743     if(
3744         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3745      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3746     ) {
3747         mro_changes = 1;
3748     }
3749
3750     /* We don't need to check the name of the destination if it was not a
3751        glob to begin with. */
3752     if(dtype == SVt_PVGV) {
3753         const char * const name = GvNAME((const GV *)dstr);
3754         if(
3755             strEQ(name,"ISA")
3756          /* The stash may have been detached from the symbol table, so
3757             check its name. */
3758          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3759         )
3760             mro_changes = 2;
3761         else {
3762             const STRLEN len = GvNAMELEN(dstr);
3763             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3764              || (len == 1 && name[0] == ':')) {
3765                 mro_changes = 3;
3766
3767                 /* Set aside the old stash, so we can reset isa caches on
3768                    its subclasses. */
3769                 if((old_stash = GvHV(dstr)))
3770                     /* Make sure we do not lose it early. */
3771                     SvREFCNT_inc_simple_void_NN(
3772                      sv_2mortal((SV *)old_stash)
3773                     );
3774             }
3775         }
3776
3777         SvREFCNT_inc_simple_void_NN(sv_2mortal(dstr));
3778     }
3779
3780     gp_free(MUTABLE_GV(dstr));
3781     GvINTRO_off(dstr);          /* one-shot flag */
3782     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3783     if (SvTAINTED(sstr))
3784         SvTAINT(dstr);
3785     if (GvIMPORTED(dstr) != GVf_IMPORTED
3786         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3787         {
3788             GvIMPORTED_on(dstr);
3789         }
3790     GvMULTI_on(dstr);
3791     if(mro_changes == 2) {
3792       if (GvAV((const GV *)sstr)) {
3793         MAGIC *mg;
3794         SV * const sref = (SV *)GvAV((const GV *)dstr);
3795         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3796             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3797                 AV * const ary = newAV();
3798                 av_push(ary, mg->mg_obj); /* takes the refcount */
3799                 mg->mg_obj = (SV *)ary;
3800             }
3801             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3802         }
3803         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3804       }
3805       mro_isa_changed_in(GvSTASH(dstr));
3806     }
3807     else if(mro_changes == 3) {
3808         HV * const stash = GvHV(dstr);
3809         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3810             mro_package_moved(
3811                 stash, old_stash,
3812                 (GV *)dstr, 0
3813             );
3814     }
3815     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3816     if (GvIO(dstr) && dtype == SVt_PVGV) {
3817         DEBUG_o(Perl_deb(aTHX_
3818                         "glob_assign_glob clearing PL_stashcache\n"));
3819         /* It's a cache. It will rebuild itself quite happily.
3820            It's a lot of effort to work out exactly which key (or keys)
3821            might be invalidated by the creation of the this file handle.
3822          */
3823         hv_clear(PL_stashcache);
3824     }
3825     return;
3826 }
3827
3828 static void
3829 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3830 {
3831     SV * const sref = SvRV(sstr);
3832     SV *dref;
3833     const int intro = GvINTRO(dstr);
3834     SV **location;
3835     U8 import_flag = 0;
3836     const U32 stype = SvTYPE(sref);
3837
3838     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3839
3840     if (intro) {
3841         GvINTRO_off(dstr);      /* one-shot flag */
3842         GvLINE(dstr) = CopLINE(PL_curcop);
3843         GvEGV(dstr) = MUTABLE_GV(dstr);
3844     }
3845     GvMULTI_on(dstr);
3846     switch (stype) {
3847     case SVt_PVCV:
3848         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
3849         import_flag = GVf_IMPORTED_CV;
3850         goto common;
3851     case SVt_PVHV:
3852         location = (SV **) &GvHV(dstr);
3853         import_flag = GVf_IMPORTED_HV;
3854         goto common;
3855     case SVt_PVAV:
3856         location = (SV **) &GvAV(dstr);
3857         import_flag = GVf_IMPORTED_AV;
3858         goto common;
3859     case SVt_PVIO:
3860         location = (SV **) &GvIOp(dstr);
3861         goto common;
3862     case SVt_PVFM:
3863         location = (SV **) &GvFORM(dstr);
3864         goto common;
3865     default:
3866         location = &GvSV(dstr);
3867         import_flag = GVf_IMPORTED_SV;
3868     common:
3869         if (intro) {
3870             if (stype == SVt_PVCV) {
3871                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3872                 if (GvCVGEN(dstr)) {
3873                     SvREFCNT_dec(GvCV(dstr));
3874                     GvCV_set(dstr, NULL);
3875                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3876                 }
3877             }
3878             /* SAVEt_GVSLOT takes more room on the savestack and has more
3879                overhead in leave_scope than SAVEt_GENERIC_SV.  But for CVs
3880                leave_scope needs access to the GV so it can reset method
3881                caches.  We must use SAVEt_GVSLOT whenever the type is
3882                SVt_PVCV, even if the stash is anonymous, as the stash may
3883                gain a name somehow before leave_scope. */
3884             if (stype == SVt_PVCV) {
3885                 /* There is no save_pushptrptrptr.  Creating it for this
3886                    one call site would be overkill.  So inline the ss add
3887                    routines here. */
3888                 dSS_ADD;
3889                 SS_ADD_PTR(dstr);
3890                 SS_ADD_PTR(location);
3891                 SS_ADD_PTR(SvREFCNT_inc(*location));
3892                 SS_ADD_UV(SAVEt_GVSLOT);
3893                 SS_ADD_END(4);
3894             }
3895             else SAVEGENERICSV(*location);
3896         }
3897         dref = *location;
3898         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3899             CV* const cv = MUTABLE_CV(*location);
3900             if (cv) {
3901                 if (!GvCVGEN((const GV *)dstr) &&
3902                     (CvROOT(cv) || CvXSUB(cv)) &&
3903                     /* redundant check that avoids creating the extra SV
3904                        most of the time: */
3905                     (CvCONST(cv) || ckWARN(WARN_REDEFINE)))
3906                     {
3907                         SV * const new_const_sv =
3908                             CvCONST((const CV *)sref)
3909                                  ? cv_const_sv((const CV *)sref)
3910                                  : NULL;
3911                         report_redefined_cv(
3912                            sv_2mortal(Perl_newSVpvf(aTHX_
3913                                 "%"HEKf"::%"HEKf,
3914                                 HEKfARG(
3915                                  HvNAME_HEK(GvSTASH((const GV *)dstr))
3916                                 ),
3917                                 HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr)))
3918                            )),
3919                            cv,
3920                            CvCONST((const CV *)sref) ? &new_const_sv : NULL
3921                         );
3922                     }
3923                 if (!intro)
3924                     cv_ckproto_len_flags(cv, (const GV *)dstr,
3925                                    SvPOK(sref) ? CvPROTO(sref) : NULL,
3926                                    SvPOK(sref) ? CvPROTOLEN(sref) : 0,
3927                                    SvPOK(sref) ? SvUTF8(sref) : 0);
3928             }
3929             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3930             GvASSUMECV_on(dstr);
3931             if(GvSTASH(dstr)) gv_method_changed(dstr); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3932         }
3933         *location = SvREFCNT_inc_simple_NN(sref);
3934         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3935             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3936             GvFLAGS(dstr) |= import_flag;
3937         }
3938         if (stype == SVt_PVHV) {
3939             const char * const name = GvNAME((GV*)dstr);
3940             const STRLEN len = GvNAMELEN(dstr);
3941             if (
3942                 (
3943                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
3944                 || (len == 1 && name[0] == ':')
3945                 )
3946              && (!dref || HvENAME_get(dref))
3947             ) {
3948                 mro_package_moved(
3949                     (HV *)sref, (HV *)dref,
3950                     (GV *)dstr, 0
3951                 );
3952             }
3953         }
3954         else if (
3955             stype == SVt_PVAV && sref != dref
3956          && strEQ(GvNAME((GV*)dstr), "ISA")
3957          /* The stash may have been detached from the symbol table, so
3958             check its name before doing anything. */
3959          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3960         ) {
3961             MAGIC *mg;
3962             MAGIC * const omg = dref && SvSMAGICAL(dref)
3963                                  ? mg_find(dref, PERL_MAGIC_isa)
3964                                  : NULL;
3965             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3966                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3967                     AV * const ary = newAV();
3968                     av_push(ary, mg->mg_obj); /* takes the refcount */
3969                     mg->mg_obj = (SV *)ary;
3970                 }
3971                 if (omg) {
3972                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
3973                         SV **svp = AvARRAY((AV *)omg->mg_obj);
3974                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
3975                         while (items--)
3976                             av_push(
3977                              (AV *)mg->mg_obj,
3978                              SvREFCNT_inc_simple_NN(*svp++)
3979                             );
3980                     }
3981                     else
3982                         av_push(
3983                          (AV *)mg->mg_obj,
3984                          SvREFCNT_inc_simple_NN(omg->mg_obj)
3985                         );
3986                 }
3987                 else
3988                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
3989             }
3990             else
3991             {
3992                 sv_magic(
3993                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
3994                 );
3995                 mg = mg_find(sref, PERL_MAGIC_isa);
3996             }
3997             /* Since the *ISA assignment could have affected more than
3998                one stash, don't call mro_isa_changed_in directly, but let
3999                magic_clearisa do it for us, as it already has the logic for
4000                dealing with globs vs arrays of globs. */
4001             assert(mg);
4002             Perl_magic_clearisa(aTHX_ NULL, mg);
4003         }
4004         else if (stype == SVt_PVIO) {
4005             DEBUG_o(Perl_deb(aTHX_ "glob_assign_ref clearing PL_stashcache\n"));
4006             /* It's a cache. It will rebuild itself quite happily.
4007                It's a lot of effort to work out exactly which key (or keys)
4008                might be invalidated by the creation of the this file handle.
4009             */
4010             hv_clear(PL_stashcache);
4011         }
4012         break;
4013     }
4014     if (!intro) SvREFCNT_dec(dref);
4015     if (SvTAINTED(sstr))
4016         SvTAINT(dstr);
4017     return;
4018 }
4019
4020 /* Work around compiler warnings about unsigned >= THRESHOLD when thres-
4021    hold is 0. */
4022 #if SV_COW_THRESHOLD
4023 # define GE_COW_THRESHOLD(len)          ((len) >= SV_COW_THRESHOLD)
4024 #else
4025 # define GE_COW_THRESHOLD(len)          1
4026 #endif
4027 #if SV_COWBUF_THRESHOLD
4028 # define GE_COWBUF_THRESHOLD(len)       ((len) >= SV_COWBUF_THRESHOLD)
4029 #else
4030 # define GE_COWBUF_THRESHOLD(len)       1
4031 #endif
4032
4033 #ifdef PERL_DEBUG_READONLY_COW
4034 # include <sys/mman.h>
4035
4036 # ifndef PERL_MEMORY_DEBUG_HEADER_SIZE
4037 #  define PERL_MEMORY_DEBUG_HEADER_SIZE 0
4038 # endif
4039
4040 void
4041 Perl_sv_buf_to_ro(pTHX_ SV *sv)
4042 {
4043     struct perl_memory_debug_header * const header =
4044         (struct perl_memory_debug_header *)(SvPVX(sv)-PERL_MEMORY_DEBUG_HEADER_SIZE);
4045     const MEM_SIZE len = header->size;
4046     PERL_ARGS_ASSERT_SV_BUF_TO_RO;
4047 # ifdef PERL_TRACK_MEMPOOL
4048     if (!header->readonly) header->readonly = 1;
4049 # endif
4050     if (mprotect(header, len, PROT_READ))
4051         Perl_warn(aTHX_ "mprotect RW for COW string %p %lu failed with %d",
4052                          header, len, errno);
4053 }
4054
4055 static void
4056 S_sv_buf_to_rw(pTHX_ SV *sv)
4057 {
4058     struct perl_memory_debug_header * const header =
4059         (struct perl_memory_debug_header *)(SvPVX(sv)-PERL_MEMORY_DEBUG_HEADER_SIZE);
4060     const MEM_SIZE len = header->size;
4061     PERL_ARGS_ASSERT_SV_BUF_TO_RW;
4062     if (mprotect(header, len, PROT_READ|PROT_WRITE))
4063         Perl_warn(aTHX_ "mprotect for COW string %p %lu failed with %d",
4064                          header, len, errno);
4065 # ifdef PERL_TRACK_MEMPOOL
4066     header->readonly = 0;
4067 # endif
4068 }
4069
4070 #else
4071 # define sv_buf_to_ro(sv)       NOOP
4072 # define sv_buf_to_rw(sv)       NOOP
4073 #endif
4074
4075 void
4076 Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags)
4077 {
4078     dVAR;
4079     U32 sflags;
4080     int dtype;
4081     svtype stype;
4082
4083     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
4084
4085     if (sstr == dstr)
4086         return;
4087
4088     if (SvIS_FREED(dstr)) {
4089         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
4090                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
4091     }
4092     SV_CHECK_THINKFIRST_COW_DROP(dstr);
4093     if (!sstr)
4094         sstr = &PL_sv_undef;
4095     if (SvIS_FREED(sstr)) {
4096         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
4097                    (void*)sstr, (void*)dstr);
4098     }
4099     stype = SvTYPE(sstr);
4100     dtype = SvTYPE(dstr);
4101
4102     /* There's a lot of redundancy below but we're going for speed here */
4103
4104     switch (stype) {
4105     case SVt_NULL:
4106       undef_sstr:
4107         if (dtype != SVt_PVGV && dtype != SVt_PVLV) {
4108             (void)SvOK_off(dstr);
4109             return;
4110         }
4111         break;
4112     case SVt_IV:
4113         if (SvIOK(sstr)) {
4114             switch (dtype) {
4115             case SVt_NULL:
4116                 sv_upgrade(dstr, SVt_IV);
4117                 break;
4118             case SVt_NV:
4119             case SVt_PV:
4120                 sv_upgrade(dstr, SVt_PVIV);
4121                 break;
4122             case SVt_PVGV:
4123             case SVt_PVLV:
4124                 goto end_of_first_switch;
4125             }
4126             (void)SvIOK_only(dstr);
4127             SvIV_set(dstr,  SvIVX(sstr));
4128             if (SvIsUV(sstr))
4129                 SvIsUV_on(dstr);
4130             /* SvTAINTED can only be true if the SV has taint magic, which in
4131                turn means that the SV type is PVMG (or greater). This is the
4132                case statement for SVt_IV, so this cannot be true (whatever gcov
4133                may say).  */
4134             assert(!SvTAINTED(sstr));
4135             return;
4136         }
4137         if (!SvROK(sstr))
4138             goto undef_sstr;
4139         if (dtype < SVt_PV && dtype != SVt_IV)
4140             sv_upgrade(dstr, SVt_IV);
4141         break;
4142
4143     case SVt_NV:
4144         if (SvNOK(sstr)) {
4145             switch (dtype) {
4146             case SVt_NULL:
4147             case SVt_IV:
4148                 sv_upgrade(dstr, SVt_NV);
4149                 break;
4150             case SVt_PV:
4151             case SVt_PVIV:
4152                 sv_upgrade(dstr, SVt_PVNV);
4153                 break;
4154             case SVt_PVGV:
4155             case SVt_PVLV:
4156                 goto end_of_first_switch;
4157             }
4158             SvNV_set(dstr, SvNVX(sstr));
4159             (void)SvNOK_only(dstr);
4160             /* SvTAINTED can only be true if the SV has taint magic, which in
4161                turn means that the SV type is PVMG (or greater). This is the
4162                case statement for SVt_NV, so this cannot be true (whatever gcov
4163                may say).  */
4164             assert(!SvTAINTED(sstr));
4165             return;
4166         }
4167         goto undef_sstr;
4168
4169     case SVt_PV:
4170         if (dtype < SVt_PV)
4171             sv_upgrade(dstr, SVt_PV);
4172         break;
4173     case SVt_PVIV:
4174         if (dtype < SVt_PVIV)
4175             sv_upgrade(dstr, SVt_PVIV);
4176         break;
4177     case SVt_PVNV:
4178         if (dtype < SVt_PVNV)
4179             sv_upgrade(dstr, SVt_PVNV);
4180         break;
4181     default:
4182         {
4183         const char * const type = sv_reftype(sstr,0);
4184         if (PL_op)
4185             /* diag_listed_as: Bizarre copy of %s */
4186             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4187         else
4188             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4189         }
4190         break;
4191
4192     case SVt_REGEXP:
4193       upgregexp:
4194         if (dtype < SVt_REGEXP)
4195         {
4196             if (dtype >= SVt_PV) {
4197                 SvPV_free(dstr);
4198                 SvPV_set(dstr, 0);
4199                 SvLEN_set(dstr, 0);
4200                 SvCUR_set(dstr, 0);
4201             }
4202             sv_upgrade(dstr, SVt_REGEXP);
4203         }
4204         break;
4205
4206         case SVt_INVLIST:
4207     case SVt_PVLV:
4208     case SVt_PVGV:
4209     case SVt_PVMG:
4210         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4211             mg_get(sstr);
4212             if (SvTYPE(sstr) != stype)
4213                 stype = SvTYPE(sstr);
4214         }
4215         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4216                     glob_assign_glob(dstr, sstr, dtype);
4217                     return;
4218         }
4219         if (stype == SVt_PVLV)
4220         {
4221             if (isREGEXP(sstr)) goto upgregexp;
4222             SvUPGRADE(dstr, SVt_PVNV);
4223         }
4224         else
4225             SvUPGRADE(dstr, (svtype)stype);
4226     }
4227  end_of_first_switch:
4228
4229     /* dstr may have been upgraded.  */
4230     dtype = SvTYPE(dstr);
4231     sflags = SvFLAGS(sstr);
4232
4233     if (dtype == SVt_PVCV) {
4234         /* Assigning to a subroutine sets the prototype.  */
4235         if (SvOK(sstr)) {
4236             STRLEN len;
4237             const char *const ptr = SvPV_const(sstr, len);
4238
4239             SvGROW(dstr, len + 1);
4240             Copy(ptr, SvPVX(dstr), len + 1, char);
4241             SvCUR_set(dstr, len);
4242             SvPOK_only(dstr);
4243             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4244             CvAUTOLOAD_off(dstr);
4245         } else {
4246             SvOK_off(dstr);
4247         }
4248     }
4249     else if (dtype == SVt_PVAV || dtype == SVt_PVHV || dtype == SVt_PVFM) {
4250         const char * const type = sv_reftype(dstr,0);
4251         if (PL_op)
4252             /* diag_listed_as: Cannot copy to %s */
4253             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4254         else
4255             Perl_croak(aTHX_ "Cannot copy to %s", type);
4256     } else if (sflags & SVf_ROK) {
4257         if (isGV_with_GP(dstr)
4258             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4259             sstr = SvRV(sstr);
4260             if (sstr == dstr) {
4261                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4262                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4263                 {
4264                     GvIMPORTED_on(dstr);
4265                 }
4266                 GvMULTI_on(dstr);
4267                 return;
4268             }
4269             glob_assign_glob(dstr, sstr, dtype);
4270             return;
4271         }
4272
4273         if (dtype >= SVt_PV) {
4274             if (isGV_with_GP(dstr)) {
4275                 glob_assign_ref(dstr, sstr);
4276                 return;
4277             }
4278             if (SvPVX_const(dstr)) {
4279                 SvPV_free(dstr);
4280                 SvLEN_set(dstr, 0);
4281                 SvCUR_set(dstr, 0);
4282             }
4283         }
4284         (void)SvOK_off(dstr);
4285         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4286         SvFLAGS(dstr) |= sflags & SVf_ROK;
4287         assert(!(sflags & SVp_NOK));
4288         assert(!(sflags & SVp_IOK));
4289         assert(!(sflags & SVf_NOK));
4290         assert(!(sflags & SVf_IOK));
4291     }
4292     else if (isGV_with_GP(dstr)) {
4293         if (!(sflags & SVf_OK)) {
4294             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4295                            "Undefined value assigned to typeglob");
4296         }
4297         else {
4298             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4299             if (dstr != (const SV *)gv) {
4300                 const char * const name = GvNAME((const GV *)dstr);
4301                 const STRLEN len = GvNAMELEN(dstr);
4302                 HV *old_stash = NULL;
4303                 bool reset_isa = FALSE;
4304                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4305                  || (len == 1 && name[0] == ':')) {
4306                     /* Set aside the old stash, so we can reset isa caches
4307                        on its subclasses. */
4308                     if((old_stash = GvHV(dstr))) {
4309                         /* Make sure we do not lose it early. */
4310                         SvREFCNT_inc_simple_void_NN(
4311                          sv_2mortal((SV *)old_stash)
4312                         );
4313                     }
4314                     reset_isa = TRUE;
4315                 }
4316
4317                 if (GvGP(dstr)) {
4318                     SvREFCNT_inc_simple_void_NN(sv_2mortal(dstr));
4319                     gp_free(MUTABLE_GV(dstr));
4320                 }
4321                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4322
4323                 if (reset_isa) {
4324                     HV * const stash = GvHV(dstr);
4325                     if(
4326                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4327                     )
4328                         mro_package_moved(
4329                          stash, old_stash,
4330                          (GV *)dstr, 0
4331                         );
4332                 }
4333             }
4334         }
4335     }
4336     else if ((dtype == SVt_REGEXP || dtype == SVt_PVLV)
4337           && (stype == SVt_REGEXP || isREGEXP(sstr))) {
4338         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4339     }
4340     else if (sflags & SVp_POK) {
4341         const STRLEN cur = SvCUR(sstr);
4342         const STRLEN len = SvLEN(sstr);
4343
4344         /*
4345          * We have three basic ways to copy the string:
4346          *
4347          *  1. Swipe
4348          *  2. Copy-on-write
4349          *  3. Actual copy
4350          * 
4351          * Which we choose is based on various factors.  The following
4352          * things are listed in order of speed, fastest to slowest:
4353          *  - Swipe
4354          *  - Copying a short string
4355          *  - Copy-on-write bookkeeping
4356          *  - malloc
4357          *  - Copying a long string
4358          * 
4359          * We swipe the string (steal the string buffer) if the SV on the
4360          * rhs is about to be freed anyway (TEMP and refcnt==1).  This is a
4361          * big win on long strings.  It should be a win on short strings if
4362          * SvPVX_const(dstr) has to be allocated.  If not, it should not 
4363          * slow things down, as SvPVX_const(sstr) would have been freed
4364          * soon anyway.
4365          * 
4366          * We also steal the buffer from a PADTMP (operator target) if it
4367          * is â€˜long enough’.  For short strings, a swipe does not help
4368          * here, as it causes more malloc calls the next time the target
4369          * is used.  Benchmarks show that even if SvPVX_const(dstr) has to
4370          * be allocated it is still not worth swiping PADTMPs for short
4371          * strings, as the savings here are small.
4372          * 
4373          * If the rhs is already flagged as a copy-on-write string and COW
4374          * is possible here, we use copy-on-write and make both SVs share
4375          * the string buffer.
4376          * 
4377          * If the rhs is not flagged as copy-on-write, then we see whether
4378          * it is worth upgrading it to such.  If the lhs already has a buf-
4379          * fer big enough and the string is short, we skip it and fall back
4380          * to method 3, since memcpy is faster for short strings than the
4381          * later bookkeeping overhead that copy-on-write entails.
4382          * 
4383          * If there is no buffer on the left, or the buffer is too small,
4384          * then we use copy-on-write.
4385          */
4386
4387         /* Whichever path we take through the next code, we want this true,
4388            and doing it now facilitates the COW check.  */
4389         (void)SvPOK_only(dstr);
4390
4391         if (
4392                  (              /* Either ... */
4393                                 /* slated for free anyway (and not COW)? */
4394                     (sflags & (SVs_TEMP|SVf_IsCOW)) == SVs_TEMP
4395                                 /* or a swipable TARG */
4396                  || ((sflags & (SVs_PADTMP|SVf_READONLY|SVf_IsCOW))
4397                        == SVs_PADTMP
4398                                 /* whose buffer is worth stealing */
4399                      && GE_COWBUF_THRESHOLD(cur)
4400                     )
4401                  ) &&
4402                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4403                  (!(flags & SV_NOSTEAL)) &&
4404                                         /* and we're allowed to steal temps */
4405                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4406                  len)             /* and really is a string */
4407         {       /* Passes the swipe test.  */
4408             if (SvPVX_const(dstr))      /* we know that dtype >= SVt_PV */
4409                 SvPV_free(dstr);
4410             SvPV_set(dstr, SvPVX_mutable(sstr));
4411             SvLEN_set(dstr, SvLEN(sstr));
4412             SvCUR_set(dstr, SvCUR(sstr));
4413
4414             SvTEMP_off(dstr);
4415             (void)SvOK_off(sstr);       /* NOTE: nukes most SvFLAGS on sstr */
4416             SvPV_set(sstr, NULL);
4417             SvLEN_set(sstr, 0);
4418             SvCUR_set(sstr, 0);
4419             SvTEMP_off(sstr);
4420         }
4421         else if (flags & SV_COW_SHARED_HASH_KEYS
4422               &&
4423 #ifdef PERL_OLD_COPY_ON_WRITE
4424                  (  sflags & SVf_IsCOW
4425                  || (   (sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4426                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4427                      && SvTYPE(sstr) >= SVt_PVIV && len
4428                     )
4429                  )
4430 #elif defined(PERL_NEW_COPY_ON_WRITE)
4431                  (sflags & SVf_IsCOW
4432                    ? (!len ||
4433                        (  (GE_COWBUF_THRESHOLD(cur) || SvLEN(dstr) < cur+1)
4434                           /* If this is a regular (non-hek) COW, only so
4435                              many COW "copies" are possible. */
4436                        && CowREFCNT(sstr) != SV_COW_REFCNT_MAX  ))
4437                    : (  (sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4438                      && !(SvFLAGS(dstr) & SVf_BREAK)
4439                      && GE_COW_THRESHOLD(cur) && cur+1 < len
4440                      && (GE_COWBUF_THRESHOLD(cur) || SvLEN(dstr) < cur+1)
4441                     ))
4442 #else
4443                  sflags & SVf_IsCOW
4444               && !(SvFLAGS(dstr) & SVf_BREAK)
4445 #endif
4446             ) {
4447             /* Either it's a shared hash key, or it's suitable for
4448                copy-on-write.  */
4449             if (DEBUG_C_TEST) {
4450                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4451                 sv_dump(sstr);
4452                 sv_dump(dstr);
4453             }
4454 #ifdef PERL_ANY_COW
4455             if (!(sflags & SVf_IsCOW)) {
4456                     SvIsCOW_on(sstr);
4457 # ifdef PERL_OLD_COPY_ON_WRITE
4458                     /* Make the source SV into a loop of 1.
4459                        (about to become 2) */
4460                     SV_COW_NEXT_SV_SET(sstr, sstr);
4461 # else
4462                     CowREFCNT(sstr) = 0;
4463 # endif
4464             }
4465 #endif
4466             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4467                 SvPV_free(dstr);
4468             }
4469
4470 #ifdef PERL_ANY_COW
4471             if (len) {
4472 # ifdef PERL_OLD_COPY_ON_WRITE
4473                     assert (SvTYPE(dstr) >= SVt_PVIV);
4474                     /* SvIsCOW_normal */
4475                     /* splice us in between source and next-after-source.  */
4476                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4477                     SV_COW_NEXT_SV_SET(sstr, dstr);
4478 # else
4479                     if (sflags & SVf_IsCOW) {
4480                         sv_buf_to_rw(sstr);
4481                     }
4482                     CowREFCNT(sstr)++;
4483 # endif
4484                     SvPV_set(dstr, SvPVX_mutable(sstr));
4485                     sv_buf_to_ro(sstr);
4486             } else
4487 #endif
4488             {
4489                     /* SvIsCOW_shared_hash */
4490                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4491                                           "Copy on write: Sharing hash\n"));
4492
4493                     assert (SvTYPE(dstr) >= SVt_PV);
4494                     SvPV_set(dstr,
4495                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4496             }
4497             SvLEN_set(dstr, len);
4498             SvCUR_set(dstr, cur);
4499             SvIsCOW_on(dstr);
4500         } else {
4501             /* Failed the swipe test, and we cannot do copy-on-write either.
4502                Have to copy the string.  */
4503             SvGROW(dstr, cur + 1);      /* inlined from sv_setpvn */
4504             Move(SvPVX_const(sstr),SvPVX(dstr),cur,char);
4505             SvCUR_set(dstr, cur);
4506             *SvEND(dstr) = '\0';
4507         }
4508         if (sflags & SVp_NOK) {
4509             SvNV_set(dstr, SvNVX(sstr));
4510         }
4511         if (sflags & SVp_IOK) {
4512             SvIV_set(dstr, SvIVX(sstr));
4513             /* Must do this otherwise some other overloaded use of 0x80000000
4514                gets confused. I guess SVpbm_VALID */
4515             if (sflags & SVf_IVisUV)
4516                 SvIsUV_on(dstr);
4517         }
4518         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4519         {
4520             const MAGIC * const smg = SvVSTRING_mg(sstr);
4521             if (smg) {
4522                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4523                          smg->mg_ptr, smg->mg_len);
4524                 SvRMAGICAL_on(dstr);
4525             }
4526         }
4527     }
4528     else if (sflags & (SVp_IOK|SVp_NOK)) {
4529         (void)SvOK_off(dstr);
4530         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4531         if (sflags & SVp_IOK) {
4532             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4533             SvIV_set(dstr, SvIVX(sstr));
4534         }
4535         if (sflags & SVp_NOK) {
4536             SvNV_set(dstr, SvNVX(sstr));
4537         }
4538     }
4539     else {
4540         if (isGV_with_GP(sstr)) {
4541             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4542         }
4543         else
4544             (void)SvOK_off(dstr);
4545     }
4546     if (SvTAINTED(sstr))
4547         SvTAINT(dstr);
4548 }
4549
4550 /*
4551 =for apidoc sv_setsv_mg
4552
4553 Like C<sv_setsv>, but also handles 'set' magic.
4554
4555 =cut
4556 */
4557
4558 void
4559 Perl_sv_setsv_mg(pTHX_ SV *const dstr, SV *const sstr)
4560 {
4561     PERL_ARGS_ASSERT_SV_SETSV_MG;
4562
4563     sv_setsv(dstr,sstr);
4564     SvSETMAGIC(dstr);
4565 }
4566
4567 #ifdef PERL_ANY_COW
4568 # ifdef PERL_OLD_COPY_ON_WRITE
4569 #  define SVt_COW SVt_PVIV
4570 # else
4571 #  define SVt_COW SVt_PV
4572 # endif
4573 SV *
4574 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4575 {
4576     STRLEN cur = SvCUR(sstr);
4577     STRLEN len = SvLEN(sstr);
4578     char *new_pv;
4579 #if defined(PERL_DEBUG_READONLY_COW) && defined(PERL_NEW_COPY_ON_WRITE)
4580     const bool already = cBOOL(SvIsCOW(sstr));
4581 #endif
4582
4583     PERL_ARGS_ASSERT_SV_SETSV_COW;
4584
4585     if (DEBUG_C_TEST) {
4586         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4587                       (void*)sstr, (void*)dstr);
4588         sv_dump(sstr);
4589         if (dstr)
4590                     sv_dump(dstr);
4591     }
4592
4593     if (dstr) {
4594         if (SvTHINKFIRST(dstr))
4595             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4596         else if (SvPVX_const(dstr))
4597             Safefree(SvPVX_mutable(dstr));
4598     }
4599     else
4600         new_SV(dstr);
4601     SvUPGRADE(dstr, SVt_COW);
4602
4603     assert (SvPOK(sstr));
4604     assert (SvPOKp(sstr));
4605 # ifdef PERL_OLD_COPY_ON_WRITE
4606     assert (!SvIOK(sstr));
4607     assert (!SvIOKp(sstr));
4608     assert (!SvNOK(sstr));
4609     assert (!SvNOKp(sstr));
4610 # endif
4611
4612     if (SvIsCOW(sstr)) {
4613
4614         if (SvLEN(sstr) == 0) {
4615             /* source is a COW shared hash key.  */
4616             DEBUG_C(PerlIO_printf(Perl_debug_log,
4617                                   "Fast copy on write: Sharing hash\n"));
4618             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4619             goto common_exit;
4620         }
4621 # ifdef PERL_OLD_COPY_ON_WRITE
4622         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4623 # else
4624         assert(SvCUR(sstr)+1 < SvLEN(sstr));
4625         assert(CowREFCNT(sstr) < SV_COW_REFCNT_MAX);
4626 # endif
4627     } else {
4628         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4629         SvUPGRADE(sstr, SVt_COW);
4630         SvIsCOW_on(sstr);
4631         DEBUG_C(PerlIO_printf(Perl_debug_log,
4632                               "Fast copy on write: Converting sstr to COW\n"));
4633 # ifdef PERL_OLD_COPY_ON_WRITE
4634         SV_COW_NEXT_SV_SET(dstr, sstr);
4635 # else
4636         CowREFCNT(sstr) = 0;    
4637 # endif
4638     }
4639 # ifdef PERL_OLD_COPY_ON_WRITE
4640     SV_COW_NEXT_SV_SET(sstr, dstr);
4641 # else
4642 #  ifdef PERL_DEBUG_READONLY_COW
4643     if (already) sv_buf_to_rw(sstr);
4644 #  endif
4645     CowREFCNT(sstr)++;  
4646 # endif
4647     new_pv = SvPVX_mutable(sstr);
4648     sv_buf_to_ro(sstr);
4649
4650   common_exit:
4651     SvPV_set(dstr, new_pv);
4652     SvFLAGS(dstr) = (SVt_COW|SVf_POK|SVp_POK|SVf_IsCOW);
4653     if (SvUTF8(sstr))
4654         SvUTF8_on(dstr);
4655     SvLEN_set(dstr, len);
4656     SvCUR_set(dstr, cur);
4657     if (DEBUG_C_TEST) {
4658         sv_dump(dstr);
4659     }
4660     return dstr;
4661 }
4662 #endif
4663
4664 /*
4665 =for apidoc sv_setpvn
4666
4667 Copies a string into an SV.  The C<len> parameter indicates the number of
4668 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4669 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4670
4671 =cut
4672 */
4673
4674 void
4675 Perl_sv_setpvn(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4676 {
4677     dVAR;
4678     char *dptr;
4679
4680     PERL_ARGS_ASSERT_SV_SETPVN;
4681
4682     SV_CHECK_THINKFIRST_COW_DROP(sv);
4683     if (!ptr) {
4684         (void)SvOK_off(sv);
4685         return;
4686     }
4687     else {
4688         /* len is STRLEN which is unsigned, need to copy to signed */
4689         const IV iv = len;
4690         if (iv < 0)
4691             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen %"
4692                        IVdf, iv);
4693     }
4694     SvUPGRADE(sv, SVt_PV);
4695
4696     dptr = SvGROW(sv, len + 1);
4697     Move(ptr,dptr,len,char);
4698     dptr[len] = '\0';
4699     SvCUR_set(sv, len);
4700     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4701     SvTAINT(sv);
4702     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4703 }
4704
4705 /*
4706 =for apidoc sv_setpvn_mg
4707
4708 Like C<sv_setpvn>, but also handles 'set' magic.
4709
4710 =cut
4711 */
4712
4713 void
4714 Perl_sv_setpvn_mg(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4715 {
4716     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4717
4718     sv_setpvn(sv,ptr,len);
4719     SvSETMAGIC(sv);
4720 }
4721
4722 /*
4723 =for apidoc sv_setpv
4724
4725 Copies a string into an SV.  The string must be null-terminated.  Does not
4726 handle 'set' magic.  See C<sv_setpv_mg>.
4727
4728 =cut
4729 */
4730
4731 void
4732 Perl_sv_setpv(pTHX_ SV *const sv, const char *const ptr)
4733 {
4734     dVAR;
4735     STRLEN len;
4736
4737     PERL_ARGS_ASSERT_SV_SETPV;
4738
4739     SV_CHECK_THINKFIRST_COW_DROP(sv);
4740     if (!ptr) {
4741         (void)SvOK_off(sv);
4742         return;
4743     }
4744     len = strlen(ptr);
4745     SvUPGRADE(sv, SVt_PV);
4746
4747     SvGROW(sv, len + 1);
4748     Move(ptr,SvPVX(sv),len+1,char);
4749     SvCUR_set(sv, len);
4750     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4751     SvTAINT(sv);
4752     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4753 }
4754
4755 /*
4756 =for apidoc sv_setpv_mg
4757
4758 Like C<sv_setpv>, but also handles 'set' magic.
4759
4760 =cut
4761 */
4762
4763 void
4764 Perl_sv_setpv_mg(pTHX_ SV *const sv, const char *const ptr)
4765 {
4766     PERL_ARGS_ASSERT_SV_SETPV_MG;
4767
4768     sv_setpv(sv,ptr);
4769     SvSETMAGIC(sv);
4770 }
4771
4772 void
4773 Perl_sv_sethek(pTHX_ SV *const sv, const HEK *const hek)
4774 {
4775     dVAR;
4776
4777     PERL_ARGS_ASSERT_SV_SETHEK;
4778
4779     if (!hek) {
4780         return;
4781     }
4782
4783     if (HEK_LEN(hek) == HEf_SVKEY) {
4784         sv_setsv(sv, *(SV**)HEK_KEY(hek));
4785         return;
4786     } else {
4787         const int flags = HEK_FLAGS(hek);
4788         if (flags & HVhek_WASUTF8) {
4789             STRLEN utf8_len = HEK_LEN(hek);
4790             char *as_utf8 = (char *)bytes_to_utf8((U8*)HEK_KEY(hek), &utf8_len);
4791             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
4792             SvUTF8_on(sv);
4793             return;
4794         } else if (flags & HVhek_UNSHARED) {
4795             sv_setpvn(sv, HEK_KEY(hek), HEK_LEN(hek));
4796             if (HEK_UTF8(hek))
4797                 SvUTF8_on(sv);
4798             else SvUTF8_off(sv);
4799             return;
4800         }
4801         {
4802             SV_CHECK_THINKFIRST_COW_DROP(sv);
4803             SvUPGRADE(sv, SVt_PV);
4804             SvPV_free(sv);
4805             SvPV_set(sv,(char *)HEK_KEY(share_hek_hek(hek)));
4806             SvCUR_set(sv, HEK_LEN(hek));
4807             SvLEN_set(sv, 0);
4808             SvIsCOW_on(sv);
4809             SvPOK_on(sv);
4810             if (HEK_UTF8(hek))
4811                 SvUTF8_on(sv);
4812             else SvUTF8_off(sv);
4813             return;
4814         }
4815     }
4816 }
4817
4818
4819 /*
4820 =for apidoc sv_usepvn_flags
4821
4822 Tells an SV to use C<ptr> to find its string value.  Normally the
4823 string is stored inside the SV but sv_usepvn allows the SV to use an
4824 outside string.  The C<ptr> should point to memory that was allocated
4825 by C<malloc>.  It must be the start of a mallocked block
4826 of memory, and not a pointer to the middle of it.  The
4827 string length, C<len>, must be supplied.  By default
4828 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4829 so that pointer should not be freed or used by the programmer after
4830 giving it to sv_usepvn, and neither should any pointers from "behind"
4831 that pointer (e.g. ptr + 1) be used.
4832
4833 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC.  If C<flags> &
4834 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4835 will be skipped (i.e. the buffer is actually at least 1 byte longer than
4836 C<len>, and already meets the requirements for storing in C<SvPVX>).
4837
4838 =cut
4839 */
4840
4841 void
4842 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4843 {
4844     dVAR;
4845     STRLEN allocate;
4846
4847     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4848
4849     SV_CHECK_THINKFIRST_COW_DROP(sv);
4850     SvUPGRADE(sv, SVt_PV);
4851     if (!ptr) {
4852         (void)SvOK_off(sv);
4853         if (flags & SV_SMAGIC)
4854             SvSETMAGIC(sv);
4855         return;
4856     }
4857     if (SvPVX_const(sv))
4858         SvPV_free(sv);
4859
4860 #ifdef DEBUGGING
4861     if (flags & SV_HAS_TRAILING_NUL)
4862         assert(ptr[len] == '\0');
4863 #endif
4864
4865     allocate = (flags & SV_HAS_TRAILING_NUL)
4866         ? len + 1 :
4867 #ifdef Perl_safesysmalloc_size
4868         len + 1;
4869 #else 
4870         PERL_STRLEN_ROUNDUP(len + 1);
4871 #endif
4872     if (flags & SV_HAS_TRAILING_NUL) {
4873         /* It's long enough - do nothing.
4874            Specifically Perl_newCONSTSUB is relying on this.  */
4875     } else {
4876 #ifdef DEBUGGING
4877         /* Force a move to shake out bugs in callers.  */
4878         char *new_ptr = (char*)safemalloc(allocate);
4879         Copy(ptr, new_ptr, len, char);
4880         PoisonFree(ptr,len,char);
4881         Safefree(ptr);
4882         ptr = new_ptr;
4883 #else
4884         ptr = (char*) saferealloc (ptr, allocate);
4885 #endif
4886     }
4887 #ifdef Perl_safesysmalloc_size
4888     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4889 #else
4890     SvLEN_set(sv, allocate);
4891 #endif
4892     SvCUR_set(sv, len);
4893     SvPV_set(sv, ptr);
4894     if (!(flags & SV_HAS_TRAILING_NUL)) {
4895         ptr[len] = '\0';
4896     }
4897     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4898     SvTAINT(sv);
4899     if (flags & SV_SMAGIC)
4900         SvSETMAGIC(sv);
4901 }
4902
4903 #ifdef PERL_OLD_COPY_ON_WRITE
4904 /* Need to do this *after* making the SV normal, as we need the buffer
4905    pointer to remain valid until after we've copied it.  If we let go too early,
4906    another thread could invalidate it by unsharing last of the same hash key
4907    (which it can do by means other than releasing copy-on-write Svs)
4908    or by changing the other copy-on-write SVs in the loop.  */
4909 STATIC void
4910 S_sv_release_COW(pTHX_ SV *sv, const char *pvx, SV *after)
4911 {
4912     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4913
4914     { /* this SV was SvIsCOW_normal(sv) */
4915          /* we need to find the SV pointing to us.  */
4916         SV *current = SV_COW_NEXT_SV(after);
4917
4918         if (current == sv) {
4919             /* The SV we point to points back to us (there were only two of us
4920                in the loop.)
4921                Hence other SV is no longer copy on write either.  */
4922             SvIsCOW_off(after);
4923             sv_buf_to_rw(after);
4924         } else {
4925             /* We need to follow the pointers around the loop.  */
4926             SV *next;
4927             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4928                 assert (next);
4929                 current = next;
4930                  /* don't loop forever if the structure is bust, and we have
4931                     a pointer into a closed loop.  */
4932                 assert (current != after);
4933                 assert (SvPVX_const(current) == pvx);
4934             }
4935             /* Make the SV before us point to the SV after us.  */
4936             SV_COW_NEXT_SV_SET(current, after);
4937         }
4938     }
4939 }
4940 #endif
4941 /*
4942 =for apidoc sv_force_normal_flags
4943
4944 Undo various types of fakery on an SV, where fakery means
4945 "more than" a string: if the PV is a shared string, make
4946 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4947 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4948 we do the copy, and is also used locally; if this is a
4949 vstring, drop the vstring magic.  If C<SV_COW_DROP_PV> is set
4950 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4951 SvPOK_off rather than making a copy.  (Used where this
4952 scalar is about to be set to some other value.)  In addition,
4953 the C<flags> parameter gets passed to C<sv_unref_flags()>
4954 when unreffing.  C<sv_force_normal> calls this function
4955 with flags set to 0.
4956
4957 This function is expected to be used to signal to perl that this SV is
4958 about to be written to, and any extra book-keeping needs to be taken care
4959 of.  Hence, it croaks on read-only values.
4960
4961 =cut
4962 */
4963
4964 static void
4965 S_sv_uncow(pTHX_ SV * const sv, const U32 flags)
4966 {
4967     dVAR;
4968
4969     assert(SvIsCOW(sv));
4970     {
4971 #ifdef PERL_ANY_COW
4972         const char * const pvx = SvPVX_const(sv);
4973         const STRLEN len = SvLEN(sv);
4974         const STRLEN cur = SvCUR(sv);
4975 # ifdef PERL_OLD_COPY_ON_WRITE
4976         /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4977            key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4978            we'll fail an assertion.  */
4979         SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4980 # endif
4981
4982         if (DEBUG_C_TEST) {
4983                 PerlIO_printf(Perl_debug_log,
4984                               "Copy on write: Force normal %ld\n",
4985                               (long) flags);
4986                 sv_dump(sv);
4987         }
4988         SvIsCOW_off(sv);
4989 # ifdef PERL_NEW_COPY_ON_WRITE
4990         if (len && CowREFCNT(sv) == 0)
4991             /* We own the buffer ourselves. */
4992             sv_buf_to_rw(sv);
4993         else
4994 # endif
4995         {
4996                 
4997             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4998 # ifdef PERL_NEW_COPY_ON_WRITE
4999             /* Must do this first, since the macro uses SvPVX. */
5000             if (len) {
5001                 sv_buf_to_rw(sv);
5002                 CowREFCNT(sv)--;
5003                 sv_buf_to_ro(sv);
5004             }
5005 # endif
5006             SvPV_set(sv, NULL);
5007             SvLEN_set(sv, 0);
5008             if (flags & SV_COW_DROP_PV) {
5009                 /* OK, so we don't need to copy our buffer.  */
5010                 SvPOK_off(sv);
5011             } else {
5012                 SvGROW(sv, cur + 1);
5013                 Move(pvx,SvPVX(sv),cur,char);
5014                 SvCUR_set(sv, cur);
5015                 *SvEND(sv) = '\0';
5016             }
5017             if (len) {
5018 # ifdef PERL_OLD_COPY_ON_WRITE
5019                 sv_release_COW(sv, pvx, next);
5020 # endif
5021             } else {
5022                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
5023             }
5024             if (DEBUG_C_TEST) {
5025                 sv_dump(sv);
5026             }
5027         }
5028 #else
5029             const char * const pvx = SvPVX_const(sv);
5030             const STRLEN len = SvCUR(sv);
5031             SvIsCOW_off(sv);
5032             SvPV_set(sv, NULL);
5033             SvLEN_set(sv, 0);
5034             if (flags & SV_COW_DROP_PV) {
5035                 /* OK, so we don't need to copy our buffer.  */
5036                 SvPOK_off(sv);
5037             } else {
5038                 SvGROW(sv, len + 1);
5039                 Move(pvx,SvPVX(sv),len,char);
5040                 *SvEND(sv) = '\0';
5041             }
5042             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
5043 #endif
5044     }
5045 }
5046
5047 void
5048 Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags)
5049 {
5050     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
5051
5052     if (SvREADONLY(sv))
5053         Perl_croak_no_modify();
5054     else if (SvIsCOW(sv))
5055         S_sv_uncow(aTHX_ sv, flags);
5056     if (SvROK(sv))
5057         sv_unref_flags(sv, flags);
5058     else if (SvFAKE(sv) && isGV_with_GP(sv))
5059         sv_unglob(sv, flags);
5060     else if (SvFAKE(sv) && isREGEXP(sv)) {
5061         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
5062            to sv_unglob. We only need it here, so inline it.  */
5063         const bool islv = SvTYPE(sv) == SVt_PVLV;
5064         const svtype new_type =
5065           islv ? SVt_NULL : SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
5066         SV *const temp = newSV_type(new_type);
5067         regexp *const temp_p = ReANY((REGEXP *)sv);
5068
5069         if (new_type == SVt_PVMG) {
5070             SvMAGIC_set(temp, SvMAGIC(sv));
5071             SvMAGIC_set(sv, NULL);
5072             SvSTASH_set(temp, SvSTASH(sv));
5073             SvSTASH_set(sv, NULL);
5074         }
5075         if (!islv) SvCUR_set(temp, SvCUR(sv));
5076         /* Remember that SvPVX is in the head, not the body.  But
5077            RX_WRAPPED is in the body. */
5078         assert(ReANY((REGEXP *)sv)->mother_re);
5079         /* Their buffer is already owned by someone else. */
5080         if (flags & SV_COW_DROP_PV) {
5081             /* SvLEN is already 0.  For SVt_REGEXP, we have a brand new
5082                zeroed body.  For SVt_PVLV, it should have been set to 0
5083                before turning into a regexp. */
5084             assert(!SvLEN(islv ? sv : temp));
5085             sv->sv_u.svu_pv = 0;
5086         }
5087         else {
5088             sv->sv_u.svu_pv = savepvn(RX_WRAPPED((REGEXP *)sv), SvCUR(sv));
5089             SvLEN_set(islv ? sv : temp, SvCUR(sv)+1);
5090             SvPOK_on(sv);
5091         }
5092
5093         /* Now swap the rest of the bodies. */
5094
5095         SvFAKE_off(sv);
5096         if (!islv) {
5097             SvFLAGS(sv) &= ~SVTYPEMASK;
5098             SvFLAGS(sv) |= new_type;
5099             SvANY(sv) = SvANY(temp);
5100         }
5101
5102         SvFLAGS(temp) &= ~(SVTYPEMASK);
5103         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
5104         SvANY(temp) = temp_p;
5105         temp->sv_u.svu_rx = (regexp *)temp_p;
5106
5107         SvREFCNT_dec_NN(temp);
5108     }
5109     else if (SvVOK(sv)) sv_unmagic(sv, PERL_MAGIC_vstring);
5110 }
5111
5112 /*
5113 =for apidoc sv_chop
5114
5115 Efficient removal of characters from the beginning of the string buffer.
5116 SvPOK(sv), or at least SvPOKp(sv), must be true and the C<ptr> must be a
5117 pointer to somewhere inside the string buffer.  The C<ptr> becomes the first
5118 character of the adjusted string.  Uses the "OOK hack".  On return, only
5119 SvPOK(sv) and SvPOKp(sv) among the OK flags will be true.
5120
5121 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
5122 refer to the same chunk of data.
5123
5124 The unfortunate similarity of this function's name to that of Perl's C<chop>
5125 operator is strictly coincidental.  This function works from the left;
5126 C<chop> works from the right.
5127
5128 =cut
5129 */
5130
5131 void
5132 Perl_sv_chop(pTHX_ SV *const sv, const char *const ptr)
5133 {
5134     STRLEN delta;
5135     STRLEN old_delta;
5136     U8 *p;
5137 #ifdef DEBUGGING
5138     const U8 *evacp;
5139     STRLEN evacn;
5140 #endif
5141     STRLEN max_delta;
5142
5143     PERL_ARGS_ASSERT_SV_CHOP;
5144
5145     if (!ptr || !SvPOKp(sv))
5146         return;
5147     delta = ptr - SvPVX_const(sv);
5148     if (!delta) {
5149         /* Nothing to do.  */
5150         return;
5151     }
5152     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
5153     if (delta > max_delta)
5154         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
5155                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
5156     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), so don't use ptr any more */
5157     SV_CHECK_THINKFIRST(sv);
5158     SvPOK_only_UTF8(sv);
5159
5160     if (!SvOOK(sv)) {
5161         if (!SvLEN(sv)) { /* make copy of shared string */
5162             const char *pvx = SvPVX_const(sv);
5163             const STRLEN len = SvCUR(sv);
5164             SvGROW(sv, len + 1);
5165             Move(pvx,SvPVX(sv),len,char);
5166             *SvEND(sv) = '\0';
5167         }
5168         SvOOK_on(sv);
5169         old_delta = 0;
5170     } else {
5171         SvOOK_offset(sv, old_delta);
5172     }
5173     SvLEN_set(sv, SvLEN(sv) - delta);
5174     SvCUR_set(sv, SvCUR(sv) - delta);
5175     SvPV_set(sv, SvPVX(sv) + delta);
5176
5177     p = (U8 *)SvPVX_const(sv);
5178
5179 #ifdef DEBUGGING
5180     /* how many bytes were evacuated?  we will fill them with sentinel
5181        bytes, except for the part holding the new offset of course. */
5182     evacn = delta;
5183     if (old_delta)
5184         evacn += (old_delta < 0x100 ? 1 : 1 + sizeof(STRLEN));
5185     assert(evacn);
5186     assert(evacn <= delta + old_delta);
5187     evacp = p - evacn;
5188 #endif
5189
5190     /* This sets 'delta' to the accumulated value of all deltas so far */
5191     delta += old_delta;
5192     assert(delta);
5193
5194     /* If 'delta' fits in a byte, store it just prior to the new beginning of
5195      * the string; otherwise store a 0 byte there and store 'delta' just prior
5196      * to that, using as many bytes as a STRLEN occupies.  Thus it overwrites a
5197      * portion of the chopped part of the string */
5198     if (delta < 0x100) {
5199         *--p = (U8) delta;
5200     } else {
5201         *--p = 0;
5202         p -= sizeof(STRLEN);
5203         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
5204     }
5205
5206 #ifdef DEBUGGING
5207     /* Fill the preceding buffer with sentinals to verify that no-one is
5208        using it.  */
5209     while (p > evacp) {
5210         --p;
5211         *p = (U8)PTR2UV(p);
5212     }
5213 #endif
5214 }
5215
5216 /*
5217 =for apidoc sv_catpvn
5218
5219 Concatenates the string onto the end of the string which is in the SV.  The
5220 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5221 status set, then the bytes appended should be valid UTF-8.
5222 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
5223
5224 =for apidoc sv_catpvn_flags
5225
5226 Concatenates the string onto the end of the string which is in the SV.  The
5227 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5228 status set, then the bytes appended should be valid UTF-8.
5229 If C<flags> has the C<SV_SMAGIC> bit set, will
5230 C<mg_set> on C<dsv> afterwards if appropriate.
5231 C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5232 in terms of this function.
5233
5234 =cut
5235 */
5236
5237 void
5238 Perl_sv_catpvn_flags(pTHX_ SV *const dsv, const char *sstr, const STRLEN slen, const I32 flags)
5239 {
5240     dVAR;
5241     STRLEN dlen;
5242     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
5243
5244     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
5245     assert((flags & (SV_CATBYTES|SV_CATUTF8)) != (SV_CATBYTES|SV_CATUTF8));
5246
5247     if (!(flags & SV_CATBYTES) || !SvUTF8(dsv)) {
5248       if (flags & SV_CATUTF8 && !SvUTF8(dsv)) {
5249          sv_utf8_upgrade_flags_grow(dsv, 0, slen + 1);
5250          dlen = SvCUR(dsv);
5251       }
5252       else SvGROW(dsv, dlen + slen + 1);
5253       if (sstr == dstr)
5254         sstr = SvPVX_const(dsv);
5255       Move(sstr, SvPVX(dsv) + dlen, slen, char);
5256       SvCUR_set(dsv, SvCUR(dsv) + slen);
5257     }
5258     else {
5259         /* We inline bytes_to_utf8, to avoid an extra malloc. */
5260         const char * const send = sstr + slen;
5261         U8 *d;
5262
5263         /* Something this code does not account for, which I think is
5264            impossible; it would require the same pv to be treated as
5265            bytes *and* utf8, which would indicate a bug elsewhere. */
5266         assert(sstr != dstr);
5267
5268         SvGROW(dsv, dlen + slen * 2 + 1);
5269         d = (U8 *)SvPVX(dsv) + dlen;
5270
5271         while (sstr < send) {
5272             append_utf8_from_native_byte(*sstr, &d);
5273             sstr++;
5274         }
5275         SvCUR_set(dsv, d-(const U8 *)SvPVX(dsv));
5276     }
5277     *SvEND(dsv) = '\0';
5278     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5279     SvTAINT(dsv);
5280     if (flags & SV_SMAGIC)
5281         SvSETMAGIC(dsv);
5282 }
5283
5284 /*
5285 =for apidoc sv_catsv
5286
5287 Concatenates the string from SV C<ssv> onto the end of the string in SV
5288 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5289 Handles 'get' magic on both SVs, but no 'set' magic.  See C<sv_catsv_mg> and
5290 C<sv_catsv_nomg>.
5291
5292 =for apidoc sv_catsv_flags
5293
5294 Concatenates the string from SV C<ssv> onto the end of the string in SV
5295 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5296 If C<flags> include C<SV_GMAGIC> bit set, will call C<mg_get> on both SVs if
5297 appropriate.  If C<flags> include C<SV_SMAGIC>, C<mg_set> will be called on
5298 the modified SV afterward, if appropriate.  C<sv_catsv>, C<sv_catsv_nomg>,
5299 and C<sv_catsv_mg> are implemented in terms of this function.
5300
5301 =cut */
5302
5303 void
5304 Perl_sv_catsv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
5305 {
5306     dVAR;
5307  
5308     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
5309
5310     if (ssv) {
5311         STRLEN slen;
5312         const char *spv = SvPV_flags_const(ssv, slen, flags);
5313         if (spv) {
5314             if (flags & SV_GMAGIC)
5315                 SvGETMAGIC(dsv);
5316             sv_catpvn_flags(dsv, spv, slen,
5317                             DO_UTF8(ssv) ? SV_CATUTF8 : SV_CATBYTES);
5318             if (flags & SV_SMAGIC)
5319                 SvSETMAGIC(dsv);
5320         }
5321     }
5322 }
5323
5324 /*
5325 =for apidoc sv_catpv
5326
5327 Concatenates the string onto the end of the string which is in the SV.
5328 If the SV has the UTF-8 status set, then the bytes appended should be
5329 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5330
5331 =cut */
5332
5333 void
5334 Perl_sv_catpv(pTHX_ SV *const sv, const char *ptr)
5335 {
5336     dVAR;
5337     STRLEN len;
5338     STRLEN tlen;
5339     char *junk;
5340
5341     PERL_ARGS_ASSERT_SV_CATPV;
5342
5343     if (!ptr)
5344         return;
5345     junk = SvPV_force(sv, tlen);
5346     len = strlen(ptr);
5347     SvGROW(sv, tlen + len + 1);
5348     if (ptr == junk)
5349         ptr = SvPVX_const(sv);
5350     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5351     SvCUR_set(sv, SvCUR(sv) + len);
5352     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5353     SvTAINT(sv);
5354 }
5355
5356 /*
5357 =for apidoc sv_catpv_flags
5358
5359 Concatenates the string onto the end of the string which is in the SV.
5360 If the SV has the UTF-8 status set, then the bytes appended should
5361 be valid UTF-8.  If C<flags> has the C<SV_SMAGIC> bit set, will C<mg_set>
5362 on the modified SV if appropriate.
5363
5364 =cut
5365 */
5366
5367 void
5368 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5369 {
5370     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5371     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5372 }
5373
5374 /*
5375 =for apidoc sv_catpv_mg
5376
5377 Like C<sv_catpv>, but also handles 'set' magic.
5378
5379 =cut
5380 */
5381
5382 void
5383 Perl_sv_catpv_mg(pTHX_ SV *const sv, const char *const ptr)
5384 {
5385     PERL_ARGS_ASSERT_SV_CATPV_MG;
5386
5387     sv_catpv(sv,ptr);
5388     SvSETMAGIC(sv);
5389 }
5390
5391 /*
5392 =for apidoc newSV
5393
5394 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5395 bytes of preallocated string space the SV should have.  An extra byte for a
5396 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
5397 space is allocated.)  The reference count for the new SV is set to 1.
5398
5399 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5400 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5401 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5402 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5403 modules supporting older perls.
5404
5405 =cut
5406 */
5407
5408 SV *
5409 Perl_newSV(pTHX_ const STRLEN len)
5410 {
5411     dVAR;
5412     SV *sv;
5413
5414     new_SV(sv);
5415     if (len) {
5416         sv_upgrade(sv, SVt_PV);
5417         SvGROW(sv, len + 1);
5418     }
5419     return sv;
5420 }
5421 /*
5422 =for apidoc sv_magicext
5423
5424 Adds magic to an SV, upgrading it if necessary.  Applies the
5425 supplied vtable and returns a pointer to the magic added.
5426
5427 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5428 In particular, you can add magic to SvREADONLY SVs, and add more than
5429 one instance of the same 'how'.
5430
5431 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5432 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5433 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5434 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5435
5436 (This is now used as a subroutine by C<sv_magic>.)
5437
5438 =cut
5439 */
5440 MAGIC * 
5441 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5442                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5443 {
5444     dVAR;
5445     MAGIC* mg;
5446
5447     PERL_ARGS_ASSERT_SV_MAGICEXT;
5448
5449     if (SvTYPE(sv)==SVt_PVAV) { assert (!AvPAD_NAMELIST(sv)); }
5450
5451     SvUPGRADE(sv, SVt_PVMG);
5452     Newxz(mg, 1, MAGIC);
5453     mg->mg_moremagic = SvMAGIC(sv);
5454     SvMAGIC_set(sv, mg);
5455
5456     /* Sometimes a magic contains a reference loop, where the sv and
5457        object refer to each other.  To prevent a reference loop that
5458        would prevent such objects being freed, we look for such loops
5459        and if we find one we avoid incrementing the object refcount.
5460
5461        Note we cannot do this to avoid self-tie loops as intervening RV must
5462        have its REFCNT incremented to keep it in existence.
5463
5464     */
5465     if (!obj || obj == sv ||
5466         how == PERL_MAGIC_arylen ||
5467         how == PERL_MAGIC_symtab ||
5468         (SvTYPE(obj) == SVt_PVGV &&
5469             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5470              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5471              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5472     {
5473         mg->mg_obj = obj;
5474     }
5475     else {
5476         mg->mg_obj = SvREFCNT_inc_simple(obj);
5477         mg->mg_flags |= MGf_REFCOUNTED;
5478     }
5479
5480     /* Normal self-ties simply pass a null object, and instead of
5481        using mg_obj directly, use the SvTIED_obj macro to produce a
5482        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5483        with an RV obj pointing to the glob containing the PVIO.  In
5484        this case, to avoid a reference loop, we need to weaken the
5485        reference.
5486     */
5487
5488     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5489         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5490     {
5491       sv_rvweaken(obj);
5492     }
5493
5494     mg->mg_type = how;
5495     mg->mg_len = namlen;
5496     if (name) {
5497         if (namlen > 0)
5498             mg->mg_ptr = savepvn(name, namlen);
5499         else if (namlen == HEf_SVKEY) {
5500             /* Yes, this is casting away const. This is only for the case of
5501                HEf_SVKEY. I think we need to document this aberation of the
5502                constness of the API, rather than making name non-const, as
5503                that change propagating outwards a long way.  */
5504             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5505         } else
5506             mg->mg_ptr = (char *) name;
5507     }
5508     mg->mg_virtual = (MGVTBL *) vtable;
5509
5510     mg_magical(sv);
5511     return mg;
5512 }
5513
5514 MAGIC *
5515 Perl_sv_magicext_mglob(pTHX_ SV *sv)
5516 {
5517     PERL_ARGS_ASSERT_SV_MAGICEXT_MGLOB;
5518     if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y') {
5519         /* This sv is only a delegate.  //g magic must be attached to
5520            its target. */
5521         vivify_defelem(sv);
5522         sv = LvTARG(sv);
5523     }
5524 #ifdef PERL_OLD_COPY_ON_WRITE
5525     if (SvIsCOW(sv))
5526         sv_force_normal_flags(sv, 0);
5527 #endif
5528     return sv_magicext(sv, NULL, PERL_MAGIC_regex_global,
5529                        &PL_vtbl_mglob, 0, 0);
5530 }
5531
5532 /*
5533 =for apidoc sv_magic
5534
5535 Adds magic to an SV.  First upgrades C<sv> to type C<SVt_PVMG> if
5536 necessary, then adds a new magic item of type C<how> to the head of the
5537 magic list.
5538
5539 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5540 handling of the C<name> and C<namlen> arguments.
5541
5542 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5543 to add more than one instance of the same 'how'.
5544
5545 =cut
5546 */
5547
5548 void
5549 Perl_sv_magic(pTHX_ SV *const sv, SV *const obj, const int how,
5550              const char *const name, const I32 namlen)
5551 {
5552     dVAR;
5553     const MGVTBL *vtable;
5554     MAGIC* mg;
5555     unsigned int flags;
5556     unsigned int vtable_index;
5557
5558     PERL_ARGS_ASSERT_SV_MAGIC;
5559
5560     if (how < 0 || (unsigned)how > C_ARRAY_LENGTH(PL_magic_data)
5561         || ((flags = PL_magic_data[how]),
5562             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5563             > magic_vtable_max))
5564         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5565
5566     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5567        Useful for attaching extension internal data to perl vars.
5568        Note that multiple extensions may clash if magical scalars
5569        etc holding private data from one are passed to another. */
5570
5571     vtable = (vtable_index == magic_vtable_max)
5572         ? NULL : PL_magic_vtables + vtable_index;
5573
5574 #ifdef PERL_OLD_COPY_ON_WRITE
5575     if (SvIsCOW(sv))
5576         sv_force_normal_flags(sv, 0);
5577 #endif
5578     if (SvREADONLY(sv)) {
5579         if (
5580             !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5581            )
5582         {
5583             Perl_croak_no_modify();
5584         }
5585     }
5586     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5587         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5588             /* sv_magic() refuses to add a magic of the same 'how' as an
5589                existing one
5590              */
5591             if (how == PERL_MAGIC_taint)
5592                 mg->mg_len |= 1;
5593             return;
5594         }
5595     }
5596
5597     /* Force pos to be stored as characters, not bytes. */
5598     if (SvMAGICAL(sv) && DO_UTF8(sv)
5599       && (mg = mg_find(sv, PERL_MAGIC_regex_global))
5600       && mg->mg_len != -1
5601       && mg->mg_flags & MGf_BYTES) {
5602         mg->mg_len = (SSize_t)sv_pos_b2u_flags(sv, (STRLEN)mg->mg_len,
5603                                                SV_CONST_RETURN);
5604         mg->mg_flags &= ~MGf_BYTES;
5605     }
5606
5607     /* Rest of work is done else where */
5608     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5609
5610     switch (how) {
5611     case PERL_MAGIC_taint:
5612         mg->mg_len = 1;
5613         break;
5614     case PERL_MAGIC_ext:
5615     case PERL_MAGIC_dbfile:
5616         SvRMAGICAL_on(sv);
5617         break;
5618     }
5619 }
5620
5621 static int
5622 S_sv_unmagicext_flags(pTHX_ SV *const sv, const int type, MGVTBL *vtbl, const U32 flags)
5623 {
5624     MAGIC* mg;
5625     MAGIC** mgp;
5626
5627     assert(flags <= 1);
5628
5629     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5630         return 0;
5631     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5632     for (mg = *mgp; mg; mg = *mgp) {
5633         const MGVTBL* const virt = mg->mg_virtual;
5634         if (mg->mg_type == type && (!flags || virt == vtbl)) {
5635             *mgp = mg->mg_moremagic;
5636             if (virt && virt->svt_free)
5637                 virt->svt_free(aTHX_ sv, mg);
5638             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5639                 if (mg->mg_len > 0)
5640                     Safefree(mg->mg_ptr);
5641                 else if (mg->mg_len == HEf_SVKEY)
5642                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5643                 else if (mg->mg_type == PERL_MAGIC_utf8)
5644                     Safefree(mg->mg_ptr);
5645             }
5646             if (mg->mg_flags & MGf_REFCOUNTED)
5647                 SvREFCNT_dec(mg->mg_obj);
5648             Safefree(mg);
5649         }
5650         else
5651             mgp = &mg->mg_moremagic;
5652     }
5653     if (SvMAGIC(sv)) {
5654         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5655             mg_magical(sv);     /*    else fix the flags now */
5656     }
5657     else {
5658         SvMAGICAL_off(sv);
5659         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5660     }
5661     return 0;
5662 }
5663
5664 /*
5665 =for apidoc sv_unmagic
5666
5667 Removes all magic of type C<type> from an SV.
5668
5669 =cut
5670 */
5671
5672 int
5673 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5674 {
5675     PERL_ARGS_ASSERT_SV_UNMAGIC;
5676     return S_sv_unmagicext_flags(aTHX_ sv, type, NULL, 0);
5677 }
5678
5679 /*
5680 =for apidoc sv_unmagicext
5681
5682 Removes all magic of type C<type> with the specified C<vtbl> from an SV.
5683
5684 =cut
5685 */
5686
5687 int
5688 Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl)
5689 {
5690     PERL_ARGS_ASSERT_SV_UNMAGICEXT;
5691     return S_sv_unmagicext_flags(aTHX_ sv, type, vtbl, 1);
5692 }
5693
5694 /*
5695 =for apidoc sv_rvweaken
5696
5697 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5698 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5699 push a back-reference to this RV onto the array of backreferences
5700 associated with that magic.  If the RV is magical, set magic will be
5701 called after the RV is cleared.
5702
5703 =cut
5704 */
5705
5706 SV *
5707 Perl_sv_rvweaken(pTHX_ SV *const sv)
5708 {
5709     SV *tsv;
5710
5711     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5712
5713     if (!SvOK(sv))  /* let undefs pass */
5714         return sv;
5715     if (!SvROK(sv))
5716         Perl_croak(aTHX_ "Can't weaken a nonreference");
5717     else if (SvWEAKREF(sv)) {
5718         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5719         return sv;
5720     }
5721     else if (SvREADONLY(sv)) croak_no_modify();
5722     tsv = SvRV(sv);
5723     Perl_sv_add_backref(aTHX_ tsv, sv);
5724     SvWEAKREF_on(sv);
5725     SvREFCNT_dec_NN(tsv);
5726     return sv;
5727 }
5728
5729 /* Give tsv backref magic if it hasn't already got it, then push a
5730  * back-reference to sv onto the array associated with the backref magic.
5731  *
5732  * As an optimisation, if there's only one backref and it's not an AV,
5733  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
5734  * allocate an AV. (Whether the slot holds an AV tells us whether this is
5735  * active.)
5736  */
5737
5738 /* A discussion about the backreferences array and its refcount:
5739  *
5740  * The AV holding the backreferences is pointed to either as the mg_obj of
5741  * PERL_MAGIC_backref, or in the specific case of a HV, from the
5742  * xhv_backreferences field. The array is created with a refcount
5743  * of 2. This means that if during global destruction the array gets
5744  * picked on before its parent to have its refcount decremented by the
5745  * random zapper, it won't actually be freed, meaning it's still there for
5746  * when its parent gets freed.
5747  *
5748  * When the parent SV is freed, the extra ref is killed by
5749  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
5750  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
5751  *
5752  * When a single backref SV is stored directly, it is not reference
5753  * counted.
5754  */
5755
5756 void
5757 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5758 {
5759     dVAR;
5760     SV **svp;
5761     AV *av = NULL;
5762     MAGIC *mg = NULL;
5763
5764     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5765
5766     /* find slot to store array or singleton backref */
5767
5768     if (SvTYPE(tsv) == SVt_PVHV) {
5769         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5770     } else {
5771         if (SvMAGICAL(tsv))
5772             mg = mg_find(tsv, PERL_MAGIC_backref);
5773         if (!mg)
5774             mg = sv_magicext(tsv, NULL, PERL_MAGIC_backref, &PL_vtbl_backref, NULL, 0);
5775         svp = &(mg->mg_obj);
5776     }
5777
5778     /* create or retrieve the array */
5779
5780     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
5781         || (*svp && SvTYPE(*svp) != SVt_PVAV)
5782     ) {
5783         /* create array */
5784         if (mg)
5785             mg->mg_flags |= MGf_REFCOUNTED;
5786         av = newAV();
5787         AvREAL_off(av);
5788         SvREFCNT_inc_simple_void_NN(av);
5789         /* av now has a refcnt of 2; see discussion above */
5790         av_extend(av, *svp ? 2 : 1);
5791         if (*svp) {
5792             /* move single existing backref to the array */
5793             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
5794         }
5795         *svp = (SV*)av;
5796     }
5797     else {
5798         av = MUTABLE_AV(*svp);
5799         if (!av) {
5800             /* optimisation: store single backref directly in HvAUX or mg_obj */
5801             *svp = sv;
5802             return;
5803         }
5804         assert(SvTYPE(av) == SVt_PVAV);
5805         if (AvFILLp(av) >= AvMAX(av)) {
5806             av_extend(av, AvFILLp(av)+1);
5807         }
5808     }
5809     /* push new backref */
5810     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5811 }
5812
5813 /* delete a back-reference to ourselves from the backref magic associated
5814  * with the SV we point to.
5815  */
5816
5817 void
5818 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5819 {
5820     dVAR;
5821     SV **svp = NULL;
5822
5823     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5824
5825     if (SvTYPE(tsv) == SVt_PVHV) {
5826         if (SvOOK(tsv))
5827             svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5828     }
5829     else if (SvIS_FREED(tsv) && PL_phase == PERL_PHASE_DESTRUCT) {
5830         /* It's possible for the the last (strong) reference to tsv to have
5831            become freed *before* the last thing holding a weak reference.
5832            If both survive longer than the backreferences array, then when
5833            the referent's reference count drops to 0 and it is freed, it's
5834            not able to chase the backreferences, so they aren't NULLed.
5835
5836            For example, a CV holds a weak reference to its stash. If both the
5837            CV and the stash survive longer than the backreferences array,
5838            and the CV gets picked for the SvBREAK() treatment first,
5839            *and* it turns out that the stash is only being kept alive because
5840            of an our variable in the pad of the CV, then midway during CV
5841            destruction the stash gets freed, but CvSTASH() isn't set to NULL.
5842            It ends up pointing to the freed HV. Hence it's chased in here, and
5843            if this block wasn't here, it would hit the !svp panic just below.
5844
5845            I don't believe that "better" destruction ordering is going to help
5846            here - during global destruction there's always going to be the
5847            chance that something goes out of order. We've tried to make it
5848            foolproof before, and it only resulted in evolutionary pressure on
5849            fools. Which made us look foolish for our hubris. :-(
5850         */
5851         return;
5852     }
5853     else {
5854         MAGIC *const mg
5855             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5856         svp =  mg ? &(mg->mg_obj) : NULL;
5857     }
5858
5859     if (!svp)
5860         Perl_croak(aTHX_ "panic: del_backref, svp=0");
5861     if (!*svp) {
5862         /* It's possible that sv is being freed recursively part way through the
5863            freeing of tsv. If this happens, the backreferences array of tsv has
5864            already been freed, and so svp will be NULL. If this is the case,
5865            we should not panic. Instead, nothing needs doing, so return.  */
5866         if (PL_phase == PERL_PHASE_DESTRUCT && SvREFCNT(tsv) == 0)
5867             return;
5868         Perl_croak(aTHX_ "panic: del_backref, *svp=%p phase=%s refcnt=%" UVuf,
5869                    *svp, PL_phase_names[PL_phase], (UV)SvREFCNT(tsv));
5870     }
5871
5872     if (SvTYPE(*svp) == SVt_PVAV) {
5873 #ifdef DEBUGGING
5874         int count = 1;
5875 #endif
5876         AV * const av = (AV*)*svp;
5877         SSize_t fill;
5878         assert(!SvIS_FREED(av));
5879         fill = AvFILLp(av);
5880         assert(fill > -1);
5881         svp = AvARRAY(av);
5882         /* for an SV with N weak references to it, if all those
5883          * weak refs are deleted, then sv_del_backref will be called
5884          * N times and O(N^2) compares will be done within the backref
5885          * array. To ameliorate this potential slowness, we:
5886          * 1) make sure this code is as tight as possible;
5887          * 2) when looking for SV, look for it at both the head and tail of the
5888          *    array first before searching the rest, since some create/destroy
5889          *    patterns will cause the backrefs to be freed in order.
5890          */
5891         if (*svp == sv) {
5892             AvARRAY(av)++;
5893             AvMAX(av)--;
5894         }
5895         else {
5896             SV **p = &svp[fill];
5897             SV *const topsv = *p;
5898             if (topsv != sv) {
5899 #ifdef DEBUGGING
5900                 count = 0;
5901 #endif
5902                 while (--p > svp) {
5903                     if (*p == sv) {
5904                         /* We weren't the last entry.
5905                            An unordered list has this property that you
5906                            can take the last element off the end to fill
5907                            the hole, and it's still an unordered list :-)
5908                         */
5909                         *p = topsv;
5910 #ifdef DEBUGGING
5911                         count++;
5912 #else
5913                         break; /* should only be one */
5914 #endif
5915                     }
5916                 }
5917             }
5918         }
5919         assert(count ==1);
5920         AvFILLp(av) = fill-1;
5921     }
5922     else if (SvIS_FREED(*svp) && PL_phase == PERL_PHASE_DESTRUCT) {
5923         /* freed AV; skip */
5924     }
5925     else {
5926         /* optimisation: only a single backref, stored directly */
5927         if (*svp != sv)
5928             Perl_croak(aTHX_ "panic: del_backref, *svp=%p, sv=%p", *svp, sv);
5929         *svp = NULL;
5930     }
5931
5932 }
5933
5934 void
5935 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5936 {
5937     SV **svp;
5938     SV **last;
5939     bool is_array;
5940
5941     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5942
5943     if (!av)
5944         return;
5945
5946     /* after multiple passes through Perl_sv_clean_all() for a thingy
5947      * that has badly leaked, the backref array may have gotten freed,
5948      * since we only protect it against 1 round of cleanup */
5949     if (SvIS_FREED(av)) {
5950         if (PL_in_clean_all) /* All is fair */
5951             return;
5952         Perl_croak(aTHX_
5953                    "panic: magic_killbackrefs (freed backref AV/SV)");
5954     }
5955
5956
5957     is_array = (SvTYPE(av) == SVt_PVAV);
5958     if (is_array) {
5959         assert(!SvIS_FREED(av));
5960         svp = AvARRAY(av);
5961         if (svp)
5962             last = svp + AvFILLp(av);
5963     }
5964     else {
5965         /* optimisation: only a single backref, stored directly */
5966         svp = (SV**)&av;
5967         last = svp;
5968     }
5969
5970     if (svp) {
5971         while (svp <= last) {
5972             if (*svp) {
5973                 SV *const referrer = *svp;
5974                 if (SvWEAKREF(referrer)) {
5975                     /* XXX Should we check that it hasn't changed? */
5976                     assert(SvROK(referrer));
5977                     SvRV_set(referrer, 0);
5978                     SvOK_off(referrer);
5979                     SvWEAKREF_off(referrer);
5980                     SvSETMAGIC(referrer);
5981                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5982                            SvTYPE(referrer) == SVt_PVLV) {
5983                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
5984                     /* You lookin' at me?  */
5985                     assert(GvSTASH(referrer));
5986                     assert(GvSTASH(referrer) == (const HV *)sv);
5987                     GvSTASH(referrer) = 0;
5988                 } else if (SvTYPE(referrer) == SVt_PVCV ||
5989                            SvTYPE(referrer) == SVt_PVFM) {
5990                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
5991                         /* You lookin' at me?  */
5992                         assert(CvSTASH(referrer));
5993                         assert(CvSTASH(referrer) == (const HV *)sv);
5994                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
5995                     }
5996                     else {
5997                         assert(SvTYPE(sv) == SVt_PVGV);
5998                         /* You lookin' at me?  */
5999                         assert(CvGV(referrer));
6000                         assert(CvGV(referrer) == (const GV *)sv);
6001                         anonymise_cv_maybe(MUTABLE_GV(sv),
6002                                                 MUTABLE_CV(referrer));
6003                     }
6004
6005                 } else {
6006                     Perl_croak(aTHX_
6007                                "panic: magic_killbackrefs (flags=%"UVxf")",
6008                                (UV)SvFLAGS(referrer));
6009                 }
6010
6011                 if (is_array)
6012                     *svp = NULL;
6013             }
6014             svp++;
6015         }
6016     }
6017     if (is_array) {
6018         AvFILLp(av) = -1;
6019         SvREFCNT_dec_NN(av); /* remove extra count added by sv_add_backref() */
6020     }
6021     return;
6022 }
6023
6024 /*
6025 =for apidoc sv_insert
6026
6027 Inserts a string at the specified offset/length within the SV.  Similar to
6028 the Perl substr() function.  Handles get magic.
6029
6030 =for apidoc sv_insert_flags
6031
6032 Same as C<sv_insert>, but the extra C<flags> are passed to the
6033 C<SvPV_force_flags> that applies to C<bigstr>.
6034
6035 =cut
6036 */
6037
6038 void
6039 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
6040 {
6041     dVAR;
6042     char *big;
6043     char *mid;
6044     char *midend;
6045     char *bigend;
6046     SSize_t i;          /* better be sizeof(STRLEN) or bad things happen */
6047     STRLEN curlen;
6048
6049     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
6050
6051     if (!bigstr)
6052         Perl_croak(aTHX_ "Can't modify nonexistent substring");
6053     SvPV_force_flags(bigstr, curlen, flags);
6054     (void)SvPOK_only_UTF8(bigstr);
6055     if (offset + len > curlen) {
6056         SvGROW(bigstr, offset+len+1);
6057         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
6058         SvCUR_set(bigstr, offset+len);
6059     }
6060
6061     SvTAINT(bigstr);
6062     i = littlelen - len;
6063     if (i > 0) {                        /* string might grow */
6064         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
6065         mid = big + offset + len;
6066         midend = bigend = big + SvCUR(bigstr);
6067         bigend += i;
6068         *bigend = '\0';
6069         while (midend > mid)            /* shove everything down */
6070             *--bigend = *--midend;
6071         Move(little,big+offset,littlelen,char);
6072         SvCUR_set(bigstr, SvCUR(bigstr) + i);
6073         SvSETMAGIC(bigstr);
6074         return;
6075     }
6076     else if (i == 0) {
6077         Move(little,SvPVX(bigstr)+offset,len,char);
6078         SvSETMAGIC(bigstr);
6079         return;
6080     }
6081
6082     big = SvPVX(bigstr);
6083     mid = big + offset;
6084     midend = mid + len;
6085     bigend = big + SvCUR(bigstr);
6086
6087     if (midend > bigend)
6088         Perl_croak(aTHX_ "panic: sv_insert, midend=%p, bigend=%p",
6089                    midend, bigend);
6090
6091     if (mid - big > bigend - midend) {  /* faster to shorten from end */
6092         if (littlelen) {
6093             Move(little, mid, littlelen,char);
6094             mid += littlelen;
6095         }
6096         i = bigend - midend;
6097         if (i > 0) {
6098             Move(midend, mid, i,char);
6099             mid += i;
6100         }
6101         *mid = '\0';
6102         SvCUR_set(bigstr, mid - big);
6103     }
6104     else if ((i = mid - big)) { /* faster from front */
6105         midend -= littlelen;
6106         mid = midend;
6107         Move(big, midend - i, i, char);
6108         sv_chop(bigstr,midend-i);
6109         if (littlelen)
6110             Move(little, mid, littlelen,char);
6111     }
6112     else if (littlelen) {
6113         midend -= littlelen;
6114         sv_chop(bigstr,midend);
6115         Move(little,midend,littlelen,char);
6116     }
6117     else {
6118         sv_chop(bigstr,midend);
6119     }
6120     SvSETMAGIC(bigstr);
6121 }
6122
6123 /*
6124 =for apidoc sv_replace
6125
6126 Make the first argument a copy of the second, then delete the original.
6127 The target SV physically takes over ownership of the body of the source SV
6128 and inherits its flags; however, the target keeps any magic it owns,
6129 and any magic in the source is discarded.
6130 Note that this is a rather specialist SV copying operation; most of the
6131 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
6132
6133 =cut
6134 */
6135
6136 void
6137 Perl_sv_replace(pTHX_ SV *const sv, SV *const nsv)
6138 {
6139     dVAR;
6140     const U32 refcnt = SvREFCNT(sv);
6141
6142     PERL_ARGS_ASSERT_SV_REPLACE;
6143
6144     SV_CHECK_THINKFIRST_COW_DROP(sv);
6145     if (SvREFCNT(nsv) != 1) {
6146         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
6147                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
6148     }
6149     if (SvMAGICAL(sv)) {
6150         if (SvMAGICAL(nsv))
6151             mg_free(nsv);
6152         else
6153             sv_upgrade(nsv, SVt_PVMG);
6154         SvMAGIC_set(nsv, SvMAGIC(sv));
6155         SvFLAGS(nsv) |= SvMAGICAL(sv);
6156         SvMAGICAL_off(sv);
6157         SvMAGIC_set(sv, NULL);
6158     }
6159     SvREFCNT(sv) = 0;
6160     sv_clear(sv);
6161     assert(!SvREFCNT(sv));
6162 #ifdef DEBUG_LEAKING_SCALARS
6163     sv->sv_flags  = nsv->sv_flags;
6164     sv->sv_any    = nsv->sv_any;
6165     sv->sv_refcnt = nsv->sv_refcnt;
6166     sv->sv_u      = nsv->sv_u;
6167 #else
6168     StructCopy(nsv,sv,SV);
6169 #endif
6170     if(SvTYPE(sv) == SVt_IV) {
6171         SvANY(sv)
6172             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
6173     }
6174         
6175
6176 #ifdef PERL_OLD_COPY_ON_WRITE
6177     if (SvIsCOW_normal(nsv)) {
6178         /* We need to follow the pointers around the loop to make the
6179            previous SV point to sv, rather than nsv.  */
6180         SV *next;
6181         SV *current = nsv;
6182         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
6183             assert(next);
6184             current = next;
6185             assert(SvPVX_const(current) == SvPVX_const(nsv));
6186         }
6187         /* Make the SV before us point to the SV after us.  */
6188         if (DEBUG_C_TEST) {
6189             PerlIO_printf(Perl_debug_log, "previous is\n");
6190             sv_dump(current);
6191             PerlIO_printf(Perl_debug_log,
6192                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
6193                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
6194         }
6195         SV_COW_NEXT_SV_SET(current, sv);
6196     }
6197 #endif
6198     SvREFCNT(sv) = refcnt;
6199     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
6200     SvREFCNT(nsv) = 0;
6201     del_SV(nsv);
6202 }
6203
6204 /* We're about to free a GV which has a CV that refers back to us.
6205  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
6206  * field) */
6207
6208 STATIC void
6209 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
6210 {
6211     SV *gvname;
6212     GV *anongv;
6213
6214     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
6215
6216     /* be assertive! */
6217     assert(SvREFCNT(gv) == 0);
6218     assert(isGV(gv) && isGV_with_GP(gv));
6219     assert(GvGP(gv));
6220     assert(!CvANON(cv));
6221     assert(CvGV(cv) == gv);
6222     assert(!CvNAMED(cv));
6223
6224     /* will the CV shortly be freed by gp_free() ? */
6225     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
6226         SvANY(cv)->xcv_gv_u.xcv_gv = NULL;
6227         return;
6228     }
6229
6230     /* if not, anonymise: */
6231     gvname = (GvSTASH(gv) && HvNAME(GvSTASH(gv)) && HvENAME(GvSTASH(gv)))
6232                     ? newSVhek(HvENAME_HEK(GvSTASH(gv)))
6233                     : newSVpvn_flags( "__ANON__", 8, 0 );
6234     sv_catpvs(gvname, "::__ANON__");
6235     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
6236     SvREFCNT_dec_NN(gvname);
6237
6238     CvANON_on(cv);
6239     CvCVGV_RC_on(cv);
6240     SvANY(cv)->xcv_gv_u.xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
6241 }
6242
6243
6244 /*
6245 =for apidoc sv_clear
6246
6247 Clear an SV: call any destructors, free up any memory used by the body,
6248 and free the body itself.  The SV's head is I<not> freed, although
6249 its type is set to all 1's so that it won't inadvertently be assumed
6250 to be live during global destruction etc.
6251 This function should only be called when REFCNT is zero.  Most of the time
6252 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
6253 instead.
6254
6255 =cut
6256 */
6257
6258 void
6259 Perl_sv_clear(pTHX_ SV *const orig_sv)
6260 {
6261     dVAR;
6262     HV *stash;
6263     U32 type;
6264     const struct body_details *sv_type_details;
6265     SV* iter_sv = NULL;
6266     SV* next_sv = NULL;
6267     SV *sv = orig_sv;
6268     STRLEN hash_index;
6269
6270     PERL_ARGS_ASSERT_SV_CLEAR;
6271
6272     /* within this loop, sv is the SV currently being freed, and
6273      * iter_sv is the most recent AV or whatever that's being iterated
6274      * over to provide more SVs */
6275
6276     while (sv) {
6277
6278         type = SvTYPE(sv);
6279
6280         assert(SvREFCNT(sv) == 0);
6281         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
6282
6283         if (type <= SVt_IV) {
6284             /* See the comment in sv.h about the collusion between this
6285              * early return and the overloading of the NULL slots in the
6286              * size table.  */
6287             if (SvROK(sv))
6288                 goto free_rv;
6289             SvFLAGS(sv) &= SVf_BREAK;
6290             SvFLAGS(sv) |= SVTYPEMASK;
6291             goto free_head;
6292         }
6293
6294         assert(!SvOBJECT(sv) || type >= SVt_PVMG); /* objs are always >= MG */
6295
6296         if (type >= SVt_PVMG) {
6297             if (SvOBJECT(sv)) {
6298                 if (!curse(sv, 1)) goto get_next_sv;
6299                 type = SvTYPE(sv); /* destructor may have changed it */
6300             }
6301             /* Free back-references before magic, in case the magic calls
6302              * Perl code that has weak references to sv. */
6303             if (type == SVt_PVHV) {
6304                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
6305                 if (SvMAGIC(sv))
6306                     mg_free(sv);
6307             }
6308             else if (type == SVt_PVMG && SvPAD_OUR(sv)) {
6309                 SvREFCNT_dec(SvOURSTASH(sv));
6310             }
6311             else if (type == SVt_PVAV && AvPAD_NAMELIST(sv)) {
6312                 assert(!SvMAGICAL(sv));
6313             } else if (SvMAGIC(sv)) {
6314                 /* Free back-references before other types of magic. */
6315                 sv_unmagic(sv, PERL_MAGIC_backref);
6316                 mg_free(sv);
6317             }
6318             SvMAGICAL_off(sv);
6319             if (type == SVt_PVMG && SvPAD_TYPED(sv))
6320                 SvREFCNT_dec(SvSTASH(sv));
6321         }
6322         switch (type) {
6323             /* case SVt_INVLIST: */
6324         case SVt_PVIO:
6325             if (IoIFP(sv) &&
6326                 IoIFP(sv) != PerlIO_stdin() &&
6327                 IoIFP(sv) != PerlIO_stdout() &&
6328                 IoIFP(sv) != PerlIO_stderr() &&
6329                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6330             {
6331                 io_close(MUTABLE_IO(sv), FALSE);
6332             }
6333             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6334                 PerlDir_close(IoDIRP(sv));
6335             IoDIRP(sv) = (DIR*)NULL;
6336             Safefree(IoTOP_NAME(sv));
6337             Safefree(IoFMT_NAME(sv));
6338             Safefree(IoBOTTOM_NAME(sv));
6339             if ((const GV *)sv == PL_statgv)
6340                 PL_statgv = NULL;
6341             goto freescalar;
6342         case SVt_REGEXP:
6343             /* FIXME for plugins */
6344           freeregexp:
6345             pregfree2((REGEXP*) sv);
6346             goto freescalar;
6347         case SVt_PVCV:
6348         case SVt_PVFM:
6349             cv_undef(MUTABLE_CV(sv));
6350             /* If we're in a stash, we don't own a reference to it.
6351              * However it does have a back reference to us, which needs to
6352              * be cleared.  */
6353             if ((stash = CvSTASH(sv)))
6354                 sv_del_backref(MUTABLE_SV(stash), sv);
6355             goto freescalar;
6356         case SVt_PVHV:
6357             if (PL_last_swash_hv == (const HV *)sv) {
6358                 PL_last_swash_hv = NULL;
6359             }
6360             if (HvTOTALKEYS((HV*)sv) > 0) {
6361                 const char *name;
6362                 /* this statement should match the one at the beginning of
6363                  * hv_undef_flags() */
6364                 if (   PL_phase != PERL_PHASE_DESTRUCT
6365                     && (name = HvNAME((HV*)sv)))
6366                 {
6367                     if (PL_stashcache) {
6368                     DEBUG_o(Perl_deb(aTHX_ "sv_clear clearing PL_stashcache for '%"SVf"'\n",
6369                                      sv));
6370                         (void)hv_deletehek(PL_stashcache,
6371                                            HvNAME_HEK((HV*)sv), G_DISCARD);
6372                     }
6373                     hv_name_set((HV*)sv, NULL, 0, 0);
6374                 }
6375
6376                 /* save old iter_sv in unused SvSTASH field */
6377                 assert(!SvOBJECT(sv));
6378                 SvSTASH(sv) = (HV*)iter_sv;
6379                 iter_sv = sv;
6380
6381                 /* save old hash_index in unused SvMAGIC field */
6382                 assert(!SvMAGICAL(sv));
6383                 assert(!SvMAGIC(sv));
6384                 ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index = hash_index;
6385                 hash_index = 0;
6386
6387                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6388                 goto get_next_sv; /* process this new sv */
6389             }
6390             /* free empty hash */
6391             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6392             assert(!HvARRAY((HV*)sv));
6393             break;
6394         case SVt_PVAV:
6395             {
6396                 AV* av = MUTABLE_AV(sv);
6397                 if (PL_comppad == av) {
6398                     PL_comppad = NULL;
6399                     PL_curpad = NULL;
6400                 }
6401                 if (AvREAL(av) && AvFILLp(av) > -1) {
6402                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6403                     /* save old iter_sv in top-most slot of AV,
6404                      * and pray that it doesn't get wiped in the meantime */
6405                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6406                     iter_sv = sv;
6407                     goto get_next_sv; /* process this new sv */
6408                 }
6409                 Safefree(AvALLOC(av));
6410             }
6411
6412             break;
6413         case SVt_PVLV:
6414             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6415                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6416                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6417                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6418             }
6419             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6420                 SvREFCNT_dec(LvTARG(sv));
6421             if (isREGEXP(sv)) goto freeregexp;
6422         case SVt_PVGV:
6423             if (isGV_with_GP(sv)) {
6424                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6425                    && HvENAME_get(stash))
6426                     mro_method_changed_in(stash);
6427                 gp_free(MUTABLE_GV(sv));
6428                 if (GvNAME_HEK(sv))
6429                     unshare_hek(GvNAME_HEK(sv));
6430                 /* If we're in a stash, we don't own a reference to it.
6431                  * However it does have a back reference to us, which
6432                  * needs to be cleared.  */
6433                 if (!SvVALID(sv) && (stash = GvSTASH(sv)))
6434                         sv_del_backref(MUTABLE_SV(stash), sv);
6435             }
6436             /* FIXME. There are probably more unreferenced pointers to SVs
6437              * in the interpreter struct that we should check and tidy in
6438              * a similar fashion to this:  */
6439             /* See also S_sv_unglob, which does the same thing. */
6440             if ((const GV *)sv == PL_last_in_gv)
6441                 PL_last_in_gv = NULL;
6442             else if ((const GV *)sv == PL_statgv)
6443                 PL_statgv = NULL;
6444             else if ((const GV *)sv == PL_stderrgv)
6445                 PL_stderrgv = NULL;
6446         case SVt_PVMG:
6447         case SVt_PVNV:
6448         case SVt_PVIV:
6449         case SVt_INVLIST:
6450         case SVt_PV:
6451           freescalar:
6452             /* Don't bother with SvOOK_off(sv); as we're only going to
6453              * free it.  */
6454             if (SvOOK(sv)) {
6455                 STRLEN offset;
6456                 SvOOK_offset(sv, offset);
6457                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6458                 /* Don't even bother with turning off the OOK flag.  */
6459             }
6460             if (SvROK(sv)) {
6461             free_rv:
6462                 {
6463                     SV * const target = SvRV(sv);
6464                     if (SvWEAKREF(sv))
6465                         sv_del_backref(target, sv);
6466                     else
6467                         next_sv = target;
6468                 }
6469             }
6470 #ifdef PERL_ANY_COW
6471             else if (SvPVX_const(sv)
6472                      && !(SvTYPE(sv) == SVt_PVIO
6473                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6474             {
6475                 if (SvIsCOW(sv)) {
6476                     if (DEBUG_C_TEST) {
6477                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6478                         sv_dump(sv);
6479                     }
6480                     if (SvLEN(sv)) {
6481 # ifdef PERL_OLD_COPY_ON_WRITE
6482                         sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6483 # else
6484                         if (CowREFCNT(sv)) {
6485                             sv_buf_to_rw(sv);
6486                             CowREFCNT(sv)--;
6487                             sv_buf_to_ro(sv);
6488                             SvLEN_set(sv, 0);
6489                         }
6490 # endif
6491                     } else {
6492                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6493                     }
6494
6495                 }
6496 # ifdef PERL_OLD_COPY_ON_WRITE
6497                 else
6498 # endif
6499                 if (SvLEN(sv)) {
6500                     Safefree(SvPVX_mutable(sv));
6501                 }
6502             }
6503 #else
6504             else if (SvPVX_const(sv) && SvLEN(sv)
6505                      && !(SvTYPE(sv) == SVt_PVIO
6506                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6507                 Safefree(SvPVX_mutable(sv));
6508             else if (SvPVX_const(sv) && SvIsCOW(sv)) {
6509                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6510             }
6511 #endif
6512             break;
6513         case SVt_NV:
6514             break;
6515         }
6516
6517       free_body:
6518
6519         SvFLAGS(sv) &= SVf_BREAK;
6520         SvFLAGS(sv) |= SVTYPEMASK;
6521
6522         sv_type_details = bodies_by_type + type;
6523         if (sv_type_details->arena) {
6524             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6525                      &PL_body_roots[type]);
6526         }
6527         else if (sv_type_details->body_size) {
6528             safefree(SvANY(sv));
6529         }
6530
6531       free_head:
6532         /* caller is responsible for freeing the head of the original sv */
6533         if (sv != orig_sv && !SvREFCNT(sv))
6534             del_SV(sv);
6535
6536         /* grab and free next sv, if any */
6537       get_next_sv:
6538         while (1) {
6539             sv = NULL;
6540             if (next_sv) {
6541                 sv = next_sv;
6542                 next_sv = NULL;
6543             }
6544             else if (!iter_sv) {
6545                 break;
6546             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6547                 AV *const av = (AV*)iter_sv;
6548                 if (AvFILLp(av) > -1) {
6549                     sv = AvARRAY(av)[AvFILLp(av)--];
6550                 }
6551                 else { /* no more elements of current AV to free */
6552                     sv = iter_sv;
6553                     type = SvTYPE(sv);
6554                     /* restore previous value, squirrelled away */
6555                     iter_sv = AvARRAY(av)[AvMAX(av)];
6556                     Safefree(AvALLOC(av));
6557                     goto free_body;
6558                 }
6559             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6560                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6561                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6562                     /* no more elements of current HV to free */
6563                     sv = iter_sv;
6564                     type = SvTYPE(sv);
6565                     /* Restore previous values of iter_sv and hash_index,
6566                      * squirrelled away */
6567                     assert(!SvOBJECT(sv));
6568                     iter_sv = (SV*)SvSTASH(sv);
6569                     assert(!SvMAGICAL(sv));
6570                     hash_index = ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index;
6571 #ifdef DEBUGGING
6572                     /* perl -DA does not like rubbish in SvMAGIC. */
6573                     SvMAGIC_set(sv, 0);
6574 #endif
6575
6576                     /* free any remaining detritus from the hash struct */
6577                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6578                     assert(!HvARRAY((HV*)sv));
6579                     goto free_body;
6580                 }
6581             }
6582
6583             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6584
6585             if (!sv)
6586                 continue;
6587             if (!SvREFCNT(sv)) {
6588                 sv_free(sv);
6589                 continue;
6590             }
6591             if (--(SvREFCNT(sv)))
6592                 continue;
6593 #ifdef DEBUGGING
6594             if (SvTEMP(sv)) {
6595                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6596                          "Attempt to free temp prematurely: SV 0x%"UVxf
6597                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6598                 continue;
6599             }
6600 #endif
6601             if (SvIMMORTAL(sv)) {
6602                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6603                 SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6604                 continue;
6605             }
6606             break;
6607         } /* while 1 */
6608
6609     } /* while sv */
6610 }
6611
6612 /* This routine curses the sv itself, not the object referenced by sv. So
6613    sv does not have to be ROK. */
6614
6615 static bool
6616 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6617     dVAR;
6618
6619     PERL_ARGS_ASSERT_CURSE;
6620     assert(SvOBJECT(sv));
6621
6622     if (PL_defstash &&  /* Still have a symbol table? */
6623         SvDESTROYABLE(sv))
6624     {
6625         dSP;
6626         HV* stash;
6627         do {
6628           stash = SvSTASH(sv);
6629           assert(SvTYPE(stash) == SVt_PVHV);
6630           if (HvNAME(stash)) {
6631             CV* destructor = NULL;
6632             assert (SvOOK(stash));
6633             if (!SvOBJECT(stash)) destructor = (CV *)SvSTASH(stash);
6634             if (!destructor || HvMROMETA(stash)->destroy_gen
6635                                 != PL_sub_generation)
6636             {
6637                 GV * const gv =
6638                     gv_fetchmeth_autoload(stash, "DESTROY", 7, 0);
6639                 if (gv) destructor = GvCV(gv);
6640                 if (!SvOBJECT(stash))
6641                 {
6642                     SvSTASH(stash) =
6643                         destructor ? (HV *)destructor : ((HV *)0)+1;
6644                     HvAUX(stash)->xhv_mro_meta->destroy_gen =
6645                         PL_sub_generation;
6646                 }
6647             }
6648             assert(!destructor || destructor == ((CV *)0)+1
6649                 || SvTYPE(destructor) == SVt_PVCV);
6650             if (destructor && destructor != ((CV *)0)+1
6651                 /* A constant subroutine can have no side effects, so
6652                    don't bother calling it.  */
6653                 && !CvCONST(destructor)
6654                 /* Don't bother calling an empty destructor or one that
6655                    returns immediately. */
6656                 && (CvISXSUB(destructor)
6657                 || (CvSTART(destructor)
6658                     && (CvSTART(destructor)->op_next->op_type
6659                                         != OP_LEAVESUB)
6660                     && (CvSTART(destructor)->op_next->op_type
6661                                         != OP_PUSHMARK
6662                         || CvSTART(destructor)->op_next->op_next->op_type
6663                                         != OP_RETURN
6664                        )
6665                    ))
6666                )
6667             {
6668                 SV* const tmpref = newRV(sv);
6669                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
6670                 ENTER;
6671                 PUSHSTACKi(PERLSI_DESTROY);
6672                 EXTEND(SP, 2);
6673                 PUSHMARK(SP);
6674                 PUSHs(tmpref);
6675                 PUTBACK;
6676                 call_sv(MUTABLE_SV(destructor),
6677                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
6678                 POPSTACK;
6679                 SPAGAIN;
6680                 LEAVE;
6681                 if(SvREFCNT(tmpref) < 2) {
6682                     /* tmpref is not kept alive! */
6683                     SvREFCNT(sv)--;
6684                     SvRV_set(tmpref, NULL);
6685                     SvROK_off(tmpref);
6686                 }
6687                 SvREFCNT_dec_NN(tmpref);
6688             }
6689           }
6690         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
6691
6692
6693         if (check_refcnt && SvREFCNT(sv)) {
6694             if (PL_in_clean_objs)
6695                 Perl_croak(aTHX_
6696                   "DESTROY created new reference to dead object '%"HEKf"'",
6697                    HEKfARG(HvNAME_HEK(stash)));
6698             /* DESTROY gave object new lease on life */
6699             return FALSE;
6700         }
6701     }
6702
6703     if (SvOBJECT(sv)) {
6704         HV * const stash = SvSTASH(sv);
6705         /* Curse before freeing the stash, as freeing the stash could cause
6706            a recursive call into S_curse. */
6707         SvOBJECT_off(sv);       /* Curse the object. */
6708         SvSTASH_set(sv,0);      /* SvREFCNT_dec may try to read this */
6709         SvREFCNT_dec(stash); /* possibly of changed persuasion */
6710     }
6711     return TRUE;
6712 }
6713
6714 /*
6715 =for apidoc sv_newref
6716
6717 Increment an SV's reference count.  Use the C<SvREFCNT_inc()> wrapper
6718 instead.
6719
6720 =cut
6721 */
6722
6723 SV *
6724 Perl_sv_newref(pTHX_ SV *const sv)
6725 {
6726     PERL_UNUSED_CONTEXT;
6727     if (sv)
6728         (SvREFCNT(sv))++;
6729     return sv;
6730 }
6731
6732 /*
6733 =for apidoc sv_free
6734
6735 Decrement an SV's reference count, and if it drops to zero, call
6736 C<sv_clear> to invoke destructors and free up any memory used by
6737 the body; finally, deallocate the SV's head itself.
6738 Normally called via a wrapper macro C<SvREFCNT_dec>.
6739
6740 =cut
6741 */
6742
6743 void
6744 Perl_sv_free(pTHX_ SV *const sv)
6745 {
6746     SvREFCNT_dec(sv);
6747 }
6748
6749
6750 /* Private helper function for SvREFCNT_dec().
6751  * Called with rc set to original SvREFCNT(sv), where rc == 0 or 1 */
6752
6753 void
6754 Perl_sv_free2(pTHX_ SV *const sv, const U32 rc)
6755 {
6756     dVAR;
6757
6758     PERL_ARGS_ASSERT_SV_FREE2;
6759
6760     if (LIKELY( rc == 1 )) {
6761         /* normal case */
6762         SvREFCNT(sv) = 0;
6763
6764 #ifdef DEBUGGING
6765         if (SvTEMP(sv)) {
6766             Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6767                              "Attempt to free temp prematurely: SV 0x%"UVxf
6768                              pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6769             return;
6770         }
6771 #endif
6772         if (SvIMMORTAL(sv)) {
6773             /* make sure SvREFCNT(sv)==0 happens very seldom */
6774             SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6775             return;
6776         }
6777         sv_clear(sv);
6778         if (! SvREFCNT(sv)) /* may have have been resurrected */
6779             del_SV(sv);
6780         return;
6781     }
6782
6783     /* handle exceptional cases */
6784
6785     assert(rc == 0);
6786
6787     if (SvFLAGS(sv) & SVf_BREAK)
6788         /* this SV's refcnt has been artificially decremented to
6789          * trigger cleanup */
6790         return;
6791     if (PL_in_clean_all) /* All is fair */
6792         return;
6793     if (SvIMMORTAL(sv)) {
6794         /* make sure SvREFCNT(sv)==0 happens very seldom */
6795         SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6796         return;
6797     }
6798     if (ckWARN_d(WARN_INTERNAL)) {
6799 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6800         Perl_dump_sv_child(aTHX_ sv);
6801 #else
6802     #ifdef DEBUG_LEAKING_SCALARS
6803         sv_dump(sv);
6804     #endif
6805 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6806         if (PL_warnhook == PERL_WARNHOOK_FATAL
6807             || ckDEAD(packWARN(WARN_INTERNAL))) {
6808             /* Don't let Perl_warner cause us to escape our fate:  */
6809             abort();
6810         }
6811 #endif
6812         /* This may not return:  */
6813         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6814                     "Attempt to free unreferenced scalar: SV 0x%"UVxf
6815                     pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6816 #endif
6817     }
6818 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6819     abort();
6820 #endif
6821
6822 }
6823
6824
6825 /*
6826 =for apidoc sv_len
6827
6828 Returns the length of the string in the SV.  Handles magic and type
6829 coercion and sets the UTF8 flag appropriately.  See also C<SvCUR>, which
6830 gives raw access to the xpv_cur slot.
6831
6832 =cut
6833 */
6834
6835 STRLEN
6836 Perl_sv_len(pTHX_ SV *const sv)
6837 {
6838     STRLEN len;
6839
6840     if (!sv)
6841         return 0;
6842
6843     (void)SvPV_const(sv, len);
6844     return len;
6845 }
6846
6847 /*
6848 =for apidoc sv_len_utf8
6849
6850 Returns the number of characters in the string in an SV, counting wide
6851 UTF-8 bytes as a single character.  Handles magic and type coercion.
6852
6853 =cut
6854 */
6855
6856 /*
6857  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
6858  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
6859  * (Note that the mg_len is not the length of the mg_ptr field.
6860  * This allows the cache to store the character length of the string without
6861  * needing to malloc() extra storage to attach to the mg_ptr.)
6862  *
6863  */
6864
6865 STRLEN
6866 Perl_sv_len_utf8(pTHX_ SV *const sv)
6867 {
6868     if (!sv)
6869         return 0;
6870
6871     SvGETMAGIC(sv);
6872     return sv_len_utf8_nomg(sv);
6873 }
6874
6875 STRLEN
6876 Perl_sv_len_utf8_nomg(pTHX_ SV * const sv)
6877 {
6878     dVAR;
6879     STRLEN len;
6880     const U8 *s = (U8*)SvPV_nomg_const(sv, len);
6881
6882     PERL_ARGS_ASSERT_SV_LEN_UTF8_NOMG;
6883
6884     if (PL_utf8cache && SvUTF8(sv)) {
6885             STRLEN ulen;
6886             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
6887
6888             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
6889                 if (mg->mg_len != -1)
6890                     ulen = mg->mg_len;
6891                 else {
6892                     /* We can use the offset cache for a headstart.
6893                        The longer value is stored in the first pair.  */
6894                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
6895
6896                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
6897                                                        s + len);
6898                 }
6899                 
6900                 if (PL_utf8cache < 0) {
6901                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6902                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
6903                 }
6904             }
6905             else {
6906                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6907                 utf8_mg_len_cache_update(sv, &mg, ulen);
6908             }
6909             return ulen;
6910     }
6911     return SvUTF8(sv) ? Perl_utf8_length(aTHX_ s, s + len) : len;
6912 }
6913
6914 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6915    offset.  */
6916 static STRLEN
6917 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6918                       STRLEN *const uoffset_p, bool *const at_end)
6919 {
6920     const U8 *s = start;
6921     STRLEN uoffset = *uoffset_p;
6922
6923     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6924
6925     while (s < send && uoffset) {
6926         --uoffset;
6927         s += UTF8SKIP(s);
6928     }
6929     if (s == send) {
6930         *at_end = TRUE;
6931     }
6932     else if (s > send) {
6933         *at_end = TRUE;
6934         /* This is the existing behaviour. Possibly it should be a croak, as
6935            it's actually a bounds error  */
6936         s = send;
6937     }
6938     *uoffset_p -= uoffset;
6939     return s - start;
6940 }
6941
6942 /* Given the length of the string in both bytes and UTF-8 characters, decide
6943    whether to walk forwards or backwards to find the byte corresponding to
6944    the passed in UTF-8 offset.  */
6945 static STRLEN
6946 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6947                     STRLEN uoffset, const STRLEN uend)
6948 {
6949     STRLEN backw = uend - uoffset;
6950
6951     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6952
6953     if (uoffset < 2 * backw) {
6954         /* The assumption is that going forwards is twice the speed of going
6955            forward (that's where the 2 * backw comes from).
6956            (The real figure of course depends on the UTF-8 data.)  */
6957         const U8 *s = start;
6958
6959         while (s < send && uoffset--)
6960             s += UTF8SKIP(s);
6961         assert (s <= send);
6962         if (s > send)
6963             s = send;
6964         return s - start;
6965     }
6966
6967     while (backw--) {
6968         send--;
6969         while (UTF8_IS_CONTINUATION(*send))
6970             send--;
6971     }
6972     return send - start;
6973 }
6974
6975 /* For the string representation of the given scalar, find the byte
6976    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6977    give another position in the string, *before* the sought offset, which
6978    (which is always true, as 0, 0 is a valid pair of positions), which should
6979    help reduce the amount of linear searching.
6980    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6981    will be used to reduce the amount of linear searching. The cache will be
6982    created if necessary, and the found value offered to it for update.  */
6983 static STRLEN
6984 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6985                     const U8 *const send, STRLEN uoffset,
6986                     STRLEN uoffset0, STRLEN boffset0)
6987 {
6988     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6989     bool found = FALSE;
6990     bool at_end = FALSE;
6991
6992     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6993
6994     assert (uoffset >= uoffset0);
6995
6996     if (!uoffset)
6997         return 0;
6998
6999     if (!SvREADONLY(sv) && !SvGMAGICAL(sv) && SvPOK(sv)
7000         && PL_utf8cache
7001         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
7002                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
7003         if ((*mgp)->mg_ptr) {
7004             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
7005             if (cache[0] == uoffset) {
7006                 /* An exact match. */
7007                 return cache[1];
7008             }
7009             if (cache[2] == uoffset) {
7010                 /* An exact match. */
7011                 return cache[3];
7012             }
7013
7014             if (cache[0] < uoffset) {
7015                 /* The cache already knows part of the way.   */
7016                 if (cache[0] > uoffset0) {
7017                     /* The cache knows more than the passed in pair  */
7018                     uoffset0 = cache[0];
7019                     boffset0 = cache[1];
7020                 }
7021                 if ((*mgp)->mg_len != -1) {
7022                     /* And we know the end too.  */
7023                     boffset = boffset0
7024                         + sv_pos_u2b_midway(start + boffset0, send,
7025                                               uoffset - uoffset0,
7026                                               (*mgp)->mg_len - uoffset0);
7027                 } else {
7028                     uoffset -= uoffset0;
7029                     boffset = boffset0
7030                         + sv_pos_u2b_forwards(start + boffset0,
7031                                               send, &uoffset, &at_end);
7032                     uoffset += uoffset0;
7033                 }
7034             }
7035             else if (cache[2] < uoffset) {
7036                 /* We're between the two cache entries.  */
7037                 if (cache[2] > uoffset0) {
7038                     /* and the cache knows more than the passed in pair  */
7039                     uoffset0 = cache[2];
7040                     boffset0 = cache[3];
7041                 }
7042
7043                 boffset = boffset0
7044                     + sv_pos_u2b_midway(start + boffset0,
7045                                           start + cache[1],
7046                                           uoffset - uoffset0,
7047                                           cache[0] - uoffset0);
7048             } else {
7049                 boffset = boffset0
7050                     + sv_pos_u2b_midway(start + boffset0,
7051                                           start + cache[3],
7052                                           uoffset - uoffset0,
7053                                           cache[2] - uoffset0);
7054             }
7055             found = TRUE;
7056         }
7057         else if ((*mgp)->mg_len != -1) {
7058             /* If we can take advantage of a passed in offset, do so.  */
7059             /* In fact, offset0 is either 0, or less than offset, so don't
7060                need to worry about the other possibility.  */
7061             boffset = boffset0
7062                 + sv_pos_u2b_midway(start + boffset0, send,
7063                                       uoffset - uoffset0,
7064                                       (*mgp)->mg_len - uoffset0);
7065             found = TRUE;
7066         }
7067     }
7068
7069     if (!found || PL_utf8cache < 0) {
7070         STRLEN real_boffset;
7071         uoffset -= uoffset0;
7072         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
7073                                                       send, &uoffset, &at_end);
7074         uoffset += uoffset0;
7075
7076         if (found && PL_utf8cache < 0)
7077             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
7078                                        real_boffset, sv);
7079         boffset = real_boffset;
7080     }
7081
7082     if (PL_utf8cache && !SvGMAGICAL(sv) && SvPOK(sv)) {
7083         if (at_end)
7084             utf8_mg_len_cache_update(sv, mgp, uoffset);
7085         else
7086             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
7087     }
7088     return boffset;
7089 }
7090
7091
7092 /*
7093 =for apidoc sv_pos_u2b_flags
7094
7095 Converts the offset from a count of UTF-8 chars from
7096 the start of the string, to a count of the equivalent number of bytes; if
7097 lenp is non-zero, it does the same to lenp, but this time starting from
7098 the offset, rather than from the start
7099 of the string.  Handles type coercion.
7100 I<flags> is passed to C<SvPV_flags>, and usually should be
7101 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7102
7103 =cut
7104 */
7105
7106 /*
7107  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
7108  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7109  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7110  *
7111  */
7112
7113 STRLEN
7114 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
7115                       U32 flags)
7116 {
7117     const U8 *start;
7118     STRLEN len;
7119     STRLEN boffset;
7120
7121     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
7122
7123     start = (U8*)SvPV_flags(sv, len, flags);
7124     if (len) {
7125         const U8 * const send = start + len;
7126         MAGIC *mg = NULL;
7127         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
7128
7129         if (lenp
7130             && *lenp /* don't bother doing work for 0, as its bytes equivalent
7131                         is 0, and *lenp is already set to that.  */) {
7132             /* Convert the relative offset to absolute.  */
7133             const STRLEN uoffset2 = uoffset + *lenp;
7134             const STRLEN boffset2
7135                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
7136                                       uoffset, boffset) - boffset;
7137
7138             *lenp = boffset2;
7139         }
7140     } else {
7141         if (lenp)
7142             *lenp = 0;
7143         boffset = 0;
7144     }
7145
7146     return boffset;
7147 }
7148
7149 /*
7150 =for apidoc sv_pos_u2b
7151
7152 Converts the value pointed to by offsetp from a count of UTF-8 chars from
7153 the start of the string, to a count of the equivalent number of bytes; if
7154 lenp is non-zero, it does the same to lenp, but this time starting from
7155 the offset, rather than from the start of the string.  Handles magic and
7156 type coercion.
7157
7158 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
7159 than 2Gb.
7160
7161 =cut
7162 */
7163
7164 /*
7165  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
7166  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7167  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7168  *
7169  */
7170
7171 /* This function is subject to size and sign problems */
7172
7173 void
7174 Perl_sv_pos_u2b(pTHX_ SV *const sv, I32 *const offsetp, I32 *const lenp)
7175 {
7176     PERL_ARGS_ASSERT_SV_POS_U2B;
7177
7178     if (lenp) {
7179         STRLEN ulen = (STRLEN)*lenp;
7180         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
7181                                          SV_GMAGIC|SV_CONST_RETURN);
7182         *lenp = (I32)ulen;
7183     } else {
7184         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
7185                                          SV_GMAGIC|SV_CONST_RETURN);
7186     }
7187 }
7188
7189 static void
7190 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
7191                            const STRLEN ulen)
7192 {
7193     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
7194     if (SvREADONLY(sv) || SvGMAGICAL(sv) || !SvPOK(sv))
7195         return;
7196
7197     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7198                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7199         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
7200     }
7201     assert(*mgp);
7202
7203     (*mgp)->mg_len = ulen;
7204 }
7205
7206 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
7207    byte length pairing. The (byte) length of the total SV is passed in too,
7208    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
7209    may not have updated SvCUR, so we can't rely on reading it directly.
7210
7211    The proffered utf8/byte length pairing isn't used if the cache already has
7212    two pairs, and swapping either for the proffered pair would increase the
7213    RMS of the intervals between known byte offsets.
7214
7215    The cache itself consists of 4 STRLEN values
7216    0: larger UTF-8 offset
7217    1: corresponding byte offset
7218    2: smaller UTF-8 offset
7219    3: corresponding byte offset
7220
7221    Unused cache pairs have the value 0, 0.
7222    Keeping the cache "backwards" means that the invariant of
7223    cache[0] >= cache[2] is maintained even with empty slots, which means that
7224    the code that uses it doesn't need to worry if only 1 entry has actually
7225    been set to non-zero.  It also makes the "position beyond the end of the
7226    cache" logic much simpler, as the first slot is always the one to start
7227    from.   
7228 */
7229 static void
7230 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
7231                            const STRLEN utf8, const STRLEN blen)
7232 {
7233     STRLEN *cache;
7234
7235     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
7236
7237     if (SvREADONLY(sv))
7238         return;
7239
7240     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7241                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7242         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
7243                            0);
7244         (*mgp)->mg_len = -1;
7245     }
7246     assert(*mgp);
7247
7248     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
7249         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
7250         (*mgp)->mg_ptr = (char *) cache;
7251     }
7252     assert(cache);
7253
7254     if (PL_utf8cache < 0 && SvPOKp(sv)) {
7255         /* SvPOKp() because it's possible that sv has string overloading, and
7256            therefore is a reference, hence SvPVX() is actually a pointer.
7257            This cures the (very real) symptoms of RT 69422, but I'm not actually
7258            sure whether we should even be caching the results of UTF-8
7259            operations on overloading, given that nothing stops overloading
7260            returning a different value every time it's called.  */
7261         const U8 *start = (const U8 *) SvPVX_const(sv);
7262         const STRLEN realutf8 = utf8_length(start, start + byte);
7263
7264         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
7265                                    sv);
7266     }
7267
7268     /* Cache is held with the later position first, to simplify the code
7269        that deals with unbounded ends.  */
7270        
7271     ASSERT_UTF8_CACHE(cache);
7272     if (cache[1] == 0) {
7273         /* Cache is totally empty  */
7274         cache[0] = utf8;
7275         cache[1] = byte;
7276     } else if (cache[3] == 0) {
7277         if (byte > cache[1]) {
7278             /* New one is larger, so goes first.  */
7279             cache[2] = cache[0];
7280             cache[3] = cache[1];
7281             cache[0] = utf8;
7282             cache[1] = byte;
7283         } else {
7284             cache[2] = utf8;
7285             cache[3] = byte;
7286         }
7287     } else {
7288 #define THREEWAY_SQUARE(a,b,c,d) \
7289             ((float)((d) - (c))) * ((float)((d) - (c))) \
7290             + ((float)((c) - (b))) * ((float)((c) - (b))) \
7291                + ((float)((b) - (a))) * ((float)((b) - (a)))
7292
7293         /* Cache has 2 slots in use, and we know three potential pairs.
7294            Keep the two that give the lowest RMS distance. Do the
7295            calculation in bytes simply because we always know the byte
7296            length.  squareroot has the same ordering as the positive value,
7297            so don't bother with the actual square root.  */
7298         if (byte > cache[1]) {
7299             /* New position is after the existing pair of pairs.  */
7300             const float keep_earlier
7301                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
7302             const float keep_later
7303                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
7304
7305             if (keep_later < keep_earlier) {
7306                 cache[2] = cache[0];
7307                 cache[3] = cache[1];
7308                 cache[0] = utf8;
7309                 cache[1] = byte;
7310             }
7311             else {
7312                 cache[0] = utf8;
7313                 cache[1] = byte;
7314             }
7315         }
7316         else if (byte > cache[3]) {
7317             /* New position is between the existing pair of pairs.  */
7318             const float keep_earlier
7319                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
7320             const float keep_later
7321                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
7322
7323             if (keep_later < keep_earlier) {
7324                 cache[2] = utf8;
7325                 cache[3] = byte;
7326             }
7327             else {
7328                 cache[0] = utf8;
7329                 cache[1] = byte;
7330             }
7331         }
7332         else {
7333             /* New position is before the existing pair of pairs.  */
7334             const float keep_earlier
7335                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
7336             const float keep_later
7337                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
7338
7339             if (keep_later < keep_earlier) {
7340                 cache[2] = utf8;
7341                 cache[3] = byte;
7342             }
7343             else {
7344                 cache[0] = cache[2];
7345                 cache[1] = cache[3];
7346                 cache[2] = utf8;
7347                 cache[3] = byte;
7348             }
7349         }
7350     }
7351     ASSERT_UTF8_CACHE(cache);
7352 }
7353
7354 /* We already know all of the way, now we may be able to walk back.  The same
7355    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
7356    backward is half the speed of walking forward. */
7357 static STRLEN
7358 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
7359                     const U8 *end, STRLEN endu)
7360 {
7361     const STRLEN forw = target - s;
7362     STRLEN backw = end - target;
7363
7364     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
7365
7366     if (forw < 2 * backw) {
7367         return utf8_length(s, target);
7368     }
7369
7370     while (end > target) {
7371         end--;
7372         while (UTF8_IS_CONTINUATION(*end)) {
7373             end--;
7374         }
7375         endu--;
7376     }
7377     return endu;
7378 }
7379
7380 /*
7381 =for apidoc sv_pos_b2u_flags
7382
7383 Converts the offset from a count of bytes from the start of the string, to
7384 a count of the equivalent number of UTF-8 chars.  Handles type coercion.
7385 I<flags> is passed to C<SvPV_flags>, and usually should be
7386 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7387
7388 =cut
7389 */
7390
7391 /*
7392  * sv_pos_b2u_flags() uses, like sv_pos_u2b_flags(), the mg_ptr of the
7393  * potential PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8
7394  * and byte offsets.
7395  *
7396  */
7397 STRLEN
7398 Perl_sv_pos_b2u_flags(pTHX_ SV *const sv, STRLEN const offset, U32 flags)
7399 {
7400     const U8* s;
7401     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
7402     STRLEN blen;
7403     MAGIC* mg = NULL;
7404     const U8* send;
7405     bool found = FALSE;
7406
7407     PERL_ARGS_ASSERT_SV_POS_B2U_FLAGS;
7408
7409     s = (const U8*)SvPV_flags(sv, blen, flags);
7410
7411     if (blen < offset)
7412         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset, blen=%"UVuf
7413                    ", byte=%"UVuf, (UV)blen, (UV)offset);
7414
7415     send = s + offset;
7416
7417     if (!SvREADONLY(sv)
7418         && PL_utf8cache
7419         && SvTYPE(sv) >= SVt_PVMG
7420         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7421     {
7422         if (mg->mg_ptr) {
7423             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7424             if (cache[1] == offset) {
7425                 /* An exact match. */
7426                 return cache[0];
7427             }
7428             if (cache[3] == offset) {
7429                 /* An exact match. */
7430                 return cache[2];
7431             }
7432
7433             if (cache[1] < offset) {
7434                 /* We already know part of the way. */
7435                 if (mg->mg_len != -1) {
7436                     /* Actually, we know the end too.  */
7437                     len = cache[0]
7438                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7439                                               s + blen, mg->mg_len - cache[0]);
7440                 } else {
7441                     len = cache[0] + utf8_length(s + cache[1], send);
7442                 }
7443             }
7444             else if (cache[3] < offset) {
7445                 /* We're between the two cached pairs, so we do the calculation
7446                    offset by the byte/utf-8 positions for the earlier pair,
7447                    then add the utf-8 characters from the string start to
7448                    there.  */
7449                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7450                                           s + cache[1], cache[0] - cache[2])
7451                     + cache[2];
7452
7453             }
7454             else { /* cache[3] > offset */
7455                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7456                                           cache[2]);
7457
7458             }
7459             ASSERT_UTF8_CACHE(cache);
7460             found = TRUE;
7461         } else if (mg->mg_len != -1) {
7462             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7463             found = TRUE;
7464         }
7465     }
7466     if (!found || PL_utf8cache < 0) {
7467         const STRLEN real_len = utf8_length(s, send);
7468
7469         if (found && PL_utf8cache < 0)
7470             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7471         len = real_len;
7472     }
7473
7474     if (PL_utf8cache) {
7475         if (blen == offset)
7476             utf8_mg_len_cache_update(sv, &mg, len);
7477         else
7478             utf8_mg_pos_cache_update(sv, &mg, offset, len, blen);
7479     }
7480
7481     return len;
7482 }
7483
7484 /*
7485 =for apidoc sv_pos_b2u
7486
7487 Converts the value pointed to by offsetp from a count of bytes from the
7488 start of the string, to a count of the equivalent number of UTF-8 chars.
7489 Handles magic and type coercion.
7490
7491 Use C<sv_pos_b2u_flags> in preference, which correctly handles strings
7492 longer than 2Gb.
7493
7494 =cut
7495 */
7496
7497 /*
7498  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
7499  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7500  * byte offsets.
7501  *
7502  */
7503 void
7504 Perl_sv_pos_b2u(pTHX_ SV *const sv, I32 *const offsetp)
7505 {
7506     PERL_ARGS_ASSERT_SV_POS_B2U;
7507
7508     if (!sv)
7509         return;
7510
7511     *offsetp = (I32)sv_pos_b2u_flags(sv, (STRLEN)*offsetp,
7512                                      SV_GMAGIC|SV_CONST_RETURN);
7513 }
7514
7515 static void
7516 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7517                              STRLEN real, SV *const sv)
7518 {
7519     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7520
7521     /* As this is debugging only code, save space by keeping this test here,
7522        rather than inlining it in all the callers.  */
7523     if (from_cache == real)
7524         return;
7525
7526     /* Need to turn the assertions off otherwise we may recurse infinitely
7527        while printing error messages.  */
7528     SAVEI8(PL_utf8cache);
7529     PL_utf8cache = 0;
7530     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
7531                func, (UV) from_cache, (UV) real, SVfARG(sv));
7532 }
7533
7534 /*
7535 =for apidoc sv_eq
7536
7537 Returns a boolean indicating whether the strings in the two SVs are
7538 identical.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7539 coerce its args to strings if necessary.
7540
7541 =for apidoc sv_eq_flags
7542
7543 Returns a boolean indicating whether the strings in the two SVs are
7544 identical.  Is UTF-8 and 'use bytes' aware and coerces its args to strings
7545 if necessary.  If the flags include SV_GMAGIC, it handles get-magic, too.
7546
7547 =cut
7548 */
7549
7550 I32
7551 Perl_sv_eq_flags(pTHX_ SV *sv1, SV *sv2, const U32 flags)
7552 {
7553     dVAR;
7554     const char *pv1;
7555     STRLEN cur1;
7556     const char *pv2;
7557     STRLEN cur2;
7558     I32  eq     = 0;
7559     SV* svrecode = NULL;
7560
7561     if (!sv1) {
7562         pv1 = "";
7563         cur1 = 0;
7564     }
7565     else {
7566         /* if pv1 and pv2 are the same, second SvPV_const call may
7567          * invalidate pv1 (if we are handling magic), so we may need to
7568          * make a copy */
7569         if (sv1 == sv2 && flags & SV_GMAGIC
7570          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7571             pv1 = SvPV_const(sv1, cur1);
7572             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7573         }
7574         pv1 = SvPV_flags_const(sv1, cur1, flags);
7575     }
7576
7577     if (!sv2){
7578         pv2 = "";
7579         cur2 = 0;
7580     }
7581     else
7582         pv2 = SvPV_flags_const(sv2, cur2, flags);
7583
7584     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7585         /* Differing utf8ness.
7586          * Do not UTF8size the comparands as a side-effect. */
7587          if (PL_encoding) {
7588               if (SvUTF8(sv1)) {
7589                    svrecode = newSVpvn(pv2, cur2);
7590                    sv_recode_to_utf8(svrecode, PL_encoding);
7591                    pv2 = SvPV_const(svrecode, cur2);
7592               }
7593               else {
7594                    svrecode = newSVpvn(pv1, cur1);
7595                    sv_recode_to_utf8(svrecode, PL_encoding);
7596                    pv1 = SvPV_const(svrecode, cur1);
7597               }
7598               /* Now both are in UTF-8. */
7599               if (cur1 != cur2) {
7600                    SvREFCNT_dec_NN(svrecode);
7601                    return FALSE;
7602               }
7603          }
7604          else {
7605               if (SvUTF8(sv1)) {
7606                   /* sv1 is the UTF-8 one  */
7607                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7608                                         (const U8*)pv1, cur1) == 0;
7609               }
7610               else {
7611                   /* sv2 is the UTF-8 one  */
7612                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7613                                         (const U8*)pv2, cur2) == 0;
7614               }
7615          }
7616     }
7617
7618     if (cur1 == cur2)
7619         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7620         
7621     SvREFCNT_dec(svrecode);
7622
7623     return eq;
7624 }
7625
7626 /*
7627 =for apidoc sv_cmp
7628
7629 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7630 string in C<sv1> is less than, equal to, or greater than the string in
7631 C<sv2>.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7632 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
7633
7634 =for apidoc sv_cmp_flags
7635
7636 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7637 string in C<sv1> is less than, equal to, or greater than the string in
7638 C<sv2>.  Is UTF-8 and 'use bytes' aware and will coerce its args to strings
7639 if necessary.  If the flags include SV_GMAGIC, it handles get magic.  See
7640 also C<sv_cmp_locale_flags>.
7641
7642 =cut
7643 */
7644
7645 I32
7646 Perl_sv_cmp(pTHX_ SV *const sv1, SV *const sv2)
7647 {
7648     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7649 }
7650
7651 I32
7652 Perl_sv_cmp_flags(pTHX_ SV *const sv1, SV *const sv2,
7653                   const U32 flags)
7654 {
7655     dVAR;
7656     STRLEN cur1, cur2;
7657     const char *pv1, *pv2;
7658     I32  cmp;
7659     SV *svrecode = NULL;
7660
7661     if (!sv1) {
7662         pv1 = "";
7663         cur1 = 0;
7664     }
7665     else
7666         pv1 = SvPV_flags_const(sv1, cur1, flags);
7667
7668     if (!sv2) {
7669         pv2 = "";
7670         cur2 = 0;
7671     }
7672     else
7673         pv2 = SvPV_flags_const(sv2, cur2, flags);
7674
7675     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7676         /* Differing utf8ness.
7677          * Do not UTF8size the comparands as a side-effect. */
7678         if (SvUTF8(sv1)) {
7679             if (PL_encoding) {
7680                  svrecode = newSVpvn(pv2, cur2);
7681                  sv_recode_to_utf8(svrecode, PL_encoding);
7682                  pv2 = SvPV_const(svrecode, cur2);
7683             }
7684             else {
7685                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
7686                                                    (const U8*)pv1, cur1);
7687                 return retval ? retval < 0 ? -1 : +1 : 0;
7688             }
7689         }
7690         else {
7691             if (PL_encoding) {
7692                  svrecode = newSVpvn(pv1, cur1);
7693                  sv_recode_to_utf8(svrecode, PL_encoding);
7694                  pv1 = SvPV_const(svrecode, cur1);
7695             }
7696             else {
7697                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
7698                                                   (const U8*)pv2, cur2);
7699                 return retval ? retval < 0 ? -1 : +1 : 0;
7700             }
7701         }
7702     }
7703
7704     if (!cur1) {
7705         cmp = cur2 ? -1 : 0;
7706     } else if (!cur2) {
7707         cmp = 1;
7708     } else {
7709         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7710
7711         if (retval) {
7712             cmp = retval < 0 ? -1 : 1;
7713         } else if (cur1 == cur2) {
7714             cmp = 0;
7715         } else {
7716             cmp = cur1 < cur2 ? -1 : 1;
7717         }
7718     }
7719
7720     SvREFCNT_dec(svrecode);
7721
7722     return cmp;
7723 }
7724
7725 /*
7726 =for apidoc sv_cmp_locale
7727
7728 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7729 'use bytes' aware, handles get magic, and will coerce its args to strings
7730 if necessary.  See also C<sv_cmp>.
7731
7732 =for apidoc sv_cmp_locale_flags
7733
7734 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7735 'use bytes' aware and will coerce its args to strings if necessary.  If the
7736 flags contain SV_GMAGIC, it handles get magic.  See also C<sv_cmp_flags>.
7737
7738 =cut
7739 */
7740
7741 I32
7742 Perl_sv_cmp_locale(pTHX_ SV *const sv1, SV *const sv2)
7743 {
7744     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7745 }
7746
7747 I32
7748 Perl_sv_cmp_locale_flags(pTHX_ SV *const sv1, SV *const sv2,
7749                          const U32 flags)
7750 {
7751     dVAR;
7752 #ifdef USE_LOCALE_COLLATE
7753
7754     char *pv1, *pv2;
7755     STRLEN len1, len2;
7756     I32 retval;
7757
7758     if (PL_collation_standard)
7759         goto raw_compare;
7760
7761     len1 = 0;
7762     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7763     len2 = 0;
7764     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7765
7766     if (!pv1 || !len1) {
7767         if (pv2 && len2)
7768             return -1;
7769         else
7770             goto raw_compare;
7771     }
7772     else {
7773         if (!pv2 || !len2)
7774             return 1;
7775     }
7776
7777     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7778
7779     if (retval)
7780         return retval < 0 ? -1 : 1;
7781
7782     /*
7783      * When the result of collation is equality, that doesn't mean
7784      * that there are no differences -- some locales exclude some
7785      * characters from consideration.  So to avoid false equalities,
7786      * we use the raw string as a tiebreaker.
7787      */
7788
7789   raw_compare:
7790     /*FALLTHROUGH*/
7791
7792 #else
7793     PERL_UNUSED_ARG(flags);
7794 #endif /* USE_LOCALE_COLLATE */
7795
7796     return sv_cmp(sv1, sv2);
7797 }
7798
7799
7800 #ifdef USE_LOCALE_COLLATE
7801
7802 /*
7803 =for apidoc sv_collxfrm
7804
7805 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag.  See
7806 C<sv_collxfrm_flags>.
7807
7808 =for apidoc sv_collxfrm_flags
7809
7810 Add Collate Transform magic to an SV if it doesn't already have it.  If the
7811 flags contain SV_GMAGIC, it handles get-magic.
7812
7813 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7814 scalar data of the variable, but transformed to such a format that a normal
7815 memory comparison can be used to compare the data according to the locale
7816 settings.
7817
7818 =cut
7819 */
7820
7821 char *
7822 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
7823 {
7824     dVAR;
7825     MAGIC *mg;
7826
7827     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
7828
7829     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
7830     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
7831         const char *s;
7832         char *xf;
7833         STRLEN len, xlen;
7834
7835         if (mg)
7836             Safefree(mg->mg_ptr);
7837         s = SvPV_flags_const(sv, len, flags);
7838         if ((xf = mem_collxfrm(s, len, &xlen))) {
7839             if (! mg) {
7840 #ifdef PERL_OLD_COPY_ON_WRITE
7841                 if (SvIsCOW(sv))
7842                     sv_force_normal_flags(sv, 0);
7843 #endif
7844                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7845                                  0, 0);
7846                 assert(mg);
7847             }
7848             mg->mg_ptr = xf;
7849             mg->mg_len = xlen;
7850         }
7851         else {
7852             if (mg) {
7853                 mg->mg_ptr = NULL;
7854                 mg->mg_len = -1;
7855             }
7856         }
7857     }
7858     if (mg && mg->mg_ptr) {
7859         *nxp = mg->mg_len;
7860         return mg->mg_ptr + sizeof(PL_collation_ix);
7861     }
7862     else {
7863         *nxp = 0;
7864         return NULL;
7865     }
7866 }
7867
7868 #endif /* USE_LOCALE_COLLATE */
7869
7870 static char *
7871 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7872 {
7873     SV * const tsv = newSV(0);
7874     ENTER;
7875     SAVEFREESV(tsv);
7876     sv_gets(tsv, fp, 0);
7877     sv_utf8_upgrade_nomg(tsv);
7878     SvCUR_set(sv,append);
7879     sv_catsv(sv,tsv);
7880     LEAVE;
7881     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7882 }
7883
7884 static char *
7885 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7886 {
7887     SSize_t bytesread;
7888     const STRLEN recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
7889       /* Grab the size of the record we're getting */
7890     char *buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
7891     
7892     /* Go yank in */
7893 #ifdef VMS
7894 #include <rms.h>
7895     int fd;
7896     Stat_t st;
7897
7898     /* With a true, record-oriented file on VMS, we need to use read directly
7899      * to ensure that we respect RMS record boundaries.  The user is responsible
7900      * for providing a PL_rs value that corresponds to the FAB$W_MRS (maximum
7901      * record size) field.  N.B. This is likely to produce invalid results on
7902      * varying-width character data when a record ends mid-character.
7903      */
7904     fd = PerlIO_fileno(fp);
7905     if (fd != -1
7906         && PerlLIO_fstat(fd, &st) == 0
7907         && (st.st_fab_rfm == FAB$C_VAR
7908             || st.st_fab_rfm == FAB$C_VFC
7909             || st.st_fab_rfm == FAB$C_FIX)) {
7910
7911         bytesread = PerlLIO_read(fd, buffer, recsize);
7912     }
7913     else /* in-memory file from PerlIO::Scalar
7914           * or not a record-oriented file
7915           */
7916 #endif
7917     {
7918         bytesread = PerlIO_read(fp, buffer, recsize);
7919
7920         /* At this point, the logic in sv_get() means that sv will
7921            be treated as utf-8 if the handle is utf8.
7922         */
7923         if (PerlIO_isutf8(fp) && bytesread > 0) {
7924             char *bend = buffer + bytesread;
7925             char *bufp = buffer;
7926             size_t charcount = 0;
7927             bool charstart = TRUE;
7928             STRLEN skip = 0;
7929
7930             while (charcount < recsize) {
7931                 /* count accumulated characters */
7932                 while (bufp < bend) {
7933                     if (charstart) {
7934                         skip = UTF8SKIP(bufp);
7935                     }
7936                     if (bufp + skip > bend) {
7937                         /* partial at the end */
7938                         charstart = FALSE;
7939                         break;
7940                     }
7941                     else {
7942                         ++charcount;
7943                         bufp += skip;
7944                         charstart = TRUE;
7945                     }
7946                 }
7947
7948                 if (charcount < recsize) {
7949                     STRLEN readsize;
7950                     STRLEN bufp_offset = bufp - buffer;
7951                     SSize_t morebytesread;
7952
7953                     /* originally I read enough to fill any incomplete
7954                        character and the first byte of the next
7955                        character if needed, but if there's many
7956                        multi-byte encoded characters we're going to be
7957                        making a read call for every character beyond
7958                        the original read size.
7959
7960                        So instead, read the rest of the character if
7961                        any, and enough bytes to match at least the
7962                        start bytes for each character we're going to
7963                        read.
7964                     */
7965                     if (charstart)
7966                         readsize = recsize - charcount;
7967                     else 
7968                         readsize = skip - (bend - bufp) + recsize - charcount - 1;
7969                     buffer = SvGROW(sv, append + bytesread + readsize + 1) + append;
7970                     bend = buffer + bytesread;
7971                     morebytesread = PerlIO_read(fp, bend, readsize);
7972                     if (morebytesread <= 0) {
7973                         /* we're done, if we still have incomplete
7974                            characters the check code in sv_gets() will
7975                            warn about them.
7976
7977                            I'd originally considered doing
7978                            PerlIO_ungetc() on all but the lead
7979                            character of the incomplete character, but
7980                            read() doesn't do that, so I don't.
7981                         */
7982                         break;
7983                     }
7984
7985                     /* prepare to scan some more */
7986                     bytesread += morebytesread;
7987                     bend = buffer + bytesread;
7988                     bufp = buffer + bufp_offset;
7989                 }
7990             }
7991         }
7992     }
7993
7994     if (bytesread < 0)
7995         bytesread = 0;
7996     SvCUR_set(sv, bytesread + append);
7997     buffer[bytesread] = '\0';
7998     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7999 }
8000
8001 /*
8002 =for apidoc sv_gets
8003
8004 Get a line from the filehandle and store it into the SV, optionally
8005 appending to the currently-stored string.  If C<append> is not 0, the
8006 line is appended to the SV instead of overwriting it.  C<append> should
8007 be set to the byte offset that the appended string should start at
8008 in the SV (typically, C<SvCUR(sv)> is a suitable choice).
8009
8010 =cut
8011 */
8012
8013 char *
8014 Perl_sv_gets(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
8015 {
8016     dVAR;
8017     const char *rsptr;
8018     STRLEN rslen;
8019     STDCHAR rslast;
8020     STDCHAR *bp;
8021     SSize_t cnt;
8022     int i = 0;
8023     int rspara = 0;
8024
8025     PERL_ARGS_ASSERT_SV_GETS;
8026
8027     if (SvTHINKFIRST(sv))
8028         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
8029     /* XXX. If you make this PVIV, then copy on write can copy scalars read
8030        from <>.
8031        However, perlbench says it's slower, because the existing swipe code
8032        is faster than copy on write.
8033        Swings and roundabouts.  */
8034     SvUPGRADE(sv, SVt_PV);
8035
8036     if (append) {
8037         if (PerlIO_isutf8(fp)) {
8038             if (!SvUTF8(sv)) {
8039                 sv_utf8_upgrade_nomg(sv);
8040                 sv_pos_u2b(sv,&append,0);
8041             }
8042         } else if (SvUTF8(sv)) {
8043             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
8044         }
8045     }
8046
8047     SvPOK_only(sv);
8048     if (!append) {
8049         SvCUR_set(sv,0);
8050     }
8051     if (PerlIO_isutf8(fp))
8052         SvUTF8_on(sv);
8053
8054     if (IN_PERL_COMPILETIME) {
8055         /* we always read code in line mode */
8056         rsptr = "\n";
8057         rslen = 1;
8058     }
8059     else if (RsSNARF(PL_rs)) {
8060         /* If it is a regular disk file use size from stat() as estimate
8061            of amount we are going to read -- may result in mallocing
8062            more memory than we really need if the layers below reduce
8063            the size we read (e.g. CRLF or a gzip layer).
8064          */
8065         Stat_t st;
8066         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
8067             const Off_t offset = PerlIO_tell(fp);
8068             if (offset != (Off_t) -1 && st.st_size + append > offset) {
8069 #ifdef PERL_NEW_COPY_ON_WRITE
8070                 /* Add an extra byte for the sake of copy-on-write's
8071                  * buffer reference count. */
8072                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 2));
8073 #else
8074                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
8075 #endif
8076             }
8077         }
8078         rsptr = NULL;
8079         rslen = 0;
8080     }
8081     else if (RsRECORD(PL_rs)) {
8082         return S_sv_gets_read_record(aTHX_ sv, fp, append);
8083     }
8084     else if (RsPARA(PL_rs)) {
8085         rsptr = "\n\n";
8086         rslen = 2;
8087         rspara = 1;
8088     }
8089     else {
8090         /* Get $/ i.e. PL_rs into same encoding as stream wants */
8091         if (PerlIO_isutf8(fp)) {
8092             rsptr = SvPVutf8(PL_rs, rslen);
8093         }
8094         else {
8095             if (SvUTF8(PL_rs)) {
8096                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
8097                     Perl_croak(aTHX_ "Wide character in $/");
8098                 }
8099             }
8100             rsptr = SvPV_const(PL_rs, rslen);
8101         }
8102     }
8103
8104     rslast = rslen ? rsptr[rslen - 1] : '\0';
8105
8106     if (rspara) {               /* have to do this both before and after */
8107         do {                    /* to make sure file boundaries work right */
8108             if (PerlIO_eof(fp))
8109                 return 0;
8110             i = PerlIO_getc(fp);
8111             if (i != '\n') {
8112                 if (i == -1)
8113                     return 0;
8114                 PerlIO_ungetc(fp,i);
8115                 break;
8116             }
8117         } while (i != EOF);
8118     }
8119
8120     /* See if we know enough about I/O mechanism to cheat it ! */
8121
8122     /* This used to be #ifdef test - it is made run-time test for ease
8123        of abstracting out stdio interface. One call should be cheap
8124        enough here - and may even be a macro allowing compile
8125        time optimization.
8126      */
8127
8128     if (PerlIO_fast_gets(fp)) {
8129
8130     /*
8131      * We're going to steal some values from the stdio struct
8132      * and put EVERYTHING in the innermost loop into registers.
8133      */
8134     STDCHAR *ptr;
8135     STRLEN bpx;
8136     I32 shortbuffered;
8137
8138 #if defined(VMS) && defined(PERLIO_IS_STDIO)
8139     /* An ungetc()d char is handled separately from the regular
8140      * buffer, so we getc() it back out and stuff it in the buffer.
8141      */
8142     i = PerlIO_getc(fp);
8143     if (i == EOF) return 0;
8144     *(--((*fp)->_ptr)) = (unsigned char) i;
8145     (*fp)->_cnt++;
8146 #endif
8147
8148     /* Here is some breathtakingly efficient cheating */
8149
8150     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
8151     /* make sure we have the room */
8152     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
8153         /* Not room for all of it
8154            if we are looking for a separator and room for some
8155          */
8156         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
8157             /* just process what we have room for */
8158             shortbuffered = cnt - SvLEN(sv) + append + 1;
8159             cnt -= shortbuffered;
8160         }
8161         else {
8162             shortbuffered = 0;
8163             /* remember that cnt can be negative */
8164             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
8165         }
8166     }
8167     else
8168         shortbuffered = 0;
8169     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
8170     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
8171     DEBUG_P(PerlIO_printf(Perl_debug_log,
8172         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
8173     DEBUG_P(PerlIO_printf(Perl_debug_log,
8174         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%zd, base=%"
8175          UVuf"\n",
8176                PTR2UV(PerlIO_get_ptr(fp)), PerlIO_get_cnt(fp),
8177                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
8178     for (;;) {
8179       screamer:
8180         if (cnt > 0) {
8181             if (rslen) {
8182                 while (cnt > 0) {                    /* this     |  eat */
8183                     cnt--;
8184                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
8185                         goto thats_all_folks;        /* screams  |  sed :-) */
8186                 }
8187             }
8188             else {
8189                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
8190                 bp += cnt;                           /* screams  |  dust */
8191                 ptr += cnt;                          /* louder   |  sed :-) */
8192                 cnt = 0;
8193                 assert (!shortbuffered);
8194                 goto cannot_be_shortbuffered;
8195             }
8196         }
8197         
8198         if (shortbuffered) {            /* oh well, must extend */
8199             cnt = shortbuffered;
8200             shortbuffered = 0;
8201             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
8202             SvCUR_set(sv, bpx);
8203             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
8204             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
8205             continue;
8206         }
8207
8208     cannot_be_shortbuffered:
8209         DEBUG_P(PerlIO_printf(Perl_debug_log,
8210                              "Screamer: going to getc, ptr=%"UVuf", cnt=%zd\n",
8211                               PTR2UV(ptr),cnt));
8212         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
8213
8214         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8215            "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%zd, base=%"UVuf"\n",
8216             PTR2UV(PerlIO_get_ptr(fp)), PerlIO_get_cnt(fp),
8217             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8218
8219         /* This used to call 'filbuf' in stdio form, but as that behaves like
8220            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
8221            another abstraction.  */
8222         i   = PerlIO_getc(fp);          /* get more characters */
8223
8224         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8225            "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%zd, base=%"UVuf"\n",
8226             PTR2UV(PerlIO_get_ptr(fp)), PerlIO_get_cnt(fp),
8227             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8228
8229         cnt = PerlIO_get_cnt(fp);
8230         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
8231         DEBUG_P(PerlIO_printf(Perl_debug_log,
8232             "Screamer: after getc, ptr=%"UVuf", cnt=%zd\n",
8233              PTR2UV(ptr),cnt));
8234
8235         if (i == EOF)                   /* all done for ever? */
8236             goto thats_really_all_folks;
8237
8238         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
8239         SvCUR_set(sv, bpx);
8240         SvGROW(sv, bpx + cnt + 2);
8241         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
8242
8243         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
8244
8245         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
8246             goto thats_all_folks;
8247     }
8248
8249 thats_all_folks:
8250     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
8251           memNE((char*)bp - rslen, rsptr, rslen))
8252         goto screamer;                          /* go back to the fray */
8253 thats_really_all_folks:
8254     if (shortbuffered)
8255         cnt += shortbuffered;
8256         DEBUG_P(PerlIO_printf(Perl_debug_log,
8257             "Screamer: quitting, ptr=%"UVuf", cnt=%zd\n",PTR2UV(ptr),cnt));
8258     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
8259     DEBUG_P(PerlIO_printf(Perl_debug_log,
8260         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%zd, base=%"UVuf
8261         "\n",
8262         PTR2UV(PerlIO_get_ptr(fp)), PerlIO_get_cnt(fp),
8263         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8264     *bp = '\0';
8265     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
8266     DEBUG_P(PerlIO_printf(Perl_debug_log,
8267         "Screamer: done, len=%ld, string=|%.*s|\n",
8268         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
8269     }
8270    else
8271     {
8272        /*The big, slow, and stupid way. */
8273 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
8274         STDCHAR *buf = NULL;
8275         Newx(buf, 8192, STDCHAR);
8276         assert(buf);
8277 #else
8278         STDCHAR buf[8192];
8279 #endif
8280
8281 screamer2:
8282         if (rslen) {
8283             const STDCHAR * const bpe = buf + sizeof(buf);
8284             bp = buf;
8285             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
8286                 ; /* keep reading */
8287             cnt = bp - buf;
8288         }
8289         else {
8290             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
8291             /* Accommodate broken VAXC compiler, which applies U8 cast to
8292              * both args of ?: operator, causing EOF to change into 255
8293              */
8294             if (cnt > 0)
8295                  i = (U8)buf[cnt - 1];
8296             else
8297                  i = EOF;
8298         }
8299
8300         if (cnt < 0)
8301             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
8302         if (append)
8303             sv_catpvn_nomg(sv, (char *) buf, cnt);
8304         else
8305             sv_setpvn(sv, (char *) buf, cnt);   /* "nomg" is implied */
8306
8307         if (i != EOF &&                 /* joy */
8308             (!rslen ||
8309              SvCUR(sv) < rslen ||
8310              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
8311         {
8312             append = -1;
8313             /*
8314              * If we're reading from a TTY and we get a short read,
8315              * indicating that the user hit his EOF character, we need
8316              * to notice it now, because if we try to read from the TTY
8317              * again, the EOF condition will disappear.
8318              *
8319              * The comparison of cnt to sizeof(buf) is an optimization
8320              * that prevents unnecessary calls to feof().
8321              *
8322              * - jik 9/25/96
8323              */
8324             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
8325                 goto screamer2;
8326         }
8327
8328 #ifdef USE_HEAP_INSTEAD_OF_STACK
8329         Safefree(buf);
8330 #endif
8331     }
8332
8333     if (rspara) {               /* have to do this both before and after */
8334         while (i != EOF) {      /* to make sure file boundaries work right */
8335             i = PerlIO_getc(fp);
8336             if (i != '\n') {
8337                 PerlIO_ungetc(fp,i);
8338                 break;
8339             }
8340         }
8341     }
8342
8343     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8344 }
8345
8346 /*
8347 =for apidoc sv_inc
8348
8349 Auto-increment of the value in the SV, doing string to numeric conversion
8350 if necessary.  Handles 'get' magic and operator overloading.
8351
8352 =cut
8353 */
8354
8355 void
8356 Perl_sv_inc(pTHX_ SV *const sv)
8357 {
8358     if (!sv)
8359         return;
8360     SvGETMAGIC(sv);
8361     sv_inc_nomg(sv);
8362 }
8363
8364 /*
8365 =for apidoc sv_inc_nomg
8366
8367 Auto-increment of the value in the SV, doing string to numeric conversion
8368 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8369
8370 =cut
8371 */
8372
8373 void
8374 Perl_sv_inc_nomg(pTHX_ SV *const sv)
8375 {
8376     dVAR;
8377     char *d;
8378     int flags;
8379
8380     if (!sv)
8381         return;
8382     if (SvTHINKFIRST(sv)) {
8383         if (SvREADONLY(sv)) {
8384                 Perl_croak_no_modify();
8385         }
8386         if (SvROK(sv)) {
8387             IV i;
8388             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
8389                 return;
8390             i = PTR2IV(SvRV(sv));
8391             sv_unref(sv);
8392             sv_setiv(sv, i);
8393         }
8394         else sv_force_normal_flags(sv, 0);
8395     }
8396     flags = SvFLAGS(sv);
8397     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
8398         /* It's (privately or publicly) a float, but not tested as an
8399            integer, so test it to see. */
8400         (void) SvIV(sv);
8401         flags = SvFLAGS(sv);
8402     }
8403     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8404         /* It's publicly an integer, or privately an integer-not-float */
8405 #ifdef PERL_PRESERVE_IVUV
8406       oops_its_int:
8407 #endif
8408         if (SvIsUV(sv)) {
8409             if (SvUVX(sv) == UV_MAX)
8410                 sv_setnv(sv, UV_MAX_P1);
8411             else
8412                 (void)SvIOK_only_UV(sv);
8413                 SvUV_set(sv, SvUVX(sv) + 1);
8414         } else {
8415             if (SvIVX(sv) == IV_MAX)
8416                 sv_setuv(sv, (UV)IV_MAX + 1);
8417             else {
8418                 (void)SvIOK_only(sv);
8419                 SvIV_set(sv, SvIVX(sv) + 1);
8420             }   
8421         }
8422         return;
8423     }
8424     if (flags & SVp_NOK) {
8425         const NV was = SvNVX(sv);
8426         if (NV_OVERFLOWS_INTEGERS_AT &&
8427             was >= NV_OVERFLOWS_INTEGERS_AT) {
8428             /* diag_listed_as: Lost precision when %s %f by 1 */
8429             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8430                            "Lost precision when incrementing %" NVff " by 1",
8431                            was);
8432         }
8433         (void)SvNOK_only(sv);
8434         SvNV_set(sv, was + 1.0);
8435         return;
8436     }
8437
8438     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
8439         if ((flags & SVTYPEMASK) < SVt_PVIV)
8440             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
8441         (void)SvIOK_only(sv);
8442         SvIV_set(sv, 1);
8443         return;
8444     }
8445     d = SvPVX(sv);
8446     while (isALPHA(*d)) d++;
8447     while (isDIGIT(*d)) d++;
8448     if (d < SvEND(sv)) {
8449         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8450 #ifdef PERL_PRESERVE_IVUV
8451         /* Got to punt this as an integer if needs be, but we don't issue
8452            warnings. Probably ought to make the sv_iv_please() that does
8453            the conversion if possible, and silently.  */
8454         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8455             /* Need to try really hard to see if it's an integer.
8456                9.22337203685478e+18 is an integer.
8457                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8458                so $a="9.22337203685478e+18"; $a+0; $a++
8459                needs to be the same as $a="9.22337203685478e+18"; $a++
8460                or we go insane. */
8461         
8462             (void) sv_2iv(sv);
8463             if (SvIOK(sv))
8464                 goto oops_its_int;
8465
8466             /* sv_2iv *should* have made this an NV */
8467             if (flags & SVp_NOK) {
8468                 (void)SvNOK_only(sv);
8469                 SvNV_set(sv, SvNVX(sv) + 1.0);
8470                 return;
8471             }
8472             /* I don't think we can get here. Maybe I should assert this
8473                And if we do get here I suspect that sv_setnv will croak. NWC
8474                Fall through. */
8475 #if defined(USE_LONG_DOUBLE)
8476             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"PERL_PRIgldbl"\n",
8477                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8478 #else
8479             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8480                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8481 #endif
8482         }
8483 #endif /* PERL_PRESERVE_IVUV */
8484         if (!numtype && ckWARN(WARN_NUMERIC))
8485             not_incrementable(sv);
8486         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
8487         return;
8488     }
8489     d--;
8490     while (d >= SvPVX_const(sv)) {
8491         if (isDIGIT(*d)) {
8492             if (++*d <= '9')
8493                 return;
8494             *(d--) = '0';
8495         }
8496         else {
8497 #ifdef EBCDIC
8498             /* MKS: The original code here died if letters weren't consecutive.
8499              * at least it didn't have to worry about non-C locales.  The
8500              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
8501              * arranged in order (although not consecutively) and that only
8502              * [A-Za-z] are accepted by isALPHA in the C locale.
8503              */
8504             if (*d != 'z' && *d != 'Z') {
8505                 do { ++*d; } while (!isALPHA(*d));
8506                 return;
8507             }
8508             *(d--) -= 'z' - 'a';
8509 #else
8510             ++*d;
8511             if (isALPHA(*d))
8512                 return;
8513             *(d--) -= 'z' - 'a' + 1;
8514 #endif
8515         }
8516     }
8517     /* oh,oh, the number grew */
8518     SvGROW(sv, SvCUR(sv) + 2);
8519     SvCUR_set(sv, SvCUR(sv) + 1);
8520     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
8521         *d = d[-1];
8522     if (isDIGIT(d[1]))
8523         *d = '1';
8524     else
8525         *d = d[1];
8526 }
8527
8528 /*
8529 =for apidoc sv_dec
8530
8531 Auto-decrement of the value in the SV, doing string to numeric conversion
8532 if necessary.  Handles 'get' magic and operator overloading.
8533
8534 =cut
8535 */
8536
8537 void
8538 Perl_sv_dec(pTHX_ SV *const sv)
8539 {
8540     dVAR;
8541     if (!sv)
8542         return;
8543     SvGETMAGIC(sv);
8544     sv_dec_nomg(sv);
8545 }
8546
8547 /*
8548 =for apidoc sv_dec_nomg
8549
8550 Auto-decrement of the value in the SV, doing string to numeric conversion
8551 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8552
8553 =cut
8554 */
8555
8556 void
8557 Perl_sv_dec_nomg(pTHX_ SV *const sv)
8558 {
8559     dVAR;
8560     int flags;
8561
8562     if (!sv)
8563         return;
8564     if (SvTHINKFIRST(sv)) {
8565         if (SvREADONLY(sv)) {
8566                 Perl_croak_no_modify();
8567         }
8568         if (SvROK(sv)) {
8569             IV i;
8570             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
8571                 return;
8572             i = PTR2IV(SvRV(sv));
8573             sv_unref(sv);
8574             sv_setiv(sv, i);
8575         }
8576         else sv_force_normal_flags(sv, 0);
8577     }
8578     /* Unlike sv_inc we don't have to worry about string-never-numbers
8579        and keeping them magic. But we mustn't warn on punting */
8580     flags = SvFLAGS(sv);
8581     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8582         /* It's publicly an integer, or privately an integer-not-float */
8583 #ifdef PERL_PRESERVE_IVUV
8584       oops_its_int:
8585 #endif
8586         if (SvIsUV(sv)) {
8587             if (SvUVX(sv) == 0) {
8588                 (void)SvIOK_only(sv);
8589                 SvIV_set(sv, -1);
8590             }
8591             else {
8592                 (void)SvIOK_only_UV(sv);
8593                 SvUV_set(sv, SvUVX(sv) - 1);
8594             }   
8595         } else {
8596             if (SvIVX(sv) == IV_MIN) {
8597                 sv_setnv(sv, (NV)IV_MIN);
8598                 goto oops_its_num;
8599             }
8600             else {
8601                 (void)SvIOK_only(sv);
8602                 SvIV_set(sv, SvIVX(sv) - 1);
8603             }   
8604         }
8605         return;
8606     }
8607     if (flags & SVp_NOK) {
8608     oops_its_num:
8609         {
8610             const NV was = SvNVX(sv);
8611             if (NV_OVERFLOWS_INTEGERS_AT &&
8612                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
8613                 /* diag_listed_as: Lost precision when %s %f by 1 */
8614                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8615                                "Lost precision when decrementing %" NVff " by 1",
8616                                was);
8617             }
8618             (void)SvNOK_only(sv);
8619             SvNV_set(sv, was - 1.0);
8620             return;
8621         }
8622     }
8623     if (!(flags & SVp_POK)) {
8624         if ((flags & SVTYPEMASK) < SVt_PVIV)
8625             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
8626         SvIV_set(sv, -1);
8627         (void)SvIOK_only(sv);
8628         return;
8629     }
8630 #ifdef PERL_PRESERVE_IVUV
8631     {
8632         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8633         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8634             /* Need to try really hard to see if it's an integer.
8635                9.22337203685478e+18 is an integer.
8636                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8637                so $a="9.22337203685478e+18"; $a+0; $a--
8638                needs to be the same as $a="9.22337203685478e+18"; $a--
8639                or we go insane. */
8640         
8641             (void) sv_2iv(sv);
8642             if (SvIOK(sv))
8643                 goto oops_its_int;
8644
8645             /* sv_2iv *should* have made this an NV */
8646             if (flags & SVp_NOK) {
8647                 (void)SvNOK_only(sv);
8648                 SvNV_set(sv, SvNVX(sv) - 1.0);
8649                 return;
8650             }
8651             /* I don't think we can get here. Maybe I should assert this
8652                And if we do get here I suspect that sv_setnv will croak. NWC
8653                Fall through. */
8654 #if defined(USE_LONG_DOUBLE)
8655             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"PERL_PRIgldbl"\n",
8656                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8657 #else
8658             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8659                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8660 #endif
8661         }
8662     }
8663 #endif /* PERL_PRESERVE_IVUV */
8664     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
8665 }
8666
8667 /* this define is used to eliminate a chunk of duplicated but shared logic
8668  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
8669  * used anywhere but here - yves
8670  */
8671 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
8672     STMT_START {      \
8673         EXTEND_MORTAL(1); \
8674         PL_tmps_stack[++PL_tmps_ix] = (AnSv); \
8675     } STMT_END
8676
8677 /*
8678 =for apidoc sv_mortalcopy
8679
8680 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
8681 The new SV is marked as mortal.  It will be destroyed "soon", either by an
8682 explicit call to FREETMPS, or by an implicit call at places such as
8683 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
8684
8685 =cut
8686 */
8687
8688 /* Make a string that will exist for the duration of the expression
8689  * evaluation.  Actually, it may have to last longer than that, but
8690  * hopefully we won't free it until it has been assigned to a
8691  * permanent location. */
8692
8693 SV *
8694 Perl_sv_mortalcopy_flags(pTHX_ SV *const oldstr, U32 flags)
8695 {
8696     dVAR;
8697     SV *sv;
8698
8699     if (flags & SV_GMAGIC)
8700         SvGETMAGIC(oldstr); /* before new_SV, in case it dies */
8701     new_SV(sv);
8702     sv_setsv_flags(sv,oldstr,flags & ~SV_GMAGIC);
8703     PUSH_EXTEND_MORTAL__SV_C(sv);
8704     SvTEMP_on(sv);
8705     return sv;
8706 }
8707
8708 /*
8709 =for apidoc sv_newmortal
8710
8711 Creates a new null SV which is mortal.  The reference count of the SV is
8712 set to 1.  It will be destroyed "soon", either by an explicit call to
8713 FREETMPS, or by an implicit call at places such as statement boundaries.
8714 See also C<sv_mortalcopy> and C<sv_2mortal>.
8715
8716 =cut
8717 */
8718
8719 SV *
8720 Perl_sv_newmortal(pTHX)
8721 {
8722     dVAR;
8723     SV *sv;
8724
8725     new_SV(sv);
8726     SvFLAGS(sv) = SVs_TEMP;
8727     PUSH_EXTEND_MORTAL__SV_C(sv);
8728     return sv;
8729 }
8730
8731
8732 /*
8733 =for apidoc newSVpvn_flags
8734
8735 Creates a new SV and copies a string into it.  The reference count for the
8736 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8737 string.  You are responsible for ensuring that the source string is at least
8738 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8739 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
8740 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
8741 returning.  If C<SVf_UTF8> is set, C<s>
8742 is considered to be in UTF-8 and the
8743 C<SVf_UTF8> flag will be set on the new SV.
8744 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
8745
8746     #define newSVpvn_utf8(s, len, u)                    \
8747         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
8748
8749 =cut
8750 */
8751
8752 SV *
8753 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
8754 {
8755     dVAR;
8756     SV *sv;
8757
8758     /* All the flags we don't support must be zero.
8759        And we're new code so I'm going to assert this from the start.  */
8760     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
8761     new_SV(sv);
8762     sv_setpvn(sv,s,len);
8763
8764     /* This code used to do a sv_2mortal(), however we now unroll the call to
8765      * sv_2mortal() and do what it does ourselves here.  Since we have asserted
8766      * that flags can only have the SVf_UTF8 and/or SVs_TEMP flags set above we
8767      * can use it to enable the sv flags directly (bypassing SvTEMP_on), which
8768      * in turn means we dont need to mask out the SVf_UTF8 flag below, which
8769      * means that we eliminate quite a few steps than it looks - Yves
8770      * (explaining patch by gfx) */
8771
8772     SvFLAGS(sv) |= flags;
8773
8774     if(flags & SVs_TEMP){
8775         PUSH_EXTEND_MORTAL__SV_C(sv);
8776     }
8777
8778     return sv;
8779 }
8780
8781 /*
8782 =for apidoc sv_2mortal
8783
8784 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
8785 by an explicit call to FREETMPS, or by an implicit call at places such as
8786 statement boundaries.  SvTEMP() is turned on which means that the SV's
8787 string buffer can be "stolen" if this SV is copied.  See also C<sv_newmortal>
8788 and C<sv_mortalcopy>.
8789
8790 =cut
8791 */
8792
8793 SV *
8794 Perl_sv_2mortal(pTHX_ SV *const sv)
8795 {
8796     dVAR;
8797     if (!sv)
8798         return NULL;
8799     if (SvIMMORTAL(sv))
8800         return sv;
8801     PUSH_EXTEND_MORTAL__SV_C(sv);
8802     SvTEMP_on(sv);
8803     return sv;
8804 }
8805
8806 /*
8807 =for apidoc newSVpv
8808
8809 Creates a new SV and copies a string into it.  The reference count for the
8810 SV is set to 1.  If C<len> is zero, Perl will compute the length using
8811 strlen().  For efficiency, consider using C<newSVpvn> instead.
8812
8813 =cut
8814 */
8815
8816 SV *
8817 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
8818 {
8819     dVAR;
8820     SV *sv;
8821
8822     new_SV(sv);
8823     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
8824     return sv;
8825 }
8826
8827 /*
8828 =for apidoc newSVpvn
8829
8830 Creates a new SV and copies a buffer into it, which may contain NUL characters
8831 (C<\0>) and other binary data.  The reference count for the SV is set to 1.
8832 Note that if C<len> is zero, Perl will create a zero length (Perl) string.  You
8833 are responsible for ensuring that the source buffer is at least
8834 C<len> bytes long.  If the C<buffer> argument is NULL the new SV will be
8835 undefined.
8836
8837 =cut
8838 */
8839
8840 SV *
8841 Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len)
8842 {
8843     dVAR;
8844     SV *sv;
8845
8846     new_SV(sv);
8847     sv_setpvn(sv,buffer,len);
8848     return sv;
8849 }
8850
8851 /*
8852 =for apidoc newSVhek
8853
8854 Creates a new SV from the hash key structure.  It will generate scalars that
8855 point to the shared string table where possible.  Returns a new (undefined)
8856 SV if the hek is NULL.
8857
8858 =cut
8859 */
8860
8861 SV *
8862 Perl_newSVhek(pTHX_ const HEK *const hek)
8863 {
8864     dVAR;
8865     if (!hek) {
8866         SV *sv;
8867
8868         new_SV(sv);
8869         return sv;
8870     }
8871
8872     if (HEK_LEN(hek) == HEf_SVKEY) {
8873         return newSVsv(*(SV**)HEK_KEY(hek));
8874     } else {
8875         const int flags = HEK_FLAGS(hek);
8876         if (flags & HVhek_WASUTF8) {
8877             /* Trouble :-)
8878                Andreas would like keys he put in as utf8 to come back as utf8
8879             */
8880             STRLEN utf8_len = HEK_LEN(hek);
8881             SV * const sv = newSV_type(SVt_PV);
8882             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
8883             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
8884             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
8885             SvUTF8_on (sv);
8886             return sv;
8887         } else if (flags & HVhek_UNSHARED) {
8888             /* A hash that isn't using shared hash keys has to have
8889                the flag in every key so that we know not to try to call
8890                share_hek_hek on it.  */
8891
8892             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
8893             if (HEK_UTF8(hek))
8894                 SvUTF8_on (sv);
8895             return sv;
8896         }
8897         /* This will be overwhelminly the most common case.  */
8898         {
8899             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
8900                more efficient than sharepvn().  */
8901             SV *sv;
8902
8903             new_SV(sv);
8904             sv_upgrade(sv, SVt_PV);
8905             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
8906             SvCUR_set(sv, HEK_LEN(hek));
8907             SvLEN_set(sv, 0);
8908             SvIsCOW_on(sv);
8909             SvPOK_on(sv);
8910             if (HEK_UTF8(hek))
8911                 SvUTF8_on(sv);
8912             return sv;
8913         }
8914     }
8915 }
8916
8917 /*
8918 =for apidoc newSVpvn_share
8919
8920 Creates a new SV with its SvPVX_const pointing to a shared string in the string
8921 table.  If the string does not already exist in the table, it is
8922 created first.  Turns on the SvIsCOW flag (or READONLY
8923 and FAKE in 5.16 and earlier).  If the C<hash> parameter
8924 is non-zero, that value is used; otherwise the hash is computed.
8925 The string's hash can later be retrieved from the SV
8926 with the C<SvSHARED_HASH()> macro.  The idea here is
8927 that as the string table is used for shared hash keys these strings will have
8928 SvPVX_const == HeKEY and hash lookup will avoid string compare.
8929
8930 =cut
8931 */
8932
8933 SV *
8934 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
8935 {
8936     dVAR;
8937     SV *sv;
8938     bool is_utf8 = FALSE;
8939     const char *const orig_src = src;
8940
8941     if (len < 0) {
8942         STRLEN tmplen = -len;
8943         is_utf8 = TRUE;
8944         /* See the note in hv.c:hv_fetch() --jhi */
8945         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
8946         len = tmplen;
8947     }
8948     if (!hash)
8949         PERL_HASH(hash, src, len);
8950     new_SV(sv);
8951     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
8952        changes here, update it there too.  */
8953     sv_upgrade(sv, SVt_PV);
8954     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
8955     SvCUR_set(sv, len);
8956     SvLEN_set(sv, 0);
8957     SvIsCOW_on(sv);
8958     SvPOK_on(sv);
8959     if (is_utf8)
8960         SvUTF8_on(sv);
8961     if (src != orig_src)
8962         Safefree(src);
8963     return sv;
8964 }
8965
8966 /*
8967 =for apidoc newSVpv_share
8968
8969 Like C<newSVpvn_share>, but takes a nul-terminated string instead of a
8970 string/length pair.
8971
8972 =cut
8973 */
8974
8975 SV *
8976 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
8977 {
8978     return newSVpvn_share(src, strlen(src), hash);
8979 }
8980
8981 #if defined(PERL_IMPLICIT_CONTEXT)
8982
8983 /* pTHX_ magic can't cope with varargs, so this is a no-context
8984  * version of the main function, (which may itself be aliased to us).
8985  * Don't access this version directly.
8986  */
8987
8988 SV *
8989 Perl_newSVpvf_nocontext(const char *const pat, ...)
8990 {
8991     dTHX;
8992     SV *sv;
8993     va_list args;
8994
8995     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
8996
8997     va_start(args, pat);
8998     sv = vnewSVpvf(pat, &args);
8999     va_end(args);
9000     return sv;
9001 }
9002 #endif
9003
9004 /*
9005 =for apidoc newSVpvf
9006
9007 Creates a new SV and initializes it with the string formatted like
9008 C<sprintf>.
9009
9010 =cut
9011 */
9012
9013 SV *
9014 Perl_newSVpvf(pTHX_ const char *const pat, ...)
9015 {
9016     SV *sv;
9017     va_list args;
9018
9019     PERL_ARGS_ASSERT_NEWSVPVF;
9020
9021     va_start(args, pat);
9022     sv = vnewSVpvf(pat, &args);
9023     va_end(args);
9024     return sv;
9025 }
9026
9027 /* backend for newSVpvf() and newSVpvf_nocontext() */
9028
9029 SV *
9030 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
9031 {
9032     dVAR;
9033     SV *sv;
9034
9035     PERL_ARGS_ASSERT_VNEWSVPVF;
9036
9037     new_SV(sv);
9038     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9039     return sv;
9040 }
9041
9042 /*
9043 =for apidoc newSVnv
9044
9045 Creates a new SV and copies a floating point value into it.
9046 The reference count for the SV is set to 1.
9047
9048 =cut
9049 */
9050
9051 SV *
9052 Perl_newSVnv(pTHX_ const NV n)
9053 {
9054     dVAR;
9055     SV *sv;
9056
9057     new_SV(sv);
9058     sv_setnv(sv,n);
9059     return sv;
9060 }
9061
9062 /*
9063 =for apidoc newSViv
9064
9065 Creates a new SV and copies an integer into it.  The reference count for the
9066 SV is set to 1.
9067
9068 =cut
9069 */
9070
9071 SV *
9072 Perl_newSViv(pTHX_ const IV i)
9073 {
9074     dVAR;
9075     SV *sv;
9076
9077     new_SV(sv);
9078     sv_setiv(sv,i);
9079     return sv;
9080 }
9081
9082 /*
9083 =for apidoc newSVuv
9084
9085 Creates a new SV and copies an unsigned integer into it.
9086 The reference count for the SV is set to 1.
9087
9088 =cut
9089 */
9090
9091 SV *
9092 Perl_newSVuv(pTHX_ const UV u)
9093 {
9094     dVAR;
9095     SV *sv;
9096
9097     new_SV(sv);
9098     sv_setuv(sv,u);
9099     return sv;
9100 }
9101
9102 /*
9103 =for apidoc newSV_type
9104
9105 Creates a new SV, of the type specified.  The reference count for the new SV
9106 is set to 1.
9107
9108 =cut
9109 */
9110
9111 SV *
9112 Perl_newSV_type(pTHX_ const svtype type)
9113 {
9114     SV *sv;
9115
9116     new_SV(sv);
9117     sv_upgrade(sv, type);
9118     return sv;
9119 }
9120
9121 /*
9122 =for apidoc newRV_noinc
9123
9124 Creates an RV wrapper for an SV.  The reference count for the original
9125 SV is B<not> incremented.
9126
9127 =cut
9128 */
9129
9130 SV *
9131 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
9132 {
9133     dVAR;
9134     SV *sv = newSV_type(SVt_IV);
9135
9136     PERL_ARGS_ASSERT_NEWRV_NOINC;
9137
9138     SvTEMP_off(tmpRef);
9139     SvRV_set(sv, tmpRef);
9140     SvROK_on(sv);
9141     return sv;
9142 }
9143
9144 /* newRV_inc is the official function name to use now.
9145  * newRV_inc is in fact #defined to newRV in sv.h
9146  */
9147
9148 SV *
9149 Perl_newRV(pTHX_ SV *const sv)
9150 {
9151     dVAR;
9152
9153     PERL_ARGS_ASSERT_NEWRV;
9154
9155     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
9156 }
9157
9158 /*
9159 =for apidoc newSVsv
9160
9161 Creates a new SV which is an exact duplicate of the original SV.
9162 (Uses C<sv_setsv>.)
9163
9164 =cut
9165 */
9166
9167 SV *
9168 Perl_newSVsv(pTHX_ SV *const old)
9169 {
9170     dVAR;
9171     SV *sv;
9172
9173     if (!old)
9174         return NULL;
9175     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
9176         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
9177         return NULL;
9178     }
9179     /* Do this here, otherwise we leak the new SV if this croaks. */
9180     SvGETMAGIC(old);
9181     new_SV(sv);
9182     /* SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
9183        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
9184     sv_setsv_flags(sv, old, SV_NOSTEAL);
9185     return sv;
9186 }
9187
9188 /*
9189 =for apidoc sv_reset
9190
9191 Underlying implementation for the C<reset> Perl function.
9192 Note that the perl-level function is vaguely deprecated.
9193
9194 =cut
9195 */
9196
9197 void
9198 Perl_sv_reset(pTHX_ const char *s, HV *const stash)
9199 {
9200     PERL_ARGS_ASSERT_SV_RESET;
9201
9202     sv_resetpvn(*s ? s : NULL, strlen(s), stash);
9203 }
9204
9205 void
9206 Perl_sv_resetpvn(pTHX_ const char *s, STRLEN len, HV * const stash)
9207 {
9208     dVAR;
9209     char todo[PERL_UCHAR_MAX+1];
9210     const char *send;
9211
9212     if (!stash || SvTYPE(stash) != SVt_PVHV)
9213         return;
9214
9215     if (!s) {           /* reset ?? searches */
9216         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
9217         if (mg) {
9218             const U32 count = mg->mg_len / sizeof(PMOP**);
9219             PMOP **pmp = (PMOP**) mg->mg_ptr;
9220             PMOP *const *const end = pmp + count;
9221
9222             while (pmp < end) {
9223 #ifdef USE_ITHREADS
9224                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
9225 #else
9226                 (*pmp)->op_pmflags &= ~PMf_USED;
9227 #endif
9228                 ++pmp;
9229             }
9230         }
9231         return;
9232     }
9233
9234     /* reset variables */
9235
9236     if (!HvARRAY(stash))
9237         return;
9238
9239     Zero(todo, 256, char);
9240     send = s + len;
9241     while (s < send) {
9242         I32 max;
9243         I32 i = (unsigned char)*s;
9244         if (s[1] == '-') {
9245             s += 2;
9246         }
9247         max = (unsigned char)*s++;
9248         for ( ; i <= max; i++) {
9249             todo[i] = 1;
9250         }
9251         for (i = 0; i <= (I32) HvMAX(stash); i++) {
9252             HE *entry;
9253             for (entry = HvARRAY(stash)[i];
9254                  entry;
9255                  entry = HeNEXT(entry))
9256             {
9257                 GV *gv;
9258                 SV *sv;
9259
9260                 if (!todo[(U8)*HeKEY(entry)])
9261                     continue;
9262                 gv = MUTABLE_GV(HeVAL(entry));
9263                 sv = GvSV(gv);
9264                 if (sv && !SvREADONLY(sv)) {
9265                     SV_CHECK_THINKFIRST_COW_DROP(sv);
9266                     if (!isGV(sv)) SvOK_off(sv);
9267                 }
9268                 if (GvAV(gv)) {
9269                     av_clear(GvAV(gv));
9270                 }
9271                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
9272                     hv_clear(GvHV(gv));
9273                 }
9274             }
9275         }
9276     }
9277 }
9278
9279 /*
9280 =for apidoc sv_2io
9281
9282 Using various gambits, try to get an IO from an SV: the IO slot if its a
9283 GV; or the recursive result if we're an RV; or the IO slot of the symbol
9284 named after the PV if we're a string.
9285
9286 'Get' magic is ignored on the sv passed in, but will be called on
9287 C<SvRV(sv)> if sv is an RV.
9288
9289 =cut
9290 */
9291
9292 IO*
9293 Perl_sv_2io(pTHX_ SV *const sv)
9294 {
9295     IO* io;
9296     GV* gv;
9297
9298     PERL_ARGS_ASSERT_SV_2IO;
9299
9300     switch (SvTYPE(sv)) {
9301     case SVt_PVIO:
9302         io = MUTABLE_IO(sv);
9303         break;
9304     case SVt_PVGV:
9305     case SVt_PVLV:
9306         if (isGV_with_GP(sv)) {
9307             gv = MUTABLE_GV(sv);
9308             io = GvIO(gv);
9309             if (!io)
9310                 Perl_croak(aTHX_ "Bad filehandle: %"HEKf,
9311                                     HEKfARG(GvNAME_HEK(gv)));
9312             break;
9313         }
9314         /* FALL THROUGH */
9315     default:
9316         if (!SvOK(sv))
9317             Perl_croak(aTHX_ PL_no_usym, "filehandle");
9318         if (SvROK(sv)) {
9319             SvGETMAGIC(SvRV(sv));
9320             return sv_2io(SvRV(sv));
9321         }
9322         gv = gv_fetchsv_nomg(sv, 0, SVt_PVIO);
9323         if (gv)
9324             io = GvIO(gv);
9325         else
9326             io = 0;
9327         if (!io) {
9328             SV *newsv = sv;
9329             if (SvGMAGICAL(sv)) {
9330                 newsv = sv_newmortal();
9331                 sv_setsv_nomg(newsv, sv);
9332             }
9333             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(newsv));
9334         }
9335         break;
9336     }
9337     return io;
9338 }
9339
9340 /*
9341 =for apidoc sv_2cv
9342
9343 Using various gambits, try to get a CV from an SV; in addition, try if
9344 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
9345 The flags in C<lref> are passed to gv_fetchsv.
9346
9347 =cut
9348 */
9349
9350 CV *
9351 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
9352 {
9353     dVAR;
9354     GV *gv = NULL;
9355     CV *cv = NULL;
9356
9357     PERL_ARGS_ASSERT_SV_2CV;
9358
9359     if (!sv) {
9360         *st = NULL;
9361         *gvp = NULL;
9362         return NULL;
9363     }
9364     switch (SvTYPE(sv)) {
9365     case SVt_PVCV:
9366         *st = CvSTASH(sv);
9367         *gvp = NULL;
9368         return MUTABLE_CV(sv);
9369     case SVt_PVHV:
9370     case SVt_PVAV:
9371         *st = NULL;
9372         *gvp = NULL;
9373         return NULL;
9374     default:
9375         SvGETMAGIC(sv);
9376         if (SvROK(sv)) {
9377             if (SvAMAGIC(sv))
9378                 sv = amagic_deref_call(sv, to_cv_amg);
9379
9380             sv = SvRV(sv);
9381             if (SvTYPE(sv) == SVt_PVCV) {
9382                 cv = MUTABLE_CV(sv);
9383                 *gvp = NULL;
9384                 *st = CvSTASH(cv);
9385                 return cv;
9386             }
9387             else if(SvGETMAGIC(sv), isGV_with_GP(sv))
9388                 gv = MUTABLE_GV(sv);
9389             else
9390                 Perl_croak(aTHX_ "Not a subroutine reference");
9391         }
9392         else if (isGV_with_GP(sv)) {
9393             gv = MUTABLE_GV(sv);
9394         }
9395         else {
9396             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
9397         }
9398         *gvp = gv;
9399         if (!gv) {
9400             *st = NULL;
9401             return NULL;
9402         }
9403         /* Some flags to gv_fetchsv mean don't really create the GV  */
9404         if (!isGV_with_GP(gv)) {
9405             *st = NULL;
9406             return NULL;
9407         }
9408         *st = GvESTASH(gv);
9409         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
9410             /* XXX this is probably not what they think they're getting.
9411              * It has the same effect as "sub name;", i.e. just a forward
9412              * declaration! */
9413             newSTUB(gv,0);
9414         }
9415         return GvCVu(gv);
9416     }
9417 }
9418
9419 /*
9420 =for apidoc sv_true
9421
9422 Returns true if the SV has a true value by Perl's rules.
9423 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
9424 instead use an in-line version.
9425
9426 =cut
9427 */
9428
9429 I32
9430 Perl_sv_true(pTHX_ SV *const sv)
9431 {
9432     if (!sv)
9433         return 0;
9434     if (SvPOK(sv)) {
9435         const XPV* const tXpv = (XPV*)SvANY(sv);
9436         if (tXpv &&
9437                 (tXpv->xpv_cur > 1 ||
9438                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
9439             return 1;
9440         else
9441             return 0;
9442     }
9443     else {
9444         if (SvIOK(sv))
9445             return SvIVX(sv) != 0;
9446         else {
9447             if (SvNOK(sv))
9448                 return SvNVX(sv) != 0.0;
9449             else
9450                 return sv_2bool(sv);
9451         }
9452     }
9453 }
9454
9455 /*
9456 =for apidoc sv_pvn_force
9457
9458 Get a sensible string out of the SV somehow.
9459 A private implementation of the C<SvPV_force> macro for compilers which
9460 can't cope with complex macro expressions.  Always use the macro instead.
9461
9462 =for apidoc sv_pvn_force_flags
9463
9464 Get a sensible string out of the SV somehow.
9465 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
9466 appropriate, else not.  C<sv_pvn_force> and C<sv_pvn_force_nomg> are
9467 implemented in terms of this function.
9468 You normally want to use the various wrapper macros instead: see
9469 C<SvPV_force> and C<SvPV_force_nomg>
9470
9471 =cut
9472 */
9473
9474 char *
9475 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
9476 {
9477     dVAR;
9478
9479     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
9480
9481     if (flags & SV_GMAGIC) SvGETMAGIC(sv);
9482     if (SvTHINKFIRST(sv) && (!SvROK(sv) || SvREADONLY(sv)))
9483         sv_force_normal_flags(sv, 0);
9484
9485     if (SvPOK(sv)) {
9486         if (lp)
9487             *lp = SvCUR(sv);
9488     }
9489     else {
9490         char *s;
9491         STRLEN len;
9492  
9493         if (SvTYPE(sv) > SVt_PVLV
9494             || isGV_with_GP(sv))
9495             /* diag_listed_as: Can't coerce %s to %s in %s */
9496             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
9497                 OP_DESC(PL_op));
9498         s = sv_2pv_flags(sv, &len, flags &~ SV_GMAGIC);
9499         if (!s) {
9500           s = (char *)"";
9501         }
9502         if (lp)
9503             *lp = len;
9504
9505         if (SvTYPE(sv) < SVt_PV ||
9506             s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
9507             if (SvROK(sv))
9508                 sv_unref(sv);
9509             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
9510             SvGROW(sv, len + 1);
9511             Move(s,SvPVX(sv),len,char);
9512             SvCUR_set(sv, len);
9513             SvPVX(sv)[len] = '\0';
9514         }
9515         if (!SvPOK(sv)) {
9516             SvPOK_on(sv);               /* validate pointer */
9517             SvTAINT(sv);
9518             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9519                                   PTR2UV(sv),SvPVX_const(sv)));
9520         }
9521     }
9522     (void)SvPOK_only_UTF8(sv);
9523     return SvPVX_mutable(sv);
9524 }
9525
9526 /*
9527 =for apidoc sv_pvbyten_force
9528
9529 The backend for the C<SvPVbytex_force> macro.  Always use the macro
9530 instead.
9531
9532 =cut
9533 */
9534
9535 char *
9536 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9537 {
9538     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9539
9540     sv_pvn_force(sv,lp);
9541     sv_utf8_downgrade(sv,0);
9542     *lp = SvCUR(sv);
9543     return SvPVX(sv);
9544 }
9545
9546 /*
9547 =for apidoc sv_pvutf8n_force
9548
9549 The backend for the C<SvPVutf8x_force> macro.  Always use the macro
9550 instead.
9551
9552 =cut
9553 */
9554
9555 char *
9556 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9557 {
9558     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9559
9560     sv_pvn_force(sv,0);
9561     sv_utf8_upgrade_nomg(sv);
9562     *lp = SvCUR(sv);
9563     return SvPVX(sv);
9564 }
9565
9566 /*
9567 =for apidoc sv_reftype
9568
9569 Returns a string describing what the SV is a reference to.
9570
9571 =cut
9572 */
9573
9574 const char *
9575 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9576 {
9577     PERL_ARGS_ASSERT_SV_REFTYPE;
9578     if (ob && SvOBJECT(sv)) {
9579         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
9580     }
9581     else {
9582         /* WARNING - There is code, for instance in mg.c, that assumes that
9583          * the only reason that sv_reftype(sv,0) would return a string starting
9584          * with 'L' or 'S' is that it is a LVALUE or a SCALAR.
9585          * Yes this a dodgy way to do type checking, but it saves practically reimplementing
9586          * this routine inside other subs, and it saves time.
9587          * Do not change this assumption without searching for "dodgy type check" in
9588          * the code.
9589          * - Yves */
9590         switch (SvTYPE(sv)) {
9591         case SVt_NULL:
9592         case SVt_IV:
9593         case SVt_NV:
9594         case SVt_PV:
9595         case SVt_PVIV:
9596         case SVt_PVNV:
9597         case SVt_PVMG:
9598                                 if (SvVOK(sv))
9599                                     return "VSTRING";
9600                                 if (SvROK(sv))
9601                                     return "REF";
9602                                 else
9603                                     return "SCALAR";
9604
9605         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9606                                 /* tied lvalues should appear to be
9607                                  * scalars for backwards compatibility */
9608                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
9609                                     ? "SCALAR" : "LVALUE");
9610         case SVt_PVAV:          return "ARRAY";
9611         case SVt_PVHV:          return "HASH";
9612         case SVt_PVCV:          return "CODE";
9613         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9614                                     ? "GLOB" : "SCALAR");
9615         case SVt_PVFM:          return "FORMAT";
9616         case SVt_PVIO:          return "IO";
9617         case SVt_INVLIST:       return "INVLIST";
9618         case SVt_REGEXP:        return "REGEXP";
9619         default:                return "UNKNOWN";
9620         }
9621     }
9622 }
9623
9624 /*
9625 =for apidoc sv_ref
9626
9627 Returns a SV describing what the SV passed in is a reference to.
9628
9629 =cut
9630 */
9631
9632 SV *
9633 Perl_sv_ref(pTHX_ SV *dst, const SV *const sv, const int ob)
9634 {
9635     PERL_ARGS_ASSERT_SV_REF;
9636
9637     if (!dst)
9638         dst = sv_newmortal();
9639
9640     if (ob && SvOBJECT(sv)) {
9641         HvNAME_get(SvSTASH(sv))
9642                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
9643                     : sv_setpvn(dst, "__ANON__", 8);
9644     }
9645     else {
9646         const char * reftype = sv_reftype(sv, 0);
9647         sv_setpv(dst, reftype);
9648     }
9649     return dst;
9650 }
9651
9652 /*
9653 =for apidoc sv_isobject
9654
9655 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9656 object.  If the SV is not an RV, or if the object is not blessed, then this
9657 will return false.
9658
9659 =cut
9660 */
9661
9662 int
9663 Perl_sv_isobject(pTHX_ SV *sv)
9664 {
9665     if (!sv)
9666         return 0;
9667     SvGETMAGIC(sv);
9668     if (!SvROK(sv))
9669         return 0;
9670     sv = SvRV(sv);
9671     if (!SvOBJECT(sv))
9672         return 0;
9673     return 1;
9674 }
9675
9676 /*
9677 =for apidoc sv_isa
9678
9679 Returns a boolean indicating whether the SV is blessed into the specified
9680 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9681 an inheritance relationship.
9682
9683 =cut
9684 */
9685
9686 int
9687 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
9688 {
9689     const char *hvname;
9690
9691     PERL_ARGS_ASSERT_SV_ISA;
9692
9693     if (!sv)
9694         return 0;
9695     SvGETMAGIC(sv);
9696     if (!SvROK(sv))
9697         return 0;
9698     sv = SvRV(sv);
9699     if (!SvOBJECT(sv))
9700         return 0;
9701     hvname = HvNAME_get(SvSTASH(sv));
9702     if (!hvname)
9703         return 0;
9704
9705     return strEQ(hvname, name);
9706 }
9707
9708 /*
9709 =for apidoc newSVrv
9710
9711 Creates a new SV for the existing RV, C<rv>, to point to.  If C<rv> is not an
9712 RV then it will be upgraded to one.  If C<classname> is non-null then the new
9713 SV will be blessed in the specified package.  The new SV is returned and its
9714 reference count is 1.  The reference count 1 is owned by C<rv>.
9715
9716 =cut
9717 */
9718
9719 SV*
9720 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
9721 {
9722     dVAR;
9723     SV *sv;
9724
9725     PERL_ARGS_ASSERT_NEWSVRV;
9726
9727     new_SV(sv);
9728
9729     SV_CHECK_THINKFIRST_COW_DROP(rv);
9730
9731     if (SvTYPE(rv) >= SVt_PVMG) {
9732         const U32 refcnt = SvREFCNT(rv);
9733         SvREFCNT(rv) = 0;
9734         sv_clear(rv);
9735         SvFLAGS(rv) = 0;
9736         SvREFCNT(rv) = refcnt;
9737
9738         sv_upgrade(rv, SVt_IV);
9739     } else if (SvROK(rv)) {
9740         SvREFCNT_dec(SvRV(rv));
9741     } else {
9742         prepare_SV_for_RV(rv);
9743     }
9744
9745     SvOK_off(rv);
9746     SvRV_set(rv, sv);
9747     SvROK_on(rv);
9748
9749     if (classname) {
9750         HV* const stash = gv_stashpv(classname, GV_ADD);
9751         (void)sv_bless(rv, stash);
9752     }
9753     return sv;
9754 }
9755
9756 SV *
9757 Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible)
9758 {
9759     SV * const lv = newSV_type(SVt_PVLV);
9760     PERL_ARGS_ASSERT_NEWSVAVDEFELEM;
9761     LvTYPE(lv) = 'y';
9762     sv_magic(lv, NULL, PERL_MAGIC_defelem, NULL, 0);
9763     LvTARG(lv) = SvREFCNT_inc_simple_NN(av);
9764     LvSTARGOFF(lv) = ix;
9765     LvTARGLEN(lv) = extendible ? 1 : (STRLEN)UV_MAX;
9766     return lv;
9767 }
9768
9769 /*
9770 =for apidoc sv_setref_pv
9771
9772 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
9773 argument will be upgraded to an RV.  That RV will be modified to point to
9774 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
9775 into the SV.  The C<classname> argument indicates the package for the
9776 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9777 will have a reference count of 1, and the RV will be returned.
9778
9779 Do not use with other Perl types such as HV, AV, SV, CV, because those
9780 objects will become corrupted by the pointer copy process.
9781
9782 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
9783
9784 =cut
9785 */
9786
9787 SV*
9788 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
9789 {
9790     dVAR;
9791
9792     PERL_ARGS_ASSERT_SV_SETREF_PV;
9793
9794     if (!pv) {
9795         sv_setsv(rv, &PL_sv_undef);
9796         SvSETMAGIC(rv);
9797     }
9798     else
9799         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
9800     return rv;
9801 }
9802
9803 /*
9804 =for apidoc sv_setref_iv
9805
9806 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
9807 argument will be upgraded to an RV.  That RV will be modified to point to
9808 the new SV.  The C<classname> argument indicates the package for the
9809 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9810 will have a reference count of 1, and the RV will be returned.
9811
9812 =cut
9813 */
9814
9815 SV*
9816 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
9817 {
9818     PERL_ARGS_ASSERT_SV_SETREF_IV;
9819
9820     sv_setiv(newSVrv(rv,classname), iv);
9821     return rv;
9822 }
9823
9824 /*
9825 =for apidoc sv_setref_uv
9826
9827 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
9828 argument will be upgraded to an RV.  That RV will be modified to point to
9829 the new SV.  The C<classname> argument indicates the package for the
9830 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9831 will have a reference count of 1, and the RV will be returned.
9832
9833 =cut
9834 */
9835
9836 SV*
9837 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
9838 {
9839     PERL_ARGS_ASSERT_SV_SETREF_UV;
9840
9841     sv_setuv(newSVrv(rv,classname), uv);
9842     return rv;
9843 }
9844
9845 /*
9846 =for apidoc sv_setref_nv
9847
9848 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
9849 argument will be upgraded to an RV.  That RV will be modified to point to
9850 the new SV.  The C<classname> argument indicates the package for the
9851 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9852 will have a reference count of 1, and the RV will be returned.
9853
9854 =cut
9855 */
9856
9857 SV*
9858 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
9859 {
9860     PERL_ARGS_ASSERT_SV_SETREF_NV;
9861
9862     sv_setnv(newSVrv(rv,classname), nv);
9863     return rv;
9864 }
9865
9866 /*
9867 =for apidoc sv_setref_pvn
9868
9869 Copies a string into a new SV, optionally blessing the SV.  The length of the
9870 string must be specified with C<n>.  The C<rv> argument will be upgraded to
9871 an RV.  That RV will be modified to point to the new SV.  The C<classname>
9872 argument indicates the package for the blessing.  Set C<classname> to
9873 C<NULL> to avoid the blessing.  The new SV will have a reference count
9874 of 1, and the RV will be returned.
9875
9876 Note that C<sv_setref_pv> copies the pointer while this copies the string.
9877
9878 =cut
9879 */
9880
9881 SV*
9882 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
9883                    const char *const pv, const STRLEN n)
9884 {
9885     PERL_ARGS_ASSERT_SV_SETREF_PVN;
9886
9887     sv_setpvn(newSVrv(rv,classname), pv, n);
9888     return rv;
9889 }
9890
9891 /*
9892 =for apidoc sv_bless
9893
9894 Blesses an SV into a specified package.  The SV must be an RV.  The package
9895 must be designated by its stash (see C<gv_stashpv()>).  The reference count
9896 of the SV is unaffected.
9897
9898 =cut
9899 */
9900
9901 SV*
9902 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
9903 {
9904     dVAR;
9905     SV *tmpRef;
9906     HV *oldstash = NULL;
9907
9908     PERL_ARGS_ASSERT_SV_BLESS;
9909
9910     SvGETMAGIC(sv);
9911     if (!SvROK(sv))
9912         Perl_croak(aTHX_ "Can't bless non-reference value");
9913     tmpRef = SvRV(sv);
9914     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
9915         if (SvREADONLY(tmpRef))
9916             Perl_croak_no_modify();
9917         if (SvOBJECT(tmpRef)) {
9918             oldstash = SvSTASH(tmpRef);
9919         }
9920     }
9921     SvOBJECT_on(tmpRef);
9922     SvUPGRADE(tmpRef, SVt_PVMG);
9923     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
9924     SvREFCNT_dec(oldstash);
9925
9926     if(SvSMAGICAL(tmpRef))
9927         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
9928             mg_set(tmpRef);
9929
9930
9931
9932     return sv;
9933 }
9934
9935 /* Downgrades a PVGV to a PVMG. If it's actually a PVLV, we leave the type
9936  * as it is after unglobbing it.
9937  */
9938
9939 PERL_STATIC_INLINE void
9940 S_sv_unglob(pTHX_ SV *const sv, U32 flags)
9941 {
9942     dVAR;
9943     void *xpvmg;
9944     HV *stash;
9945     SV * const temp = flags & SV_COW_DROP_PV ? NULL : sv_newmortal();
9946
9947     PERL_ARGS_ASSERT_SV_UNGLOB;
9948
9949     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
9950     SvFAKE_off(sv);
9951     if (!(flags & SV_COW_DROP_PV))
9952         gv_efullname3(temp, MUTABLE_GV(sv), "*");
9953
9954     SvREFCNT_inc_simple_void_NN(sv_2mortal(sv));
9955     if (GvGP(sv)) {
9956         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
9957            && HvNAME_get(stash))
9958             mro_method_changed_in(stash);
9959         gp_free(MUTABLE_GV(sv));
9960     }
9961     if (GvSTASH(sv)) {
9962         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
9963         GvSTASH(sv) = NULL;
9964     }
9965     GvMULTI_off(sv);
9966     if (GvNAME_HEK(sv)) {
9967         unshare_hek(GvNAME_HEK(sv));
9968     }
9969     isGV_with_GP_off(sv);
9970
9971     if(SvTYPE(sv) == SVt_PVGV) {
9972         /* need to keep SvANY(sv) in the right arena */
9973         xpvmg = new_XPVMG();
9974         StructCopy(SvANY(sv), xpvmg, XPVMG);
9975         del_XPVGV(SvANY(sv));
9976         SvANY(sv) = xpvmg;
9977
9978         SvFLAGS(sv) &= ~SVTYPEMASK;
9979         SvFLAGS(sv) |= SVt_PVMG;
9980     }
9981
9982     /* Intentionally not calling any local SET magic, as this isn't so much a
9983        set operation as merely an internal storage change.  */
9984     if (flags & SV_COW_DROP_PV) SvOK_off(sv);
9985     else sv_setsv_flags(sv, temp, 0);
9986
9987     if ((const GV *)sv == PL_last_in_gv)
9988         PL_last_in_gv = NULL;
9989     else if ((const GV *)sv == PL_statgv)
9990         PL_statgv = NULL;
9991 }
9992
9993 /*
9994 =for apidoc sv_unref_flags
9995
9996 Unsets the RV status of the SV, and decrements the reference count of
9997 whatever was being referenced by the RV.  This can almost be thought of
9998 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9999 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
10000 (otherwise the decrementing is conditional on the reference count being
10001 different from one or the reference being a readonly SV).
10002 See C<SvROK_off>.
10003
10004 =cut
10005 */
10006
10007 void
10008 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
10009 {
10010     SV* const target = SvRV(ref);
10011
10012     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
10013
10014     if (SvWEAKREF(ref)) {
10015         sv_del_backref(target, ref);
10016         SvWEAKREF_off(ref);
10017         SvRV_set(ref, NULL);
10018         return;
10019     }
10020     SvRV_set(ref, NULL);
10021     SvROK_off(ref);
10022     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
10023        assigned to as BEGIN {$a = \"Foo"} will fail.  */
10024     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
10025         SvREFCNT_dec_NN(target);
10026     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
10027         sv_2mortal(target);     /* Schedule for freeing later */
10028 }
10029
10030 /*
10031 =for apidoc sv_untaint
10032
10033 Untaint an SV.  Use C<SvTAINTED_off> instead.
10034
10035 =cut
10036 */
10037
10038 void
10039 Perl_sv_untaint(pTHX_ SV *const sv)
10040 {
10041     PERL_ARGS_ASSERT_SV_UNTAINT;
10042
10043     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10044         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10045         if (mg)
10046             mg->mg_len &= ~1;
10047     }
10048 }
10049
10050 /*
10051 =for apidoc sv_tainted
10052
10053 Test an SV for taintedness.  Use C<SvTAINTED> instead.
10054
10055 =cut
10056 */
10057
10058 bool
10059 Perl_sv_tainted(pTHX_ SV *const sv)
10060 {
10061     PERL_ARGS_ASSERT_SV_TAINTED;
10062
10063     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10064         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10065         if (mg && (mg->mg_len & 1) )
10066             return TRUE;
10067     }
10068     return FALSE;
10069 }
10070
10071 /*
10072 =for apidoc sv_setpviv
10073
10074 Copies an integer into the given SV, also updating its string value.
10075 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
10076
10077 =cut
10078 */
10079
10080 void
10081 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
10082 {
10083     char buf[TYPE_CHARS(UV)];
10084     char *ebuf;
10085     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
10086
10087     PERL_ARGS_ASSERT_SV_SETPVIV;
10088
10089     sv_setpvn(sv, ptr, ebuf - ptr);
10090 }
10091
10092 /*
10093 =for apidoc sv_setpviv_mg
10094
10095 Like C<sv_setpviv>, but also handles 'set' magic.
10096
10097 =cut
10098 */
10099
10100 void
10101 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
10102 {
10103     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
10104
10105     sv_setpviv(sv, iv);
10106     SvSETMAGIC(sv);
10107 }
10108
10109 #if defined(PERL_IMPLICIT_CONTEXT)
10110
10111 /* pTHX_ magic can't cope with varargs, so this is a no-context
10112  * version of the main function, (which may itself be aliased to us).
10113  * Don't access this version directly.
10114  */
10115
10116 void
10117 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
10118 {
10119     dTHX;
10120     va_list args;
10121
10122     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
10123
10124     va_start(args, pat);
10125     sv_vsetpvf(sv, pat, &args);
10126     va_end(args);
10127 }
10128
10129 /* pTHX_ magic can't cope with varargs, so this is a no-context
10130  * version of the main function, (which may itself be aliased to us).
10131  * Don't access this version directly.
10132  */
10133
10134 void
10135 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10136 {
10137     dTHX;
10138     va_list args;
10139
10140     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
10141
10142     va_start(args, pat);
10143     sv_vsetpvf_mg(sv, pat, &args);
10144     va_end(args);
10145 }
10146 #endif
10147
10148 /*
10149 =for apidoc sv_setpvf
10150
10151 Works like C<sv_catpvf> but copies the text into the SV instead of
10152 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
10153
10154 =cut
10155 */
10156
10157 void
10158 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
10159 {
10160     va_list args;
10161
10162     PERL_ARGS_ASSERT_SV_SETPVF;
10163
10164     va_start(args, pat);
10165     sv_vsetpvf(sv, pat, &args);
10166     va_end(args);
10167 }
10168
10169 /*
10170 =for apidoc sv_vsetpvf
10171
10172 Works like C<sv_vcatpvf> but copies the text into the SV instead of
10173 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
10174
10175 Usually used via its frontend C<sv_setpvf>.
10176
10177 =cut
10178 */
10179
10180 void
10181 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10182 {
10183     PERL_ARGS_ASSERT_SV_VSETPVF;
10184
10185     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10186 }
10187
10188 /*
10189 =for apidoc sv_setpvf_mg
10190
10191 Like C<sv_setpvf>, but also handles 'set' magic.
10192
10193 =cut
10194 */
10195
10196 void
10197 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10198 {
10199     va_list args;
10200
10201     PERL_ARGS_ASSERT_SV_SETPVF_MG;
10202
10203     va_start(args, pat);
10204     sv_vsetpvf_mg(sv, pat, &args);
10205     va_end(args);
10206 }
10207
10208 /*
10209 =for apidoc sv_vsetpvf_mg
10210
10211 Like C<sv_vsetpvf>, but also handles 'set' magic.
10212
10213 Usually used via its frontend C<sv_setpvf_mg>.
10214
10215 =cut
10216 */
10217
10218 void
10219 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10220 {
10221     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
10222
10223     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10224     SvSETMAGIC(sv);
10225 }
10226
10227 #if defined(PERL_IMPLICIT_CONTEXT)
10228
10229 /* pTHX_ magic can't cope with varargs, so this is a no-context
10230  * version of the main function, (which may itself be aliased to us).
10231  * Don't access this version directly.
10232  */
10233
10234 void
10235 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
10236 {
10237     dTHX;
10238     va_list args;
10239
10240     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
10241
10242     va_start(args, pat);
10243     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10244     va_end(args);
10245 }
10246
10247 /* pTHX_ magic can't cope with varargs, so this is a no-context
10248  * version of the main function, (which may itself be aliased to us).
10249  * Don't access this version directly.
10250  */
10251
10252 void
10253 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10254 {
10255     dTHX;
10256     va_list args;
10257
10258     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
10259
10260     va_start(args, pat);
10261     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10262     SvSETMAGIC(sv);
10263     va_end(args);
10264 }
10265 #endif
10266
10267 /*
10268 =for apidoc sv_catpvf
10269
10270 Processes its arguments like C<sprintf> and appends the formatted
10271 output to an SV.  If the appended data contains "wide" characters
10272 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
10273 and characters >255 formatted with %c), the original SV might get
10274 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
10275 C<sv_catpvf_mg>.  If the original SV was UTF-8, the pattern should be
10276 valid UTF-8; if the original SV was bytes, the pattern should be too.
10277
10278 =cut */
10279
10280 void
10281 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
10282 {
10283     va_list args;
10284
10285     PERL_ARGS_ASSERT_SV_CATPVF;
10286
10287     va_start(args, pat);
10288     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10289     va_end(args);
10290 }
10291
10292 /*
10293 =for apidoc sv_vcatpvf
10294
10295 Processes its arguments like C<vsprintf> and appends the formatted output
10296 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
10297
10298 Usually used via its frontend C<sv_catpvf>.
10299
10300 =cut
10301 */
10302
10303 void
10304 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10305 {
10306     PERL_ARGS_ASSERT_SV_VCATPVF;
10307
10308     sv_vcatpvfn_flags(sv, pat, strlen(pat), args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10309 }
10310
10311 /*
10312 =for apidoc sv_catpvf_mg
10313
10314 Like C<sv_catpvf>, but also handles 'set' magic.
10315
10316 =cut
10317 */
10318
10319 void
10320 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10321 {
10322     va_list args;
10323
10324     PERL_ARGS_ASSERT_SV_CATPVF_MG;
10325
10326     va_start(args, pat);
10327     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10328     SvSETMAGIC(sv);
10329     va_end(args);
10330 }
10331
10332 /*
10333 =for apidoc sv_vcatpvf_mg
10334
10335 Like C<sv_vcatpvf>, but also handles 'set' magic.
10336
10337 Usually used via its frontend C<sv_catpvf_mg>.
10338
10339 =cut
10340 */
10341
10342 void
10343 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10344 {
10345     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
10346
10347     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10348     SvSETMAGIC(sv);
10349 }
10350
10351 /*
10352 =for apidoc sv_vsetpvfn
10353
10354 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
10355 appending it.
10356
10357 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
10358
10359 =cut
10360 */
10361
10362 void
10363 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10364                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10365 {
10366     PERL_ARGS_ASSERT_SV_VSETPVFN;
10367
10368     sv_setpvs(sv, "");
10369     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, 0);
10370 }
10371
10372
10373 /*
10374  * Warn of missing argument to sprintf, and then return a defined value
10375  * to avoid inappropriate "use of uninit" warnings [perl #71000].
10376  */
10377 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
10378 STATIC SV*
10379 S_vcatpvfn_missing_argument(pTHX) {
10380     if (ckWARN(WARN_MISSING)) {
10381         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
10382                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
10383     }
10384     return &PL_sv_no;
10385 }
10386
10387
10388 STATIC I32
10389 S_expect_number(pTHX_ char **const pattern)
10390 {
10391     dVAR;
10392     I32 var = 0;
10393
10394     PERL_ARGS_ASSERT_EXPECT_NUMBER;
10395
10396     switch (**pattern) {
10397     case '1': case '2': case '3':
10398     case '4': case '5': case '6':
10399     case '7': case '8': case '9':
10400         var = *(*pattern)++ - '0';
10401         while (isDIGIT(**pattern)) {
10402             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
10403             if (tmp < var)
10404                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
10405             var = tmp;
10406         }
10407     }
10408     return var;
10409 }
10410
10411 STATIC char *
10412 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
10413 {
10414     const int neg = nv < 0;
10415     UV uv;
10416
10417     PERL_ARGS_ASSERT_F0CONVERT;
10418
10419     if (neg)
10420         nv = -nv;
10421     if (nv < UV_MAX) {
10422         char *p = endbuf;
10423         nv += 0.5;
10424         uv = (UV)nv;
10425         if (uv & 1 && uv == nv)
10426             uv--;                       /* Round to even */
10427         do {
10428             const unsigned dig = uv % 10;
10429             *--p = '0' + dig;
10430         } while (uv /= 10);
10431         if (neg)
10432             *--p = '-';
10433         *len = endbuf - p;
10434         return p;
10435     }
10436     return NULL;
10437 }
10438
10439
10440 /*
10441 =for apidoc sv_vcatpvfn
10442
10443 =for apidoc sv_vcatpvfn_flags
10444
10445 Processes its arguments like C<vsprintf> and appends the formatted output
10446 to an SV.  Uses an array of SVs if the C style variable argument list is
10447 missing (NULL).  When running with taint checks enabled, indicates via
10448 C<maybe_tainted> if results are untrustworthy (often due to the use of
10449 locales).
10450
10451 If called as C<sv_vcatpvfn> or flags include C<SV_GMAGIC>, calls get magic.
10452
10453 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
10454
10455 =cut
10456 */
10457
10458 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
10459                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
10460                         vec_utf8 = DO_UTF8(vecsv);
10461
10462 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
10463
10464 void
10465 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10466                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10467 {
10468     PERL_ARGS_ASSERT_SV_VCATPVFN;
10469
10470     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, SV_GMAGIC|SV_SMAGIC);
10471 }
10472
10473 void
10474 Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10475                        va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted,
10476                        const U32 flags)
10477 {
10478     dVAR;
10479     char *p;
10480     char *q;
10481     const char *patend;
10482     STRLEN origlen;
10483     I32 svix = 0;
10484     static const char nullstr[] = "(null)";
10485     SV *argsv = NULL;
10486     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
10487     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
10488     SV *nsv = NULL;
10489     /* Times 4: a decimal digit takes more than 3 binary digits.
10490      * NV_DIG: mantissa takes than many decimal digits.
10491      * Plus 32: Playing safe. */
10492     char ebuf[IV_DIG * 4 + NV_DIG + 32];
10493     /* large enough for "%#.#f" --chip */
10494     /* what about long double NVs? --jhi */
10495
10496     DECLARATION_FOR_STORE_LC_NUMERIC_SET_TO_NEEDED;
10497
10498     PERL_ARGS_ASSERT_SV_VCATPVFN_FLAGS;
10499     PERL_UNUSED_ARG(maybe_tainted);
10500
10501     if (flags & SV_GMAGIC)
10502         SvGETMAGIC(sv);
10503
10504     /* no matter what, this is a string now */
10505     (void)SvPV_force_nomg(sv, origlen);
10506
10507     /* special-case "", "%s", and "%-p" (SVf - see below) */
10508     if (patlen == 0)
10509         return;
10510     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
10511         if (args) {
10512             const char * const s = va_arg(*args, char*);
10513             sv_catpv_nomg(sv, s ? s : nullstr);
10514         }
10515         else if (svix < svmax) {
10516             /* we want get magic on the source but not the target. sv_catsv can't do that, though */
10517             SvGETMAGIC(*svargs);
10518             sv_catsv_nomg(sv, *svargs);
10519         }
10520         else
10521             S_vcatpvfn_missing_argument(aTHX);
10522         return;
10523     }
10524     if (args && patlen == 3 && pat[0] == '%' &&
10525                 pat[1] == '-' && pat[2] == 'p') {
10526         argsv = MUTABLE_SV(va_arg(*args, void*));
10527         sv_catsv_nomg(sv, argsv);
10528         return;
10529     }
10530
10531 #ifndef USE_LONG_DOUBLE
10532     /* special-case "%.<number>[gf]" */
10533     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
10534          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
10535         unsigned digits = 0;
10536         const char *pp;
10537
10538         pp = pat + 2;
10539         while (*pp >= '0' && *pp <= '9')
10540             digits = 10 * digits + (*pp++ - '0');
10541         if (pp - pat == (int)patlen - 1 && svix < svmax) {
10542             const NV nv = SvNV(*svargs);
10543             if (*pp == 'g') {
10544                 /* Add check for digits != 0 because it seems that some
10545                    gconverts are buggy in this case, and we don't yet have
10546                    a Configure test for this.  */
10547                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
10548                      /* 0, point, slack */
10549                     STORE_LC_NUMERIC_SET_TO_NEEDED();
10550                     V_Gconvert(nv, (int)digits, 0, ebuf);
10551                     sv_catpv_nomg(sv, ebuf);
10552                     if (*ebuf)  /* May return an empty string for digits==0 */
10553                         return;
10554                 }
10555             } else if (!digits) {
10556                 STRLEN l;
10557
10558                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
10559                     sv_catpvn_nomg(sv, p, l);
10560                     return;
10561                 }
10562             }
10563         }
10564     }
10565 #endif /* !USE_LONG_DOUBLE */
10566
10567     if (!args && svix < svmax && DO_UTF8(*svargs))
10568         has_utf8 = TRUE;
10569
10570     patend = (char*)pat + patlen;
10571     for (p = (char*)pat; p < patend; p = q) {
10572         bool alt = FALSE;
10573         bool left = FALSE;
10574         bool vectorize = FALSE;
10575         bool vectorarg = FALSE;
10576         bool vec_utf8 = FALSE;
10577         char fill = ' ';
10578         char plus = 0;
10579         char intsize = 0;
10580         STRLEN width = 0;
10581         STRLEN zeros = 0;
10582         bool has_precis = FALSE;
10583         STRLEN precis = 0;
10584         const I32 osvix = svix;
10585         bool is_utf8 = FALSE;  /* is this item utf8?   */
10586 #ifdef HAS_LDBL_SPRINTF_BUG
10587         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10588            with sfio - Allen <allens@cpan.org> */
10589         bool fix_ldbl_sprintf_bug = FALSE;
10590 #endif
10591
10592         char esignbuf[4];
10593         U8 utf8buf[UTF8_MAXBYTES+1];
10594         STRLEN esignlen = 0;
10595
10596         const char *eptr = NULL;
10597         const char *fmtstart;
10598         STRLEN elen = 0;
10599         SV *vecsv = NULL;
10600         const U8 *vecstr = NULL;
10601         STRLEN veclen = 0;
10602         char c = 0;
10603         int i;
10604         unsigned base = 0;
10605         IV iv = 0;
10606         UV uv = 0;
10607         /* we need a long double target in case HAS_LONG_DOUBLE but
10608            not USE_LONG_DOUBLE
10609         */
10610 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
10611         long double nv;
10612 #else
10613         NV nv;
10614 #endif
10615         STRLEN have;
10616         STRLEN need;
10617         STRLEN gap;
10618         const char *dotstr = ".";
10619         STRLEN dotstrlen = 1;
10620         I32 efix = 0; /* explicit format parameter index */
10621         I32 ewix = 0; /* explicit width index */
10622         I32 epix = 0; /* explicit precision index */
10623         I32 evix = 0; /* explicit vector index */
10624         bool asterisk = FALSE;
10625
10626         /* echo everything up to the next format specification */
10627         for (q = p; q < patend && *q != '%'; ++q) ;
10628         if (q > p) {
10629             if (has_utf8 && !pat_utf8)
10630                 sv_catpvn_nomg_utf8_upgrade(sv, p, q - p, nsv);
10631             else
10632                 sv_catpvn_nomg(sv, p, q - p);
10633             p = q;
10634         }
10635         if (q++ >= patend)
10636             break;
10637
10638         fmtstart = q;
10639
10640 /*
10641     We allow format specification elements in this order:
10642         \d+\$              explicit format parameter index
10643         [-+ 0#]+           flags
10644         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
10645         0                  flag (as above): repeated to allow "v02"     
10646         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
10647         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
10648         [hlqLV]            size
10649     [%bcdefginopsuxDFOUX] format (mandatory)
10650 */
10651
10652         if (args) {
10653 /*  
10654         As of perl5.9.3, printf format checking is on by default.
10655         Internally, perl uses %p formats to provide an escape to
10656         some extended formatting.  This block deals with those
10657         extensions: if it does not match, (char*)q is reset and
10658         the normal format processing code is used.
10659
10660         Currently defined extensions are:
10661                 %p              include pointer address (standard)      
10662                 %-p     (SVf)   include an SV (previously %_)
10663                 %-<num>p        include an SV with precision <num>      
10664                 %2p             include a HEK
10665                 %3p             include a HEK with precision of 256
10666                 %4p             char* preceded by utf8 flag and length
10667                 %<num>p         (where num is 1 or > 4) reserved for future
10668                                 extensions
10669
10670         Robin Barker 2005-07-14 (but modified since)
10671
10672                 %1p     (VDf)   removed.  RMB 2007-10-19
10673 */
10674             char* r = q; 
10675             bool sv = FALSE;    
10676             STRLEN n = 0;
10677             if (*q == '-')
10678                 sv = *q++;
10679             else if (strnEQ(q, UTF8f, sizeof(UTF8f)-1)) { /* UTF8f */
10680                 /* The argument has already gone through cBOOL, so the cast
10681                    is safe. */
10682                 is_utf8 = (bool)va_arg(*args, int);
10683                 elen = va_arg(*args, UV);
10684                 eptr = va_arg(*args, char *);
10685                 q += sizeof(UTF8f)-1;
10686                 goto string;
10687             }
10688             n = expect_number(&q);
10689             if (*q++ == 'p') {
10690                 if (sv) {                       /* SVf */
10691                     if (n) {
10692                         precis = n;
10693                         has_precis = TRUE;
10694                     }
10695                     argsv = MUTABLE_SV(va_arg(*args, void*));
10696                     eptr = SvPV_const(argsv, elen);
10697                     if (DO_UTF8(argsv))
10698                         is_utf8 = TRUE;
10699                     goto string;
10700                 }
10701                 else if (n==2 || n==3) {        /* HEKf */
10702                     HEK * const hek = va_arg(*args, HEK *);
10703                     eptr = HEK_KEY(hek);
10704                     elen = HEK_LEN(hek);
10705                     if (HEK_UTF8(hek)) is_utf8 = TRUE;
10706                     if (n==3) precis = 256, has_precis = TRUE;
10707                     goto string;
10708                 }
10709                 else if (n) {
10710                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
10711                                      "internal %%<num>p might conflict with future printf extensions");
10712                 }
10713             }
10714             q = r; 
10715         }
10716
10717         if ( (width = expect_number(&q)) ) {
10718             if (*q == '$') {
10719                 ++q;
10720                 efix = width;
10721             } else {
10722                 goto gotwidth;
10723             }
10724         }
10725
10726         /* FLAGS */
10727
10728         while (*q) {
10729             switch (*q) {
10730             case ' ':
10731             case '+':
10732                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
10733                     q++;
10734                 else
10735                     plus = *q++;
10736                 continue;
10737
10738             case '-':
10739                 left = TRUE;
10740                 q++;
10741                 continue;
10742
10743             case '0':
10744                 fill = *q++;
10745                 continue;
10746
10747             case '#':
10748                 alt = TRUE;
10749                 q++;
10750                 continue;
10751
10752             default:
10753                 break;
10754             }
10755             break;
10756         }
10757
10758       tryasterisk:
10759         if (*q == '*') {
10760             q++;
10761             if ( (ewix = expect_number(&q)) )
10762                 if (*q++ != '$')
10763                     goto unknown;
10764             asterisk = TRUE;
10765         }
10766         if (*q == 'v') {
10767             q++;
10768             if (vectorize)
10769                 goto unknown;
10770             if ((vectorarg = asterisk)) {
10771                 evix = ewix;
10772                 ewix = 0;
10773                 asterisk = FALSE;
10774             }
10775             vectorize = TRUE;
10776             goto tryasterisk;
10777         }
10778
10779         if (!asterisk)
10780         {
10781             if( *q == '0' )
10782                 fill = *q++;
10783             width = expect_number(&q);
10784         }
10785
10786         if (vectorize && vectorarg) {
10787             /* vectorizing, but not with the default "." */
10788             if (args)
10789                 vecsv = va_arg(*args, SV*);
10790             else if (evix) {
10791                 vecsv = (evix > 0 && evix <= svmax)
10792                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
10793             } else {
10794                 vecsv = svix < svmax
10795                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10796             }
10797             dotstr = SvPV_const(vecsv, dotstrlen);
10798             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
10799                bad with tied or overloaded values that return UTF8.  */
10800             if (DO_UTF8(vecsv))
10801                 is_utf8 = TRUE;
10802             else if (has_utf8) {
10803                 vecsv = sv_mortalcopy(vecsv);
10804                 sv_utf8_upgrade(vecsv);
10805                 dotstr = SvPV_const(vecsv, dotstrlen);
10806                 is_utf8 = TRUE;
10807             }               
10808         }
10809
10810         if (asterisk) {
10811             if (args)
10812                 i = va_arg(*args, int);
10813             else
10814                 i = (ewix ? ewix <= svmax : svix < svmax) ?
10815                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10816             left |= (i < 0);
10817             width = (i < 0) ? -i : i;
10818         }
10819       gotwidth:
10820
10821         /* PRECISION */
10822
10823         if (*q == '.') {
10824             q++;
10825             if (*q == '*') {
10826                 q++;
10827                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
10828                     goto unknown;
10829                 /* XXX: todo, support specified precision parameter */
10830                 if (epix)
10831                     goto unknown;
10832                 if (args)
10833                     i = va_arg(*args, int);
10834                 else
10835                     i = (ewix ? ewix <= svmax : svix < svmax)
10836                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10837                 precis = i;
10838                 has_precis = !(i < 0);
10839             }
10840             else {
10841                 precis = 0;
10842                 while (isDIGIT(*q))
10843                     precis = precis * 10 + (*q++ - '0');
10844                 has_precis = TRUE;
10845             }
10846         }
10847
10848         if (vectorize) {
10849             if (args) {
10850                 VECTORIZE_ARGS
10851             }
10852             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
10853                 vecsv = svargs[efix ? efix-1 : svix++];
10854                 vecstr = (U8*)SvPV_const(vecsv,veclen);
10855                 vec_utf8 = DO_UTF8(vecsv);
10856
10857                 /* if this is a version object, we need to convert
10858                  * back into v-string notation and then let the
10859                  * vectorize happen normally
10860                  */
10861                 if (sv_isobject(vecsv) && sv_derived_from(vecsv, "version")) {
10862                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
10863                         Perl_ck_warner_d(aTHX_ packWARN(WARN_PRINTF),
10864                         "vector argument not supported with alpha versions");
10865                         goto vdblank;
10866                     }
10867                     vecsv = sv_newmortal();
10868                     scan_vstring((char *)vecstr, (char *)vecstr + veclen,
10869                                  vecsv);
10870                     vecstr = (U8*)SvPV_const(vecsv, veclen);
10871                     vec_utf8 = DO_UTF8(vecsv);
10872                 }
10873             }
10874             else {
10875               vdblank:
10876                 vecstr = (U8*)"";
10877                 veclen = 0;
10878             }
10879         }
10880
10881         /* SIZE */
10882
10883         switch (*q) {
10884 #ifdef WIN32
10885         case 'I':                       /* Ix, I32x, and I64x */
10886 #  ifdef USE_64_BIT_INT
10887             if (q[1] == '6' && q[2] == '4') {
10888                 q += 3;
10889                 intsize = 'q';
10890                 break;
10891             }
10892 #  endif
10893             if (q[1] == '3' && q[2] == '2') {
10894                 q += 3;
10895                 break;
10896             }
10897 #  ifdef USE_64_BIT_INT
10898             intsize = 'q';
10899 #  endif
10900             q++;
10901             break;
10902 #endif
10903 #if IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)
10904         case 'L':                       /* Ld */
10905             /*FALLTHROUGH*/
10906 #if IVSIZE >= 8
10907         case 'q':                       /* qd */
10908 #endif
10909             intsize = 'q';
10910             q++;
10911             break;
10912 #endif
10913         case 'l':
10914             ++q;
10915 #if IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)
10916             if (*q == 'l') {    /* lld, llf */
10917                 intsize = 'q';
10918                 ++q;
10919             }
10920             else
10921 #endif
10922                 intsize = 'l';
10923             break;
10924         case 'h':
10925             if (*++q == 'h') {  /* hhd, hhu */
10926                 intsize = 'c';
10927                 ++q;
10928             }
10929             else
10930                 intsize = 'h';
10931             break;
10932         case 'V':
10933         case 'z':
10934         case 't':
10935 #ifdef HAS_C99
10936         case 'j':
10937 #endif
10938             intsize = *q++;
10939             break;
10940         }
10941
10942         /* CONVERSION */
10943
10944         if (*q == '%') {
10945             eptr = q++;
10946             elen = 1;
10947             if (vectorize) {
10948                 c = '%';
10949                 goto unknown;
10950             }
10951             goto string;
10952         }
10953
10954         if (!vectorize && !args) {
10955             if (efix) {
10956                 const I32 i = efix-1;
10957                 argsv = (i >= 0 && i < svmax)
10958                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
10959             } else {
10960                 argsv = (svix >= 0 && svix < svmax)
10961                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10962             }
10963         }
10964
10965         switch (c = *q++) {
10966
10967             /* STRINGS */
10968
10969         case 'c':
10970             if (vectorize)
10971                 goto unknown;
10972             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
10973             if ((uv > 255 ||
10974                  (!UVCHR_IS_INVARIANT(uv) && SvUTF8(sv)))
10975                 && !IN_BYTES) {
10976                 eptr = (char*)utf8buf;
10977                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
10978                 is_utf8 = TRUE;
10979             }
10980             else {
10981                 c = (char)uv;
10982                 eptr = &c;
10983                 elen = 1;
10984             }
10985             goto string;
10986
10987         case 's':
10988             if (vectorize)
10989                 goto unknown;
10990             if (args) {
10991                 eptr = va_arg(*args, char*);
10992                 if (eptr)
10993                     elen = strlen(eptr);
10994                 else {
10995                     eptr = (char *)nullstr;
10996                     elen = sizeof nullstr - 1;
10997                 }
10998             }
10999             else {
11000                 eptr = SvPV_const(argsv, elen);
11001                 if (DO_UTF8(argsv)) {
11002                     STRLEN old_precis = precis;
11003                     if (has_precis && precis < elen) {
11004                         STRLEN ulen = sv_or_pv_len_utf8(argsv, eptr, elen);
11005                         STRLEN p = precis > ulen ? ulen : precis;
11006                         precis = sv_or_pv_pos_u2b(argsv, eptr, p, 0);
11007                                                         /* sticks at end */
11008                     }
11009                     if (width) { /* fudge width (can't fudge elen) */
11010                         if (has_precis && precis < elen)
11011                             width += precis - old_precis;
11012                         else
11013                             width +=
11014                                 elen - sv_or_pv_len_utf8(argsv,eptr,elen);
11015                     }
11016                     is_utf8 = TRUE;
11017                 }
11018             }
11019
11020         string:
11021             if (has_precis && precis < elen)
11022                 elen = precis;
11023             break;
11024
11025             /* INTEGERS */
11026
11027         case 'p':
11028             if (alt || vectorize)
11029                 goto unknown;
11030             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
11031             base = 16;
11032             goto integer;
11033
11034         case 'D':
11035 #ifdef IV_IS_QUAD
11036             intsize = 'q';
11037 #else
11038             intsize = 'l';
11039 #endif
11040             /*FALLTHROUGH*/
11041         case 'd':
11042         case 'i':
11043             if (vectorize) {
11044                 STRLEN ulen;
11045                 if (!veclen)
11046                     continue;
11047                 if (vec_utf8)
11048                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11049                                         UTF8_ALLOW_ANYUV);
11050                 else {
11051                     uv = *vecstr;
11052                     ulen = 1;
11053                 }
11054                 vecstr += ulen;
11055                 veclen -= ulen;
11056                 if (plus)
11057                      esignbuf[esignlen++] = plus;
11058             }
11059             else if (args) {
11060                 switch (intsize) {
11061                 case 'c':       iv = (char)va_arg(*args, int); break;
11062                 case 'h':       iv = (short)va_arg(*args, int); break;
11063                 case 'l':       iv = va_arg(*args, long); break;
11064                 case 'V':       iv = va_arg(*args, IV); break;
11065                 case 'z':       iv = va_arg(*args, SSize_t); break;
11066                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
11067                 default:        iv = va_arg(*args, int); break;
11068 #ifdef HAS_C99
11069                 case 'j':       iv = va_arg(*args, intmax_t); break;
11070 #endif
11071                 case 'q':
11072 #if IVSIZE >= 8
11073                                 iv = va_arg(*args, Quad_t); break;
11074 #else
11075                                 goto unknown;
11076 #endif
11077                 }
11078             }
11079             else {
11080                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
11081                 switch (intsize) {
11082                 case 'c':       iv = (char)tiv; break;
11083                 case 'h':       iv = (short)tiv; break;
11084                 case 'l':       iv = (long)tiv; break;
11085                 case 'V':
11086                 default:        iv = tiv; break;
11087                 case 'q':
11088 #if IVSIZE >= 8
11089                                 iv = (Quad_t)tiv; break;
11090 #else
11091                                 goto unknown;
11092 #endif
11093                 }
11094             }
11095             if ( !vectorize )   /* we already set uv above */
11096             {
11097                 if (iv >= 0) {
11098                     uv = iv;
11099                     if (plus)
11100                         esignbuf[esignlen++] = plus;
11101                 }
11102                 else {
11103                     uv = -iv;
11104                     esignbuf[esignlen++] = '-';
11105                 }
11106             }
11107             base = 10;
11108             goto integer;
11109
11110         case 'U':
11111 #ifdef IV_IS_QUAD
11112             intsize = 'q';
11113 #else
11114             intsize = 'l';
11115 #endif
11116             /*FALLTHROUGH*/
11117         case 'u':
11118             base = 10;
11119             goto uns_integer;
11120
11121         case 'B':
11122         case 'b':
11123             base = 2;
11124             goto uns_integer;
11125
11126         case 'O':
11127 #ifdef IV_IS_QUAD
11128             intsize = 'q';
11129 #else
11130             intsize = 'l';
11131 #endif
11132             /*FALLTHROUGH*/
11133         case 'o':
11134             base = 8;
11135             goto uns_integer;
11136
11137         case 'X':
11138         case 'x':
11139             base = 16;
11140
11141         uns_integer:
11142             if (vectorize) {
11143                 STRLEN ulen;
11144         vector:
11145                 if (!veclen)
11146                     continue;
11147                 if (vec_utf8)
11148                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11149                                         UTF8_ALLOW_ANYUV);
11150                 else {
11151                     uv = *vecstr;
11152                     ulen = 1;
11153                 }
11154                 vecstr += ulen;
11155                 veclen -= ulen;
11156             }
11157             else if (args) {
11158                 switch (intsize) {
11159                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
11160                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
11161                 case 'l':  uv = va_arg(*args, unsigned long); break;
11162                 case 'V':  uv = va_arg(*args, UV); break;
11163                 case 'z':  uv = va_arg(*args, Size_t); break;
11164                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
11165 #ifdef HAS_C99
11166                 case 'j':  uv = va_arg(*args, uintmax_t); break;
11167 #endif
11168                 default:   uv = va_arg(*args, unsigned); break;
11169                 case 'q':
11170 #if IVSIZE >= 8
11171                            uv = va_arg(*args, Uquad_t); break;
11172 #else
11173                            goto unknown;
11174 #endif
11175                 }
11176             }
11177             else {
11178                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
11179                 switch (intsize) {
11180                 case 'c':       uv = (unsigned char)tuv; break;
11181                 case 'h':       uv = (unsigned short)tuv; break;
11182                 case 'l':       uv = (unsigned long)tuv; break;
11183                 case 'V':
11184                 default:        uv = tuv; break;
11185                 case 'q':
11186 #if IVSIZE >= 8
11187                                 uv = (Uquad_t)tuv; break;
11188 #else
11189                                 goto unknown;
11190 #endif
11191                 }
11192             }
11193
11194         integer:
11195             {
11196                 char *ptr = ebuf + sizeof ebuf;
11197                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
11198                 zeros = 0;
11199
11200                 switch (base) {
11201                     unsigned dig;
11202                 case 16:
11203                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
11204                     do {
11205                         dig = uv & 15;
11206                         *--ptr = p[dig];
11207                     } while (uv >>= 4);
11208                     if (tempalt) {
11209                         esignbuf[esignlen++] = '0';
11210                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
11211                     }
11212                     break;
11213                 case 8:
11214                     do {
11215                         dig = uv & 7;
11216                         *--ptr = '0' + dig;
11217                     } while (uv >>= 3);
11218                     if (alt && *ptr != '0')
11219                         *--ptr = '0';
11220                     break;
11221                 case 2:
11222                     do {
11223                         dig = uv & 1;
11224                         *--ptr = '0' + dig;
11225                     } while (uv >>= 1);
11226                     if (tempalt) {
11227                         esignbuf[esignlen++] = '0';
11228                         esignbuf[esignlen++] = c;
11229                     }
11230                     break;
11231                 default:                /* it had better be ten or less */
11232                     do {
11233                         dig = uv % base;
11234                         *--ptr = '0' + dig;
11235                     } while (uv /= base);
11236                     break;
11237                 }
11238                 elen = (ebuf + sizeof ebuf) - ptr;
11239                 eptr = ptr;
11240                 if (has_precis) {
11241                     if (precis > elen)
11242                         zeros = precis - elen;
11243                     else if (precis == 0 && elen == 1 && *eptr == '0'
11244                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
11245                         elen = 0;
11246
11247                 /* a precision nullifies the 0 flag. */
11248                     if (fill == '0')
11249                         fill = ' ';
11250                 }
11251             }
11252             break;
11253
11254             /* FLOATING POINT */
11255
11256         case 'F':
11257             c = 'f';            /* maybe %F isn't supported here */
11258             /*FALLTHROUGH*/
11259         case 'e': case 'E':
11260         case 'f':
11261         case 'g': case 'G':
11262             if (vectorize)
11263                 goto unknown;
11264
11265             /* This is evil, but floating point is even more evil */
11266
11267             /* for SV-style calling, we can only get NV
11268                for C-style calling, we assume %f is double;
11269                for simplicity we allow any of %Lf, %llf, %qf for long double
11270             */
11271             switch (intsize) {
11272             case 'V':
11273 #if defined(USE_LONG_DOUBLE)
11274                 intsize = 'q';
11275 #endif
11276                 break;
11277 /* [perl #20339] - we should accept and ignore %lf rather than die */
11278             case 'l':
11279                 /*FALLTHROUGH*/
11280             default:
11281 #if defined(USE_LONG_DOUBLE)
11282                 intsize = args ? 0 : 'q';
11283 #endif
11284                 break;
11285             case 'q':
11286 #if defined(HAS_LONG_DOUBLE)
11287                 break;
11288 #else
11289                 /*FALLTHROUGH*/
11290 #endif
11291             case 'c':
11292             case 'h':
11293             case 'z':
11294             case 't':
11295             case 'j':
11296                 goto unknown;
11297             }
11298
11299             /* now we need (long double) if intsize == 'q', else (double) */
11300             nv = (args) ?
11301 #if LONG_DOUBLESIZE > DOUBLESIZE
11302                 intsize == 'q' ?
11303                     va_arg(*args, long double) :
11304                     va_arg(*args, double)
11305 #else
11306                     va_arg(*args, double)
11307 #endif
11308                 : SvNV(argsv);
11309
11310             need = 0;
11311             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
11312                else. frexp() has some unspecified behaviour for those three */
11313             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
11314                 i = PERL_INT_MIN;
11315                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
11316                    will cast our (long double) to (double) */
11317                 (void)Perl_frexp(nv, &i);
11318                 if (i == PERL_INT_MIN)
11319                     Perl_die(aTHX_ "panic: frexp");
11320                 if (i > 0)
11321                     need = BIT_DIGITS(i);
11322             }
11323             need += has_precis ? precis : 6; /* known default */
11324
11325             if (need < width)
11326                 need = width;
11327
11328 #ifdef HAS_LDBL_SPRINTF_BUG
11329             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
11330                with sfio - Allen <allens@cpan.org> */
11331
11332 #  ifdef DBL_MAX
11333 #    define MY_DBL_MAX DBL_MAX
11334 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
11335 #    if DOUBLESIZE >= 8
11336 #      define MY_DBL_MAX 1.7976931348623157E+308L
11337 #    else
11338 #      define MY_DBL_MAX 3.40282347E+38L
11339 #    endif
11340 #  endif
11341
11342 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
11343 #    define MY_DBL_MAX_BUG 1L
11344 #  else
11345 #    define MY_DBL_MAX_BUG MY_DBL_MAX
11346 #  endif
11347
11348 #  ifdef DBL_MIN
11349 #    define MY_DBL_MIN DBL_MIN
11350 #  else  /* XXX guessing! -Allen */
11351 #    if DOUBLESIZE >= 8
11352 #      define MY_DBL_MIN 2.2250738585072014E-308L
11353 #    else
11354 #      define MY_DBL_MIN 1.17549435E-38L
11355 #    endif
11356 #  endif
11357
11358             if ((intsize == 'q') && (c == 'f') &&
11359                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
11360                 (need < DBL_DIG)) {
11361                 /* it's going to be short enough that
11362                  * long double precision is not needed */
11363
11364                 if ((nv <= 0L) && (nv >= -0L))
11365                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
11366                 else {
11367                     /* would use Perl_fp_class as a double-check but not
11368                      * functional on IRIX - see perl.h comments */
11369
11370                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
11371                         /* It's within the range that a double can represent */
11372 #if defined(DBL_MAX) && !defined(DBL_MIN)
11373                         if ((nv >= ((long double)1/DBL_MAX)) ||
11374                             (nv <= (-(long double)1/DBL_MAX)))
11375 #endif
11376                         fix_ldbl_sprintf_bug = TRUE;
11377                     }
11378                 }
11379                 if (fix_ldbl_sprintf_bug == TRUE) {
11380                     double temp;
11381
11382                     intsize = 0;
11383                     temp = (double)nv;
11384                     nv = (NV)temp;
11385                 }
11386             }
11387
11388 #  undef MY_DBL_MAX
11389 #  undef MY_DBL_MAX_BUG
11390 #  undef MY_DBL_MIN
11391
11392 #endif /* HAS_LDBL_SPRINTF_BUG */
11393
11394             need += 20; /* fudge factor */
11395             if (PL_efloatsize < need) {
11396                 Safefree(PL_efloatbuf);
11397                 PL_efloatsize = need + 20; /* more fudge */
11398                 Newx(PL_efloatbuf, PL_efloatsize, char);
11399                 PL_efloatbuf[0] = '\0';
11400             }
11401
11402             if ( !(width || left || plus || alt) && fill != '0'
11403                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
11404                 /* See earlier comment about buggy Gconvert when digits,
11405                    aka precis is 0  */
11406                 if ( c == 'g' && precis) {
11407                     STORE_LC_NUMERIC_SET_TO_NEEDED();
11408                     V_Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
11409                     /* May return an empty string for digits==0 */
11410                     if (*PL_efloatbuf) {
11411                         elen = strlen(PL_efloatbuf);
11412                         goto float_converted;
11413                     }
11414                 } else if ( c == 'f' && !precis) {
11415                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
11416                         break;
11417                 }
11418             }
11419             {
11420                 char *ptr = ebuf + sizeof ebuf;
11421                 *--ptr = '\0';
11422                 *--ptr = c;
11423                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
11424 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
11425                 if (intsize == 'q') {
11426                     /* Copy the one or more characters in a long double
11427                      * format before the 'base' ([efgEFG]) character to
11428                      * the format string. */
11429                     static char const prifldbl[] = PERL_PRIfldbl;
11430                     char const *p = prifldbl + sizeof(prifldbl) - 3;
11431                     while (p >= prifldbl) { *--ptr = *p--; }
11432                 }
11433 #endif
11434                 if (has_precis) {
11435                     base = precis;
11436                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
11437                     *--ptr = '.';
11438                 }
11439                 if (width) {
11440                     base = width;
11441                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
11442                 }
11443                 if (fill == '0')
11444                     *--ptr = fill;
11445                 if (left)
11446                     *--ptr = '-';
11447                 if (plus)
11448                     *--ptr = plus;
11449                 if (alt)
11450                     *--ptr = '#';
11451                 *--ptr = '%';
11452
11453                 /* No taint.  Otherwise we are in the strange situation
11454                  * where printf() taints but print($float) doesn't.
11455                  * --jhi */
11456
11457                 STORE_LC_NUMERIC_SET_TO_NEEDED();
11458
11459                 /* hopefully the above makes ptr a very constrained format
11460                  * that is safe to use, even though it's not literal */
11461                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
11462 #if defined(HAS_LONG_DOUBLE)
11463                 elen = ((intsize == 'q')
11464                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
11465                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
11466 #else
11467                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
11468 #endif
11469                 GCC_DIAG_RESTORE;
11470             }
11471         float_converted:
11472             eptr = PL_efloatbuf;
11473
11474 #ifdef USE_LOCALE_NUMERIC
11475             /* If the decimal point character in the string is UTF-8, make the
11476              * output utf8 */
11477             if (PL_numeric_radix_sv && SvUTF8(PL_numeric_radix_sv)
11478                 && instr(eptr, SvPVX_const(PL_numeric_radix_sv)))
11479             {
11480                 is_utf8 = TRUE;
11481             }
11482 #endif
11483
11484             break;
11485
11486             /* SPECIAL */
11487
11488         case 'n':
11489             if (vectorize)
11490                 goto unknown;
11491             i = SvCUR(sv) - origlen;
11492             if (args) {
11493                 switch (intsize) {
11494                 case 'c':       *(va_arg(*args, char*)) = i; break;
11495                 case 'h':       *(va_arg(*args, short*)) = i; break;
11496                 default:        *(va_arg(*args, int*)) = i; break;
11497                 case 'l':       *(va_arg(*args, long*)) = i; break;
11498                 case 'V':       *(va_arg(*args, IV*)) = i; break;
11499                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
11500                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
11501 #ifdef HAS_C99
11502                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
11503 #endif
11504                 case 'q':
11505 #if IVSIZE >= 8
11506                                 *(va_arg(*args, Quad_t*)) = i; break;
11507 #else
11508                                 goto unknown;
11509 #endif
11510                 }
11511             }
11512             else
11513                 sv_setuv_mg(argsv, has_utf8 ? (UV)sv_len_utf8(sv) : (UV)i);
11514             continue;   /* not "break" */
11515
11516             /* UNKNOWN */
11517
11518         default:
11519       unknown:
11520             if (!args
11521                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
11522                 && ckWARN(WARN_PRINTF))
11523             {
11524                 SV * const msg = sv_newmortal();
11525                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
11526                           (PL_op->op_type == OP_PRTF) ? "" : "s");
11527                 if (fmtstart < patend) {
11528                     const char * const fmtend = q < patend ? q : patend;
11529                     const char * f;
11530                     sv_catpvs(msg, "\"%");
11531                     for (f = fmtstart; f < fmtend; f++) {
11532                         if (isPRINT(*f)) {
11533                             sv_catpvn_nomg(msg, f, 1);
11534                         } else {
11535                             Perl_sv_catpvf(aTHX_ msg,
11536                                            "\\%03"UVof, (UV)*f & 0xFF);
11537                         }
11538                     }
11539                     sv_catpvs(msg, "\"");
11540                 } else {
11541                     sv_catpvs(msg, "end of string");
11542                 }
11543                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
11544             }
11545
11546             /* output mangled stuff ... */
11547             if (c == '\0')
11548                 --q;
11549             eptr = p;
11550             elen = q - p;
11551
11552             /* ... right here, because formatting flags should not apply */
11553             SvGROW(sv, SvCUR(sv) + elen + 1);
11554             p = SvEND(sv);
11555             Copy(eptr, p, elen, char);
11556             p += elen;
11557             *p = '\0';
11558             SvCUR_set(sv, p - SvPVX_const(sv));
11559             svix = osvix;
11560             continue;   /* not "break" */
11561         }
11562
11563         if (is_utf8 != has_utf8) {
11564             if (is_utf8) {
11565                 if (SvCUR(sv))
11566                     sv_utf8_upgrade(sv);
11567             }
11568             else {
11569                 const STRLEN old_elen = elen;
11570                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
11571                 sv_utf8_upgrade(nsv);
11572                 eptr = SvPVX_const(nsv);
11573                 elen = SvCUR(nsv);
11574
11575                 if (width) { /* fudge width (can't fudge elen) */
11576                     width += elen - old_elen;
11577                 }
11578                 is_utf8 = TRUE;
11579             }
11580         }
11581
11582         have = esignlen + zeros + elen;
11583         if (have < zeros)
11584             croak_memory_wrap();
11585
11586         need = (have > width ? have : width);
11587         gap = need - have;
11588
11589         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
11590             croak_memory_wrap();
11591         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
11592         p = SvEND(sv);
11593         if (esignlen && fill == '0') {
11594             int i;
11595             for (i = 0; i < (int)esignlen; i++)
11596                 *p++ = esignbuf[i];
11597         }
11598         if (gap && !left) {
11599             memset(p, fill, gap);
11600             p += gap;
11601         }
11602         if (esignlen && fill != '0') {
11603             int i;
11604             for (i = 0; i < (int)esignlen; i++)
11605                 *p++ = esignbuf[i];
11606         }
11607         if (zeros) {
11608             int i;
11609             for (i = zeros; i; i--)
11610                 *p++ = '0';
11611         }
11612         if (elen) {
11613             Copy(eptr, p, elen, char);
11614             p += elen;
11615         }
11616         if (gap && left) {
11617             memset(p, ' ', gap);
11618             p += gap;
11619         }
11620         if (vectorize) {
11621             if (veclen) {
11622                 Copy(dotstr, p, dotstrlen, char);
11623                 p += dotstrlen;
11624             }
11625             else
11626                 vectorize = FALSE;              /* done iterating over vecstr */
11627         }
11628         if (is_utf8)
11629             has_utf8 = TRUE;
11630         if (has_utf8)
11631             SvUTF8_on(sv);
11632         *p = '\0';
11633         SvCUR_set(sv, p - SvPVX_const(sv));
11634         if (vectorize) {
11635             esignlen = 0;
11636             goto vector;
11637         }
11638     }
11639     SvTAINT(sv);
11640
11641     RESTORE_LC_NUMERIC();   /* Done outside loop, so don't have to save/restore
11642                                each iteration. */
11643 }
11644
11645 /* =========================================================================
11646
11647 =head1 Cloning an interpreter
11648
11649 All the macros and functions in this section are for the private use of
11650 the main function, perl_clone().
11651
11652 The foo_dup() functions make an exact copy of an existing foo thingy.
11653 During the course of a cloning, a hash table is used to map old addresses
11654 to new addresses.  The table is created and manipulated with the
11655 ptr_table_* functions.
11656
11657 =cut
11658
11659  * =========================================================================*/
11660
11661
11662 #if defined(USE_ITHREADS)
11663
11664 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
11665 #ifndef GpREFCNT_inc
11666 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
11667 #endif
11668
11669
11670 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
11671    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
11672    If this changes, please unmerge ss_dup.
11673    Likewise, sv_dup_inc_multiple() relies on this fact.  */
11674 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
11675 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
11676 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
11677 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
11678 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
11679 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
11680 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
11681 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
11682 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
11683 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
11684 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
11685 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
11686 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
11687
11688 /* clone a parser */
11689
11690 yy_parser *
11691 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
11692 {
11693     yy_parser *parser;
11694
11695     PERL_ARGS_ASSERT_PARSER_DUP;
11696
11697     if (!proto)
11698         return NULL;
11699
11700     /* look for it in the table first */
11701     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
11702     if (parser)
11703         return parser;
11704
11705     /* create anew and remember what it is */
11706     Newxz(parser, 1, yy_parser);
11707     ptr_table_store(PL_ptr_table, proto, parser);
11708
11709     /* XXX these not yet duped */
11710     parser->old_parser = NULL;
11711     parser->stack = NULL;
11712     parser->ps = NULL;
11713     parser->stack_size = 0;
11714     /* XXX parser->stack->state = 0; */
11715
11716     /* XXX eventually, just Copy() most of the parser struct ? */
11717
11718     parser->lex_brackets = proto->lex_brackets;
11719     parser->lex_casemods = proto->lex_casemods;
11720     parser->lex_brackstack = savepvn(proto->lex_brackstack,
11721                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
11722     parser->lex_casestack = savepvn(proto->lex_casestack,
11723                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
11724     parser->lex_defer   = proto->lex_defer;
11725     parser->lex_dojoin  = proto->lex_dojoin;
11726     parser->lex_expect  = proto->lex_expect;
11727     parser->lex_formbrack = proto->lex_formbrack;
11728     parser->lex_inpat   = proto->lex_inpat;
11729     parser->lex_inwhat  = proto->lex_inwhat;
11730     parser->lex_op      = proto->lex_op;
11731     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
11732     parser->lex_starts  = proto->lex_starts;
11733     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
11734     parser->multi_close = proto->multi_close;
11735     parser->multi_open  = proto->multi_open;
11736     parser->multi_start = proto->multi_start;
11737     parser->multi_end   = proto->multi_end;
11738     parser->preambled   = proto->preambled;
11739     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
11740     parser->linestr     = sv_dup_inc(proto->linestr, param);
11741     parser->expect      = proto->expect;
11742     parser->copline     = proto->copline;
11743     parser->last_lop_op = proto->last_lop_op;
11744     parser->lex_state   = proto->lex_state;
11745     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
11746     /* rsfp_filters entries have fake IoDIRP() */
11747     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
11748     parser->in_my       = proto->in_my;
11749     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
11750     parser->error_count = proto->error_count;
11751
11752
11753     parser->linestr     = sv_dup_inc(proto->linestr, param);
11754
11755     {
11756         char * const ols = SvPVX(proto->linestr);
11757         char * const ls  = SvPVX(parser->linestr);
11758
11759         parser->bufptr      = ls + (proto->bufptr >= ols ?
11760                                     proto->bufptr -  ols : 0);
11761         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
11762                                     proto->oldbufptr -  ols : 0);
11763         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
11764                                     proto->oldoldbufptr -  ols : 0);
11765         parser->linestart   = ls + (proto->linestart >= ols ?
11766                                     proto->linestart -  ols : 0);
11767         parser->last_uni    = ls + (proto->last_uni >= ols ?
11768                                     proto->last_uni -  ols : 0);
11769         parser->last_lop    = ls + (proto->last_lop >= ols ?
11770                                     proto->last_lop -  ols : 0);
11771
11772         parser->bufend      = ls + SvCUR(parser->linestr);
11773     }
11774
11775     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
11776
11777
11778 #ifdef PERL_MAD
11779     parser->endwhite    = proto->endwhite;
11780     parser->faketokens  = proto->faketokens;
11781     parser->lasttoke    = proto->lasttoke;
11782     parser->nextwhite   = proto->nextwhite;
11783     parser->realtokenstart = proto->realtokenstart;
11784     parser->skipwhite   = proto->skipwhite;
11785     parser->thisclose   = proto->thisclose;
11786     parser->thismad     = proto->thismad;
11787     parser->thisopen    = proto->thisopen;
11788     parser->thisstuff   = proto->thisstuff;
11789     parser->thistoken   = proto->thistoken;
11790     parser->thiswhite   = proto->thiswhite;
11791
11792     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
11793     parser->curforce    = proto->curforce;
11794 #else
11795     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
11796     Copy(proto->nexttype, parser->nexttype, 5,  I32);
11797     parser->nexttoke    = proto->nexttoke;
11798 #endif
11799
11800     /* XXX should clone saved_curcop here, but we aren't passed
11801      * proto_perl; so do it in perl_clone_using instead */
11802
11803     return parser;
11804 }
11805
11806
11807 /* duplicate a file handle */
11808
11809 PerlIO *
11810 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
11811 {
11812     PerlIO *ret;
11813
11814     PERL_ARGS_ASSERT_FP_DUP;
11815     PERL_UNUSED_ARG(type);
11816
11817     if (!fp)
11818         return (PerlIO*)NULL;
11819
11820     /* look for it in the table first */
11821     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
11822     if (ret)
11823         return ret;
11824
11825     /* create anew and remember what it is */
11826     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
11827     ptr_table_store(PL_ptr_table, fp, ret);
11828     return ret;
11829 }
11830
11831 /* duplicate a directory handle */
11832
11833 DIR *
11834 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
11835 {
11836     DIR *ret;
11837
11838 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
11839     int rc = 0;
11840     DIR *pwd;
11841     const Direntry_t *dirent;
11842     char smallbuf[256];
11843     char *name = NULL;
11844     STRLEN len = 0;
11845     long pos;
11846 #endif
11847
11848     PERL_UNUSED_CONTEXT;
11849     PERL_ARGS_ASSERT_DIRP_DUP;
11850
11851     if (!dp)
11852         return (DIR*)NULL;
11853
11854     /* look for it in the table first */
11855     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
11856     if (ret)
11857         return ret;
11858
11859 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
11860
11861     PERL_UNUSED_ARG(param);
11862
11863     /* create anew */
11864
11865     /* open the current directory (so we can switch back) */
11866     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
11867
11868     /* chdir to our dir handle and open the present working directory */
11869     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
11870         PerlDir_close(pwd);
11871         return (DIR *)NULL;
11872     }
11873     /* Now we should have two dir handles pointing to the same dir. */
11874
11875     /* Be nice to the calling code and chdir back to where we were. */
11876     rc = fchdir(my_dirfd(pwd));
11877     /* XXX If this fails, then what? */
11878     PERL_UNUSED_VAR(rc);
11879
11880     /* We have no need of the pwd handle any more. */
11881     PerlDir_close(pwd);
11882
11883 #ifdef DIRNAMLEN
11884 # define d_namlen(d) (d)->d_namlen
11885 #else
11886 # define d_namlen(d) strlen((d)->d_name)
11887 #endif
11888     /* Iterate once through dp, to get the file name at the current posi-
11889        tion. Then step back. */
11890     pos = PerlDir_tell(dp);
11891     if ((dirent = PerlDir_read(dp))) {
11892         len = d_namlen(dirent);
11893         if (len <= sizeof smallbuf) name = smallbuf;
11894         else Newx(name, len, char);
11895         Move(dirent->d_name, name, len, char);
11896     }
11897     PerlDir_seek(dp, pos);
11898
11899     /* Iterate through the new dir handle, till we find a file with the
11900        right name. */
11901     if (!dirent) /* just before the end */
11902         for(;;) {
11903             pos = PerlDir_tell(ret);
11904             if (PerlDir_read(ret)) continue; /* not there yet */
11905             PerlDir_seek(ret, pos); /* step back */
11906             break;
11907         }
11908     else {
11909         const long pos0 = PerlDir_tell(ret);
11910         for(;;) {
11911             pos = PerlDir_tell(ret);
11912             if ((dirent = PerlDir_read(ret))) {
11913                 if (len == d_namlen(dirent)
11914                  && memEQ(name, dirent->d_name, len)) {
11915                     /* found it */
11916                     PerlDir_seek(ret, pos); /* step back */
11917                     break;
11918                 }
11919                 /* else we are not there yet; keep iterating */
11920             }
11921             else { /* This is not meant to happen. The best we can do is
11922                       reset the iterator to the beginning. */
11923                 PerlDir_seek(ret, pos0);
11924                 break;
11925             }
11926         }
11927     }
11928 #undef d_namlen
11929
11930     if (name && name != smallbuf)
11931         Safefree(name);
11932 #endif
11933
11934 #ifdef WIN32
11935     ret = win32_dirp_dup(dp, param);
11936 #endif
11937
11938     /* pop it in the pointer table */
11939     if (ret)
11940         ptr_table_store(PL_ptr_table, dp, ret);
11941
11942     return ret;
11943 }
11944
11945 /* duplicate a typeglob */
11946
11947 GP *
11948 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
11949 {
11950     GP *ret;
11951
11952     PERL_ARGS_ASSERT_GP_DUP;
11953
11954     if (!gp)
11955         return (GP*)NULL;
11956     /* look for it in the table first */
11957     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
11958     if (ret)
11959         return ret;
11960
11961     /* create anew and remember what it is */
11962     Newxz(ret, 1, GP);
11963     ptr_table_store(PL_ptr_table, gp, ret);
11964
11965     /* clone */
11966     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
11967        on Newxz() to do this for us.  */
11968     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
11969     ret->gp_io          = io_dup_inc(gp->gp_io, param);
11970     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
11971     ret->gp_av          = av_dup_inc(gp->gp_av, param);
11972     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
11973     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
11974     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
11975     ret->gp_cvgen       = gp->gp_cvgen;
11976     ret->gp_line        = gp->gp_line;
11977     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
11978     return ret;
11979 }
11980
11981 /* duplicate a chain of magic */
11982
11983 MAGIC *
11984 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
11985 {
11986     MAGIC *mgret = NULL;
11987     MAGIC **mgprev_p = &mgret;
11988
11989     PERL_ARGS_ASSERT_MG_DUP;
11990
11991     for (; mg; mg = mg->mg_moremagic) {
11992         MAGIC *nmg;
11993
11994         if ((param->flags & CLONEf_JOIN_IN)
11995                 && mg->mg_type == PERL_MAGIC_backref)
11996             /* when joining, we let the individual SVs add themselves to
11997              * backref as needed. */
11998             continue;
11999
12000         Newx(nmg, 1, MAGIC);
12001         *mgprev_p = nmg;
12002         mgprev_p = &(nmg->mg_moremagic);
12003
12004         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
12005            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
12006            from the original commit adding Perl_mg_dup() - revision 4538.
12007            Similarly there is the annotation "XXX random ptr?" next to the
12008            assignment to nmg->mg_ptr.  */
12009         *nmg = *mg;
12010
12011         /* FIXME for plugins
12012         if (nmg->mg_type == PERL_MAGIC_qr) {
12013             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
12014         }
12015         else
12016         */
12017         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
12018                           ? nmg->mg_type == PERL_MAGIC_backref
12019                                 /* The backref AV has its reference
12020                                  * count deliberately bumped by 1 */
12021                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
12022                                                     nmg->mg_obj, param))
12023                                 : sv_dup_inc(nmg->mg_obj, param)
12024                           : sv_dup(nmg->mg_obj, param);
12025
12026         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
12027             if (nmg->mg_len > 0) {
12028                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
12029                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
12030                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
12031                 {
12032                     AMT * const namtp = (AMT*)nmg->mg_ptr;
12033                     sv_dup_inc_multiple((SV**)(namtp->table),
12034                                         (SV**)(namtp->table), NofAMmeth, param);
12035                 }
12036             }
12037             else if (nmg->mg_len == HEf_SVKEY)
12038                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
12039         }
12040         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
12041             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
12042         }
12043     }
12044     return mgret;
12045 }
12046
12047 #endif /* USE_ITHREADS */
12048
12049 struct ptr_tbl_arena {
12050     struct ptr_tbl_arena *next;
12051     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
12052 };
12053
12054 /* create a new pointer-mapping table */
12055
12056 PTR_TBL_t *
12057 Perl_ptr_table_new(pTHX)
12058 {
12059     PTR_TBL_t *tbl;
12060     PERL_UNUSED_CONTEXT;
12061
12062     Newx(tbl, 1, PTR_TBL_t);
12063     tbl->tbl_max        = 511;
12064     tbl->tbl_items      = 0;
12065     tbl->tbl_arena      = NULL;
12066     tbl->tbl_arena_next = NULL;
12067     tbl->tbl_arena_end  = NULL;
12068     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
12069     return tbl;
12070 }
12071
12072 #define PTR_TABLE_HASH(ptr) \
12073   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
12074
12075 /* map an existing pointer using a table */
12076
12077 STATIC PTR_TBL_ENT_t *
12078 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
12079 {
12080     PTR_TBL_ENT_t *tblent;
12081     const UV hash = PTR_TABLE_HASH(sv);
12082
12083     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
12084
12085     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
12086     for (; tblent; tblent = tblent->next) {
12087         if (tblent->oldval == sv)
12088             return tblent;
12089     }
12090     return NULL;
12091 }
12092
12093 void *
12094 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
12095 {
12096     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
12097
12098     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
12099     PERL_UNUSED_CONTEXT;
12100
12101     return tblent ? tblent->newval : NULL;
12102 }
12103
12104 /* add a new entry to a pointer-mapping table 'tbl'.  In hash terms, 'oldsv' is
12105  * the key; 'newsv' is the value.  The names "old" and "new" are specific to
12106  * the core's typical use of ptr_tables in thread cloning. */
12107
12108 void
12109 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
12110 {
12111     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
12112
12113     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
12114     PERL_UNUSED_CONTEXT;
12115
12116     if (tblent) {
12117         tblent->newval = newsv;
12118     } else {
12119         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
12120
12121         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
12122             struct ptr_tbl_arena *new_arena;
12123
12124             Newx(new_arena, 1, struct ptr_tbl_arena);
12125             new_arena->next = tbl->tbl_arena;
12126             tbl->tbl_arena = new_arena;
12127             tbl->tbl_arena_next = new_arena->array;
12128             tbl->tbl_arena_end = new_arena->array
12129                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
12130         }
12131
12132         tblent = tbl->tbl_arena_next++;
12133
12134         tblent->oldval = oldsv;
12135         tblent->newval = newsv;
12136         tblent->next = tbl->tbl_ary[entry];
12137         tbl->tbl_ary[entry] = tblent;
12138         tbl->tbl_items++;
12139         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
12140             ptr_table_split(tbl);
12141     }
12142 }
12143
12144 /* double the hash bucket size of an existing ptr table */
12145
12146 void
12147 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
12148 {
12149     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
12150     const UV oldsize = tbl->tbl_max + 1;
12151     UV newsize = oldsize * 2;
12152     UV i;
12153
12154     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
12155     PERL_UNUSED_CONTEXT;
12156
12157     Renew(ary, newsize, PTR_TBL_ENT_t*);
12158     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
12159     tbl->tbl_max = --newsize;
12160     tbl->tbl_ary = ary;
12161     for (i=0; i < oldsize; i++, ary++) {
12162         PTR_TBL_ENT_t **entp = ary;
12163         PTR_TBL_ENT_t *ent = *ary;
12164         PTR_TBL_ENT_t **curentp;
12165         if (!ent)
12166             continue;
12167         curentp = ary + oldsize;
12168         do {
12169             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
12170                 *entp = ent->next;
12171                 ent->next = *curentp;
12172                 *curentp = ent;
12173             }
12174             else
12175                 entp = &ent->next;
12176             ent = *entp;
12177         } while (ent);
12178     }
12179 }
12180
12181 /* remove all the entries from a ptr table */
12182 /* Deprecated - will be removed post 5.14 */
12183
12184 void
12185 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
12186 {
12187     if (tbl && tbl->tbl_items) {
12188         struct ptr_tbl_arena *arena = tbl->tbl_arena;
12189
12190         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
12191
12192         while (arena) {
12193             struct ptr_tbl_arena *next = arena->next;
12194
12195             Safefree(arena);
12196             arena = next;
12197         };
12198
12199         tbl->tbl_items = 0;
12200         tbl->tbl_arena = NULL;
12201         tbl->tbl_arena_next = NULL;
12202         tbl->tbl_arena_end = NULL;
12203     }
12204 }
12205
12206 /* clear and free a ptr table */
12207
12208 void
12209 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
12210 {
12211     struct ptr_tbl_arena *arena;
12212
12213     if (!tbl) {
12214         return;
12215     }
12216
12217     arena = tbl->tbl_arena;
12218
12219     while (arena) {
12220         struct ptr_tbl_arena *next = arena->next;
12221
12222         Safefree(arena);
12223         arena = next;
12224     }
12225
12226     Safefree(tbl->tbl_ary);
12227     Safefree(tbl);
12228 }
12229
12230 #if defined(USE_ITHREADS)
12231
12232 void
12233 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
12234 {
12235     PERL_ARGS_ASSERT_RVPV_DUP;
12236
12237     assert(!isREGEXP(sstr));
12238     if (SvROK(sstr)) {
12239         if (SvWEAKREF(sstr)) {
12240             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
12241             if (param->flags & CLONEf_JOIN_IN) {
12242                 /* if joining, we add any back references individually rather
12243                  * than copying the whole backref array */
12244                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
12245             }
12246         }
12247         else
12248             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
12249     }
12250     else if (SvPVX_const(sstr)) {
12251         /* Has something there */
12252         if (SvLEN(sstr)) {
12253             /* Normal PV - clone whole allocated space */
12254             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
12255             /* sstr may not be that normal, but actually copy on write.
12256                But we are a true, independent SV, so:  */
12257             SvIsCOW_off(dstr);
12258         }
12259         else {
12260             /* Special case - not normally malloced for some reason */
12261             if (isGV_with_GP(sstr)) {
12262                 /* Don't need to do anything here.  */
12263             }
12264             else if ((SvIsCOW(sstr))) {
12265                 /* A "shared" PV - clone it as "shared" PV */
12266                 SvPV_set(dstr,
12267                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
12268                                          param)));
12269             }
12270             else {
12271                 /* Some other special case - random pointer */
12272                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
12273             }
12274         }
12275     }
12276     else {
12277         /* Copy the NULL */
12278         SvPV_set(dstr, NULL);
12279     }
12280 }
12281
12282 /* duplicate a list of SVs. source and dest may point to the same memory.  */
12283 static SV **
12284 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
12285                       SSize_t items, CLONE_PARAMS *const param)
12286 {
12287     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
12288
12289     while (items-- > 0) {
12290         *dest++ = sv_dup_inc(*source++, param);
12291     }
12292
12293     return dest;
12294 }
12295
12296 /* duplicate an SV of any type (including AV, HV etc) */
12297
12298 static SV *
12299 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12300 {
12301     dVAR;
12302     SV *dstr;
12303
12304     PERL_ARGS_ASSERT_SV_DUP_COMMON;
12305
12306     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
12307 #ifdef DEBUG_LEAKING_SCALARS_ABORT
12308         abort();
12309 #endif
12310         return NULL;
12311     }
12312     /* look for it in the table first */
12313     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
12314     if (dstr)
12315         return dstr;
12316
12317     if(param->flags & CLONEf_JOIN_IN) {
12318         /** We are joining here so we don't want do clone
12319             something that is bad **/
12320         if (SvTYPE(sstr) == SVt_PVHV) {
12321             const HEK * const hvname = HvNAME_HEK(sstr);
12322             if (hvname) {
12323                 /** don't clone stashes if they already exist **/
12324                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
12325                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
12326                 ptr_table_store(PL_ptr_table, sstr, dstr);
12327                 return dstr;
12328             }
12329         }
12330         else if (SvTYPE(sstr) == SVt_PVGV && !SvFAKE(sstr)) {
12331             HV *stash = GvSTASH(sstr);
12332             const HEK * hvname;
12333             if (stash && (hvname = HvNAME_HEK(stash))) {
12334                 /** don't clone GVs if they already exist **/
12335                 SV **svp;
12336                 stash = gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
12337                                     HEK_UTF8(hvname) ? SVf_UTF8 : 0);
12338                 svp = hv_fetch(
12339                         stash, GvNAME(sstr),
12340                         GvNAMEUTF8(sstr)
12341                             ? -GvNAMELEN(sstr)
12342                             :  GvNAMELEN(sstr),
12343                         0
12344                       );
12345                 if (svp && *svp && SvTYPE(*svp) == SVt_PVGV) {
12346                     ptr_table_store(PL_ptr_table, sstr, *svp);
12347                     return *svp;
12348                 }
12349             }
12350         }
12351     }
12352
12353     /* create anew and remember what it is */
12354     new_SV(dstr);
12355
12356 #ifdef DEBUG_LEAKING_SCALARS
12357     dstr->sv_debug_optype = sstr->sv_debug_optype;
12358     dstr->sv_debug_line = sstr->sv_debug_line;
12359     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
12360     dstr->sv_debug_parent = (SV*)sstr;
12361     FREE_SV_DEBUG_FILE(dstr);
12362     dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
12363 #endif
12364
12365     ptr_table_store(PL_ptr_table, sstr, dstr);
12366
12367     /* clone */
12368     SvFLAGS(dstr)       = SvFLAGS(sstr);
12369     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
12370     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
12371
12372 #ifdef DEBUGGING
12373     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
12374         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
12375                       (void*)PL_watch_pvx, SvPVX_const(sstr));
12376 #endif
12377
12378     /* don't clone objects whose class has asked us not to */
12379     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
12380         SvFLAGS(dstr) = 0;
12381         return dstr;
12382     }
12383
12384     switch (SvTYPE(sstr)) {
12385     case SVt_NULL:
12386         SvANY(dstr)     = NULL;
12387         break;
12388     case SVt_IV:
12389         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
12390         if(SvROK(sstr)) {
12391             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
12392         } else {
12393             SvIV_set(dstr, SvIVX(sstr));
12394         }
12395         break;
12396     case SVt_NV:
12397         SvANY(dstr)     = new_XNV();
12398         SvNV_set(dstr, SvNVX(sstr));
12399         break;
12400     default:
12401         {
12402             /* These are all the types that need complex bodies allocating.  */
12403             void *new_body;
12404             const svtype sv_type = SvTYPE(sstr);
12405             const struct body_details *const sv_type_details
12406                 = bodies_by_type + sv_type;
12407
12408             switch (sv_type) {
12409             default:
12410                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
12411                 break;
12412
12413             case SVt_PVGV:
12414             case SVt_PVIO:
12415             case SVt_PVFM:
12416             case SVt_PVHV:
12417             case SVt_PVAV:
12418             case SVt_PVCV:
12419             case SVt_PVLV:
12420             case SVt_REGEXP:
12421             case SVt_PVMG:
12422             case SVt_PVNV:
12423             case SVt_PVIV:
12424             case SVt_INVLIST:
12425             case SVt_PV:
12426                 assert(sv_type_details->body_size);
12427                 if (sv_type_details->arena) {
12428                     new_body_inline(new_body, sv_type);
12429                     new_body
12430                         = (void*)((char*)new_body - sv_type_details->offset);
12431                 } else {
12432                     new_body = new_NOARENA(sv_type_details);
12433                 }
12434             }
12435             assert(new_body);
12436             SvANY(dstr) = new_body;
12437
12438 #ifndef PURIFY
12439             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
12440                  ((char*)SvANY(dstr)) + sv_type_details->offset,
12441                  sv_type_details->copy, char);
12442 #else
12443             Copy(((char*)SvANY(sstr)),
12444                  ((char*)SvANY(dstr)),
12445                  sv_type_details->body_size + sv_type_details->offset, char);
12446 #endif
12447
12448             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
12449                 && !isGV_with_GP(dstr)
12450                 && !isREGEXP(dstr)
12451                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
12452                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
12453
12454             /* The Copy above means that all the source (unduplicated) pointers
12455                are now in the destination.  We can check the flags and the
12456                pointers in either, but it's possible that there's less cache
12457                missing by always going for the destination.
12458                FIXME - instrument and check that assumption  */
12459             if (sv_type >= SVt_PVMG) {
12460                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
12461                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
12462                 } else if (sv_type == SVt_PVAV && AvPAD_NAMELIST(dstr)) {
12463                     NOOP;
12464                 } else if (SvMAGIC(dstr))
12465                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
12466                 if (SvOBJECT(dstr) && SvSTASH(dstr))
12467                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
12468                 else SvSTASH_set(dstr, 0); /* don't copy DESTROY cache */
12469             }
12470
12471             /* The cast silences a GCC warning about unhandled types.  */
12472             switch ((int)sv_type) {
12473             case SVt_PV:
12474                 break;
12475             case SVt_PVIV:
12476                 break;
12477             case SVt_PVNV:
12478                 break;
12479             case SVt_PVMG:
12480                 break;
12481             case SVt_REGEXP:
12482               duprex:
12483                 /* FIXME for plugins */
12484                 dstr->sv_u.svu_rx = ((REGEXP *)dstr)->sv_any;
12485                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
12486                 break;
12487             case SVt_PVLV:
12488                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
12489                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
12490                     LvTARG(dstr) = dstr;
12491                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
12492                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
12493                 else
12494                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
12495                 if (isREGEXP(sstr)) goto duprex;
12496             case SVt_PVGV:
12497                 /* non-GP case already handled above */
12498                 if(isGV_with_GP(sstr)) {
12499                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
12500                     /* Don't call sv_add_backref here as it's going to be
12501                        created as part of the magic cloning of the symbol
12502                        table--unless this is during a join and the stash
12503                        is not actually being cloned.  */
12504                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
12505                        at the point of this comment.  */
12506                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
12507                     if (param->flags & CLONEf_JOIN_IN)
12508                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
12509                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
12510                     (void)GpREFCNT_inc(GvGP(dstr));
12511                 }
12512                 break;
12513             case SVt_PVIO:
12514                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
12515                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
12516                     /* I have no idea why fake dirp (rsfps)
12517                        should be treated differently but otherwise
12518                        we end up with leaks -- sky*/
12519                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
12520                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
12521                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
12522                 } else {
12523                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
12524                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
12525                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
12526                     if (IoDIRP(dstr)) {
12527                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
12528                     } else {
12529                         NOOP;
12530                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
12531                     }
12532                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
12533                 }
12534                 if (IoOFP(dstr) == IoIFP(sstr))
12535                     IoOFP(dstr) = IoIFP(dstr);
12536                 else
12537                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
12538                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
12539                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
12540                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
12541                 break;
12542             case SVt_PVAV:
12543                 /* avoid cloning an empty array */
12544                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
12545                     SV **dst_ary, **src_ary;
12546                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
12547
12548                     src_ary = AvARRAY((const AV *)sstr);
12549                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
12550                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
12551                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
12552                     AvALLOC((const AV *)dstr) = dst_ary;
12553                     if (AvREAL((const AV *)sstr)) {
12554                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
12555                                                       param);
12556                     }
12557                     else {
12558                         while (items-- > 0)
12559                             *dst_ary++ = sv_dup(*src_ary++, param);
12560                     }
12561                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
12562                     while (items-- > 0) {
12563                         *dst_ary++ = &PL_sv_undef;
12564                     }
12565                 }
12566                 else {
12567                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
12568                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
12569                     AvMAX(  (const AV *)dstr)   = -1;
12570                     AvFILLp((const AV *)dstr)   = -1;
12571                 }
12572                 break;
12573             case SVt_PVHV:
12574                 if (HvARRAY((const HV *)sstr)) {
12575                     STRLEN i = 0;
12576                     const bool sharekeys = !!HvSHAREKEYS(sstr);
12577                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
12578                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
12579                     char *darray;
12580                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
12581                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
12582                         char);
12583                     HvARRAY(dstr) = (HE**)darray;
12584                     while (i <= sxhv->xhv_max) {
12585                         const HE * const source = HvARRAY(sstr)[i];
12586                         HvARRAY(dstr)[i] = source
12587                             ? he_dup(source, sharekeys, param) : 0;
12588                         ++i;
12589                     }
12590                     if (SvOOK(sstr)) {
12591                         const struct xpvhv_aux * const saux = HvAUX(sstr);
12592                         struct xpvhv_aux * const daux = HvAUX(dstr);
12593                         /* This flag isn't copied.  */
12594                         SvOOK_on(dstr);
12595
12596                         if (saux->xhv_name_count) {
12597                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
12598                             const I32 count
12599                              = saux->xhv_name_count < 0
12600                                 ? -saux->xhv_name_count
12601                                 :  saux->xhv_name_count;
12602                             HEK **shekp = sname + count;
12603                             HEK **dhekp;
12604                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
12605                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
12606                             while (shekp-- > sname) {
12607                                 dhekp--;
12608                                 *dhekp = hek_dup(*shekp, param);
12609                             }
12610                         }
12611                         else {
12612                             daux->xhv_name_u.xhvnameu_name
12613                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
12614                                           param);
12615                         }
12616                         daux->xhv_name_count = saux->xhv_name_count;
12617
12618                         daux->xhv_fill_lazy = saux->xhv_fill_lazy;
12619                         daux->xhv_aux_flags = saux->xhv_aux_flags;
12620 #ifdef PERL_HASH_RANDOMIZE_KEYS
12621                         daux->xhv_rand = saux->xhv_rand;
12622                         daux->xhv_last_rand = saux->xhv_last_rand;
12623 #endif
12624                         daux->xhv_riter = saux->xhv_riter;
12625                         daux->xhv_eiter = saux->xhv_eiter
12626                             ? he_dup(saux->xhv_eiter,
12627                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
12628                         /* backref array needs refcnt=2; see sv_add_backref */
12629                         daux->xhv_backreferences =
12630                             (param->flags & CLONEf_JOIN_IN)
12631                                 /* when joining, we let the individual GVs and
12632                                  * CVs add themselves to backref as
12633                                  * needed. This avoids pulling in stuff
12634                                  * that isn't required, and simplifies the
12635                                  * case where stashes aren't cloned back
12636                                  * if they already exist in the parent
12637                                  * thread */
12638                             ? NULL
12639                             : saux->xhv_backreferences
12640                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
12641                                     ? MUTABLE_AV(SvREFCNT_inc(
12642                                           sv_dup_inc((const SV *)
12643                                             saux->xhv_backreferences, param)))
12644                                     : MUTABLE_AV(sv_dup((const SV *)
12645                                             saux->xhv_backreferences, param))
12646                                 : 0;
12647
12648                         daux->xhv_mro_meta = saux->xhv_mro_meta
12649                             ? mro_meta_dup(saux->xhv_mro_meta, param)
12650                             : 0;
12651
12652                         /* Record stashes for possible cloning in Perl_clone(). */
12653                         if (HvNAME(sstr))
12654                             av_push(param->stashes, dstr);
12655                     }
12656                 }
12657                 else
12658                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
12659                 break;
12660             case SVt_PVCV:
12661                 if (!(param->flags & CLONEf_COPY_STACKS)) {
12662                     CvDEPTH(dstr) = 0;
12663                 }
12664                 /*FALLTHROUGH*/
12665             case SVt_PVFM:
12666                 /* NOTE: not refcounted */
12667                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
12668                     hv_dup(CvSTASH(dstr), param);
12669                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
12670                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
12671                 if (!CvISXSUB(dstr)) {
12672                     OP_REFCNT_LOCK;
12673                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
12674                     OP_REFCNT_UNLOCK;
12675                     CvSLABBED_off(dstr);
12676                 } else if (CvCONST(dstr)) {
12677                     CvXSUBANY(dstr).any_ptr =
12678                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
12679                 }
12680                 assert(!CvSLABBED(dstr));
12681                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
12682                 if (CvNAMED(dstr))
12683                     SvANY((CV *)dstr)->xcv_gv_u.xcv_hek =
12684                         share_hek_hek(CvNAME_HEK((CV *)sstr));
12685                 /* don't dup if copying back - CvGV isn't refcounted, so the
12686                  * duped GV may never be freed. A bit of a hack! DAPM */
12687                 else
12688                   SvANY(MUTABLE_CV(dstr))->xcv_gv_u.xcv_gv =
12689                     CvCVGV_RC(dstr)
12690                     ? gv_dup_inc(CvGV(sstr), param)
12691                     : (param->flags & CLONEf_JOIN_IN)
12692                         ? NULL
12693                         : gv_dup(CvGV(sstr), param);
12694
12695                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
12696                 CvOUTSIDE(dstr) =
12697                     CvWEAKOUTSIDE(sstr)
12698                     ? cv_dup(    CvOUTSIDE(dstr), param)
12699                     : cv_dup_inc(CvOUTSIDE(dstr), param);
12700                 break;
12701             }
12702         }
12703     }
12704
12705     return dstr;
12706  }
12707
12708 SV *
12709 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12710 {
12711     PERL_ARGS_ASSERT_SV_DUP_INC;
12712     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
12713 }
12714
12715 SV *
12716 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12717 {
12718     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
12719     PERL_ARGS_ASSERT_SV_DUP;
12720
12721     /* Track every SV that (at least initially) had a reference count of 0.
12722        We need to do this by holding an actual reference to it in this array.
12723        If we attempt to cheat, turn AvREAL_off(), and store only pointers
12724        (akin to the stashes hash, and the perl stack), we come unstuck if
12725        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
12726        thread) is manipulated in a CLONE method, because CLONE runs before the
12727        unreferenced array is walked to find SVs still with SvREFCNT() == 0
12728        (and fix things up by giving each a reference via the temps stack).
12729        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
12730        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
12731        before the walk of unreferenced happens and a reference to that is SV
12732        added to the temps stack. At which point we have the same SV considered
12733        to be in use, and free to be re-used. Not good.
12734     */
12735     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
12736         assert(param->unreferenced);
12737         av_push(param->unreferenced, SvREFCNT_inc(dstr));
12738     }
12739
12740     return dstr;
12741 }
12742
12743 /* duplicate a context */
12744
12745 PERL_CONTEXT *
12746 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
12747 {
12748     PERL_CONTEXT *ncxs;
12749
12750     PERL_ARGS_ASSERT_CX_DUP;
12751
12752     if (!cxs)
12753         return (PERL_CONTEXT*)NULL;
12754
12755     /* look for it in the table first */
12756     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
12757     if (ncxs)
12758         return ncxs;
12759
12760     /* create anew and remember what it is */
12761     Newx(ncxs, max + 1, PERL_CONTEXT);
12762     ptr_table_store(PL_ptr_table, cxs, ncxs);
12763     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
12764
12765     while (ix >= 0) {
12766         PERL_CONTEXT * const ncx = &ncxs[ix];
12767         if (CxTYPE(ncx) == CXt_SUBST) {
12768             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
12769         }
12770         else {
12771             ncx->blk_oldcop = (COP*)any_dup(ncx->blk_oldcop, param->proto_perl);
12772             switch (CxTYPE(ncx)) {
12773             case CXt_SUB:
12774                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
12775                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
12776                                            : cv_dup(ncx->blk_sub.cv,param));
12777                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
12778                                            ? av_dup_inc(ncx->blk_sub.argarray,
12779                                                         param)
12780                                            : NULL);
12781                 ncx->blk_sub.savearray  =  (CxHASARGS(ncx)
12782                                             ? av_dup_inc(ncx->blk_sub.savearray,
12783                                                      param)
12784                                            : NULL);
12785                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
12786                                            ncx->blk_sub.oldcomppad);
12787                 break;
12788             case CXt_EVAL:
12789                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
12790                                                       param);
12791                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
12792                 ncx->blk_eval.cv = cv_dup(ncx->blk_eval.cv, param);
12793                 break;
12794             case CXt_LOOP_LAZYSV:
12795                 ncx->blk_loop.state_u.lazysv.end
12796                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
12797                 /* We are taking advantage of av_dup_inc and sv_dup_inc
12798                    actually being the same function, and order equivalence of
12799                    the two unions.
12800                    We can assert the later [but only at run time :-(]  */
12801                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
12802                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
12803             case CXt_LOOP_FOR:
12804                 ncx->blk_loop.state_u.ary.ary
12805                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
12806             case CXt_LOOP_LAZYIV:
12807             case CXt_LOOP_PLAIN:
12808                 if (CxPADLOOP(ncx)) {
12809                     ncx->blk_loop.itervar_u.oldcomppad
12810                         = (PAD*)ptr_table_fetch(PL_ptr_table,
12811                                         ncx->blk_loop.itervar_u.oldcomppad);
12812                 } else {
12813                     ncx->blk_loop.itervar_u.gv
12814                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
12815                                     param);
12816                 }
12817                 break;
12818             case CXt_FORMAT:
12819                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
12820                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
12821                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
12822                                                      param);
12823                 break;
12824             case CXt_BLOCK:
12825             case CXt_NULL:
12826             case CXt_WHEN:
12827             case CXt_GIVEN:
12828                 break;
12829             }
12830         }
12831         --ix;
12832     }
12833     return ncxs;
12834 }
12835
12836 /* duplicate a stack info structure */
12837
12838 PERL_SI *
12839 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
12840 {
12841     PERL_SI *nsi;
12842
12843     PERL_ARGS_ASSERT_SI_DUP;
12844
12845     if (!si)
12846         return (PERL_SI*)NULL;
12847
12848     /* look for it in the table first */
12849     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
12850     if (nsi)
12851         return nsi;
12852
12853     /* create anew and remember what it is */
12854     Newxz(nsi, 1, PERL_SI);
12855     ptr_table_store(PL_ptr_table, si, nsi);
12856
12857     nsi->si_stack       = av_dup_inc(si->si_stack, param);
12858     nsi->si_cxix        = si->si_cxix;
12859     nsi->si_cxmax       = si->si_cxmax;
12860     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
12861     nsi->si_type        = si->si_type;
12862     nsi->si_prev        = si_dup(si->si_prev, param);
12863     nsi->si_next        = si_dup(si->si_next, param);
12864     nsi->si_markoff     = si->si_markoff;
12865
12866     return nsi;
12867 }
12868
12869 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
12870 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
12871 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
12872 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
12873 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
12874 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
12875 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
12876 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
12877 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
12878 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
12879 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
12880 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
12881 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
12882 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
12883 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
12884 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
12885
12886 /* XXXXX todo */
12887 #define pv_dup_inc(p)   SAVEPV(p)
12888 #define pv_dup(p)       SAVEPV(p)
12889 #define svp_dup_inc(p,pp)       any_dup(p,pp)
12890
12891 /* map any object to the new equivent - either something in the
12892  * ptr table, or something in the interpreter structure
12893  */
12894
12895 void *
12896 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
12897 {
12898     void *ret;
12899
12900     PERL_ARGS_ASSERT_ANY_DUP;
12901
12902     if (!v)
12903         return (void*)NULL;
12904
12905     /* look for it in the table first */
12906     ret = ptr_table_fetch(PL_ptr_table, v);
12907     if (ret)
12908         return ret;
12909
12910     /* see if it is part of the interpreter structure */
12911     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
12912         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
12913     else {
12914         ret = v;
12915     }
12916
12917     return ret;
12918 }
12919
12920 /* duplicate the save stack */
12921
12922 ANY *
12923 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
12924 {
12925     dVAR;
12926     ANY * const ss      = proto_perl->Isavestack;
12927     const I32 max       = proto_perl->Isavestack_max;
12928     I32 ix              = proto_perl->Isavestack_ix;
12929     ANY *nss;
12930     const SV *sv;
12931     const GV *gv;
12932     const AV *av;
12933     const HV *hv;
12934     void* ptr;
12935     int intval;
12936     long longval;
12937     GP *gp;
12938     IV iv;
12939     I32 i;
12940     char *c = NULL;
12941     void (*dptr) (void*);
12942     void (*dxptr) (pTHX_ void*);
12943
12944     PERL_ARGS_ASSERT_SS_DUP;
12945
12946     Newxz(nss, max, ANY);
12947
12948     while (ix > 0) {
12949         const UV uv = POPUV(ss,ix);
12950         const U8 type = (U8)uv & SAVE_MASK;
12951
12952         TOPUV(nss,ix) = uv;
12953         switch (type) {
12954         case SAVEt_CLEARSV:
12955         case SAVEt_CLEARPADRANGE:
12956             break;
12957         case SAVEt_HELEM:               /* hash element */
12958             sv = (const SV *)POPPTR(ss,ix);
12959             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12960             /* fall through */
12961         case SAVEt_ITEM:                        /* normal string */
12962         case SAVEt_GVSV:                        /* scalar slot in GV */
12963         case SAVEt_SV:                          /* scalar reference */
12964             sv = (const SV *)POPPTR(ss,ix);
12965             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12966             /* fall through */
12967         case SAVEt_FREESV:
12968         case SAVEt_MORTALIZESV:
12969         case SAVEt_READONLY_OFF:
12970             sv = (const SV *)POPPTR(ss,ix);
12971             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12972             break;
12973         case SAVEt_SHARED_PVREF:                /* char* in shared space */
12974             c = (char*)POPPTR(ss,ix);
12975             TOPPTR(nss,ix) = savesharedpv(c);
12976             ptr = POPPTR(ss,ix);
12977             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12978             break;
12979         case SAVEt_GENERIC_SVREF:               /* generic sv */
12980         case SAVEt_SVREF:                       /* scalar reference */
12981             sv = (const SV *)POPPTR(ss,ix);
12982             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12983             ptr = POPPTR(ss,ix);
12984             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12985             break;
12986         case SAVEt_GVSLOT:              /* any slot in GV */
12987             sv = (const SV *)POPPTR(ss,ix);
12988             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12989             ptr = POPPTR(ss,ix);
12990             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12991             sv = (const SV *)POPPTR(ss,ix);
12992             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12993             break;
12994         case SAVEt_HV:                          /* hash reference */
12995         case SAVEt_AV:                          /* array reference */
12996             sv = (const SV *) POPPTR(ss,ix);
12997             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12998             /* fall through */
12999         case SAVEt_COMPPAD:
13000         case SAVEt_NSTAB:
13001             sv = (const SV *) POPPTR(ss,ix);
13002             TOPPTR(nss,ix) = sv_dup(sv, param);
13003             break;
13004         case SAVEt_INT:                         /* int reference */
13005             ptr = POPPTR(ss,ix);
13006             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13007             intval = (int)POPINT(ss,ix);
13008             TOPINT(nss,ix) = intval;
13009             break;
13010         case SAVEt_LONG:                        /* long reference */
13011             ptr = POPPTR(ss,ix);
13012             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13013             longval = (long)POPLONG(ss,ix);
13014             TOPLONG(nss,ix) = longval;
13015             break;
13016         case SAVEt_I32:                         /* I32 reference */
13017             ptr = POPPTR(ss,ix);
13018             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13019             i = POPINT(ss,ix);
13020             TOPINT(nss,ix) = i;
13021             break;
13022         case SAVEt_IV:                          /* IV reference */
13023         case SAVEt_STRLEN:                      /* STRLEN/size_t ref */
13024             ptr = POPPTR(ss,ix);
13025             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13026             iv = POPIV(ss,ix);
13027             TOPIV(nss,ix) = iv;
13028             break;
13029         case SAVEt_HPTR:                        /* HV* reference */
13030         case SAVEt_APTR:                        /* AV* reference */
13031         case SAVEt_SPTR:                        /* SV* reference */
13032             ptr = POPPTR(ss,ix);
13033             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13034             sv = (const SV *)POPPTR(ss,ix);
13035             TOPPTR(nss,ix) = sv_dup(sv, param);
13036             break;
13037         case SAVEt_VPTR:                        /* random* reference */
13038             ptr = POPPTR(ss,ix);
13039             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13040             /* Fall through */
13041         case SAVEt_INT_SMALL:
13042         case SAVEt_I32_SMALL:
13043         case SAVEt_I16:                         /* I16 reference */
13044         case SAVEt_I8:                          /* I8 reference */
13045         case SAVEt_BOOL:
13046             ptr = POPPTR(ss,ix);
13047             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13048             break;
13049         case SAVEt_GENERIC_PVREF:               /* generic char* */
13050         case SAVEt_PPTR:                        /* char* reference */
13051             ptr = POPPTR(ss,ix);
13052             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13053             c = (char*)POPPTR(ss,ix);
13054             TOPPTR(nss,ix) = pv_dup(c);
13055             break;
13056         case SAVEt_GP:                          /* scalar reference */
13057             gp = (GP*)POPPTR(ss,ix);
13058             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
13059             (void)GpREFCNT_inc(gp);
13060             gv = (const GV *)POPPTR(ss,ix);
13061             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
13062             break;
13063         case SAVEt_FREEOP:
13064             ptr = POPPTR(ss,ix);
13065             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
13066                 /* these are assumed to be refcounted properly */
13067                 OP *o;
13068                 switch (((OP*)ptr)->op_type) {
13069                 case OP_LEAVESUB:
13070                 case OP_LEAVESUBLV:
13071                 case OP_LEAVEEVAL:
13072                 case OP_LEAVE:
13073                 case OP_SCOPE:
13074                 case OP_LEAVEWRITE:
13075                     TOPPTR(nss,ix) = ptr;
13076                     o = (OP*)ptr;
13077                     OP_REFCNT_LOCK;
13078                     (void) OpREFCNT_inc(o);
13079                     OP_REFCNT_UNLOCK;
13080                     break;
13081                 default:
13082                     TOPPTR(nss,ix) = NULL;
13083                     break;
13084                 }
13085             }
13086             else
13087                 TOPPTR(nss,ix) = NULL;
13088             break;
13089         case SAVEt_FREECOPHH:
13090             ptr = POPPTR(ss,ix);
13091             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
13092             break;
13093         case SAVEt_ADELETE:
13094             av = (const AV *)POPPTR(ss,ix);
13095             TOPPTR(nss,ix) = av_dup_inc(av, param);
13096             i = POPINT(ss,ix);
13097             TOPINT(nss,ix) = i;
13098             break;
13099         case SAVEt_DELETE:
13100             hv = (const HV *)POPPTR(ss,ix);
13101             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
13102             i = POPINT(ss,ix);
13103             TOPINT(nss,ix) = i;
13104             /* Fall through */
13105         case SAVEt_FREEPV:
13106             c = (char*)POPPTR(ss,ix);
13107             TOPPTR(nss,ix) = pv_dup_inc(c);
13108             break;
13109         case SAVEt_STACK_POS:           /* Position on Perl stack */
13110             i = POPINT(ss,ix);
13111             TOPINT(nss,ix) = i;
13112             break;
13113         case SAVEt_DESTRUCTOR:
13114             ptr = POPPTR(ss,ix);
13115             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
13116             dptr = POPDPTR(ss,ix);
13117             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
13118                                         any_dup(FPTR2DPTR(void *, dptr),
13119                                                 proto_perl));
13120             break;
13121         case SAVEt_DESTRUCTOR_X:
13122             ptr = POPPTR(ss,ix);
13123             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
13124             dxptr = POPDXPTR(ss,ix);
13125             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
13126                                          any_dup(FPTR2DPTR(void *, dxptr),
13127                                                  proto_perl));
13128             break;
13129         case SAVEt_REGCONTEXT:
13130         case SAVEt_ALLOC:
13131             ix -= uv >> SAVE_TIGHT_SHIFT;
13132             break;
13133         case SAVEt_AELEM:               /* array element */
13134             sv = (const SV *)POPPTR(ss,ix);
13135             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13136             i = POPINT(ss,ix);
13137             TOPINT(nss,ix) = i;
13138             av = (const AV *)POPPTR(ss,ix);
13139             TOPPTR(nss,ix) = av_dup_inc(av, param);
13140             break;
13141         case SAVEt_OP:
13142             ptr = POPPTR(ss,ix);
13143             TOPPTR(nss,ix) = ptr;
13144             break;
13145         case SAVEt_HINTS:
13146             ptr = POPPTR(ss,ix);
13147             ptr = cophh_copy((COPHH*)ptr);
13148             TOPPTR(nss,ix) = ptr;
13149             i = POPINT(ss,ix);
13150             TOPINT(nss,ix) = i;
13151             if (i & HINT_LOCALIZE_HH) {
13152                 hv = (const HV *)POPPTR(ss,ix);
13153                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
13154             }
13155             break;
13156         case SAVEt_PADSV_AND_MORTALIZE:
13157             longval = (long)POPLONG(ss,ix);
13158             TOPLONG(nss,ix) = longval;
13159             ptr = POPPTR(ss,ix);
13160             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13161             sv = (const SV *)POPPTR(ss,ix);
13162             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13163             break;
13164         case SAVEt_SET_SVFLAGS:
13165             i = POPINT(ss,ix);
13166             TOPINT(nss,ix) = i;
13167             i = POPINT(ss,ix);
13168             TOPINT(nss,ix) = i;
13169             sv = (const SV *)POPPTR(ss,ix);
13170             TOPPTR(nss,ix) = sv_dup(sv, param);
13171             break;
13172         case SAVEt_COMPILE_WARNINGS:
13173             ptr = POPPTR(ss,ix);
13174             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
13175             break;
13176         case SAVEt_PARSER:
13177             ptr = POPPTR(ss,ix);
13178             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
13179             break;
13180         default:
13181             Perl_croak(aTHX_
13182                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
13183         }
13184     }
13185
13186     return nss;
13187 }
13188
13189
13190 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
13191  * flag to the result. This is done for each stash before cloning starts,
13192  * so we know which stashes want their objects cloned */
13193
13194 static void
13195 do_mark_cloneable_stash(pTHX_ SV *const sv)
13196 {
13197     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
13198     if (hvname) {
13199         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
13200         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
13201         if (cloner && GvCV(cloner)) {
13202             dSP;
13203             UV status;
13204
13205             ENTER;
13206             SAVETMPS;
13207             PUSHMARK(SP);
13208             mXPUSHs(newSVhek(hvname));
13209             PUTBACK;
13210             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
13211             SPAGAIN;
13212             status = POPu;
13213             PUTBACK;
13214             FREETMPS;
13215             LEAVE;
13216             if (status)
13217                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
13218         }
13219     }
13220 }
13221
13222
13223
13224 /*
13225 =for apidoc perl_clone
13226
13227 Create and return a new interpreter by cloning the current one.
13228
13229 perl_clone takes these flags as parameters:
13230
13231 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
13232 without it we only clone the data and zero the stacks,
13233 with it we copy the stacks and the new perl interpreter is
13234 ready to run at the exact same point as the previous one.
13235 The pseudo-fork code uses COPY_STACKS while the
13236 threads->create doesn't.
13237
13238 CLONEf_KEEP_PTR_TABLE -
13239 perl_clone keeps a ptr_table with the pointer of the old
13240 variable as a key and the new variable as a value,
13241 this allows it to check if something has been cloned and not
13242 clone it again but rather just use the value and increase the
13243 refcount.  If KEEP_PTR_TABLE is not set then perl_clone will kill
13244 the ptr_table using the function
13245 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
13246 reason to keep it around is if you want to dup some of your own
13247 variable who are outside the graph perl scans, example of this
13248 code is in threads.xs create.
13249
13250 CLONEf_CLONE_HOST -
13251 This is a win32 thing, it is ignored on unix, it tells perls
13252 win32host code (which is c++) to clone itself, this is needed on
13253 win32 if you want to run two threads at the same time,
13254 if you just want to do some stuff in a separate perl interpreter
13255 and then throw it away and return to the original one,
13256 you don't need to do anything.
13257
13258 =cut
13259 */
13260
13261 /* XXX the above needs expanding by someone who actually understands it ! */
13262 EXTERN_C PerlInterpreter *
13263 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
13264
13265 PerlInterpreter *
13266 perl_clone(PerlInterpreter *proto_perl, UV flags)
13267 {
13268    dVAR;
13269 #ifdef PERL_IMPLICIT_SYS
13270
13271     PERL_ARGS_ASSERT_PERL_CLONE;
13272
13273    /* perlhost.h so we need to call into it
13274    to clone the host, CPerlHost should have a c interface, sky */
13275
13276    if (flags & CLONEf_CLONE_HOST) {
13277        return perl_clone_host(proto_perl,flags);
13278    }
13279    return perl_clone_using(proto_perl, flags,
13280                             proto_perl->IMem,
13281                             proto_perl->IMemShared,
13282                             proto_perl->IMemParse,
13283                             proto_perl->IEnv,
13284                             proto_perl->IStdIO,
13285                             proto_perl->ILIO,
13286                             proto_perl->IDir,
13287                             proto_perl->ISock,
13288                             proto_perl->IProc);
13289 }
13290
13291 PerlInterpreter *
13292 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
13293                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
13294                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
13295                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
13296                  struct IPerlDir* ipD, struct IPerlSock* ipS,
13297                  struct IPerlProc* ipP)
13298 {
13299     /* XXX many of the string copies here can be optimized if they're
13300      * constants; they need to be allocated as common memory and just
13301      * their pointers copied. */
13302
13303     IV i;
13304     CLONE_PARAMS clone_params;
13305     CLONE_PARAMS* const param = &clone_params;
13306
13307     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
13308
13309     PERL_ARGS_ASSERT_PERL_CLONE_USING;
13310 #else           /* !PERL_IMPLICIT_SYS */
13311     IV i;
13312     CLONE_PARAMS clone_params;
13313     CLONE_PARAMS* param = &clone_params;
13314     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
13315
13316     PERL_ARGS_ASSERT_PERL_CLONE;
13317 #endif          /* PERL_IMPLICIT_SYS */
13318
13319     /* for each stash, determine whether its objects should be cloned */
13320     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
13321     PERL_SET_THX(my_perl);
13322
13323 #ifdef DEBUGGING
13324     PoisonNew(my_perl, 1, PerlInterpreter);
13325     PL_op = NULL;
13326     PL_curcop = NULL;
13327     PL_defstash = NULL; /* may be used by perl malloc() */
13328     PL_markstack = 0;
13329     PL_scopestack = 0;
13330     PL_scopestack_name = 0;
13331     PL_savestack = 0;
13332     PL_savestack_ix = 0;
13333     PL_savestack_max = -1;
13334     PL_sig_pending = 0;
13335     PL_parser = NULL;
13336     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
13337 #  ifdef DEBUG_LEAKING_SCALARS
13338     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
13339 #  endif
13340 #else   /* !DEBUGGING */
13341     Zero(my_perl, 1, PerlInterpreter);
13342 #endif  /* DEBUGGING */
13343
13344 #ifdef PERL_IMPLICIT_SYS
13345     /* host pointers */
13346     PL_Mem              = ipM;
13347     PL_MemShared        = ipMS;
13348     PL_MemParse         = ipMP;
13349     PL_Env              = ipE;
13350     PL_StdIO            = ipStd;
13351     PL_LIO              = ipLIO;
13352     PL_Dir              = ipD;
13353     PL_Sock             = ipS;
13354     PL_Proc             = ipP;
13355 #endif          /* PERL_IMPLICIT_SYS */
13356
13357
13358     param->flags = flags;
13359     /* Nothing in the core code uses this, but we make it available to
13360        extensions (using mg_dup).  */
13361     param->proto_perl = proto_perl;
13362     /* Likely nothing will use this, but it is initialised to be consistent
13363        with Perl_clone_params_new().  */
13364     param->new_perl = my_perl;
13365     param->unreferenced = NULL;
13366
13367
13368     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
13369
13370     PL_body_arenas = NULL;
13371     Zero(&PL_body_roots, 1, PL_body_roots);
13372     
13373     PL_sv_count         = 0;
13374     PL_sv_root          = NULL;
13375     PL_sv_arenaroot     = NULL;
13376
13377     PL_debug            = proto_perl->Idebug;
13378
13379     /* dbargs array probably holds garbage */
13380     PL_dbargs           = NULL;
13381
13382     PL_compiling = proto_perl->Icompiling;
13383
13384     /* pseudo environmental stuff */
13385     PL_origargc         = proto_perl->Iorigargc;
13386     PL_origargv         = proto_perl->Iorigargv;
13387
13388 #ifndef NO_TAINT_SUPPORT
13389     /* Set tainting stuff before PerlIO_debug can possibly get called */
13390     PL_tainting         = proto_perl->Itainting;
13391     PL_taint_warn       = proto_perl->Itaint_warn;
13392 #else
13393     PL_tainting         = FALSE;
13394     PL_taint_warn       = FALSE;
13395 #endif
13396
13397     PL_minus_c          = proto_perl->Iminus_c;
13398
13399     PL_localpatches     = proto_perl->Ilocalpatches;
13400     PL_splitstr         = proto_perl->Isplitstr;
13401     PL_minus_n          = proto_perl->Iminus_n;
13402     PL_minus_p          = proto_perl->Iminus_p;
13403     PL_minus_l          = proto_perl->Iminus_l;
13404     PL_minus_a          = proto_perl->Iminus_a;
13405     PL_minus_E          = proto_perl->Iminus_E;
13406     PL_minus_F          = proto_perl->Iminus_F;
13407     PL_doswitches       = proto_perl->Idoswitches;
13408     PL_dowarn           = proto_perl->Idowarn;
13409 #ifdef PERL_SAWAMPERSAND
13410     PL_sawampersand     = proto_perl->Isawampersand;
13411 #endif
13412     PL_unsafe           = proto_perl->Iunsafe;
13413     PL_perldb           = proto_perl->Iperldb;
13414     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
13415     PL_exit_flags       = proto_perl->Iexit_flags;
13416
13417     /* XXX time(&PL_basetime) when asked for? */
13418     PL_basetime         = proto_perl->Ibasetime;
13419
13420     PL_maxsysfd         = proto_perl->Imaxsysfd;
13421     PL_statusvalue      = proto_perl->Istatusvalue;
13422 #ifdef VMS
13423     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
13424 #else
13425     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
13426 #endif
13427
13428     /* RE engine related */
13429     PL_regmatch_slab    = NULL;
13430     PL_reg_curpm        = NULL;
13431
13432     PL_sub_generation   = proto_perl->Isub_generation;
13433
13434     /* funky return mechanisms */
13435     PL_forkprocess      = proto_perl->Iforkprocess;
13436
13437     /* internal state */
13438     PL_maxo             = proto_perl->Imaxo;
13439
13440     PL_main_start       = proto_perl->Imain_start;
13441     PL_eval_root        = proto_perl->Ieval_root;
13442     PL_eval_start       = proto_perl->Ieval_start;
13443
13444     PL_filemode         = proto_perl->Ifilemode;
13445     PL_lastfd           = proto_perl->Ilastfd;
13446     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
13447     PL_Argv             = NULL;
13448     PL_Cmd              = NULL;
13449     PL_gensym           = proto_perl->Igensym;
13450
13451     PL_laststatval      = proto_perl->Ilaststatval;
13452     PL_laststype        = proto_perl->Ilaststype;
13453     PL_mess_sv          = NULL;
13454
13455     PL_profiledata      = NULL;
13456
13457     PL_generation       = proto_perl->Igeneration;
13458
13459     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
13460     PL_in_clean_all     = proto_perl->Iin_clean_all;
13461
13462     PL_delaymagic_uid   = proto_perl->Idelaymagic_uid;
13463     PL_delaymagic_euid  = proto_perl->Idelaymagic_euid;
13464     PL_delaymagic_gid   = proto_perl->Idelaymagic_gid;
13465     PL_delaymagic_egid  = proto_perl->Idelaymagic_egid;
13466     PL_nomemok          = proto_perl->Inomemok;
13467     PL_an               = proto_perl->Ian;
13468     PL_evalseq          = proto_perl->Ievalseq;
13469     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
13470     PL_origalen         = proto_perl->Iorigalen;
13471
13472     PL_sighandlerp      = proto_perl->Isighandlerp;
13473
13474     PL_runops           = proto_perl->Irunops;
13475
13476     PL_subline          = proto_perl->Isubline;
13477
13478 #ifdef FCRYPT
13479     PL_cryptseen        = proto_perl->Icryptseen;
13480 #endif
13481
13482 #ifdef USE_LOCALE_COLLATE
13483     PL_collation_ix     = proto_perl->Icollation_ix;
13484     PL_collation_standard       = proto_perl->Icollation_standard;
13485     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
13486     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
13487 #endif /* USE_LOCALE_COLLATE */
13488
13489 #ifdef USE_LOCALE_NUMERIC
13490     PL_numeric_standard = proto_perl->Inumeric_standard;
13491     PL_numeric_local    = proto_perl->Inumeric_local;
13492 #endif /* !USE_LOCALE_NUMERIC */
13493
13494     /* Did the locale setup indicate UTF-8? */
13495     PL_utf8locale       = proto_perl->Iutf8locale;
13496     PL_in_utf8_CTYPE_locale = proto_perl->Iin_utf8_CTYPE_locale;
13497     /* Unicode features (see perlrun/-C) */
13498     PL_unicode          = proto_perl->Iunicode;
13499
13500     /* Pre-5.8 signals control */
13501     PL_signals          = proto_perl->Isignals;
13502
13503     /* times() ticks per second */
13504     PL_clocktick        = proto_perl->Iclocktick;
13505
13506     /* Recursion stopper for PerlIO_find_layer */
13507     PL_in_load_module   = proto_perl->Iin_load_module;
13508
13509     /* sort() routine */
13510     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
13511
13512     /* Not really needed/useful since the reenrant_retint is "volatile",
13513      * but do it for consistency's sake. */
13514     PL_reentrant_retint = proto_perl->Ireentrant_retint;
13515
13516     /* Hooks to shared SVs and locks. */
13517     PL_sharehook        = proto_perl->Isharehook;
13518     PL_lockhook         = proto_perl->Ilockhook;
13519     PL_unlockhook       = proto_perl->Iunlockhook;
13520     PL_threadhook       = proto_perl->Ithreadhook;
13521     PL_destroyhook      = proto_perl->Idestroyhook;
13522     PL_signalhook       = proto_perl->Isignalhook;
13523
13524     PL_globhook         = proto_perl->Iglobhook;
13525
13526     /* swatch cache */
13527     PL_last_swash_hv    = NULL; /* reinits on demand */
13528     PL_last_swash_klen  = 0;
13529     PL_last_swash_key[0]= '\0';
13530     PL_last_swash_tmps  = (U8*)NULL;
13531     PL_last_swash_slen  = 0;
13532
13533     PL_srand_called     = proto_perl->Isrand_called;
13534     Copy(&(proto_perl->Irandom_state), &PL_random_state, 1, PL_RANDOM_STATE_TYPE);
13535
13536     if (flags & CLONEf_COPY_STACKS) {
13537         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
13538         PL_tmps_ix              = proto_perl->Itmps_ix;
13539         PL_tmps_max             = proto_perl->Itmps_max;
13540         PL_tmps_floor           = proto_perl->Itmps_floor;
13541
13542         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13543          * NOTE: unlike the others! */
13544         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
13545         PL_scopestack_max       = proto_perl->Iscopestack_max;
13546
13547         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
13548          * NOTE: unlike the others! */
13549         PL_savestack_ix         = proto_perl->Isavestack_ix;
13550         PL_savestack_max        = proto_perl->Isavestack_max;
13551     }
13552
13553     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
13554     PL_top_env          = &PL_start_env;
13555
13556     PL_op               = proto_perl->Iop;
13557
13558     PL_Sv               = NULL;
13559     PL_Xpv              = (XPV*)NULL;
13560     my_perl->Ina        = proto_perl->Ina;
13561
13562     PL_statbuf          = proto_perl->Istatbuf;
13563     PL_statcache        = proto_perl->Istatcache;
13564
13565 #ifndef NO_TAINT_SUPPORT
13566     PL_tainted          = proto_perl->Itainted;
13567 #else
13568     PL_tainted          = FALSE;
13569 #endif
13570     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
13571
13572     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
13573
13574     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
13575     PL_restartop        = proto_perl->Irestartop;
13576     PL_in_eval          = proto_perl->Iin_eval;
13577     PL_delaymagic       = proto_perl->Idelaymagic;
13578     PL_phase            = proto_perl->Iphase;
13579     PL_localizing       = proto_perl->Ilocalizing;
13580
13581     PL_hv_fetch_ent_mh  = NULL;
13582     PL_modcount         = proto_perl->Imodcount;
13583     PL_lastgotoprobe    = NULL;
13584     PL_dumpindent       = proto_perl->Idumpindent;
13585
13586     PL_efloatbuf        = NULL;         /* reinits on demand */
13587     PL_efloatsize       = 0;                    /* reinits on demand */
13588
13589     /* regex stuff */
13590
13591     PL_colorset         = 0;            /* reinits PL_colors[] */
13592     /*PL_colors[6]      = {0,0,0,0,0,0};*/
13593
13594     /* Pluggable optimizer */
13595     PL_peepp            = proto_perl->Ipeepp;
13596     PL_rpeepp           = proto_perl->Irpeepp;
13597     /* op_free() hook */
13598     PL_opfreehook       = proto_perl->Iopfreehook;
13599
13600 #ifdef USE_REENTRANT_API
13601     /* XXX: things like -Dm will segfault here in perlio, but doing
13602      *  PERL_SET_CONTEXT(proto_perl);
13603      * breaks too many other things
13604      */
13605     Perl_reentrant_init(aTHX);
13606 #endif
13607
13608     /* create SV map for pointer relocation */
13609     PL_ptr_table = ptr_table_new();
13610
13611     /* initialize these special pointers as early as possible */
13612     init_constants();
13613     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
13614     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
13615     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
13616
13617     /* create (a non-shared!) shared string table */
13618     PL_strtab           = newHV();
13619     HvSHAREKEYS_off(PL_strtab);
13620     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
13621     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
13622
13623     Zero(PL_sv_consts, SV_CONSTS_COUNT, SV*);
13624
13625     /* This PV will be free'd special way so must set it same way op.c does */
13626     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
13627     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
13628
13629     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
13630     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
13631     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
13632     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
13633
13634     param->stashes      = newAV();  /* Setup array of objects to call clone on */
13635     /* This makes no difference to the implementation, as it always pushes
13636        and shifts pointers to other SVs without changing their reference
13637        count, with the array becoming empty before it is freed. However, it
13638        makes it conceptually clear what is going on, and will avoid some
13639        work inside av.c, filling slots between AvFILL() and AvMAX() with
13640        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
13641     AvREAL_off(param->stashes);
13642
13643     if (!(flags & CLONEf_COPY_STACKS)) {
13644         param->unreferenced = newAV();
13645     }
13646
13647 #ifdef PERLIO_LAYERS
13648     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
13649     PerlIO_clone(aTHX_ proto_perl, param);
13650 #endif
13651
13652     PL_envgv            = gv_dup_inc(proto_perl->Ienvgv, param);
13653     PL_incgv            = gv_dup_inc(proto_perl->Iincgv, param);
13654     PL_hintgv           = gv_dup_inc(proto_perl->Ihintgv, param);
13655     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
13656     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
13657     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
13658
13659     /* switches */
13660     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
13661     PL_apiversion       = sv_dup_inc(proto_perl->Iapiversion, param);
13662     PL_inplace          = SAVEPV(proto_perl->Iinplace);
13663     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
13664
13665     /* magical thingies */
13666
13667     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
13668
13669     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
13670     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
13671     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
13672
13673    
13674     /* Clone the regex array */
13675     /* ORANGE FIXME for plugins, probably in the SV dup code.
13676        newSViv(PTR2IV(CALLREGDUPE(
13677        INT2PTR(REGEXP *, SvIVX(regex)), param))))
13678     */
13679     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
13680     PL_regex_pad = AvARRAY(PL_regex_padav);
13681
13682     PL_stashpadmax      = proto_perl->Istashpadmax;
13683     PL_stashpadix       = proto_perl->Istashpadix ;
13684     Newx(PL_stashpad, PL_stashpadmax, HV *);
13685     {
13686         PADOFFSET o = 0;
13687         for (; o < PL_stashpadmax; ++o)
13688             PL_stashpad[o] = hv_dup(proto_perl->Istashpad[o], param);
13689     }
13690
13691     /* shortcuts to various I/O objects */
13692     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
13693     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
13694     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
13695     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
13696     PL_argvgv           = gv_dup_inc(proto_perl->Iargvgv, param);
13697     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
13698     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
13699
13700     /* shortcuts to regexp stuff */
13701     PL_replgv           = gv_dup_inc(proto_perl->Ireplgv, param);
13702
13703     /* shortcuts to misc objects */
13704     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
13705
13706     /* shortcuts to debugging objects */
13707     PL_DBgv             = gv_dup_inc(proto_perl->IDBgv, param);
13708     PL_DBline           = gv_dup_inc(proto_perl->IDBline, param);
13709     PL_DBsub            = gv_dup_inc(proto_perl->IDBsub, param);
13710     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
13711     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
13712     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
13713
13714     /* symbol tables */
13715     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
13716     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
13717     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
13718     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
13719     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
13720
13721     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
13722     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
13723     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
13724     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
13725     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
13726     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
13727     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
13728     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
13729
13730     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
13731
13732     /* subprocess state */
13733     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
13734
13735     if (proto_perl->Iop_mask)
13736         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
13737     else
13738         PL_op_mask      = NULL;
13739     /* PL_asserting        = proto_perl->Iasserting; */
13740
13741     /* current interpreter roots */
13742     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
13743     OP_REFCNT_LOCK;
13744     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
13745     OP_REFCNT_UNLOCK;
13746
13747     /* runtime control stuff */
13748     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
13749
13750     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
13751
13752     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
13753
13754     /* interpreter atexit processing */
13755     PL_exitlistlen      = proto_perl->Iexitlistlen;
13756     if (PL_exitlistlen) {
13757         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13758         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13759     }
13760     else
13761         PL_exitlist     = (PerlExitListEntry*)NULL;
13762
13763     PL_my_cxt_size = proto_perl->Imy_cxt_size;
13764     if (PL_my_cxt_size) {
13765         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
13766         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
13767 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13768         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
13769         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
13770 #endif
13771     }
13772     else {
13773         PL_my_cxt_list  = (void**)NULL;
13774 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13775         PL_my_cxt_keys  = (const char**)NULL;
13776 #endif
13777     }
13778     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
13779     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
13780     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
13781     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
13782
13783     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
13784
13785     PAD_CLONE_VARS(proto_perl, param);
13786
13787 #ifdef HAVE_INTERP_INTERN
13788     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
13789 #endif
13790
13791     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
13792
13793 #ifdef PERL_USES_PL_PIDSTATUS
13794     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
13795 #endif
13796     PL_osname           = SAVEPV(proto_perl->Iosname);
13797     PL_parser           = parser_dup(proto_perl->Iparser, param);
13798
13799     /* XXX this only works if the saved cop has already been cloned */
13800     if (proto_perl->Iparser) {
13801         PL_parser->saved_curcop = (COP*)any_dup(
13802                                     proto_perl->Iparser->saved_curcop,
13803                                     proto_perl);
13804     }
13805
13806     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
13807
13808 #ifdef USE_LOCALE_COLLATE
13809     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
13810 #endif /* USE_LOCALE_COLLATE */
13811
13812 #ifdef USE_LOCALE_NUMERIC
13813     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
13814     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
13815 #endif /* !USE_LOCALE_NUMERIC */
13816
13817     /* Unicode inversion lists */
13818     PL_Latin1           = sv_dup_inc(proto_perl->ILatin1, param);
13819     PL_UpperLatin1      = sv_dup_inc(proto_perl->IUpperLatin1, param);
13820     PL_AboveLatin1      = sv_dup_inc(proto_perl->IAboveLatin1, param);
13821
13822     PL_NonL1NonFinalFold = sv_dup_inc(proto_perl->INonL1NonFinalFold, param);
13823     PL_HasMultiCharFold = sv_dup_inc(proto_perl->IHasMultiCharFold, param);
13824
13825     /* utf8 character class swashes */
13826     for (i = 0; i < POSIX_SWASH_COUNT; i++) {
13827         PL_utf8_swash_ptrs[i] = sv_dup_inc(proto_perl->Iutf8_swash_ptrs[i], param);
13828     }
13829     for (i = 0; i < POSIX_CC_COUNT; i++) {
13830         PL_XPosix_ptrs[i] = sv_dup_inc(proto_perl->IXPosix_ptrs[i], param);
13831     }
13832     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
13833     PL_utf8_X_regular_begin     = sv_dup_inc(proto_perl->Iutf8_X_regular_begin, param);
13834     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
13835     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
13836     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
13837     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
13838     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
13839     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
13840     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
13841     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
13842     PL_utf8_perl_idcont = sv_dup_inc(proto_perl->Iutf8_perl_idcont, param);
13843     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
13844     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
13845     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
13846     PL_utf8_charname_begin = sv_dup_inc(proto_perl->Iutf8_charname_begin, param);
13847     PL_utf8_charname_continue = sv_dup_inc(proto_perl->Iutf8_charname_continue, param);
13848
13849     if (proto_perl->Ipsig_pend) {
13850         Newxz(PL_psig_pend, SIG_SIZE, int);
13851     }
13852     else {
13853         PL_psig_pend    = (int*)NULL;
13854     }
13855
13856     if (proto_perl->Ipsig_name) {
13857         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
13858         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
13859                             param);
13860         PL_psig_ptr = PL_psig_name + SIG_SIZE;
13861     }
13862     else {
13863         PL_psig_ptr     = (SV**)NULL;
13864         PL_psig_name    = (SV**)NULL;
13865     }
13866
13867     if (flags & CLONEf_COPY_STACKS) {
13868         Newx(PL_tmps_stack, PL_tmps_max, SV*);
13869         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
13870                             PL_tmps_ix+1, param);
13871
13872         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
13873         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
13874         Newxz(PL_markstack, i, I32);
13875         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
13876                                                   - proto_perl->Imarkstack);
13877         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
13878                                                   - proto_perl->Imarkstack);
13879         Copy(proto_perl->Imarkstack, PL_markstack,
13880              PL_markstack_ptr - PL_markstack + 1, I32);
13881
13882         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13883          * NOTE: unlike the others! */
13884         Newxz(PL_scopestack, PL_scopestack_max, I32);
13885         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
13886
13887 #ifdef DEBUGGING
13888         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
13889         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
13890 #endif
13891         /* reset stack AV to correct length before its duped via
13892          * PL_curstackinfo */
13893         AvFILLp(proto_perl->Icurstack) =
13894                             proto_perl->Istack_sp - proto_perl->Istack_base;
13895
13896         /* NOTE: si_dup() looks at PL_markstack */
13897         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
13898
13899         /* PL_curstack          = PL_curstackinfo->si_stack; */
13900         PL_curstack             = av_dup(proto_perl->Icurstack, param);
13901         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
13902
13903         /* next PUSHs() etc. set *(PL_stack_sp+1) */
13904         PL_stack_base           = AvARRAY(PL_curstack);
13905         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
13906                                                    - proto_perl->Istack_base);
13907         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
13908
13909         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
13910         PL_savestack            = ss_dup(proto_perl, param);
13911     }
13912     else {
13913         init_stacks();
13914         ENTER;                  /* perl_destruct() wants to LEAVE; */
13915     }
13916
13917     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
13918     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
13919
13920     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
13921     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
13922     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
13923     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
13924     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
13925     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
13926
13927     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
13928
13929     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
13930     PL_firstgv          = gv_dup_inc(proto_perl->Ifirstgv, param);
13931     PL_secondgv         = gv_dup_inc(proto_perl->Isecondgv, param);
13932
13933     PL_stashcache       = newHV();
13934
13935     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
13936                                             proto_perl->Iwatchaddr);
13937     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
13938     if (PL_debug && PL_watchaddr) {
13939         PerlIO_printf(Perl_debug_log,
13940           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
13941           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
13942           PTR2UV(PL_watchok));
13943     }
13944
13945     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
13946     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
13947     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
13948
13949     /* Call the ->CLONE method, if it exists, for each of the stashes
13950        identified by sv_dup() above.
13951     */
13952     while(av_tindex(param->stashes) != -1) {
13953         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
13954         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
13955         if (cloner && GvCV(cloner)) {
13956             dSP;
13957             ENTER;
13958             SAVETMPS;
13959             PUSHMARK(SP);
13960             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
13961             PUTBACK;
13962             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
13963             FREETMPS;
13964             LEAVE;
13965         }
13966     }
13967
13968     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
13969         ptr_table_free(PL_ptr_table);
13970         PL_ptr_table = NULL;
13971     }
13972
13973     if (!(flags & CLONEf_COPY_STACKS)) {
13974         unreferenced_to_tmp_stack(param->unreferenced);
13975     }
13976
13977     SvREFCNT_dec(param->stashes);
13978
13979     /* orphaned? eg threads->new inside BEGIN or use */
13980     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
13981         SvREFCNT_inc_simple_void(PL_compcv);
13982         SAVEFREESV(PL_compcv);
13983     }
13984
13985     return my_perl;
13986 }
13987
13988 static void
13989 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
13990 {
13991     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
13992     
13993     if (AvFILLp(unreferenced) > -1) {
13994         SV **svp = AvARRAY(unreferenced);
13995         SV **const last = svp + AvFILLp(unreferenced);
13996         SSize_t count = 0;
13997
13998         do {
13999             if (SvREFCNT(*svp) == 1)
14000                 ++count;
14001         } while (++svp <= last);
14002
14003         EXTEND_MORTAL(count);
14004         svp = AvARRAY(unreferenced);
14005
14006         do {
14007             if (SvREFCNT(*svp) == 1) {
14008                 /* Our reference is the only one to this SV. This means that
14009                    in this thread, the scalar effectively has a 0 reference.
14010                    That doesn't work (cleanup never happens), so donate our
14011                    reference to it onto the save stack. */
14012                 PL_tmps_stack[++PL_tmps_ix] = *svp;
14013             } else {
14014                 /* As an optimisation, because we are already walking the
14015                    entire array, instead of above doing either
14016                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
14017                    release our reference to the scalar, so that at the end of
14018                    the array owns zero references to the scalars it happens to
14019                    point to. We are effectively converting the array from
14020                    AvREAL() on to AvREAL() off. This saves the av_clear()
14021                    (triggered by the SvREFCNT_dec(unreferenced) below) from
14022                    walking the array a second time.  */
14023                 SvREFCNT_dec(*svp);
14024             }
14025
14026         } while (++svp <= last);
14027         AvREAL_off(unreferenced);
14028     }
14029     SvREFCNT_dec_NN(unreferenced);
14030 }
14031
14032 void
14033 Perl_clone_params_del(CLONE_PARAMS *param)
14034 {
14035     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
14036        happy: */
14037     PerlInterpreter *const to = param->new_perl;
14038     dTHXa(to);
14039     PerlInterpreter *const was = PERL_GET_THX;
14040
14041     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
14042
14043     if (was != to) {
14044         PERL_SET_THX(to);
14045     }
14046
14047     SvREFCNT_dec(param->stashes);
14048     if (param->unreferenced)
14049         unreferenced_to_tmp_stack(param->unreferenced);
14050
14051     Safefree(param);
14052
14053     if (was != to) {
14054         PERL_SET_THX(was);
14055     }
14056 }
14057
14058 CLONE_PARAMS *
14059 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
14060 {
14061     dVAR;
14062     /* Need to play this game, as newAV() can call safesysmalloc(), and that
14063        does a dTHX; to get the context from thread local storage.
14064        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
14065        a version that passes in my_perl.  */
14066     PerlInterpreter *const was = PERL_GET_THX;
14067     CLONE_PARAMS *param;
14068
14069     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
14070
14071     if (was != to) {
14072         PERL_SET_THX(to);
14073     }
14074
14075     /* Given that we've set the context, we can do this unshared.  */
14076     Newx(param, 1, CLONE_PARAMS);
14077
14078     param->flags = 0;
14079     param->proto_perl = from;
14080     param->new_perl = to;
14081     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
14082     AvREAL_off(param->stashes);
14083     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
14084
14085     if (was != to) {
14086         PERL_SET_THX(was);
14087     }
14088     return param;
14089 }
14090
14091 #endif /* USE_ITHREADS */
14092
14093 void
14094 Perl_init_constants(pTHX)
14095 {
14096     SvREFCNT(&PL_sv_undef)      = SvREFCNT_IMMORTAL;
14097     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
14098     SvANY(&PL_sv_undef)         = NULL;
14099
14100     SvANY(&PL_sv_no)            = new_XPVNV();
14101     SvREFCNT(&PL_sv_no)         = SvREFCNT_IMMORTAL;
14102     SvFLAGS(&PL_sv_no)          = SVt_PVNV|SVf_READONLY
14103                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
14104                                   |SVp_POK|SVf_POK;
14105
14106     SvANY(&PL_sv_yes)           = new_XPVNV();
14107     SvREFCNT(&PL_sv_yes)        = SvREFCNT_IMMORTAL;
14108     SvFLAGS(&PL_sv_yes)         = SVt_PVNV|SVf_READONLY
14109                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
14110                                   |SVp_POK|SVf_POK;
14111
14112     SvPV_set(&PL_sv_no, (char*)PL_No);
14113     SvCUR_set(&PL_sv_no, 0);
14114     SvLEN_set(&PL_sv_no, 0);
14115     SvIV_set(&PL_sv_no, 0);
14116     SvNV_set(&PL_sv_no, 0);
14117
14118     SvPV_set(&PL_sv_yes, (char*)PL_Yes);
14119     SvCUR_set(&PL_sv_yes, 1);
14120     SvLEN_set(&PL_sv_yes, 0);
14121     SvIV_set(&PL_sv_yes, 1);
14122     SvNV_set(&PL_sv_yes, 1);
14123 }
14124
14125 /*
14126 =head1 Unicode Support
14127
14128 =for apidoc sv_recode_to_utf8
14129
14130 The encoding is assumed to be an Encode object, on entry the PV
14131 of the sv is assumed to be octets in that encoding, and the sv
14132 will be converted into Unicode (and UTF-8).
14133
14134 If the sv already is UTF-8 (or if it is not POK), or if the encoding
14135 is not a reference, nothing is done to the sv.  If the encoding is not
14136 an C<Encode::XS> Encoding object, bad things will happen.
14137 (See F<lib/encoding.pm> and L<Encode>.)
14138
14139 The PV of the sv is returned.
14140
14141 =cut */
14142
14143 char *
14144 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
14145 {
14146     dVAR;
14147
14148     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
14149
14150     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
14151         SV *uni;
14152         STRLEN len;
14153         const char *s;
14154         dSP;
14155         SV *nsv = sv;
14156         ENTER;
14157         PUSHSTACK;
14158         SAVETMPS;
14159         if (SvPADTMP(nsv)) {
14160             nsv = sv_newmortal();
14161             SvSetSV_nosteal(nsv, sv);
14162         }
14163         save_re_context();
14164         PUSHMARK(sp);
14165         EXTEND(SP, 3);
14166         PUSHs(encoding);
14167         PUSHs(nsv);
14168 /*
14169   NI-S 2002/07/09
14170   Passing sv_yes is wrong - it needs to be or'ed set of constants
14171   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
14172   remove converted chars from source.
14173
14174   Both will default the value - let them.
14175
14176         XPUSHs(&PL_sv_yes);
14177 */
14178         PUTBACK;
14179         call_method("decode", G_SCALAR);
14180         SPAGAIN;
14181         uni = POPs;
14182         PUTBACK;
14183         s = SvPV_const(uni, len);
14184         if (s != SvPVX_const(sv)) {
14185             SvGROW(sv, len + 1);
14186             Move(s, SvPVX(sv), len + 1, char);
14187             SvCUR_set(sv, len);
14188         }
14189         FREETMPS;
14190         POPSTACK;
14191         LEAVE;
14192         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
14193             /* clear pos and any utf8 cache */
14194             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
14195             if (mg)
14196                 mg->mg_len = -1;
14197             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
14198                 magic_setutf8(sv,mg); /* clear UTF8 cache */
14199         }
14200         SvUTF8_on(sv);
14201         return SvPVX(sv);
14202     }
14203     return SvPOKp(sv) ? SvPVX(sv) : NULL;
14204 }
14205
14206 /*
14207 =for apidoc sv_cat_decode
14208
14209 The encoding is assumed to be an Encode object, the PV of the ssv is
14210 assumed to be octets in that encoding and decoding the input starts
14211 from the position which (PV + *offset) pointed to.  The dsv will be
14212 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
14213 when the string tstr appears in decoding output or the input ends on
14214 the PV of the ssv.  The value which the offset points will be modified
14215 to the last input position on the ssv.
14216
14217 Returns TRUE if the terminator was found, else returns FALSE.
14218
14219 =cut */
14220
14221 bool
14222 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
14223                    SV *ssv, int *offset, char *tstr, int tlen)
14224 {
14225     dVAR;
14226     bool ret = FALSE;
14227
14228     PERL_ARGS_ASSERT_SV_CAT_DECODE;
14229
14230     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
14231         SV *offsv;
14232         dSP;
14233         ENTER;
14234         SAVETMPS;
14235         save_re_context();
14236         PUSHMARK(sp);
14237         EXTEND(SP, 6);
14238         PUSHs(encoding);
14239         PUSHs(dsv);
14240         PUSHs(ssv);
14241         offsv = newSViv(*offset);
14242         mPUSHs(offsv);
14243         mPUSHp(tstr, tlen);
14244         PUTBACK;
14245         call_method("cat_decode", G_SCALAR);
14246         SPAGAIN;
14247         ret = SvTRUE(TOPs);
14248         *offset = SvIV(offsv);
14249         PUTBACK;
14250         FREETMPS;
14251         LEAVE;
14252     }
14253     else
14254         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
14255     return ret;
14256
14257 }
14258
14259 /* ---------------------------------------------------------------------
14260  *
14261  * support functions for report_uninit()
14262  */
14263
14264 /* the maxiumum size of array or hash where we will scan looking
14265  * for the undefined element that triggered the warning */
14266
14267 #define FUV_MAX_SEARCH_SIZE 1000
14268
14269 /* Look for an entry in the hash whose value has the same SV as val;
14270  * If so, return a mortal copy of the key. */
14271
14272 STATIC SV*
14273 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
14274 {
14275     dVAR;
14276     HE **array;
14277     I32 i;
14278
14279     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
14280
14281     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
14282                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
14283         return NULL;
14284
14285     array = HvARRAY(hv);
14286
14287     for (i=HvMAX(hv); i>=0; i--) {
14288         HE *entry;
14289         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
14290             if (HeVAL(entry) != val)
14291                 continue;
14292             if (    HeVAL(entry) == &PL_sv_undef ||
14293                     HeVAL(entry) == &PL_sv_placeholder)
14294                 continue;
14295             if (!HeKEY(entry))
14296                 return NULL;
14297             if (HeKLEN(entry) == HEf_SVKEY)
14298                 return sv_mortalcopy(HeKEY_sv(entry));
14299             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
14300         }
14301     }
14302     return NULL;
14303 }
14304
14305 /* Look for an entry in the array whose value has the same SV as val;
14306  * If so, return the index, otherwise return -1. */
14307
14308 STATIC I32
14309 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
14310 {
14311     dVAR;
14312
14313     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
14314
14315     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
14316                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
14317         return -1;
14318
14319     if (val != &PL_sv_undef) {
14320         SV ** const svp = AvARRAY(av);
14321         I32 i;
14322
14323         for (i=AvFILLp(av); i>=0; i--)
14324             if (svp[i] == val)
14325                 return i;
14326     }
14327     return -1;
14328 }
14329
14330 /* varname(): return the name of a variable, optionally with a subscript.
14331  * If gv is non-zero, use the name of that global, along with gvtype (one
14332  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
14333  * targ.  Depending on the value of the subscript_type flag, return:
14334  */
14335
14336 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
14337 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
14338 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
14339 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
14340
14341 SV*
14342 Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
14343         const SV *const keyname, I32 aindex, int subscript_type)
14344 {
14345
14346     SV * const name = sv_newmortal();
14347     if (gv && isGV(gv)) {
14348         char buffer[2];
14349         buffer[0] = gvtype;
14350         buffer[1] = 0;
14351
14352         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
14353
14354         gv_fullname4(name, gv, buffer, 0);
14355
14356         if ((unsigned int)SvPVX(name)[1] <= 26) {
14357             buffer[0] = '^';
14358             buffer[1] = SvPVX(name)[1] + 'A' - 1;
14359
14360             /* Swap the 1 unprintable control character for the 2 byte pretty
14361                version - ie substr($name, 1, 1) = $buffer; */
14362             sv_insert(name, 1, 1, buffer, 2);
14363         }
14364     }
14365     else {
14366         CV * const cv = gv ? ((CV *)gv) : find_runcv(NULL);
14367         SV *sv;
14368         AV *av;
14369
14370         assert(!cv || SvTYPE(cv) == SVt_PVCV || SvTYPE(cv) == SVt_PVFM);
14371
14372         if (!cv || !CvPADLIST(cv))
14373             return NULL;
14374         av = *PadlistARRAY(CvPADLIST(cv));
14375         sv = *av_fetch(av, targ, FALSE);
14376         sv_setsv_flags(name, sv, 0);
14377     }
14378
14379     if (subscript_type == FUV_SUBSCRIPT_HASH) {
14380         SV * const sv = newSV(0);
14381         *SvPVX(name) = '$';
14382         Perl_sv_catpvf(aTHX_ name, "{%s}",
14383             pv_pretty(sv, SvPVX_const(keyname), SvCUR(keyname), 32, NULL, NULL,
14384                     PERL_PV_PRETTY_DUMP | PERL_PV_ESCAPE_UNI_DETECT ));
14385         SvREFCNT_dec_NN(sv);
14386     }
14387     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
14388         *SvPVX(name) = '$';
14389         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
14390     }
14391     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
14392         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
14393         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
14394     }
14395
14396     return name;
14397 }
14398
14399
14400 /*
14401 =for apidoc find_uninit_var
14402
14403 Find the name of the undefined variable (if any) that caused the operator
14404 to issue a "Use of uninitialized value" warning.
14405 If match is true, only return a name if its value matches uninit_sv.
14406 So roughly speaking, if a unary operator (such as OP_COS) generates a
14407 warning, then following the direct child of the op may yield an
14408 OP_PADSV or OP_GV that gives the name of the undefined variable.  On the
14409 other hand, with OP_ADD there are two branches to follow, so we only print
14410 the variable name if we get an exact match.
14411
14412 The name is returned as a mortal SV.
14413
14414 Assumes that PL_op is the op that originally triggered the error, and that
14415 PL_comppad/PL_curpad points to the currently executing pad.
14416
14417 =cut
14418 */
14419
14420 STATIC SV *
14421 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
14422                   bool match)
14423 {
14424     dVAR;
14425     SV *sv;
14426     const GV *gv;
14427     const OP *o, *o2, *kid;
14428
14429     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
14430                             uninit_sv == &PL_sv_placeholder)))
14431         return NULL;
14432
14433     switch (obase->op_type) {
14434
14435     case OP_RV2AV:
14436     case OP_RV2HV:
14437     case OP_PADAV:
14438     case OP_PADHV:
14439       {
14440         const bool pad  = (    obase->op_type == OP_PADAV
14441                             || obase->op_type == OP_PADHV
14442                             || obase->op_type == OP_PADRANGE
14443                           );
14444
14445         const bool hash = (    obase->op_type == OP_PADHV
14446                             || obase->op_type == OP_RV2HV
14447                             || (obase->op_type == OP_PADRANGE
14448                                 && SvTYPE(PAD_SVl(obase->op_targ)) == SVt_PVHV)
14449                           );
14450         I32 index = 0;
14451         SV *keysv = NULL;
14452         int subscript_type = FUV_SUBSCRIPT_WITHIN;
14453
14454         if (pad) { /* @lex, %lex */
14455             sv = PAD_SVl(obase->op_targ);
14456             gv = NULL;
14457         }
14458         else {
14459             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
14460             /* @global, %global */
14461                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
14462                 if (!gv)
14463                     break;
14464                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
14465             }
14466             else if (obase == PL_op) /* @{expr}, %{expr} */
14467                 return find_uninit_var(cUNOPx(obase)->op_first,
14468                                                     uninit_sv, match);
14469             else /* @{expr}, %{expr} as a sub-expression */
14470                 return NULL;
14471         }
14472
14473         /* attempt to find a match within the aggregate */
14474         if (hash) {
14475             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14476             if (keysv)
14477                 subscript_type = FUV_SUBSCRIPT_HASH;
14478         }
14479         else {
14480             index = find_array_subscript((const AV *)sv, uninit_sv);
14481             if (index >= 0)
14482                 subscript_type = FUV_SUBSCRIPT_ARRAY;
14483         }
14484
14485         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
14486             break;
14487
14488         return varname(gv, hash ? '%' : '@', obase->op_targ,
14489                                     keysv, index, subscript_type);
14490       }
14491
14492     case OP_RV2SV:
14493         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
14494             /* $global */
14495             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
14496             if (!gv || !GvSTASH(gv))
14497                 break;
14498             if (match && (GvSV(gv) != uninit_sv))
14499                 break;
14500             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
14501         }
14502         /* ${expr} */
14503         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
14504
14505     case OP_PADSV:
14506         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
14507             break;
14508         return varname(NULL, '$', obase->op_targ,
14509                                     NULL, 0, FUV_SUBSCRIPT_NONE);
14510
14511     case OP_GVSV:
14512         gv = cGVOPx_gv(obase);
14513         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
14514             break;
14515         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
14516
14517     case OP_AELEMFAST_LEX:
14518         if (match) {
14519             SV **svp;
14520             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
14521             if (!av || SvRMAGICAL(av))
14522                 break;
14523             svp = av_fetch(av, (I8)obase->op_private, FALSE);
14524             if (!svp || *svp != uninit_sv)
14525                 break;
14526         }
14527         return varname(NULL, '$', obase->op_targ,
14528                        NULL, (I8)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14529     case OP_AELEMFAST:
14530         {
14531             gv = cGVOPx_gv(obase);
14532             if (!gv)
14533                 break;
14534             if (match) {
14535                 SV **svp;
14536                 AV *const av = GvAV(gv);
14537                 if (!av || SvRMAGICAL(av))
14538                     break;
14539                 svp = av_fetch(av, (I8)obase->op_private, FALSE);
14540                 if (!svp || *svp != uninit_sv)
14541                     break;
14542             }
14543             return varname(gv, '$', 0,
14544                     NULL, (I8)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14545         }
14546         break;
14547
14548     case OP_EXISTS:
14549         o = cUNOPx(obase)->op_first;
14550         if (!o || o->op_type != OP_NULL ||
14551                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
14552             break;
14553         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
14554
14555     case OP_AELEM:
14556     case OP_HELEM:
14557     {
14558         bool negate = FALSE;
14559
14560         if (PL_op == obase)
14561             /* $a[uninit_expr] or $h{uninit_expr} */
14562             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
14563
14564         gv = NULL;
14565         o = cBINOPx(obase)->op_first;
14566         kid = cBINOPx(obase)->op_last;
14567
14568         /* get the av or hv, and optionally the gv */
14569         sv = NULL;
14570         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
14571             sv = PAD_SV(o->op_targ);
14572         }
14573         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
14574                 && cUNOPo->op_first->op_type == OP_GV)
14575         {
14576             gv = cGVOPx_gv(cUNOPo->op_first);
14577             if (!gv)
14578                 break;
14579             sv = o->op_type
14580                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
14581         }
14582         if (!sv)
14583             break;
14584
14585         if (kid && kid->op_type == OP_NEGATE) {
14586             negate = TRUE;
14587             kid = cUNOPx(kid)->op_first;
14588         }
14589
14590         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
14591             /* index is constant */
14592             SV* kidsv;
14593             if (negate) {
14594                 kidsv = sv_2mortal(newSVpvs("-"));
14595                 sv_catsv(kidsv, cSVOPx_sv(kid));
14596             }
14597             else
14598                 kidsv = cSVOPx_sv(kid);
14599             if (match) {
14600                 if (SvMAGICAL(sv))
14601                     break;
14602                 if (obase->op_type == OP_HELEM) {
14603                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
14604                     if (!he || HeVAL(he) != uninit_sv)
14605                         break;
14606                 }
14607                 else {
14608                     SV * const  opsv = cSVOPx_sv(kid);
14609                     const IV  opsviv = SvIV(opsv);
14610                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
14611                         negate ? - opsviv : opsviv,
14612                         FALSE);
14613                     if (!svp || *svp != uninit_sv)
14614                         break;
14615                 }
14616             }
14617             if (obase->op_type == OP_HELEM)
14618                 return varname(gv, '%', o->op_targ,
14619                             kidsv, 0, FUV_SUBSCRIPT_HASH);
14620             else
14621                 return varname(gv, '@', o->op_targ, NULL,
14622                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14623                     FUV_SUBSCRIPT_ARRAY);
14624         }
14625         else  {
14626             /* index is an expression;
14627              * attempt to find a match within the aggregate */
14628             if (obase->op_type == OP_HELEM) {
14629                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14630                 if (keysv)
14631                     return varname(gv, '%', o->op_targ,
14632                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
14633             }
14634             else {
14635                 const I32 index
14636                     = find_array_subscript((const AV *)sv, uninit_sv);
14637                 if (index >= 0)
14638                     return varname(gv, '@', o->op_targ,
14639                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
14640             }
14641             if (match)
14642                 break;
14643             return varname(gv,
14644                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
14645                 ? '@' : '%',
14646                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
14647         }
14648         break;
14649     }
14650
14651     case OP_AASSIGN:
14652         /* only examine RHS */
14653         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
14654
14655     case OP_OPEN:
14656         o = cUNOPx(obase)->op_first;
14657         if (   o->op_type == OP_PUSHMARK
14658            || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)
14659         )
14660             o = o->op_sibling;
14661
14662         if (!o->op_sibling) {
14663             /* one-arg version of open is highly magical */
14664
14665             if (o->op_type == OP_GV) { /* open FOO; */
14666                 gv = cGVOPx_gv(o);
14667                 if (match && GvSV(gv) != uninit_sv)
14668                     break;
14669                 return varname(gv, '$', 0,
14670                             NULL, 0, FUV_SUBSCRIPT_NONE);
14671             }
14672             /* other possibilities not handled are:
14673              * open $x; or open my $x;  should return '${*$x}'
14674              * open expr;               should return '$'.expr ideally
14675              */
14676              break;
14677         }
14678         goto do_op;
14679
14680     /* ops where $_ may be an implicit arg */
14681     case OP_TRANS:
14682     case OP_TRANSR:
14683     case OP_SUBST:
14684     case OP_MATCH:
14685         if ( !(obase->op_flags & OPf_STACKED)) {
14686             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
14687                                  ? PAD_SVl(obase->op_targ)
14688                                  : DEFSV))
14689             {
14690                 sv = sv_newmortal();
14691                 sv_setpvs(sv, "$_");
14692                 return sv;
14693             }
14694         }
14695         goto do_op;
14696
14697     case OP_PRTF:
14698     case OP_PRINT:
14699     case OP_SAY:
14700         match = 1; /* print etc can return undef on defined args */
14701         /* skip filehandle as it can't produce 'undef' warning  */
14702         o = cUNOPx(obase)->op_first;
14703         if ((obase->op_flags & OPf_STACKED)
14704             &&
14705                (   o->op_type == OP_PUSHMARK
14706                || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)))
14707             o = o->op_sibling->op_sibling;
14708         goto do_op2;
14709
14710
14711     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
14712     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
14713
14714         /* the following ops are capable of returning PL_sv_undef even for
14715          * defined arg(s) */
14716
14717     case OP_BACKTICK:
14718     case OP_PIPE_OP:
14719     case OP_FILENO:
14720     case OP_BINMODE:
14721     case OP_TIED:
14722     case OP_GETC:
14723     case OP_SYSREAD:
14724     case OP_SEND:
14725     case OP_IOCTL:
14726     case OP_SOCKET:
14727     case OP_SOCKPAIR:
14728     case OP_BIND:
14729     case OP_CONNECT:
14730     case OP_LISTEN:
14731     case OP_ACCEPT:
14732     case OP_SHUTDOWN:
14733     case OP_SSOCKOPT:
14734     case OP_GETPEERNAME:
14735     case OP_FTRREAD:
14736     case OP_FTRWRITE:
14737     case OP_FTREXEC:
14738     case OP_FTROWNED:
14739     case OP_FTEREAD:
14740     case OP_FTEWRITE:
14741     case OP_FTEEXEC:
14742     case OP_FTEOWNED:
14743     case OP_FTIS:
14744     case OP_FTZERO:
14745     case OP_FTSIZE:
14746     case OP_FTFILE:
14747     case OP_FTDIR:
14748     case OP_FTLINK:
14749     case OP_FTPIPE:
14750     case OP_FTSOCK:
14751     case OP_FTBLK:
14752     case OP_FTCHR:
14753     case OP_FTTTY:
14754     case OP_FTSUID:
14755     case OP_FTSGID:
14756     case OP_FTSVTX:
14757     case OP_FTTEXT:
14758     case OP_FTBINARY:
14759     case OP_FTMTIME:
14760     case OP_FTATIME:
14761     case OP_FTCTIME:
14762     case OP_READLINK:
14763     case OP_OPEN_DIR:
14764     case OP_READDIR:
14765     case OP_TELLDIR:
14766     case OP_SEEKDIR:
14767     case OP_REWINDDIR:
14768     case OP_CLOSEDIR:
14769     case OP_GMTIME:
14770     case OP_ALARM:
14771     case OP_SEMGET:
14772     case OP_GETLOGIN:
14773     case OP_UNDEF:
14774     case OP_SUBSTR:
14775     case OP_AEACH:
14776     case OP_EACH:
14777     case OP_SORT:
14778     case OP_CALLER:
14779     case OP_DOFILE:
14780     case OP_PROTOTYPE:
14781     case OP_NCMP:
14782     case OP_SMARTMATCH:
14783     case OP_UNPACK:
14784     case OP_SYSOPEN:
14785     case OP_SYSSEEK:
14786         match = 1;
14787         goto do_op;
14788
14789     case OP_ENTERSUB:
14790     case OP_GOTO:
14791         /* XXX tmp hack: these two may call an XS sub, and currently
14792           XS subs don't have a SUB entry on the context stack, so CV and
14793           pad determination goes wrong, and BAD things happen. So, just
14794           don't try to determine the value under those circumstances.
14795           Need a better fix at dome point. DAPM 11/2007 */
14796         break;
14797
14798     case OP_FLIP:
14799     case OP_FLOP:
14800     {
14801         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
14802         if (gv && GvSV(gv) == uninit_sv)
14803             return newSVpvs_flags("$.", SVs_TEMP);
14804         goto do_op;
14805     }
14806
14807     case OP_POS:
14808         /* def-ness of rval pos() is independent of the def-ness of its arg */
14809         if ( !(obase->op_flags & OPf_MOD))
14810             break;
14811
14812     case OP_SCHOMP:
14813     case OP_CHOMP:
14814         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
14815             return newSVpvs_flags("${$/}", SVs_TEMP);
14816         /*FALLTHROUGH*/
14817
14818     default:
14819     do_op:
14820         if (!(obase->op_flags & OPf_KIDS))
14821             break;
14822         o = cUNOPx(obase)->op_first;
14823         
14824     do_op2:
14825         if (!o)
14826             break;
14827
14828         /* This loop checks all the kid ops, skipping any that cannot pos-
14829          * sibly be responsible for the uninitialized value; i.e., defined
14830          * constants and ops that return nothing.  If there is only one op
14831          * left that is not skipped, then we *know* it is responsible for
14832          * the uninitialized value.  If there is more than one op left, we
14833          * have to look for an exact match in the while() loop below.
14834          * Note that we skip padrange, because the individual pad ops that
14835          * it replaced are still in the tree, so we work on them instead.
14836          */
14837         o2 = NULL;
14838         for (kid=o; kid; kid = kid->op_sibling) {
14839             if (kid) {
14840                 const OPCODE type = kid->op_type;
14841                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
14842                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
14843                   || (type == OP_PUSHMARK)
14844                   || (type == OP_PADRANGE)
14845                 )
14846                 continue;
14847             }
14848             if (o2) { /* more than one found */
14849                 o2 = NULL;
14850                 break;
14851             }
14852             o2 = kid;
14853         }
14854         if (o2)
14855             return find_uninit_var(o2, uninit_sv, match);
14856
14857         /* scan all args */
14858         while (o) {
14859             sv = find_uninit_var(o, uninit_sv, 1);
14860             if (sv)
14861                 return sv;
14862             o = o->op_sibling;
14863         }
14864         break;
14865     }
14866     return NULL;
14867 }
14868
14869
14870 /*
14871 =for apidoc report_uninit
14872
14873 Print appropriate "Use of uninitialized variable" warning.
14874
14875 =cut
14876 */
14877
14878 void
14879 Perl_report_uninit(pTHX_ const SV *uninit_sv)
14880 {
14881     dVAR;
14882     if (PL_op) {
14883         SV* varname = NULL;
14884         if (uninit_sv && PL_curpad) {
14885             varname = find_uninit_var(PL_op, uninit_sv,0);
14886             if (varname)
14887                 sv_insert(varname, 0, 0, " ", 1);
14888         }
14889         /* PL_warn_uninit_sv is constant */
14890         GCC_DIAG_IGNORE(-Wformat-nonliteral);
14891         /* diag_listed_as: Use of uninitialized value%s */
14892         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
14893                 SVfARG(varname ? varname : &PL_sv_no),
14894                 " in ", OP_DESC(PL_op));
14895         GCC_DIAG_RESTORE;
14896     }
14897     else {
14898         /* PL_warn_uninit is constant */
14899         GCC_DIAG_IGNORE(-Wformat-nonliteral);
14900         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
14901                     "", "", "");
14902         GCC_DIAG_RESTORE;
14903     }
14904 }
14905
14906 /*
14907  * Local variables:
14908  * c-indentation-style: bsd
14909  * c-basic-offset: 4
14910  * indent-tabs-mode: nil
14911  * End:
14912  *
14913  * ex: set ts=8 sts=4 sw=4 et:
14914  */