This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove IO::Socket::IP examples as per Porting/Maintainers.pl
[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 (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
9506             if (SvROK(sv))
9507                 sv_unref(sv);
9508             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
9509             SvGROW(sv, len + 1);
9510             Move(s,SvPVX(sv),len,char);
9511             SvCUR_set(sv, len);
9512             SvPVX(sv)[len] = '\0';
9513         }
9514         if (!SvPOK(sv)) {
9515             SvPOK_on(sv);               /* validate pointer */
9516             SvTAINT(sv);
9517             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9518                                   PTR2UV(sv),SvPVX_const(sv)));
9519         }
9520     }
9521     (void)SvPOK_only_UTF8(sv);
9522     return SvPVX_mutable(sv);
9523 }
9524
9525 /*
9526 =for apidoc sv_pvbyten_force
9527
9528 The backend for the C<SvPVbytex_force> macro.  Always use the macro
9529 instead.
9530
9531 =cut
9532 */
9533
9534 char *
9535 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9536 {
9537     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9538
9539     sv_pvn_force(sv,lp);
9540     sv_utf8_downgrade(sv,0);
9541     *lp = SvCUR(sv);
9542     return SvPVX(sv);
9543 }
9544
9545 /*
9546 =for apidoc sv_pvutf8n_force
9547
9548 The backend for the C<SvPVutf8x_force> macro.  Always use the macro
9549 instead.
9550
9551 =cut
9552 */
9553
9554 char *
9555 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9556 {
9557     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9558
9559     sv_pvn_force(sv,0);
9560     sv_utf8_upgrade_nomg(sv);
9561     *lp = SvCUR(sv);
9562     return SvPVX(sv);
9563 }
9564
9565 /*
9566 =for apidoc sv_reftype
9567
9568 Returns a string describing what the SV is a reference to.
9569
9570 =cut
9571 */
9572
9573 const char *
9574 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9575 {
9576     PERL_ARGS_ASSERT_SV_REFTYPE;
9577     if (ob && SvOBJECT(sv)) {
9578         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
9579     }
9580     else {
9581         /* WARNING - There is code, for instance in mg.c, that assumes that
9582          * the only reason that sv_reftype(sv,0) would return a string starting
9583          * with 'L' or 'S' is that it is a LVALUE or a SCALAR.
9584          * Yes this a dodgy way to do type checking, but it saves practically reimplementing
9585          * this routine inside other subs, and it saves time.
9586          * Do not change this assumption without searching for "dodgy type check" in
9587          * the code.
9588          * - Yves */
9589         switch (SvTYPE(sv)) {
9590         case SVt_NULL:
9591         case SVt_IV:
9592         case SVt_NV:
9593         case SVt_PV:
9594         case SVt_PVIV:
9595         case SVt_PVNV:
9596         case SVt_PVMG:
9597                                 if (SvVOK(sv))
9598                                     return "VSTRING";
9599                                 if (SvROK(sv))
9600                                     return "REF";
9601                                 else
9602                                     return "SCALAR";
9603
9604         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9605                                 /* tied lvalues should appear to be
9606                                  * scalars for backwards compatibility */
9607                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
9608                                     ? "SCALAR" : "LVALUE");
9609         case SVt_PVAV:          return "ARRAY";
9610         case SVt_PVHV:          return "HASH";
9611         case SVt_PVCV:          return "CODE";
9612         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9613                                     ? "GLOB" : "SCALAR");
9614         case SVt_PVFM:          return "FORMAT";
9615         case SVt_PVIO:          return "IO";
9616         case SVt_INVLIST:       return "INVLIST";
9617         case SVt_REGEXP:        return "REGEXP";
9618         default:                return "UNKNOWN";
9619         }
9620     }
9621 }
9622
9623 /*
9624 =for apidoc sv_ref
9625
9626 Returns a SV describing what the SV passed in is a reference to.
9627
9628 =cut
9629 */
9630
9631 SV *
9632 Perl_sv_ref(pTHX_ SV *dst, const SV *const sv, const int ob)
9633 {
9634     PERL_ARGS_ASSERT_SV_REF;
9635
9636     if (!dst)
9637         dst = sv_newmortal();
9638
9639     if (ob && SvOBJECT(sv)) {
9640         HvNAME_get(SvSTASH(sv))
9641                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
9642                     : sv_setpvn(dst, "__ANON__", 8);
9643     }
9644     else {
9645         const char * reftype = sv_reftype(sv, 0);
9646         sv_setpv(dst, reftype);
9647     }
9648     return dst;
9649 }
9650
9651 /*
9652 =for apidoc sv_isobject
9653
9654 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9655 object.  If the SV is not an RV, or if the object is not blessed, then this
9656 will return false.
9657
9658 =cut
9659 */
9660
9661 int
9662 Perl_sv_isobject(pTHX_ SV *sv)
9663 {
9664     if (!sv)
9665         return 0;
9666     SvGETMAGIC(sv);
9667     if (!SvROK(sv))
9668         return 0;
9669     sv = SvRV(sv);
9670     if (!SvOBJECT(sv))
9671         return 0;
9672     return 1;
9673 }
9674
9675 /*
9676 =for apidoc sv_isa
9677
9678 Returns a boolean indicating whether the SV is blessed into the specified
9679 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9680 an inheritance relationship.
9681
9682 =cut
9683 */
9684
9685 int
9686 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
9687 {
9688     const char *hvname;
9689
9690     PERL_ARGS_ASSERT_SV_ISA;
9691
9692     if (!sv)
9693         return 0;
9694     SvGETMAGIC(sv);
9695     if (!SvROK(sv))
9696         return 0;
9697     sv = SvRV(sv);
9698     if (!SvOBJECT(sv))
9699         return 0;
9700     hvname = HvNAME_get(SvSTASH(sv));
9701     if (!hvname)
9702         return 0;
9703
9704     return strEQ(hvname, name);
9705 }
9706
9707 /*
9708 =for apidoc newSVrv
9709
9710 Creates a new SV for the existing RV, C<rv>, to point to.  If C<rv> is not an
9711 RV then it will be upgraded to one.  If C<classname> is non-null then the new
9712 SV will be blessed in the specified package.  The new SV is returned and its
9713 reference count is 1.  The reference count 1 is owned by C<rv>.
9714
9715 =cut
9716 */
9717
9718 SV*
9719 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
9720 {
9721     dVAR;
9722     SV *sv;
9723
9724     PERL_ARGS_ASSERT_NEWSVRV;
9725
9726     new_SV(sv);
9727
9728     SV_CHECK_THINKFIRST_COW_DROP(rv);
9729
9730     if (SvTYPE(rv) >= SVt_PVMG) {
9731         const U32 refcnt = SvREFCNT(rv);
9732         SvREFCNT(rv) = 0;
9733         sv_clear(rv);
9734         SvFLAGS(rv) = 0;
9735         SvREFCNT(rv) = refcnt;
9736
9737         sv_upgrade(rv, SVt_IV);
9738     } else if (SvROK(rv)) {
9739         SvREFCNT_dec(SvRV(rv));
9740     } else {
9741         prepare_SV_for_RV(rv);
9742     }
9743
9744     SvOK_off(rv);
9745     SvRV_set(rv, sv);
9746     SvROK_on(rv);
9747
9748     if (classname) {
9749         HV* const stash = gv_stashpv(classname, GV_ADD);
9750         (void)sv_bless(rv, stash);
9751     }
9752     return sv;
9753 }
9754
9755 SV *
9756 Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible)
9757 {
9758     SV * const lv = newSV_type(SVt_PVLV);
9759     PERL_ARGS_ASSERT_NEWSVAVDEFELEM;
9760     LvTYPE(lv) = 'y';
9761     sv_magic(lv, NULL, PERL_MAGIC_defelem, NULL, 0);
9762     LvTARG(lv) = SvREFCNT_inc_simple_NN(av);
9763     LvSTARGOFF(lv) = ix;
9764     LvTARGLEN(lv) = extendible ? 1 : (STRLEN)UV_MAX;
9765     return lv;
9766 }
9767
9768 /*
9769 =for apidoc sv_setref_pv
9770
9771 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
9772 argument will be upgraded to an RV.  That RV will be modified to point to
9773 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
9774 into the SV.  The C<classname> argument indicates the package for the
9775 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9776 will have a reference count of 1, and the RV will be returned.
9777
9778 Do not use with other Perl types such as HV, AV, SV, CV, because those
9779 objects will become corrupted by the pointer copy process.
9780
9781 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
9782
9783 =cut
9784 */
9785
9786 SV*
9787 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
9788 {
9789     dVAR;
9790
9791     PERL_ARGS_ASSERT_SV_SETREF_PV;
9792
9793     if (!pv) {
9794         sv_setsv(rv, &PL_sv_undef);
9795         SvSETMAGIC(rv);
9796     }
9797     else
9798         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
9799     return rv;
9800 }
9801
9802 /*
9803 =for apidoc sv_setref_iv
9804
9805 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
9806 argument will be upgraded to an RV.  That RV will be modified to point to
9807 the new SV.  The C<classname> argument indicates the package for the
9808 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9809 will have a reference count of 1, and the RV will be returned.
9810
9811 =cut
9812 */
9813
9814 SV*
9815 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
9816 {
9817     PERL_ARGS_ASSERT_SV_SETREF_IV;
9818
9819     sv_setiv(newSVrv(rv,classname), iv);
9820     return rv;
9821 }
9822
9823 /*
9824 =for apidoc sv_setref_uv
9825
9826 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
9827 argument will be upgraded to an RV.  That RV will be modified to point to
9828 the new SV.  The C<classname> argument indicates the package for the
9829 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9830 will have a reference count of 1, and the RV will be returned.
9831
9832 =cut
9833 */
9834
9835 SV*
9836 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
9837 {
9838     PERL_ARGS_ASSERT_SV_SETREF_UV;
9839
9840     sv_setuv(newSVrv(rv,classname), uv);
9841     return rv;
9842 }
9843
9844 /*
9845 =for apidoc sv_setref_nv
9846
9847 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
9848 argument will be upgraded to an RV.  That RV will be modified to point to
9849 the new SV.  The C<classname> argument indicates the package for the
9850 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9851 will have a reference count of 1, and the RV will be returned.
9852
9853 =cut
9854 */
9855
9856 SV*
9857 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
9858 {
9859     PERL_ARGS_ASSERT_SV_SETREF_NV;
9860
9861     sv_setnv(newSVrv(rv,classname), nv);
9862     return rv;
9863 }
9864
9865 /*
9866 =for apidoc sv_setref_pvn
9867
9868 Copies a string into a new SV, optionally blessing the SV.  The length of the
9869 string must be specified with C<n>.  The C<rv> argument will be upgraded to
9870 an RV.  That RV will be modified to point to the new SV.  The C<classname>
9871 argument indicates the package for the blessing.  Set C<classname> to
9872 C<NULL> to avoid the blessing.  The new SV will have a reference count
9873 of 1, and the RV will be returned.
9874
9875 Note that C<sv_setref_pv> copies the pointer while this copies the string.
9876
9877 =cut
9878 */
9879
9880 SV*
9881 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
9882                    const char *const pv, const STRLEN n)
9883 {
9884     PERL_ARGS_ASSERT_SV_SETREF_PVN;
9885
9886     sv_setpvn(newSVrv(rv,classname), pv, n);
9887     return rv;
9888 }
9889
9890 /*
9891 =for apidoc sv_bless
9892
9893 Blesses an SV into a specified package.  The SV must be an RV.  The package
9894 must be designated by its stash (see C<gv_stashpv()>).  The reference count
9895 of the SV is unaffected.
9896
9897 =cut
9898 */
9899
9900 SV*
9901 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
9902 {
9903     dVAR;
9904     SV *tmpRef;
9905     HV *oldstash = NULL;
9906
9907     PERL_ARGS_ASSERT_SV_BLESS;
9908
9909     SvGETMAGIC(sv);
9910     if (!SvROK(sv))
9911         Perl_croak(aTHX_ "Can't bless non-reference value");
9912     tmpRef = SvRV(sv);
9913     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
9914         if (SvREADONLY(tmpRef))
9915             Perl_croak_no_modify();
9916         if (SvOBJECT(tmpRef)) {
9917             oldstash = SvSTASH(tmpRef);
9918         }
9919     }
9920     SvOBJECT_on(tmpRef);
9921     SvUPGRADE(tmpRef, SVt_PVMG);
9922     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
9923     SvREFCNT_dec(oldstash);
9924
9925     if(SvSMAGICAL(tmpRef))
9926         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
9927             mg_set(tmpRef);
9928
9929
9930
9931     return sv;
9932 }
9933
9934 /* Downgrades a PVGV to a PVMG. If it's actually a PVLV, we leave the type
9935  * as it is after unglobbing it.
9936  */
9937
9938 PERL_STATIC_INLINE void
9939 S_sv_unglob(pTHX_ SV *const sv, U32 flags)
9940 {
9941     dVAR;
9942     void *xpvmg;
9943     HV *stash;
9944     SV * const temp = flags & SV_COW_DROP_PV ? NULL : sv_newmortal();
9945
9946     PERL_ARGS_ASSERT_SV_UNGLOB;
9947
9948     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
9949     SvFAKE_off(sv);
9950     if (!(flags & SV_COW_DROP_PV))
9951         gv_efullname3(temp, MUTABLE_GV(sv), "*");
9952
9953     SvREFCNT_inc_simple_void_NN(sv_2mortal(sv));
9954     if (GvGP(sv)) {
9955         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
9956            && HvNAME_get(stash))
9957             mro_method_changed_in(stash);
9958         gp_free(MUTABLE_GV(sv));
9959     }
9960     if (GvSTASH(sv)) {
9961         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
9962         GvSTASH(sv) = NULL;
9963     }
9964     GvMULTI_off(sv);
9965     if (GvNAME_HEK(sv)) {
9966         unshare_hek(GvNAME_HEK(sv));
9967     }
9968     isGV_with_GP_off(sv);
9969
9970     if(SvTYPE(sv) == SVt_PVGV) {
9971         /* need to keep SvANY(sv) in the right arena */
9972         xpvmg = new_XPVMG();
9973         StructCopy(SvANY(sv), xpvmg, XPVMG);
9974         del_XPVGV(SvANY(sv));
9975         SvANY(sv) = xpvmg;
9976
9977         SvFLAGS(sv) &= ~SVTYPEMASK;
9978         SvFLAGS(sv) |= SVt_PVMG;
9979     }
9980
9981     /* Intentionally not calling any local SET magic, as this isn't so much a
9982        set operation as merely an internal storage change.  */
9983     if (flags & SV_COW_DROP_PV) SvOK_off(sv);
9984     else sv_setsv_flags(sv, temp, 0);
9985
9986     if ((const GV *)sv == PL_last_in_gv)
9987         PL_last_in_gv = NULL;
9988     else if ((const GV *)sv == PL_statgv)
9989         PL_statgv = NULL;
9990 }
9991
9992 /*
9993 =for apidoc sv_unref_flags
9994
9995 Unsets the RV status of the SV, and decrements the reference count of
9996 whatever was being referenced by the RV.  This can almost be thought of
9997 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9998 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
9999 (otherwise the decrementing is conditional on the reference count being
10000 different from one or the reference being a readonly SV).
10001 See C<SvROK_off>.
10002
10003 =cut
10004 */
10005
10006 void
10007 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
10008 {
10009     SV* const target = SvRV(ref);
10010
10011     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
10012
10013     if (SvWEAKREF(ref)) {
10014         sv_del_backref(target, ref);
10015         SvWEAKREF_off(ref);
10016         SvRV_set(ref, NULL);
10017         return;
10018     }
10019     SvRV_set(ref, NULL);
10020     SvROK_off(ref);
10021     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
10022        assigned to as BEGIN {$a = \"Foo"} will fail.  */
10023     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
10024         SvREFCNT_dec_NN(target);
10025     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
10026         sv_2mortal(target);     /* Schedule for freeing later */
10027 }
10028
10029 /*
10030 =for apidoc sv_untaint
10031
10032 Untaint an SV.  Use C<SvTAINTED_off> instead.
10033
10034 =cut
10035 */
10036
10037 void
10038 Perl_sv_untaint(pTHX_ SV *const sv)
10039 {
10040     PERL_ARGS_ASSERT_SV_UNTAINT;
10041
10042     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10043         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10044         if (mg)
10045             mg->mg_len &= ~1;
10046     }
10047 }
10048
10049 /*
10050 =for apidoc sv_tainted
10051
10052 Test an SV for taintedness.  Use C<SvTAINTED> instead.
10053
10054 =cut
10055 */
10056
10057 bool
10058 Perl_sv_tainted(pTHX_ SV *const sv)
10059 {
10060     PERL_ARGS_ASSERT_SV_TAINTED;
10061
10062     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
10063         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
10064         if (mg && (mg->mg_len & 1) )
10065             return TRUE;
10066     }
10067     return FALSE;
10068 }
10069
10070 /*
10071 =for apidoc sv_setpviv
10072
10073 Copies an integer into the given SV, also updating its string value.
10074 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
10075
10076 =cut
10077 */
10078
10079 void
10080 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
10081 {
10082     char buf[TYPE_CHARS(UV)];
10083     char *ebuf;
10084     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
10085
10086     PERL_ARGS_ASSERT_SV_SETPVIV;
10087
10088     sv_setpvn(sv, ptr, ebuf - ptr);
10089 }
10090
10091 /*
10092 =for apidoc sv_setpviv_mg
10093
10094 Like C<sv_setpviv>, but also handles 'set' magic.
10095
10096 =cut
10097 */
10098
10099 void
10100 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
10101 {
10102     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
10103
10104     sv_setpviv(sv, iv);
10105     SvSETMAGIC(sv);
10106 }
10107
10108 #if defined(PERL_IMPLICIT_CONTEXT)
10109
10110 /* pTHX_ magic can't cope with varargs, so this is a no-context
10111  * version of the main function, (which may itself be aliased to us).
10112  * Don't access this version directly.
10113  */
10114
10115 void
10116 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
10117 {
10118     dTHX;
10119     va_list args;
10120
10121     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
10122
10123     va_start(args, pat);
10124     sv_vsetpvf(sv, pat, &args);
10125     va_end(args);
10126 }
10127
10128 /* pTHX_ magic can't cope with varargs, so this is a no-context
10129  * version of the main function, (which may itself be aliased to us).
10130  * Don't access this version directly.
10131  */
10132
10133 void
10134 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10135 {
10136     dTHX;
10137     va_list args;
10138
10139     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
10140
10141     va_start(args, pat);
10142     sv_vsetpvf_mg(sv, pat, &args);
10143     va_end(args);
10144 }
10145 #endif
10146
10147 /*
10148 =for apidoc sv_setpvf
10149
10150 Works like C<sv_catpvf> but copies the text into the SV instead of
10151 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
10152
10153 =cut
10154 */
10155
10156 void
10157 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
10158 {
10159     va_list args;
10160
10161     PERL_ARGS_ASSERT_SV_SETPVF;
10162
10163     va_start(args, pat);
10164     sv_vsetpvf(sv, pat, &args);
10165     va_end(args);
10166 }
10167
10168 /*
10169 =for apidoc sv_vsetpvf
10170
10171 Works like C<sv_vcatpvf> but copies the text into the SV instead of
10172 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
10173
10174 Usually used via its frontend C<sv_setpvf>.
10175
10176 =cut
10177 */
10178
10179 void
10180 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10181 {
10182     PERL_ARGS_ASSERT_SV_VSETPVF;
10183
10184     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10185 }
10186
10187 /*
10188 =for apidoc sv_setpvf_mg
10189
10190 Like C<sv_setpvf>, but also handles 'set' magic.
10191
10192 =cut
10193 */
10194
10195 void
10196 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10197 {
10198     va_list args;
10199
10200     PERL_ARGS_ASSERT_SV_SETPVF_MG;
10201
10202     va_start(args, pat);
10203     sv_vsetpvf_mg(sv, pat, &args);
10204     va_end(args);
10205 }
10206
10207 /*
10208 =for apidoc sv_vsetpvf_mg
10209
10210 Like C<sv_vsetpvf>, but also handles 'set' magic.
10211
10212 Usually used via its frontend C<sv_setpvf_mg>.
10213
10214 =cut
10215 */
10216
10217 void
10218 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10219 {
10220     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
10221
10222     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10223     SvSETMAGIC(sv);
10224 }
10225
10226 #if defined(PERL_IMPLICIT_CONTEXT)
10227
10228 /* pTHX_ magic can't cope with varargs, so this is a no-context
10229  * version of the main function, (which may itself be aliased to us).
10230  * Don't access this version directly.
10231  */
10232
10233 void
10234 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
10235 {
10236     dTHX;
10237     va_list args;
10238
10239     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
10240
10241     va_start(args, pat);
10242     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10243     va_end(args);
10244 }
10245
10246 /* pTHX_ magic can't cope with varargs, so this is a no-context
10247  * version of the main function, (which may itself be aliased to us).
10248  * Don't access this version directly.
10249  */
10250
10251 void
10252 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10253 {
10254     dTHX;
10255     va_list args;
10256
10257     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
10258
10259     va_start(args, pat);
10260     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10261     SvSETMAGIC(sv);
10262     va_end(args);
10263 }
10264 #endif
10265
10266 /*
10267 =for apidoc sv_catpvf
10268
10269 Processes its arguments like C<sprintf> and appends the formatted
10270 output to an SV.  If the appended data contains "wide" characters
10271 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
10272 and characters >255 formatted with %c), the original SV might get
10273 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
10274 C<sv_catpvf_mg>.  If the original SV was UTF-8, the pattern should be
10275 valid UTF-8; if the original SV was bytes, the pattern should be too.
10276
10277 =cut */
10278
10279 void
10280 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
10281 {
10282     va_list args;
10283
10284     PERL_ARGS_ASSERT_SV_CATPVF;
10285
10286     va_start(args, pat);
10287     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10288     va_end(args);
10289 }
10290
10291 /*
10292 =for apidoc sv_vcatpvf
10293
10294 Processes its arguments like C<vsprintf> and appends the formatted output
10295 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
10296
10297 Usually used via its frontend C<sv_catpvf>.
10298
10299 =cut
10300 */
10301
10302 void
10303 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10304 {
10305     PERL_ARGS_ASSERT_SV_VCATPVF;
10306
10307     sv_vcatpvfn_flags(sv, pat, strlen(pat), args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10308 }
10309
10310 /*
10311 =for apidoc sv_catpvf_mg
10312
10313 Like C<sv_catpvf>, but also handles 'set' magic.
10314
10315 =cut
10316 */
10317
10318 void
10319 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10320 {
10321     va_list args;
10322
10323     PERL_ARGS_ASSERT_SV_CATPVF_MG;
10324
10325     va_start(args, pat);
10326     sv_vcatpvfn_flags(sv, pat, strlen(pat), &args, NULL, 0, NULL, SV_GMAGIC|SV_SMAGIC);
10327     SvSETMAGIC(sv);
10328     va_end(args);
10329 }
10330
10331 /*
10332 =for apidoc sv_vcatpvf_mg
10333
10334 Like C<sv_vcatpvf>, but also handles 'set' magic.
10335
10336 Usually used via its frontend C<sv_catpvf_mg>.
10337
10338 =cut
10339 */
10340
10341 void
10342 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10343 {
10344     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
10345
10346     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10347     SvSETMAGIC(sv);
10348 }
10349
10350 /*
10351 =for apidoc sv_vsetpvfn
10352
10353 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
10354 appending it.
10355
10356 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
10357
10358 =cut
10359 */
10360
10361 void
10362 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10363                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10364 {
10365     PERL_ARGS_ASSERT_SV_VSETPVFN;
10366
10367     sv_setpvs(sv, "");
10368     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, 0);
10369 }
10370
10371
10372 /*
10373  * Warn of missing argument to sprintf, and then return a defined value
10374  * to avoid inappropriate "use of uninit" warnings [perl #71000].
10375  */
10376 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
10377 STATIC SV*
10378 S_vcatpvfn_missing_argument(pTHX) {
10379     if (ckWARN(WARN_MISSING)) {
10380         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
10381                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
10382     }
10383     return &PL_sv_no;
10384 }
10385
10386
10387 STATIC I32
10388 S_expect_number(pTHX_ char **const pattern)
10389 {
10390     dVAR;
10391     I32 var = 0;
10392
10393     PERL_ARGS_ASSERT_EXPECT_NUMBER;
10394
10395     switch (**pattern) {
10396     case '1': case '2': case '3':
10397     case '4': case '5': case '6':
10398     case '7': case '8': case '9':
10399         var = *(*pattern)++ - '0';
10400         while (isDIGIT(**pattern)) {
10401             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
10402             if (tmp < var)
10403                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
10404             var = tmp;
10405         }
10406     }
10407     return var;
10408 }
10409
10410 STATIC char *
10411 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
10412 {
10413     const int neg = nv < 0;
10414     UV uv;
10415
10416     PERL_ARGS_ASSERT_F0CONVERT;
10417
10418     if (neg)
10419         nv = -nv;
10420     if (nv < UV_MAX) {
10421         char *p = endbuf;
10422         nv += 0.5;
10423         uv = (UV)nv;
10424         if (uv & 1 && uv == nv)
10425             uv--;                       /* Round to even */
10426         do {
10427             const unsigned dig = uv % 10;
10428             *--p = '0' + dig;
10429         } while (uv /= 10);
10430         if (neg)
10431             *--p = '-';
10432         *len = endbuf - p;
10433         return p;
10434     }
10435     return NULL;
10436 }
10437
10438
10439 /*
10440 =for apidoc sv_vcatpvfn
10441
10442 =for apidoc sv_vcatpvfn_flags
10443
10444 Processes its arguments like C<vsprintf> and appends the formatted output
10445 to an SV.  Uses an array of SVs if the C style variable argument list is
10446 missing (NULL).  When running with taint checks enabled, indicates via
10447 C<maybe_tainted> if results are untrustworthy (often due to the use of
10448 locales).
10449
10450 If called as C<sv_vcatpvfn> or flags include C<SV_GMAGIC>, calls get magic.
10451
10452 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
10453
10454 =cut
10455 */
10456
10457 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
10458                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
10459                         vec_utf8 = DO_UTF8(vecsv);
10460
10461 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
10462
10463 void
10464 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10465                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10466 {
10467     PERL_ARGS_ASSERT_SV_VCATPVFN;
10468
10469     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, SV_GMAGIC|SV_SMAGIC);
10470 }
10471
10472 void
10473 Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10474                        va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted,
10475                        const U32 flags)
10476 {
10477     dVAR;
10478     char *p;
10479     char *q;
10480     const char *patend;
10481     STRLEN origlen;
10482     I32 svix = 0;
10483     static const char nullstr[] = "(null)";
10484     SV *argsv = NULL;
10485     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
10486     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
10487     SV *nsv = NULL;
10488     /* Times 4: a decimal digit takes more than 3 binary digits.
10489      * NV_DIG: mantissa takes than many decimal digits.
10490      * Plus 32: Playing safe. */
10491     char ebuf[IV_DIG * 4 + NV_DIG + 32];
10492     /* large enough for "%#.#f" --chip */
10493     /* what about long double NVs? --jhi */
10494
10495     DECLARATION_FOR_STORE_LC_NUMERIC_SET_TO_NEEDED;
10496
10497     PERL_ARGS_ASSERT_SV_VCATPVFN_FLAGS;
10498     PERL_UNUSED_ARG(maybe_tainted);
10499
10500     if (flags & SV_GMAGIC)
10501         SvGETMAGIC(sv);
10502
10503     /* no matter what, this is a string now */
10504     (void)SvPV_force_nomg(sv, origlen);
10505
10506     /* special-case "", "%s", and "%-p" (SVf - see below) */
10507     if (patlen == 0)
10508         return;
10509     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
10510         if (args) {
10511             const char * const s = va_arg(*args, char*);
10512             sv_catpv_nomg(sv, s ? s : nullstr);
10513         }
10514         else if (svix < svmax) {
10515             /* we want get magic on the source but not the target. sv_catsv can't do that, though */
10516             SvGETMAGIC(*svargs);
10517             sv_catsv_nomg(sv, *svargs);
10518         }
10519         else
10520             S_vcatpvfn_missing_argument(aTHX);
10521         return;
10522     }
10523     if (args && patlen == 3 && pat[0] == '%' &&
10524                 pat[1] == '-' && pat[2] == 'p') {
10525         argsv = MUTABLE_SV(va_arg(*args, void*));
10526         sv_catsv_nomg(sv, argsv);
10527         return;
10528     }
10529
10530 #ifndef USE_LONG_DOUBLE
10531     /* special-case "%.<number>[gf]" */
10532     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
10533          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
10534         unsigned digits = 0;
10535         const char *pp;
10536
10537         pp = pat + 2;
10538         while (*pp >= '0' && *pp <= '9')
10539             digits = 10 * digits + (*pp++ - '0');
10540         if (pp - pat == (int)patlen - 1 && svix < svmax) {
10541             const NV nv = SvNV(*svargs);
10542             if (*pp == 'g') {
10543                 /* Add check for digits != 0 because it seems that some
10544                    gconverts are buggy in this case, and we don't yet have
10545                    a Configure test for this.  */
10546                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
10547                      /* 0, point, slack */
10548                     STORE_LC_NUMERIC_SET_TO_NEEDED();
10549                     V_Gconvert(nv, (int)digits, 0, ebuf);
10550                     sv_catpv_nomg(sv, ebuf);
10551                     if (*ebuf)  /* May return an empty string for digits==0 */
10552                         return;
10553                 }
10554             } else if (!digits) {
10555                 STRLEN l;
10556
10557                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
10558                     sv_catpvn_nomg(sv, p, l);
10559                     return;
10560                 }
10561             }
10562         }
10563     }
10564 #endif /* !USE_LONG_DOUBLE */
10565
10566     if (!args && svix < svmax && DO_UTF8(*svargs))
10567         has_utf8 = TRUE;
10568
10569     patend = (char*)pat + patlen;
10570     for (p = (char*)pat; p < patend; p = q) {
10571         bool alt = FALSE;
10572         bool left = FALSE;
10573         bool vectorize = FALSE;
10574         bool vectorarg = FALSE;
10575         bool vec_utf8 = FALSE;
10576         char fill = ' ';
10577         char plus = 0;
10578         char intsize = 0;
10579         STRLEN width = 0;
10580         STRLEN zeros = 0;
10581         bool has_precis = FALSE;
10582         STRLEN precis = 0;
10583         const I32 osvix = svix;
10584         bool is_utf8 = FALSE;  /* is this item utf8?   */
10585 #ifdef HAS_LDBL_SPRINTF_BUG
10586         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10587            with sfio - Allen <allens@cpan.org> */
10588         bool fix_ldbl_sprintf_bug = FALSE;
10589 #endif
10590
10591         char esignbuf[4];
10592         U8 utf8buf[UTF8_MAXBYTES+1];
10593         STRLEN esignlen = 0;
10594
10595         const char *eptr = NULL;
10596         const char *fmtstart;
10597         STRLEN elen = 0;
10598         SV *vecsv = NULL;
10599         const U8 *vecstr = NULL;
10600         STRLEN veclen = 0;
10601         char c = 0;
10602         int i;
10603         unsigned base = 0;
10604         IV iv = 0;
10605         UV uv = 0;
10606         /* we need a long double target in case HAS_LONG_DOUBLE but
10607            not USE_LONG_DOUBLE
10608         */
10609 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
10610         long double nv;
10611 #else
10612         NV nv;
10613 #endif
10614         STRLEN have;
10615         STRLEN need;
10616         STRLEN gap;
10617         const char *dotstr = ".";
10618         STRLEN dotstrlen = 1;
10619         I32 efix = 0; /* explicit format parameter index */
10620         I32 ewix = 0; /* explicit width index */
10621         I32 epix = 0; /* explicit precision index */
10622         I32 evix = 0; /* explicit vector index */
10623         bool asterisk = FALSE;
10624
10625         /* echo everything up to the next format specification */
10626         for (q = p; q < patend && *q != '%'; ++q) ;
10627         if (q > p) {
10628             if (has_utf8 && !pat_utf8)
10629                 sv_catpvn_nomg_utf8_upgrade(sv, p, q - p, nsv);
10630             else
10631                 sv_catpvn_nomg(sv, p, q - p);
10632             p = q;
10633         }
10634         if (q++ >= patend)
10635             break;
10636
10637         fmtstart = q;
10638
10639 /*
10640     We allow format specification elements in this order:
10641         \d+\$              explicit format parameter index
10642         [-+ 0#]+           flags
10643         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
10644         0                  flag (as above): repeated to allow "v02"     
10645         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
10646         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
10647         [hlqLV]            size
10648     [%bcdefginopsuxDFOUX] format (mandatory)
10649 */
10650
10651         if (args) {
10652 /*  
10653         As of perl5.9.3, printf format checking is on by default.
10654         Internally, perl uses %p formats to provide an escape to
10655         some extended formatting.  This block deals with those
10656         extensions: if it does not match, (char*)q is reset and
10657         the normal format processing code is used.
10658
10659         Currently defined extensions are:
10660                 %p              include pointer address (standard)      
10661                 %-p     (SVf)   include an SV (previously %_)
10662                 %-<num>p        include an SV with precision <num>      
10663                 %2p             include a HEK
10664                 %3p             include a HEK with precision of 256
10665                 %4p             char* preceded by utf8 flag and length
10666                 %<num>p         (where num is 1 or > 4) reserved for future
10667                                 extensions
10668
10669         Robin Barker 2005-07-14 (but modified since)
10670
10671                 %1p     (VDf)   removed.  RMB 2007-10-19
10672 */
10673             char* r = q; 
10674             bool sv = FALSE;    
10675             STRLEN n = 0;
10676             if (*q == '-')
10677                 sv = *q++;
10678             else if (strnEQ(q, UTF8f, sizeof(UTF8f)-1)) { /* UTF8f */
10679                 /* The argument has already gone through cBOOL, so the cast
10680                    is safe. */
10681                 is_utf8 = (bool)va_arg(*args, int);
10682                 elen = va_arg(*args, UV);
10683                 eptr = va_arg(*args, char *);
10684                 q += sizeof(UTF8f)-1;
10685                 goto string;
10686             }
10687             n = expect_number(&q);
10688             if (*q++ == 'p') {
10689                 if (sv) {                       /* SVf */
10690                     if (n) {
10691                         precis = n;
10692                         has_precis = TRUE;
10693                     }
10694                     argsv = MUTABLE_SV(va_arg(*args, void*));
10695                     eptr = SvPV_const(argsv, elen);
10696                     if (DO_UTF8(argsv))
10697                         is_utf8 = TRUE;
10698                     goto string;
10699                 }
10700                 else if (n==2 || n==3) {        /* HEKf */
10701                     HEK * const hek = va_arg(*args, HEK *);
10702                     eptr = HEK_KEY(hek);
10703                     elen = HEK_LEN(hek);
10704                     if (HEK_UTF8(hek)) is_utf8 = TRUE;
10705                     if (n==3) precis = 256, has_precis = TRUE;
10706                     goto string;
10707                 }
10708                 else if (n) {
10709                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
10710                                      "internal %%<num>p might conflict with future printf extensions");
10711                 }
10712             }
10713             q = r; 
10714         }
10715
10716         if ( (width = expect_number(&q)) ) {
10717             if (*q == '$') {
10718                 ++q;
10719                 efix = width;
10720             } else {
10721                 goto gotwidth;
10722             }
10723         }
10724
10725         /* FLAGS */
10726
10727         while (*q) {
10728             switch (*q) {
10729             case ' ':
10730             case '+':
10731                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
10732                     q++;
10733                 else
10734                     plus = *q++;
10735                 continue;
10736
10737             case '-':
10738                 left = TRUE;
10739                 q++;
10740                 continue;
10741
10742             case '0':
10743                 fill = *q++;
10744                 continue;
10745
10746             case '#':
10747                 alt = TRUE;
10748                 q++;
10749                 continue;
10750
10751             default:
10752                 break;
10753             }
10754             break;
10755         }
10756
10757       tryasterisk:
10758         if (*q == '*') {
10759             q++;
10760             if ( (ewix = expect_number(&q)) )
10761                 if (*q++ != '$')
10762                     goto unknown;
10763             asterisk = TRUE;
10764         }
10765         if (*q == 'v') {
10766             q++;
10767             if (vectorize)
10768                 goto unknown;
10769             if ((vectorarg = asterisk)) {
10770                 evix = ewix;
10771                 ewix = 0;
10772                 asterisk = FALSE;
10773             }
10774             vectorize = TRUE;
10775             goto tryasterisk;
10776         }
10777
10778         if (!asterisk)
10779         {
10780             if( *q == '0' )
10781                 fill = *q++;
10782             width = expect_number(&q);
10783         }
10784
10785         if (vectorize && vectorarg) {
10786             /* vectorizing, but not with the default "." */
10787             if (args)
10788                 vecsv = va_arg(*args, SV*);
10789             else if (evix) {
10790                 vecsv = (evix > 0 && evix <= svmax)
10791                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
10792             } else {
10793                 vecsv = svix < svmax
10794                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10795             }
10796             dotstr = SvPV_const(vecsv, dotstrlen);
10797             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
10798                bad with tied or overloaded values that return UTF8.  */
10799             if (DO_UTF8(vecsv))
10800                 is_utf8 = TRUE;
10801             else if (has_utf8) {
10802                 vecsv = sv_mortalcopy(vecsv);
10803                 sv_utf8_upgrade(vecsv);
10804                 dotstr = SvPV_const(vecsv, dotstrlen);
10805                 is_utf8 = TRUE;
10806             }               
10807         }
10808
10809         if (asterisk) {
10810             if (args)
10811                 i = va_arg(*args, int);
10812             else
10813                 i = (ewix ? ewix <= svmax : svix < svmax) ?
10814                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10815             left |= (i < 0);
10816             width = (i < 0) ? -i : i;
10817         }
10818       gotwidth:
10819
10820         /* PRECISION */
10821
10822         if (*q == '.') {
10823             q++;
10824             if (*q == '*') {
10825                 q++;
10826                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
10827                     goto unknown;
10828                 /* XXX: todo, support specified precision parameter */
10829                 if (epix)
10830                     goto unknown;
10831                 if (args)
10832                     i = va_arg(*args, int);
10833                 else
10834                     i = (ewix ? ewix <= svmax : svix < svmax)
10835                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10836                 precis = i;
10837                 has_precis = !(i < 0);
10838             }
10839             else {
10840                 precis = 0;
10841                 while (isDIGIT(*q))
10842                     precis = precis * 10 + (*q++ - '0');
10843                 has_precis = TRUE;
10844             }
10845         }
10846
10847         if (vectorize) {
10848             if (args) {
10849                 VECTORIZE_ARGS
10850             }
10851             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
10852                 vecsv = svargs[efix ? efix-1 : svix++];
10853                 vecstr = (U8*)SvPV_const(vecsv,veclen);
10854                 vec_utf8 = DO_UTF8(vecsv);
10855
10856                 /* if this is a version object, we need to convert
10857                  * back into v-string notation and then let the
10858                  * vectorize happen normally
10859                  */
10860                 if (sv_isobject(vecsv) && sv_derived_from(vecsv, "version")) {
10861                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
10862                         Perl_ck_warner_d(aTHX_ packWARN(WARN_PRINTF),
10863                         "vector argument not supported with alpha versions");
10864                         goto vdblank;
10865                     }
10866                     vecsv = sv_newmortal();
10867                     scan_vstring((char *)vecstr, (char *)vecstr + veclen,
10868                                  vecsv);
10869                     vecstr = (U8*)SvPV_const(vecsv, veclen);
10870                     vec_utf8 = DO_UTF8(vecsv);
10871                 }
10872             }
10873             else {
10874               vdblank:
10875                 vecstr = (U8*)"";
10876                 veclen = 0;
10877             }
10878         }
10879
10880         /* SIZE */
10881
10882         switch (*q) {
10883 #ifdef WIN32
10884         case 'I':                       /* Ix, I32x, and I64x */
10885 #  ifdef USE_64_BIT_INT
10886             if (q[1] == '6' && q[2] == '4') {
10887                 q += 3;
10888                 intsize = 'q';
10889                 break;
10890             }
10891 #  endif
10892             if (q[1] == '3' && q[2] == '2') {
10893                 q += 3;
10894                 break;
10895             }
10896 #  ifdef USE_64_BIT_INT
10897             intsize = 'q';
10898 #  endif
10899             q++;
10900             break;
10901 #endif
10902 #if IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)
10903         case 'L':                       /* Ld */
10904             /*FALLTHROUGH*/
10905 #if IVSIZE >= 8
10906         case 'q':                       /* qd */
10907 #endif
10908             intsize = 'q';
10909             q++;
10910             break;
10911 #endif
10912         case 'l':
10913             ++q;
10914 #if IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)
10915             if (*q == 'l') {    /* lld, llf */
10916                 intsize = 'q';
10917                 ++q;
10918             }
10919             else
10920 #endif
10921                 intsize = 'l';
10922             break;
10923         case 'h':
10924             if (*++q == 'h') {  /* hhd, hhu */
10925                 intsize = 'c';
10926                 ++q;
10927             }
10928             else
10929                 intsize = 'h';
10930             break;
10931         case 'V':
10932         case 'z':
10933         case 't':
10934 #ifdef HAS_C99
10935         case 'j':
10936 #endif
10937             intsize = *q++;
10938             break;
10939         }
10940
10941         /* CONVERSION */
10942
10943         if (*q == '%') {
10944             eptr = q++;
10945             elen = 1;
10946             if (vectorize) {
10947                 c = '%';
10948                 goto unknown;
10949             }
10950             goto string;
10951         }
10952
10953         if (!vectorize && !args) {
10954             if (efix) {
10955                 const I32 i = efix-1;
10956                 argsv = (i >= 0 && i < svmax)
10957                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
10958             } else {
10959                 argsv = (svix >= 0 && svix < svmax)
10960                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10961             }
10962         }
10963
10964         switch (c = *q++) {
10965
10966             /* STRINGS */
10967
10968         case 'c':
10969             if (vectorize)
10970                 goto unknown;
10971             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
10972             if ((uv > 255 ||
10973                  (!UVCHR_IS_INVARIANT(uv) && SvUTF8(sv)))
10974                 && !IN_BYTES) {
10975                 eptr = (char*)utf8buf;
10976                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
10977                 is_utf8 = TRUE;
10978             }
10979             else {
10980                 c = (char)uv;
10981                 eptr = &c;
10982                 elen = 1;
10983             }
10984             goto string;
10985
10986         case 's':
10987             if (vectorize)
10988                 goto unknown;
10989             if (args) {
10990                 eptr = va_arg(*args, char*);
10991                 if (eptr)
10992                     elen = strlen(eptr);
10993                 else {
10994                     eptr = (char *)nullstr;
10995                     elen = sizeof nullstr - 1;
10996                 }
10997             }
10998             else {
10999                 eptr = SvPV_const(argsv, elen);
11000                 if (DO_UTF8(argsv)) {
11001                     STRLEN old_precis = precis;
11002                     if (has_precis && precis < elen) {
11003                         STRLEN ulen = sv_or_pv_len_utf8(argsv, eptr, elen);
11004                         STRLEN p = precis > ulen ? ulen : precis;
11005                         precis = sv_or_pv_pos_u2b(argsv, eptr, p, 0);
11006                                                         /* sticks at end */
11007                     }
11008                     if (width) { /* fudge width (can't fudge elen) */
11009                         if (has_precis && precis < elen)
11010                             width += precis - old_precis;
11011                         else
11012                             width +=
11013                                 elen - sv_or_pv_len_utf8(argsv,eptr,elen);
11014                     }
11015                     is_utf8 = TRUE;
11016                 }
11017             }
11018
11019         string:
11020             if (has_precis && precis < elen)
11021                 elen = precis;
11022             break;
11023
11024             /* INTEGERS */
11025
11026         case 'p':
11027             if (alt || vectorize)
11028                 goto unknown;
11029             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
11030             base = 16;
11031             goto integer;
11032
11033         case 'D':
11034 #ifdef IV_IS_QUAD
11035             intsize = 'q';
11036 #else
11037             intsize = 'l';
11038 #endif
11039             /*FALLTHROUGH*/
11040         case 'd':
11041         case 'i':
11042             if (vectorize) {
11043                 STRLEN ulen;
11044                 if (!veclen)
11045                     continue;
11046                 if (vec_utf8)
11047                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11048                                         UTF8_ALLOW_ANYUV);
11049                 else {
11050                     uv = *vecstr;
11051                     ulen = 1;
11052                 }
11053                 vecstr += ulen;
11054                 veclen -= ulen;
11055                 if (plus)
11056                      esignbuf[esignlen++] = plus;
11057             }
11058             else if (args) {
11059                 switch (intsize) {
11060                 case 'c':       iv = (char)va_arg(*args, int); break;
11061                 case 'h':       iv = (short)va_arg(*args, int); break;
11062                 case 'l':       iv = va_arg(*args, long); break;
11063                 case 'V':       iv = va_arg(*args, IV); break;
11064                 case 'z':       iv = va_arg(*args, SSize_t); break;
11065                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
11066                 default:        iv = va_arg(*args, int); break;
11067 #ifdef HAS_C99
11068                 case 'j':       iv = va_arg(*args, intmax_t); break;
11069 #endif
11070                 case 'q':
11071 #if IVSIZE >= 8
11072                                 iv = va_arg(*args, Quad_t); break;
11073 #else
11074                                 goto unknown;
11075 #endif
11076                 }
11077             }
11078             else {
11079                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
11080                 switch (intsize) {
11081                 case 'c':       iv = (char)tiv; break;
11082                 case 'h':       iv = (short)tiv; break;
11083                 case 'l':       iv = (long)tiv; break;
11084                 case 'V':
11085                 default:        iv = tiv; break;
11086                 case 'q':
11087 #if IVSIZE >= 8
11088                                 iv = (Quad_t)tiv; break;
11089 #else
11090                                 goto unknown;
11091 #endif
11092                 }
11093             }
11094             if ( !vectorize )   /* we already set uv above */
11095             {
11096                 if (iv >= 0) {
11097                     uv = iv;
11098                     if (plus)
11099                         esignbuf[esignlen++] = plus;
11100                 }
11101                 else {
11102                     uv = -iv;
11103                     esignbuf[esignlen++] = '-';
11104                 }
11105             }
11106             base = 10;
11107             goto integer;
11108
11109         case 'U':
11110 #ifdef IV_IS_QUAD
11111             intsize = 'q';
11112 #else
11113             intsize = 'l';
11114 #endif
11115             /*FALLTHROUGH*/
11116         case 'u':
11117             base = 10;
11118             goto uns_integer;
11119
11120         case 'B':
11121         case 'b':
11122             base = 2;
11123             goto uns_integer;
11124
11125         case 'O':
11126 #ifdef IV_IS_QUAD
11127             intsize = 'q';
11128 #else
11129             intsize = 'l';
11130 #endif
11131             /*FALLTHROUGH*/
11132         case 'o':
11133             base = 8;
11134             goto uns_integer;
11135
11136         case 'X':
11137         case 'x':
11138             base = 16;
11139
11140         uns_integer:
11141             if (vectorize) {
11142                 STRLEN ulen;
11143         vector:
11144                 if (!veclen)
11145                     continue;
11146                 if (vec_utf8)
11147                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11148                                         UTF8_ALLOW_ANYUV);
11149                 else {
11150                     uv = *vecstr;
11151                     ulen = 1;
11152                 }
11153                 vecstr += ulen;
11154                 veclen -= ulen;
11155             }
11156             else if (args) {
11157                 switch (intsize) {
11158                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
11159                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
11160                 case 'l':  uv = va_arg(*args, unsigned long); break;
11161                 case 'V':  uv = va_arg(*args, UV); break;
11162                 case 'z':  uv = va_arg(*args, Size_t); break;
11163                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
11164 #ifdef HAS_C99
11165                 case 'j':  uv = va_arg(*args, uintmax_t); break;
11166 #endif
11167                 default:   uv = va_arg(*args, unsigned); break;
11168                 case 'q':
11169 #if IVSIZE >= 8
11170                            uv = va_arg(*args, Uquad_t); break;
11171 #else
11172                            goto unknown;
11173 #endif
11174                 }
11175             }
11176             else {
11177                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
11178                 switch (intsize) {
11179                 case 'c':       uv = (unsigned char)tuv; break;
11180                 case 'h':       uv = (unsigned short)tuv; break;
11181                 case 'l':       uv = (unsigned long)tuv; break;
11182                 case 'V':
11183                 default:        uv = tuv; break;
11184                 case 'q':
11185 #if IVSIZE >= 8
11186                                 uv = (Uquad_t)tuv; break;
11187 #else
11188                                 goto unknown;
11189 #endif
11190                 }
11191             }
11192
11193         integer:
11194             {
11195                 char *ptr = ebuf + sizeof ebuf;
11196                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
11197                 zeros = 0;
11198
11199                 switch (base) {
11200                     unsigned dig;
11201                 case 16:
11202                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
11203                     do {
11204                         dig = uv & 15;
11205                         *--ptr = p[dig];
11206                     } while (uv >>= 4);
11207                     if (tempalt) {
11208                         esignbuf[esignlen++] = '0';
11209                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
11210                     }
11211                     break;
11212                 case 8:
11213                     do {
11214                         dig = uv & 7;
11215                         *--ptr = '0' + dig;
11216                     } while (uv >>= 3);
11217                     if (alt && *ptr != '0')
11218                         *--ptr = '0';
11219                     break;
11220                 case 2:
11221                     do {
11222                         dig = uv & 1;
11223                         *--ptr = '0' + dig;
11224                     } while (uv >>= 1);
11225                     if (tempalt) {
11226                         esignbuf[esignlen++] = '0';
11227                         esignbuf[esignlen++] = c;
11228                     }
11229                     break;
11230                 default:                /* it had better be ten or less */
11231                     do {
11232                         dig = uv % base;
11233                         *--ptr = '0' + dig;
11234                     } while (uv /= base);
11235                     break;
11236                 }
11237                 elen = (ebuf + sizeof ebuf) - ptr;
11238                 eptr = ptr;
11239                 if (has_precis) {
11240                     if (precis > elen)
11241                         zeros = precis - elen;
11242                     else if (precis == 0 && elen == 1 && *eptr == '0'
11243                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
11244                         elen = 0;
11245
11246                 /* a precision nullifies the 0 flag. */
11247                     if (fill == '0')
11248                         fill = ' ';
11249                 }
11250             }
11251             break;
11252
11253             /* FLOATING POINT */
11254
11255         case 'F':
11256             c = 'f';            /* maybe %F isn't supported here */
11257             /*FALLTHROUGH*/
11258         case 'e': case 'E':
11259         case 'f':
11260         case 'g': case 'G':
11261             if (vectorize)
11262                 goto unknown;
11263
11264             /* This is evil, but floating point is even more evil */
11265
11266             /* for SV-style calling, we can only get NV
11267                for C-style calling, we assume %f is double;
11268                for simplicity we allow any of %Lf, %llf, %qf for long double
11269             */
11270             switch (intsize) {
11271             case 'V':
11272 #if defined(USE_LONG_DOUBLE)
11273                 intsize = 'q';
11274 #endif
11275                 break;
11276 /* [perl #20339] - we should accept and ignore %lf rather than die */
11277             case 'l':
11278                 /*FALLTHROUGH*/
11279             default:
11280 #if defined(USE_LONG_DOUBLE)
11281                 intsize = args ? 0 : 'q';
11282 #endif
11283                 break;
11284             case 'q':
11285 #if defined(HAS_LONG_DOUBLE)
11286                 break;
11287 #else
11288                 /*FALLTHROUGH*/
11289 #endif
11290             case 'c':
11291             case 'h':
11292             case 'z':
11293             case 't':
11294             case 'j':
11295                 goto unknown;
11296             }
11297
11298             /* now we need (long double) if intsize == 'q', else (double) */
11299             nv = (args) ?
11300 #if LONG_DOUBLESIZE > DOUBLESIZE
11301                 intsize == 'q' ?
11302                     va_arg(*args, long double) :
11303                     va_arg(*args, double)
11304 #else
11305                     va_arg(*args, double)
11306 #endif
11307                 : SvNV(argsv);
11308
11309             need = 0;
11310             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
11311                else. frexp() has some unspecified behaviour for those three */
11312             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
11313                 i = PERL_INT_MIN;
11314                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
11315                    will cast our (long double) to (double) */
11316                 (void)Perl_frexp(nv, &i);
11317                 if (i == PERL_INT_MIN)
11318                     Perl_die(aTHX_ "panic: frexp");
11319                 if (i > 0)
11320                     need = BIT_DIGITS(i);
11321             }
11322             need += has_precis ? precis : 6; /* known default */
11323
11324             if (need < width)
11325                 need = width;
11326
11327 #ifdef HAS_LDBL_SPRINTF_BUG
11328             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
11329                with sfio - Allen <allens@cpan.org> */
11330
11331 #  ifdef DBL_MAX
11332 #    define MY_DBL_MAX DBL_MAX
11333 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
11334 #    if DOUBLESIZE >= 8
11335 #      define MY_DBL_MAX 1.7976931348623157E+308L
11336 #    else
11337 #      define MY_DBL_MAX 3.40282347E+38L
11338 #    endif
11339 #  endif
11340
11341 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
11342 #    define MY_DBL_MAX_BUG 1L
11343 #  else
11344 #    define MY_DBL_MAX_BUG MY_DBL_MAX
11345 #  endif
11346
11347 #  ifdef DBL_MIN
11348 #    define MY_DBL_MIN DBL_MIN
11349 #  else  /* XXX guessing! -Allen */
11350 #    if DOUBLESIZE >= 8
11351 #      define MY_DBL_MIN 2.2250738585072014E-308L
11352 #    else
11353 #      define MY_DBL_MIN 1.17549435E-38L
11354 #    endif
11355 #  endif
11356
11357             if ((intsize == 'q') && (c == 'f') &&
11358                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
11359                 (need < DBL_DIG)) {
11360                 /* it's going to be short enough that
11361                  * long double precision is not needed */
11362
11363                 if ((nv <= 0L) && (nv >= -0L))
11364                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
11365                 else {
11366                     /* would use Perl_fp_class as a double-check but not
11367                      * functional on IRIX - see perl.h comments */
11368
11369                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
11370                         /* It's within the range that a double can represent */
11371 #if defined(DBL_MAX) && !defined(DBL_MIN)
11372                         if ((nv >= ((long double)1/DBL_MAX)) ||
11373                             (nv <= (-(long double)1/DBL_MAX)))
11374 #endif
11375                         fix_ldbl_sprintf_bug = TRUE;
11376                     }
11377                 }
11378                 if (fix_ldbl_sprintf_bug == TRUE) {
11379                     double temp;
11380
11381                     intsize = 0;
11382                     temp = (double)nv;
11383                     nv = (NV)temp;
11384                 }
11385             }
11386
11387 #  undef MY_DBL_MAX
11388 #  undef MY_DBL_MAX_BUG
11389 #  undef MY_DBL_MIN
11390
11391 #endif /* HAS_LDBL_SPRINTF_BUG */
11392
11393             need += 20; /* fudge factor */
11394             if (PL_efloatsize < need) {
11395                 Safefree(PL_efloatbuf);
11396                 PL_efloatsize = need + 20; /* more fudge */
11397                 Newx(PL_efloatbuf, PL_efloatsize, char);
11398                 PL_efloatbuf[0] = '\0';
11399             }
11400
11401             if ( !(width || left || plus || alt) && fill != '0'
11402                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
11403                 /* See earlier comment about buggy Gconvert when digits,
11404                    aka precis is 0  */
11405                 if ( c == 'g' && precis) {
11406                     STORE_LC_NUMERIC_SET_TO_NEEDED();
11407                     V_Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
11408                     /* May return an empty string for digits==0 */
11409                     if (*PL_efloatbuf) {
11410                         elen = strlen(PL_efloatbuf);
11411                         goto float_converted;
11412                     }
11413                 } else if ( c == 'f' && !precis) {
11414                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
11415                         break;
11416                 }
11417             }
11418             {
11419                 char *ptr = ebuf + sizeof ebuf;
11420                 *--ptr = '\0';
11421                 *--ptr = c;
11422                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
11423 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
11424                 if (intsize == 'q') {
11425                     /* Copy the one or more characters in a long double
11426                      * format before the 'base' ([efgEFG]) character to
11427                      * the format string. */
11428                     static char const prifldbl[] = PERL_PRIfldbl;
11429                     char const *p = prifldbl + sizeof(prifldbl) - 3;
11430                     while (p >= prifldbl) { *--ptr = *p--; }
11431                 }
11432 #endif
11433                 if (has_precis) {
11434                     base = precis;
11435                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
11436                     *--ptr = '.';
11437                 }
11438                 if (width) {
11439                     base = width;
11440                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
11441                 }
11442                 if (fill == '0')
11443                     *--ptr = fill;
11444                 if (left)
11445                     *--ptr = '-';
11446                 if (plus)
11447                     *--ptr = plus;
11448                 if (alt)
11449                     *--ptr = '#';
11450                 *--ptr = '%';
11451
11452                 /* No taint.  Otherwise we are in the strange situation
11453                  * where printf() taints but print($float) doesn't.
11454                  * --jhi */
11455
11456                 STORE_LC_NUMERIC_SET_TO_NEEDED();
11457
11458                 /* hopefully the above makes ptr a very constrained format
11459                  * that is safe to use, even though it's not literal */
11460                 GCC_DIAG_IGNORE(-Wformat-nonliteral);
11461 #if defined(HAS_LONG_DOUBLE)
11462                 elen = ((intsize == 'q')
11463                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
11464                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
11465 #else
11466                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
11467 #endif
11468                 GCC_DIAG_RESTORE;
11469             }
11470         float_converted:
11471             eptr = PL_efloatbuf;
11472
11473 #ifdef USE_LOCALE_NUMERIC
11474             /* If the decimal point character in the string is UTF-8, make the
11475              * output utf8 */
11476             if (PL_numeric_radix_sv && SvUTF8(PL_numeric_radix_sv)
11477                 && instr(eptr, SvPVX_const(PL_numeric_radix_sv)))
11478             {
11479                 is_utf8 = TRUE;
11480             }
11481 #endif
11482
11483             break;
11484
11485             /* SPECIAL */
11486
11487         case 'n':
11488             if (vectorize)
11489                 goto unknown;
11490             i = SvCUR(sv) - origlen;
11491             if (args) {
11492                 switch (intsize) {
11493                 case 'c':       *(va_arg(*args, char*)) = i; break;
11494                 case 'h':       *(va_arg(*args, short*)) = i; break;
11495                 default:        *(va_arg(*args, int*)) = i; break;
11496                 case 'l':       *(va_arg(*args, long*)) = i; break;
11497                 case 'V':       *(va_arg(*args, IV*)) = i; break;
11498                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
11499                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
11500 #ifdef HAS_C99
11501                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
11502 #endif
11503                 case 'q':
11504 #if IVSIZE >= 8
11505                                 *(va_arg(*args, Quad_t*)) = i; break;
11506 #else
11507                                 goto unknown;
11508 #endif
11509                 }
11510             }
11511             else
11512                 sv_setuv_mg(argsv, has_utf8 ? (UV)sv_len_utf8(sv) : (UV)i);
11513             continue;   /* not "break" */
11514
11515             /* UNKNOWN */
11516
11517         default:
11518       unknown:
11519             if (!args
11520                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
11521                 && ckWARN(WARN_PRINTF))
11522             {
11523                 SV * const msg = sv_newmortal();
11524                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
11525                           (PL_op->op_type == OP_PRTF) ? "" : "s");
11526                 if (fmtstart < patend) {
11527                     const char * const fmtend = q < patend ? q : patend;
11528                     const char * f;
11529                     sv_catpvs(msg, "\"%");
11530                     for (f = fmtstart; f < fmtend; f++) {
11531                         if (isPRINT(*f)) {
11532                             sv_catpvn_nomg(msg, f, 1);
11533                         } else {
11534                             Perl_sv_catpvf(aTHX_ msg,
11535                                            "\\%03"UVof, (UV)*f & 0xFF);
11536                         }
11537                     }
11538                     sv_catpvs(msg, "\"");
11539                 } else {
11540                     sv_catpvs(msg, "end of string");
11541                 }
11542                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
11543             }
11544
11545             /* output mangled stuff ... */
11546             if (c == '\0')
11547                 --q;
11548             eptr = p;
11549             elen = q - p;
11550
11551             /* ... right here, because formatting flags should not apply */
11552             SvGROW(sv, SvCUR(sv) + elen + 1);
11553             p = SvEND(sv);
11554             Copy(eptr, p, elen, char);
11555             p += elen;
11556             *p = '\0';
11557             SvCUR_set(sv, p - SvPVX_const(sv));
11558             svix = osvix;
11559             continue;   /* not "break" */
11560         }
11561
11562         if (is_utf8 != has_utf8) {
11563             if (is_utf8) {
11564                 if (SvCUR(sv))
11565                     sv_utf8_upgrade(sv);
11566             }
11567             else {
11568                 const STRLEN old_elen = elen;
11569                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
11570                 sv_utf8_upgrade(nsv);
11571                 eptr = SvPVX_const(nsv);
11572                 elen = SvCUR(nsv);
11573
11574                 if (width) { /* fudge width (can't fudge elen) */
11575                     width += elen - old_elen;
11576                 }
11577                 is_utf8 = TRUE;
11578             }
11579         }
11580
11581         have = esignlen + zeros + elen;
11582         if (have < zeros)
11583             croak_memory_wrap();
11584
11585         need = (have > width ? have : width);
11586         gap = need - have;
11587
11588         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
11589             croak_memory_wrap();
11590         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
11591         p = SvEND(sv);
11592         if (esignlen && fill == '0') {
11593             int i;
11594             for (i = 0; i < (int)esignlen; i++)
11595                 *p++ = esignbuf[i];
11596         }
11597         if (gap && !left) {
11598             memset(p, fill, gap);
11599             p += gap;
11600         }
11601         if (esignlen && fill != '0') {
11602             int i;
11603             for (i = 0; i < (int)esignlen; i++)
11604                 *p++ = esignbuf[i];
11605         }
11606         if (zeros) {
11607             int i;
11608             for (i = zeros; i; i--)
11609                 *p++ = '0';
11610         }
11611         if (elen) {
11612             Copy(eptr, p, elen, char);
11613             p += elen;
11614         }
11615         if (gap && left) {
11616             memset(p, ' ', gap);
11617             p += gap;
11618         }
11619         if (vectorize) {
11620             if (veclen) {
11621                 Copy(dotstr, p, dotstrlen, char);
11622                 p += dotstrlen;
11623             }
11624             else
11625                 vectorize = FALSE;              /* done iterating over vecstr */
11626         }
11627         if (is_utf8)
11628             has_utf8 = TRUE;
11629         if (has_utf8)
11630             SvUTF8_on(sv);
11631         *p = '\0';
11632         SvCUR_set(sv, p - SvPVX_const(sv));
11633         if (vectorize) {
11634             esignlen = 0;
11635             goto vector;
11636         }
11637     }
11638     SvTAINT(sv);
11639
11640     RESTORE_LC_NUMERIC();   /* Done outside loop, so don't have to save/restore
11641                                each iteration. */
11642 }
11643
11644 /* =========================================================================
11645
11646 =head1 Cloning an interpreter
11647
11648 All the macros and functions in this section are for the private use of
11649 the main function, perl_clone().
11650
11651 The foo_dup() functions make an exact copy of an existing foo thingy.
11652 During the course of a cloning, a hash table is used to map old addresses
11653 to new addresses.  The table is created and manipulated with the
11654 ptr_table_* functions.
11655
11656 =cut
11657
11658  * =========================================================================*/
11659
11660
11661 #if defined(USE_ITHREADS)
11662
11663 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
11664 #ifndef GpREFCNT_inc
11665 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
11666 #endif
11667
11668
11669 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
11670    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
11671    If this changes, please unmerge ss_dup.
11672    Likewise, sv_dup_inc_multiple() relies on this fact.  */
11673 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
11674 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
11675 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
11676 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
11677 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
11678 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
11679 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
11680 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
11681 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
11682 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
11683 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
11684 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
11685 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
11686
11687 /* clone a parser */
11688
11689 yy_parser *
11690 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
11691 {
11692     yy_parser *parser;
11693
11694     PERL_ARGS_ASSERT_PARSER_DUP;
11695
11696     if (!proto)
11697         return NULL;
11698
11699     /* look for it in the table first */
11700     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
11701     if (parser)
11702         return parser;
11703
11704     /* create anew and remember what it is */
11705     Newxz(parser, 1, yy_parser);
11706     ptr_table_store(PL_ptr_table, proto, parser);
11707
11708     /* XXX these not yet duped */
11709     parser->old_parser = NULL;
11710     parser->stack = NULL;
11711     parser->ps = NULL;
11712     parser->stack_size = 0;
11713     /* XXX parser->stack->state = 0; */
11714
11715     /* XXX eventually, just Copy() most of the parser struct ? */
11716
11717     parser->lex_brackets = proto->lex_brackets;
11718     parser->lex_casemods = proto->lex_casemods;
11719     parser->lex_brackstack = savepvn(proto->lex_brackstack,
11720                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
11721     parser->lex_casestack = savepvn(proto->lex_casestack,
11722                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
11723     parser->lex_defer   = proto->lex_defer;
11724     parser->lex_dojoin  = proto->lex_dojoin;
11725     parser->lex_expect  = proto->lex_expect;
11726     parser->lex_formbrack = proto->lex_formbrack;
11727     parser->lex_inpat   = proto->lex_inpat;
11728     parser->lex_inwhat  = proto->lex_inwhat;
11729     parser->lex_op      = proto->lex_op;
11730     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
11731     parser->lex_starts  = proto->lex_starts;
11732     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
11733     parser->multi_close = proto->multi_close;
11734     parser->multi_open  = proto->multi_open;
11735     parser->multi_start = proto->multi_start;
11736     parser->multi_end   = proto->multi_end;
11737     parser->preambled   = proto->preambled;
11738     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
11739     parser->linestr     = sv_dup_inc(proto->linestr, param);
11740     parser->expect      = proto->expect;
11741     parser->copline     = proto->copline;
11742     parser->last_lop_op = proto->last_lop_op;
11743     parser->lex_state   = proto->lex_state;
11744     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
11745     /* rsfp_filters entries have fake IoDIRP() */
11746     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
11747     parser->in_my       = proto->in_my;
11748     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
11749     parser->error_count = proto->error_count;
11750
11751
11752     parser->linestr     = sv_dup_inc(proto->linestr, param);
11753
11754     {
11755         char * const ols = SvPVX(proto->linestr);
11756         char * const ls  = SvPVX(parser->linestr);
11757
11758         parser->bufptr      = ls + (proto->bufptr >= ols ?
11759                                     proto->bufptr -  ols : 0);
11760         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
11761                                     proto->oldbufptr -  ols : 0);
11762         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
11763                                     proto->oldoldbufptr -  ols : 0);
11764         parser->linestart   = ls + (proto->linestart >= ols ?
11765                                     proto->linestart -  ols : 0);
11766         parser->last_uni    = ls + (proto->last_uni >= ols ?
11767                                     proto->last_uni -  ols : 0);
11768         parser->last_lop    = ls + (proto->last_lop >= ols ?
11769                                     proto->last_lop -  ols : 0);
11770
11771         parser->bufend      = ls + SvCUR(parser->linestr);
11772     }
11773
11774     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
11775
11776
11777 #ifdef PERL_MAD
11778     parser->endwhite    = proto->endwhite;
11779     parser->faketokens  = proto->faketokens;
11780     parser->lasttoke    = proto->lasttoke;
11781     parser->nextwhite   = proto->nextwhite;
11782     parser->realtokenstart = proto->realtokenstart;
11783     parser->skipwhite   = proto->skipwhite;
11784     parser->thisclose   = proto->thisclose;
11785     parser->thismad     = proto->thismad;
11786     parser->thisopen    = proto->thisopen;
11787     parser->thisstuff   = proto->thisstuff;
11788     parser->thistoken   = proto->thistoken;
11789     parser->thiswhite   = proto->thiswhite;
11790
11791     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
11792     parser->curforce    = proto->curforce;
11793 #else
11794     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
11795     Copy(proto->nexttype, parser->nexttype, 5,  I32);
11796     parser->nexttoke    = proto->nexttoke;
11797 #endif
11798
11799     /* XXX should clone saved_curcop here, but we aren't passed
11800      * proto_perl; so do it in perl_clone_using instead */
11801
11802     return parser;
11803 }
11804
11805
11806 /* duplicate a file handle */
11807
11808 PerlIO *
11809 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
11810 {
11811     PerlIO *ret;
11812
11813     PERL_ARGS_ASSERT_FP_DUP;
11814     PERL_UNUSED_ARG(type);
11815
11816     if (!fp)
11817         return (PerlIO*)NULL;
11818
11819     /* look for it in the table first */
11820     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
11821     if (ret)
11822         return ret;
11823
11824     /* create anew and remember what it is */
11825     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
11826     ptr_table_store(PL_ptr_table, fp, ret);
11827     return ret;
11828 }
11829
11830 /* duplicate a directory handle */
11831
11832 DIR *
11833 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
11834 {
11835     DIR *ret;
11836
11837 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
11838     int rc = 0;
11839     DIR *pwd;
11840     const Direntry_t *dirent;
11841     char smallbuf[256];
11842     char *name = NULL;
11843     STRLEN len = 0;
11844     long pos;
11845 #endif
11846
11847     PERL_UNUSED_CONTEXT;
11848     PERL_ARGS_ASSERT_DIRP_DUP;
11849
11850     if (!dp)
11851         return (DIR*)NULL;
11852
11853     /* look for it in the table first */
11854     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
11855     if (ret)
11856         return ret;
11857
11858 #if defined(HAS_FCHDIR) && defined(HAS_TELLDIR) && defined(HAS_SEEKDIR)
11859
11860     PERL_UNUSED_ARG(param);
11861
11862     /* create anew */
11863
11864     /* open the current directory (so we can switch back) */
11865     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
11866
11867     /* chdir to our dir handle and open the present working directory */
11868     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
11869         PerlDir_close(pwd);
11870         return (DIR *)NULL;
11871     }
11872     /* Now we should have two dir handles pointing to the same dir. */
11873
11874     /* Be nice to the calling code and chdir back to where we were. */
11875     rc = fchdir(my_dirfd(pwd));
11876     /* XXX If this fails, then what? */
11877     PERL_UNUSED_VAR(rc);
11878
11879     /* We have no need of the pwd handle any more. */
11880     PerlDir_close(pwd);
11881
11882 #ifdef DIRNAMLEN
11883 # define d_namlen(d) (d)->d_namlen
11884 #else
11885 # define d_namlen(d) strlen((d)->d_name)
11886 #endif
11887     /* Iterate once through dp, to get the file name at the current posi-
11888        tion. Then step back. */
11889     pos = PerlDir_tell(dp);
11890     if ((dirent = PerlDir_read(dp))) {
11891         len = d_namlen(dirent);
11892         if (len <= sizeof smallbuf) name = smallbuf;
11893         else Newx(name, len, char);
11894         Move(dirent->d_name, name, len, char);
11895     }
11896     PerlDir_seek(dp, pos);
11897
11898     /* Iterate through the new dir handle, till we find a file with the
11899        right name. */
11900     if (!dirent) /* just before the end */
11901         for(;;) {
11902             pos = PerlDir_tell(ret);
11903             if (PerlDir_read(ret)) continue; /* not there yet */
11904             PerlDir_seek(ret, pos); /* step back */
11905             break;
11906         }
11907     else {
11908         const long pos0 = PerlDir_tell(ret);
11909         for(;;) {
11910             pos = PerlDir_tell(ret);
11911             if ((dirent = PerlDir_read(ret))) {
11912                 if (len == d_namlen(dirent)
11913                  && memEQ(name, dirent->d_name, len)) {
11914                     /* found it */
11915                     PerlDir_seek(ret, pos); /* step back */
11916                     break;
11917                 }
11918                 /* else we are not there yet; keep iterating */
11919             }
11920             else { /* This is not meant to happen. The best we can do is
11921                       reset the iterator to the beginning. */
11922                 PerlDir_seek(ret, pos0);
11923                 break;
11924             }
11925         }
11926     }
11927 #undef d_namlen
11928
11929     if (name && name != smallbuf)
11930         Safefree(name);
11931 #endif
11932
11933 #ifdef WIN32
11934     ret = win32_dirp_dup(dp, param);
11935 #endif
11936
11937     /* pop it in the pointer table */
11938     if (ret)
11939         ptr_table_store(PL_ptr_table, dp, ret);
11940
11941     return ret;
11942 }
11943
11944 /* duplicate a typeglob */
11945
11946 GP *
11947 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
11948 {
11949     GP *ret;
11950
11951     PERL_ARGS_ASSERT_GP_DUP;
11952
11953     if (!gp)
11954         return (GP*)NULL;
11955     /* look for it in the table first */
11956     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
11957     if (ret)
11958         return ret;
11959
11960     /* create anew and remember what it is */
11961     Newxz(ret, 1, GP);
11962     ptr_table_store(PL_ptr_table, gp, ret);
11963
11964     /* clone */
11965     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
11966        on Newxz() to do this for us.  */
11967     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
11968     ret->gp_io          = io_dup_inc(gp->gp_io, param);
11969     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
11970     ret->gp_av          = av_dup_inc(gp->gp_av, param);
11971     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
11972     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
11973     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
11974     ret->gp_cvgen       = gp->gp_cvgen;
11975     ret->gp_line        = gp->gp_line;
11976     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
11977     return ret;
11978 }
11979
11980 /* duplicate a chain of magic */
11981
11982 MAGIC *
11983 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
11984 {
11985     MAGIC *mgret = NULL;
11986     MAGIC **mgprev_p = &mgret;
11987
11988     PERL_ARGS_ASSERT_MG_DUP;
11989
11990     for (; mg; mg = mg->mg_moremagic) {
11991         MAGIC *nmg;
11992
11993         if ((param->flags & CLONEf_JOIN_IN)
11994                 && mg->mg_type == PERL_MAGIC_backref)
11995             /* when joining, we let the individual SVs add themselves to
11996              * backref as needed. */
11997             continue;
11998
11999         Newx(nmg, 1, MAGIC);
12000         *mgprev_p = nmg;
12001         mgprev_p = &(nmg->mg_moremagic);
12002
12003         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
12004            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
12005            from the original commit adding Perl_mg_dup() - revision 4538.
12006            Similarly there is the annotation "XXX random ptr?" next to the
12007            assignment to nmg->mg_ptr.  */
12008         *nmg = *mg;
12009
12010         /* FIXME for plugins
12011         if (nmg->mg_type == PERL_MAGIC_qr) {
12012             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
12013         }
12014         else
12015         */
12016         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
12017                           ? nmg->mg_type == PERL_MAGIC_backref
12018                                 /* The backref AV has its reference
12019                                  * count deliberately bumped by 1 */
12020                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
12021                                                     nmg->mg_obj, param))
12022                                 : sv_dup_inc(nmg->mg_obj, param)
12023                           : sv_dup(nmg->mg_obj, param);
12024
12025         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
12026             if (nmg->mg_len > 0) {
12027                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
12028                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
12029                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
12030                 {
12031                     AMT * const namtp = (AMT*)nmg->mg_ptr;
12032                     sv_dup_inc_multiple((SV**)(namtp->table),
12033                                         (SV**)(namtp->table), NofAMmeth, param);
12034                 }
12035             }
12036             else if (nmg->mg_len == HEf_SVKEY)
12037                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
12038         }
12039         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
12040             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
12041         }
12042     }
12043     return mgret;
12044 }
12045
12046 #endif /* USE_ITHREADS */
12047
12048 struct ptr_tbl_arena {
12049     struct ptr_tbl_arena *next;
12050     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
12051 };
12052
12053 /* create a new pointer-mapping table */
12054
12055 PTR_TBL_t *
12056 Perl_ptr_table_new(pTHX)
12057 {
12058     PTR_TBL_t *tbl;
12059     PERL_UNUSED_CONTEXT;
12060
12061     Newx(tbl, 1, PTR_TBL_t);
12062     tbl->tbl_max        = 511;
12063     tbl->tbl_items      = 0;
12064     tbl->tbl_arena      = NULL;
12065     tbl->tbl_arena_next = NULL;
12066     tbl->tbl_arena_end  = NULL;
12067     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
12068     return tbl;
12069 }
12070
12071 #define PTR_TABLE_HASH(ptr) \
12072   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
12073
12074 /* map an existing pointer using a table */
12075
12076 STATIC PTR_TBL_ENT_t *
12077 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
12078 {
12079     PTR_TBL_ENT_t *tblent;
12080     const UV hash = PTR_TABLE_HASH(sv);
12081
12082     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
12083
12084     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
12085     for (; tblent; tblent = tblent->next) {
12086         if (tblent->oldval == sv)
12087             return tblent;
12088     }
12089     return NULL;
12090 }
12091
12092 void *
12093 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
12094 {
12095     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
12096
12097     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
12098     PERL_UNUSED_CONTEXT;
12099
12100     return tblent ? tblent->newval : NULL;
12101 }
12102
12103 /* add a new entry to a pointer-mapping table 'tbl'.  In hash terms, 'oldsv' is
12104  * the key; 'newsv' is the value.  The names "old" and "new" are specific to
12105  * the core's typical use of ptr_tables in thread cloning. */
12106
12107 void
12108 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
12109 {
12110     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
12111
12112     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
12113     PERL_UNUSED_CONTEXT;
12114
12115     if (tblent) {
12116         tblent->newval = newsv;
12117     } else {
12118         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
12119
12120         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
12121             struct ptr_tbl_arena *new_arena;
12122
12123             Newx(new_arena, 1, struct ptr_tbl_arena);
12124             new_arena->next = tbl->tbl_arena;
12125             tbl->tbl_arena = new_arena;
12126             tbl->tbl_arena_next = new_arena->array;
12127             tbl->tbl_arena_end = new_arena->array
12128                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
12129         }
12130
12131         tblent = tbl->tbl_arena_next++;
12132
12133         tblent->oldval = oldsv;
12134         tblent->newval = newsv;
12135         tblent->next = tbl->tbl_ary[entry];
12136         tbl->tbl_ary[entry] = tblent;
12137         tbl->tbl_items++;
12138         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
12139             ptr_table_split(tbl);
12140     }
12141 }
12142
12143 /* double the hash bucket size of an existing ptr table */
12144
12145 void
12146 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
12147 {
12148     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
12149     const UV oldsize = tbl->tbl_max + 1;
12150     UV newsize = oldsize * 2;
12151     UV i;
12152
12153     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
12154     PERL_UNUSED_CONTEXT;
12155
12156     Renew(ary, newsize, PTR_TBL_ENT_t*);
12157     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
12158     tbl->tbl_max = --newsize;
12159     tbl->tbl_ary = ary;
12160     for (i=0; i < oldsize; i++, ary++) {
12161         PTR_TBL_ENT_t **entp = ary;
12162         PTR_TBL_ENT_t *ent = *ary;
12163         PTR_TBL_ENT_t **curentp;
12164         if (!ent)
12165             continue;
12166         curentp = ary + oldsize;
12167         do {
12168             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
12169                 *entp = ent->next;
12170                 ent->next = *curentp;
12171                 *curentp = ent;
12172             }
12173             else
12174                 entp = &ent->next;
12175             ent = *entp;
12176         } while (ent);
12177     }
12178 }
12179
12180 /* remove all the entries from a ptr table */
12181 /* Deprecated - will be removed post 5.14 */
12182
12183 void
12184 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
12185 {
12186     if (tbl && tbl->tbl_items) {
12187         struct ptr_tbl_arena *arena = tbl->tbl_arena;
12188
12189         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
12190
12191         while (arena) {
12192             struct ptr_tbl_arena *next = arena->next;
12193
12194             Safefree(arena);
12195             arena = next;
12196         };
12197
12198         tbl->tbl_items = 0;
12199         tbl->tbl_arena = NULL;
12200         tbl->tbl_arena_next = NULL;
12201         tbl->tbl_arena_end = NULL;
12202     }
12203 }
12204
12205 /* clear and free a ptr table */
12206
12207 void
12208 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
12209 {
12210     struct ptr_tbl_arena *arena;
12211
12212     if (!tbl) {
12213         return;
12214     }
12215
12216     arena = tbl->tbl_arena;
12217
12218     while (arena) {
12219         struct ptr_tbl_arena *next = arena->next;
12220
12221         Safefree(arena);
12222         arena = next;
12223     }
12224
12225     Safefree(tbl->tbl_ary);
12226     Safefree(tbl);
12227 }
12228
12229 #if defined(USE_ITHREADS)
12230
12231 void
12232 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
12233 {
12234     PERL_ARGS_ASSERT_RVPV_DUP;
12235
12236     assert(!isREGEXP(sstr));
12237     if (SvROK(sstr)) {
12238         if (SvWEAKREF(sstr)) {
12239             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
12240             if (param->flags & CLONEf_JOIN_IN) {
12241                 /* if joining, we add any back references individually rather
12242                  * than copying the whole backref array */
12243                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
12244             }
12245         }
12246         else
12247             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
12248     }
12249     else if (SvPVX_const(sstr)) {
12250         /* Has something there */
12251         if (SvLEN(sstr)) {
12252             /* Normal PV - clone whole allocated space */
12253             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
12254             /* sstr may not be that normal, but actually copy on write.
12255                But we are a true, independent SV, so:  */
12256             SvIsCOW_off(dstr);
12257         }
12258         else {
12259             /* Special case - not normally malloced for some reason */
12260             if (isGV_with_GP(sstr)) {
12261                 /* Don't need to do anything here.  */
12262             }
12263             else if ((SvIsCOW(sstr))) {
12264                 /* A "shared" PV - clone it as "shared" PV */
12265                 SvPV_set(dstr,
12266                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
12267                                          param)));
12268             }
12269             else {
12270                 /* Some other special case - random pointer */
12271                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
12272             }
12273         }
12274     }
12275     else {
12276         /* Copy the NULL */
12277         SvPV_set(dstr, NULL);
12278     }
12279 }
12280
12281 /* duplicate a list of SVs. source and dest may point to the same memory.  */
12282 static SV **
12283 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
12284                       SSize_t items, CLONE_PARAMS *const param)
12285 {
12286     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
12287
12288     while (items-- > 0) {
12289         *dest++ = sv_dup_inc(*source++, param);
12290     }
12291
12292     return dest;
12293 }
12294
12295 /* duplicate an SV of any type (including AV, HV etc) */
12296
12297 static SV *
12298 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12299 {
12300     dVAR;
12301     SV *dstr;
12302
12303     PERL_ARGS_ASSERT_SV_DUP_COMMON;
12304
12305     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
12306 #ifdef DEBUG_LEAKING_SCALARS_ABORT
12307         abort();
12308 #endif
12309         return NULL;
12310     }
12311     /* look for it in the table first */
12312     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
12313     if (dstr)
12314         return dstr;
12315
12316     if(param->flags & CLONEf_JOIN_IN) {
12317         /** We are joining here so we don't want do clone
12318             something that is bad **/
12319         if (SvTYPE(sstr) == SVt_PVHV) {
12320             const HEK * const hvname = HvNAME_HEK(sstr);
12321             if (hvname) {
12322                 /** don't clone stashes if they already exist **/
12323                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
12324                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
12325                 ptr_table_store(PL_ptr_table, sstr, dstr);
12326                 return dstr;
12327             }
12328         }
12329         else if (SvTYPE(sstr) == SVt_PVGV && !SvFAKE(sstr)) {
12330             HV *stash = GvSTASH(sstr);
12331             const HEK * hvname;
12332             if (stash && (hvname = HvNAME_HEK(stash))) {
12333                 /** don't clone GVs if they already exist **/
12334                 SV **svp;
12335                 stash = gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
12336                                     HEK_UTF8(hvname) ? SVf_UTF8 : 0);
12337                 svp = hv_fetch(
12338                         stash, GvNAME(sstr),
12339                         GvNAMEUTF8(sstr)
12340                             ? -GvNAMELEN(sstr)
12341                             :  GvNAMELEN(sstr),
12342                         0
12343                       );
12344                 if (svp && *svp && SvTYPE(*svp) == SVt_PVGV) {
12345                     ptr_table_store(PL_ptr_table, sstr, *svp);
12346                     return *svp;
12347                 }
12348             }
12349         }
12350     }
12351
12352     /* create anew and remember what it is */
12353     new_SV(dstr);
12354
12355 #ifdef DEBUG_LEAKING_SCALARS
12356     dstr->sv_debug_optype = sstr->sv_debug_optype;
12357     dstr->sv_debug_line = sstr->sv_debug_line;
12358     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
12359     dstr->sv_debug_parent = (SV*)sstr;
12360     FREE_SV_DEBUG_FILE(dstr);
12361     dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
12362 #endif
12363
12364     ptr_table_store(PL_ptr_table, sstr, dstr);
12365
12366     /* clone */
12367     SvFLAGS(dstr)       = SvFLAGS(sstr);
12368     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
12369     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
12370
12371 #ifdef DEBUGGING
12372     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
12373         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
12374                       (void*)PL_watch_pvx, SvPVX_const(sstr));
12375 #endif
12376
12377     /* don't clone objects whose class has asked us not to */
12378     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
12379         SvFLAGS(dstr) = 0;
12380         return dstr;
12381     }
12382
12383     switch (SvTYPE(sstr)) {
12384     case SVt_NULL:
12385         SvANY(dstr)     = NULL;
12386         break;
12387     case SVt_IV:
12388         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
12389         if(SvROK(sstr)) {
12390             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
12391         } else {
12392             SvIV_set(dstr, SvIVX(sstr));
12393         }
12394         break;
12395     case SVt_NV:
12396         SvANY(dstr)     = new_XNV();
12397         SvNV_set(dstr, SvNVX(sstr));
12398         break;
12399     default:
12400         {
12401             /* These are all the types that need complex bodies allocating.  */
12402             void *new_body;
12403             const svtype sv_type = SvTYPE(sstr);
12404             const struct body_details *const sv_type_details
12405                 = bodies_by_type + sv_type;
12406
12407             switch (sv_type) {
12408             default:
12409                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
12410                 break;
12411
12412             case SVt_PVGV:
12413             case SVt_PVIO:
12414             case SVt_PVFM:
12415             case SVt_PVHV:
12416             case SVt_PVAV:
12417             case SVt_PVCV:
12418             case SVt_PVLV:
12419             case SVt_REGEXP:
12420             case SVt_PVMG:
12421             case SVt_PVNV:
12422             case SVt_PVIV:
12423             case SVt_INVLIST:
12424             case SVt_PV:
12425                 assert(sv_type_details->body_size);
12426                 if (sv_type_details->arena) {
12427                     new_body_inline(new_body, sv_type);
12428                     new_body
12429                         = (void*)((char*)new_body - sv_type_details->offset);
12430                 } else {
12431                     new_body = new_NOARENA(sv_type_details);
12432                 }
12433             }
12434             assert(new_body);
12435             SvANY(dstr) = new_body;
12436
12437 #ifndef PURIFY
12438             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
12439                  ((char*)SvANY(dstr)) + sv_type_details->offset,
12440                  sv_type_details->copy, char);
12441 #else
12442             Copy(((char*)SvANY(sstr)),
12443                  ((char*)SvANY(dstr)),
12444                  sv_type_details->body_size + sv_type_details->offset, char);
12445 #endif
12446
12447             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
12448                 && !isGV_with_GP(dstr)
12449                 && !isREGEXP(dstr)
12450                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
12451                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
12452
12453             /* The Copy above means that all the source (unduplicated) pointers
12454                are now in the destination.  We can check the flags and the
12455                pointers in either, but it's possible that there's less cache
12456                missing by always going for the destination.
12457                FIXME - instrument and check that assumption  */
12458             if (sv_type >= SVt_PVMG) {
12459                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
12460                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
12461                 } else if (sv_type == SVt_PVAV && AvPAD_NAMELIST(dstr)) {
12462                     NOOP;
12463                 } else if (SvMAGIC(dstr))
12464                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
12465                 if (SvOBJECT(dstr) && SvSTASH(dstr))
12466                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
12467                 else SvSTASH_set(dstr, 0); /* don't copy DESTROY cache */
12468             }
12469
12470             /* The cast silences a GCC warning about unhandled types.  */
12471             switch ((int)sv_type) {
12472             case SVt_PV:
12473                 break;
12474             case SVt_PVIV:
12475                 break;
12476             case SVt_PVNV:
12477                 break;
12478             case SVt_PVMG:
12479                 break;
12480             case SVt_REGEXP:
12481               duprex:
12482                 /* FIXME for plugins */
12483                 dstr->sv_u.svu_rx = ((REGEXP *)dstr)->sv_any;
12484                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
12485                 break;
12486             case SVt_PVLV:
12487                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
12488                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
12489                     LvTARG(dstr) = dstr;
12490                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
12491                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
12492                 else
12493                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
12494                 if (isREGEXP(sstr)) goto duprex;
12495             case SVt_PVGV:
12496                 /* non-GP case already handled above */
12497                 if(isGV_with_GP(sstr)) {
12498                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
12499                     /* Don't call sv_add_backref here as it's going to be
12500                        created as part of the magic cloning of the symbol
12501                        table--unless this is during a join and the stash
12502                        is not actually being cloned.  */
12503                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
12504                        at the point of this comment.  */
12505                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
12506                     if (param->flags & CLONEf_JOIN_IN)
12507                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
12508                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
12509                     (void)GpREFCNT_inc(GvGP(dstr));
12510                 }
12511                 break;
12512             case SVt_PVIO:
12513                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
12514                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
12515                     /* I have no idea why fake dirp (rsfps)
12516                        should be treated differently but otherwise
12517                        we end up with leaks -- sky*/
12518                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
12519                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
12520                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
12521                 } else {
12522                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
12523                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
12524                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
12525                     if (IoDIRP(dstr)) {
12526                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
12527                     } else {
12528                         NOOP;
12529                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
12530                     }
12531                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
12532                 }
12533                 if (IoOFP(dstr) == IoIFP(sstr))
12534                     IoOFP(dstr) = IoIFP(dstr);
12535                 else
12536                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
12537                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
12538                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
12539                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
12540                 break;
12541             case SVt_PVAV:
12542                 /* avoid cloning an empty array */
12543                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
12544                     SV **dst_ary, **src_ary;
12545                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
12546
12547                     src_ary = AvARRAY((const AV *)sstr);
12548                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
12549                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
12550                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
12551                     AvALLOC((const AV *)dstr) = dst_ary;
12552                     if (AvREAL((const AV *)sstr)) {
12553                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
12554                                                       param);
12555                     }
12556                     else {
12557                         while (items-- > 0)
12558                             *dst_ary++ = sv_dup(*src_ary++, param);
12559                     }
12560                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
12561                     while (items-- > 0) {
12562                         *dst_ary++ = &PL_sv_undef;
12563                     }
12564                 }
12565                 else {
12566                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
12567                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
12568                     AvMAX(  (const AV *)dstr)   = -1;
12569                     AvFILLp((const AV *)dstr)   = -1;
12570                 }
12571                 break;
12572             case SVt_PVHV:
12573                 if (HvARRAY((const HV *)sstr)) {
12574                     STRLEN i = 0;
12575                     const bool sharekeys = !!HvSHAREKEYS(sstr);
12576                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
12577                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
12578                     char *darray;
12579                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
12580                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
12581                         char);
12582                     HvARRAY(dstr) = (HE**)darray;
12583                     while (i <= sxhv->xhv_max) {
12584                         const HE * const source = HvARRAY(sstr)[i];
12585                         HvARRAY(dstr)[i] = source
12586                             ? he_dup(source, sharekeys, param) : 0;
12587                         ++i;
12588                     }
12589                     if (SvOOK(sstr)) {
12590                         const struct xpvhv_aux * const saux = HvAUX(sstr);
12591                         struct xpvhv_aux * const daux = HvAUX(dstr);
12592                         /* This flag isn't copied.  */
12593                         SvOOK_on(dstr);
12594
12595                         if (saux->xhv_name_count) {
12596                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
12597                             const I32 count
12598                              = saux->xhv_name_count < 0
12599                                 ? -saux->xhv_name_count
12600                                 :  saux->xhv_name_count;
12601                             HEK **shekp = sname + count;
12602                             HEK **dhekp;
12603                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
12604                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
12605                             while (shekp-- > sname) {
12606                                 dhekp--;
12607                                 *dhekp = hek_dup(*shekp, param);
12608                             }
12609                         }
12610                         else {
12611                             daux->xhv_name_u.xhvnameu_name
12612                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
12613                                           param);
12614                         }
12615                         daux->xhv_name_count = saux->xhv_name_count;
12616
12617                         daux->xhv_fill_lazy = saux->xhv_fill_lazy;
12618                         daux->xhv_riter = saux->xhv_riter;
12619                         daux->xhv_eiter = saux->xhv_eiter
12620                             ? he_dup(saux->xhv_eiter,
12621                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
12622                         /* backref array needs refcnt=2; see sv_add_backref */
12623                         daux->xhv_backreferences =
12624                             (param->flags & CLONEf_JOIN_IN)
12625                                 /* when joining, we let the individual GVs and
12626                                  * CVs add themselves to backref as
12627                                  * needed. This avoids pulling in stuff
12628                                  * that isn't required, and simplifies the
12629                                  * case where stashes aren't cloned back
12630                                  * if they already exist in the parent
12631                                  * thread */
12632                             ? NULL
12633                             : saux->xhv_backreferences
12634                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
12635                                     ? MUTABLE_AV(SvREFCNT_inc(
12636                                           sv_dup_inc((const SV *)
12637                                             saux->xhv_backreferences, param)))
12638                                     : MUTABLE_AV(sv_dup((const SV *)
12639                                             saux->xhv_backreferences, param))
12640                                 : 0;
12641
12642                         daux->xhv_mro_meta = saux->xhv_mro_meta
12643                             ? mro_meta_dup(saux->xhv_mro_meta, param)
12644                             : 0;
12645
12646                         /* Record stashes for possible cloning in Perl_clone(). */
12647                         if (HvNAME(sstr))
12648                             av_push(param->stashes, dstr);
12649                     }
12650                 }
12651                 else
12652                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
12653                 break;
12654             case SVt_PVCV:
12655                 if (!(param->flags & CLONEf_COPY_STACKS)) {
12656                     CvDEPTH(dstr) = 0;
12657                 }
12658                 /*FALLTHROUGH*/
12659             case SVt_PVFM:
12660                 /* NOTE: not refcounted */
12661                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
12662                     hv_dup(CvSTASH(dstr), param);
12663                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
12664                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
12665                 if (!CvISXSUB(dstr)) {
12666                     OP_REFCNT_LOCK;
12667                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
12668                     OP_REFCNT_UNLOCK;
12669                     CvSLABBED_off(dstr);
12670                 } else if (CvCONST(dstr)) {
12671                     CvXSUBANY(dstr).any_ptr =
12672                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
12673                 }
12674                 assert(!CvSLABBED(dstr));
12675                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
12676                 if (CvNAMED(dstr))
12677                     SvANY((CV *)dstr)->xcv_gv_u.xcv_hek =
12678                         share_hek_hek(CvNAME_HEK((CV *)sstr));
12679                 /* don't dup if copying back - CvGV isn't refcounted, so the
12680                  * duped GV may never be freed. A bit of a hack! DAPM */
12681                 else
12682                   SvANY(MUTABLE_CV(dstr))->xcv_gv_u.xcv_gv =
12683                     CvCVGV_RC(dstr)
12684                     ? gv_dup_inc(CvGV(sstr), param)
12685                     : (param->flags & CLONEf_JOIN_IN)
12686                         ? NULL
12687                         : gv_dup(CvGV(sstr), param);
12688
12689                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
12690                 CvOUTSIDE(dstr) =
12691                     CvWEAKOUTSIDE(sstr)
12692                     ? cv_dup(    CvOUTSIDE(dstr), param)
12693                     : cv_dup_inc(CvOUTSIDE(dstr), param);
12694                 break;
12695             }
12696         }
12697     }
12698
12699     return dstr;
12700  }
12701
12702 SV *
12703 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12704 {
12705     PERL_ARGS_ASSERT_SV_DUP_INC;
12706     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
12707 }
12708
12709 SV *
12710 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12711 {
12712     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
12713     PERL_ARGS_ASSERT_SV_DUP;
12714
12715     /* Track every SV that (at least initially) had a reference count of 0.
12716        We need to do this by holding an actual reference to it in this array.
12717        If we attempt to cheat, turn AvREAL_off(), and store only pointers
12718        (akin to the stashes hash, and the perl stack), we come unstuck if
12719        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
12720        thread) is manipulated in a CLONE method, because CLONE runs before the
12721        unreferenced array is walked to find SVs still with SvREFCNT() == 0
12722        (and fix things up by giving each a reference via the temps stack).
12723        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
12724        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
12725        before the walk of unreferenced happens and a reference to that is SV
12726        added to the temps stack. At which point we have the same SV considered
12727        to be in use, and free to be re-used. Not good.
12728     */
12729     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
12730         assert(param->unreferenced);
12731         av_push(param->unreferenced, SvREFCNT_inc(dstr));
12732     }
12733
12734     return dstr;
12735 }
12736
12737 /* duplicate a context */
12738
12739 PERL_CONTEXT *
12740 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
12741 {
12742     PERL_CONTEXT *ncxs;
12743
12744     PERL_ARGS_ASSERT_CX_DUP;
12745
12746     if (!cxs)
12747         return (PERL_CONTEXT*)NULL;
12748
12749     /* look for it in the table first */
12750     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
12751     if (ncxs)
12752         return ncxs;
12753
12754     /* create anew and remember what it is */
12755     Newx(ncxs, max + 1, PERL_CONTEXT);
12756     ptr_table_store(PL_ptr_table, cxs, ncxs);
12757     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
12758
12759     while (ix >= 0) {
12760         PERL_CONTEXT * const ncx = &ncxs[ix];
12761         if (CxTYPE(ncx) == CXt_SUBST) {
12762             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
12763         }
12764         else {
12765             ncx->blk_oldcop = (COP*)any_dup(ncx->blk_oldcop, param->proto_perl);
12766             switch (CxTYPE(ncx)) {
12767             case CXt_SUB:
12768                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
12769                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
12770                                            : cv_dup(ncx->blk_sub.cv,param));
12771                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
12772                                            ? av_dup_inc(ncx->blk_sub.argarray,
12773                                                         param)
12774                                            : NULL);
12775                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
12776                                                      param);
12777                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
12778                                            ncx->blk_sub.oldcomppad);
12779                 break;
12780             case CXt_EVAL:
12781                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
12782                                                       param);
12783                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
12784                 ncx->blk_eval.cv = cv_dup(ncx->blk_eval.cv, param);
12785                 break;
12786             case CXt_LOOP_LAZYSV:
12787                 ncx->blk_loop.state_u.lazysv.end
12788                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
12789                 /* We are taking advantage of av_dup_inc and sv_dup_inc
12790                    actually being the same function, and order equivalence of
12791                    the two unions.
12792                    We can assert the later [but only at run time :-(]  */
12793                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
12794                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
12795             case CXt_LOOP_FOR:
12796                 ncx->blk_loop.state_u.ary.ary
12797                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
12798             case CXt_LOOP_LAZYIV:
12799             case CXt_LOOP_PLAIN:
12800                 if (CxPADLOOP(ncx)) {
12801                     ncx->blk_loop.itervar_u.oldcomppad
12802                         = (PAD*)ptr_table_fetch(PL_ptr_table,
12803                                         ncx->blk_loop.itervar_u.oldcomppad);
12804                 } else {
12805                     ncx->blk_loop.itervar_u.gv
12806                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
12807                                     param);
12808                 }
12809                 break;
12810             case CXt_FORMAT:
12811                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
12812                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
12813                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
12814                                                      param);
12815                 break;
12816             case CXt_BLOCK:
12817             case CXt_NULL:
12818             case CXt_WHEN:
12819             case CXt_GIVEN:
12820                 break;
12821             }
12822         }
12823         --ix;
12824     }
12825     return ncxs;
12826 }
12827
12828 /* duplicate a stack info structure */
12829
12830 PERL_SI *
12831 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
12832 {
12833     PERL_SI *nsi;
12834
12835     PERL_ARGS_ASSERT_SI_DUP;
12836
12837     if (!si)
12838         return (PERL_SI*)NULL;
12839
12840     /* look for it in the table first */
12841     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
12842     if (nsi)
12843         return nsi;
12844
12845     /* create anew and remember what it is */
12846     Newxz(nsi, 1, PERL_SI);
12847     ptr_table_store(PL_ptr_table, si, nsi);
12848
12849     nsi->si_stack       = av_dup_inc(si->si_stack, param);
12850     nsi->si_cxix        = si->si_cxix;
12851     nsi->si_cxmax       = si->si_cxmax;
12852     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
12853     nsi->si_type        = si->si_type;
12854     nsi->si_prev        = si_dup(si->si_prev, param);
12855     nsi->si_next        = si_dup(si->si_next, param);
12856     nsi->si_markoff     = si->si_markoff;
12857
12858     return nsi;
12859 }
12860
12861 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
12862 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
12863 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
12864 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
12865 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
12866 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
12867 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
12868 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
12869 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
12870 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
12871 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
12872 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
12873 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
12874 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
12875 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
12876 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
12877
12878 /* XXXXX todo */
12879 #define pv_dup_inc(p)   SAVEPV(p)
12880 #define pv_dup(p)       SAVEPV(p)
12881 #define svp_dup_inc(p,pp)       any_dup(p,pp)
12882
12883 /* map any object to the new equivent - either something in the
12884  * ptr table, or something in the interpreter structure
12885  */
12886
12887 void *
12888 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
12889 {
12890     void *ret;
12891
12892     PERL_ARGS_ASSERT_ANY_DUP;
12893
12894     if (!v)
12895         return (void*)NULL;
12896
12897     /* look for it in the table first */
12898     ret = ptr_table_fetch(PL_ptr_table, v);
12899     if (ret)
12900         return ret;
12901
12902     /* see if it is part of the interpreter structure */
12903     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
12904         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
12905     else {
12906         ret = v;
12907     }
12908
12909     return ret;
12910 }
12911
12912 /* duplicate the save stack */
12913
12914 ANY *
12915 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
12916 {
12917     dVAR;
12918     ANY * const ss      = proto_perl->Isavestack;
12919     const I32 max       = proto_perl->Isavestack_max;
12920     I32 ix              = proto_perl->Isavestack_ix;
12921     ANY *nss;
12922     const SV *sv;
12923     const GV *gv;
12924     const AV *av;
12925     const HV *hv;
12926     void* ptr;
12927     int intval;
12928     long longval;
12929     GP *gp;
12930     IV iv;
12931     I32 i;
12932     char *c = NULL;
12933     void (*dptr) (void*);
12934     void (*dxptr) (pTHX_ void*);
12935
12936     PERL_ARGS_ASSERT_SS_DUP;
12937
12938     Newxz(nss, max, ANY);
12939
12940     while (ix > 0) {
12941         const UV uv = POPUV(ss,ix);
12942         const U8 type = (U8)uv & SAVE_MASK;
12943
12944         TOPUV(nss,ix) = uv;
12945         switch (type) {
12946         case SAVEt_CLEARSV:
12947         case SAVEt_CLEARPADRANGE:
12948             break;
12949         case SAVEt_HELEM:               /* hash element */
12950             sv = (const SV *)POPPTR(ss,ix);
12951             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12952             /* fall through */
12953         case SAVEt_ITEM:                        /* normal string */
12954         case SAVEt_GVSV:                        /* scalar slot in GV */
12955         case SAVEt_SV:                          /* scalar reference */
12956             sv = (const SV *)POPPTR(ss,ix);
12957             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12958             /* fall through */
12959         case SAVEt_FREESV:
12960         case SAVEt_MORTALIZESV:
12961         case SAVEt_READONLY_OFF:
12962             sv = (const SV *)POPPTR(ss,ix);
12963             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12964             break;
12965         case SAVEt_SHARED_PVREF:                /* char* in shared space */
12966             c = (char*)POPPTR(ss,ix);
12967             TOPPTR(nss,ix) = savesharedpv(c);
12968             ptr = POPPTR(ss,ix);
12969             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12970             break;
12971         case SAVEt_GENERIC_SVREF:               /* generic sv */
12972         case SAVEt_SVREF:                       /* scalar reference */
12973             sv = (const SV *)POPPTR(ss,ix);
12974             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12975             ptr = POPPTR(ss,ix);
12976             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12977             break;
12978         case SAVEt_GVSLOT:              /* any slot in GV */
12979             sv = (const SV *)POPPTR(ss,ix);
12980             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12981             ptr = POPPTR(ss,ix);
12982             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12983             sv = (const SV *)POPPTR(ss,ix);
12984             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12985             break;
12986         case SAVEt_HV:                          /* hash reference */
12987         case SAVEt_AV:                          /* array reference */
12988             sv = (const SV *) POPPTR(ss,ix);
12989             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12990             /* fall through */
12991         case SAVEt_COMPPAD:
12992         case SAVEt_NSTAB:
12993             sv = (const SV *) POPPTR(ss,ix);
12994             TOPPTR(nss,ix) = sv_dup(sv, param);
12995             break;
12996         case SAVEt_INT:                         /* int reference */
12997             ptr = POPPTR(ss,ix);
12998             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12999             intval = (int)POPINT(ss,ix);
13000             TOPINT(nss,ix) = intval;
13001             break;
13002         case SAVEt_LONG:                        /* long reference */
13003             ptr = POPPTR(ss,ix);
13004             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13005             longval = (long)POPLONG(ss,ix);
13006             TOPLONG(nss,ix) = longval;
13007             break;
13008         case SAVEt_I32:                         /* I32 reference */
13009             ptr = POPPTR(ss,ix);
13010             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13011             i = POPINT(ss,ix);
13012             TOPINT(nss,ix) = i;
13013             break;
13014         case SAVEt_IV:                          /* IV reference */
13015         case SAVEt_STRLEN:                      /* STRLEN/size_t ref */
13016             ptr = POPPTR(ss,ix);
13017             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13018             iv = POPIV(ss,ix);
13019             TOPIV(nss,ix) = iv;
13020             break;
13021         case SAVEt_HPTR:                        /* HV* reference */
13022         case SAVEt_APTR:                        /* AV* reference */
13023         case SAVEt_SPTR:                        /* SV* reference */
13024             ptr = POPPTR(ss,ix);
13025             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13026             sv = (const SV *)POPPTR(ss,ix);
13027             TOPPTR(nss,ix) = sv_dup(sv, param);
13028             break;
13029         case SAVEt_VPTR:                        /* random* reference */
13030             ptr = POPPTR(ss,ix);
13031             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13032             /* Fall through */
13033         case SAVEt_INT_SMALL:
13034         case SAVEt_I32_SMALL:
13035         case SAVEt_I16:                         /* I16 reference */
13036         case SAVEt_I8:                          /* I8 reference */
13037         case SAVEt_BOOL:
13038             ptr = POPPTR(ss,ix);
13039             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13040             break;
13041         case SAVEt_GENERIC_PVREF:               /* generic char* */
13042         case SAVEt_PPTR:                        /* char* reference */
13043             ptr = POPPTR(ss,ix);
13044             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13045             c = (char*)POPPTR(ss,ix);
13046             TOPPTR(nss,ix) = pv_dup(c);
13047             break;
13048         case SAVEt_GP:                          /* scalar reference */
13049             gp = (GP*)POPPTR(ss,ix);
13050             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
13051             (void)GpREFCNT_inc(gp);
13052             gv = (const GV *)POPPTR(ss,ix);
13053             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
13054             break;
13055         case SAVEt_FREEOP:
13056             ptr = POPPTR(ss,ix);
13057             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
13058                 /* these are assumed to be refcounted properly */
13059                 OP *o;
13060                 switch (((OP*)ptr)->op_type) {
13061                 case OP_LEAVESUB:
13062                 case OP_LEAVESUBLV:
13063                 case OP_LEAVEEVAL:
13064                 case OP_LEAVE:
13065                 case OP_SCOPE:
13066                 case OP_LEAVEWRITE:
13067                     TOPPTR(nss,ix) = ptr;
13068                     o = (OP*)ptr;
13069                     OP_REFCNT_LOCK;
13070                     (void) OpREFCNT_inc(o);
13071                     OP_REFCNT_UNLOCK;
13072                     break;
13073                 default:
13074                     TOPPTR(nss,ix) = NULL;
13075                     break;
13076                 }
13077             }
13078             else
13079                 TOPPTR(nss,ix) = NULL;
13080             break;
13081         case SAVEt_FREECOPHH:
13082             ptr = POPPTR(ss,ix);
13083             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
13084             break;
13085         case SAVEt_ADELETE:
13086             av = (const AV *)POPPTR(ss,ix);
13087             TOPPTR(nss,ix) = av_dup_inc(av, param);
13088             i = POPINT(ss,ix);
13089             TOPINT(nss,ix) = i;
13090             break;
13091         case SAVEt_DELETE:
13092             hv = (const HV *)POPPTR(ss,ix);
13093             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
13094             i = POPINT(ss,ix);
13095             TOPINT(nss,ix) = i;
13096             /* Fall through */
13097         case SAVEt_FREEPV:
13098             c = (char*)POPPTR(ss,ix);
13099             TOPPTR(nss,ix) = pv_dup_inc(c);
13100             break;
13101         case SAVEt_STACK_POS:           /* Position on Perl stack */
13102             i = POPINT(ss,ix);
13103             TOPINT(nss,ix) = i;
13104             break;
13105         case SAVEt_DESTRUCTOR:
13106             ptr = POPPTR(ss,ix);
13107             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
13108             dptr = POPDPTR(ss,ix);
13109             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
13110                                         any_dup(FPTR2DPTR(void *, dptr),
13111                                                 proto_perl));
13112             break;
13113         case SAVEt_DESTRUCTOR_X:
13114             ptr = POPPTR(ss,ix);
13115             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
13116             dxptr = POPDXPTR(ss,ix);
13117             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
13118                                          any_dup(FPTR2DPTR(void *, dxptr),
13119                                                  proto_perl));
13120             break;
13121         case SAVEt_REGCONTEXT:
13122         case SAVEt_ALLOC:
13123             ix -= uv >> SAVE_TIGHT_SHIFT;
13124             break;
13125         case SAVEt_AELEM:               /* array element */
13126             sv = (const SV *)POPPTR(ss,ix);
13127             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13128             i = POPINT(ss,ix);
13129             TOPINT(nss,ix) = i;
13130             av = (const AV *)POPPTR(ss,ix);
13131             TOPPTR(nss,ix) = av_dup_inc(av, param);
13132             break;
13133         case SAVEt_OP:
13134             ptr = POPPTR(ss,ix);
13135             TOPPTR(nss,ix) = ptr;
13136             break;
13137         case SAVEt_HINTS:
13138             ptr = POPPTR(ss,ix);
13139             ptr = cophh_copy((COPHH*)ptr);
13140             TOPPTR(nss,ix) = ptr;
13141             i = POPINT(ss,ix);
13142             TOPINT(nss,ix) = i;
13143             if (i & HINT_LOCALIZE_HH) {
13144                 hv = (const HV *)POPPTR(ss,ix);
13145                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
13146             }
13147             break;
13148         case SAVEt_PADSV_AND_MORTALIZE:
13149             longval = (long)POPLONG(ss,ix);
13150             TOPLONG(nss,ix) = longval;
13151             ptr = POPPTR(ss,ix);
13152             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13153             sv = (const SV *)POPPTR(ss,ix);
13154             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13155             break;
13156         case SAVEt_SET_SVFLAGS:
13157             i = POPINT(ss,ix);
13158             TOPINT(nss,ix) = i;
13159             i = POPINT(ss,ix);
13160             TOPINT(nss,ix) = i;
13161             sv = (const SV *)POPPTR(ss,ix);
13162             TOPPTR(nss,ix) = sv_dup(sv, param);
13163             break;
13164         case SAVEt_COMPILE_WARNINGS:
13165             ptr = POPPTR(ss,ix);
13166             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
13167             break;
13168         case SAVEt_PARSER:
13169             ptr = POPPTR(ss,ix);
13170             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
13171             break;
13172         default:
13173             Perl_croak(aTHX_
13174                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
13175         }
13176     }
13177
13178     return nss;
13179 }
13180
13181
13182 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
13183  * flag to the result. This is done for each stash before cloning starts,
13184  * so we know which stashes want their objects cloned */
13185
13186 static void
13187 do_mark_cloneable_stash(pTHX_ SV *const sv)
13188 {
13189     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
13190     if (hvname) {
13191         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
13192         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
13193         if (cloner && GvCV(cloner)) {
13194             dSP;
13195             UV status;
13196
13197             ENTER;
13198             SAVETMPS;
13199             PUSHMARK(SP);
13200             mXPUSHs(newSVhek(hvname));
13201             PUTBACK;
13202             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
13203             SPAGAIN;
13204             status = POPu;
13205             PUTBACK;
13206             FREETMPS;
13207             LEAVE;
13208             if (status)
13209                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
13210         }
13211     }
13212 }
13213
13214
13215
13216 /*
13217 =for apidoc perl_clone
13218
13219 Create and return a new interpreter by cloning the current one.
13220
13221 perl_clone takes these flags as parameters:
13222
13223 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
13224 without it we only clone the data and zero the stacks,
13225 with it we copy the stacks and the new perl interpreter is
13226 ready to run at the exact same point as the previous one.
13227 The pseudo-fork code uses COPY_STACKS while the
13228 threads->create doesn't.
13229
13230 CLONEf_KEEP_PTR_TABLE -
13231 perl_clone keeps a ptr_table with the pointer of the old
13232 variable as a key and the new variable as a value,
13233 this allows it to check if something has been cloned and not
13234 clone it again but rather just use the value and increase the
13235 refcount.  If KEEP_PTR_TABLE is not set then perl_clone will kill
13236 the ptr_table using the function
13237 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
13238 reason to keep it around is if you want to dup some of your own
13239 variable who are outside the graph perl scans, example of this
13240 code is in threads.xs create.
13241
13242 CLONEf_CLONE_HOST -
13243 This is a win32 thing, it is ignored on unix, it tells perls
13244 win32host code (which is c++) to clone itself, this is needed on
13245 win32 if you want to run two threads at the same time,
13246 if you just want to do some stuff in a separate perl interpreter
13247 and then throw it away and return to the original one,
13248 you don't need to do anything.
13249
13250 =cut
13251 */
13252
13253 /* XXX the above needs expanding by someone who actually understands it ! */
13254 EXTERN_C PerlInterpreter *
13255 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
13256
13257 PerlInterpreter *
13258 perl_clone(PerlInterpreter *proto_perl, UV flags)
13259 {
13260    dVAR;
13261 #ifdef PERL_IMPLICIT_SYS
13262
13263     PERL_ARGS_ASSERT_PERL_CLONE;
13264
13265    /* perlhost.h so we need to call into it
13266    to clone the host, CPerlHost should have a c interface, sky */
13267
13268    if (flags & CLONEf_CLONE_HOST) {
13269        return perl_clone_host(proto_perl,flags);
13270    }
13271    return perl_clone_using(proto_perl, flags,
13272                             proto_perl->IMem,
13273                             proto_perl->IMemShared,
13274                             proto_perl->IMemParse,
13275                             proto_perl->IEnv,
13276                             proto_perl->IStdIO,
13277                             proto_perl->ILIO,
13278                             proto_perl->IDir,
13279                             proto_perl->ISock,
13280                             proto_perl->IProc);
13281 }
13282
13283 PerlInterpreter *
13284 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
13285                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
13286                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
13287                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
13288                  struct IPerlDir* ipD, struct IPerlSock* ipS,
13289                  struct IPerlProc* ipP)
13290 {
13291     /* XXX many of the string copies here can be optimized if they're
13292      * constants; they need to be allocated as common memory and just
13293      * their pointers copied. */
13294
13295     IV i;
13296     CLONE_PARAMS clone_params;
13297     CLONE_PARAMS* const param = &clone_params;
13298
13299     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
13300
13301     PERL_ARGS_ASSERT_PERL_CLONE_USING;
13302 #else           /* !PERL_IMPLICIT_SYS */
13303     IV i;
13304     CLONE_PARAMS clone_params;
13305     CLONE_PARAMS* param = &clone_params;
13306     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
13307
13308     PERL_ARGS_ASSERT_PERL_CLONE;
13309 #endif          /* PERL_IMPLICIT_SYS */
13310
13311     /* for each stash, determine whether its objects should be cloned */
13312     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
13313     PERL_SET_THX(my_perl);
13314
13315 #ifdef DEBUGGING
13316     PoisonNew(my_perl, 1, PerlInterpreter);
13317     PL_op = NULL;
13318     PL_curcop = NULL;
13319     PL_defstash = NULL; /* may be used by perl malloc() */
13320     PL_markstack = 0;
13321     PL_scopestack = 0;
13322     PL_scopestack_name = 0;
13323     PL_savestack = 0;
13324     PL_savestack_ix = 0;
13325     PL_savestack_max = -1;
13326     PL_sig_pending = 0;
13327     PL_parser = NULL;
13328     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
13329 #  ifdef DEBUG_LEAKING_SCALARS
13330     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
13331 #  endif
13332 #else   /* !DEBUGGING */
13333     Zero(my_perl, 1, PerlInterpreter);
13334 #endif  /* DEBUGGING */
13335
13336 #ifdef PERL_IMPLICIT_SYS
13337     /* host pointers */
13338     PL_Mem              = ipM;
13339     PL_MemShared        = ipMS;
13340     PL_MemParse         = ipMP;
13341     PL_Env              = ipE;
13342     PL_StdIO            = ipStd;
13343     PL_LIO              = ipLIO;
13344     PL_Dir              = ipD;
13345     PL_Sock             = ipS;
13346     PL_Proc             = ipP;
13347 #endif          /* PERL_IMPLICIT_SYS */
13348
13349
13350     param->flags = flags;
13351     /* Nothing in the core code uses this, but we make it available to
13352        extensions (using mg_dup).  */
13353     param->proto_perl = proto_perl;
13354     /* Likely nothing will use this, but it is initialised to be consistent
13355        with Perl_clone_params_new().  */
13356     param->new_perl = my_perl;
13357     param->unreferenced = NULL;
13358
13359
13360     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
13361
13362     PL_body_arenas = NULL;
13363     Zero(&PL_body_roots, 1, PL_body_roots);
13364     
13365     PL_sv_count         = 0;
13366     PL_sv_root          = NULL;
13367     PL_sv_arenaroot     = NULL;
13368
13369     PL_debug            = proto_perl->Idebug;
13370
13371     /* dbargs array probably holds garbage */
13372     PL_dbargs           = NULL;
13373
13374     PL_compiling = proto_perl->Icompiling;
13375
13376     /* pseudo environmental stuff */
13377     PL_origargc         = proto_perl->Iorigargc;
13378     PL_origargv         = proto_perl->Iorigargv;
13379
13380 #ifndef NO_TAINT_SUPPORT
13381     /* Set tainting stuff before PerlIO_debug can possibly get called */
13382     PL_tainting         = proto_perl->Itainting;
13383     PL_taint_warn       = proto_perl->Itaint_warn;
13384 #else
13385     PL_tainting         = FALSE;
13386     PL_taint_warn       = FALSE;
13387 #endif
13388
13389     PL_minus_c          = proto_perl->Iminus_c;
13390
13391     PL_localpatches     = proto_perl->Ilocalpatches;
13392     PL_splitstr         = proto_perl->Isplitstr;
13393     PL_minus_n          = proto_perl->Iminus_n;
13394     PL_minus_p          = proto_perl->Iminus_p;
13395     PL_minus_l          = proto_perl->Iminus_l;
13396     PL_minus_a          = proto_perl->Iminus_a;
13397     PL_minus_E          = proto_perl->Iminus_E;
13398     PL_minus_F          = proto_perl->Iminus_F;
13399     PL_doswitches       = proto_perl->Idoswitches;
13400     PL_dowarn           = proto_perl->Idowarn;
13401 #ifdef PERL_SAWAMPERSAND
13402     PL_sawampersand     = proto_perl->Isawampersand;
13403 #endif
13404     PL_unsafe           = proto_perl->Iunsafe;
13405     PL_perldb           = proto_perl->Iperldb;
13406     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
13407     PL_exit_flags       = proto_perl->Iexit_flags;
13408
13409     /* XXX time(&PL_basetime) when asked for? */
13410     PL_basetime         = proto_perl->Ibasetime;
13411
13412     PL_maxsysfd         = proto_perl->Imaxsysfd;
13413     PL_statusvalue      = proto_perl->Istatusvalue;
13414 #ifdef VMS
13415     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
13416 #else
13417     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
13418 #endif
13419
13420     /* RE engine related */
13421     PL_regmatch_slab    = NULL;
13422     PL_reg_curpm        = NULL;
13423
13424     PL_sub_generation   = proto_perl->Isub_generation;
13425
13426     /* funky return mechanisms */
13427     PL_forkprocess      = proto_perl->Iforkprocess;
13428
13429     /* internal state */
13430     PL_maxo             = proto_perl->Imaxo;
13431
13432     PL_main_start       = proto_perl->Imain_start;
13433     PL_eval_root        = proto_perl->Ieval_root;
13434     PL_eval_start       = proto_perl->Ieval_start;
13435
13436     PL_filemode         = proto_perl->Ifilemode;
13437     PL_lastfd           = proto_perl->Ilastfd;
13438     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
13439     PL_Argv             = NULL;
13440     PL_Cmd              = NULL;
13441     PL_gensym           = proto_perl->Igensym;
13442
13443     PL_laststatval      = proto_perl->Ilaststatval;
13444     PL_laststype        = proto_perl->Ilaststype;
13445     PL_mess_sv          = NULL;
13446
13447     PL_profiledata      = NULL;
13448
13449     PL_generation       = proto_perl->Igeneration;
13450
13451     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
13452     PL_in_clean_all     = proto_perl->Iin_clean_all;
13453
13454     PL_delaymagic_uid   = proto_perl->Idelaymagic_uid;
13455     PL_delaymagic_euid  = proto_perl->Idelaymagic_euid;
13456     PL_delaymagic_gid   = proto_perl->Idelaymagic_gid;
13457     PL_delaymagic_egid  = proto_perl->Idelaymagic_egid;
13458     PL_nomemok          = proto_perl->Inomemok;
13459     PL_an               = proto_perl->Ian;
13460     PL_evalseq          = proto_perl->Ievalseq;
13461     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
13462     PL_origalen         = proto_perl->Iorigalen;
13463
13464     PL_sighandlerp      = proto_perl->Isighandlerp;
13465
13466     PL_runops           = proto_perl->Irunops;
13467
13468     PL_subline          = proto_perl->Isubline;
13469
13470 #ifdef FCRYPT
13471     PL_cryptseen        = proto_perl->Icryptseen;
13472 #endif
13473
13474 #ifdef USE_LOCALE_COLLATE
13475     PL_collation_ix     = proto_perl->Icollation_ix;
13476     PL_collation_standard       = proto_perl->Icollation_standard;
13477     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
13478     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
13479 #endif /* USE_LOCALE_COLLATE */
13480
13481 #ifdef USE_LOCALE_NUMERIC
13482     PL_numeric_standard = proto_perl->Inumeric_standard;
13483     PL_numeric_local    = proto_perl->Inumeric_local;
13484 #endif /* !USE_LOCALE_NUMERIC */
13485
13486     /* Did the locale setup indicate UTF-8? */
13487     PL_utf8locale       = proto_perl->Iutf8locale;
13488     PL_in_utf8_CTYPE_locale = proto_perl->Iin_utf8_CTYPE_locale;
13489     /* Unicode features (see perlrun/-C) */
13490     PL_unicode          = proto_perl->Iunicode;
13491
13492     /* Pre-5.8 signals control */
13493     PL_signals          = proto_perl->Isignals;
13494
13495     /* times() ticks per second */
13496     PL_clocktick        = proto_perl->Iclocktick;
13497
13498     /* Recursion stopper for PerlIO_find_layer */
13499     PL_in_load_module   = proto_perl->Iin_load_module;
13500
13501     /* sort() routine */
13502     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
13503
13504     /* Not really needed/useful since the reenrant_retint is "volatile",
13505      * but do it for consistency's sake. */
13506     PL_reentrant_retint = proto_perl->Ireentrant_retint;
13507
13508     /* Hooks to shared SVs and locks. */
13509     PL_sharehook        = proto_perl->Isharehook;
13510     PL_lockhook         = proto_perl->Ilockhook;
13511     PL_unlockhook       = proto_perl->Iunlockhook;
13512     PL_threadhook       = proto_perl->Ithreadhook;
13513     PL_destroyhook      = proto_perl->Idestroyhook;
13514     PL_signalhook       = proto_perl->Isignalhook;
13515
13516     PL_globhook         = proto_perl->Iglobhook;
13517
13518     /* swatch cache */
13519     PL_last_swash_hv    = NULL; /* reinits on demand */
13520     PL_last_swash_klen  = 0;
13521     PL_last_swash_key[0]= '\0';
13522     PL_last_swash_tmps  = (U8*)NULL;
13523     PL_last_swash_slen  = 0;
13524
13525     PL_srand_called     = proto_perl->Isrand_called;
13526     Copy(&(proto_perl->Irandom_state), &PL_random_state, 1, PL_RANDOM_STATE_TYPE);
13527
13528     if (flags & CLONEf_COPY_STACKS) {
13529         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
13530         PL_tmps_ix              = proto_perl->Itmps_ix;
13531         PL_tmps_max             = proto_perl->Itmps_max;
13532         PL_tmps_floor           = proto_perl->Itmps_floor;
13533
13534         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13535          * NOTE: unlike the others! */
13536         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
13537         PL_scopestack_max       = proto_perl->Iscopestack_max;
13538
13539         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
13540          * NOTE: unlike the others! */
13541         PL_savestack_ix         = proto_perl->Isavestack_ix;
13542         PL_savestack_max        = proto_perl->Isavestack_max;
13543     }
13544
13545     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
13546     PL_top_env          = &PL_start_env;
13547
13548     PL_op               = proto_perl->Iop;
13549
13550     PL_Sv               = NULL;
13551     PL_Xpv              = (XPV*)NULL;
13552     my_perl->Ina        = proto_perl->Ina;
13553
13554     PL_statbuf          = proto_perl->Istatbuf;
13555     PL_statcache        = proto_perl->Istatcache;
13556
13557 #ifdef HAS_TIMES
13558     PL_timesbuf         = proto_perl->Itimesbuf;
13559 #endif
13560
13561 #ifndef NO_TAINT_SUPPORT
13562     PL_tainted          = proto_perl->Itainted;
13563 #else
13564     PL_tainted          = FALSE;
13565 #endif
13566     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
13567
13568     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
13569
13570     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
13571     PL_restartop        = proto_perl->Irestartop;
13572     PL_in_eval          = proto_perl->Iin_eval;
13573     PL_delaymagic       = proto_perl->Idelaymagic;
13574     PL_phase            = proto_perl->Iphase;
13575     PL_localizing       = proto_perl->Ilocalizing;
13576
13577     PL_hv_fetch_ent_mh  = NULL;
13578     PL_modcount         = proto_perl->Imodcount;
13579     PL_lastgotoprobe    = NULL;
13580     PL_dumpindent       = proto_perl->Idumpindent;
13581
13582     PL_efloatbuf        = NULL;         /* reinits on demand */
13583     PL_efloatsize       = 0;                    /* reinits on demand */
13584
13585     /* regex stuff */
13586
13587     PL_colorset         = 0;            /* reinits PL_colors[] */
13588     /*PL_colors[6]      = {0,0,0,0,0,0};*/
13589
13590     /* Pluggable optimizer */
13591     PL_peepp            = proto_perl->Ipeepp;
13592     PL_rpeepp           = proto_perl->Irpeepp;
13593     /* op_free() hook */
13594     PL_opfreehook       = proto_perl->Iopfreehook;
13595
13596 #ifdef USE_REENTRANT_API
13597     /* XXX: things like -Dm will segfault here in perlio, but doing
13598      *  PERL_SET_CONTEXT(proto_perl);
13599      * breaks too many other things
13600      */
13601     Perl_reentrant_init(aTHX);
13602 #endif
13603
13604     /* create SV map for pointer relocation */
13605     PL_ptr_table = ptr_table_new();
13606
13607     /* initialize these special pointers as early as possible */
13608     init_constants();
13609     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
13610     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
13611     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
13612
13613     /* create (a non-shared!) shared string table */
13614     PL_strtab           = newHV();
13615     HvSHAREKEYS_off(PL_strtab);
13616     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
13617     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
13618
13619     Zero(PL_sv_consts, SV_CONSTS_COUNT, SV*);
13620
13621     /* This PV will be free'd special way so must set it same way op.c does */
13622     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
13623     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
13624
13625     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
13626     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
13627     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
13628     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
13629
13630     param->stashes      = newAV();  /* Setup array of objects to call clone on */
13631     /* This makes no difference to the implementation, as it always pushes
13632        and shifts pointers to other SVs without changing their reference
13633        count, with the array becoming empty before it is freed. However, it
13634        makes it conceptually clear what is going on, and will avoid some
13635        work inside av.c, filling slots between AvFILL() and AvMAX() with
13636        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
13637     AvREAL_off(param->stashes);
13638
13639     if (!(flags & CLONEf_COPY_STACKS)) {
13640         param->unreferenced = newAV();
13641     }
13642
13643 #ifdef PERLIO_LAYERS
13644     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
13645     PerlIO_clone(aTHX_ proto_perl, param);
13646 #endif
13647
13648     PL_envgv            = gv_dup_inc(proto_perl->Ienvgv, param);
13649     PL_incgv            = gv_dup_inc(proto_perl->Iincgv, param);
13650     PL_hintgv           = gv_dup_inc(proto_perl->Ihintgv, param);
13651     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
13652     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
13653     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
13654
13655     /* switches */
13656     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
13657     PL_apiversion       = sv_dup_inc(proto_perl->Iapiversion, param);
13658     PL_inplace          = SAVEPV(proto_perl->Iinplace);
13659     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
13660
13661     /* magical thingies */
13662
13663     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
13664
13665     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
13666     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
13667     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
13668
13669    
13670     /* Clone the regex array */
13671     /* ORANGE FIXME for plugins, probably in the SV dup code.
13672        newSViv(PTR2IV(CALLREGDUPE(
13673        INT2PTR(REGEXP *, SvIVX(regex)), param))))
13674     */
13675     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
13676     PL_regex_pad = AvARRAY(PL_regex_padav);
13677
13678     PL_stashpadmax      = proto_perl->Istashpadmax;
13679     PL_stashpadix       = proto_perl->Istashpadix ;
13680     Newx(PL_stashpad, PL_stashpadmax, HV *);
13681     {
13682         PADOFFSET o = 0;
13683         for (; o < PL_stashpadmax; ++o)
13684             PL_stashpad[o] = hv_dup(proto_perl->Istashpad[o], param);
13685     }
13686
13687     /* shortcuts to various I/O objects */
13688     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
13689     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
13690     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
13691     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
13692     PL_argvgv           = gv_dup_inc(proto_perl->Iargvgv, param);
13693     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
13694     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
13695
13696     /* shortcuts to regexp stuff */
13697     PL_replgv           = gv_dup_inc(proto_perl->Ireplgv, param);
13698
13699     /* shortcuts to misc objects */
13700     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
13701
13702     /* shortcuts to debugging objects */
13703     PL_DBgv             = gv_dup_inc(proto_perl->IDBgv, param);
13704     PL_DBline           = gv_dup_inc(proto_perl->IDBline, param);
13705     PL_DBsub            = gv_dup_inc(proto_perl->IDBsub, param);
13706     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
13707     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
13708     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
13709
13710     /* symbol tables */
13711     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
13712     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
13713     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
13714     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
13715     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
13716
13717     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
13718     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
13719     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
13720     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
13721     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
13722     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
13723     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
13724     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
13725
13726     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
13727
13728     /* subprocess state */
13729     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
13730
13731     if (proto_perl->Iop_mask)
13732         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
13733     else
13734         PL_op_mask      = NULL;
13735     /* PL_asserting        = proto_perl->Iasserting; */
13736
13737     /* current interpreter roots */
13738     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
13739     OP_REFCNT_LOCK;
13740     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
13741     OP_REFCNT_UNLOCK;
13742
13743     /* runtime control stuff */
13744     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
13745
13746     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
13747
13748     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
13749
13750     /* interpreter atexit processing */
13751     PL_exitlistlen      = proto_perl->Iexitlistlen;
13752     if (PL_exitlistlen) {
13753         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13754         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13755     }
13756     else
13757         PL_exitlist     = (PerlExitListEntry*)NULL;
13758
13759     PL_my_cxt_size = proto_perl->Imy_cxt_size;
13760     if (PL_my_cxt_size) {
13761         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
13762         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
13763 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13764         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
13765         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
13766 #endif
13767     }
13768     else {
13769         PL_my_cxt_list  = (void**)NULL;
13770 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13771         PL_my_cxt_keys  = (const char**)NULL;
13772 #endif
13773     }
13774     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
13775     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
13776     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
13777     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
13778
13779     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
13780
13781     PAD_CLONE_VARS(proto_perl, param);
13782
13783 #ifdef HAVE_INTERP_INTERN
13784     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
13785 #endif
13786
13787     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
13788
13789 #ifdef PERL_USES_PL_PIDSTATUS
13790     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
13791 #endif
13792     PL_osname           = SAVEPV(proto_perl->Iosname);
13793     PL_parser           = parser_dup(proto_perl->Iparser, param);
13794
13795     /* XXX this only works if the saved cop has already been cloned */
13796     if (proto_perl->Iparser) {
13797         PL_parser->saved_curcop = (COP*)any_dup(
13798                                     proto_perl->Iparser->saved_curcop,
13799                                     proto_perl);
13800     }
13801
13802     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
13803
13804 #ifdef USE_LOCALE_COLLATE
13805     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
13806 #endif /* USE_LOCALE_COLLATE */
13807
13808 #ifdef USE_LOCALE_NUMERIC
13809     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
13810     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
13811 #endif /* !USE_LOCALE_NUMERIC */
13812
13813     /* Unicode inversion lists */
13814     PL_Latin1           = sv_dup_inc(proto_perl->ILatin1, param);
13815     PL_UpperLatin1      = sv_dup_inc(proto_perl->IUpperLatin1, param);
13816     PL_AboveLatin1      = sv_dup_inc(proto_perl->IAboveLatin1, param);
13817
13818     PL_NonL1NonFinalFold = sv_dup_inc(proto_perl->INonL1NonFinalFold, param);
13819     PL_HasMultiCharFold = sv_dup_inc(proto_perl->IHasMultiCharFold, param);
13820
13821     /* utf8 character class swashes */
13822     for (i = 0; i < POSIX_SWASH_COUNT; i++) {
13823         PL_utf8_swash_ptrs[i] = sv_dup_inc(proto_perl->Iutf8_swash_ptrs[i], param);
13824     }
13825     for (i = 0; i < POSIX_CC_COUNT; i++) {
13826         PL_XPosix_ptrs[i] = sv_dup_inc(proto_perl->IXPosix_ptrs[i], param);
13827     }
13828     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
13829     PL_utf8_X_regular_begin     = sv_dup_inc(proto_perl->Iutf8_X_regular_begin, param);
13830     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
13831     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
13832     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
13833     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
13834     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
13835     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
13836     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
13837     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
13838     PL_utf8_perl_idcont = sv_dup_inc(proto_perl->Iutf8_perl_idcont, param);
13839     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
13840     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
13841     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
13842     PL_utf8_charname_begin = sv_dup_inc(proto_perl->Iutf8_charname_begin, param);
13843     PL_utf8_charname_continue = sv_dup_inc(proto_perl->Iutf8_charname_continue, param);
13844
13845     if (proto_perl->Ipsig_pend) {
13846         Newxz(PL_psig_pend, SIG_SIZE, int);
13847     }
13848     else {
13849         PL_psig_pend    = (int*)NULL;
13850     }
13851
13852     if (proto_perl->Ipsig_name) {
13853         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
13854         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
13855                             param);
13856         PL_psig_ptr = PL_psig_name + SIG_SIZE;
13857     }
13858     else {
13859         PL_psig_ptr     = (SV**)NULL;
13860         PL_psig_name    = (SV**)NULL;
13861     }
13862
13863     if (flags & CLONEf_COPY_STACKS) {
13864         Newx(PL_tmps_stack, PL_tmps_max, SV*);
13865         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
13866                             PL_tmps_ix+1, param);
13867
13868         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
13869         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
13870         Newxz(PL_markstack, i, I32);
13871         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
13872                                                   - proto_perl->Imarkstack);
13873         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
13874                                                   - proto_perl->Imarkstack);
13875         Copy(proto_perl->Imarkstack, PL_markstack,
13876              PL_markstack_ptr - PL_markstack + 1, I32);
13877
13878         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13879          * NOTE: unlike the others! */
13880         Newxz(PL_scopestack, PL_scopestack_max, I32);
13881         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
13882
13883 #ifdef DEBUGGING
13884         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
13885         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
13886 #endif
13887         /* reset stack AV to correct length before its duped via
13888          * PL_curstackinfo */
13889         AvFILLp(proto_perl->Icurstack) =
13890                             proto_perl->Istack_sp - proto_perl->Istack_base;
13891
13892         /* NOTE: si_dup() looks at PL_markstack */
13893         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
13894
13895         /* PL_curstack          = PL_curstackinfo->si_stack; */
13896         PL_curstack             = av_dup(proto_perl->Icurstack, param);
13897         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
13898
13899         /* next PUSHs() etc. set *(PL_stack_sp+1) */
13900         PL_stack_base           = AvARRAY(PL_curstack);
13901         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
13902                                                    - proto_perl->Istack_base);
13903         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
13904
13905         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
13906         PL_savestack            = ss_dup(proto_perl, param);
13907     }
13908     else {
13909         init_stacks();
13910         ENTER;                  /* perl_destruct() wants to LEAVE; */
13911     }
13912
13913     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
13914     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
13915
13916     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
13917     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
13918     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
13919     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
13920     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
13921     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
13922
13923     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
13924
13925     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
13926     PL_firstgv          = gv_dup_inc(proto_perl->Ifirstgv, param);
13927     PL_secondgv         = gv_dup_inc(proto_perl->Isecondgv, param);
13928
13929     PL_stashcache       = newHV();
13930
13931     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
13932                                             proto_perl->Iwatchaddr);
13933     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
13934     if (PL_debug && PL_watchaddr) {
13935         PerlIO_printf(Perl_debug_log,
13936           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
13937           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
13938           PTR2UV(PL_watchok));
13939     }
13940
13941     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
13942     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
13943     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
13944
13945     /* Call the ->CLONE method, if it exists, for each of the stashes
13946        identified by sv_dup() above.
13947     */
13948     while(av_tindex(param->stashes) != -1) {
13949         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
13950         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
13951         if (cloner && GvCV(cloner)) {
13952             dSP;
13953             ENTER;
13954             SAVETMPS;
13955             PUSHMARK(SP);
13956             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
13957             PUTBACK;
13958             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
13959             FREETMPS;
13960             LEAVE;
13961         }
13962     }
13963
13964     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
13965         ptr_table_free(PL_ptr_table);
13966         PL_ptr_table = NULL;
13967     }
13968
13969     if (!(flags & CLONEf_COPY_STACKS)) {
13970         unreferenced_to_tmp_stack(param->unreferenced);
13971     }
13972
13973     SvREFCNT_dec(param->stashes);
13974
13975     /* orphaned? eg threads->new inside BEGIN or use */
13976     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
13977         SvREFCNT_inc_simple_void(PL_compcv);
13978         SAVEFREESV(PL_compcv);
13979     }
13980
13981     return my_perl;
13982 }
13983
13984 static void
13985 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
13986 {
13987     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
13988     
13989     if (AvFILLp(unreferenced) > -1) {
13990         SV **svp = AvARRAY(unreferenced);
13991         SV **const last = svp + AvFILLp(unreferenced);
13992         SSize_t count = 0;
13993
13994         do {
13995             if (SvREFCNT(*svp) == 1)
13996                 ++count;
13997         } while (++svp <= last);
13998
13999         EXTEND_MORTAL(count);
14000         svp = AvARRAY(unreferenced);
14001
14002         do {
14003             if (SvREFCNT(*svp) == 1) {
14004                 /* Our reference is the only one to this SV. This means that
14005                    in this thread, the scalar effectively has a 0 reference.
14006                    That doesn't work (cleanup never happens), so donate our
14007                    reference to it onto the save stack. */
14008                 PL_tmps_stack[++PL_tmps_ix] = *svp;
14009             } else {
14010                 /* As an optimisation, because we are already walking the
14011                    entire array, instead of above doing either
14012                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
14013                    release our reference to the scalar, so that at the end of
14014                    the array owns zero references to the scalars it happens to
14015                    point to. We are effectively converting the array from
14016                    AvREAL() on to AvREAL() off. This saves the av_clear()
14017                    (triggered by the SvREFCNT_dec(unreferenced) below) from
14018                    walking the array a second time.  */
14019                 SvREFCNT_dec(*svp);
14020             }
14021
14022         } while (++svp <= last);
14023         AvREAL_off(unreferenced);
14024     }
14025     SvREFCNT_dec_NN(unreferenced);
14026 }
14027
14028 void
14029 Perl_clone_params_del(CLONE_PARAMS *param)
14030 {
14031     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
14032        happy: */
14033     PerlInterpreter *const to = param->new_perl;
14034     dTHXa(to);
14035     PerlInterpreter *const was = PERL_GET_THX;
14036
14037     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
14038
14039     if (was != to) {
14040         PERL_SET_THX(to);
14041     }
14042
14043     SvREFCNT_dec(param->stashes);
14044     if (param->unreferenced)
14045         unreferenced_to_tmp_stack(param->unreferenced);
14046
14047     Safefree(param);
14048
14049     if (was != to) {
14050         PERL_SET_THX(was);
14051     }
14052 }
14053
14054 CLONE_PARAMS *
14055 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
14056 {
14057     dVAR;
14058     /* Need to play this game, as newAV() can call safesysmalloc(), and that
14059        does a dTHX; to get the context from thread local storage.
14060        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
14061        a version that passes in my_perl.  */
14062     PerlInterpreter *const was = PERL_GET_THX;
14063     CLONE_PARAMS *param;
14064
14065     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
14066
14067     if (was != to) {
14068         PERL_SET_THX(to);
14069     }
14070
14071     /* Given that we've set the context, we can do this unshared.  */
14072     Newx(param, 1, CLONE_PARAMS);
14073
14074     param->flags = 0;
14075     param->proto_perl = from;
14076     param->new_perl = to;
14077     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
14078     AvREAL_off(param->stashes);
14079     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
14080
14081     if (was != to) {
14082         PERL_SET_THX(was);
14083     }
14084     return param;
14085 }
14086
14087 #endif /* USE_ITHREADS */
14088
14089 void
14090 Perl_init_constants(pTHX)
14091 {
14092     SvREFCNT(&PL_sv_undef)      = SvREFCNT_IMMORTAL;
14093     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
14094     SvANY(&PL_sv_undef)         = NULL;
14095
14096     SvANY(&PL_sv_no)            = new_XPVNV();
14097     SvREFCNT(&PL_sv_no)         = SvREFCNT_IMMORTAL;
14098     SvFLAGS(&PL_sv_no)          = SVt_PVNV|SVf_READONLY
14099                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
14100                                   |SVp_POK|SVf_POK;
14101
14102     SvANY(&PL_sv_yes)           = new_XPVNV();
14103     SvREFCNT(&PL_sv_yes)        = SvREFCNT_IMMORTAL;
14104     SvFLAGS(&PL_sv_yes)         = SVt_PVNV|SVf_READONLY
14105                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
14106                                   |SVp_POK|SVf_POK;
14107
14108     SvPV_set(&PL_sv_no, (char*)PL_No);
14109     SvCUR_set(&PL_sv_no, 0);
14110     SvLEN_set(&PL_sv_no, 0);
14111     SvIV_set(&PL_sv_no, 0);
14112     SvNV_set(&PL_sv_no, 0);
14113
14114     SvPV_set(&PL_sv_yes, (char*)PL_Yes);
14115     SvCUR_set(&PL_sv_yes, 1);
14116     SvLEN_set(&PL_sv_yes, 0);
14117     SvIV_set(&PL_sv_yes, 1);
14118     SvNV_set(&PL_sv_yes, 1);
14119 }
14120
14121 /*
14122 =head1 Unicode Support
14123
14124 =for apidoc sv_recode_to_utf8
14125
14126 The encoding is assumed to be an Encode object, on entry the PV
14127 of the sv is assumed to be octets in that encoding, and the sv
14128 will be converted into Unicode (and UTF-8).
14129
14130 If the sv already is UTF-8 (or if it is not POK), or if the encoding
14131 is not a reference, nothing is done to the sv.  If the encoding is not
14132 an C<Encode::XS> Encoding object, bad things will happen.
14133 (See F<lib/encoding.pm> and L<Encode>.)
14134
14135 The PV of the sv is returned.
14136
14137 =cut */
14138
14139 char *
14140 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
14141 {
14142     dVAR;
14143
14144     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
14145
14146     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
14147         SV *uni;
14148         STRLEN len;
14149         const char *s;
14150         dSP;
14151         SV *nsv = sv;
14152         ENTER;
14153         PUSHSTACK;
14154         SAVETMPS;
14155         if (SvPADTMP(nsv)) {
14156             nsv = sv_newmortal();
14157             SvSetSV_nosteal(nsv, sv);
14158         }
14159         save_re_context();
14160         PUSHMARK(sp);
14161         EXTEND(SP, 3);
14162         PUSHs(encoding);
14163         PUSHs(nsv);
14164 /*
14165   NI-S 2002/07/09
14166   Passing sv_yes is wrong - it needs to be or'ed set of constants
14167   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
14168   remove converted chars from source.
14169
14170   Both will default the value - let them.
14171
14172         XPUSHs(&PL_sv_yes);
14173 */
14174         PUTBACK;
14175         call_method("decode", G_SCALAR);
14176         SPAGAIN;
14177         uni = POPs;
14178         PUTBACK;
14179         s = SvPV_const(uni, len);
14180         if (s != SvPVX_const(sv)) {
14181             SvGROW(sv, len + 1);
14182             Move(s, SvPVX(sv), len + 1, char);
14183             SvCUR_set(sv, len);
14184         }
14185         FREETMPS;
14186         POPSTACK;
14187         LEAVE;
14188         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
14189             /* clear pos and any utf8 cache */
14190             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
14191             if (mg)
14192                 mg->mg_len = -1;
14193             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
14194                 magic_setutf8(sv,mg); /* clear UTF8 cache */
14195         }
14196         SvUTF8_on(sv);
14197         return SvPVX(sv);
14198     }
14199     return SvPOKp(sv) ? SvPVX(sv) : NULL;
14200 }
14201
14202 /*
14203 =for apidoc sv_cat_decode
14204
14205 The encoding is assumed to be an Encode object, the PV of the ssv is
14206 assumed to be octets in that encoding and decoding the input starts
14207 from the position which (PV + *offset) pointed to.  The dsv will be
14208 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
14209 when the string tstr appears in decoding output or the input ends on
14210 the PV of the ssv.  The value which the offset points will be modified
14211 to the last input position on the ssv.
14212
14213 Returns TRUE if the terminator was found, else returns FALSE.
14214
14215 =cut */
14216
14217 bool
14218 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
14219                    SV *ssv, int *offset, char *tstr, int tlen)
14220 {
14221     dVAR;
14222     bool ret = FALSE;
14223
14224     PERL_ARGS_ASSERT_SV_CAT_DECODE;
14225
14226     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
14227         SV *offsv;
14228         dSP;
14229         ENTER;
14230         SAVETMPS;
14231         save_re_context();
14232         PUSHMARK(sp);
14233         EXTEND(SP, 6);
14234         PUSHs(encoding);
14235         PUSHs(dsv);
14236         PUSHs(ssv);
14237         offsv = newSViv(*offset);
14238         mPUSHs(offsv);
14239         mPUSHp(tstr, tlen);
14240         PUTBACK;
14241         call_method("cat_decode", G_SCALAR);
14242         SPAGAIN;
14243         ret = SvTRUE(TOPs);
14244         *offset = SvIV(offsv);
14245         PUTBACK;
14246         FREETMPS;
14247         LEAVE;
14248     }
14249     else
14250         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
14251     return ret;
14252
14253 }
14254
14255 /* ---------------------------------------------------------------------
14256  *
14257  * support functions for report_uninit()
14258  */
14259
14260 /* the maxiumum size of array or hash where we will scan looking
14261  * for the undefined element that triggered the warning */
14262
14263 #define FUV_MAX_SEARCH_SIZE 1000
14264
14265 /* Look for an entry in the hash whose value has the same SV as val;
14266  * If so, return a mortal copy of the key. */
14267
14268 STATIC SV*
14269 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
14270 {
14271     dVAR;
14272     HE **array;
14273     I32 i;
14274
14275     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
14276
14277     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
14278                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
14279         return NULL;
14280
14281     array = HvARRAY(hv);
14282
14283     for (i=HvMAX(hv); i>=0; i--) {
14284         HE *entry;
14285         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
14286             if (HeVAL(entry) != val)
14287                 continue;
14288             if (    HeVAL(entry) == &PL_sv_undef ||
14289                     HeVAL(entry) == &PL_sv_placeholder)
14290                 continue;
14291             if (!HeKEY(entry))
14292                 return NULL;
14293             if (HeKLEN(entry) == HEf_SVKEY)
14294                 return sv_mortalcopy(HeKEY_sv(entry));
14295             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
14296         }
14297     }
14298     return NULL;
14299 }
14300
14301 /* Look for an entry in the array whose value has the same SV as val;
14302  * If so, return the index, otherwise return -1. */
14303
14304 STATIC I32
14305 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
14306 {
14307     dVAR;
14308
14309     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
14310
14311     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
14312                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
14313         return -1;
14314
14315     if (val != &PL_sv_undef) {
14316         SV ** const svp = AvARRAY(av);
14317         I32 i;
14318
14319         for (i=AvFILLp(av); i>=0; i--)
14320             if (svp[i] == val)
14321                 return i;
14322     }
14323     return -1;
14324 }
14325
14326 /* varname(): return the name of a variable, optionally with a subscript.
14327  * If gv is non-zero, use the name of that global, along with gvtype (one
14328  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
14329  * targ.  Depending on the value of the subscript_type flag, return:
14330  */
14331
14332 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
14333 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
14334 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
14335 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
14336
14337 SV*
14338 Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
14339         const SV *const keyname, I32 aindex, int subscript_type)
14340 {
14341
14342     SV * const name = sv_newmortal();
14343     if (gv && isGV(gv)) {
14344         char buffer[2];
14345         buffer[0] = gvtype;
14346         buffer[1] = 0;
14347
14348         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
14349
14350         gv_fullname4(name, gv, buffer, 0);
14351
14352         if ((unsigned int)SvPVX(name)[1] <= 26) {
14353             buffer[0] = '^';
14354             buffer[1] = SvPVX(name)[1] + 'A' - 1;
14355
14356             /* Swap the 1 unprintable control character for the 2 byte pretty
14357                version - ie substr($name, 1, 1) = $buffer; */
14358             sv_insert(name, 1, 1, buffer, 2);
14359         }
14360     }
14361     else {
14362         CV * const cv = gv ? ((CV *)gv) : find_runcv(NULL);
14363         SV *sv;
14364         AV *av;
14365
14366         assert(!cv || SvTYPE(cv) == SVt_PVCV || SvTYPE(cv) == SVt_PVFM);
14367
14368         if (!cv || !CvPADLIST(cv))
14369             return NULL;
14370         av = *PadlistARRAY(CvPADLIST(cv));
14371         sv = *av_fetch(av, targ, FALSE);
14372         sv_setsv_flags(name, sv, 0);
14373     }
14374
14375     if (subscript_type == FUV_SUBSCRIPT_HASH) {
14376         SV * const sv = newSV(0);
14377         *SvPVX(name) = '$';
14378         Perl_sv_catpvf(aTHX_ name, "{%s}",
14379             pv_pretty(sv, SvPVX_const(keyname), SvCUR(keyname), 32, NULL, NULL,
14380                     PERL_PV_PRETTY_DUMP | PERL_PV_ESCAPE_UNI_DETECT ));
14381         SvREFCNT_dec_NN(sv);
14382     }
14383     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
14384         *SvPVX(name) = '$';
14385         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
14386     }
14387     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
14388         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
14389         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
14390     }
14391
14392     return name;
14393 }
14394
14395
14396 /*
14397 =for apidoc find_uninit_var
14398
14399 Find the name of the undefined variable (if any) that caused the operator
14400 to issue a "Use of uninitialized value" warning.
14401 If match is true, only return a name if its value matches uninit_sv.
14402 So roughly speaking, if a unary operator (such as OP_COS) generates a
14403 warning, then following the direct child of the op may yield an
14404 OP_PADSV or OP_GV that gives the name of the undefined variable.  On the
14405 other hand, with OP_ADD there are two branches to follow, so we only print
14406 the variable name if we get an exact match.
14407
14408 The name is returned as a mortal SV.
14409
14410 Assumes that PL_op is the op that originally triggered the error, and that
14411 PL_comppad/PL_curpad points to the currently executing pad.
14412
14413 =cut
14414 */
14415
14416 STATIC SV *
14417 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
14418                   bool match)
14419 {
14420     dVAR;
14421     SV *sv;
14422     const GV *gv;
14423     const OP *o, *o2, *kid;
14424
14425     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
14426                             uninit_sv == &PL_sv_placeholder)))
14427         return NULL;
14428
14429     switch (obase->op_type) {
14430
14431     case OP_RV2AV:
14432     case OP_RV2HV:
14433     case OP_PADAV:
14434     case OP_PADHV:
14435       {
14436         const bool pad  = (    obase->op_type == OP_PADAV
14437                             || obase->op_type == OP_PADHV
14438                             || obase->op_type == OP_PADRANGE
14439                           );
14440
14441         const bool hash = (    obase->op_type == OP_PADHV
14442                             || obase->op_type == OP_RV2HV
14443                             || (obase->op_type == OP_PADRANGE
14444                                 && SvTYPE(PAD_SVl(obase->op_targ)) == SVt_PVHV)
14445                           );
14446         I32 index = 0;
14447         SV *keysv = NULL;
14448         int subscript_type = FUV_SUBSCRIPT_WITHIN;
14449
14450         if (pad) { /* @lex, %lex */
14451             sv = PAD_SVl(obase->op_targ);
14452             gv = NULL;
14453         }
14454         else {
14455             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
14456             /* @global, %global */
14457                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
14458                 if (!gv)
14459                     break;
14460                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
14461             }
14462             else if (obase == PL_op) /* @{expr}, %{expr} */
14463                 return find_uninit_var(cUNOPx(obase)->op_first,
14464                                                     uninit_sv, match);
14465             else /* @{expr}, %{expr} as a sub-expression */
14466                 return NULL;
14467         }
14468
14469         /* attempt to find a match within the aggregate */
14470         if (hash) {
14471             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14472             if (keysv)
14473                 subscript_type = FUV_SUBSCRIPT_HASH;
14474         }
14475         else {
14476             index = find_array_subscript((const AV *)sv, uninit_sv);
14477             if (index >= 0)
14478                 subscript_type = FUV_SUBSCRIPT_ARRAY;
14479         }
14480
14481         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
14482             break;
14483
14484         return varname(gv, hash ? '%' : '@', obase->op_targ,
14485                                     keysv, index, subscript_type);
14486       }
14487
14488     case OP_RV2SV:
14489         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
14490             /* $global */
14491             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
14492             if (!gv || !GvSTASH(gv))
14493                 break;
14494             if (match && (GvSV(gv) != uninit_sv))
14495                 break;
14496             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
14497         }
14498         /* ${expr} */
14499         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
14500
14501     case OP_PADSV:
14502         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
14503             break;
14504         return varname(NULL, '$', obase->op_targ,
14505                                     NULL, 0, FUV_SUBSCRIPT_NONE);
14506
14507     case OP_GVSV:
14508         gv = cGVOPx_gv(obase);
14509         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
14510             break;
14511         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
14512
14513     case OP_AELEMFAST_LEX:
14514         if (match) {
14515             SV **svp;
14516             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
14517             if (!av || SvRMAGICAL(av))
14518                 break;
14519             svp = av_fetch(av, (I32)obase->op_private, FALSE);
14520             if (!svp || *svp != uninit_sv)
14521                 break;
14522         }
14523         return varname(NULL, '$', obase->op_targ,
14524                        NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14525     case OP_AELEMFAST:
14526         {
14527             gv = cGVOPx_gv(obase);
14528             if (!gv)
14529                 break;
14530             if (match) {
14531                 SV **svp;
14532                 AV *const av = GvAV(gv);
14533                 if (!av || SvRMAGICAL(av))
14534                     break;
14535                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
14536                 if (!svp || *svp != uninit_sv)
14537                     break;
14538             }
14539             return varname(gv, '$', 0,
14540                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14541         }
14542         break;
14543
14544     case OP_EXISTS:
14545         o = cUNOPx(obase)->op_first;
14546         if (!o || o->op_type != OP_NULL ||
14547                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
14548             break;
14549         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
14550
14551     case OP_AELEM:
14552     case OP_HELEM:
14553     {
14554         bool negate = FALSE;
14555
14556         if (PL_op == obase)
14557             /* $a[uninit_expr] or $h{uninit_expr} */
14558             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
14559
14560         gv = NULL;
14561         o = cBINOPx(obase)->op_first;
14562         kid = cBINOPx(obase)->op_last;
14563
14564         /* get the av or hv, and optionally the gv */
14565         sv = NULL;
14566         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
14567             sv = PAD_SV(o->op_targ);
14568         }
14569         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
14570                 && cUNOPo->op_first->op_type == OP_GV)
14571         {
14572             gv = cGVOPx_gv(cUNOPo->op_first);
14573             if (!gv)
14574                 break;
14575             sv = o->op_type
14576                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
14577         }
14578         if (!sv)
14579             break;
14580
14581         if (kid && kid->op_type == OP_NEGATE) {
14582             negate = TRUE;
14583             kid = cUNOPx(kid)->op_first;
14584         }
14585
14586         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
14587             /* index is constant */
14588             SV* kidsv;
14589             if (negate) {
14590                 kidsv = sv_2mortal(newSVpvs("-"));
14591                 sv_catsv(kidsv, cSVOPx_sv(kid));
14592             }
14593             else
14594                 kidsv = cSVOPx_sv(kid);
14595             if (match) {
14596                 if (SvMAGICAL(sv))
14597                     break;
14598                 if (obase->op_type == OP_HELEM) {
14599                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
14600                     if (!he || HeVAL(he) != uninit_sv)
14601                         break;
14602                 }
14603                 else {
14604                     SV * const  opsv = cSVOPx_sv(kid);
14605                     const IV  opsviv = SvIV(opsv);
14606                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
14607                         negate ? - opsviv : opsviv,
14608                         FALSE);
14609                     if (!svp || *svp != uninit_sv)
14610                         break;
14611                 }
14612             }
14613             if (obase->op_type == OP_HELEM)
14614                 return varname(gv, '%', o->op_targ,
14615                             kidsv, 0, FUV_SUBSCRIPT_HASH);
14616             else
14617                 return varname(gv, '@', o->op_targ, NULL,
14618                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14619                     FUV_SUBSCRIPT_ARRAY);
14620         }
14621         else  {
14622             /* index is an expression;
14623              * attempt to find a match within the aggregate */
14624             if (obase->op_type == OP_HELEM) {
14625                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14626                 if (keysv)
14627                     return varname(gv, '%', o->op_targ,
14628                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
14629             }
14630             else {
14631                 const I32 index
14632                     = find_array_subscript((const AV *)sv, uninit_sv);
14633                 if (index >= 0)
14634                     return varname(gv, '@', o->op_targ,
14635                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
14636             }
14637             if (match)
14638                 break;
14639             return varname(gv,
14640                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
14641                 ? '@' : '%',
14642                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
14643         }
14644         break;
14645     }
14646
14647     case OP_AASSIGN:
14648         /* only examine RHS */
14649         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
14650
14651     case OP_OPEN:
14652         o = cUNOPx(obase)->op_first;
14653         if (   o->op_type == OP_PUSHMARK
14654            || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)
14655         )
14656             o = o->op_sibling;
14657
14658         if (!o->op_sibling) {
14659             /* one-arg version of open is highly magical */
14660
14661             if (o->op_type == OP_GV) { /* open FOO; */
14662                 gv = cGVOPx_gv(o);
14663                 if (match && GvSV(gv) != uninit_sv)
14664                     break;
14665                 return varname(gv, '$', 0,
14666                             NULL, 0, FUV_SUBSCRIPT_NONE);
14667             }
14668             /* other possibilities not handled are:
14669              * open $x; or open my $x;  should return '${*$x}'
14670              * open expr;               should return '$'.expr ideally
14671              */
14672              break;
14673         }
14674         goto do_op;
14675
14676     /* ops where $_ may be an implicit arg */
14677     case OP_TRANS:
14678     case OP_TRANSR:
14679     case OP_SUBST:
14680     case OP_MATCH:
14681         if ( !(obase->op_flags & OPf_STACKED)) {
14682             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
14683                                  ? PAD_SVl(obase->op_targ)
14684                                  : DEFSV))
14685             {
14686                 sv = sv_newmortal();
14687                 sv_setpvs(sv, "$_");
14688                 return sv;
14689             }
14690         }
14691         goto do_op;
14692
14693     case OP_PRTF:
14694     case OP_PRINT:
14695     case OP_SAY:
14696         match = 1; /* print etc can return undef on defined args */
14697         /* skip filehandle as it can't produce 'undef' warning  */
14698         o = cUNOPx(obase)->op_first;
14699         if ((obase->op_flags & OPf_STACKED)
14700             &&
14701                (   o->op_type == OP_PUSHMARK
14702                || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)))
14703             o = o->op_sibling->op_sibling;
14704         goto do_op2;
14705
14706
14707     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
14708     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
14709
14710         /* the following ops are capable of returning PL_sv_undef even for
14711          * defined arg(s) */
14712
14713     case OP_BACKTICK:
14714     case OP_PIPE_OP:
14715     case OP_FILENO:
14716     case OP_BINMODE:
14717     case OP_TIED:
14718     case OP_GETC:
14719     case OP_SYSREAD:
14720     case OP_SEND:
14721     case OP_IOCTL:
14722     case OP_SOCKET:
14723     case OP_SOCKPAIR:
14724     case OP_BIND:
14725     case OP_CONNECT:
14726     case OP_LISTEN:
14727     case OP_ACCEPT:
14728     case OP_SHUTDOWN:
14729     case OP_SSOCKOPT:
14730     case OP_GETPEERNAME:
14731     case OP_FTRREAD:
14732     case OP_FTRWRITE:
14733     case OP_FTREXEC:
14734     case OP_FTROWNED:
14735     case OP_FTEREAD:
14736     case OP_FTEWRITE:
14737     case OP_FTEEXEC:
14738     case OP_FTEOWNED:
14739     case OP_FTIS:
14740     case OP_FTZERO:
14741     case OP_FTSIZE:
14742     case OP_FTFILE:
14743     case OP_FTDIR:
14744     case OP_FTLINK:
14745     case OP_FTPIPE:
14746     case OP_FTSOCK:
14747     case OP_FTBLK:
14748     case OP_FTCHR:
14749     case OP_FTTTY:
14750     case OP_FTSUID:
14751     case OP_FTSGID:
14752     case OP_FTSVTX:
14753     case OP_FTTEXT:
14754     case OP_FTBINARY:
14755     case OP_FTMTIME:
14756     case OP_FTATIME:
14757     case OP_FTCTIME:
14758     case OP_READLINK:
14759     case OP_OPEN_DIR:
14760     case OP_READDIR:
14761     case OP_TELLDIR:
14762     case OP_SEEKDIR:
14763     case OP_REWINDDIR:
14764     case OP_CLOSEDIR:
14765     case OP_GMTIME:
14766     case OP_ALARM:
14767     case OP_SEMGET:
14768     case OP_GETLOGIN:
14769     case OP_UNDEF:
14770     case OP_SUBSTR:
14771     case OP_AEACH:
14772     case OP_EACH:
14773     case OP_SORT:
14774     case OP_CALLER:
14775     case OP_DOFILE:
14776     case OP_PROTOTYPE:
14777     case OP_NCMP:
14778     case OP_SMARTMATCH:
14779     case OP_UNPACK:
14780     case OP_SYSOPEN:
14781     case OP_SYSSEEK:
14782         match = 1;
14783         goto do_op;
14784
14785     case OP_ENTERSUB:
14786     case OP_GOTO:
14787         /* XXX tmp hack: these two may call an XS sub, and currently
14788           XS subs don't have a SUB entry on the context stack, so CV and
14789           pad determination goes wrong, and BAD things happen. So, just
14790           don't try to determine the value under those circumstances.
14791           Need a better fix at dome point. DAPM 11/2007 */
14792         break;
14793
14794     case OP_FLIP:
14795     case OP_FLOP:
14796     {
14797         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
14798         if (gv && GvSV(gv) == uninit_sv)
14799             return newSVpvs_flags("$.", SVs_TEMP);
14800         goto do_op;
14801     }
14802
14803     case OP_POS:
14804         /* def-ness of rval pos() is independent of the def-ness of its arg */
14805         if ( !(obase->op_flags & OPf_MOD))
14806             break;
14807
14808     case OP_SCHOMP:
14809     case OP_CHOMP:
14810         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
14811             return newSVpvs_flags("${$/}", SVs_TEMP);
14812         /*FALLTHROUGH*/
14813
14814     default:
14815     do_op:
14816         if (!(obase->op_flags & OPf_KIDS))
14817             break;
14818         o = cUNOPx(obase)->op_first;
14819         
14820     do_op2:
14821         if (!o)
14822             break;
14823
14824         /* This loop checks all the kid ops, skipping any that cannot pos-
14825          * sibly be responsible for the uninitialized value; i.e., defined
14826          * constants and ops that return nothing.  If there is only one op
14827          * left that is not skipped, then we *know* it is responsible for
14828          * the uninitialized value.  If there is more than one op left, we
14829          * have to look for an exact match in the while() loop below.
14830          * Note that we skip padrange, because the individual pad ops that
14831          * it replaced are still in the tree, so we work on them instead.
14832          */
14833         o2 = NULL;
14834         for (kid=o; kid; kid = kid->op_sibling) {
14835             if (kid) {
14836                 const OPCODE type = kid->op_type;
14837                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
14838                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
14839                   || (type == OP_PUSHMARK)
14840                   || (type == OP_PADRANGE)
14841                 )
14842                 continue;
14843             }
14844             if (o2) { /* more than one found */
14845                 o2 = NULL;
14846                 break;
14847             }
14848             o2 = kid;
14849         }
14850         if (o2)
14851             return find_uninit_var(o2, uninit_sv, match);
14852
14853         /* scan all args */
14854         while (o) {
14855             sv = find_uninit_var(o, uninit_sv, 1);
14856             if (sv)
14857                 return sv;
14858             o = o->op_sibling;
14859         }
14860         break;
14861     }
14862     return NULL;
14863 }
14864
14865
14866 /*
14867 =for apidoc report_uninit
14868
14869 Print appropriate "Use of uninitialized variable" warning.
14870
14871 =cut
14872 */
14873
14874 void
14875 Perl_report_uninit(pTHX_ const SV *uninit_sv)
14876 {
14877     dVAR;
14878     if (PL_op) {
14879         SV* varname = NULL;
14880         if (uninit_sv && PL_curpad) {
14881             varname = find_uninit_var(PL_op, uninit_sv,0);
14882             if (varname)
14883                 sv_insert(varname, 0, 0, " ", 1);
14884         }
14885         /* PL_warn_uninit_sv is constant */
14886         GCC_DIAG_IGNORE(-Wformat-nonliteral);
14887         /* diag_listed_as: Use of uninitialized value%s */
14888         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
14889                 SVfARG(varname ? varname : &PL_sv_no),
14890                 " in ", OP_DESC(PL_op));
14891         GCC_DIAG_RESTORE;
14892     }
14893     else {
14894         /* PL_warn_uninit is constant */
14895         GCC_DIAG_IGNORE(-Wformat-nonliteral);
14896         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
14897                     "", "", "");
14898         GCC_DIAG_RESTORE;
14899     }
14900 }
14901
14902 /*
14903  * Local variables:
14904  * c-indentation-style: bsd
14905  * c-basic-offset: 4
14906  * indent-tabs-mode: nil
14907  * End:
14908  *
14909  * ex: set ts=8 sts=4 sw=4 et:
14910  */