6957382ed8dd217d45e4642cc4180717d3cab9a3
[p5sagit/p5-mst-13.2.git] / sv.c
1 /*    sv.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4  *    2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, by Larry Wall and others
5  *
6  *    You may distribute under the terms of either the GNU General Public
7  *    License or the Artistic License, as specified in the README file.
8  *
9  * "I wonder what the Entish is for 'yes' and 'no'," he thought.
10  *
11  *
12  * This file contains the code that creates, manipulates and destroys
13  * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
14  * structure of an SV, so their creation and destruction is handled
15  * here; higher-level functions are in av.c, hv.c, and so on. Opcode
16  * level functions (eg. substr, split, join) for each of the types are
17  * in the pp*.c files.
18  */
19
20 #include "EXTERN.h"
21 #define PERL_IN_SV_C
22 #include "perl.h"
23 #include "regcomp.h"
24
25 #define FCALL *f
26
27 #ifdef __Lynx__
28 /* Missing proto on LynxOS */
29   char *gconvert(double, int, int,  char *);
30 #endif
31
32 #ifdef PERL_UTF8_CACHE_ASSERT
33 /* if adding more checks watch out for the following tests:
34  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
35  *   lib/utf8.t lib/Unicode/Collate/t/index.t
36  * --jhi
37  */
38 #   define ASSERT_UTF8_CACHE(cache) \
39     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
40                               assert((cache)[2] <= (cache)[3]); \
41                               assert((cache)[3] <= (cache)[1]);} \
42                               } STMT_END
43 #else
44 #   define ASSERT_UTF8_CACHE(cache) NOOP
45 #endif
46
47 #ifdef PERL_OLD_COPY_ON_WRITE
48 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
49 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
50 /* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
51    on-write.  */
52 #endif
53
54 /* ============================================================================
55
56 =head1 Allocation and deallocation of SVs.
57
58 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
59 sv, av, hv...) contains type and reference count information, and for
60 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
61 contains fields specific to each type.  Some types store all they need
62 in the head, so don't have a body.
63
64 In all but the most memory-paranoid configuations (ex: PURIFY), heads
65 and bodies are allocated out of arenas, which by default are
66 approximately 4K chunks of memory parcelled up into N heads or bodies.
67 Sv-bodies are allocated by their sv-type, guaranteeing size
68 consistency needed to allocate safely from arrays.
69
70 For SV-heads, the first slot in each arena is reserved, and holds a
71 link to the next arena, some flags, and a note of the number of slots.
72 Snaked through each arena chain is a linked list of free items; when
73 this becomes empty, an extra arena is allocated and divided up into N
74 items which are threaded into the free list.
75
76 SV-bodies are similar, but they use arena-sets by default, which
77 separate the link and info from the arena itself, and reclaim the 1st
78 slot in the arena.  SV-bodies are further described later.
79
80 The following global variables are associated with arenas:
81
82     PL_sv_arenaroot     pointer to list of SV arenas
83     PL_sv_root          pointer to list of free SV structures
84
85     PL_body_arenas      head of linked-list of body arenas
86     PL_body_roots[]     array of pointers to list of free bodies of svtype
87                         arrays are indexed by the svtype needed
88
89 A few special SV heads are not allocated from an arena, but are
90 instead directly created in the interpreter structure, eg PL_sv_undef.
91 The size of arenas can be changed from the default by setting
92 PERL_ARENA_SIZE appropriately at compile time.
93
94 The SV arena serves the secondary purpose of allowing still-live SVs
95 to be located and destroyed during final cleanup.
96
97 At the lowest level, the macros new_SV() and del_SV() grab and free
98 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
99 to return the SV to the free list with error checking.) new_SV() calls
100 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
101 SVs in the free list have their SvTYPE field set to all ones.
102
103 At the time of very final cleanup, sv_free_arenas() is called from
104 perl_destruct() to physically free all the arenas allocated since the
105 start of the interpreter.
106
107 The function visit() scans the SV arenas list, and calls a specified
108 function for each SV it finds which is still live - ie which has an SvTYPE
109 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
110 following functions (specified as [function that calls visit()] / [function
111 called by visit() for each SV]):
112
113     sv_report_used() / do_report_used()
114                         dump all remaining SVs (debugging aid)
115
116     sv_clean_objs() / do_clean_objs(),do_clean_named_objs()
117                         Attempt to free all objects pointed to by RVs,
118                         and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
119                         try to do the same for all objects indirectly
120                         referenced by typeglobs too.  Called once from
121                         perl_destruct(), prior to calling sv_clean_all()
122                         below.
123
124     sv_clean_all() / do_clean_all()
125                         SvREFCNT_dec(sv) each remaining SV, possibly
126                         triggering an sv_free(). It also sets the
127                         SVf_BREAK flag on the SV to indicate that the
128                         refcnt has been artificially lowered, and thus
129                         stopping sv_free() from giving spurious warnings
130                         about SVs which unexpectedly have a refcnt
131                         of zero.  called repeatedly from perl_destruct()
132                         until there are no SVs left.
133
134 =head2 Arena allocator API Summary
135
136 Private API to rest of sv.c
137
138     new_SV(),  del_SV(),
139
140     new_XIV(), del_XIV(),
141     new_XNV(), del_XNV(),
142     etc
143
144 Public API:
145
146     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
147
148 =cut
149
150 ============================================================================ */
151
152 /*
153  * "A time to plant, and a time to uproot what was planted..."
154  */
155
156 void
157 Perl_offer_nice_chunk(pTHX_ void *const chunk, const U32 chunk_size)
158 {
159     dVAR;
160     void *new_chunk;
161     U32 new_chunk_size;
162
163     PERL_ARGS_ASSERT_OFFER_NICE_CHUNK;
164
165     new_chunk = (void *)(chunk);
166     new_chunk_size = (chunk_size);
167     if (new_chunk_size > PL_nice_chunk_size) {
168         Safefree(PL_nice_chunk);
169         PL_nice_chunk = (char *) new_chunk;
170         PL_nice_chunk_size = new_chunk_size;
171     } else {
172         Safefree(chunk);
173     }
174 }
175
176 #ifdef DEBUG_LEAKING_SCALARS
177 #  define FREE_SV_DEBUG_FILE(sv) Safefree((sv)->sv_debug_file)
178 #else
179 #  define FREE_SV_DEBUG_FILE(sv)
180 #endif
181
182 #ifdef PERL_POISON
183 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
184 /* Whilst I'd love to do this, it seems that things like to check on
185    unreferenced scalars
186 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
187 */
188 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
189                                 PoisonNew(&SvREFCNT(sv), 1, U32)
190 #else
191 #  define SvARENA_CHAIN(sv)     SvANY(sv)
192 #  define POSION_SV_HEAD(sv)
193 #endif
194
195 #define plant_SV(p) \
196     STMT_START {                                        \
197         FREE_SV_DEBUG_FILE(p);                          \
198         POSION_SV_HEAD(p);                              \
199         SvARENA_CHAIN(p) = (void *)PL_sv_root;          \
200         SvFLAGS(p) = SVTYPEMASK;                        \
201         PL_sv_root = (p);                               \
202         --PL_sv_count;                                  \
203     } STMT_END
204
205 #define uproot_SV(p) \
206     STMT_START {                                        \
207         (p) = PL_sv_root;                               \
208         PL_sv_root = (SV*)SvARENA_CHAIN(p);             \
209         ++PL_sv_count;                                  \
210     } STMT_END
211
212
213 /* make some more SVs by adding another arena */
214
215 STATIC SV*
216 S_more_sv(pTHX)
217 {
218     dVAR;
219     SV* sv;
220
221     if (PL_nice_chunk) {
222         sv_add_arena(PL_nice_chunk, PL_nice_chunk_size, 0);
223         PL_nice_chunk = NULL;
224         PL_nice_chunk_size = 0;
225     }
226     else {
227         char *chunk;                /* must use New here to match call to */
228         Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
229         sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
230     }
231     uproot_SV(sv);
232     return sv;
233 }
234
235 /* new_SV(): return a new, empty SV head */
236
237 #ifdef DEBUG_LEAKING_SCALARS
238 /* provide a real function for a debugger to play with */
239 STATIC SV*
240 S_new_SV(pTHX)
241 {
242     SV* sv;
243
244     if (PL_sv_root)
245         uproot_SV(sv);
246     else
247         sv = S_more_sv(aTHX);
248     SvANY(sv) = 0;
249     SvREFCNT(sv) = 1;
250     SvFLAGS(sv) = 0;
251     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
252     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
253                 ? PL_parser->copline
254                 :  PL_curcop
255                     ? CopLINE(PL_curcop)
256                     : 0
257             );
258     sv->sv_debug_inpad = 0;
259     sv->sv_debug_cloned = 0;
260     sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
261     
262     return sv;
263 }
264 #  define new_SV(p) (p)=S_new_SV(aTHX)
265
266 #else
267 #  define new_SV(p) \
268     STMT_START {                                        \
269         if (PL_sv_root)                                 \
270             uproot_SV(p);                               \
271         else                                            \
272             (p) = S_more_sv(aTHX);                      \
273         SvANY(p) = 0;                                   \
274         SvREFCNT(p) = 1;                                \
275         SvFLAGS(p) = 0;                                 \
276     } STMT_END
277 #endif
278
279
280 /* del_SV(): return an empty SV head to the free list */
281
282 #ifdef DEBUGGING
283
284 #define del_SV(p) \
285     STMT_START {                                        \
286         if (DEBUG_D_TEST)                               \
287             del_sv(p);                                  \
288         else                                            \
289             plant_SV(p);                                \
290     } STMT_END
291
292 STATIC void
293 S_del_sv(pTHX_ SV *p)
294 {
295     dVAR;
296
297     PERL_ARGS_ASSERT_DEL_SV;
298
299     if (DEBUG_D_TEST) {
300         SV* sva;
301         bool ok = 0;
302         for (sva = PL_sv_arenaroot; sva; sva = (SV *) SvANY(sva)) {
303             const SV * const sv = sva + 1;
304             const SV * const svend = &sva[SvREFCNT(sva)];
305             if (p >= sv && p < svend) {
306                 ok = 1;
307                 break;
308             }
309         }
310         if (!ok) {
311             if (ckWARN_d(WARN_INTERNAL))        
312                 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
313                             "Attempt to free non-arena SV: 0x%"UVxf
314                             pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
315             return;
316         }
317     }
318     plant_SV(p);
319 }
320
321 #else /* ! DEBUGGING */
322
323 #define del_SV(p)   plant_SV(p)
324
325 #endif /* DEBUGGING */
326
327
328 /*
329 =head1 SV Manipulation Functions
330
331 =for apidoc sv_add_arena
332
333 Given a chunk of memory, link it to the head of the list of arenas,
334 and split it into a list of free SVs.
335
336 =cut
337 */
338
339 void
340 Perl_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
341 {
342     dVAR;
343     SV* const sva = (SV*)ptr;
344     register SV* sv;
345     register SV* svend;
346
347     PERL_ARGS_ASSERT_SV_ADD_ARENA;
348
349     /* The first SV in an arena isn't an SV. */
350     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
351     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
352     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
353
354     PL_sv_arenaroot = sva;
355     PL_sv_root = sva + 1;
356
357     svend = &sva[SvREFCNT(sva) - 1];
358     sv = sva + 1;
359     while (sv < svend) {
360         SvARENA_CHAIN(sv) = (void *)(SV*)(sv + 1);
361 #ifdef DEBUGGING
362         SvREFCNT(sv) = 0;
363 #endif
364         /* Must always set typemask because it's always checked in on cleanup
365            when the arenas are walked looking for objects.  */
366         SvFLAGS(sv) = SVTYPEMASK;
367         sv++;
368     }
369     SvARENA_CHAIN(sv) = 0;
370 #ifdef DEBUGGING
371     SvREFCNT(sv) = 0;
372 #endif
373     SvFLAGS(sv) = SVTYPEMASK;
374 }
375
376 /* visit(): call the named function for each non-free SV in the arenas
377  * whose flags field matches the flags/mask args. */
378
379 STATIC I32
380 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
381 {
382     dVAR;
383     SV* sva;
384     I32 visited = 0;
385
386     PERL_ARGS_ASSERT_VISIT;
387
388     for (sva = PL_sv_arenaroot; sva; sva = (SV*)SvANY(sva)) {
389         register const SV * const svend = &sva[SvREFCNT(sva)];
390         register SV* sv;
391         for (sv = sva + 1; sv < svend; ++sv) {
392             if (SvTYPE(sv) != SVTYPEMASK
393                     && (sv->sv_flags & mask) == flags
394                     && SvREFCNT(sv))
395             {
396                 (FCALL)(aTHX_ sv);
397                 ++visited;
398             }
399         }
400     }
401     return visited;
402 }
403
404 #ifdef DEBUGGING
405
406 /* called by sv_report_used() for each live SV */
407
408 static void
409 do_report_used(pTHX_ SV *const sv)
410 {
411     if (SvTYPE(sv) != SVTYPEMASK) {
412         PerlIO_printf(Perl_debug_log, "****\n");
413         sv_dump(sv);
414     }
415 }
416 #endif
417
418 /*
419 =for apidoc sv_report_used
420
421 Dump the contents of all SVs not yet freed. (Debugging aid).
422
423 =cut
424 */
425
426 void
427 Perl_sv_report_used(pTHX)
428 {
429 #ifdef DEBUGGING
430     visit(do_report_used, 0, 0);
431 #else
432     PERL_UNUSED_CONTEXT;
433 #endif
434 }
435
436 /* called by sv_clean_objs() for each live SV */
437
438 static void
439 do_clean_objs(pTHX_ SV *const ref)
440 {
441     dVAR;
442     assert (SvROK(ref));
443     {
444         SV * const target = SvRV(ref);
445         if (SvOBJECT(target)) {
446             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
447             if (SvWEAKREF(ref)) {
448                 sv_del_backref(target, ref);
449                 SvWEAKREF_off(ref);
450                 SvRV_set(ref, NULL);
451             } else {
452                 SvROK_off(ref);
453                 SvRV_set(ref, NULL);
454                 SvREFCNT_dec(target);
455             }
456         }
457     }
458
459     /* XXX Might want to check arrays, etc. */
460 }
461
462 /* called by sv_clean_objs() for each live SV */
463
464 #ifndef DISABLE_DESTRUCTOR_KLUDGE
465 static void
466 do_clean_named_objs(pTHX_ SV *const sv)
467 {
468     dVAR;
469     assert(SvTYPE(sv) == SVt_PVGV);
470     assert(isGV_with_GP(sv));
471     if (GvGP(sv)) {
472         if ((
473 #ifdef PERL_DONT_CREATE_GVSV
474              GvSV(sv) &&
475 #endif
476              SvOBJECT(GvSV(sv))) ||
477              (GvAV(sv) && SvOBJECT(GvAV(sv))) ||
478              (GvHV(sv) && SvOBJECT(GvHV(sv))) ||
479              /* In certain rare cases GvIOp(sv) can be NULL, which would make SvOBJECT(GvIO(sv)) dereference NULL. */
480              (GvIO(sv) ? (SvFLAGS(GvIOp(sv)) & SVs_OBJECT) : 0) ||
481              (GvCV(sv) && SvOBJECT(GvCV(sv))) )
482         {
483             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning named glob object:\n "), sv_dump(sv)));
484             SvFLAGS(sv) |= SVf_BREAK;
485             SvREFCNT_dec(sv);
486         }
487     }
488 }
489 #endif
490
491 /*
492 =for apidoc sv_clean_objs
493
494 Attempt to destroy all objects not yet freed
495
496 =cut
497 */
498
499 void
500 Perl_sv_clean_objs(pTHX)
501 {
502     dVAR;
503     PL_in_clean_objs = TRUE;
504     visit(do_clean_objs, SVf_ROK, SVf_ROK);
505 #ifndef DISABLE_DESTRUCTOR_KLUDGE
506     /* some barnacles may yet remain, clinging to typeglobs */
507     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
508 #endif
509     PL_in_clean_objs = FALSE;
510 }
511
512 /* called by sv_clean_all() for each live SV */
513
514 static void
515 do_clean_all(pTHX_ SV *const sv)
516 {
517     dVAR;
518     if (sv == (SV*) PL_fdpid || sv == (SV *)PL_strtab) {
519         /* don't clean pid table and strtab */
520         return;
521     }
522     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
523     SvFLAGS(sv) |= SVf_BREAK;
524     SvREFCNT_dec(sv);
525 }
526
527 /*
528 =for apidoc sv_clean_all
529
530 Decrement the refcnt of each remaining SV, possibly triggering a
531 cleanup. This function may have to be called multiple times to free
532 SVs which are in complex self-referential hierarchies.
533
534 =cut
535 */
536
537 I32
538 Perl_sv_clean_all(pTHX)
539 {
540     dVAR;
541     I32 cleaned;
542     PL_in_clean_all = TRUE;
543     cleaned = visit(do_clean_all, 0,0);
544     PL_in_clean_all = FALSE;
545     return cleaned;
546 }
547
548 /*
549   ARENASETS: a meta-arena implementation which separates arena-info
550   into struct arena_set, which contains an array of struct
551   arena_descs, each holding info for a single arena.  By separating
552   the meta-info from the arena, we recover the 1st slot, formerly
553   borrowed for list management.  The arena_set is about the size of an
554   arena, avoiding the needless malloc overhead of a naive linked-list.
555
556   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
557   memory in the last arena-set (1/2 on average).  In trade, we get
558   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
559   smaller types).  The recovery of the wasted space allows use of
560   small arenas for large, rare body types, by changing array* fields
561   in body_details_by_type[] below.
562 */
563 struct arena_desc {
564     char       *arena;          /* the raw storage, allocated aligned */
565     size_t      size;           /* its size ~4k typ */
566     U32         misc;           /* type, and in future other things. */
567 };
568
569 struct arena_set;
570
571 /* Get the maximum number of elements in set[] such that struct arena_set
572    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
573    therefore likely to be 1 aligned memory page.  */
574
575 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
576                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
577
578 struct arena_set {
579     struct arena_set* next;
580     unsigned int   set_size;    /* ie ARENAS_PER_SET */
581     unsigned int   curr;        /* index of next available arena-desc */
582     struct arena_desc set[ARENAS_PER_SET];
583 };
584
585 /*
586 =for apidoc sv_free_arenas
587
588 Deallocate the memory used by all arenas. Note that all the individual SV
589 heads and bodies within the arenas must already have been freed.
590
591 =cut
592 */
593 void
594 Perl_sv_free_arenas(pTHX)
595 {
596     dVAR;
597     SV* sva;
598     SV* svanext;
599     unsigned int i;
600
601     /* Free arenas here, but be careful about fake ones.  (We assume
602        contiguity of the fake ones with the corresponding real ones.) */
603
604     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
605         svanext = (SV*) SvANY(sva);
606         while (svanext && SvFAKE(svanext))
607             svanext = (SV*) SvANY(svanext);
608
609         if (!SvFAKE(sva))
610             Safefree(sva);
611     }
612
613     {
614         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
615
616         while (aroot) {
617             struct arena_set *current = aroot;
618             i = aroot->curr;
619             while (i--) {
620                 assert(aroot->set[i].arena);
621                 Safefree(aroot->set[i].arena);
622             }
623             aroot = aroot->next;
624             Safefree(current);
625         }
626     }
627     PL_body_arenas = 0;
628
629     i = PERL_ARENA_ROOTS_SIZE;
630     while (i--)
631         PL_body_roots[i] = 0;
632
633     Safefree(PL_nice_chunk);
634     PL_nice_chunk = NULL;
635     PL_nice_chunk_size = 0;
636     PL_sv_arenaroot = 0;
637     PL_sv_root = 0;
638 }
639
640 /*
641   Here are mid-level routines that manage the allocation of bodies out
642   of the various arenas.  There are 5 kinds of arenas:
643
644   1. SV-head arenas, which are discussed and handled above
645   2. regular body arenas
646   3. arenas for reduced-size bodies
647   4. Hash-Entry arenas
648   5. pte arenas (thread related)
649
650   Arena types 2 & 3 are chained by body-type off an array of
651   arena-root pointers, which is indexed by svtype.  Some of the
652   larger/less used body types are malloced singly, since a large
653   unused block of them is wasteful.  Also, several svtypes dont have
654   bodies; the data fits into the sv-head itself.  The arena-root
655   pointer thus has a few unused root-pointers (which may be hijacked
656   later for arena types 4,5)
657
658   3 differs from 2 as an optimization; some body types have several
659   unused fields in the front of the structure (which are kept in-place
660   for consistency).  These bodies can be allocated in smaller chunks,
661   because the leading fields arent accessed.  Pointers to such bodies
662   are decremented to point at the unused 'ghost' memory, knowing that
663   the pointers are used with offsets to the real memory.
664
665   HE, HEK arenas are managed separately, with separate code, but may
666   be merge-able later..
667
668   PTE arenas are not sv-bodies, but they share these mid-level
669   mechanics, so are considered here.  The new mid-level mechanics rely
670   on the sv_type of the body being allocated, so we just reserve one
671   of the unused body-slots for PTEs, then use it in those (2) PTE
672   contexts below (line ~10k)
673 */
674
675 /* get_arena(size): this creates custom-sized arenas
676    TBD: export properly for hv.c: S_more_he().
677 */
678 void*
679 Perl_get_arena(pTHX_ const size_t arena_size, const U32 misc)
680 {
681     dVAR;
682     struct arena_desc* adesc;
683     struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
684     unsigned int curr;
685
686     /* shouldnt need this
687     if (!arena_size)    arena_size = PERL_ARENA_SIZE;
688     */
689
690     /* may need new arena-set to hold new arena */
691     if (!aroot || aroot->curr >= aroot->set_size) {
692         struct arena_set *newroot;
693         Newxz(newroot, 1, struct arena_set);
694         newroot->set_size = ARENAS_PER_SET;
695         newroot->next = aroot;
696         aroot = newroot;
697         PL_body_arenas = (void *) newroot;
698         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
699     }
700
701     /* ok, now have arena-set with at least 1 empty/available arena-desc */
702     curr = aroot->curr++;
703     adesc = &(aroot->set[curr]);
704     assert(!adesc->arena);
705     
706     Newx(adesc->arena, arena_size, char);
707     adesc->size = arena_size;
708     adesc->misc = misc;
709     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
710                           curr, (void*)adesc->arena, (UV)arena_size));
711
712     return adesc->arena;
713 }
714
715
716 /* return a thing to the free list */
717
718 #define del_body(thing, root)                   \
719     STMT_START {                                \
720         void ** const thing_copy = (void **)thing;\
721         *thing_copy = *root;                    \
722         *root = (void*)thing_copy;              \
723     } STMT_END
724
725 /* 
726
727 =head1 SV-Body Allocation
728
729 Allocation of SV-bodies is similar to SV-heads, differing as follows;
730 the allocation mechanism is used for many body types, so is somewhat
731 more complicated, it uses arena-sets, and has no need for still-live
732 SV detection.
733
734 At the outermost level, (new|del)_X*V macros return bodies of the
735 appropriate type.  These macros call either (new|del)_body_type or
736 (new|del)_body_allocated macro pairs, depending on specifics of the
737 type.  Most body types use the former pair, the latter pair is used to
738 allocate body types with "ghost fields".
739
740 "ghost fields" are fields that are unused in certain types, and
741 consequently dont need to actually exist.  They are declared because
742 they're part of a "base type", which allows use of functions as
743 methods.  The simplest examples are AVs and HVs, 2 aggregate types
744 which don't use the fields which support SCALAR semantics.
745
746 For these types, the arenas are carved up into *_allocated size
747 chunks, we thus avoid wasted memory for those unaccessed members.
748 When bodies are allocated, we adjust the pointer back in memory by the
749 size of the bit not allocated, so it's as if we allocated the full
750 structure.  (But things will all go boom if you write to the part that
751 is "not there", because you'll be overwriting the last members of the
752 preceding structure in memory.)
753
754 We calculate the correction using the STRUCT_OFFSET macro. For
755 example, if xpv_allocated is the same structure as XPV then the two
756 OFFSETs sum to zero, and the pointer is unchanged. If the allocated
757 structure is smaller (no initial NV actually allocated) then the net
758 effect is to subtract the size of the NV from the pointer, to return a
759 new pointer as if an initial NV were actually allocated.
760
761 This is the same trick as was used for NV and IV bodies. Ironically it
762 doesn't need to be used for NV bodies any more, because NV is now at
763 the start of the structure. IV bodies don't need it either, because
764 they are no longer allocated.
765
766 In turn, the new_body_* allocators call S_new_body(), which invokes
767 new_body_inline macro, which takes a lock, and takes a body off the
768 linked list at PL_body_roots[sv_type], calling S_more_bodies() if
769 necessary to refresh an empty list.  Then the lock is released, and
770 the body is returned.
771
772 S_more_bodies calls get_arena(), and carves it up into an array of N
773 bodies, which it strings into a linked list.  It looks up arena-size
774 and body-size from the body_details table described below, thus
775 supporting the multiple body-types.
776
777 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
778 the (new|del)_X*V macros are mapped directly to malloc/free.
779
780 */
781
782 /* 
783
784 For each sv-type, struct body_details bodies_by_type[] carries
785 parameters which control these aspects of SV handling:
786
787 Arena_size determines whether arenas are used for this body type, and if
788 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
789 zero, forcing individual mallocs and frees.
790
791 Body_size determines how big a body is, and therefore how many fit into
792 each arena.  Offset carries the body-pointer adjustment needed for
793 *_allocated body types, and is used in *_allocated macros.
794
795 But its main purpose is to parameterize info needed in
796 Perl_sv_upgrade().  The info here dramatically simplifies the function
797 vs the implementation in 5.8.7, making it table-driven.  All fields
798 are used for this, except for arena_size.
799
800 For the sv-types that have no bodies, arenas are not used, so those
801 PL_body_roots[sv_type] are unused, and can be overloaded.  In
802 something of a special case, SVt_NULL is borrowed for HE arenas;
803 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
804 bodies_by_type[SVt_NULL] slot is not used, as the table is not
805 available in hv.c.
806
807 PTEs also use arenas, but are never seen in Perl_sv_upgrade. Nonetheless,
808 they get their own slot in bodies_by_type[PTE_SVSLOT =SVt_IV], so they can
809 just use the same allocation semantics.  At first, PTEs were also
810 overloaded to a non-body sv-type, but this yielded hard-to-find malloc
811 bugs, so was simplified by claiming a new slot.  This choice has no
812 consequence at this time.
813
814 */
815
816 struct body_details {
817     U8 body_size;       /* Size to allocate  */
818     U8 copy;            /* Size of structure to copy (may be shorter)  */
819     U8 offset;
820     unsigned int type : 4;          /* We have space for a sanity check.  */
821     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
822     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
823     unsigned int arena : 1;         /* Allocated from an arena */
824     size_t arena_size;              /* Size of arena to allocate */
825 };
826
827 #define HADNV FALSE
828 #define NONV TRUE
829
830
831 #ifdef PURIFY
832 /* With -DPURFIY we allocate everything directly, and don't use arenas.
833    This seems a rather elegant way to simplify some of the code below.  */
834 #define HASARENA FALSE
835 #else
836 #define HASARENA TRUE
837 #endif
838 #define NOARENA FALSE
839
840 /* Size the arenas to exactly fit a given number of bodies.  A count
841    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
842    simplifying the default.  If count > 0, the arena is sized to fit
843    only that many bodies, allowing arenas to be used for large, rare
844    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
845    limited by PERL_ARENA_SIZE, so we can safely oversize the
846    declarations.
847  */
848 #define FIT_ARENA0(body_size)                           \
849     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
850 #define FIT_ARENAn(count,body_size)                     \
851     ( count * body_size <= PERL_ARENA_SIZE)             \
852     ? count * body_size                                 \
853     : FIT_ARENA0 (body_size)
854 #define FIT_ARENA(count,body_size)                      \
855     count                                               \
856     ? FIT_ARENAn (count, body_size)                     \
857     : FIT_ARENA0 (body_size)
858
859 /* A macro to work out the offset needed to subtract from a pointer to (say)
860
861 typedef struct {
862     STRLEN      xpv_cur;
863     STRLEN      xpv_len;
864 } xpv_allocated;
865
866 to make its members accessible via a pointer to (say)
867
868 struct xpv {
869     NV          xnv_nv;
870     STRLEN      xpv_cur;
871     STRLEN      xpv_len;
872 };
873
874 */
875
876 #define relative_STRUCT_OFFSET(longer, shorter, member) \
877     (STRUCT_OFFSET(shorter, member) - STRUCT_OFFSET(longer, member))
878
879 /* Calculate the length to copy. Specifically work out the length less any
880    final padding the compiler needed to add.  See the comment in sv_upgrade
881    for why copying the padding proved to be a bug.  */
882
883 #define copy_length(type, last_member) \
884         STRUCT_OFFSET(type, last_member) \
885         + sizeof (((type*)SvANY((SV*)0))->last_member)
886
887 static const struct body_details bodies_by_type[] = {
888     { sizeof(HE), 0, 0, SVt_NULL,
889       FALSE, NONV, NOARENA, FIT_ARENA(0, sizeof(HE)) },
890
891     /* The bind placeholder pretends to be an RV for now.
892        Also it's marked as "can't upgrade" to stop anyone using it before it's
893        implemented.  */
894     { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
895
896     /* IVs are in the head, so the allocation size is 0.
897        However, the slot is overloaded for PTEs.  */
898     { sizeof(struct ptr_tbl_ent), /* This is used for PTEs.  */
899       sizeof(IV), /* This is used to copy out the IV body.  */
900       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
901       NOARENA /* IVS don't need an arena  */,
902       /* But PTEs need to know the size of their arena  */
903       FIT_ARENA(0, sizeof(struct ptr_tbl_ent))
904     },
905
906     /* 8 bytes on most ILP32 with IEEE doubles */
907     { sizeof(NV), sizeof(NV), 0, SVt_NV, FALSE, HADNV, HASARENA,
908       FIT_ARENA(0, sizeof(NV)) },
909
910     /* 8 bytes on most ILP32 with IEEE doubles */
911     { sizeof(xpv_allocated),
912       copy_length(XPV, xpv_len)
913       - relative_STRUCT_OFFSET(xpv_allocated, XPV, xpv_cur),
914       + relative_STRUCT_OFFSET(xpv_allocated, XPV, xpv_cur),
915       SVt_PV, FALSE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpv_allocated)) },
916
917     /* 12 */
918     { sizeof(xpviv_allocated),
919       copy_length(XPVIV, xiv_u)
920       - relative_STRUCT_OFFSET(xpviv_allocated, XPVIV, xpv_cur),
921       + relative_STRUCT_OFFSET(xpviv_allocated, XPVIV, xpv_cur),
922       SVt_PVIV, FALSE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpviv_allocated)) },
923
924     /* 20 */
925     { sizeof(XPVNV), copy_length(XPVNV, xiv_u), 0, SVt_PVNV, FALSE, HADNV,
926       HASARENA, FIT_ARENA(0, sizeof(XPVNV)) },
927
928     /* 28 */
929     { sizeof(XPVMG), copy_length(XPVMG, xmg_stash), 0, SVt_PVMG, FALSE, HADNV,
930       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
931
932     /* something big */
933     { sizeof(struct regexp_allocated), sizeof(struct regexp_allocated),
934       + relative_STRUCT_OFFSET(struct regexp_allocated, regexp, xpv_cur),
935       SVt_REGEXP, FALSE, NONV, HASARENA,
936       FIT_ARENA(0, sizeof(struct regexp_allocated))
937     },
938
939     /* 48 */
940     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
941       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
942     
943     /* 64 */
944     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
945       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
946
947     { sizeof(xpvav_allocated),
948       copy_length(XPVAV, xmg_stash)
949       - relative_STRUCT_OFFSET(xpvav_allocated, XPVAV, xav_fill),
950       + relative_STRUCT_OFFSET(xpvav_allocated, XPVAV, xav_fill),
951       SVt_PVAV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvav_allocated)) },
952
953     { sizeof(xpvhv_allocated),
954       copy_length(XPVHV, xmg_stash)
955       - relative_STRUCT_OFFSET(xpvhv_allocated, XPVHV, xhv_fill),
956       + relative_STRUCT_OFFSET(xpvhv_allocated, XPVHV, xhv_fill),
957       SVt_PVHV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvhv_allocated)) },
958
959     /* 56 */
960     { sizeof(xpvcv_allocated), sizeof(xpvcv_allocated),
961       + relative_STRUCT_OFFSET(xpvcv_allocated, XPVCV, xpv_cur),
962       SVt_PVCV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvcv_allocated)) },
963
964     { sizeof(xpvfm_allocated), sizeof(xpvfm_allocated),
965       + relative_STRUCT_OFFSET(xpvfm_allocated, XPVFM, xpv_cur),
966       SVt_PVFM, TRUE, NONV, NOARENA, FIT_ARENA(20, sizeof(xpvfm_allocated)) },
967
968     /* XPVIO is 84 bytes, fits 48x */
969     { sizeof(xpvio_allocated), sizeof(xpvio_allocated),
970       + relative_STRUCT_OFFSET(xpvio_allocated, XPVIO, xpv_cur),
971       SVt_PVIO, TRUE, NONV, HASARENA, FIT_ARENA(24, sizeof(xpvio_allocated)) },
972 };
973
974 #define new_body_type(sv_type)          \
975     (void *)((char *)S_new_body(aTHX_ sv_type))
976
977 #define del_body_type(p, sv_type)       \
978     del_body(p, &PL_body_roots[sv_type])
979
980
981 #define new_body_allocated(sv_type)             \
982     (void *)((char *)S_new_body(aTHX_ sv_type)  \
983              - bodies_by_type[sv_type].offset)
984
985 #define del_body_allocated(p, sv_type)          \
986     del_body(p + bodies_by_type[sv_type].offset, &PL_body_roots[sv_type])
987
988
989 #define my_safemalloc(s)        (void*)safemalloc(s)
990 #define my_safecalloc(s)        (void*)safecalloc(s, 1)
991 #define my_safefree(p)  safefree((char*)p)
992
993 #ifdef PURIFY
994
995 #define new_XNV()       my_safemalloc(sizeof(XPVNV))
996 #define del_XNV(p)      my_safefree(p)
997
998 #define new_XPVNV()     my_safemalloc(sizeof(XPVNV))
999 #define del_XPVNV(p)    my_safefree(p)
1000
1001 #define new_XPVAV()     my_safemalloc(sizeof(XPVAV))
1002 #define del_XPVAV(p)    my_safefree(p)
1003
1004 #define new_XPVHV()     my_safemalloc(sizeof(XPVHV))
1005 #define del_XPVHV(p)    my_safefree(p)
1006
1007 #define new_XPVMG()     my_safemalloc(sizeof(XPVMG))
1008 #define del_XPVMG(p)    my_safefree(p)
1009
1010 #define new_XPVGV()     my_safemalloc(sizeof(XPVGV))
1011 #define del_XPVGV(p)    my_safefree(p)
1012
1013 #else /* !PURIFY */
1014
1015 #define new_XNV()       new_body_type(SVt_NV)
1016 #define del_XNV(p)      del_body_type(p, SVt_NV)
1017
1018 #define new_XPVNV()     new_body_type(SVt_PVNV)
1019 #define del_XPVNV(p)    del_body_type(p, SVt_PVNV)
1020
1021 #define new_XPVAV()     new_body_allocated(SVt_PVAV)
1022 #define del_XPVAV(p)    del_body_allocated(p, SVt_PVAV)
1023
1024 #define new_XPVHV()     new_body_allocated(SVt_PVHV)
1025 #define del_XPVHV(p)    del_body_allocated(p, SVt_PVHV)
1026
1027 #define new_XPVMG()     new_body_type(SVt_PVMG)
1028 #define del_XPVMG(p)    del_body_type(p, SVt_PVMG)
1029
1030 #define new_XPVGV()     new_body_type(SVt_PVGV)
1031 #define del_XPVGV(p)    del_body_type(p, SVt_PVGV)
1032
1033 #endif /* PURIFY */
1034
1035 /* no arena for you! */
1036
1037 #define new_NOARENA(details) \
1038         my_safemalloc((details)->body_size + (details)->offset)
1039 #define new_NOARENAZ(details) \
1040         my_safecalloc((details)->body_size + (details)->offset)
1041
1042 STATIC void *
1043 S_more_bodies (pTHX_ const svtype sv_type)
1044 {
1045     dVAR;
1046     void ** const root = &PL_body_roots[sv_type];
1047     const struct body_details * const bdp = &bodies_by_type[sv_type];
1048     const size_t body_size = bdp->body_size;
1049     char *start;
1050     const char *end;
1051     const size_t arena_size = Perl_malloc_good_size(bdp->arena_size);
1052 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1053     static bool done_sanity_check;
1054
1055     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1056      * variables like done_sanity_check. */
1057     if (!done_sanity_check) {
1058         unsigned int i = SVt_LAST;
1059
1060         done_sanity_check = TRUE;
1061
1062         while (i--)
1063             assert (bodies_by_type[i].type == i);
1064     }
1065 #endif
1066
1067     assert(bdp->arena_size);
1068
1069     start = (char*) Perl_get_arena(aTHX_ arena_size, sv_type);
1070
1071     end = start + arena_size - 2 * body_size;
1072
1073     /* computed count doesnt reflect the 1st slot reservation */
1074 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1075     DEBUG_m(PerlIO_printf(Perl_debug_log,
1076                           "arena %p end %p arena-size %d (from %d) type %d "
1077                           "size %d ct %d\n",
1078                           (void*)start, (void*)end, (int)arena_size,
1079                           (int)bdp->arena_size, sv_type, (int)body_size,
1080                           (int)arena_size / (int)body_size));
1081 #else
1082     DEBUG_m(PerlIO_printf(Perl_debug_log,
1083                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1084                           (void*)start, (void*)end,
1085                           (int)bdp->arena_size, sv_type, (int)body_size,
1086                           (int)bdp->arena_size / (int)body_size));
1087 #endif
1088     *root = (void *)start;
1089
1090     while (start <= end) {
1091         char * const next = start + body_size;
1092         *(void**) start = (void *)next;
1093         start = next;
1094     }
1095     *(void **)start = 0;
1096
1097     return *root;
1098 }
1099
1100 /* grab a new thing from the free list, allocating more if necessary.
1101    The inline version is used for speed in hot routines, and the
1102    function using it serves the rest (unless PURIFY).
1103 */
1104 #define new_body_inline(xpv, sv_type) \
1105     STMT_START { \
1106         void ** const r3wt = &PL_body_roots[sv_type]; \
1107         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1108           ? *((void **)(r3wt)) : more_bodies(sv_type)); \
1109         *(r3wt) = *(void**)(xpv); \
1110     } STMT_END
1111
1112 #ifndef PURIFY
1113
1114 STATIC void *
1115 S_new_body(pTHX_ const svtype sv_type)
1116 {
1117     dVAR;
1118     void *xpv;
1119     new_body_inline(xpv, sv_type);
1120     return xpv;
1121 }
1122
1123 #endif
1124
1125 static const struct body_details fake_rv =
1126     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1127
1128 /*
1129 =for apidoc sv_upgrade
1130
1131 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1132 SV, then copies across as much information as possible from the old body.
1133 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1134
1135 =cut
1136 */
1137
1138 void
1139 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1140 {
1141     dVAR;
1142     void*       old_body;
1143     void*       new_body;
1144     const svtype old_type = SvTYPE(sv);
1145     const struct body_details *new_type_details;
1146     const struct body_details *old_type_details
1147         = bodies_by_type + old_type;
1148     SV *referant = NULL;
1149
1150     PERL_ARGS_ASSERT_SV_UPGRADE;
1151
1152     if (new_type != SVt_PV && SvIsCOW(sv)) {
1153         sv_force_normal_flags(sv, 0);
1154     }
1155
1156     if (old_type == new_type)
1157         return;
1158
1159     old_body = SvANY(sv);
1160
1161     /* Copying structures onto other structures that have been neatly zeroed
1162        has a subtle gotcha. Consider XPVMG
1163
1164        +------+------+------+------+------+-------+-------+
1165        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1166        +------+------+------+------+------+-------+-------+
1167        0      4      8     12     16     20      24      28
1168
1169        where NVs are aligned to 8 bytes, so that sizeof that structure is
1170        actually 32 bytes long, with 4 bytes of padding at the end:
1171
1172        +------+------+------+------+------+-------+-------+------+
1173        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1174        +------+------+------+------+------+-------+-------+------+
1175        0      4      8     12     16     20      24      28     32
1176
1177        so what happens if you allocate memory for this structure:
1178
1179        +------+------+------+------+------+-------+-------+------+------+...
1180        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1181        +------+------+------+------+------+-------+-------+------+------+...
1182        0      4      8     12     16     20      24      28     32     36
1183
1184        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1185        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1186        started out as zero once, but it's quite possible that it isn't. So now,
1187        rather than a nicely zeroed GP, you have it pointing somewhere random.
1188        Bugs ensue.
1189
1190        (In fact, GP ends up pointing at a previous GP structure, because the
1191        principle cause of the padding in XPVMG getting garbage is a copy of
1192        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1193        this happens to be moot because XPVGV has been re-ordered, with GP
1194        no longer after STASH)
1195
1196        So we are careful and work out the size of used parts of all the
1197        structures.  */
1198
1199     switch (old_type) {
1200     case SVt_NULL:
1201         break;
1202     case SVt_IV:
1203         if (SvROK(sv)) {
1204             referant = SvRV(sv);
1205             old_type_details = &fake_rv;
1206             if (new_type == SVt_NV)
1207                 new_type = SVt_PVNV;
1208         } else {
1209             if (new_type < SVt_PVIV) {
1210                 new_type = (new_type == SVt_NV)
1211                     ? SVt_PVNV : SVt_PVIV;
1212             }
1213         }
1214         break;
1215     case SVt_NV:
1216         if (new_type < SVt_PVNV) {
1217             new_type = SVt_PVNV;
1218         }
1219         break;
1220     case SVt_PV:
1221         assert(new_type > SVt_PV);
1222         assert(SVt_IV < SVt_PV);
1223         assert(SVt_NV < SVt_PV);
1224         break;
1225     case SVt_PVIV:
1226         break;
1227     case SVt_PVNV:
1228         break;
1229     case SVt_PVMG:
1230         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1231            there's no way that it can be safely upgraded, because perl.c
1232            expects to Safefree(SvANY(PL_mess_sv))  */
1233         assert(sv != PL_mess_sv);
1234         /* This flag bit is used to mean other things in other scalar types.
1235            Given that it only has meaning inside the pad, it shouldn't be set
1236            on anything that can get upgraded.  */
1237         assert(!SvPAD_TYPED(sv));
1238         break;
1239     default:
1240         if (old_type_details->cant_upgrade)
1241             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1242                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1243     }
1244
1245     if (old_type > new_type)
1246         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1247                 (int)old_type, (int)new_type);
1248
1249     new_type_details = bodies_by_type + new_type;
1250
1251     SvFLAGS(sv) &= ~SVTYPEMASK;
1252     SvFLAGS(sv) |= new_type;
1253
1254     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1255        the return statements above will have triggered.  */
1256     assert (new_type != SVt_NULL);
1257     switch (new_type) {
1258     case SVt_IV:
1259         assert(old_type == SVt_NULL);
1260         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1261         SvIV_set(sv, 0);
1262         return;
1263     case SVt_NV:
1264         assert(old_type == SVt_NULL);
1265         SvANY(sv) = new_XNV();
1266         SvNV_set(sv, 0);
1267         return;
1268     case SVt_PVHV:
1269     case SVt_PVAV:
1270         assert(new_type_details->body_size);
1271
1272 #ifndef PURIFY  
1273         assert(new_type_details->arena);
1274         assert(new_type_details->arena_size);
1275         /* This points to the start of the allocated area.  */
1276         new_body_inline(new_body, new_type);
1277         Zero(new_body, new_type_details->body_size, char);
1278         new_body = ((char *)new_body) - new_type_details->offset;
1279 #else
1280         /* We always allocated the full length item with PURIFY. To do this
1281            we fake things so that arena is false for all 16 types..  */
1282         new_body = new_NOARENAZ(new_type_details);
1283 #endif
1284         SvANY(sv) = new_body;
1285         if (new_type == SVt_PVAV) {
1286             AvMAX(sv)   = -1;
1287             AvFILLp(sv) = -1;
1288             AvREAL_only(sv);
1289             if (old_type_details->body_size) {
1290                 AvALLOC(sv) = 0;
1291             } else {
1292                 /* It will have been zeroed when the new body was allocated.
1293                    Lets not write to it, in case it confuses a write-back
1294                    cache.  */
1295             }
1296         } else {
1297             assert(!SvOK(sv));
1298             SvOK_off(sv);
1299 #ifndef NODEFAULT_SHAREKEYS
1300             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1301 #endif
1302             HvMAX(sv) = 7; /* (start with 8 buckets) */
1303             if (old_type_details->body_size) {
1304                 HvFILL(sv) = 0;
1305             } else {
1306                 /* It will have been zeroed when the new body was allocated.
1307                    Lets not write to it, in case it confuses a write-back
1308                    cache.  */
1309             }
1310         }
1311
1312         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1313            The target created by newSVrv also is, and it can have magic.
1314            However, it never has SvPVX set.
1315         */
1316         if (old_type == SVt_IV) {
1317             assert(!SvROK(sv));
1318         } else if (old_type >= SVt_PV) {
1319             assert(SvPVX_const(sv) == 0);
1320         }
1321
1322         if (old_type >= SVt_PVMG) {
1323             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1324             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1325         } else {
1326             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1327         }
1328         break;
1329
1330
1331     case SVt_PVIV:
1332         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1333            no route from NV to PVIV, NOK can never be true  */
1334         assert(!SvNOKp(sv));
1335         assert(!SvNOK(sv));
1336     case SVt_PVIO:
1337     case SVt_PVFM:
1338     case SVt_PVGV:
1339     case SVt_PVCV:
1340     case SVt_PVLV:
1341     case SVt_REGEXP:
1342     case SVt_PVMG:
1343     case SVt_PVNV:
1344     case SVt_PV:
1345
1346         assert(new_type_details->body_size);
1347         /* We always allocated the full length item with PURIFY. To do this
1348            we fake things so that arena is false for all 16 types..  */
1349         if(new_type_details->arena) {
1350             /* This points to the start of the allocated area.  */
1351             new_body_inline(new_body, new_type);
1352             Zero(new_body, new_type_details->body_size, char);
1353             new_body = ((char *)new_body) - new_type_details->offset;
1354         } else {
1355             new_body = new_NOARENAZ(new_type_details);
1356         }
1357         SvANY(sv) = new_body;
1358
1359         if (old_type_details->copy) {
1360             /* There is now the potential for an upgrade from something without
1361                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1362             int offset = old_type_details->offset;
1363             int length = old_type_details->copy;
1364
1365             if (new_type_details->offset > old_type_details->offset) {
1366                 const int difference
1367                     = new_type_details->offset - old_type_details->offset;
1368                 offset += difference;
1369                 length -= difference;
1370             }
1371             assert (length >= 0);
1372                 
1373             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1374                  char);
1375         }
1376
1377 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1378         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1379          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1380          * NV slot, but the new one does, then we need to initialise the
1381          * freshly created NV slot with whatever the correct bit pattern is
1382          * for 0.0  */
1383         if (old_type_details->zero_nv && !new_type_details->zero_nv
1384             && !isGV_with_GP(sv))
1385             SvNV_set(sv, 0);
1386 #endif
1387
1388         if (new_type == SVt_PVIO)
1389             IoPAGE_LEN(sv) = 60;
1390         if (old_type < SVt_PV) {
1391             /* referant will be NULL unless the old type was SVt_IV emulating
1392                SVt_RV */
1393             sv->sv_u.svu_rv = referant;
1394         }
1395         break;
1396     default:
1397         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1398                    (unsigned long)new_type);
1399     }
1400
1401     if (old_type_details->arena) {
1402         /* If there was an old body, then we need to free it.
1403            Note that there is an assumption that all bodies of types that
1404            can be upgraded came from arenas. Only the more complex non-
1405            upgradable types are allowed to be directly malloc()ed.  */
1406 #ifdef PURIFY
1407         my_safefree(old_body);
1408 #else
1409         del_body((void*)((char*)old_body + old_type_details->offset),
1410                  &PL_body_roots[old_type]);
1411 #endif
1412     }
1413 }
1414
1415 /*
1416 =for apidoc sv_backoff
1417
1418 Remove any string offset. You should normally use the C<SvOOK_off> macro
1419 wrapper instead.
1420
1421 =cut
1422 */
1423
1424 int
1425 Perl_sv_backoff(pTHX_ register SV *const sv)
1426 {
1427     STRLEN delta;
1428     const char * const s = SvPVX_const(sv);
1429
1430     PERL_ARGS_ASSERT_SV_BACKOFF;
1431     PERL_UNUSED_CONTEXT;
1432
1433     assert(SvOOK(sv));
1434     assert(SvTYPE(sv) != SVt_PVHV);
1435     assert(SvTYPE(sv) != SVt_PVAV);
1436
1437     SvOOK_offset(sv, delta);
1438     
1439     SvLEN_set(sv, SvLEN(sv) + delta);
1440     SvPV_set(sv, SvPVX(sv) - delta);
1441     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1442     SvFLAGS(sv) &= ~SVf_OOK;
1443     return 0;
1444 }
1445
1446 /*
1447 =for apidoc sv_grow
1448
1449 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1450 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1451 Use the C<SvGROW> wrapper instead.
1452
1453 =cut
1454 */
1455
1456 char *
1457 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1458 {
1459     register char *s;
1460
1461     PERL_ARGS_ASSERT_SV_GROW;
1462
1463     if (PL_madskills && newlen >= 0x100000) {
1464         PerlIO_printf(Perl_debug_log,
1465                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1466     }
1467 #ifdef HAS_64K_LIMIT
1468     if (newlen >= 0x10000) {
1469         PerlIO_printf(Perl_debug_log,
1470                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1471         my_exit(1);
1472     }
1473 #endif /* HAS_64K_LIMIT */
1474     if (SvROK(sv))
1475         sv_unref(sv);
1476     if (SvTYPE(sv) < SVt_PV) {
1477         sv_upgrade(sv, SVt_PV);
1478         s = SvPVX_mutable(sv);
1479     }
1480     else if (SvOOK(sv)) {       /* pv is offset? */
1481         sv_backoff(sv);
1482         s = SvPVX_mutable(sv);
1483         if (newlen > SvLEN(sv))
1484             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1485 #ifdef HAS_64K_LIMIT
1486         if (newlen >= 0x10000)
1487             newlen = 0xFFFF;
1488 #endif
1489     }
1490     else
1491         s = SvPVX_mutable(sv);
1492
1493     if (newlen > SvLEN(sv)) {           /* need more room? */
1494 #ifndef Perl_safesysmalloc_size
1495         newlen = PERL_STRLEN_ROUNDUP(newlen);
1496 #endif
1497         if (SvLEN(sv) && s) {
1498             s = (char*)saferealloc(s, newlen);
1499         }
1500         else {
1501             s = (char*)safemalloc(newlen);
1502             if (SvPVX_const(sv) && SvCUR(sv)) {
1503                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1504             }
1505         }
1506         SvPV_set(sv, s);
1507 #ifdef Perl_safesysmalloc_size
1508         /* Do this here, do it once, do it right, and then we will never get
1509            called back into sv_grow() unless there really is some growing
1510            needed.  */
1511         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1512 #else
1513         SvLEN_set(sv, newlen);
1514 #endif
1515     }
1516     return s;
1517 }
1518
1519 /*
1520 =for apidoc sv_setiv
1521
1522 Copies an integer into the given SV, upgrading first if necessary.
1523 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1524
1525 =cut
1526 */
1527
1528 void
1529 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1530 {
1531     dVAR;
1532
1533     PERL_ARGS_ASSERT_SV_SETIV;
1534
1535     SV_CHECK_THINKFIRST_COW_DROP(sv);
1536     switch (SvTYPE(sv)) {
1537     case SVt_NULL:
1538     case SVt_NV:
1539         sv_upgrade(sv, SVt_IV);
1540         break;
1541     case SVt_PV:
1542         sv_upgrade(sv, SVt_PVIV);
1543         break;
1544
1545     case SVt_PVGV:
1546         if (!isGV_with_GP(sv))
1547             break;
1548     case SVt_PVAV:
1549     case SVt_PVHV:
1550     case SVt_PVCV:
1551     case SVt_PVFM:
1552     case SVt_PVIO:
1553         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1554                    OP_DESC(PL_op));
1555     default: NOOP;
1556     }
1557     (void)SvIOK_only(sv);                       /* validate number */
1558     SvIV_set(sv, i);
1559     SvTAINT(sv);
1560 }
1561
1562 /*
1563 =for apidoc sv_setiv_mg
1564
1565 Like C<sv_setiv>, but also handles 'set' magic.
1566
1567 =cut
1568 */
1569
1570 void
1571 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1572 {
1573     PERL_ARGS_ASSERT_SV_SETIV_MG;
1574
1575     sv_setiv(sv,i);
1576     SvSETMAGIC(sv);
1577 }
1578
1579 /*
1580 =for apidoc sv_setuv
1581
1582 Copies an unsigned integer into the given SV, upgrading first if necessary.
1583 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1584
1585 =cut
1586 */
1587
1588 void
1589 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1590 {
1591     PERL_ARGS_ASSERT_SV_SETUV;
1592
1593     /* With these two if statements:
1594        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1595
1596        without
1597        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1598
1599        If you wish to remove them, please benchmark to see what the effect is
1600     */
1601     if (u <= (UV)IV_MAX) {
1602        sv_setiv(sv, (IV)u);
1603        return;
1604     }
1605     sv_setiv(sv, 0);
1606     SvIsUV_on(sv);
1607     SvUV_set(sv, u);
1608 }
1609
1610 /*
1611 =for apidoc sv_setuv_mg
1612
1613 Like C<sv_setuv>, but also handles 'set' magic.
1614
1615 =cut
1616 */
1617
1618 void
1619 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1620 {
1621     PERL_ARGS_ASSERT_SV_SETUV_MG;
1622
1623     sv_setuv(sv,u);
1624     SvSETMAGIC(sv);
1625 }
1626
1627 /*
1628 =for apidoc sv_setnv
1629
1630 Copies a double into the given SV, upgrading first if necessary.
1631 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1632
1633 =cut
1634 */
1635
1636 void
1637 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1638 {
1639     dVAR;
1640
1641     PERL_ARGS_ASSERT_SV_SETNV;
1642
1643     SV_CHECK_THINKFIRST_COW_DROP(sv);
1644     switch (SvTYPE(sv)) {
1645     case SVt_NULL:
1646     case SVt_IV:
1647         sv_upgrade(sv, SVt_NV);
1648         break;
1649     case SVt_PV:
1650     case SVt_PVIV:
1651         sv_upgrade(sv, SVt_PVNV);
1652         break;
1653
1654     case SVt_PVGV:
1655         if (!isGV_with_GP(sv))
1656             break;
1657     case SVt_PVAV:
1658     case SVt_PVHV:
1659     case SVt_PVCV:
1660     case SVt_PVFM:
1661     case SVt_PVIO:
1662         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1663                    OP_NAME(PL_op));
1664     default: NOOP;
1665     }
1666     SvNV_set(sv, num);
1667     (void)SvNOK_only(sv);                       /* validate number */
1668     SvTAINT(sv);
1669 }
1670
1671 /*
1672 =for apidoc sv_setnv_mg
1673
1674 Like C<sv_setnv>, but also handles 'set' magic.
1675
1676 =cut
1677 */
1678
1679 void
1680 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1681 {
1682     PERL_ARGS_ASSERT_SV_SETNV_MG;
1683
1684     sv_setnv(sv,num);
1685     SvSETMAGIC(sv);
1686 }
1687
1688 /* Print an "isn't numeric" warning, using a cleaned-up,
1689  * printable version of the offending string
1690  */
1691
1692 STATIC void
1693 S_not_a_number(pTHX_ SV *const sv)
1694 {
1695      dVAR;
1696      SV *dsv;
1697      char tmpbuf[64];
1698      const char *pv;
1699
1700      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1701
1702      if (DO_UTF8(sv)) {
1703           dsv = newSVpvs_flags("", SVs_TEMP);
1704           pv = sv_uni_display(dsv, sv, 10, 0);
1705      } else {
1706           char *d = tmpbuf;
1707           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1708           /* each *s can expand to 4 chars + "...\0",
1709              i.e. need room for 8 chars */
1710         
1711           const char *s = SvPVX_const(sv);
1712           const char * const end = s + SvCUR(sv);
1713           for ( ; s < end && d < limit; s++ ) {
1714                int ch = *s & 0xFF;
1715                if (ch & 128 && !isPRINT_LC(ch)) {
1716                     *d++ = 'M';
1717                     *d++ = '-';
1718                     ch &= 127;
1719                }
1720                if (ch == '\n') {
1721                     *d++ = '\\';
1722                     *d++ = 'n';
1723                }
1724                else if (ch == '\r') {
1725                     *d++ = '\\';
1726                     *d++ = 'r';
1727                }
1728                else if (ch == '\f') {
1729                     *d++ = '\\';
1730                     *d++ = 'f';
1731                }
1732                else if (ch == '\\') {
1733                     *d++ = '\\';
1734                     *d++ = '\\';
1735                }
1736                else if (ch == '\0') {
1737                     *d++ = '\\';
1738                     *d++ = '0';
1739                }
1740                else if (isPRINT_LC(ch))
1741                     *d++ = ch;
1742                else {
1743                     *d++ = '^';
1744                     *d++ = toCTRL(ch);
1745                }
1746           }
1747           if (s < end) {
1748                *d++ = '.';
1749                *d++ = '.';
1750                *d++ = '.';
1751           }
1752           *d = '\0';
1753           pv = tmpbuf;
1754     }
1755
1756     if (PL_op)
1757         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1758                     "Argument \"%s\" isn't numeric in %s", pv,
1759                     OP_DESC(PL_op));
1760     else
1761         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1762                     "Argument \"%s\" isn't numeric", pv);
1763 }
1764
1765 /*
1766 =for apidoc looks_like_number
1767
1768 Test if the content of an SV looks like a number (or is a number).
1769 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1770 non-numeric warning), even if your atof() doesn't grok them.
1771
1772 =cut
1773 */
1774
1775 I32
1776 Perl_looks_like_number(pTHX_ SV *const sv)
1777 {
1778     register const char *sbegin;
1779     STRLEN len;
1780
1781     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1782
1783     if (SvPOK(sv)) {
1784         sbegin = SvPVX_const(sv);
1785         len = SvCUR(sv);
1786     }
1787     else if (SvPOKp(sv))
1788         sbegin = SvPV_const(sv, len);
1789     else
1790         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1791     return grok_number(sbegin, len, NULL);
1792 }
1793
1794 STATIC bool
1795 S_glob_2number(pTHX_ GV * const gv)
1796 {
1797     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1798     SV *const buffer = sv_newmortal();
1799
1800     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1801
1802     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1803        is on.  */
1804     SvFAKE_off(gv);
1805     gv_efullname3(buffer, gv, "*");
1806     SvFLAGS(gv) |= wasfake;
1807
1808     /* We know that all GVs stringify to something that is not-a-number,
1809         so no need to test that.  */
1810     if (ckWARN(WARN_NUMERIC))
1811         not_a_number(buffer);
1812     /* We just want something true to return, so that S_sv_2iuv_common
1813         can tail call us and return true.  */
1814     return TRUE;
1815 }
1816
1817 STATIC char *
1818 S_glob_2pv(pTHX_ GV * const gv, STRLEN * const len)
1819 {
1820     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1821     SV *const buffer = sv_newmortal();
1822
1823     PERL_ARGS_ASSERT_GLOB_2PV;
1824
1825     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1826        is on.  */
1827     SvFAKE_off(gv);
1828     gv_efullname3(buffer, gv, "*");
1829     SvFLAGS(gv) |= wasfake;
1830
1831     assert(SvPOK(buffer));
1832     if (len) {
1833         *len = SvCUR(buffer);
1834     }
1835     return SvPVX(buffer);
1836 }
1837
1838 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1839    until proven guilty, assume that things are not that bad... */
1840
1841 /*
1842    NV_PRESERVES_UV:
1843
1844    As 64 bit platforms often have an NV that doesn't preserve all bits of
1845    an IV (an assumption perl has been based on to date) it becomes necessary
1846    to remove the assumption that the NV always carries enough precision to
1847    recreate the IV whenever needed, and that the NV is the canonical form.
1848    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1849    precision as a side effect of conversion (which would lead to insanity
1850    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1851    1) to distinguish between IV/UV/NV slots that have cached a valid
1852       conversion where precision was lost and IV/UV/NV slots that have a
1853       valid conversion which has lost no precision
1854    2) to ensure that if a numeric conversion to one form is requested that
1855       would lose precision, the precise conversion (or differently
1856       imprecise conversion) is also performed and cached, to prevent
1857       requests for different numeric formats on the same SV causing
1858       lossy conversion chains. (lossless conversion chains are perfectly
1859       acceptable (still))
1860
1861
1862    flags are used:
1863    SvIOKp is true if the IV slot contains a valid value
1864    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1865    SvNOKp is true if the NV slot contains a valid value
1866    SvNOK  is true only if the NV value is accurate
1867
1868    so
1869    while converting from PV to NV, check to see if converting that NV to an
1870    IV(or UV) would lose accuracy over a direct conversion from PV to
1871    IV(or UV). If it would, cache both conversions, return NV, but mark
1872    SV as IOK NOKp (ie not NOK).
1873
1874    While converting from PV to IV, check to see if converting that IV to an
1875    NV would lose accuracy over a direct conversion from PV to NV. If it
1876    would, cache both conversions, flag similarly.
1877
1878    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1879    correctly because if IV & NV were set NV *always* overruled.
1880    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1881    changes - now IV and NV together means that the two are interchangeable:
1882    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1883
1884    The benefit of this is that operations such as pp_add know that if
1885    SvIOK is true for both left and right operands, then integer addition
1886    can be used instead of floating point (for cases where the result won't
1887    overflow). Before, floating point was always used, which could lead to
1888    loss of precision compared with integer addition.
1889
1890    * making IV and NV equal status should make maths accurate on 64 bit
1891      platforms
1892    * may speed up maths somewhat if pp_add and friends start to use
1893      integers when possible instead of fp. (Hopefully the overhead in
1894      looking for SvIOK and checking for overflow will not outweigh the
1895      fp to integer speedup)
1896    * will slow down integer operations (callers of SvIV) on "inaccurate"
1897      values, as the change from SvIOK to SvIOKp will cause a call into
1898      sv_2iv each time rather than a macro access direct to the IV slot
1899    * should speed up number->string conversion on integers as IV is
1900      favoured when IV and NV are equally accurate
1901
1902    ####################################################################
1903    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1904    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1905    On the other hand, SvUOK is true iff UV.
1906    ####################################################################
1907
1908    Your mileage will vary depending your CPU's relative fp to integer
1909    performance ratio.
1910 */
1911
1912 #ifndef NV_PRESERVES_UV
1913 #  define IS_NUMBER_UNDERFLOW_IV 1
1914 #  define IS_NUMBER_UNDERFLOW_UV 2
1915 #  define IS_NUMBER_IV_AND_UV    2
1916 #  define IS_NUMBER_OVERFLOW_IV  4
1917 #  define IS_NUMBER_OVERFLOW_UV  5
1918
1919 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1920
1921 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1922 STATIC int
1923 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1924 #  ifdef DEBUGGING
1925                        , I32 numtype
1926 #  endif
1927                        )
1928 {
1929     dVAR;
1930
1931     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1932
1933     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));
1934     if (SvNVX(sv) < (NV)IV_MIN) {
1935         (void)SvIOKp_on(sv);
1936         (void)SvNOK_on(sv);
1937         SvIV_set(sv, IV_MIN);
1938         return IS_NUMBER_UNDERFLOW_IV;
1939     }
1940     if (SvNVX(sv) > (NV)UV_MAX) {
1941         (void)SvIOKp_on(sv);
1942         (void)SvNOK_on(sv);
1943         SvIsUV_on(sv);
1944         SvUV_set(sv, UV_MAX);
1945         return IS_NUMBER_OVERFLOW_UV;
1946     }
1947     (void)SvIOKp_on(sv);
1948     (void)SvNOK_on(sv);
1949     /* Can't use strtol etc to convert this string.  (See truth table in
1950        sv_2iv  */
1951     if (SvNVX(sv) <= (UV)IV_MAX) {
1952         SvIV_set(sv, I_V(SvNVX(sv)));
1953         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1954             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1955         } else {
1956             /* Integer is imprecise. NOK, IOKp */
1957         }
1958         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1959     }
1960     SvIsUV_on(sv);
1961     SvUV_set(sv, U_V(SvNVX(sv)));
1962     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1963         if (SvUVX(sv) == UV_MAX) {
1964             /* As we know that NVs don't preserve UVs, UV_MAX cannot
1965                possibly be preserved by NV. Hence, it must be overflow.
1966                NOK, IOKp */
1967             return IS_NUMBER_OVERFLOW_UV;
1968         }
1969         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1970     } else {
1971         /* Integer is imprecise. NOK, IOKp */
1972     }
1973     return IS_NUMBER_OVERFLOW_IV;
1974 }
1975 #endif /* !NV_PRESERVES_UV*/
1976
1977 STATIC bool
1978 S_sv_2iuv_common(pTHX_ SV *const sv)
1979 {
1980     dVAR;
1981
1982     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
1983
1984     if (SvNOKp(sv)) {
1985         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
1986          * without also getting a cached IV/UV from it at the same time
1987          * (ie PV->NV conversion should detect loss of accuracy and cache
1988          * IV or UV at same time to avoid this. */
1989         /* IV-over-UV optimisation - choose to cache IV if possible */
1990
1991         if (SvTYPE(sv) == SVt_NV)
1992             sv_upgrade(sv, SVt_PVNV);
1993
1994         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
1995         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
1996            certainly cast into the IV range at IV_MAX, whereas the correct
1997            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
1998            cases go to UV */
1999 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2000         if (Perl_isnan(SvNVX(sv))) {
2001             SvUV_set(sv, 0);
2002             SvIsUV_on(sv);
2003             return FALSE;
2004         }
2005 #endif
2006         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2007             SvIV_set(sv, I_V(SvNVX(sv)));
2008             if (SvNVX(sv) == (NV) SvIVX(sv)
2009 #ifndef NV_PRESERVES_UV
2010                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2011                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2012                 /* Don't flag it as "accurately an integer" if the number
2013                    came from a (by definition imprecise) NV operation, and
2014                    we're outside the range of NV integer precision */
2015 #endif
2016                 ) {
2017                 if (SvNOK(sv))
2018                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2019                 else {
2020                     /* scalar has trailing garbage, eg "42a" */
2021                 }
2022                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2023                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2024                                       PTR2UV(sv),
2025                                       SvNVX(sv),
2026                                       SvIVX(sv)));
2027
2028             } else {
2029                 /* IV not precise.  No need to convert from PV, as NV
2030                    conversion would already have cached IV if it detected
2031                    that PV->IV would be better than PV->NV->IV
2032                    flags already correct - don't set public IOK.  */
2033                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2034                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2035                                       PTR2UV(sv),
2036                                       SvNVX(sv),
2037                                       SvIVX(sv)));
2038             }
2039             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2040                but the cast (NV)IV_MIN rounds to a the value less (more
2041                negative) than IV_MIN which happens to be equal to SvNVX ??
2042                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2043                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2044                (NV)UVX == NVX are both true, but the values differ. :-(
2045                Hopefully for 2s complement IV_MIN is something like
2046                0x8000000000000000 which will be exact. NWC */
2047         }
2048         else {
2049             SvUV_set(sv, U_V(SvNVX(sv)));
2050             if (
2051                 (SvNVX(sv) == (NV) SvUVX(sv))
2052 #ifndef  NV_PRESERVES_UV
2053                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2054                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2055                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2056                 /* Don't flag it as "accurately an integer" if the number
2057                    came from a (by definition imprecise) NV operation, and
2058                    we're outside the range of NV integer precision */
2059 #endif
2060                 && SvNOK(sv)
2061                 )
2062                 SvIOK_on(sv);
2063             SvIsUV_on(sv);
2064             DEBUG_c(PerlIO_printf(Perl_debug_log,
2065                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2066                                   PTR2UV(sv),
2067                                   SvUVX(sv),
2068                                   SvUVX(sv)));
2069         }
2070     }
2071     else if (SvPOKp(sv) && SvLEN(sv)) {
2072         UV value;
2073         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2074         /* We want to avoid a possible problem when we cache an IV/ a UV which
2075            may be later translated to an NV, and the resulting NV is not
2076            the same as the direct translation of the initial string
2077            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2078            be careful to ensure that the value with the .456 is around if the
2079            NV value is requested in the future).
2080         
2081            This means that if we cache such an IV/a UV, we need to cache the
2082            NV as well.  Moreover, we trade speed for space, and do not
2083            cache the NV if we are sure it's not needed.
2084          */
2085
2086         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2087         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2088              == IS_NUMBER_IN_UV) {
2089             /* It's definitely an integer, only upgrade to PVIV */
2090             if (SvTYPE(sv) < SVt_PVIV)
2091                 sv_upgrade(sv, SVt_PVIV);
2092             (void)SvIOK_on(sv);
2093         } else if (SvTYPE(sv) < SVt_PVNV)
2094             sv_upgrade(sv, SVt_PVNV);
2095
2096         /* If NVs preserve UVs then we only use the UV value if we know that
2097            we aren't going to call atof() below. If NVs don't preserve UVs
2098            then the value returned may have more precision than atof() will
2099            return, even though value isn't perfectly accurate.  */
2100         if ((numtype & (IS_NUMBER_IN_UV
2101 #ifdef NV_PRESERVES_UV
2102                         | IS_NUMBER_NOT_INT
2103 #endif
2104             )) == IS_NUMBER_IN_UV) {
2105             /* This won't turn off the public IOK flag if it was set above  */
2106             (void)SvIOKp_on(sv);
2107
2108             if (!(numtype & IS_NUMBER_NEG)) {
2109                 /* positive */;
2110                 if (value <= (UV)IV_MAX) {
2111                     SvIV_set(sv, (IV)value);
2112                 } else {
2113                     /* it didn't overflow, and it was positive. */
2114                     SvUV_set(sv, value);
2115                     SvIsUV_on(sv);
2116                 }
2117             } else {
2118                 /* 2s complement assumption  */
2119                 if (value <= (UV)IV_MIN) {
2120                     SvIV_set(sv, -(IV)value);
2121                 } else {
2122                     /* Too negative for an IV.  This is a double upgrade, but
2123                        I'm assuming it will be rare.  */
2124                     if (SvTYPE(sv) < SVt_PVNV)
2125                         sv_upgrade(sv, SVt_PVNV);
2126                     SvNOK_on(sv);
2127                     SvIOK_off(sv);
2128                     SvIOKp_on(sv);
2129                     SvNV_set(sv, -(NV)value);
2130                     SvIV_set(sv, IV_MIN);
2131                 }
2132             }
2133         }
2134         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2135            will be in the previous block to set the IV slot, and the next
2136            block to set the NV slot.  So no else here.  */
2137         
2138         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2139             != IS_NUMBER_IN_UV) {
2140             /* It wasn't an (integer that doesn't overflow the UV). */
2141             SvNV_set(sv, Atof(SvPVX_const(sv)));
2142
2143             if (! numtype && ckWARN(WARN_NUMERIC))
2144                 not_a_number(sv);
2145
2146 #if defined(USE_LONG_DOUBLE)
2147             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2148                                   PTR2UV(sv), SvNVX(sv)));
2149 #else
2150             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2151                                   PTR2UV(sv), SvNVX(sv)));
2152 #endif
2153
2154 #ifdef NV_PRESERVES_UV
2155             (void)SvIOKp_on(sv);
2156             (void)SvNOK_on(sv);
2157             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2158                 SvIV_set(sv, I_V(SvNVX(sv)));
2159                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2160                     SvIOK_on(sv);
2161                 } else {
2162                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2163                 }
2164                 /* UV will not work better than IV */
2165             } else {
2166                 if (SvNVX(sv) > (NV)UV_MAX) {
2167                     SvIsUV_on(sv);
2168                     /* Integer is inaccurate. NOK, IOKp, is UV */
2169                     SvUV_set(sv, UV_MAX);
2170                 } else {
2171                     SvUV_set(sv, U_V(SvNVX(sv)));
2172                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2173                        NV preservse UV so can do correct comparison.  */
2174                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2175                         SvIOK_on(sv);
2176                     } else {
2177                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2178                     }
2179                 }
2180                 SvIsUV_on(sv);
2181             }
2182 #else /* NV_PRESERVES_UV */
2183             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2184                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2185                 /* The IV/UV slot will have been set from value returned by
2186                    grok_number above.  The NV slot has just been set using
2187                    Atof.  */
2188                 SvNOK_on(sv);
2189                 assert (SvIOKp(sv));
2190             } else {
2191                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2192                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2193                     /* Small enough to preserve all bits. */
2194                     (void)SvIOKp_on(sv);
2195                     SvNOK_on(sv);
2196                     SvIV_set(sv, I_V(SvNVX(sv)));
2197                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2198                         SvIOK_on(sv);
2199                     /* Assumption: first non-preserved integer is < IV_MAX,
2200                        this NV is in the preserved range, therefore: */
2201                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2202                           < (UV)IV_MAX)) {
2203                         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);
2204                     }
2205                 } else {
2206                     /* IN_UV NOT_INT
2207                          0      0       already failed to read UV.
2208                          0      1       already failed to read UV.
2209                          1      0       you won't get here in this case. IV/UV
2210                                         slot set, public IOK, Atof() unneeded.
2211                          1      1       already read UV.
2212                        so there's no point in sv_2iuv_non_preserve() attempting
2213                        to use atol, strtol, strtoul etc.  */
2214 #  ifdef DEBUGGING
2215                     sv_2iuv_non_preserve (sv, numtype);
2216 #  else
2217                     sv_2iuv_non_preserve (sv);
2218 #  endif
2219                 }
2220             }
2221 #endif /* NV_PRESERVES_UV */
2222         /* It might be more code efficient to go through the entire logic above
2223            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2224            gets complex and potentially buggy, so more programmer efficient
2225            to do it this way, by turning off the public flags:  */
2226         if (!numtype)
2227             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2228         }
2229     }
2230     else  {
2231         if (isGV_with_GP(sv))
2232             return glob_2number((GV *)sv);
2233
2234         if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2235             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2236                 report_uninit(sv);
2237         }
2238         if (SvTYPE(sv) < SVt_IV)
2239             /* Typically the caller expects that sv_any is not NULL now.  */
2240             sv_upgrade(sv, SVt_IV);
2241         /* Return 0 from the caller.  */
2242         return TRUE;
2243     }
2244     return FALSE;
2245 }
2246
2247 /*
2248 =for apidoc sv_2iv_flags
2249
2250 Return the integer value of an SV, doing any necessary string
2251 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2252 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2253
2254 =cut
2255 */
2256
2257 IV
2258 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2259 {
2260     dVAR;
2261     if (!sv)
2262         return 0;
2263     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2264         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2265            cache IVs just in case. In practice it seems that they never
2266            actually anywhere accessible by user Perl code, let alone get used
2267            in anything other than a string context.  */
2268         if (flags & SV_GMAGIC)
2269             mg_get(sv);
2270         if (SvIOKp(sv))
2271             return SvIVX(sv);
2272         if (SvNOKp(sv)) {
2273             return I_V(SvNVX(sv));
2274         }
2275         if (SvPOKp(sv) && SvLEN(sv)) {
2276             UV value;
2277             const int numtype
2278                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2279
2280             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2281                 == IS_NUMBER_IN_UV) {
2282                 /* It's definitely an integer */
2283                 if (numtype & IS_NUMBER_NEG) {
2284                     if (value < (UV)IV_MIN)
2285                         return -(IV)value;
2286                 } else {
2287                     if (value < (UV)IV_MAX)
2288                         return (IV)value;
2289                 }
2290             }
2291             if (!numtype) {
2292                 if (ckWARN(WARN_NUMERIC))
2293                     not_a_number(sv);
2294             }
2295             return I_V(Atof(SvPVX_const(sv)));
2296         }
2297         if (SvROK(sv)) {
2298             goto return_rok;
2299         }
2300         assert(SvTYPE(sv) >= SVt_PVMG);
2301         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2302     } else if (SvTHINKFIRST(sv)) {
2303         if (SvROK(sv)) {
2304         return_rok:
2305             if (SvAMAGIC(sv)) {
2306                 SV * const tmpstr=AMG_CALLun(sv,numer);
2307                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2308                     return SvIV(tmpstr);
2309                 }
2310             }
2311             return PTR2IV(SvRV(sv));
2312         }
2313         if (SvIsCOW(sv)) {
2314             sv_force_normal_flags(sv, 0);
2315         }
2316         if (SvREADONLY(sv) && !SvOK(sv)) {
2317             if (ckWARN(WARN_UNINITIALIZED))
2318                 report_uninit(sv);
2319             return 0;
2320         }
2321     }
2322     if (!SvIOKp(sv)) {
2323         if (S_sv_2iuv_common(aTHX_ sv))
2324             return 0;
2325     }
2326     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2327         PTR2UV(sv),SvIVX(sv)));
2328     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2329 }
2330
2331 /*
2332 =for apidoc sv_2uv_flags
2333
2334 Return the unsigned integer value of an SV, doing any necessary string
2335 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2336 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2337
2338 =cut
2339 */
2340
2341 UV
2342 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2343 {
2344     dVAR;
2345     if (!sv)
2346         return 0;
2347     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2348         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2349            cache IVs just in case.  */
2350         if (flags & SV_GMAGIC)
2351             mg_get(sv);
2352         if (SvIOKp(sv))
2353             return SvUVX(sv);
2354         if (SvNOKp(sv))
2355             return U_V(SvNVX(sv));
2356         if (SvPOKp(sv) && SvLEN(sv)) {
2357             UV value;
2358             const int numtype
2359                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2360
2361             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2362                 == IS_NUMBER_IN_UV) {
2363                 /* It's definitely an integer */
2364                 if (!(numtype & IS_NUMBER_NEG))
2365                     return value;
2366             }
2367             if (!numtype) {
2368                 if (ckWARN(WARN_NUMERIC))
2369                     not_a_number(sv);
2370             }
2371             return U_V(Atof(SvPVX_const(sv)));
2372         }
2373         if (SvROK(sv)) {
2374             goto return_rok;
2375         }
2376         assert(SvTYPE(sv) >= SVt_PVMG);
2377         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2378     } else if (SvTHINKFIRST(sv)) {
2379         if (SvROK(sv)) {
2380         return_rok:
2381             if (SvAMAGIC(sv)) {
2382                 SV *const tmpstr = AMG_CALLun(sv,numer);
2383                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2384                     return SvUV(tmpstr);
2385                 }
2386             }
2387             return PTR2UV(SvRV(sv));
2388         }
2389         if (SvIsCOW(sv)) {
2390             sv_force_normal_flags(sv, 0);
2391         }
2392         if (SvREADONLY(sv) && !SvOK(sv)) {
2393             if (ckWARN(WARN_UNINITIALIZED))
2394                 report_uninit(sv);
2395             return 0;
2396         }
2397     }
2398     if (!SvIOKp(sv)) {
2399         if (S_sv_2iuv_common(aTHX_ sv))
2400             return 0;
2401     }
2402
2403     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2404                           PTR2UV(sv),SvUVX(sv)));
2405     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2406 }
2407
2408 /*
2409 =for apidoc sv_2nv
2410
2411 Return the num value of an SV, doing any necessary string or integer
2412 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
2413 macros.
2414
2415 =cut
2416 */
2417
2418 NV
2419 Perl_sv_2nv(pTHX_ register SV *const sv)
2420 {
2421     dVAR;
2422     if (!sv)
2423         return 0.0;
2424     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2425         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2426            cache IVs just in case.  */
2427         mg_get(sv);
2428         if (SvNOKp(sv))
2429             return SvNVX(sv);
2430         if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
2431             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2432                 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
2433                 not_a_number(sv);
2434             return Atof(SvPVX_const(sv));
2435         }
2436         if (SvIOKp(sv)) {
2437             if (SvIsUV(sv))
2438                 return (NV)SvUVX(sv);
2439             else
2440                 return (NV)SvIVX(sv);
2441         }
2442         if (SvROK(sv)) {
2443             goto return_rok;
2444         }
2445         assert(SvTYPE(sv) >= SVt_PVMG);
2446         /* This falls through to the report_uninit near the end of the
2447            function. */
2448     } else if (SvTHINKFIRST(sv)) {
2449         if (SvROK(sv)) {
2450         return_rok:
2451             if (SvAMAGIC(sv)) {
2452                 SV *const tmpstr = AMG_CALLun(sv,numer);
2453                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2454                     return SvNV(tmpstr);
2455                 }
2456             }
2457             return PTR2NV(SvRV(sv));
2458         }
2459         if (SvIsCOW(sv)) {
2460             sv_force_normal_flags(sv, 0);
2461         }
2462         if (SvREADONLY(sv) && !SvOK(sv)) {
2463             if (ckWARN(WARN_UNINITIALIZED))
2464                 report_uninit(sv);
2465             return 0.0;
2466         }
2467     }
2468     if (SvTYPE(sv) < SVt_NV) {
2469         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2470         sv_upgrade(sv, SVt_NV);
2471 #ifdef USE_LONG_DOUBLE
2472         DEBUG_c({
2473             STORE_NUMERIC_LOCAL_SET_STANDARD();
2474             PerlIO_printf(Perl_debug_log,
2475                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2476                           PTR2UV(sv), SvNVX(sv));
2477             RESTORE_NUMERIC_LOCAL();
2478         });
2479 #else
2480         DEBUG_c({
2481             STORE_NUMERIC_LOCAL_SET_STANDARD();
2482             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2483                           PTR2UV(sv), SvNVX(sv));
2484             RESTORE_NUMERIC_LOCAL();
2485         });
2486 #endif
2487     }
2488     else if (SvTYPE(sv) < SVt_PVNV)
2489         sv_upgrade(sv, SVt_PVNV);
2490     if (SvNOKp(sv)) {
2491         return SvNVX(sv);
2492     }
2493     if (SvIOKp(sv)) {
2494         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2495 #ifdef NV_PRESERVES_UV
2496         if (SvIOK(sv))
2497             SvNOK_on(sv);
2498         else
2499             SvNOKp_on(sv);
2500 #else
2501         /* Only set the public NV OK flag if this NV preserves the IV  */
2502         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2503         if (SvIOK(sv) &&
2504             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2505                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2506             SvNOK_on(sv);
2507         else
2508             SvNOKp_on(sv);
2509 #endif
2510     }
2511     else if (SvPOKp(sv) && SvLEN(sv)) {
2512         UV value;
2513         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2514         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2515             not_a_number(sv);
2516 #ifdef NV_PRESERVES_UV
2517         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2518             == IS_NUMBER_IN_UV) {
2519             /* It's definitely an integer */
2520             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2521         } else
2522             SvNV_set(sv, Atof(SvPVX_const(sv)));
2523         if (numtype)
2524             SvNOK_on(sv);
2525         else
2526             SvNOKp_on(sv);
2527 #else
2528         SvNV_set(sv, Atof(SvPVX_const(sv)));
2529         /* Only set the public NV OK flag if this NV preserves the value in
2530            the PV at least as well as an IV/UV would.
2531            Not sure how to do this 100% reliably. */
2532         /* if that shift count is out of range then Configure's test is
2533            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2534            UV_BITS */
2535         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2536             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2537             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2538         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2539             /* Can't use strtol etc to convert this string, so don't try.
2540                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2541             SvNOK_on(sv);
2542         } else {
2543             /* value has been set.  It may not be precise.  */
2544             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2545                 /* 2s complement assumption for (UV)IV_MIN  */
2546                 SvNOK_on(sv); /* Integer is too negative.  */
2547             } else {
2548                 SvNOKp_on(sv);
2549                 SvIOKp_on(sv);
2550
2551                 if (numtype & IS_NUMBER_NEG) {
2552                     SvIV_set(sv, -(IV)value);
2553                 } else if (value <= (UV)IV_MAX) {
2554                     SvIV_set(sv, (IV)value);
2555                 } else {
2556                     SvUV_set(sv, value);
2557                     SvIsUV_on(sv);
2558                 }
2559
2560                 if (numtype & IS_NUMBER_NOT_INT) {
2561                     /* I believe that even if the original PV had decimals,
2562                        they are lost beyond the limit of the FP precision.
2563                        However, neither is canonical, so both only get p
2564                        flags.  NWC, 2000/11/25 */
2565                     /* Both already have p flags, so do nothing */
2566                 } else {
2567                     const NV nv = SvNVX(sv);
2568                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2569                         if (SvIVX(sv) == I_V(nv)) {
2570                             SvNOK_on(sv);
2571                         } else {
2572                             /* It had no "." so it must be integer.  */
2573                         }
2574                         SvIOK_on(sv);
2575                     } else {
2576                         /* between IV_MAX and NV(UV_MAX).
2577                            Could be slightly > UV_MAX */
2578
2579                         if (numtype & IS_NUMBER_NOT_INT) {
2580                             /* UV and NV both imprecise.  */
2581                         } else {
2582                             const UV nv_as_uv = U_V(nv);
2583
2584                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2585                                 SvNOK_on(sv);
2586                             }
2587                             SvIOK_on(sv);
2588                         }
2589                     }
2590                 }
2591             }
2592         }
2593         /* It might be more code efficient to go through the entire logic above
2594            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2595            gets complex and potentially buggy, so more programmer efficient
2596            to do it this way, by turning off the public flags:  */
2597         if (!numtype)
2598             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2599 #endif /* NV_PRESERVES_UV */
2600     }
2601     else  {
2602         if (isGV_with_GP(sv)) {
2603             glob_2number((GV *)sv);
2604             return 0.0;
2605         }
2606
2607         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2608             report_uninit(sv);
2609         assert (SvTYPE(sv) >= SVt_NV);
2610         /* Typically the caller expects that sv_any is not NULL now.  */
2611         /* XXX Ilya implies that this is a bug in callers that assume this
2612            and ideally should be fixed.  */
2613         return 0.0;
2614     }
2615 #if defined(USE_LONG_DOUBLE)
2616     DEBUG_c({
2617         STORE_NUMERIC_LOCAL_SET_STANDARD();
2618         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2619                       PTR2UV(sv), SvNVX(sv));
2620         RESTORE_NUMERIC_LOCAL();
2621     });
2622 #else
2623     DEBUG_c({
2624         STORE_NUMERIC_LOCAL_SET_STANDARD();
2625         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2626                       PTR2UV(sv), SvNVX(sv));
2627         RESTORE_NUMERIC_LOCAL();
2628     });
2629 #endif
2630     return SvNVX(sv);
2631 }
2632
2633 /*
2634 =for apidoc sv_2num
2635
2636 Return an SV with the numeric value of the source SV, doing any necessary
2637 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2638 access this function.
2639
2640 =cut
2641 */
2642
2643 SV *
2644 Perl_sv_2num(pTHX_ register SV *const sv)
2645 {
2646     PERL_ARGS_ASSERT_SV_2NUM;
2647
2648     if (!SvROK(sv))
2649         return sv;
2650     if (SvAMAGIC(sv)) {
2651         SV * const tmpsv = AMG_CALLun(sv,numer);
2652         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2653             return sv_2num(tmpsv);
2654     }
2655     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2656 }
2657
2658 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2659  * UV as a string towards the end of buf, and return pointers to start and
2660  * end of it.
2661  *
2662  * We assume that buf is at least TYPE_CHARS(UV) long.
2663  */
2664
2665 static char *
2666 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2667 {
2668     char *ptr = buf + TYPE_CHARS(UV);
2669     char * const ebuf = ptr;
2670     int sign;
2671
2672     PERL_ARGS_ASSERT_UIV_2BUF;
2673
2674     if (is_uv)
2675         sign = 0;
2676     else if (iv >= 0) {
2677         uv = iv;
2678         sign = 0;
2679     } else {
2680         uv = -iv;
2681         sign = 1;
2682     }
2683     do {
2684         *--ptr = '0' + (char)(uv % 10);
2685     } while (uv /= 10);
2686     if (sign)
2687         *--ptr = '-';
2688     *peob = ebuf;
2689     return ptr;
2690 }
2691
2692 /*
2693 =for apidoc sv_2pv_flags
2694
2695 Returns a pointer to the string value of an SV, and sets *lp to its length.
2696 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2697 if necessary.
2698 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2699 usually end up here too.
2700
2701 =cut
2702 */
2703
2704 char *
2705 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2706 {
2707     dVAR;
2708     register char *s;
2709
2710     if (!sv) {
2711         if (lp)
2712             *lp = 0;
2713         return (char *)"";
2714     }
2715     if (SvGMAGICAL(sv)) {
2716         if (flags & SV_GMAGIC)
2717             mg_get(sv);
2718         if (SvPOKp(sv)) {
2719             if (lp)
2720                 *lp = SvCUR(sv);
2721             if (flags & SV_MUTABLE_RETURN)
2722                 return SvPVX_mutable(sv);
2723             if (flags & SV_CONST_RETURN)
2724                 return (char *)SvPVX_const(sv);
2725             return SvPVX(sv);
2726         }
2727         if (SvIOKp(sv) || SvNOKp(sv)) {
2728             char tbuf[64];  /* Must fit sprintf/Gconvert of longest IV/NV */
2729             STRLEN len;
2730
2731             if (SvIOKp(sv)) {
2732                 len = SvIsUV(sv)
2733                     ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2734                     : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
2735             } else {
2736                 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2737                 len = strlen(tbuf);
2738             }
2739             assert(!SvROK(sv));
2740             {
2741                 dVAR;
2742
2743 #ifdef FIXNEGATIVEZERO
2744                 if (len == 2 && tbuf[0] == '-' && tbuf[1] == '0') {
2745                     tbuf[0] = '0';
2746                     tbuf[1] = 0;
2747                     len = 1;
2748                 }
2749 #endif
2750                 SvUPGRADE(sv, SVt_PV);
2751                 if (lp)
2752                     *lp = len;
2753                 s = SvGROW_mutable(sv, len + 1);
2754                 SvCUR_set(sv, len);
2755                 SvPOKp_on(sv);
2756                 return (char*)memcpy(s, tbuf, len + 1);
2757             }
2758         }
2759         if (SvROK(sv)) {
2760             goto return_rok;
2761         }
2762         assert(SvTYPE(sv) >= SVt_PVMG);
2763         /* This falls through to the report_uninit near the end of the
2764            function. */
2765     } else if (SvTHINKFIRST(sv)) {
2766         if (SvROK(sv)) {
2767         return_rok:
2768             if (SvAMAGIC(sv)) {
2769                 SV *const tmpstr = AMG_CALLun(sv,string);
2770                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2771                     /* Unwrap this:  */
2772                     /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2773                      */
2774
2775                     char *pv;
2776                     if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2777                         if (flags & SV_CONST_RETURN) {
2778                             pv = (char *) SvPVX_const(tmpstr);
2779                         } else {
2780                             pv = (flags & SV_MUTABLE_RETURN)
2781                                 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2782                         }
2783                         if (lp)
2784                             *lp = SvCUR(tmpstr);
2785                     } else {
2786                         pv = sv_2pv_flags(tmpstr, lp, flags);
2787                     }
2788                     if (SvUTF8(tmpstr))
2789                         SvUTF8_on(sv);
2790                     else
2791                         SvUTF8_off(sv);
2792                     return pv;
2793                 }
2794             }
2795             {
2796                 STRLEN len;
2797                 char *retval;
2798                 char *buffer;
2799                 const SV *const referent = (SV*)SvRV(sv);
2800
2801                 if (!referent) {
2802                     len = 7;
2803                     retval = buffer = savepvn("NULLREF", len);
2804                 } else if (SvTYPE(referent) == SVt_REGEXP) {
2805                     const REGEXP * const re = (REGEXP *)referent;
2806                     I32 seen_evals = 0;
2807
2808                     assert(re);
2809                         
2810                     /* If the regex is UTF-8 we want the containing scalar to
2811                        have an UTF-8 flag too */
2812                     if (RX_UTF8(re))
2813                         SvUTF8_on(sv);
2814                     else
2815                         SvUTF8_off(sv); 
2816
2817                     if ((seen_evals = RX_SEEN_EVALS(re)))
2818                         PL_reginterp_cnt += seen_evals;
2819
2820                     if (lp)
2821                         *lp = RX_WRAPLEN(re);
2822  
2823                     return RX_WRAPPED(re);
2824                 } else {
2825                     const char *const typestr = sv_reftype(referent, 0);
2826                     const STRLEN typelen = strlen(typestr);
2827                     UV addr = PTR2UV(referent);
2828                     const char *stashname = NULL;
2829                     STRLEN stashnamelen = 0; /* hush, gcc */
2830                     const char *buffer_end;
2831
2832                     if (SvOBJECT(referent)) {
2833                         const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2834
2835                         if (name) {
2836                             stashname = HEK_KEY(name);
2837                             stashnamelen = HEK_LEN(name);
2838
2839                             if (HEK_UTF8(name)) {
2840                                 SvUTF8_on(sv);
2841                             } else {
2842                                 SvUTF8_off(sv);
2843                             }
2844                         } else {
2845                             stashname = "__ANON__";
2846                             stashnamelen = 8;
2847                         }
2848                         len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2849                             + 2 * sizeof(UV) + 2 /* )\0 */;
2850                     } else {
2851                         len = typelen + 3 /* (0x */
2852                             + 2 * sizeof(UV) + 2 /* )\0 */;
2853                     }
2854
2855                     Newx(buffer, len, char);
2856                     buffer_end = retval = buffer + len;
2857
2858                     /* Working backwards  */
2859                     *--retval = '\0';
2860                     *--retval = ')';
2861                     do {
2862                         *--retval = PL_hexdigit[addr & 15];
2863                     } while (addr >>= 4);
2864                     *--retval = 'x';
2865                     *--retval = '0';
2866                     *--retval = '(';
2867
2868                     retval -= typelen;
2869                     memcpy(retval, typestr, typelen);
2870
2871                     if (stashname) {
2872                         *--retval = '=';
2873                         retval -= stashnamelen;
2874                         memcpy(retval, stashname, stashnamelen);
2875                     }
2876                     /* retval may not neccesarily have reached the start of the
2877                        buffer here.  */
2878                     assert (retval >= buffer);
2879
2880                     len = buffer_end - retval - 1; /* -1 for that \0  */
2881                 }
2882                 if (lp)
2883                     *lp = len;
2884                 SAVEFREEPV(buffer);
2885                 return retval;
2886             }
2887         }
2888         if (SvREADONLY(sv) && !SvOK(sv)) {
2889             if (lp)
2890                 *lp = 0;
2891             if (flags & SV_UNDEF_RETURNS_NULL)
2892                 return NULL;
2893             if (ckWARN(WARN_UNINITIALIZED))
2894                 report_uninit(sv);
2895             return (char *)"";
2896         }
2897     }
2898     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2899         /* I'm assuming that if both IV and NV are equally valid then
2900            converting the IV is going to be more efficient */
2901         const U32 isUIOK = SvIsUV(sv);
2902         char buf[TYPE_CHARS(UV)];
2903         char *ebuf, *ptr;
2904         STRLEN len;
2905
2906         if (SvTYPE(sv) < SVt_PVIV)
2907             sv_upgrade(sv, SVt_PVIV);
2908         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2909         len = ebuf - ptr;
2910         /* inlined from sv_setpvn */
2911         s = SvGROW_mutable(sv, len + 1);
2912         Move(ptr, s, len, char);
2913         s += len;
2914         *s = '\0';
2915     }
2916     else if (SvNOKp(sv)) {
2917         const int olderrno = errno;
2918         if (SvTYPE(sv) < SVt_PVNV)
2919             sv_upgrade(sv, SVt_PVNV);
2920         /* The +20 is pure guesswork.  Configure test needed. --jhi */
2921         s = SvGROW_mutable(sv, NV_DIG + 20);
2922         /* some Xenix systems wipe out errno here */
2923 #ifdef apollo
2924         if (SvNVX(sv) == 0.0)
2925             my_strlcpy(s, "0", SvLEN(sv));
2926         else
2927 #endif /*apollo*/
2928         {
2929             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2930         }
2931         errno = olderrno;
2932 #ifdef FIXNEGATIVEZERO
2933         if (*s == '-' && s[1] == '0' && !s[2]) {
2934             s[0] = '0';
2935             s[1] = 0;
2936         }
2937 #endif
2938         while (*s) s++;
2939 #ifdef hcx
2940         if (s[-1] == '.')
2941             *--s = '\0';
2942 #endif
2943     }
2944     else {
2945         if (isGV_with_GP(sv))
2946             return glob_2pv((GV *)sv, lp);
2947
2948         if (lp)
2949             *lp = 0;
2950         if (flags & SV_UNDEF_RETURNS_NULL)
2951             return NULL;
2952         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2953             report_uninit(sv);
2954         if (SvTYPE(sv) < SVt_PV)
2955             /* Typically the caller expects that sv_any is not NULL now.  */
2956             sv_upgrade(sv, SVt_PV);
2957         return (char *)"";
2958     }
2959     {
2960         const STRLEN len = s - SvPVX_const(sv);
2961         if (lp) 
2962             *lp = len;
2963         SvCUR_set(sv, len);
2964     }
2965     SvPOK_on(sv);
2966     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
2967                           PTR2UV(sv),SvPVX_const(sv)));
2968     if (flags & SV_CONST_RETURN)
2969         return (char *)SvPVX_const(sv);
2970     if (flags & SV_MUTABLE_RETURN)
2971         return SvPVX_mutable(sv);
2972     return SvPVX(sv);
2973 }
2974
2975 /*
2976 =for apidoc sv_copypv
2977
2978 Copies a stringified representation of the source SV into the
2979 destination SV.  Automatically performs any necessary mg_get and
2980 coercion of numeric values into strings.  Guaranteed to preserve
2981 UTF8 flag even from overloaded objects.  Similar in nature to
2982 sv_2pv[_flags] but operates directly on an SV instead of just the
2983 string.  Mostly uses sv_2pv_flags to do its work, except when that
2984 would lose the UTF-8'ness of the PV.
2985
2986 =cut
2987 */
2988
2989 void
2990 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
2991 {
2992     STRLEN len;
2993     const char * const s = SvPV_const(ssv,len);
2994
2995     PERL_ARGS_ASSERT_SV_COPYPV;
2996
2997     sv_setpvn(dsv,s,len);
2998     if (SvUTF8(ssv))
2999         SvUTF8_on(dsv);
3000     else
3001         SvUTF8_off(dsv);
3002 }
3003
3004 /*
3005 =for apidoc sv_2pvbyte
3006
3007 Return a pointer to the byte-encoded representation of the SV, and set *lp
3008 to its length.  May cause the SV to be downgraded from UTF-8 as a
3009 side-effect.
3010
3011 Usually accessed via the C<SvPVbyte> macro.
3012
3013 =cut
3014 */
3015
3016 char *
3017 Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
3018 {
3019     PERL_ARGS_ASSERT_SV_2PVBYTE;
3020
3021     sv_utf8_downgrade(sv,0);
3022     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3023 }
3024
3025 /*
3026 =for apidoc sv_2pvutf8
3027
3028 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3029 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3030
3031 Usually accessed via the C<SvPVutf8> macro.
3032
3033 =cut
3034 */
3035
3036 char *
3037 Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
3038 {
3039     PERL_ARGS_ASSERT_SV_2PVUTF8;
3040
3041     sv_utf8_upgrade(sv);
3042     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3043 }
3044
3045
3046 /*
3047 =for apidoc sv_2bool
3048
3049 This function is only called on magical items, and is only used by
3050 sv_true() or its macro equivalent.
3051
3052 =cut
3053 */
3054
3055 bool
3056 Perl_sv_2bool(pTHX_ register SV *const sv)
3057 {
3058     dVAR;
3059
3060     PERL_ARGS_ASSERT_SV_2BOOL;
3061
3062     SvGETMAGIC(sv);
3063
3064     if (!SvOK(sv))
3065         return 0;
3066     if (SvROK(sv)) {
3067         if (SvAMAGIC(sv)) {
3068             SV * const tmpsv = AMG_CALLun(sv,bool_);
3069             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3070                 return (bool)SvTRUE(tmpsv);
3071         }
3072         return SvRV(sv) != 0;
3073     }
3074     if (SvPOKp(sv)) {
3075         register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3076         if (Xpvtmp &&
3077                 (*sv->sv_u.svu_pv > '0' ||
3078                 Xpvtmp->xpv_cur > 1 ||
3079                 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
3080             return 1;
3081         else
3082             return 0;
3083     }
3084     else {
3085         if (SvIOKp(sv))
3086             return SvIVX(sv) != 0;
3087         else {
3088             if (SvNOKp(sv))
3089                 return SvNVX(sv) != 0.0;
3090             else {
3091                 if (isGV_with_GP(sv))
3092                     return TRUE;
3093                 else
3094                     return FALSE;
3095             }
3096         }
3097     }
3098 }
3099
3100 /*
3101 =for apidoc sv_utf8_upgrade
3102
3103 Converts the PV of an SV to its UTF-8-encoded form.
3104 Forces the SV to string form if it is not already.
3105 Always sets the SvUTF8 flag to avoid future validity checks even
3106 if all the bytes have hibit clear.
3107
3108 This is not as a general purpose byte encoding to Unicode interface:
3109 use the Encode extension for that.
3110
3111 =for apidoc sv_utf8_upgrade_flags
3112
3113 Converts the PV of an SV to its UTF-8-encoded form.
3114 Forces the SV to string form if it is not already.
3115 Always sets the SvUTF8 flag to avoid future validity checks even
3116 if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
3117 will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
3118 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3119
3120 This is not as a general purpose byte encoding to Unicode interface:
3121 use the Encode extension for that.
3122
3123 =cut
3124 */
3125
3126 STRLEN
3127 Perl_sv_utf8_upgrade_flags(pTHX_ register SV *const sv, const I32 flags)
3128 {
3129     dVAR;
3130
3131     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS;
3132
3133     if (sv == &PL_sv_undef)
3134         return 0;
3135     if (!SvPOK(sv)) {
3136         STRLEN len = 0;
3137         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3138             (void) sv_2pv_flags(sv,&len, flags);
3139             if (SvUTF8(sv))
3140                 return len;
3141         } else {
3142             (void) SvPV_force(sv,len);
3143         }
3144     }
3145
3146     if (SvUTF8(sv)) {
3147         return SvCUR(sv);
3148     }
3149
3150     if (SvIsCOW(sv)) {
3151         sv_force_normal_flags(sv, 0);
3152     }
3153
3154     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING))
3155         sv_recode_to_utf8(sv, PL_encoding);
3156     else { /* Assume Latin-1/EBCDIC */
3157         /* This function could be much more efficient if we
3158          * had a FLAG in SVs to signal if there are any hibit
3159          * chars in the PV.  Given that there isn't such a flag
3160          * make the loop as fast as possible. */
3161         const U8 * const s = (U8 *) SvPVX_const(sv);
3162         const U8 * const e = (U8 *) SvEND(sv);
3163         const U8 *t = s;
3164         
3165         while (t < e) {
3166             const U8 ch = *t++;
3167             /* Check for hi bit */
3168             if (!NATIVE_IS_INVARIANT(ch)) {
3169                 STRLEN len = SvCUR(sv);
3170                 /* *Currently* bytes_to_utf8() adds a '\0' after every string
3171                    it converts. This isn't documented. It's not clear if it's
3172                    a bad thing to be doing, and should be changed to do exactly
3173                    what the documentation says. If so, this code will have to
3174                    be changed.
3175                    As is, we mustn't rely on our incoming SV being well formed
3176                    and having a trailing '\0', as certain code in pp_formline
3177                    can send us partially built SVs. */
3178                 U8 * const recoded = bytes_to_utf8((U8*)s, &len);
3179
3180                 SvPV_free(sv); /* No longer using what was there before. */
3181                 SvPV_set(sv, (char*)recoded);
3182                 SvCUR_set(sv, len);
3183                 SvLEN_set(sv, len + 1); /* No longer know the real size. */
3184                 break;
3185             }
3186         }
3187         /* Mark as UTF-8 even if no hibit - saves scanning loop */
3188         SvUTF8_on(sv);
3189     }
3190     return SvCUR(sv);
3191 }
3192
3193 /*
3194 =for apidoc sv_utf8_downgrade
3195
3196 Attempts to convert the PV of an SV from characters to bytes.
3197 If the PV contains a character beyond byte, this conversion will fail;
3198 in this case, either returns false or, if C<fail_ok> is not
3199 true, croaks.
3200
3201 This is not as a general purpose Unicode to byte encoding interface:
3202 use the Encode extension for that.
3203
3204 =cut
3205 */
3206
3207 bool
3208 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3209 {
3210     dVAR;
3211
3212     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3213
3214     if (SvPOKp(sv) && SvUTF8(sv)) {
3215         if (SvCUR(sv)) {
3216             U8 *s;
3217             STRLEN len;
3218
3219             if (SvIsCOW(sv)) {
3220                 sv_force_normal_flags(sv, 0);
3221             }
3222             s = (U8 *) SvPV(sv, len);
3223             if (!utf8_to_bytes(s, &len)) {
3224                 if (fail_ok)
3225                     return FALSE;
3226                 else {
3227                     if (PL_op)
3228                         Perl_croak(aTHX_ "Wide character in %s",
3229                                    OP_DESC(PL_op));
3230                     else
3231                         Perl_croak(aTHX_ "Wide character");
3232                 }
3233             }
3234             SvCUR_set(sv, len);
3235         }
3236     }
3237     SvUTF8_off(sv);
3238     return TRUE;
3239 }
3240
3241 /*
3242 =for apidoc sv_utf8_encode
3243
3244 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3245 flag off so that it looks like octets again.
3246
3247 =cut
3248 */
3249
3250 void
3251 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3252 {
3253     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3254
3255     if (SvIsCOW(sv)) {
3256         sv_force_normal_flags(sv, 0);
3257     }
3258     if (SvREADONLY(sv)) {
3259         Perl_croak(aTHX_ PL_no_modify);
3260     }
3261     (void) sv_utf8_upgrade(sv);
3262     SvUTF8_off(sv);
3263 }
3264
3265 /*
3266 =for apidoc sv_utf8_decode
3267
3268 If the PV of the SV is an octet sequence in UTF-8
3269 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3270 so that it looks like a character. If the PV contains only single-byte
3271 characters, the C<SvUTF8> flag stays being off.
3272 Scans PV for validity and returns false if the PV is invalid UTF-8.
3273
3274 =cut
3275 */
3276
3277 bool
3278 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3279 {
3280     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3281
3282     if (SvPOKp(sv)) {
3283         const U8 *c;
3284         const U8 *e;
3285
3286         /* The octets may have got themselves encoded - get them back as
3287          * bytes
3288          */
3289         if (!sv_utf8_downgrade(sv, TRUE))
3290             return FALSE;
3291
3292         /* it is actually just a matter of turning the utf8 flag on, but
3293          * we want to make sure everything inside is valid utf8 first.
3294          */
3295         c = (const U8 *) SvPVX_const(sv);
3296         if (!is_utf8_string(c, SvCUR(sv)+1))
3297             return FALSE;
3298         e = (const U8 *) SvEND(sv);
3299         while (c < e) {
3300             const U8 ch = *c++;
3301             if (!UTF8_IS_INVARIANT(ch)) {
3302                 SvUTF8_on(sv);
3303                 break;
3304             }
3305         }
3306     }
3307     return TRUE;
3308 }
3309
3310 /*
3311 =for apidoc sv_setsv
3312
3313 Copies the contents of the source SV C<ssv> into the destination SV
3314 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3315 function if the source SV needs to be reused. Does not handle 'set' magic.
3316 Loosely speaking, it performs a copy-by-value, obliterating any previous
3317 content of the destination.
3318
3319 You probably want to use one of the assortment of wrappers, such as
3320 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3321 C<SvSetMagicSV_nosteal>.
3322
3323 =for apidoc sv_setsv_flags
3324
3325 Copies the contents of the source SV C<ssv> into the destination SV
3326 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3327 function if the source SV needs to be reused. Does not handle 'set' magic.
3328 Loosely speaking, it performs a copy-by-value, obliterating any previous
3329 content of the destination.
3330 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3331 C<ssv> if appropriate, else not. If the C<flags> parameter has the
3332 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3333 and C<sv_setsv_nomg> are implemented in terms of this function.
3334
3335 You probably want to use one of the assortment of wrappers, such as
3336 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3337 C<SvSetMagicSV_nosteal>.
3338
3339 This is the primary function for copying scalars, and most other
3340 copy-ish functions and macros use this underneath.
3341
3342 =cut
3343 */
3344
3345 static void
3346 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3347 {
3348     I32 mro_changes = 0; /* 1 = method, 2 = isa */
3349
3350     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3351
3352     if (dtype != SVt_PVGV) {
3353         const char * const name = GvNAME(sstr);
3354         const STRLEN len = GvNAMELEN(sstr);
3355         {
3356             if (dtype >= SVt_PV) {
3357                 SvPV_free(dstr);
3358                 SvPV_set(dstr, 0);
3359                 SvLEN_set(dstr, 0);
3360                 SvCUR_set(dstr, 0);
3361             }
3362             SvUPGRADE(dstr, SVt_PVGV);
3363             (void)SvOK_off(dstr);
3364             /* FIXME - why are we doing this, then turning it off and on again
3365                below?  */
3366             isGV_with_GP_on(dstr);
3367         }
3368         GvSTASH(dstr) = GvSTASH(sstr);
3369         if (GvSTASH(dstr))
3370             Perl_sv_add_backref(aTHX_ (SV*)GvSTASH(dstr), dstr);
3371         gv_name_set((GV *)dstr, name, len, GV_ADD);
3372         SvFAKE_on(dstr);        /* can coerce to non-glob */
3373     }
3374
3375 #ifdef GV_UNIQUE_CHECK
3376     if (GvUNIQUE((GV*)dstr)) {
3377         Perl_croak(aTHX_ PL_no_modify);
3378     }
3379 #endif
3380
3381     if(GvGP((GV*)sstr)) {
3382         /* If source has method cache entry, clear it */
3383         if(GvCVGEN(sstr)) {
3384             SvREFCNT_dec(GvCV(sstr));
3385             GvCV(sstr) = NULL;
3386             GvCVGEN(sstr) = 0;
3387         }
3388         /* If source has a real method, then a method is
3389            going to change */
3390         else if(GvCV((GV*)sstr)) {
3391             mro_changes = 1;
3392         }
3393     }
3394
3395     /* If dest already had a real method, that's a change as well */
3396     if(!mro_changes && GvGP((GV*)dstr) && GvCVu((GV*)dstr)) {
3397         mro_changes = 1;
3398     }
3399
3400     if(strEQ(GvNAME((GV*)dstr),"ISA"))
3401         mro_changes = 2;
3402
3403     gp_free((GV*)dstr);
3404     isGV_with_GP_off(dstr);
3405     (void)SvOK_off(dstr);
3406     isGV_with_GP_on(dstr);
3407     GvINTRO_off(dstr);          /* one-shot flag */
3408     GvGP(dstr) = gp_ref(GvGP(sstr));
3409     if (SvTAINTED(sstr))
3410         SvTAINT(dstr);
3411     if (GvIMPORTED(dstr) != GVf_IMPORTED
3412         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3413         {
3414             GvIMPORTED_on(dstr);
3415         }
3416     GvMULTI_on(dstr);
3417     if(mro_changes == 2) mro_isa_changed_in(GvSTASH(dstr));
3418     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3419     return;
3420 }
3421
3422 static void
3423 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3424 {
3425     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3426     SV *dref = NULL;
3427     const int intro = GvINTRO(dstr);
3428     SV **location;
3429     U8 import_flag = 0;
3430     const U32 stype = SvTYPE(sref);
3431
3432     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3433
3434 #ifdef GV_UNIQUE_CHECK
3435     if (GvUNIQUE((GV*)dstr)) {
3436         Perl_croak(aTHX_ PL_no_modify);
3437     }
3438 #endif
3439
3440     if (intro) {
3441         GvINTRO_off(dstr);      /* one-shot flag */
3442         GvLINE(dstr) = CopLINE(PL_curcop);
3443         GvEGV(dstr) = (GV*)dstr;
3444     }
3445     GvMULTI_on(dstr);
3446     switch (stype) {
3447     case SVt_PVCV:
3448         location = (SV **) &GvCV(dstr);
3449         import_flag = GVf_IMPORTED_CV;
3450         goto common;
3451     case SVt_PVHV:
3452         location = (SV **) &GvHV(dstr);
3453         import_flag = GVf_IMPORTED_HV;
3454         goto common;
3455     case SVt_PVAV:
3456         location = (SV **) &GvAV(dstr);
3457         import_flag = GVf_IMPORTED_AV;
3458         goto common;
3459     case SVt_PVIO:
3460         location = (SV **) &GvIOp(dstr);
3461         goto common;
3462     case SVt_PVFM:
3463         location = (SV **) &GvFORM(dstr);
3464     default:
3465         location = &GvSV(dstr);
3466         import_flag = GVf_IMPORTED_SV;
3467     common:
3468         if (intro) {
3469             if (stype == SVt_PVCV) {
3470                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (CV*)sref || GvCVGEN(dstr))) {*/
3471                 if (GvCVGEN(dstr)) {
3472                     SvREFCNT_dec(GvCV(dstr));
3473                     GvCV(dstr) = NULL;
3474                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3475                 }
3476             }
3477             SAVEGENERICSV(*location);
3478         }
3479         else
3480             dref = *location;
3481         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3482             CV* const cv = (CV*)*location;
3483             if (cv) {
3484                 if (!GvCVGEN((GV*)dstr) &&
3485                     (CvROOT(cv) || CvXSUB(cv)))
3486                     {
3487                         /* Redefining a sub - warning is mandatory if
3488                            it was a const and its value changed. */
3489                         if (CvCONST(cv) && CvCONST((CV*)sref)
3490                             && cv_const_sv(cv) == cv_const_sv((CV*)sref)) {
3491                             NOOP;
3492                             /* They are 2 constant subroutines generated from
3493                                the same constant. This probably means that
3494                                they are really the "same" proxy subroutine
3495                                instantiated in 2 places. Most likely this is
3496                                when a constant is exported twice.  Don't warn.
3497                             */
3498                         }
3499                         else if (ckWARN(WARN_REDEFINE)
3500                                  || (CvCONST(cv)
3501                                      && (!CvCONST((CV*)sref)
3502                                          || sv_cmp(cv_const_sv(cv),
3503                                                    cv_const_sv((CV*)sref))))) {
3504                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
3505                                         (const char *)
3506                                         (CvCONST(cv)
3507                                          ? "Constant subroutine %s::%s redefined"
3508                                          : "Subroutine %s::%s redefined"),
3509                                         HvNAME_get(GvSTASH((GV*)dstr)),
3510                                         GvENAME((GV*)dstr));
3511                         }
3512                     }
3513                 if (!intro)
3514                     cv_ckproto_len(cv, (GV*)dstr,
3515                                    SvPOK(sref) ? SvPVX_const(sref) : NULL,
3516                                    SvPOK(sref) ? SvCUR(sref) : 0);
3517             }
3518             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3519             GvASSUMECV_on(dstr);
3520             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3521         }
3522         *location = sref;
3523         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3524             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3525             GvFLAGS(dstr) |= import_flag;
3526         }
3527         break;
3528     }
3529     SvREFCNT_dec(dref);
3530     if (SvTAINTED(sstr))
3531         SvTAINT(dstr);
3532     return;
3533 }
3534
3535 void
3536 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3537 {
3538     dVAR;
3539     register U32 sflags;
3540     register int dtype;
3541     register svtype stype;
3542
3543     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3544
3545     if (sstr == dstr)
3546         return;
3547
3548     if (SvIS_FREED(dstr)) {
3549         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3550                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3551     }
3552     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3553     if (!sstr)
3554         sstr = &PL_sv_undef;
3555     if (SvIS_FREED(sstr)) {
3556         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3557                    (void*)sstr, (void*)dstr);
3558     }
3559     stype = SvTYPE(sstr);
3560     dtype = SvTYPE(dstr);
3561
3562     (void)SvAMAGIC_off(dstr);
3563     if ( SvVOK(dstr) )
3564     {
3565         /* need to nuke the magic */
3566         mg_free(dstr);
3567     }
3568
3569     /* There's a lot of redundancy below but we're going for speed here */
3570
3571     switch (stype) {
3572     case SVt_NULL:
3573       undef_sstr:
3574         if (dtype != SVt_PVGV) {
3575             (void)SvOK_off(dstr);
3576             return;
3577         }
3578         break;
3579     case SVt_IV:
3580         if (SvIOK(sstr)) {
3581             switch (dtype) {
3582             case SVt_NULL:
3583                 sv_upgrade(dstr, SVt_IV);
3584                 break;
3585             case SVt_NV:
3586             case SVt_PV:
3587                 sv_upgrade(dstr, SVt_PVIV);
3588                 break;
3589             case SVt_PVGV:
3590                 goto end_of_first_switch;
3591             }
3592             (void)SvIOK_only(dstr);
3593             SvIV_set(dstr,  SvIVX(sstr));
3594             if (SvIsUV(sstr))
3595                 SvIsUV_on(dstr);
3596             /* SvTAINTED can only be true if the SV has taint magic, which in
3597                turn means that the SV type is PVMG (or greater). This is the
3598                case statement for SVt_IV, so this cannot be true (whatever gcov
3599                may say).  */
3600             assert(!SvTAINTED(sstr));
3601             return;
3602         }
3603         if (!SvROK(sstr))
3604             goto undef_sstr;
3605         if (dtype < SVt_PV && dtype != SVt_IV)
3606             sv_upgrade(dstr, SVt_IV);
3607         break;
3608
3609     case SVt_NV:
3610         if (SvNOK(sstr)) {
3611             switch (dtype) {
3612             case SVt_NULL:
3613             case SVt_IV:
3614                 sv_upgrade(dstr, SVt_NV);
3615                 break;
3616             case SVt_PV:
3617             case SVt_PVIV:
3618                 sv_upgrade(dstr, SVt_PVNV);
3619                 break;
3620             case SVt_PVGV:
3621                 goto end_of_first_switch;
3622             }
3623             SvNV_set(dstr, SvNVX(sstr));
3624             (void)SvNOK_only(dstr);
3625             /* SvTAINTED can only be true if the SV has taint magic, which in
3626                turn means that the SV type is PVMG (or greater). This is the
3627                case statement for SVt_NV, so this cannot be true (whatever gcov
3628                may say).  */
3629             assert(!SvTAINTED(sstr));
3630             return;
3631         }
3632         goto undef_sstr;
3633
3634     case SVt_PVFM:
3635 #ifdef PERL_OLD_COPY_ON_WRITE
3636         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
3637             if (dtype < SVt_PVIV)
3638                 sv_upgrade(dstr, SVt_PVIV);
3639             break;
3640         }
3641         /* Fall through */
3642 #endif
3643     case SVt_REGEXP:
3644     case SVt_PV:
3645         if (dtype < SVt_PV)
3646             sv_upgrade(dstr, SVt_PV);
3647         break;
3648     case SVt_PVIV:
3649         if (dtype < SVt_PVIV)
3650             sv_upgrade(dstr, SVt_PVIV);
3651         break;
3652     case SVt_PVNV:
3653         if (dtype < SVt_PVNV)
3654             sv_upgrade(dstr, SVt_PVNV);
3655         break;
3656     default:
3657         {
3658         const char * const type = sv_reftype(sstr,0);
3659         if (PL_op)
3660             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_NAME(PL_op));
3661         else
3662             Perl_croak(aTHX_ "Bizarre copy of %s", type);
3663         }
3664         break;
3665
3666         /* case SVt_BIND: */
3667     case SVt_PVLV:
3668     case SVt_PVGV:
3669         if (isGV_with_GP(sstr) && dtype <= SVt_PVGV) {
3670             glob_assign_glob(dstr, sstr, dtype);
3671             return;
3672         }
3673         /* SvVALID means that this PVGV is playing at being an FBM.  */
3674         /*FALLTHROUGH*/
3675
3676     case SVt_PVMG:
3677         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
3678             mg_get(sstr);
3679             if (SvTYPE(sstr) != stype) {
3680                 stype = SvTYPE(sstr);
3681                 if (isGV_with_GP(sstr) && stype == SVt_PVGV && dtype <= SVt_PVGV) {
3682                     glob_assign_glob(dstr, sstr, dtype);
3683                     return;
3684                 }
3685             }
3686         }
3687         if (stype == SVt_PVLV)
3688             SvUPGRADE(dstr, SVt_PVNV);
3689         else
3690             SvUPGRADE(dstr, (svtype)stype);
3691     }
3692  end_of_first_switch:
3693
3694     /* dstr may have been upgraded.  */
3695     dtype = SvTYPE(dstr);
3696     sflags = SvFLAGS(sstr);
3697
3698     if (dtype == SVt_PVCV || dtype == SVt_PVFM) {
3699         /* Assigning to a subroutine sets the prototype.  */
3700         if (SvOK(sstr)) {
3701             STRLEN len;
3702             const char *const ptr = SvPV_const(sstr, len);
3703
3704             SvGROW(dstr, len + 1);
3705             Copy(ptr, SvPVX(dstr), len + 1, char);
3706             SvCUR_set(dstr, len);
3707             SvPOK_only(dstr);
3708             SvFLAGS(dstr) |= sflags & SVf_UTF8;
3709         } else {
3710             SvOK_off(dstr);
3711         }
3712     } else if (dtype == SVt_PVAV || dtype == SVt_PVHV) {
3713         const char * const type = sv_reftype(dstr,0);
3714         if (PL_op)
3715             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_NAME(PL_op));
3716         else
3717             Perl_croak(aTHX_ "Cannot copy to %s", type);
3718     } else if (sflags & SVf_ROK) {
3719         if (isGV_with_GP(dstr) && dtype == SVt_PVGV
3720             && SvTYPE(SvRV(sstr)) == SVt_PVGV) {
3721             sstr = SvRV(sstr);
3722             if (sstr == dstr) {
3723                 if (GvIMPORTED(dstr) != GVf_IMPORTED
3724                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3725                 {
3726                     GvIMPORTED_on(dstr);
3727                 }
3728                 GvMULTI_on(dstr);
3729                 return;
3730             }
3731             if (isGV_with_GP(sstr)) {
3732                 glob_assign_glob(dstr, sstr, dtype);
3733                 return;
3734             }
3735         }
3736
3737         if (dtype >= SVt_PV) {
3738             if (dtype == SVt_PVGV && isGV_with_GP(dstr)) {
3739                 glob_assign_ref(dstr, sstr);
3740                 return;
3741             }
3742             if (SvPVX_const(dstr)) {
3743                 SvPV_free(dstr);
3744                 SvLEN_set(dstr, 0);
3745                 SvCUR_set(dstr, 0);
3746             }
3747         }
3748         (void)SvOK_off(dstr);
3749         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
3750         SvFLAGS(dstr) |= sflags & SVf_ROK;
3751         assert(!(sflags & SVp_NOK));
3752         assert(!(sflags & SVp_IOK));
3753         assert(!(sflags & SVf_NOK));
3754         assert(!(sflags & SVf_IOK));
3755     }
3756     else if (dtype == SVt_PVGV && isGV_with_GP(dstr)) {
3757         if (!(sflags & SVf_OK)) {
3758             if (ckWARN(WARN_MISC))
3759                 Perl_warner(aTHX_ packWARN(WARN_MISC),
3760                             "Undefined value assigned to typeglob");
3761         }
3762         else {
3763             GV *gv = gv_fetchsv(sstr, GV_ADD, SVt_PVGV);
3764             if (dstr != (SV*)gv) {
3765                 if (GvGP(dstr))
3766                     gp_free((GV*)dstr);
3767                 GvGP(dstr) = gp_ref(GvGP(gv));
3768             }
3769         }
3770     }
3771     else if (sflags & SVp_POK) {
3772         bool isSwipe = 0;
3773
3774         /*
3775          * Check to see if we can just swipe the string.  If so, it's a
3776          * possible small lose on short strings, but a big win on long ones.
3777          * It might even be a win on short strings if SvPVX_const(dstr)
3778          * has to be allocated and SvPVX_const(sstr) has to be freed.
3779          * Likewise if we can set up COW rather than doing an actual copy, we
3780          * drop to the else clause, as the swipe code and the COW setup code
3781          * have much in common.
3782          */
3783
3784         /* Whichever path we take through the next code, we want this true,
3785            and doing it now facilitates the COW check.  */
3786         (void)SvPOK_only(dstr);
3787
3788         if (
3789             /* If we're already COW then this clause is not true, and if COW
3790                is allowed then we drop down to the else and make dest COW 
3791                with us.  If caller hasn't said that we're allowed to COW
3792                shared hash keys then we don't do the COW setup, even if the
3793                source scalar is a shared hash key scalar.  */
3794             (((flags & SV_COW_SHARED_HASH_KEYS)
3795                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
3796                : 1 /* If making a COW copy is forbidden then the behaviour we
3797                        desire is as if the source SV isn't actually already
3798                        COW, even if it is.  So we act as if the source flags
3799                        are not COW, rather than actually testing them.  */
3800               )
3801 #ifndef PERL_OLD_COPY_ON_WRITE
3802              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
3803                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
3804                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
3805                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
3806                 but in turn, it's somewhat dead code, never expected to go
3807                 live, but more kept as a placeholder on how to do it better
3808                 in a newer implementation.  */
3809              /* If we are COW and dstr is a suitable target then we drop down
3810                 into the else and make dest a COW of us.  */
3811              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
3812 #endif
3813              )
3814             &&
3815             !(isSwipe =
3816                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
3817                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
3818                  (!(flags & SV_NOSTEAL)) &&
3819                                         /* and we're allowed to steal temps */
3820                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
3821                  SvLEN(sstr)    &&        /* and really is a string */
3822                                 /* and won't be needed again, potentially */
3823               !(PL_op && PL_op->op_type == OP_AASSIGN))
3824 #ifdef PERL_OLD_COPY_ON_WRITE
3825             && ((flags & SV_COW_SHARED_HASH_KEYS)
3826                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
3827                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
3828                      && SvTYPE(sstr) >= SVt_PVIV))
3829                 : 1)
3830 #endif
3831             ) {
3832             /* Failed the swipe test, and it's not a shared hash key either.
3833                Have to copy the string.  */
3834             STRLEN len = SvCUR(sstr);
3835             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
3836             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
3837             SvCUR_set(dstr, len);
3838             *SvEND(dstr) = '\0';
3839         } else {
3840             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
3841                be true in here.  */
3842             /* Either it's a shared hash key, or it's suitable for
3843                copy-on-write or we can swipe the string.  */
3844             if (DEBUG_C_TEST) {
3845                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
3846                 sv_dump(sstr);
3847                 sv_dump(dstr);
3848             }
3849 #ifdef PERL_OLD_COPY_ON_WRITE
3850             if (!isSwipe) {
3851                 /* I believe I should acquire a global SV mutex if
3852                    it's a COW sv (not a shared hash key) to stop
3853                    it going un copy-on-write.
3854                    If the source SV has gone un copy on write between up there
3855                    and down here, then (assert() that) it is of the correct
3856                    form to make it copy on write again */
3857                 if ((sflags & (SVf_FAKE | SVf_READONLY))
3858                     != (SVf_FAKE | SVf_READONLY)) {
3859                     SvREADONLY_on(sstr);
3860                     SvFAKE_on(sstr);
3861                     /* Make the source SV into a loop of 1.
3862                        (about to become 2) */
3863                     SV_COW_NEXT_SV_SET(sstr, sstr);
3864                 }
3865             }
3866 #endif
3867             /* Initial code is common.  */
3868             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
3869                 SvPV_free(dstr);
3870             }
3871
3872             if (!isSwipe) {
3873                 /* making another shared SV.  */
3874                 STRLEN cur = SvCUR(sstr);
3875                 STRLEN len = SvLEN(sstr);
3876 #ifdef PERL_OLD_COPY_ON_WRITE
3877                 if (len) {
3878                     assert (SvTYPE(dstr) >= SVt_PVIV);
3879                     /* SvIsCOW_normal */
3880                     /* splice us in between source and next-after-source.  */
3881                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
3882                     SV_COW_NEXT_SV_SET(sstr, dstr);
3883                     SvPV_set(dstr, SvPVX_mutable(sstr));
3884                 } else
3885 #endif
3886                 {
3887                     /* SvIsCOW_shared_hash */
3888                     DEBUG_C(PerlIO_printf(Perl_debug_log,
3889                                           "Copy on write: Sharing hash\n"));
3890
3891                     assert (SvTYPE(dstr) >= SVt_PV);
3892                     SvPV_set(dstr,
3893                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
3894                 }
3895                 SvLEN_set(dstr, len);
3896                 SvCUR_set(dstr, cur);
3897                 SvREADONLY_on(dstr);
3898                 SvFAKE_on(dstr);
3899                 /* Relesase a global SV mutex.  */
3900             }
3901             else
3902                 {       /* Passes the swipe test.  */
3903                 SvPV_set(dstr, SvPVX_mutable(sstr));
3904                 SvLEN_set(dstr, SvLEN(sstr));
3905                 SvCUR_set(dstr, SvCUR(sstr));
3906
3907                 SvTEMP_off(dstr);
3908                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
3909                 SvPV_set(sstr, NULL);
3910                 SvLEN_set(sstr, 0);
3911                 SvCUR_set(sstr, 0);
3912                 SvTEMP_off(sstr);
3913             }
3914         }
3915         if (sflags & SVp_NOK) {
3916             SvNV_set(dstr, SvNVX(sstr));
3917         }
3918         if (sflags & SVp_IOK) {
3919             SvIV_set(dstr, SvIVX(sstr));
3920             /* Must do this otherwise some other overloaded use of 0x80000000
3921                gets confused. I guess SVpbm_VALID */
3922             if (sflags & SVf_IVisUV)
3923                 SvIsUV_on(dstr);
3924         }
3925         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
3926         {
3927             const MAGIC * const smg = SvVSTRING_mg(sstr);
3928             if (smg) {
3929                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
3930                          smg->mg_ptr, smg->mg_len);
3931                 SvRMAGICAL_on(dstr);
3932             }
3933         }
3934     }
3935     else if (sflags & (SVp_IOK|SVp_NOK)) {
3936         (void)SvOK_off(dstr);
3937         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
3938         if (sflags & SVp_IOK) {
3939             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
3940             SvIV_set(dstr, SvIVX(sstr));
3941         }
3942         if (sflags & SVp_NOK) {
3943             SvNV_set(dstr, SvNVX(sstr));
3944         }
3945     }
3946     else {
3947         if (isGV_with_GP(sstr)) {
3948             /* This stringification rule for globs is spread in 3 places.
3949                This feels bad. FIXME.  */
3950             const U32 wasfake = sflags & SVf_FAKE;
3951
3952             /* FAKE globs can get coerced, so need to turn this off
3953                temporarily if it is on.  */
3954             SvFAKE_off(sstr);
3955             gv_efullname3(dstr, (GV *)sstr, "*");
3956             SvFLAGS(sstr) |= wasfake;
3957         }
3958         else
3959             (void)SvOK_off(dstr);
3960     }
3961     if (SvTAINTED(sstr))
3962         SvTAINT(dstr);
3963 }
3964
3965 /*
3966 =for apidoc sv_setsv_mg
3967
3968 Like C<sv_setsv>, but also handles 'set' magic.
3969
3970 =cut
3971 */
3972
3973 void
3974 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
3975 {
3976     PERL_ARGS_ASSERT_SV_SETSV_MG;
3977
3978     sv_setsv(dstr,sstr);
3979     SvSETMAGIC(dstr);
3980 }
3981
3982 #ifdef PERL_OLD_COPY_ON_WRITE
3983 SV *
3984 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
3985 {
3986     STRLEN cur = SvCUR(sstr);
3987     STRLEN len = SvLEN(sstr);
3988     register char *new_pv;
3989
3990     PERL_ARGS_ASSERT_SV_SETSV_COW;
3991
3992     if (DEBUG_C_TEST) {
3993         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
3994                       (void*)sstr, (void*)dstr);
3995         sv_dump(sstr);
3996         if (dstr)
3997                     sv_dump(dstr);
3998     }
3999
4000     if (dstr) {
4001         if (SvTHINKFIRST(dstr))
4002             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4003         else if (SvPVX_const(dstr))
4004             Safefree(SvPVX_const(dstr));
4005     }
4006     else
4007         new_SV(dstr);
4008     SvUPGRADE(dstr, SVt_PVIV);
4009
4010     assert (SvPOK(sstr));
4011     assert (SvPOKp(sstr));
4012     assert (!SvIOK(sstr));
4013     assert (!SvIOKp(sstr));
4014     assert (!SvNOK(sstr));
4015     assert (!SvNOKp(sstr));
4016
4017     if (SvIsCOW(sstr)) {
4018
4019         if (SvLEN(sstr) == 0) {
4020             /* source is a COW shared hash key.  */
4021             DEBUG_C(PerlIO_printf(Perl_debug_log,
4022                                   "Fast copy on write: Sharing hash\n"));
4023             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4024             goto common_exit;
4025         }
4026         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4027     } else {
4028         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4029         SvUPGRADE(sstr, SVt_PVIV);
4030         SvREADONLY_on(sstr);
4031         SvFAKE_on(sstr);
4032         DEBUG_C(PerlIO_printf(Perl_debug_log,
4033                               "Fast copy on write: Converting sstr to COW\n"));
4034         SV_COW_NEXT_SV_SET(dstr, sstr);
4035     }
4036     SV_COW_NEXT_SV_SET(sstr, dstr);
4037     new_pv = SvPVX_mutable(sstr);
4038
4039   common_exit:
4040     SvPV_set(dstr, new_pv);
4041     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4042     if (SvUTF8(sstr))
4043         SvUTF8_on(dstr);
4044     SvLEN_set(dstr, len);
4045     SvCUR_set(dstr, cur);
4046     if (DEBUG_C_TEST) {
4047         sv_dump(dstr);
4048     }
4049     return dstr;
4050 }
4051 #endif
4052
4053 /*
4054 =for apidoc sv_setpvn
4055
4056 Copies a string into an SV.  The C<len> parameter indicates the number of
4057 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4058 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4059
4060 =cut
4061 */
4062
4063 void
4064 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4065 {
4066     dVAR;
4067     register char *dptr;
4068
4069     PERL_ARGS_ASSERT_SV_SETPVN;
4070
4071     SV_CHECK_THINKFIRST_COW_DROP(sv);
4072     if (!ptr) {
4073         (void)SvOK_off(sv);
4074         return;
4075     }
4076     else {
4077         /* len is STRLEN which is unsigned, need to copy to signed */
4078         const IV iv = len;
4079         if (iv < 0)
4080             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4081     }
4082     SvUPGRADE(sv, SVt_PV);
4083
4084     dptr = SvGROW(sv, len + 1);
4085     Move(ptr,dptr,len,char);
4086     dptr[len] = '\0';
4087     SvCUR_set(sv, len);
4088     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4089     SvTAINT(sv);
4090 }
4091
4092 /*
4093 =for apidoc sv_setpvn_mg
4094
4095 Like C<sv_setpvn>, but also handles 'set' magic.
4096
4097 =cut
4098 */
4099
4100 void
4101 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4102 {
4103     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4104
4105     sv_setpvn(sv,ptr,len);
4106     SvSETMAGIC(sv);
4107 }
4108
4109 /*
4110 =for apidoc sv_setpv
4111
4112 Copies a string into an SV.  The string must be null-terminated.  Does not
4113 handle 'set' magic.  See C<sv_setpv_mg>.
4114
4115 =cut
4116 */
4117
4118 void
4119 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4120 {
4121     dVAR;
4122     register STRLEN len;
4123
4124     PERL_ARGS_ASSERT_SV_SETPV;
4125
4126     SV_CHECK_THINKFIRST_COW_DROP(sv);
4127     if (!ptr) {
4128         (void)SvOK_off(sv);
4129         return;
4130     }
4131     len = strlen(ptr);
4132     SvUPGRADE(sv, SVt_PV);
4133
4134     SvGROW(sv, len + 1);
4135     Move(ptr,SvPVX(sv),len+1,char);
4136     SvCUR_set(sv, len);
4137     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4138     SvTAINT(sv);
4139 }
4140
4141 /*
4142 =for apidoc sv_setpv_mg
4143
4144 Like C<sv_setpv>, but also handles 'set' magic.
4145
4146 =cut
4147 */
4148
4149 void
4150 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4151 {
4152     PERL_ARGS_ASSERT_SV_SETPV_MG;
4153
4154     sv_setpv(sv,ptr);
4155     SvSETMAGIC(sv);
4156 }
4157
4158 /*
4159 =for apidoc sv_usepvn_flags
4160
4161 Tells an SV to use C<ptr> to find its string value.  Normally the
4162 string is stored inside the SV but sv_usepvn allows the SV to use an
4163 outside string.  The C<ptr> should point to memory that was allocated
4164 by C<malloc>.  The string length, C<len>, must be supplied.  By default
4165 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4166 so that pointer should not be freed or used by the programmer after
4167 giving it to sv_usepvn, and neither should any pointers from "behind"
4168 that pointer (e.g. ptr + 1) be used.
4169
4170 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
4171 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4172 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
4173 C<len>, and already meets the requirements for storing in C<SvPVX>)
4174
4175 =cut
4176 */
4177
4178 void
4179 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4180 {
4181     dVAR;
4182     STRLEN allocate;
4183
4184     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4185
4186     SV_CHECK_THINKFIRST_COW_DROP(sv);
4187     SvUPGRADE(sv, SVt_PV);
4188     if (!ptr) {
4189         (void)SvOK_off(sv);
4190         if (flags & SV_SMAGIC)
4191             SvSETMAGIC(sv);
4192         return;
4193     }
4194     if (SvPVX_const(sv))
4195         SvPV_free(sv);
4196
4197 #ifdef DEBUGGING
4198     if (flags & SV_HAS_TRAILING_NUL)
4199         assert(ptr[len] == '\0');
4200 #endif
4201
4202     allocate = (flags & SV_HAS_TRAILING_NUL)
4203         ? len + 1 :
4204 #ifdef Perl_safesysmalloc_size
4205         len + 1;
4206 #else 
4207         PERL_STRLEN_ROUNDUP(len + 1);
4208 #endif
4209     if (flags & SV_HAS_TRAILING_NUL) {
4210         /* It's long enough - do nothing.
4211            Specfically Perl_newCONSTSUB is relying on this.  */
4212     } else {
4213 #ifdef DEBUGGING
4214         /* Force a move to shake out bugs in callers.  */
4215         char *new_ptr = (char*)safemalloc(allocate);
4216         Copy(ptr, new_ptr, len, char);
4217         PoisonFree(ptr,len,char);
4218         Safefree(ptr);
4219         ptr = new_ptr;
4220 #else
4221         ptr = (char*) saferealloc (ptr, allocate);
4222 #endif
4223     }
4224 #ifdef Perl_safesysmalloc_size
4225     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4226 #else
4227     SvLEN_set(sv, allocate);
4228 #endif
4229     SvCUR_set(sv, len);
4230     SvPV_set(sv, ptr);
4231     if (!(flags & SV_HAS_TRAILING_NUL)) {
4232         ptr[len] = '\0';
4233     }
4234     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4235     SvTAINT(sv);
4236     if (flags & SV_SMAGIC)
4237         SvSETMAGIC(sv);
4238 }
4239
4240 #ifdef PERL_OLD_COPY_ON_WRITE
4241 /* Need to do this *after* making the SV normal, as we need the buffer
4242    pointer to remain valid until after we've copied it.  If we let go too early,
4243    another thread could invalidate it by unsharing last of the same hash key
4244    (which it can do by means other than releasing copy-on-write Svs)
4245    or by changing the other copy-on-write SVs in the loop.  */
4246 STATIC void
4247 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4248 {
4249     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4250
4251     { /* this SV was SvIsCOW_normal(sv) */
4252          /* we need to find the SV pointing to us.  */
4253         SV *current = SV_COW_NEXT_SV(after);
4254
4255         if (current == sv) {
4256             /* The SV we point to points back to us (there were only two of us
4257                in the loop.)
4258                Hence other SV is no longer copy on write either.  */
4259             SvFAKE_off(after);
4260             SvREADONLY_off(after);
4261         } else {
4262             /* We need to follow the pointers around the loop.  */
4263             SV *next;
4264             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4265                 assert (next);
4266                 current = next;
4267                  /* don't loop forever if the structure is bust, and we have
4268                     a pointer into a closed loop.  */
4269                 assert (current != after);
4270                 assert (SvPVX_const(current) == pvx);
4271             }
4272             /* Make the SV before us point to the SV after us.  */
4273             SV_COW_NEXT_SV_SET(current, after);
4274         }
4275     }
4276 }
4277 #endif
4278 /*
4279 =for apidoc sv_force_normal_flags
4280
4281 Undo various types of fakery on an SV: if the PV is a shared string, make
4282 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4283 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4284 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4285 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4286 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4287 set to some other value.) In addition, the C<flags> parameter gets passed to
4288 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
4289 with flags set to 0.
4290
4291 =cut
4292 */
4293
4294 void
4295 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4296 {
4297     dVAR;
4298
4299     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4300
4301 #ifdef PERL_OLD_COPY_ON_WRITE
4302     if (SvREADONLY(sv)) {
4303         /* At this point I believe I should acquire a global SV mutex.  */
4304         if (SvFAKE(sv)) {
4305             const char * const pvx = SvPVX_const(sv);
4306             const STRLEN len = SvLEN(sv);
4307             const STRLEN cur = SvCUR(sv);
4308             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4309                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4310                we'll fail an assertion.  */
4311             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4312
4313             if (DEBUG_C_TEST) {
4314                 PerlIO_printf(Perl_debug_log,
4315                               "Copy on write: Force normal %ld\n",
4316                               (long) flags);
4317                 sv_dump(sv);
4318             }
4319             SvFAKE_off(sv);
4320             SvREADONLY_off(sv);
4321             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4322             SvPV_set(sv, NULL);
4323             SvLEN_set(sv, 0);
4324             if (flags & SV_COW_DROP_PV) {
4325                 /* OK, so we don't need to copy our buffer.  */
4326                 SvPOK_off(sv);
4327             } else {
4328                 SvGROW(sv, cur + 1);
4329                 Move(pvx,SvPVX(sv),cur,char);
4330                 SvCUR_set(sv, cur);
4331                 *SvEND(sv) = '\0';
4332             }
4333             if (len) {
4334                 sv_release_COW(sv, pvx, next);
4335             } else {
4336                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4337             }
4338             if (DEBUG_C_TEST) {
4339                 sv_dump(sv);
4340             }
4341         }
4342         else if (IN_PERL_RUNTIME)
4343             Perl_croak(aTHX_ PL_no_modify);
4344         /* At this point I believe that I can drop the global SV mutex.  */
4345     }
4346 #else
4347     if (SvREADONLY(sv)) {
4348         if (SvFAKE(sv)) {
4349             const char * const pvx = SvPVX_const(sv);
4350             const STRLEN len = SvCUR(sv);
4351             SvFAKE_off(sv);
4352             SvREADONLY_off(sv);
4353             SvPV_set(sv, NULL);
4354             SvLEN_set(sv, 0);
4355             SvGROW(sv, len + 1);
4356             Move(pvx,SvPVX(sv),len,char);
4357             *SvEND(sv) = '\0';
4358             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4359         }
4360         else if (IN_PERL_RUNTIME)
4361             Perl_croak(aTHX_ PL_no_modify);
4362     }
4363 #endif
4364     if (SvROK(sv))
4365         sv_unref_flags(sv, flags);
4366     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_PVGV)
4367         sv_unglob(sv);
4368 }
4369
4370 /*
4371 =for apidoc sv_chop
4372
4373 Efficient removal of characters from the beginning of the string buffer.
4374 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4375 the string buffer.  The C<ptr> becomes the first character of the adjusted
4376 string. Uses the "OOK hack".
4377 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4378 refer to the same chunk of data.
4379
4380 =cut
4381 */
4382
4383 void
4384 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4385 {
4386     STRLEN delta;
4387     STRLEN old_delta;
4388     U8 *p;
4389 #ifdef DEBUGGING
4390     const U8 *real_start;
4391 #endif
4392     STRLEN max_delta;
4393
4394     PERL_ARGS_ASSERT_SV_CHOP;
4395
4396     if (!ptr || !SvPOKp(sv))
4397         return;
4398     delta = ptr - SvPVX_const(sv);
4399     if (!delta) {
4400         /* Nothing to do.  */
4401         return;
4402     }
4403     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), but after this line,
4404        nothing uses the value of ptr any more.  */
4405     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4406     if (ptr <= SvPVX_const(sv))
4407         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4408                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4409     SV_CHECK_THINKFIRST(sv);
4410     if (delta > max_delta)
4411         Perl_croak(aTHX_ "panic: sv_chop ptr=%p (was %p), start=%p, end=%p",
4412                    SvPVX_const(sv) + delta, ptr, SvPVX_const(sv),
4413                    SvPVX_const(sv) + max_delta);
4414
4415     if (!SvOOK(sv)) {
4416         if (!SvLEN(sv)) { /* make copy of shared string */
4417             const char *pvx = SvPVX_const(sv);
4418             const STRLEN len = SvCUR(sv);
4419             SvGROW(sv, len + 1);
4420             Move(pvx,SvPVX(sv),len,char);
4421             *SvEND(sv) = '\0';
4422         }
4423         SvFLAGS(sv) |= SVf_OOK;
4424         old_delta = 0;
4425     } else {
4426         SvOOK_offset(sv, old_delta);
4427     }
4428     SvLEN_set(sv, SvLEN(sv) - delta);
4429     SvCUR_set(sv, SvCUR(sv) - delta);
4430     SvPV_set(sv, SvPVX(sv) + delta);
4431
4432     p = (U8 *)SvPVX_const(sv);
4433
4434     delta += old_delta;
4435
4436 #ifdef DEBUGGING
4437     real_start = p - delta;
4438 #endif
4439
4440     assert(delta);
4441     if (delta < 0x100) {
4442         *--p = (U8) delta;
4443     } else {
4444         *--p = 0;
4445         p -= sizeof(STRLEN);
4446         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4447     }
4448
4449 #ifdef DEBUGGING
4450     /* Fill the preceding buffer with sentinals to verify that no-one is
4451        using it.  */
4452     while (p > real_start) {
4453         --p;
4454         *p = (U8)PTR2UV(p);
4455     }
4456 #endif
4457 }
4458
4459 /*
4460 =for apidoc sv_catpvn
4461
4462 Concatenates the string onto the end of the string which is in the SV.  The
4463 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4464 status set, then the bytes appended should be valid UTF-8.
4465 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4466
4467 =for apidoc sv_catpvn_flags
4468
4469 Concatenates the string onto the end of the string which is in the SV.  The
4470 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4471 status set, then the bytes appended should be valid UTF-8.
4472 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4473 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4474 in terms of this function.
4475
4476 =cut
4477 */
4478
4479 void
4480 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
4481 {
4482     dVAR;
4483     STRLEN dlen;
4484     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4485
4486     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
4487
4488     SvGROW(dsv, dlen + slen + 1);
4489     if (sstr == dstr)
4490         sstr = SvPVX_const(dsv);
4491     Move(sstr, SvPVX(dsv) + dlen, slen, char);
4492     SvCUR_set(dsv, SvCUR(dsv) + slen);
4493     *SvEND(dsv) = '\0';
4494     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
4495     SvTAINT(dsv);
4496     if (flags & SV_SMAGIC)
4497         SvSETMAGIC(dsv);
4498 }
4499
4500 /*
4501 =for apidoc sv_catsv
4502
4503 Concatenates the string from SV C<ssv> onto the end of the string in
4504 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
4505 not 'set' magic.  See C<sv_catsv_mg>.
4506
4507 =for apidoc sv_catsv_flags
4508
4509 Concatenates the string from SV C<ssv> onto the end of the string in
4510 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
4511 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4512 and C<sv_catsv_nomg> are implemented in terms of this function.
4513
4514 =cut */
4515
4516 void
4517 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
4518 {
4519     dVAR;
4520  
4521     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
4522
4523    if (ssv) {
4524         STRLEN slen;
4525         const char *spv = SvPV_const(ssv, slen);
4526         if (spv) {
4527             /*  sutf8 and dutf8 were type bool, but under USE_ITHREADS,
4528                 gcc version 2.95.2 20000220 (Debian GNU/Linux) for
4529                 Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
4530                 get dutf8 = 0x20000000, (i.e.  SVf_UTF8) even though
4531                 dsv->sv_flags doesn't have that bit set.
4532                 Andy Dougherty  12 Oct 2001
4533             */
4534             const I32 sutf8 = DO_UTF8(ssv);
4535             I32 dutf8;
4536
4537             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
4538                 mg_get(dsv);
4539             dutf8 = DO_UTF8(dsv);
4540
4541             if (dutf8 != sutf8) {
4542                 if (dutf8) {
4543                     /* Not modifying source SV, so taking a temporary copy. */
4544                     SV* const csv = newSVpvn_flags(spv, slen, SVs_TEMP);
4545
4546                     sv_utf8_upgrade(csv);
4547                     spv = SvPV_const(csv, slen);
4548                 }
4549                 else
4550                     sv_utf8_upgrade_nomg(dsv);
4551             }
4552             sv_catpvn_nomg(dsv, spv, slen);
4553         }
4554     }
4555     if (flags & SV_SMAGIC)
4556         SvSETMAGIC(dsv);
4557 }
4558
4559 /*
4560 =for apidoc sv_catpv
4561
4562 Concatenates the string onto the end of the string which is in the SV.
4563 If the SV has the UTF-8 status set, then the bytes appended should be
4564 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
4565
4566 =cut */
4567
4568 void
4569 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
4570 {
4571     dVAR;
4572     register STRLEN len;
4573     STRLEN tlen;
4574     char *junk;
4575
4576     PERL_ARGS_ASSERT_SV_CATPV;
4577
4578     if (!ptr)
4579         return;
4580     junk = SvPV_force(sv, tlen);
4581     len = strlen(ptr);
4582     SvGROW(sv, tlen + len + 1);
4583     if (ptr == junk)
4584         ptr = SvPVX_const(sv);
4585     Move(ptr,SvPVX(sv)+tlen,len+1,char);
4586     SvCUR_set(sv, SvCUR(sv) + len);
4587     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4588     SvTAINT(sv);
4589 }
4590
4591 /*
4592 =for apidoc sv_catpv_mg
4593
4594 Like C<sv_catpv>, but also handles 'set' magic.
4595
4596 =cut
4597 */
4598
4599 void
4600 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4601 {
4602     PERL_ARGS_ASSERT_SV_CATPV_MG;
4603
4604     sv_catpv(sv,ptr);
4605     SvSETMAGIC(sv);
4606 }
4607
4608 /*
4609 =for apidoc newSV
4610
4611 Creates a new SV.  A non-zero C<len> parameter indicates the number of
4612 bytes of preallocated string space the SV should have.  An extra byte for a
4613 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
4614 space is allocated.)  The reference count for the new SV is set to 1.
4615
4616 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
4617 parameter, I<x>, a debug aid which allowed callers to identify themselves.
4618 This aid has been superseded by a new build option, PERL_MEM_LOG (see
4619 L<perlhack/PERL_MEM_LOG>).  The older API is still there for use in XS
4620 modules supporting older perls.
4621
4622 =cut
4623 */
4624
4625 SV *
4626 Perl_newSV(pTHX_ const STRLEN len)
4627 {
4628     dVAR;
4629     register SV *sv;
4630
4631     new_SV(sv);
4632     if (len) {
4633         sv_upgrade(sv, SVt_PV);
4634         SvGROW(sv, len + 1);
4635     }
4636     return sv;
4637 }
4638 /*
4639 =for apidoc sv_magicext
4640
4641 Adds magic to an SV, upgrading it if necessary. Applies the
4642 supplied vtable and returns a pointer to the magic added.
4643
4644 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
4645 In particular, you can add magic to SvREADONLY SVs, and add more than
4646 one instance of the same 'how'.
4647
4648 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
4649 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
4650 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
4651 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
4652
4653 (This is now used as a subroutine by C<sv_magic>.)
4654
4655 =cut
4656 */
4657 MAGIC * 
4658 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
4659                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
4660 {
4661     dVAR;
4662     MAGIC* mg;
4663
4664     PERL_ARGS_ASSERT_SV_MAGICEXT;
4665
4666     SvUPGRADE(sv, SVt_PVMG);
4667     Newxz(mg, 1, MAGIC);
4668     mg->mg_moremagic = SvMAGIC(sv);
4669     SvMAGIC_set(sv, mg);
4670
4671     /* Sometimes a magic contains a reference loop, where the sv and
4672        object refer to each other.  To prevent a reference loop that
4673        would prevent such objects being freed, we look for such loops
4674        and if we find one we avoid incrementing the object refcount.
4675
4676        Note we cannot do this to avoid self-tie loops as intervening RV must
4677        have its REFCNT incremented to keep it in existence.
4678
4679     */
4680     if (!obj || obj == sv ||
4681         how == PERL_MAGIC_arylen ||
4682         how == PERL_MAGIC_symtab ||
4683         (SvTYPE(obj) == SVt_PVGV &&
4684             (GvSV(obj) == sv || GvHV(obj) == (HV*)sv || GvAV(obj) == (AV*)sv ||
4685             GvCV(obj) == (CV*)sv || GvIOp(obj) == (IO*)sv ||
4686             GvFORM(obj) == (CV*)sv)))
4687     {
4688         mg->mg_obj = obj;
4689     }
4690     else {
4691         mg->mg_obj = SvREFCNT_inc_simple(obj);
4692         mg->mg_flags |= MGf_REFCOUNTED;
4693     }
4694
4695     /* Normal self-ties simply pass a null object, and instead of
4696        using mg_obj directly, use the SvTIED_obj macro to produce a
4697        new RV as needed.  For glob "self-ties", we are tieing the PVIO
4698        with an RV obj pointing to the glob containing the PVIO.  In
4699        this case, to avoid a reference loop, we need to weaken the
4700        reference.
4701     */
4702
4703     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
4704         obj && SvROK(obj) && GvIO(SvRV(obj)) == (IO*)sv)
4705     {
4706       sv_rvweaken(obj);
4707     }
4708
4709     mg->mg_type = how;
4710     mg->mg_len = namlen;
4711     if (name) {
4712         if (namlen > 0)
4713             mg->mg_ptr = savepvn(name, namlen);
4714         else if (namlen == HEf_SVKEY)
4715             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV*)name);
4716         else
4717             mg->mg_ptr = (char *) name;
4718     }
4719     mg->mg_virtual = (MGVTBL *) vtable;
4720
4721     mg_magical(sv);
4722     if (SvGMAGICAL(sv))
4723         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
4724     return mg;
4725 }
4726
4727 /*
4728 =for apidoc sv_magic
4729
4730 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
4731 then adds a new magic item of type C<how> to the head of the magic list.
4732
4733 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
4734 handling of the C<name> and C<namlen> arguments.
4735
4736 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
4737 to add more than one instance of the same 'how'.
4738
4739 =cut
4740 */
4741
4742 void
4743 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
4744              const char *const name, const I32 namlen)
4745 {
4746     dVAR;
4747     const MGVTBL *vtable;
4748     MAGIC* mg;
4749
4750     PERL_ARGS_ASSERT_SV_MAGIC;
4751
4752 #ifdef PERL_OLD_COPY_ON_WRITE
4753     if (SvIsCOW(sv))
4754         sv_force_normal_flags(sv, 0);
4755 #endif
4756     if (SvREADONLY(sv)) {
4757         if (
4758             /* its okay to attach magic to shared strings; the subsequent
4759              * upgrade to PVMG will unshare the string */
4760             !(SvFAKE(sv) && SvTYPE(sv) < SVt_PVMG)
4761
4762             && IN_PERL_RUNTIME
4763             && how != PERL_MAGIC_regex_global
4764             && how != PERL_MAGIC_bm
4765             && how != PERL_MAGIC_fm
4766             && how != PERL_MAGIC_sv
4767             && how != PERL_MAGIC_backref
4768            )
4769         {
4770             Perl_croak(aTHX_ PL_no_modify);
4771         }
4772     }
4773     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
4774         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
4775             /* sv_magic() refuses to add a magic of the same 'how' as an
4776                existing one
4777              */
4778             if (how == PERL_MAGIC_taint) {
4779                 mg->mg_len |= 1;
4780                 /* Any scalar which already had taint magic on which someone
4781                    (erroneously?) did SvIOK_on() or similar will now be
4782                    incorrectly sporting public "OK" flags.  */
4783                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
4784             }
4785             return;
4786         }
4787     }
4788
4789     switch (how) {
4790     case PERL_MAGIC_sv:
4791         vtable = &PL_vtbl_sv;
4792         break;
4793     case PERL_MAGIC_overload:
4794         vtable = &PL_vtbl_amagic;
4795         break;
4796     case PERL_MAGIC_overload_elem:
4797         vtable = &PL_vtbl_amagicelem;
4798         break;
4799     case PERL_MAGIC_overload_table:
4800         vtable = &PL_vtbl_ovrld;
4801         break;
4802     case PERL_MAGIC_bm:
4803         vtable = &PL_vtbl_bm;
4804         break;
4805     case PERL_MAGIC_regdata:
4806         vtable = &PL_vtbl_regdata;
4807         break;
4808     case PERL_MAGIC_regdatum:
4809         vtable = &PL_vtbl_regdatum;
4810         break;
4811     case PERL_MAGIC_env:
4812         vtable = &PL_vtbl_env;
4813         break;
4814     case PERL_MAGIC_fm:
4815         vtable = &PL_vtbl_fm;
4816         break;
4817     case PERL_MAGIC_envelem:
4818         vtable = &PL_vtbl_envelem;
4819         break;
4820     case PERL_MAGIC_regex_global:
4821         vtable = &PL_vtbl_mglob;
4822         break;
4823     case PERL_MAGIC_isa:
4824         vtable = &PL_vtbl_isa;
4825         break;
4826     case PERL_MAGIC_isaelem:
4827         vtable = &PL_vtbl_isaelem;
4828         break;
4829     case PERL_MAGIC_nkeys:
4830         vtable = &PL_vtbl_nkeys;
4831         break;
4832     case PERL_MAGIC_dbfile:
4833         vtable = NULL;
4834         break;
4835     case PERL_MAGIC_dbline:
4836         vtable = &PL_vtbl_dbline;
4837         break;
4838 #ifdef USE_LOCALE_COLLATE
4839     case PERL_MAGIC_collxfrm:
4840         vtable = &PL_vtbl_collxfrm;
4841         break;
4842 #endif /* USE_LOCALE_COLLATE */
4843     case PERL_MAGIC_tied:
4844         vtable = &PL_vtbl_pack;
4845         break;
4846     case PERL_MAGIC_tiedelem:
4847     case PERL_MAGIC_tiedscalar:
4848         vtable = &PL_vtbl_packelem;
4849         break;
4850     case PERL_MAGIC_qr:
4851         vtable = &PL_vtbl_regexp;
4852         break;
4853     case PERL_MAGIC_hints:
4854         /* As this vtable is all NULL, we can reuse it.  */
4855     case PERL_MAGIC_sig:
4856         vtable = &PL_vtbl_sig;
4857         break;
4858     case PERL_MAGIC_sigelem:
4859         vtable = &PL_vtbl_sigelem;
4860         break;
4861     case PERL_MAGIC_taint:
4862         vtable = &PL_vtbl_taint;
4863         break;
4864     case PERL_MAGIC_uvar:
4865         vtable = &PL_vtbl_uvar;
4866         break;
4867     case PERL_MAGIC_vec:
4868         vtable = &PL_vtbl_vec;
4869         break;
4870     case PERL_MAGIC_arylen_p:
4871     case PERL_MAGIC_rhash:
4872     case PERL_MAGIC_symtab:
4873     case PERL_MAGIC_vstring:
4874         vtable = NULL;
4875         break;
4876     case PERL_MAGIC_utf8:
4877         vtable = &PL_vtbl_utf8;
4878         break;
4879     case PERL_MAGIC_substr:
4880         vtable = &PL_vtbl_substr;
4881         break;
4882     case PERL_MAGIC_defelem:
4883         vtable = &PL_vtbl_defelem;
4884         break;
4885     case PERL_MAGIC_arylen:
4886         vtable = &PL_vtbl_arylen;
4887         break;
4888     case PERL_MAGIC_pos:
4889         vtable = &PL_vtbl_pos;
4890         break;
4891     case PERL_MAGIC_backref:
4892         vtable = &PL_vtbl_backref;
4893         break;
4894     case PERL_MAGIC_hintselem:
4895         vtable = &PL_vtbl_hintselem;
4896         break;
4897     case PERL_MAGIC_ext:
4898         /* Reserved for use by extensions not perl internals.           */
4899         /* Useful for attaching extension internal data to perl vars.   */
4900         /* Note that multiple extensions may clash if magical scalars   */
4901         /* etc holding private data from one are passed to another.     */
4902         vtable = NULL;
4903         break;
4904     default:
4905         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
4906     }
4907
4908     /* Rest of work is done else where */
4909     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
4910
4911     switch (how) {
4912     case PERL_MAGIC_taint:
4913         mg->mg_len = 1;
4914         break;
4915     case PERL_MAGIC_ext:
4916     case PERL_MAGIC_dbfile:
4917         SvRMAGICAL_on(sv);
4918         break;
4919     }
4920 }
4921
4922 /*
4923 =for apidoc sv_unmagic
4924
4925 Removes all magic of type C<type> from an SV.
4926
4927 =cut
4928 */
4929
4930 int
4931 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
4932 {
4933     MAGIC* mg;
4934     MAGIC** mgp;
4935
4936     PERL_ARGS_ASSERT_SV_UNMAGIC;
4937
4938     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
4939         return 0;
4940     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
4941     for (mg = *mgp; mg; mg = *mgp) {
4942         if (mg->mg_type == type) {
4943             const MGVTBL* const vtbl = mg->mg_virtual;
4944             *mgp = mg->mg_moremagic;
4945             if (vtbl && vtbl->svt_free)
4946                 CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg);
4947             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
4948                 if (mg->mg_len > 0)
4949                     Safefree(mg->mg_ptr);
4950                 else if (mg->mg_len == HEf_SVKEY)
4951                     SvREFCNT_dec((SV*)mg->mg_ptr);
4952                 else if (mg->mg_type == PERL_MAGIC_utf8)
4953                     Safefree(mg->mg_ptr);
4954             }
4955             if (mg->mg_flags & MGf_REFCOUNTED)
4956                 SvREFCNT_dec(mg->mg_obj);
4957             Safefree(mg);
4958         }
4959         else
4960             mgp = &mg->mg_moremagic;
4961     }
4962     if (!SvMAGIC(sv)) {
4963         SvMAGICAL_off(sv);
4964         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
4965         SvMAGIC_set(sv, NULL);
4966     }
4967
4968     return 0;
4969 }
4970
4971 /*
4972 =for apidoc sv_rvweaken
4973
4974 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
4975 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
4976 push a back-reference to this RV onto the array of backreferences
4977 associated with that magic. If the RV is magical, set magic will be
4978 called after the RV is cleared.
4979
4980 =cut
4981 */
4982
4983 SV *
4984 Perl_sv_rvweaken(pTHX_ SV *const sv)
4985 {
4986     SV *tsv;
4987
4988     PERL_ARGS_ASSERT_SV_RVWEAKEN;
4989
4990     if (!SvOK(sv))  /* let undefs pass */
4991         return sv;
4992     if (!SvROK(sv))
4993         Perl_croak(aTHX_ "Can't weaken a nonreference");
4994     else if (SvWEAKREF(sv)) {
4995         if (ckWARN(WARN_MISC))
4996             Perl_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
4997         return sv;
4998     }
4999     tsv = SvRV(sv);
5000     Perl_sv_add_backref(aTHX_ tsv, sv);
5001     SvWEAKREF_on(sv);
5002     SvREFCNT_dec(tsv);
5003     return sv;
5004 }
5005
5006 /* Give tsv backref magic if it hasn't already got it, then push a
5007  * back-reference to sv onto the array associated with the backref magic.
5008  */
5009
5010 void
5011 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5012 {
5013     dVAR;
5014     AV *av;
5015
5016     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5017
5018     if (SvTYPE(tsv) == SVt_PVHV) {
5019         AV **const avp = Perl_hv_backreferences_p(aTHX_ (HV*)tsv);
5020
5021         av = *avp;
5022         if (!av) {
5023             /* There is no AV in the offical place - try a fixup.  */
5024             MAGIC *const mg = mg_find(tsv, PERL_MAGIC_backref);
5025
5026             if (mg) {
5027                 /* Aha. They've got it stowed in magic.  Bring it back.  */
5028                 av = (AV*)mg->mg_obj;
5029                 /* Stop mg_free decreasing the refernce count.  */
5030                 mg->mg_obj = NULL;
5031                 /* Stop mg_free even calling the destructor, given that
5032                    there's no AV to free up.  */
5033                 mg->mg_virtual = 0;
5034                 sv_unmagic(tsv, PERL_MAGIC_backref);
5035             } else {
5036                 av = newAV();
5037                 AvREAL_off(av);
5038                 SvREFCNT_inc_simple_void(av);
5039             }
5040             *avp = av;
5041         }
5042     } else {
5043         const MAGIC *const mg
5044             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5045         if (mg)
5046             av = (AV*)mg->mg_obj;
5047         else {
5048             av = newAV();
5049             AvREAL_off(av);
5050             sv_magic(tsv, (SV*)av, PERL_MAGIC_backref, NULL, 0);
5051             /* av now has a refcnt of 2, which avoids it getting freed
5052              * before us during global cleanup. The extra ref is removed
5053              * by magic_killbackrefs() when tsv is being freed */
5054         }
5055     }
5056     if (AvFILLp(av) >= AvMAX(av)) {
5057         av_extend(av, AvFILLp(av)+1);
5058     }
5059     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5060 }
5061
5062 /* delete a back-reference to ourselves from the backref magic associated
5063  * with the SV we point to.
5064  */
5065
5066 STATIC void
5067 S_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5068 {
5069     dVAR;
5070     AV *av = NULL;
5071     SV **svp;
5072     I32 i;
5073
5074     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5075
5076     if (SvTYPE(tsv) == SVt_PVHV && SvOOK(tsv)) {
5077         av = *Perl_hv_backreferences_p(aTHX_ (HV*)tsv);
5078         /* We mustn't attempt to "fix up" the hash here by moving the
5079            backreference array back to the hv_aux structure, as that is stored
5080            in the main HvARRAY(), and hfreentries assumes that no-one
5081            reallocates HvARRAY() while it is running.  */
5082     }
5083     if (!av) {
5084         const MAGIC *const mg
5085             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5086         if (mg)
5087             av = (AV *)mg->mg_obj;
5088     }
5089
5090     if (!av)
5091         Perl_croak(aTHX_ "panic: del_backref");
5092
5093     assert(!SvIS_FREED(av));
5094
5095     svp = AvARRAY(av);
5096     /* We shouldn't be in here more than once, but for paranoia reasons lets
5097        not assume this.  */
5098     for (i = AvFILLp(av); i >= 0; i--) {
5099         if (svp[i] == sv) {
5100             const SSize_t fill = AvFILLp(av);
5101             if (i != fill) {
5102                 /* We weren't the last entry.
5103                    An unordered list has this property that you can take the
5104                    last element off the end to fill the hole, and it's still
5105                    an unordered list :-)
5106                 */
5107                 svp[i] = svp[fill];
5108             }
5109             svp[fill] = NULL;
5110             AvFILLp(av) = fill - 1;
5111         }
5112     }
5113 }
5114
5115 int
5116 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5117 {
5118     SV **svp = AvARRAY(av);
5119
5120     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5121     PERL_UNUSED_ARG(sv);
5122
5123     assert(!svp || !SvIS_FREED(av));
5124     if (svp) {
5125         SV *const *const last = svp + AvFILLp(av);
5126
5127         while (svp <= last) {
5128             if (*svp) {
5129                 SV *const referrer = *svp;
5130                 if (SvWEAKREF(referrer)) {
5131                     /* XXX Should we check that it hasn't changed? */
5132                     SvRV_set(referrer, 0);
5133                     SvOK_off(referrer);
5134                     SvWEAKREF_off(referrer);
5135                     SvSETMAGIC(referrer);
5136                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5137                            SvTYPE(referrer) == SVt_PVLV) {
5138                     /* You lookin' at me?  */
5139                     assert(GvSTASH(referrer));
5140                     assert(GvSTASH(referrer) == (HV*)sv);
5141                     GvSTASH(referrer) = 0;
5142                 } else {
5143                     Perl_croak(aTHX_
5144                                "panic: magic_killbackrefs (flags=%"UVxf")",
5145                                (UV)SvFLAGS(referrer));
5146                 }
5147
5148                 *svp = NULL;
5149             }
5150             svp++;
5151         }
5152     }
5153     SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5154     return 0;
5155 }
5156
5157 /*
5158 =for apidoc sv_insert
5159
5160 Inserts a string at the specified offset/length within the SV. Similar to
5161 the Perl substr() function. Handles get magic.
5162
5163 =for apidoc sv_insert_flags
5164
5165 Same as C<sv_insert>, but the extra C<flags> are passed the C<SvPV_force_flags> that applies to C<bigstr>.
5166
5167 =cut
5168 */
5169
5170 void
5171 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5172 {
5173     dVAR;
5174     register char *big;
5175     register char *mid;
5176     register char *midend;
5177     register char *bigend;
5178     register I32 i;
5179     STRLEN curlen;
5180
5181     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5182
5183     if (!bigstr)
5184         Perl_croak(aTHX_ "Can't modify non-existent substring");
5185     SvPV_force_flags(bigstr, curlen, flags);
5186     (void)SvPOK_only_UTF8(bigstr);
5187     if (offset + len > curlen) {
5188         SvGROW(bigstr, offset+len+1);
5189         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5190         SvCUR_set(bigstr, offset+len);
5191     }
5192
5193     SvTAINT(bigstr);
5194     i = littlelen - len;
5195     if (i > 0) {                        /* string might grow */
5196         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5197         mid = big + offset + len;
5198         midend = bigend = big + SvCUR(bigstr);
5199         bigend += i;
5200         *bigend = '\0';
5201         while (midend > mid)            /* shove everything down */
5202             *--bigend = *--midend;
5203         Move(little,big+offset,littlelen,char);
5204         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5205         SvSETMAGIC(bigstr);
5206         return;
5207     }
5208     else if (i == 0) {
5209         Move(little,SvPVX(bigstr)+offset,len,char);
5210         SvSETMAGIC(bigstr);
5211         return;
5212     }
5213
5214     big = SvPVX(bigstr);
5215     mid = big + offset;
5216     midend = mid + len;
5217     bigend = big + SvCUR(bigstr);
5218
5219     if (midend > bigend)
5220         Perl_croak(aTHX_ "panic: sv_insert");
5221
5222     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5223         if (littlelen) {
5224             Move(little, mid, littlelen,char);
5225             mid += littlelen;
5226         }
5227         i = bigend - midend;
5228         if (i > 0) {
5229             Move(midend, mid, i,char);
5230             mid += i;
5231         }
5232         *mid = '\0';
5233         SvCUR_set(bigstr, mid - big);
5234     }
5235     else if ((i = mid - big)) { /* faster from front */
5236         midend -= littlelen;
5237         mid = midend;
5238         Move(big, midend - i, i, char);
5239         sv_chop(bigstr,midend-i);
5240         if (littlelen)
5241             Move(little, mid, littlelen,char);
5242     }
5243     else if (littlelen) {
5244         midend -= littlelen;
5245         sv_chop(bigstr,midend);
5246         Move(little,midend,littlelen,char);
5247     }
5248     else {
5249         sv_chop(bigstr,midend);
5250     }
5251     SvSETMAGIC(bigstr);
5252 }
5253
5254 /*
5255 =for apidoc sv_replace
5256
5257 Make the first argument a copy of the second, then delete the original.
5258 The target SV physically takes over ownership of the body of the source SV
5259 and inherits its flags; however, the target keeps any magic it owns,
5260 and any magic in the source is discarded.
5261 Note that this is a rather specialist SV copying operation; most of the
5262 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5263
5264 =cut
5265 */
5266
5267 void
5268 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5269 {
5270     dVAR;
5271     const U32 refcnt = SvREFCNT(sv);
5272
5273     PERL_ARGS_ASSERT_SV_REPLACE;
5274
5275     SV_CHECK_THINKFIRST_COW_DROP(sv);
5276     if (SvREFCNT(nsv) != 1) {
5277         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace() (%"
5278                    UVuf " != 1)", (UV) SvREFCNT(nsv));
5279     }
5280     if (SvMAGICAL(sv)) {
5281         if (SvMAGICAL(nsv))
5282             mg_free(nsv);
5283         else
5284             sv_upgrade(nsv, SVt_PVMG);
5285         SvMAGIC_set(nsv, SvMAGIC(sv));
5286         SvFLAGS(nsv) |= SvMAGICAL(sv);
5287         SvMAGICAL_off(sv);
5288         SvMAGIC_set(sv, NULL);
5289     }
5290     SvREFCNT(sv) = 0;
5291     sv_clear(sv);
5292     assert(!SvREFCNT(sv));
5293 #ifdef DEBUG_LEAKING_SCALARS
5294     sv->sv_flags  = nsv->sv_flags;
5295     sv->sv_any    = nsv->sv_any;
5296     sv->sv_refcnt = nsv->sv_refcnt;
5297     sv->sv_u      = nsv->sv_u;
5298 #else
5299     StructCopy(nsv,sv,SV);
5300 #endif
5301     if(SvTYPE(sv) == SVt_IV) {
5302         SvANY(sv)
5303             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5304     }
5305         
5306
5307 #ifdef PERL_OLD_COPY_ON_WRITE
5308     if (SvIsCOW_normal(nsv)) {
5309         /* We need to follow the pointers around the loop to make the
5310            previous SV point to sv, rather than nsv.  */
5311         SV *next;
5312         SV *current = nsv;
5313         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5314             assert(next);
5315             current = next;
5316             assert(SvPVX_const(current) == SvPVX_const(nsv));
5317         }
5318         /* Make the SV before us point to the SV after us.  */
5319         if (DEBUG_C_TEST) {
5320             PerlIO_printf(Perl_debug_log, "previous is\n");
5321             sv_dump(current);
5322             PerlIO_printf(Perl_debug_log,
5323                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5324                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5325         }
5326         SV_COW_NEXT_SV_SET(current, sv);
5327     }
5328 #endif
5329     SvREFCNT(sv) = refcnt;
5330     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5331     SvREFCNT(nsv) = 0;
5332     del_SV(nsv);
5333 }
5334
5335 /*
5336 =for apidoc sv_clear
5337
5338 Clear an SV: call any destructors, free up any memory used by the body,
5339 and free the body itself. The SV's head is I<not> freed, although
5340 its type is set to all 1's so that it won't inadvertently be assumed
5341 to be live during global destruction etc.
5342 This function should only be called when REFCNT is zero. Most of the time
5343 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5344 instead.
5345
5346 =cut
5347 */
5348
5349 void
5350 Perl_sv_clear(pTHX_ register SV *const sv)
5351 {
5352     dVAR;
5353     const U32 type = SvTYPE(sv);
5354     const struct body_details *const sv_type_details
5355         = bodies_by_type + type;
5356     HV *stash;
5357
5358     PERL_ARGS_ASSERT_SV_CLEAR;
5359     assert(SvREFCNT(sv) == 0);
5360     assert(SvTYPE(sv) != SVTYPEMASK);
5361
5362     if (type <= SVt_IV) {
5363         /* See the comment in sv.h about the collusion between this early
5364            return and the overloading of the NULL and IV slots in the size
5365            table.  */
5366         if (SvROK(sv)) {
5367             SV * const target = SvRV(sv);
5368             if (SvWEAKREF(sv))
5369                 sv_del_backref(target, sv);
5370             else
5371                 SvREFCNT_dec(target);
5372         }
5373         SvFLAGS(sv) &= SVf_BREAK;
5374         SvFLAGS(sv) |= SVTYPEMASK;
5375         return;
5376     }
5377
5378     if (SvOBJECT(sv)) {
5379         if (PL_defstash &&      /* Still have a symbol table? */
5380             SvDESTROYABLE(sv))
5381         {
5382             dSP;
5383             HV* stash;
5384             do {        
5385                 CV* destructor;
5386                 stash = SvSTASH(sv);
5387                 destructor = StashHANDLER(stash,DESTROY);
5388                 if (destructor) {
5389                     SV* const tmpref = newRV(sv);
5390                     SvREADONLY_on(tmpref);   /* DESTROY() could be naughty */
5391                     ENTER;
5392                     PUSHSTACKi(PERLSI_DESTROY);
5393                     EXTEND(SP, 2);
5394                     PUSHMARK(SP);
5395                     PUSHs(tmpref);
5396                     PUTBACK;
5397                     call_sv((SV*)destructor, G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
5398                 
5399                 
5400                     POPSTACK;
5401                     SPAGAIN;
5402                     LEAVE;
5403                     if(SvREFCNT(tmpref) < 2) {
5404                         /* tmpref is not kept alive! */
5405                         SvREFCNT(sv)--;
5406                         SvRV_set(tmpref, NULL);
5407                         SvROK_off(tmpref);
5408                     }
5409                     SvREFCNT_dec(tmpref);
5410                 }
5411             } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
5412
5413
5414             if (SvREFCNT(sv)) {
5415                 if (PL_in_clean_objs)
5416                     Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
5417                           HvNAME_get(stash));
5418                 /* DESTROY gave object new lease on life */
5419                 return;
5420             }
5421         }
5422
5423         if (SvOBJECT(sv)) {
5424             SvREFCNT_dec(SvSTASH(sv));  /* possibly of changed persuasion */
5425             SvOBJECT_off(sv);   /* Curse the object. */
5426             if (type != SVt_PVIO)
5427                 --PL_sv_objcount;       /* XXX Might want something more general */
5428         }
5429     }
5430     if (type >= SVt_PVMG) {
5431         if (type == SVt_PVMG && SvPAD_OUR(sv)) {
5432             SvREFCNT_dec(SvOURSTASH(sv));
5433         } else if (SvMAGIC(sv))
5434             mg_free(sv);
5435         if (type == SVt_PVMG && SvPAD_TYPED(sv))
5436             SvREFCNT_dec(SvSTASH(sv));
5437     }
5438     switch (type) {
5439         /* case SVt_BIND: */
5440     case SVt_PVIO:
5441         if (IoIFP(sv) &&
5442             IoIFP(sv) != PerlIO_stdin() &&
5443             IoIFP(sv) != PerlIO_stdout() &&
5444             IoIFP(sv) != PerlIO_stderr())
5445         {
5446             io_close((IO*)sv, FALSE);
5447         }
5448         if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5449             PerlDir_close(IoDIRP(sv));
5450         IoDIRP(sv) = (DIR*)NULL;
5451         Safefree(IoTOP_NAME(sv));
5452         Safefree(IoFMT_NAME(sv));
5453         Safefree(IoBOTTOM_NAME(sv));
5454         goto freescalar;
5455     case SVt_REGEXP:
5456         /* FIXME for plugins */
5457         pregfree2((REGEXP*) sv);
5458         goto freescalar;
5459     case SVt_PVCV:
5460     case SVt_PVFM:
5461         cv_undef((CV*)sv);
5462         goto freescalar;
5463     case SVt_PVHV:
5464         Perl_hv_kill_backrefs(aTHX_ (HV*)sv);
5465         hv_undef((HV*)sv);
5466         break;
5467     case SVt_PVAV:
5468         if (PL_comppad == (AV*)sv) {
5469             PL_comppad = NULL;
5470             PL_curpad = NULL;
5471         }
5472         av_undef((AV*)sv);
5473         break;
5474     case SVt_PVLV:
5475         if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
5476             SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
5477             HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
5478             PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
5479         }
5480         else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
5481             SvREFCNT_dec(LvTARG(sv));
5482     case SVt_PVGV:
5483         if (isGV_with_GP(sv)) {
5484             if(GvCVu((GV*)sv) && (stash = GvSTASH((GV*)sv)) && HvNAME_get(stash))
5485                 mro_method_changed_in(stash);
5486             gp_free((GV*)sv);
5487             if (GvNAME_HEK(sv))
5488                 unshare_hek(GvNAME_HEK(sv));
5489             /* If we're in a stash, we don't own a reference to it. However it does
5490                have a back reference to us, which needs to be cleared.  */
5491             if (!SvVALID(sv) && (stash = GvSTASH(sv)))
5492                     sv_del_backref((SV*)stash, sv);
5493         }
5494         /* FIXME. There are probably more unreferenced pointers to SVs in the
5495            interpreter struct that we should check and tidy in a similar
5496            fashion to this:  */
5497         if ((GV*)sv == PL_last_in_gv)
5498             PL_last_in_gv = NULL;
5499     case SVt_PVMG:
5500     case SVt_PVNV:
5501     case SVt_PVIV:
5502     case SVt_PV:
5503       freescalar:
5504         /* Don't bother with SvOOK_off(sv); as we're only going to free it.  */
5505         if (SvOOK(sv)) {
5506             STRLEN offset;
5507             SvOOK_offset(sv, offset);
5508             SvPV_set(sv, SvPVX_mutable(sv) - offset);
5509             /* Don't even bother with turning off the OOK flag.  */
5510         }
5511         if (SvROK(sv)) {
5512             SV * const target = SvRV(sv);
5513             if (SvWEAKREF(sv))
5514                 sv_del_backref(target, sv);
5515             else
5516                 SvREFCNT_dec(target);
5517         }
5518 #ifdef PERL_OLD_COPY_ON_WRITE
5519         else if (SvPVX_const(sv)) {
5520             if (SvIsCOW(sv)) {
5521                 /* I believe I need to grab the global SV mutex here and
5522                    then recheck the COW status.  */
5523                 if (DEBUG_C_TEST) {
5524                     PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
5525                     sv_dump(sv);
5526                 }
5527                 if (SvLEN(sv)) {
5528                     sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
5529                 } else {
5530                     unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5531                 }
5532
5533                 /* And drop it here.  */
5534                 SvFAKE_off(sv);
5535             } else if (SvLEN(sv)) {
5536                 Safefree(SvPVX_const(sv));
5537             }
5538         }
5539 #else
5540         else if (SvPVX_const(sv) && SvLEN(sv))
5541             Safefree(SvPVX_mutable(sv));
5542         else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
5543             unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5544             SvFAKE_off(sv);
5545         }
5546 #endif
5547         break;
5548     case SVt_NV:
5549         break;
5550     }
5551
5552     SvFLAGS(sv) &= SVf_BREAK;
5553     SvFLAGS(sv) |= SVTYPEMASK;
5554
5555     if (sv_type_details->arena) {
5556         del_body(((char *)SvANY(sv) + sv_type_details->offset),
5557                  &PL_body_roots[type]);
5558     }
5559     else if (sv_type_details->body_size) {
5560         my_safefree(SvANY(sv));
5561     }
5562 }
5563
5564 /*
5565 =for apidoc sv_newref
5566
5567 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5568 instead.
5569
5570 =cut
5571 */
5572
5573 SV *
5574 Perl_sv_newref(pTHX_ SV *const sv)
5575 {
5576     PERL_UNUSED_CONTEXT;
5577     if (sv)
5578         (SvREFCNT(sv))++;
5579     return sv;
5580 }
5581
5582 /*
5583 =for apidoc sv_free
5584
5585 Decrement an SV's reference count, and if it drops to zero, call
5586 C<sv_clear> to invoke destructors and free up any memory used by
5587 the body; finally, deallocate the SV's head itself.
5588 Normally called via a wrapper macro C<SvREFCNT_dec>.
5589
5590 =cut
5591 */
5592
5593 void
5594 Perl_sv_free(pTHX_ SV *const sv)
5595 {
5596     dVAR;
5597     if (!sv)
5598         return;
5599     if (SvREFCNT(sv) == 0) {
5600         if (SvFLAGS(sv) & SVf_BREAK)
5601             /* this SV's refcnt has been artificially decremented to
5602              * trigger cleanup */
5603             return;
5604         if (PL_in_clean_all) /* All is fair */
5605             return;
5606         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5607             /* make sure SvREFCNT(sv)==0 happens very seldom */
5608             SvREFCNT(sv) = (~(U32)0)/2;
5609             return;
5610         }
5611         if (ckWARN_d(WARN_INTERNAL)) {
5612 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
5613             Perl_dump_sv_child(aTHX_ sv);
5614 #else
5615   #ifdef DEBUG_LEAKING_SCALARS
5616             sv_dump(sv);
5617   #endif
5618 #ifdef DEBUG_LEAKING_SCALARS_ABORT
5619             if (PL_warnhook == PERL_WARNHOOK_FATAL
5620                 || ckDEAD(packWARN(WARN_INTERNAL))) {
5621                 /* Don't let Perl_warner cause us to escape our fate:  */
5622                 abort();
5623             }
5624 #endif
5625             /* This may not return:  */
5626             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
5627                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
5628                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
5629 #endif
5630         }
5631 #ifdef DEBUG_LEAKING_SCALARS_ABORT
5632         abort();
5633 #endif
5634         return;
5635     }
5636     if (--(SvREFCNT(sv)) > 0)
5637         return;
5638     Perl_sv_free2(aTHX_ sv);
5639 }
5640
5641 void
5642 Perl_sv_free2(pTHX_ SV *const sv)
5643 {
5644     dVAR;
5645
5646     PERL_ARGS_ASSERT_SV_FREE2;
5647
5648 #ifdef DEBUGGING
5649     if (SvTEMP(sv)) {
5650         if (ckWARN_d(WARN_DEBUGGING))
5651             Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
5652                         "Attempt to free temp prematurely: SV 0x%"UVxf
5653                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
5654         return;
5655     }
5656 #endif
5657     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5658         /* make sure SvREFCNT(sv)==0 happens very seldom */
5659         SvREFCNT(sv) = (~(U32)0)/2;
5660         return;
5661     }
5662     sv_clear(sv);
5663     if (! SvREFCNT(sv))
5664         del_SV(sv);
5665 }
5666
5667 /*
5668 =for apidoc sv_len
5669
5670 Returns the length of the string in the SV. Handles magic and type
5671 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
5672
5673 =cut
5674 */
5675
5676 STRLEN
5677 Perl_sv_len(pTHX_ register SV *const sv)
5678 {
5679     STRLEN len;
5680
5681     if (!sv)
5682         return 0;
5683
5684     if (SvGMAGICAL(sv))
5685         len = mg_length(sv);
5686     else
5687         (void)SvPV_const(sv, len);
5688     return len;
5689 }
5690
5691 /*
5692 =for apidoc sv_len_utf8
5693
5694 Returns the number of characters in the string in an SV, counting wide
5695 UTF-8 bytes as a single character. Handles magic and type coercion.
5696
5697 =cut
5698 */
5699
5700 /*
5701  * The length is cached in PERL_UTF8_magic, in the mg_len field.  Also the
5702  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
5703  * (Note that the mg_len is not the length of the mg_ptr field.
5704  * This allows the cache to store the character length of the string without
5705  * needing to malloc() extra storage to attach to the mg_ptr.)
5706  *
5707  */
5708
5709 STRLEN
5710 Perl_sv_len_utf8(pTHX_ register SV *const sv)
5711 {
5712     if (!sv)
5713         return 0;
5714
5715     if (SvGMAGICAL(sv))
5716         return mg_length(sv);
5717     else
5718     {
5719         STRLEN len;
5720         const U8 *s = (U8*)SvPV_const(sv, len);
5721
5722         if (PL_utf8cache) {
5723             STRLEN ulen;
5724             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
5725
5726             if (mg && mg->mg_len != -1) {
5727                 ulen = mg->mg_len;
5728                 if (PL_utf8cache < 0) {
5729                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
5730                     if (real != ulen) {
5731                         /* Need to turn the assertions off otherwise we may
5732                            recurse infinitely while printing error messages.
5733                         */
5734                         SAVEI8(PL_utf8cache);
5735                         PL_utf8cache = 0;
5736                         Perl_croak(aTHX_ "panic: sv_len_utf8 cache %"UVuf
5737                                    " real %"UVuf" for %"SVf,
5738                                    (UV) ulen, (UV) real, SVfARG(sv));
5739                     }
5740                 }
5741             }
5742             else {
5743                 ulen = Perl_utf8_length(aTHX_ s, s + len);
5744                 if (!SvREADONLY(sv)) {
5745                     if (!mg) {
5746                         mg = sv_magicext(sv, 0, PERL_MAGIC_utf8,
5747                                          &PL_vtbl_utf8, 0, 0);
5748                     }
5749                     assert(mg);
5750                     mg->mg_len = ulen;
5751                 }
5752             }
5753             return ulen;
5754         }
5755         return Perl_utf8_length(aTHX_ s, s + len);
5756     }
5757 }
5758
5759 /* Walk forwards to find the byte corresponding to the passed in UTF-8
5760    offset.  */
5761 static STRLEN
5762 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
5763                       STRLEN uoffset)
5764 {
5765     const U8 *s = start;
5766
5767     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
5768
5769     while (s < send && uoffset--)
5770         s += UTF8SKIP(s);
5771     if (s > send) {
5772         /* This is the existing behaviour. Possibly it should be a croak, as
5773            it's actually a bounds error  */
5774         s = send;
5775     }
5776     return s - start;
5777 }
5778
5779 /* Given the length of the string in both bytes and UTF-8 characters, decide
5780    whether to walk forwards or backwards to find the byte corresponding to
5781    the passed in UTF-8 offset.  */
5782 static STRLEN
5783 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
5784                       const STRLEN uoffset, const STRLEN uend)
5785 {
5786     STRLEN backw = uend - uoffset;
5787
5788     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
5789
5790     if (uoffset < 2 * backw) {
5791         /* The assumption is that going forwards is twice the speed of going
5792            forward (that's where the 2 * backw comes from).
5793            (The real figure of course depends on the UTF-8 data.)  */
5794         return sv_pos_u2b_forwards(start, send, uoffset);
5795     }
5796
5797     while (backw--) {
5798         send--;
5799         while (UTF8_IS_CONTINUATION(*send))
5800             send--;
5801     }
5802     return send - start;
5803 }
5804
5805 /* For the string representation of the given scalar, find the byte
5806    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
5807    give another position in the string, *before* the sought offset, which
5808    (which is always true, as 0, 0 is a valid pair of positions), which should
5809    help reduce the amount of linear searching.
5810    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
5811    will be used to reduce the amount of linear searching. The cache will be
5812    created if necessary, and the found value offered to it for update.  */
5813 static STRLEN
5814 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
5815                     const U8 *const send, const STRLEN uoffset,
5816                     STRLEN uoffset0, STRLEN boffset0)
5817 {
5818     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
5819     bool found = FALSE;
5820
5821     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
5822
5823     assert (uoffset >= uoffset0);
5824
5825     if (SvMAGICAL(sv) && !SvREADONLY(sv) && PL_utf8cache
5826         && (*mgp || (*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
5827         if ((*mgp)->mg_ptr) {
5828             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
5829             if (cache[0] == uoffset) {
5830                 /* An exact match. */
5831                 return cache[1];
5832             }
5833             if (cache[2] == uoffset) {
5834                 /* An exact match. */
5835                 return cache[3];
5836             }
5837
5838             if (cache[0] < uoffset) {
5839                 /* The cache already knows part of the way.   */
5840                 if (cache[0] > uoffset0) {
5841                     /* The cache knows more than the passed in pair  */
5842                     uoffset0 = cache[0];
5843                     boffset0 = cache[1];
5844                 }
5845                 if ((*mgp)->mg_len != -1) {
5846                     /* And we know the end too.  */
5847                     boffset = boffset0
5848                         + sv_pos_u2b_midway(start + boffset0, send,
5849                                               uoffset - uoffset0,
5850                                               (*mgp)->mg_len - uoffset0);
5851                 } else {
5852                     boffset = boffset0
5853                         + sv_pos_u2b_forwards(start + boffset0,
5854                                                 send, uoffset - uoffset0);
5855                 }
5856             }
5857             else if (cache[2] < uoffset) {
5858                 /* We're between the two cache entries.  */
5859                 if (cache[2] > uoffset0) {
5860                     /* and the cache knows more than the passed in pair  */
5861                     uoffset0 = cache[2];
5862                     boffset0 = cache[3];
5863                 }
5864
5865                 boffset = boffset0
5866                     + sv_pos_u2b_midway(start + boffset0,
5867                                           start + cache[1],
5868                                           uoffset - uoffset0,
5869                                           cache[0] - uoffset0);
5870             } else {
5871                 boffset = boffset0
5872                     + sv_pos_u2b_midway(start + boffset0,
5873                                           start + cache[3],
5874                                           uoffset - uoffset0,
5875                                           cache[2] - uoffset0);
5876             }
5877             found = TRUE;
5878         }
5879         else if ((*mgp)->mg_len != -1) {
5880             /* If we can take advantage of a passed in offset, do so.  */
5881             /* In fact, offset0 is either 0, or less than offset, so don't
5882                need to worry about the other possibility.  */
5883             boffset = boffset0
5884                 + sv_pos_u2b_midway(start + boffset0, send,
5885                                       uoffset - uoffset0,
5886                                       (*mgp)->mg_len - uoffset0);
5887             found = TRUE;
5888         }
5889     }
5890
5891     if (!found || PL_utf8cache < 0) {
5892         const STRLEN real_boffset
5893             = boffset0 + sv_pos_u2b_forwards(start + boffset0,
5894                                                send, uoffset - uoffset0);
5895
5896         if (found && PL_utf8cache < 0) {
5897             if (real_boffset != boffset) {
5898                 /* Need to turn the assertions off otherwise we may recurse
5899                    infinitely while printing error messages.  */
5900                 SAVEI8(PL_utf8cache);
5901                 PL_utf8cache = 0;
5902                 Perl_croak(aTHX_ "panic: sv_pos_u2b_cache cache %"UVuf
5903                            " real %"UVuf" for %"SVf,
5904                            (UV) boffset, (UV) real_boffset, SVfARG(sv));
5905             }
5906         }
5907         boffset = real_boffset;
5908     }
5909
5910     if (PL_utf8cache)
5911         utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
5912     return boffset;
5913 }
5914
5915
5916 /*
5917 =for apidoc sv_pos_u2b
5918
5919 Converts the value pointed to by offsetp from a count of UTF-8 chars from
5920 the start of the string, to a count of the equivalent number of bytes; if
5921 lenp is non-zero, it does the same to lenp, but this time starting from
5922 the offset, rather than from the start of the string. Handles magic and
5923 type coercion.
5924
5925 =cut
5926 */
5927
5928 /*
5929  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
5930  * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
5931  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
5932  *
5933  */
5934
5935 void
5936 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
5937 {
5938     const U8 *start;
5939     STRLEN len;
5940
5941     PERL_ARGS_ASSERT_SV_POS_U2B;
5942
5943     if (!sv)
5944         return;
5945
5946     start = (U8*)SvPV_const(sv, len);
5947     if (len) {
5948         STRLEN uoffset = (STRLEN) *offsetp;
5949         const U8 * const send = start + len;
5950         MAGIC *mg = NULL;
5951         const STRLEN boffset = sv_pos_u2b_cached(sv, &mg, start, send,
5952                                              uoffset, 0, 0);
5953
5954         *offsetp = (I32) boffset;
5955
5956         if (lenp) {
5957             /* Convert the relative offset to absolute.  */
5958             const STRLEN uoffset2 = uoffset + (STRLEN) *lenp;
5959             const STRLEN boffset2
5960                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
5961                                       uoffset, boffset) - boffset;
5962
5963             *lenp = boffset2;
5964         }
5965     }
5966     else {
5967          *offsetp = 0;
5968          if (lenp)
5969               *lenp = 0;
5970     }
5971
5972     return;
5973 }
5974
5975 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
5976    byte length pairing. The (byte) length of the total SV is passed in too,
5977    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
5978    may not have updated SvCUR, so we can't rely on reading it directly.
5979
5980    The proffered utf8/byte length pairing isn't used if the cache already has
5981    two pairs, and swapping either for the proffered pair would increase the
5982    RMS of the intervals between known byte offsets.
5983
5984    The cache itself consists of 4 STRLEN values
5985    0: larger UTF-8 offset
5986    1: corresponding byte offset
5987    2: smaller UTF-8 offset
5988    3: corresponding byte offset
5989
5990    Unused cache pairs have the value 0, 0.
5991    Keeping the cache "backwards" means that the invariant of
5992    cache[0] >= cache[2] is maintained even with empty slots, which means that
5993    the code that uses it doesn't need to worry if only 1 entry has actually
5994    been set to non-zero.  It also makes the "position beyond the end of the
5995    cache" logic much simpler, as the first slot is always the one to start
5996    from.   
5997 */
5998 static void
5999 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6000                            const STRLEN utf8, const STRLEN blen)
6001 {
6002     STRLEN *cache;
6003
6004     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6005
6006     if (SvREADONLY(sv))
6007         return;
6008
6009     if (!*mgp) {
6010         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6011                            0);
6012         (*mgp)->mg_len = -1;
6013     }
6014     assert(*mgp);
6015
6016     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6017         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6018         (*mgp)->mg_ptr = (char *) cache;
6019     }
6020     assert(cache);
6021
6022     if (PL_utf8cache < 0) {
6023         const U8 *start = (const U8 *) SvPVX_const(sv);
6024         const STRLEN realutf8 = utf8_length(start, start + byte);
6025
6026         if (realutf8 != utf8) {
6027             /* Need to turn the assertions off otherwise we may recurse
6028                infinitely while printing error messages.  */
6029             SAVEI8(PL_utf8cache);
6030             PL_utf8cache = 0;
6031             Perl_croak(aTHX_ "panic: utf8_mg_pos_cache_update cache %"UVuf
6032                        " real %"UVuf" for %"SVf, (UV) utf8, (UV) realutf8, SVfARG(sv));
6033         }
6034     }
6035
6036     /* Cache is held with the later position first, to simplify the code
6037        that deals with unbounded ends.  */
6038        
6039     ASSERT_UTF8_CACHE(cache);
6040     if (cache[1] == 0) {
6041         /* Cache is totally empty  */
6042         cache[0] = utf8;
6043         cache[1] = byte;
6044     } else if (cache[3] == 0) {
6045         if (byte > cache[1]) {
6046             /* New one is larger, so goes first.  */
6047             cache[2] = cache[0];
6048             cache[3] = cache[1];
6049             cache[0] = utf8;
6050             cache[1] = byte;
6051         } else {
6052             cache[2] = utf8;
6053             cache[3] = byte;
6054         }
6055     } else {
6056 #define THREEWAY_SQUARE(a,b,c,d) \
6057             ((float)((d) - (c))) * ((float)((d) - (c))) \
6058             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6059                + ((float)((b) - (a))) * ((float)((b) - (a)))
6060
6061         /* Cache has 2 slots in use, and we know three potential pairs.
6062            Keep the two that give the lowest RMS distance. Do the
6063            calcualation in bytes simply because we always know the byte
6064            length.  squareroot has the same ordering as the positive value,
6065            so don't bother with the actual square root.  */
6066         const float existing = THREEWAY_SQUARE(0, cache[3], cache[1], blen);
6067         if (byte > cache[1]) {
6068             /* New position is after the existing pair of pairs.  */
6069             const float keep_earlier
6070                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6071             const float keep_later
6072                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6073
6074             if (keep_later < keep_earlier) {
6075                 if (keep_later < existing) {
6076                     cache[2] = cache[0];
6077                     cache[3] = cache[1];
6078                     cache[0] = utf8;
6079                     cache[1] = byte;
6080                 }
6081             }
6082             else {
6083                 if (keep_earlier < existing) {
6084                     cache[0] = utf8;
6085                     cache[1] = byte;
6086                 }
6087             }
6088         }
6089         else if (byte > cache[3]) {
6090             /* New position is between the existing pair of pairs.  */
6091             const float keep_earlier
6092                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6093             const float keep_later
6094                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6095
6096             if (keep_later < keep_earlier) {
6097                 if (keep_later < existing) {
6098                     cache[2] = utf8;
6099                     cache[3] = byte;
6100                 }
6101             }
6102             else {
6103                 if (keep_earlier < existing) {
6104                     cache[0] = utf8;
6105                     cache[1] = byte;
6106                 }
6107             }
6108         }
6109         else {
6110             /* New position is before the existing pair of pairs.  */
6111             const float keep_earlier
6112                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
6113             const float keep_later
6114                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6115
6116             if (keep_later < keep_earlier) {
6117                 if (keep_later < existing) {
6118                     cache[2] = utf8;
6119                     cache[3] = byte;
6120                 }
6121             }
6122             else {
6123                 if (keep_earlier < existing) {
6124                     cache[0] = cache[2];
6125                     cache[1] = cache[3];
6126                     cache[2] = utf8;
6127                     cache[3] = byte;
6128                 }
6129             }
6130         }
6131     }
6132     ASSERT_UTF8_CACHE(cache);
6133 }
6134
6135 /* We already know all of the way, now we may be able to walk back.  The same
6136    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
6137    backward is half the speed of walking forward. */
6138 static STRLEN
6139 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
6140                     const U8 *end, STRLEN endu)
6141 {
6142     const STRLEN forw = target - s;
6143     STRLEN backw = end - target;
6144
6145     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
6146
6147     if (forw < 2 * backw) {
6148         return utf8_length(s, target);
6149     }
6150
6151     while (end > target) {
6152         end--;
6153         while (UTF8_IS_CONTINUATION(*end)) {
6154             end--;
6155         }
6156         endu--;
6157     }
6158     return endu;
6159 }
6160
6161 /*
6162 =for apidoc sv_pos_b2u
6163
6164 Converts the value pointed to by offsetp from a count of bytes from the
6165 start of the string, to a count of the equivalent number of UTF-8 chars.
6166 Handles magic and type coercion.
6167
6168 =cut
6169 */
6170
6171 /*
6172  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
6173  * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
6174  * byte offsets.
6175  *
6176  */
6177 void
6178 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
6179 {
6180     const U8* s;
6181     const STRLEN byte = *offsetp;
6182     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
6183     STRLEN blen;
6184     MAGIC* mg = NULL;
6185     const U8* send;
6186     bool found = FALSE;
6187
6188     PERL_ARGS_ASSERT_SV_POS_B2U;
6189
6190     if (!sv)
6191         return;
6192
6193     s = (const U8*)SvPV_const(sv, blen);
6194
6195     if (blen < byte)
6196         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
6197
6198     send = s + byte;
6199
6200     if (SvMAGICAL(sv) && !SvREADONLY(sv) && PL_utf8cache
6201         && (mg = mg_find(sv, PERL_MAGIC_utf8))) {
6202         if (mg->mg_ptr) {
6203             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
6204             if (cache[1] == byte) {
6205                 /* An exact match. */
6206                 *offsetp = cache[0];
6207                 return;
6208             }
6209             if (cache[3] == byte) {
6210                 /* An exact match. */
6211                 *offsetp = cache[2];
6212                 return;
6213             }
6214
6215             if (cache[1] < byte) {
6216                 /* We already know part of the way. */
6217                 if (mg->mg_len != -1) {
6218                     /* Actually, we know the end too.  */
6219                     len = cache[0]
6220                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
6221                                               s + blen, mg->mg_len - cache[0]);
6222                 } else {
6223                     len = cache[0] + utf8_length(s + cache[1], send);
6224                 }
6225             }
6226             else if (cache[3] < byte) {
6227                 /* We're between the two cached pairs, so we do the calculation
6228                    offset by the byte/utf-8 positions for the earlier pair,
6229                    then add the utf-8 characters from the string start to
6230                    there.  */
6231                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
6232                                           s + cache[1], cache[0] - cache[2])
6233                     + cache[2];
6234
6235             }
6236             else { /* cache[3] > byte */
6237                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
6238                                           cache[2]);
6239
6240             }
6241             ASSERT_UTF8_CACHE(cache);
6242             found = TRUE;
6243         } else if (mg->mg_len != -1) {
6244             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
6245             found = TRUE;
6246         }
6247     }
6248     if (!found || PL_utf8cache < 0) {
6249         const STRLEN real_len = utf8_length(s, send);
6250
6251         if (found && PL_utf8cache < 0) {
6252             if (len != real_len) {
6253                 /* Need to turn the assertions off otherwise we may recurse
6254                    infinitely while printing error messages.  */
6255                 SAVEI8(PL_utf8cache);
6256                 PL_utf8cache = 0;
6257                 Perl_croak(aTHX_ "panic: sv_pos_b2u cache %"UVuf
6258                            " real %"UVuf" for %"SVf,
6259                            (UV) len, (UV) real_len, SVfARG(sv));
6260             }
6261         }
6262         len = real_len;
6263     }
6264     *offsetp = len;
6265
6266     if (PL_utf8cache)
6267         utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
6268 }
6269
6270 /*
6271 =for apidoc sv_eq
6272
6273 Returns a boolean indicating whether the strings in the two SVs are
6274 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6275 coerce its args to strings if necessary.
6276
6277 =cut
6278 */
6279
6280 I32
6281 Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2)
6282 {
6283     dVAR;
6284     const char *pv1;
6285     STRLEN cur1;
6286     const char *pv2;
6287     STRLEN cur2;
6288     I32  eq     = 0;
6289     char *tpv   = NULL;
6290     SV* svrecode = NULL;
6291
6292     if (!sv1) {
6293         pv1 = "";
6294         cur1 = 0;
6295     }
6296     else {
6297         /* if pv1 and pv2 are the same, second SvPV_const call may
6298          * invalidate pv1, so we may need to make a copy */
6299         if (sv1 == sv2 && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
6300             pv1 = SvPV_const(sv1, cur1);
6301             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
6302         }
6303         pv1 = SvPV_const(sv1, cur1);
6304     }
6305
6306     if (!sv2){
6307         pv2 = "";
6308         cur2 = 0;
6309     }
6310     else
6311         pv2 = SvPV_const(sv2, cur2);
6312
6313     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6314         /* Differing utf8ness.
6315          * Do not UTF8size the comparands as a side-effect. */
6316          if (PL_encoding) {
6317               if (SvUTF8(sv1)) {
6318                    svrecode = newSVpvn(pv2, cur2);
6319                    sv_recode_to_utf8(svrecode, PL_encoding);
6320                    pv2 = SvPV_const(svrecode, cur2);
6321               }
6322               else {
6323                    svrecode = newSVpvn(pv1, cur1);
6324                    sv_recode_to_utf8(svrecode, PL_encoding);
6325                    pv1 = SvPV_const(svrecode, cur1);
6326               }
6327               /* Now both are in UTF-8. */
6328               if (cur1 != cur2) {
6329                    SvREFCNT_dec(svrecode);
6330                    return FALSE;
6331               }
6332          }
6333          else {
6334               bool is_utf8 = TRUE;
6335
6336               if (SvUTF8(sv1)) {
6337                    /* sv1 is the UTF-8 one,
6338                     * if is equal it must be downgrade-able */
6339                    char * const pv = (char*)bytes_from_utf8((const U8*)pv1,
6340                                                      &cur1, &is_utf8);
6341                    if (pv != pv1)
6342                         pv1 = tpv = pv;
6343               }
6344               else {
6345                    /* sv2 is the UTF-8 one,
6346                     * if is equal it must be downgrade-able */
6347                    char * const pv = (char *)bytes_from_utf8((const U8*)pv2,
6348                                                       &cur2, &is_utf8);
6349                    if (pv != pv2)
6350                         pv2 = tpv = pv;
6351               }
6352               if (is_utf8) {
6353                    /* Downgrade not possible - cannot be eq */
6354                    assert (tpv == 0);
6355                    return FALSE;
6356               }
6357          }
6358     }
6359
6360     if (cur1 == cur2)
6361         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
6362         
6363     SvREFCNT_dec(svrecode);
6364     if (tpv)
6365         Safefree(tpv);
6366
6367     return eq;
6368 }
6369
6370 /*
6371 =for apidoc sv_cmp
6372
6373 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
6374 string in C<sv1> is less than, equal to, or greater than the string in
6375 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6376 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
6377
6378 =cut
6379 */
6380
6381 I32
6382 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
6383 {
6384     dVAR;
6385     STRLEN cur1, cur2;
6386     const char *pv1, *pv2;
6387     char *tpv = NULL;
6388     I32  cmp;
6389     SV *svrecode = NULL;
6390
6391     if (!sv1) {
6392         pv1 = "";
6393         cur1 = 0;
6394     }
6395     else
6396         pv1 = SvPV_const(sv1, cur1);
6397
6398     if (!sv2) {
6399         pv2 = "";
6400         cur2 = 0;
6401     }
6402     else
6403         pv2 = SvPV_const(sv2, cur2);
6404
6405     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6406         /* Differing utf8ness.
6407          * Do not UTF8size the comparands as a side-effect. */
6408         if (SvUTF8(sv1)) {
6409             if (PL_encoding) {
6410                  svrecode = newSVpvn(pv2, cur2);
6411                  sv_recode_to_utf8(svrecode, PL_encoding);
6412                  pv2 = SvPV_const(svrecode, cur2);
6413             }
6414             else {
6415                  pv2 = tpv = (char*)bytes_to_utf8((const U8*)pv2, &cur2);
6416             }
6417         }
6418         else {
6419             if (PL_encoding) {
6420                  svrecode = newSVpvn(pv1, cur1);
6421                  sv_recode_to_utf8(svrecode, PL_encoding);
6422                  pv1 = SvPV_const(svrecode, cur1);
6423             }
6424             else {
6425                  pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
6426             }
6427         }
6428     }
6429
6430     if (!cur1) {
6431         cmp = cur2 ? -1 : 0;
6432     } else if (!cur2) {
6433         cmp = 1;
6434     } else {
6435         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
6436
6437         if (retval) {
6438             cmp = retval < 0 ? -1 : 1;
6439         } else if (cur1 == cur2) {
6440             cmp = 0;
6441         } else {
6442             cmp = cur1 < cur2 ? -1 : 1;
6443         }
6444     }
6445
6446     SvREFCNT_dec(svrecode);
6447     if (tpv)
6448         Safefree(tpv);
6449
6450     return cmp;
6451 }
6452
6453 /*
6454 =for apidoc sv_cmp_locale
6455
6456 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
6457 'use bytes' aware, handles get magic, and will coerce its args to strings
6458 if necessary.  See also C<sv_cmp>.
6459
6460 =cut
6461 */
6462
6463 I32
6464 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
6465 {
6466     dVAR;
6467 #ifdef USE_LOCALE_COLLATE
6468
6469     char *pv1, *pv2;
6470     STRLEN len1, len2;
6471     I32 retval;
6472
6473     if (PL_collation_standard)
6474         goto raw_compare;
6475
6476     len1 = 0;
6477     pv1 = sv1 ? sv_collxfrm(sv1, &len1) : (char *) NULL;
6478     len2 = 0;
6479     pv2 = sv2 ? sv_collxfrm(sv2, &len2) : (char *) NULL;
6480
6481     if (!pv1 || !len1) {
6482         if (pv2 && len2)
6483             return -1;
6484         else
6485             goto raw_compare;
6486     }
6487     else {
6488         if (!pv2 || !len2)
6489             return 1;
6490     }
6491
6492     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
6493
6494     if (retval)
6495         return retval < 0 ? -1 : 1;
6496
6497     /*
6498      * When the result of collation is equality, that doesn't mean
6499      * that there are no differences -- some locales exclude some
6500      * characters from consideration.  So to avoid false equalities,
6501      * we use the raw string as a tiebreaker.
6502      */
6503
6504   raw_compare:
6505     /*FALLTHROUGH*/
6506
6507 #endif /* USE_LOCALE_COLLATE */
6508
6509     return sv_cmp(sv1, sv2);
6510 }
6511
6512
6513 #ifdef USE_LOCALE_COLLATE
6514
6515 /*
6516 =for apidoc sv_collxfrm
6517
6518 Add Collate Transform magic to an SV if it doesn't already have it.
6519
6520 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
6521 scalar data of the variable, but transformed to such a format that a normal
6522 memory comparison can be used to compare the data according to the locale
6523 settings.
6524
6525 =cut
6526 */
6527
6528 char *
6529 Perl_sv_collxfrm(pTHX_ SV *const sv, STRLEN *const nxp)
6530 {
6531     dVAR;
6532     MAGIC *mg;
6533
6534     PERL_ARGS_ASSERT_SV_COLLXFRM;
6535
6536     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
6537     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
6538         const char *s;
6539         char *xf;
6540         STRLEN len, xlen;
6541
6542         if (mg)
6543             Safefree(mg->mg_ptr);
6544         s = SvPV_const(sv, len);
6545         if ((xf = mem_collxfrm(s, len, &xlen))) {
6546             if (! mg) {
6547 #ifdef PERL_OLD_COPY_ON_WRITE
6548                 if (SvIsCOW(sv))
6549                     sv_force_normal_flags(sv, 0);
6550 #endif
6551                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
6552                                  0, 0);
6553                 assert(mg);
6554             }
6555             mg->mg_ptr = xf;
6556             mg->mg_len = xlen;
6557         }
6558         else {
6559             if (mg) {
6560                 mg->mg_ptr = NULL;
6561                 mg->mg_len = -1;
6562             }
6563         }
6564     }
6565     if (mg && mg->mg_ptr) {
6566         *nxp = mg->mg_len;
6567         return mg->mg_ptr + sizeof(PL_collation_ix);
6568     }
6569     else {
6570         *nxp = 0;
6571         return NULL;
6572     }
6573 }
6574
6575 #endif /* USE_LOCALE_COLLATE */
6576
6577 /*
6578 =for apidoc sv_gets
6579
6580 Get a line from the filehandle and store it into the SV, optionally
6581 appending to the currently-stored string.
6582
6583 =cut
6584 */
6585
6586 char *
6587 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
6588 {
6589     dVAR;
6590     const char *rsptr;
6591     STRLEN rslen;
6592     register STDCHAR rslast;
6593     register STDCHAR *bp;
6594     register I32 cnt;
6595     I32 i = 0;
6596     I32 rspara = 0;
6597
6598     PERL_ARGS_ASSERT_SV_GETS;
6599
6600     if (SvTHINKFIRST(sv))
6601         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
6602     /* XXX. If you make this PVIV, then copy on write can copy scalars read
6603        from <>.
6604        However, perlbench says it's slower, because the existing swipe code
6605        is faster than copy on write.
6606        Swings and roundabouts.  */
6607     SvUPGRADE(sv, SVt_PV);
6608
6609     SvSCREAM_off(sv);
6610
6611     if (append) {
6612         if (PerlIO_isutf8(fp)) {
6613             if (!SvUTF8(sv)) {
6614                 sv_utf8_upgrade_nomg(sv);
6615                 sv_pos_u2b(sv,&append,0);
6616             }
6617         } else if (SvUTF8(sv)) {
6618             SV * const tsv = newSV(0);
6619             sv_gets(tsv, fp, 0);
6620             sv_utf8_upgrade_nomg(tsv);
6621             SvCUR_set(sv,append);
6622             sv_catsv(sv,tsv);
6623             sv_free(tsv);
6624             goto return_string_or_null;
6625         }
6626     }
6627
6628     SvPOK_only(sv);
6629     if (PerlIO_isutf8(fp))
6630         SvUTF8_on(sv);
6631
6632     if (IN_PERL_COMPILETIME) {
6633         /* we always read code in line mode */
6634         rsptr = "\n";
6635         rslen = 1;
6636     }
6637     else if (RsSNARF(PL_rs)) {
6638         /* If it is a regular disk file use size from stat() as estimate
6639            of amount we are going to read -- may result in mallocing
6640            more memory than we really need if the layers below reduce
6641            the size we read (e.g. CRLF or a gzip layer).
6642          */
6643         Stat_t st;
6644         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
6645             const Off_t offset = PerlIO_tell(fp);
6646             if (offset != (Off_t) -1 && st.st_size + append > offset) {
6647                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
6648             }
6649         }
6650         rsptr = NULL;
6651         rslen = 0;
6652     }
6653     else if (RsRECORD(PL_rs)) {
6654       I32 bytesread;
6655       char *buffer;
6656       U32 recsize;
6657 #ifdef VMS
6658       int fd;
6659 #endif
6660
6661       /* Grab the size of the record we're getting */
6662       recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
6663       buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
6664       /* Go yank in */
6665 #ifdef VMS
6666       /* VMS wants read instead of fread, because fread doesn't respect */
6667       /* RMS record boundaries. This is not necessarily a good thing to be */
6668       /* doing, but we've got no other real choice - except avoid stdio
6669          as implementation - perhaps write a :vms layer ?
6670        */
6671       fd = PerlIO_fileno(fp);
6672       if (fd == -1) { /* in-memory file from PerlIO::Scalar */
6673           bytesread = PerlIO_read(fp, buffer, recsize);
6674       }
6675       else {
6676           bytesread = PerlLIO_read(fd, buffer, recsize);
6677       }
6678 #else
6679       bytesread = PerlIO_read(fp, buffer, recsize);
6680 #endif
6681       if (bytesread < 0)
6682           bytesread = 0;
6683       SvCUR_set(sv, bytesread += append);
6684       buffer[bytesread] = '\0';
6685       goto return_string_or_null;
6686     }
6687     else if (RsPARA(PL_rs)) {
6688         rsptr = "\n\n";
6689         rslen = 2;
6690         rspara = 1;
6691     }
6692     else {
6693         /* Get $/ i.e. PL_rs into same encoding as stream wants */
6694         if (PerlIO_isutf8(fp)) {
6695             rsptr = SvPVutf8(PL_rs, rslen);
6696         }
6697         else {
6698             if (SvUTF8(PL_rs)) {
6699                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
6700                     Perl_croak(aTHX_ "Wide character in $/");
6701                 }
6702             }
6703             rsptr = SvPV_const(PL_rs, rslen);
6704         }
6705     }
6706
6707     rslast = rslen ? rsptr[rslen - 1] : '\0';
6708
6709     if (rspara) {               /* have to do this both before and after */
6710         do {                    /* to make sure file boundaries work right */
6711             if (PerlIO_eof(fp))
6712                 return 0;
6713             i = PerlIO_getc(fp);
6714             if (i != '\n') {
6715                 if (i == -1)
6716                     return 0;
6717                 PerlIO_ungetc(fp,i);
6718                 break;
6719             }
6720         } while (i != EOF);
6721     }
6722
6723     /* See if we know enough about I/O mechanism to cheat it ! */
6724
6725     /* This used to be #ifdef test - it is made run-time test for ease
6726        of abstracting out stdio interface. One call should be cheap
6727        enough here - and may even be a macro allowing compile
6728        time optimization.
6729      */
6730
6731     if (PerlIO_fast_gets(fp)) {
6732
6733     /*
6734      * We're going to steal some values from the stdio struct
6735      * and put EVERYTHING in the innermost loop into registers.
6736      */
6737     register STDCHAR *ptr;
6738     STRLEN bpx;
6739     I32 shortbuffered;
6740
6741 #if defined(VMS) && defined(PERLIO_IS_STDIO)
6742     /* An ungetc()d char is handled separately from the regular
6743      * buffer, so we getc() it back out and stuff it in the buffer.
6744      */
6745     i = PerlIO_getc(fp);
6746     if (i == EOF) return 0;
6747     *(--((*fp)->_ptr)) = (unsigned char) i;
6748     (*fp)->_cnt++;
6749 #endif
6750
6751     /* Here is some breathtakingly efficient cheating */
6752
6753     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
6754     /* make sure we have the room */
6755     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
6756         /* Not room for all of it
6757            if we are looking for a separator and room for some
6758          */
6759         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
6760             /* just process what we have room for */
6761             shortbuffered = cnt - SvLEN(sv) + append + 1;
6762             cnt -= shortbuffered;
6763         }
6764         else {
6765             shortbuffered = 0;
6766             /* remember that cnt can be negative */
6767             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
6768         }
6769     }
6770     else
6771         shortbuffered = 0;
6772     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
6773     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
6774     DEBUG_P(PerlIO_printf(Perl_debug_log,
6775         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
6776     DEBUG_P(PerlIO_printf(Perl_debug_log,
6777         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
6778                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
6779                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
6780     for (;;) {
6781       screamer:
6782         if (cnt > 0) {
6783             if (rslen) {
6784                 while (cnt > 0) {                    /* this     |  eat */
6785                     cnt--;
6786                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
6787                         goto thats_all_folks;        /* screams  |  sed :-) */
6788                 }
6789             }
6790             else {
6791                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
6792                 bp += cnt;                           /* screams  |  dust */
6793                 ptr += cnt;                          /* louder   |  sed :-) */
6794                 cnt = 0;
6795             }
6796         }
6797         
6798         if (shortbuffered) {            /* oh well, must extend */
6799             cnt = shortbuffered;
6800             shortbuffered = 0;
6801             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
6802             SvCUR_set(sv, bpx);
6803             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
6804             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
6805             continue;
6806         }
6807
6808         DEBUG_P(PerlIO_printf(Perl_debug_log,
6809                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
6810                               PTR2UV(ptr),(long)cnt));
6811         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
6812 #if 0
6813         DEBUG_P(PerlIO_printf(Perl_debug_log,
6814             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
6815             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
6816             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
6817 #endif
6818         /* This used to call 'filbuf' in stdio form, but as that behaves like
6819            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
6820            another abstraction.  */
6821         i   = PerlIO_getc(fp);          /* get more characters */
6822 #if 0
6823         DEBUG_P(PerlIO_printf(Perl_debug_log,
6824             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
6825             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
6826             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
6827 #endif
6828         cnt = PerlIO_get_cnt(fp);
6829         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
6830         DEBUG_P(PerlIO_printf(Perl_debug_log,
6831             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
6832
6833         if (i == EOF)                   /* all done for ever? */
6834             goto thats_really_all_folks;
6835
6836         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
6837         SvCUR_set(sv, bpx);
6838         SvGROW(sv, bpx + cnt + 2);
6839         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
6840
6841         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
6842
6843         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
6844             goto thats_all_folks;
6845     }
6846
6847 thats_all_folks:
6848     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
6849           memNE((char*)bp - rslen, rsptr, rslen))
6850         goto screamer;                          /* go back to the fray */
6851 thats_really_all_folks:
6852     if (shortbuffered)
6853         cnt += shortbuffered;
6854         DEBUG_P(PerlIO_printf(Perl_debug_log,
6855             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
6856     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
6857     DEBUG_P(PerlIO_printf(Perl_debug_log,
6858         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
6859         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
6860         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
6861     *bp = '\0';
6862     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
6863     DEBUG_P(PerlIO_printf(Perl_debug_log,
6864         "Screamer: done, len=%ld, string=|%.*s|\n",
6865         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
6866     }
6867    else
6868     {
6869        /*The big, slow, and stupid way. */
6870 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
6871         STDCHAR *buf = NULL;
6872         Newx(buf, 8192, STDCHAR);
6873         assert(buf);
6874 #else
6875         STDCHAR buf[8192];
6876 #endif
6877
6878 screamer2:
6879         if (rslen) {
6880             register const STDCHAR * const bpe = buf + sizeof(buf);
6881             bp = buf;
6882             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
6883                 ; /* keep reading */
6884             cnt = bp - buf;
6885         }
6886         else {
6887             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
6888             /* Accomodate broken VAXC compiler, which applies U8 cast to
6889              * both args of ?: operator, causing EOF to change into 255
6890              */
6891             if (cnt > 0)
6892                  i = (U8)buf[cnt - 1];
6893             else
6894                  i = EOF;
6895         }
6896
6897         if (cnt < 0)
6898             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
6899         if (append)
6900              sv_catpvn(sv, (char *) buf, cnt);
6901         else
6902              sv_setpvn(sv, (char *) buf, cnt);
6903
6904         if (i != EOF &&                 /* joy */
6905             (!rslen ||
6906              SvCUR(sv) < rslen ||
6907              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
6908         {
6909             append = -1;
6910             /*
6911              * If we're reading from a TTY and we get a short read,
6912              * indicating that the user hit his EOF character, we need
6913              * to notice it now, because if we try to read from the TTY
6914              * again, the EOF condition will disappear.
6915              *
6916              * The comparison of cnt to sizeof(buf) is an optimization
6917              * that prevents unnecessary calls to feof().
6918              *
6919              * - jik 9/25/96
6920              */
6921             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
6922                 goto screamer2;
6923         }
6924
6925 #ifdef USE_HEAP_INSTEAD_OF_STACK
6926         Safefree(buf);
6927 #endif
6928     }
6929
6930     if (rspara) {               /* have to do this both before and after */
6931         while (i != EOF) {      /* to make sure file boundaries work right */
6932             i = PerlIO_getc(fp);
6933             if (i != '\n') {
6934                 PerlIO_ungetc(fp,i);
6935                 break;
6936             }
6937         }
6938     }
6939
6940 return_string_or_null:
6941     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
6942 }
6943
6944 /*
6945 =for apidoc sv_inc
6946
6947 Auto-increment of the value in the SV, doing string to numeric conversion
6948 if necessary. Handles 'get' magic.
6949
6950 =cut
6951 */
6952
6953 void
6954 Perl_sv_inc(pTHX_ register SV *const sv)
6955 {
6956     dVAR;
6957     register char *d;
6958     int flags;
6959
6960     if (!sv)
6961         return;
6962     SvGETMAGIC(sv);
6963     if (SvTHINKFIRST(sv)) {
6964         if (SvIsCOW(sv))
6965             sv_force_normal_flags(sv, 0);
6966         if (SvREADONLY(sv)) {
6967             if (IN_PERL_RUNTIME)
6968                 Perl_croak(aTHX_ PL_no_modify);
6969         }
6970         if (SvROK(sv)) {
6971             IV i;
6972             if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
6973                 return;
6974             i = PTR2IV(SvRV(sv));
6975             sv_unref(sv);
6976             sv_setiv(sv, i);
6977         }
6978     }
6979     flags = SvFLAGS(sv);
6980     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
6981         /* It's (privately or publicly) a float, but not tested as an
6982            integer, so test it to see. */
6983         (void) SvIV(sv);
6984         flags = SvFLAGS(sv);
6985     }
6986     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
6987         /* It's publicly an integer, or privately an integer-not-float */
6988 #ifdef PERL_PRESERVE_IVUV
6989       oops_its_int:
6990 #endif
6991         if (SvIsUV(sv)) {
6992             if (SvUVX(sv) == UV_MAX)
6993                 sv_setnv(sv, UV_MAX_P1);
6994             else
6995                 (void)SvIOK_only_UV(sv);
6996                 SvUV_set(sv, SvUVX(sv) + 1);
6997         } else {
6998             if (SvIVX(sv) == IV_MAX)
6999                 sv_setuv(sv, (UV)IV_MAX + 1);
7000             else {
7001                 (void)SvIOK_only(sv);
7002                 SvIV_set(sv, SvIVX(sv) + 1);
7003             }   
7004         }
7005         return;
7006     }
7007     if (flags & SVp_NOK) {
7008         const NV was = SvNVX(sv);
7009         if (NV_OVERFLOWS_INTEGERS_AT &&
7010             was >= NV_OVERFLOWS_INTEGERS_AT && ckWARN(WARN_IMPRECISION)) {
7011             Perl_warner(aTHX_ packWARN(WARN_IMPRECISION),
7012                         "Lost precision when incrementing %" NVff " by 1",
7013                         was);
7014         }
7015         (void)SvNOK_only(sv);
7016         SvNV_set(sv, was + 1.0);
7017         return;
7018     }
7019
7020     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
7021         if ((flags & SVTYPEMASK) < SVt_PVIV)
7022             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
7023         (void)SvIOK_only(sv);
7024         SvIV_set(sv, 1);
7025         return;
7026     }
7027     d = SvPVX(sv);
7028     while (isALPHA(*d)) d++;
7029     while (isDIGIT(*d)) d++;
7030     if (*d) {
7031 #ifdef PERL_PRESERVE_IVUV
7032         /* Got to punt this as an integer if needs be, but we don't issue
7033            warnings. Probably ought to make the sv_iv_please() that does
7034            the conversion if possible, and silently.  */
7035         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7036         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7037             /* Need to try really hard to see if it's an integer.
7038                9.22337203685478e+18 is an integer.
7039                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7040                so $a="9.22337203685478e+18"; $a+0; $a++
7041                needs to be the same as $a="9.22337203685478e+18"; $a++
7042                or we go insane. */
7043         
7044             (void) sv_2iv(sv);
7045             if (SvIOK(sv))
7046                 goto oops_its_int;
7047
7048             /* sv_2iv *should* have made this an NV */
7049             if (flags & SVp_NOK) {
7050                 (void)SvNOK_only(sv);
7051                 SvNV_set(sv, SvNVX(sv) + 1.0);
7052                 return;
7053             }
7054             /* I don't think we can get here. Maybe I should assert this
7055                And if we do get here I suspect that sv_setnv will croak. NWC
7056                Fall through. */
7057 #if defined(USE_LONG_DOUBLE)
7058             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",
7059                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7060 #else
7061             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7062                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7063 #endif
7064         }
7065 #endif /* PERL_PRESERVE_IVUV */
7066         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
7067         return;
7068     }
7069     d--;
7070     while (d >= SvPVX_const(sv)) {
7071         if (isDIGIT(*d)) {
7072             if (++*d <= '9')
7073                 return;
7074             *(d--) = '0';
7075         }
7076         else {
7077 #ifdef EBCDIC
7078             /* MKS: The original code here died if letters weren't consecutive.
7079              * at least it didn't have to worry about non-C locales.  The
7080              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
7081              * arranged in order (although not consecutively) and that only
7082              * [A-Za-z] are accepted by isALPHA in the C locale.
7083              */
7084             if (*d != 'z' && *d != 'Z') {
7085                 do { ++*d; } while (!isALPHA(*d));
7086                 return;
7087             }
7088             *(d--) -= 'z' - 'a';
7089 #else
7090             ++*d;
7091             if (isALPHA(*d))
7092                 return;
7093             *(d--) -= 'z' - 'a' + 1;
7094 #endif
7095         }
7096     }
7097     /* oh,oh, the number grew */
7098     SvGROW(sv, SvCUR(sv) + 2);
7099     SvCUR_set(sv, SvCUR(sv) + 1);
7100     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
7101         *d = d[-1];
7102     if (isDIGIT(d[1]))
7103         *d = '1';
7104     else
7105         *d = d[1];
7106 }
7107
7108 /*
7109 =for apidoc sv_dec
7110
7111 Auto-decrement of the value in the SV, doing string to numeric conversion
7112 if necessary. Handles 'get' magic.
7113
7114 =cut
7115 */
7116
7117 void
7118 Perl_sv_dec(pTHX_ register SV *const sv)
7119 {
7120     dVAR;
7121     int flags;
7122
7123     if (!sv)
7124         return;
7125     SvGETMAGIC(sv);
7126     if (SvTHINKFIRST(sv)) {
7127         if (SvIsCOW(sv))
7128             sv_force_normal_flags(sv, 0);
7129         if (SvREADONLY(sv)) {
7130             if (IN_PERL_RUNTIME)
7131                 Perl_croak(aTHX_ PL_no_modify);
7132         }
7133         if (SvROK(sv)) {
7134             IV i;
7135             if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
7136                 return;
7137             i = PTR2IV(SvRV(sv));
7138             sv_unref(sv);
7139             sv_setiv(sv, i);
7140         }
7141     }
7142     /* Unlike sv_inc we don't have to worry about string-never-numbers
7143        and keeping them magic. But we mustn't warn on punting */
7144     flags = SvFLAGS(sv);
7145     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7146         /* It's publicly an integer, or privately an integer-not-float */
7147 #ifdef PERL_PRESERVE_IVUV
7148       oops_its_int:
7149 #endif
7150         if (SvIsUV(sv)) {
7151             if (SvUVX(sv) == 0) {
7152                 (void)SvIOK_only(sv);
7153                 SvIV_set(sv, -1);
7154             }
7155             else {
7156                 (void)SvIOK_only_UV(sv);
7157                 SvUV_set(sv, SvUVX(sv) - 1);
7158             }   
7159         } else {
7160             if (SvIVX(sv) == IV_MIN) {
7161                 sv_setnv(sv, (NV)IV_MIN);
7162                 goto oops_its_num;
7163             }
7164             else {
7165                 (void)SvIOK_only(sv);
7166                 SvIV_set(sv, SvIVX(sv) - 1);
7167             }   
7168         }
7169         return;
7170     }
7171     if (flags & SVp_NOK) {
7172     oops_its_num:
7173         {
7174             const NV was = SvNVX(sv);
7175             if (NV_OVERFLOWS_INTEGERS_AT &&
7176                 was <= -NV_OVERFLOWS_INTEGERS_AT && ckWARN(WARN_IMPRECISION)) {
7177                 Perl_warner(aTHX_ packWARN(WARN_IMPRECISION),
7178                             "Lost precision when decrementing %" NVff " by 1",
7179                             was);
7180             }
7181             (void)SvNOK_only(sv);
7182             SvNV_set(sv, was - 1.0);
7183             return;
7184         }
7185     }
7186     if (!(flags & SVp_POK)) {
7187         if ((flags & SVTYPEMASK) < SVt_PVIV)
7188             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
7189         SvIV_set(sv, -1);
7190         (void)SvIOK_only(sv);
7191         return;
7192     }
7193 #ifdef PERL_PRESERVE_IVUV
7194     {
7195         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7196         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7197             /* Need to try really hard to see if it's an integer.
7198                9.22337203685478e+18 is an integer.
7199                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7200                so $a="9.22337203685478e+18"; $a+0; $a--
7201                needs to be the same as $a="9.22337203685478e+18"; $a--
7202                or we go insane. */
7203         
7204             (void) sv_2iv(sv);
7205             if (SvIOK(sv))
7206                 goto oops_its_int;
7207
7208             /* sv_2iv *should* have made this an NV */
7209             if (flags & SVp_NOK) {
7210                 (void)SvNOK_only(sv);
7211                 SvNV_set(sv, SvNVX(sv) - 1.0);
7212                 return;
7213             }
7214             /* I don't think we can get here. Maybe I should assert this
7215                And if we do get here I suspect that sv_setnv will croak. NWC
7216                Fall through. */
7217 #if defined(USE_LONG_DOUBLE)
7218             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",
7219                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7220 #else
7221             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7222                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7223 #endif
7224         }
7225     }
7226 #endif /* PERL_PRESERVE_IVUV */
7227     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
7228 }
7229
7230 /*
7231 =for apidoc sv_mortalcopy
7232
7233 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
7234 The new SV is marked as mortal. It will be destroyed "soon", either by an
7235 explicit call to FREETMPS, or by an implicit call at places such as
7236 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
7237
7238 =cut
7239 */
7240
7241 /* Make a string that will exist for the duration of the expression
7242  * evaluation.  Actually, it may have to last longer than that, but
7243  * hopefully we won't free it until it has been assigned to a
7244  * permanent location. */
7245
7246 SV *
7247 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
7248 {
7249     dVAR;
7250     register SV *sv;
7251
7252     new_SV(sv);
7253     sv_setsv(sv,oldstr);
7254     EXTEND_MORTAL(1);
7255     PL_tmps_stack[++PL_tmps_ix] = sv;
7256     SvTEMP_on(sv);
7257     return sv;
7258 }
7259
7260 /*
7261 =for apidoc sv_newmortal
7262
7263 Creates a new null SV which is mortal.  The reference count of the SV is
7264 set to 1. It will be destroyed "soon", either by an explicit call to
7265 FREETMPS, or by an implicit call at places such as statement boundaries.
7266 See also C<sv_mortalcopy> and C<sv_2mortal>.
7267
7268 =cut
7269 */
7270
7271 SV *
7272 Perl_sv_newmortal(pTHX)
7273 {
7274     dVAR;
7275     register SV *sv;
7276
7277     new_SV(sv);
7278     SvFLAGS(sv) = SVs_TEMP;
7279     EXTEND_MORTAL(1);
7280     PL_tmps_stack[++PL_tmps_ix] = sv;
7281     return sv;
7282 }
7283
7284
7285 /*
7286 =for apidoc newSVpvn_flags
7287
7288 Creates a new SV and copies a string into it.  The reference count for the
7289 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7290 string.  You are responsible for ensuring that the source string is at least
7291 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7292 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
7293 If C<SVs_TEMP> is set, then C<sv2mortal()> is called on the result before
7294 returning. If C<SVf_UTF8> is set, then it will be set on the new SV.
7295 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
7296
7297     #define newSVpvn_utf8(s, len, u)                    \
7298         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
7299
7300 =cut
7301 */
7302
7303 SV *
7304 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
7305 {
7306     dVAR;
7307     register SV *sv;
7308
7309     /* All the flags we don't support must be zero.
7310        And we're new code so I'm going to assert this from the start.  */
7311     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
7312     new_SV(sv);
7313     sv_setpvn(sv,s,len);
7314     SvFLAGS(sv) |= (flags & SVf_UTF8);
7315     return (flags & SVs_TEMP) ? sv_2mortal(sv) : sv;
7316 }
7317
7318 /*
7319 =for apidoc sv_2mortal
7320
7321 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
7322 by an explicit call to FREETMPS, or by an implicit call at places such as
7323 statement boundaries.  SvTEMP() is turned on which means that the SV's
7324 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
7325 and C<sv_mortalcopy>.
7326
7327 =cut
7328 */
7329
7330 SV *
7331 Perl_sv_2mortal(pTHX_ register SV *const sv)
7332 {
7333     dVAR;
7334     if (!sv)
7335         return NULL;
7336     if (SvREADONLY(sv) && SvIMMORTAL(sv))
7337         return sv;
7338     EXTEND_MORTAL(1);
7339     PL_tmps_stack[++PL_tmps_ix] = sv;
7340     SvTEMP_on(sv);
7341     return sv;
7342 }
7343
7344 /*
7345 =for apidoc newSVpv
7346
7347 Creates a new SV and copies a string into it.  The reference count for the
7348 SV is set to 1.  If C<len> is zero, Perl will compute the length using
7349 strlen().  For efficiency, consider using C<newSVpvn> instead.
7350
7351 =cut
7352 */
7353
7354 SV *
7355 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
7356 {
7357     dVAR;
7358     register SV *sv;
7359
7360     new_SV(sv);
7361     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
7362     return sv;
7363 }
7364
7365 /*
7366 =for apidoc newSVpvn
7367
7368 Creates a new SV and copies a string into it.  The reference count for the
7369 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7370 string.  You are responsible for ensuring that the source string is at least
7371 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7372
7373 =cut
7374 */
7375
7376 SV *
7377 Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len)
7378 {
7379     dVAR;
7380     register SV *sv;
7381
7382     new_SV(sv);
7383     sv_setpvn(sv,s,len);
7384     return sv;
7385 }
7386
7387 /*
7388 =for apidoc newSVhek
7389
7390 Creates a new SV from the hash key structure.  It will generate scalars that
7391 point to the shared string table where possible. Returns a new (undefined)
7392 SV if the hek is NULL.
7393
7394 =cut
7395 */
7396
7397 SV *
7398 Perl_newSVhek(pTHX_ const HEK *const hek)
7399 {
7400     dVAR;
7401     if (!hek) {
7402         SV *sv;
7403
7404         new_SV(sv);
7405         return sv;
7406     }
7407
7408     if (HEK_LEN(hek) == HEf_SVKEY) {
7409         return newSVsv(*(SV**)HEK_KEY(hek));
7410     } else {
7411         const int flags = HEK_FLAGS(hek);
7412         if (flags & HVhek_WASUTF8) {
7413             /* Trouble :-)
7414                Andreas would like keys he put in as utf8 to come back as utf8
7415             */
7416             STRLEN utf8_len = HEK_LEN(hek);
7417             const U8 *as_utf8 = bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
7418             SV * const sv = newSVpvn ((const char*)as_utf8, utf8_len);
7419
7420             SvUTF8_on (sv);
7421             Safefree (as_utf8); /* bytes_to_utf8() allocates a new string */
7422             return sv;
7423         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
7424             /* We don't have a pointer to the hv, so we have to replicate the
7425                flag into every HEK. This hv is using custom a hasing
7426                algorithm. Hence we can't return a shared string scalar, as
7427                that would contain the (wrong) hash value, and might get passed
7428                into an hv routine with a regular hash.
7429                Similarly, a hash that isn't using shared hash keys has to have
7430                the flag in every key so that we know not to try to call
7431                share_hek_kek on it.  */
7432
7433             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
7434             if (HEK_UTF8(hek))
7435                 SvUTF8_on (sv);
7436             return sv;
7437         }
7438         /* This will be overwhelminly the most common case.  */
7439         {
7440             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
7441                more efficient than sharepvn().  */
7442             SV *sv;
7443
7444             new_SV(sv);
7445             sv_upgrade(sv, SVt_PV);
7446             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
7447             SvCUR_set(sv, HEK_LEN(hek));
7448             SvLEN_set(sv, 0);
7449             SvREADONLY_on(sv);
7450             SvFAKE_on(sv);
7451             SvPOK_on(sv);
7452             if (HEK_UTF8(hek))
7453                 SvUTF8_on(sv);
7454             return sv;
7455         }
7456     }
7457 }
7458
7459 /*
7460 =for apidoc newSVpvn_share
7461
7462 Creates a new SV with its SvPVX_const pointing to a shared string in the string
7463 table. If the string does not already exist in the table, it is created
7464 first.  Turns on READONLY and FAKE. If the C<hash> parameter is non-zero, that
7465 value is used; otherwise the hash is computed. The string's hash can be later
7466 be retrieved from the SV with the C<SvSHARED_HASH()> macro. The idea here is
7467 that as the string table is used for shared hash keys these strings will have
7468 SvPVX_const == HeKEY and hash lookup will avoid string compare.
7469
7470 =cut
7471 */
7472
7473 SV *
7474 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
7475 {
7476     dVAR;
7477     register SV *sv;
7478     bool is_utf8 = FALSE;
7479     const char *const orig_src = src;
7480
7481     if (len < 0) {
7482         STRLEN tmplen = -len;
7483         is_utf8 = TRUE;
7484         /* See the note in hv.c:hv_fetch() --jhi */
7485         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
7486         len = tmplen;
7487     }
7488     if (!hash)
7489         PERL_HASH(hash, src, len);
7490     new_SV(sv);
7491     sv_upgrade(sv, SVt_PV);
7492     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
7493     SvCUR_set(sv, len);
7494     SvLEN_set(sv, 0);
7495     SvREADONLY_on(sv);
7496     SvFAKE_on(sv);
7497     SvPOK_on(sv);
7498     if (is_utf8)
7499         SvUTF8_on(sv);
7500     if (src != orig_src)
7501         Safefree(src);
7502     return sv;
7503 }
7504
7505
7506 #if defined(PERL_IMPLICIT_CONTEXT)
7507
7508 /* pTHX_ magic can't cope with varargs, so this is a no-context
7509  * version of the main function, (which may itself be aliased to us).
7510  * Don't access this version directly.
7511  */
7512
7513 SV *
7514 Perl_newSVpvf_nocontext(const char *const pat, ...)
7515 {
7516     dTHX;
7517     register SV *sv;
7518     va_list args;
7519
7520     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
7521
7522     va_start(args, pat);
7523     sv = vnewSVpvf(pat, &args);
7524     va_end(args);
7525     return sv;
7526 }
7527 #endif
7528
7529 /*
7530 =for apidoc newSVpvf
7531
7532 Creates a new SV and initializes it with the string formatted like
7533 C<sprintf>.
7534
7535 =cut
7536 */
7537
7538 SV *
7539 Perl_newSVpvf(pTHX_ const char *const pat, ...)
7540 {
7541     register SV *sv;
7542     va_list args;
7543
7544     PERL_ARGS_ASSERT_NEWSVPVF;
7545
7546     va_start(args, pat);
7547     sv = vnewSVpvf(pat, &args);
7548     va_end(args);
7549     return sv;
7550 }
7551
7552 /* backend for newSVpvf() and newSVpvf_nocontext() */
7553
7554 SV *
7555 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
7556 {
7557     dVAR;
7558     register SV *sv;
7559
7560     PERL_ARGS_ASSERT_VNEWSVPVF;
7561
7562     new_SV(sv);
7563     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
7564     return sv;
7565 }
7566
7567 /*
7568 =for apidoc newSVnv
7569
7570 Creates a new SV and copies a floating point value into it.
7571 The reference count for the SV is set to 1.
7572
7573 =cut
7574 */
7575
7576 SV *
7577 Perl_newSVnv(pTHX_ const NV n)
7578 {
7579     dVAR;
7580     register SV *sv;
7581
7582     new_SV(sv);
7583     sv_setnv(sv,n);
7584     return sv;
7585 }
7586
7587 /*
7588 =for apidoc newSViv
7589
7590 Creates a new SV and copies an integer into it.  The reference count for the
7591 SV is set to 1.
7592
7593 =cut
7594 */
7595
7596 SV *
7597 Perl_newSViv(pTHX_ const IV i)
7598 {
7599     dVAR;
7600     register SV *sv;
7601
7602     new_SV(sv);
7603     sv_setiv(sv,i);
7604     return sv;
7605 }
7606
7607 /*
7608 =for apidoc newSVuv
7609
7610 Creates a new SV and copies an unsigned integer into it.
7611 The reference count for the SV is set to 1.
7612
7613 =cut
7614 */
7615
7616 SV *
7617 Perl_newSVuv(pTHX_ const UV u)
7618 {
7619     dVAR;
7620     register SV *sv;
7621
7622     new_SV(sv);
7623     sv_setuv(sv,u);
7624     return sv;
7625 }
7626
7627 /*
7628 =for apidoc newSV_type
7629
7630 Creates a new SV, of the type specified.  The reference count for the new SV
7631 is set to 1.
7632
7633 =cut
7634 */
7635
7636 SV *
7637 Perl_newSV_type(pTHX_ const svtype type)
7638 {
7639     register SV *sv;
7640
7641     new_SV(sv);
7642     sv_upgrade(sv, type);
7643     return sv;
7644 }
7645
7646 /*
7647 =for apidoc newRV_noinc
7648
7649 Creates an RV wrapper for an SV.  The reference count for the original
7650 SV is B<not> incremented.
7651
7652 =cut
7653 */
7654
7655 SV *
7656 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
7657 {
7658     dVAR;
7659     register SV *sv = newSV_type(SVt_IV);
7660
7661     PERL_ARGS_ASSERT_NEWRV_NOINC;
7662
7663     SvTEMP_off(tmpRef);
7664     SvRV_set(sv, tmpRef);
7665     SvROK_on(sv);
7666     return sv;
7667 }
7668
7669 /* newRV_inc is the official function name to use now.
7670  * newRV_inc is in fact #defined to newRV in sv.h
7671  */
7672
7673 SV *
7674 Perl_newRV(pTHX_ SV *const sv)
7675 {
7676     dVAR;
7677
7678     PERL_ARGS_ASSERT_NEWRV;
7679
7680     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
7681 }
7682
7683 /*
7684 =for apidoc newSVsv
7685
7686 Creates a new SV which is an exact duplicate of the original SV.
7687 (Uses C<sv_setsv>).
7688
7689 =cut
7690 */
7691
7692 SV *
7693 Perl_newSVsv(pTHX_ register SV *const old)
7694 {
7695     dVAR;
7696     register SV *sv;
7697
7698     if (!old)
7699         return NULL;
7700     if (SvTYPE(old) == SVTYPEMASK) {
7701         if (ckWARN_d(WARN_INTERNAL))
7702             Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
7703         return NULL;
7704     }
7705     new_SV(sv);
7706     /* SV_GMAGIC is the default for sv_setv()
7707        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
7708        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
7709     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
7710     return sv;
7711 }
7712
7713 /*
7714 =for apidoc sv_reset
7715
7716 Underlying implementation for the C<reset> Perl function.
7717 Note that the perl-level function is vaguely deprecated.
7718
7719 =cut
7720 */
7721
7722 void
7723 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
7724 {
7725     dVAR;
7726     char todo[PERL_UCHAR_MAX+1];
7727
7728     PERL_ARGS_ASSERT_SV_RESET;
7729
7730     if (!stash)
7731         return;
7732
7733     if (!*s) {          /* reset ?? searches */
7734         MAGIC * const mg = mg_find((SV *)stash, PERL_MAGIC_symtab);
7735         if (mg) {
7736             const U32 count = mg->mg_len / sizeof(PMOP**);
7737             PMOP **pmp = (PMOP**) mg->mg_ptr;
7738             PMOP *const *const end = pmp + count;
7739
7740             while (pmp < end) {
7741 #ifdef USE_ITHREADS
7742                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
7743 #else
7744                 (*pmp)->op_pmflags &= ~PMf_USED;
7745 #endif
7746                 ++pmp;
7747             }
7748         }
7749         return;
7750     }
7751
7752     /* reset variables */
7753
7754     if (!HvARRAY(stash))
7755         return;
7756
7757     Zero(todo, 256, char);
7758     while (*s) {
7759         I32 max;
7760         I32 i = (unsigned char)*s;
7761         if (s[1] == '-') {
7762             s += 2;
7763         }
7764         max = (unsigned char)*s++;
7765         for ( ; i <= max; i++) {
7766             todo[i] = 1;
7767         }
7768         for (i = 0; i <= (I32) HvMAX(stash); i++) {
7769             HE *entry;
7770             for (entry = HvARRAY(stash)[i];
7771                  entry;
7772                  entry = HeNEXT(entry))
7773             {
7774                 register GV *gv;
7775                 register SV *sv;
7776
7777                 if (!todo[(U8)*HeKEY(entry)])
7778                     continue;
7779                 gv = (GV*)HeVAL(entry);
7780                 sv = GvSV(gv);
7781                 if (sv) {
7782                     if (SvTHINKFIRST(sv)) {
7783                         if (!SvREADONLY(sv) && SvROK(sv))
7784                             sv_unref(sv);
7785                         /* XXX Is this continue a bug? Why should THINKFIRST
7786                            exempt us from resetting arrays and hashes?  */
7787                         continue;
7788                     }
7789                     SvOK_off(sv);
7790                     if (SvTYPE(sv) >= SVt_PV) {
7791                         SvCUR_set(sv, 0);
7792                         if (SvPVX_const(sv) != NULL)
7793                             *SvPVX(sv) = '\0';
7794                         SvTAINT(sv);
7795                     }
7796                 }
7797                 if (GvAV(gv)) {
7798                     av_clear(GvAV(gv));
7799                 }
7800                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
7801 #if defined(VMS)
7802                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
7803 #else /* ! VMS */
7804                     hv_clear(GvHV(gv));
7805 #  if defined(USE_ENVIRON_ARRAY)
7806                     if (gv == PL_envgv)
7807                         my_clearenv();
7808 #  endif /* USE_ENVIRON_ARRAY */
7809 #endif /* VMS */
7810                 }
7811             }
7812         }
7813     }
7814 }
7815
7816 /*
7817 =for apidoc sv_2io
7818
7819 Using various gambits, try to get an IO from an SV: the IO slot if its a
7820 GV; or the recursive result if we're an RV; or the IO slot of the symbol
7821 named after the PV if we're a string.
7822
7823 =cut
7824 */
7825
7826 IO*
7827 Perl_sv_2io(pTHX_ SV *const sv)
7828 {
7829     IO* io;
7830     GV* gv;
7831
7832     PERL_ARGS_ASSERT_SV_2IO;
7833
7834     switch (SvTYPE(sv)) {
7835     case SVt_PVIO:
7836         io = (IO*)sv;
7837         break;
7838     case SVt_PVGV:
7839         if (isGV_with_GP(sv)) {
7840             gv = (GV*)sv;
7841             io = GvIO(gv);
7842             if (!io)
7843                 Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
7844             break;
7845         }
7846         /* FALL THROUGH */
7847     default:
7848         if (!SvOK(sv))
7849             Perl_croak(aTHX_ PL_no_usym, "filehandle");
7850         if (SvROK(sv))
7851             return sv_2io(SvRV(sv));
7852         gv = gv_fetchsv(sv, 0, SVt_PVIO);
7853         if (gv)
7854             io = GvIO(gv);
7855         else
7856             io = 0;
7857         if (!io)
7858             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(sv));
7859         break;
7860     }
7861     return io;
7862 }
7863
7864 /*
7865 =for apidoc sv_2cv
7866
7867 Using various gambits, try to get a CV from an SV; in addition, try if
7868 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
7869 The flags in C<lref> are passed to sv_fetchsv.
7870
7871 =cut
7872 */
7873
7874 CV *
7875 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
7876 {
7877     dVAR;
7878     GV *gv = NULL;
7879     CV *cv = NULL;
7880
7881     PERL_ARGS_ASSERT_SV_2CV;
7882
7883     if (!sv) {
7884         *st = NULL;
7885         *gvp = NULL;
7886         return NULL;
7887     }
7888     switch (SvTYPE(sv)) {
7889     case SVt_PVCV:
7890         *st = CvSTASH(sv);
7891         *gvp = NULL;
7892         return (CV*)sv;
7893     case SVt_PVHV:
7894     case SVt_PVAV:
7895         *st = NULL;
7896         *gvp = NULL;
7897         return NULL;
7898     case SVt_PVGV:
7899         if (isGV_with_GP(sv)) {
7900             gv = (GV*)sv;
7901             *gvp = gv;
7902             *st = GvESTASH(gv);
7903             goto fix_gv;
7904         }
7905         /* FALL THROUGH */
7906
7907     default:
7908         if (SvROK(sv)) {
7909             SV * const *sp = &sv;       /* Used in tryAMAGICunDEREF macro. */
7910             SvGETMAGIC(sv);
7911             tryAMAGICunDEREF(to_cv);
7912
7913             sv = SvRV(sv);
7914             if (SvTYPE(sv) == SVt_PVCV) {
7915                 cv = (CV*)sv;
7916                 *gvp = NULL;
7917                 *st = CvSTASH(cv);
7918                 return cv;
7919             }
7920             else if(isGV_with_GP(sv))
7921                 gv = (GV*)sv;
7922             else
7923                 Perl_croak(aTHX_ "Not a subroutine reference");
7924         }
7925         else if (isGV_with_GP(sv)) {
7926             SvGETMAGIC(sv);
7927             gv = (GV*)sv;
7928         }
7929         else
7930             gv = gv_fetchsv(sv, lref, SVt_PVCV); /* Calls get magic */
7931         *gvp = gv;
7932         if (!gv) {
7933             *st = NULL;
7934             return NULL;
7935         }
7936         /* Some flags to gv_fetchsv mean don't really create the GV  */
7937         if (!isGV_with_GP(gv)) {
7938             *st = NULL;
7939             return NULL;
7940         }
7941         *st = GvESTASH(gv);
7942     fix_gv:
7943         if (lref && !GvCVu(gv)) {
7944             SV *tmpsv;
7945             ENTER;
7946             tmpsv = newSV(0);
7947             gv_efullname3(tmpsv, gv, NULL);
7948             /* XXX this is probably not what they think they're getting.
7949              * It has the same effect as "sub name;", i.e. just a forward
7950              * declaration! */
7951             newSUB(start_subparse(FALSE, 0),
7952                    newSVOP(OP_CONST, 0, tmpsv),
7953                    NULL, NULL);
7954             LEAVE;
7955             if (!GvCVu(gv))
7956                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
7957                            SVfARG(SvOK(sv) ? sv : &PL_sv_no));
7958         }
7959         return GvCVu(gv);
7960     }
7961 }
7962
7963 /*
7964 =for apidoc sv_true
7965
7966 Returns true if the SV has a true value by Perl's rules.
7967 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
7968 instead use an in-line version.
7969
7970 =cut
7971 */
7972
7973 I32
7974 Perl_sv_true(pTHX_ register SV *const sv)
7975 {
7976     if (!sv)
7977         return 0;
7978     if (SvPOK(sv)) {
7979         register const XPV* const tXpv = (XPV*)SvANY(sv);
7980         if (tXpv &&
7981                 (tXpv->xpv_cur > 1 ||
7982                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
7983             return 1;
7984         else
7985             return 0;
7986     }
7987     else {
7988         if (SvIOK(sv))
7989             return SvIVX(sv) != 0;
7990         else {
7991             if (SvNOK(sv))
7992                 return SvNVX(sv) != 0.0;
7993             else
7994                 return sv_2bool(sv);
7995         }
7996     }
7997 }
7998
7999 /*
8000 =for apidoc sv_pvn_force
8001
8002 Get a sensible string out of the SV somehow.
8003 A private implementation of the C<SvPV_force> macro for compilers which
8004 can't cope with complex macro expressions. Always use the macro instead.
8005
8006 =for apidoc sv_pvn_force_flags
8007
8008 Get a sensible string out of the SV somehow.
8009 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
8010 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
8011 implemented in terms of this function.
8012 You normally want to use the various wrapper macros instead: see
8013 C<SvPV_force> and C<SvPV_force_nomg>
8014
8015 =cut
8016 */
8017
8018 char *
8019 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
8020 {
8021     dVAR;
8022
8023     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
8024
8025     if (SvTHINKFIRST(sv) && !SvROK(sv))
8026         sv_force_normal_flags(sv, 0);
8027
8028     if (SvPOK(sv)) {
8029         if (lp)
8030             *lp = SvCUR(sv);
8031     }
8032     else {
8033         char *s;
8034         STRLEN len;
8035  
8036         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
8037             const char * const ref = sv_reftype(sv,0);
8038             if (PL_op)
8039                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
8040                            ref, OP_NAME(PL_op));
8041             else
8042                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
8043         }
8044         if ((SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
8045             || isGV_with_GP(sv))
8046             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
8047                 OP_NAME(PL_op));
8048         s = sv_2pv_flags(sv, &len, flags);
8049         if (lp)
8050             *lp = len;
8051
8052         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
8053             if (SvROK(sv))
8054                 sv_unref(sv);
8055             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
8056             SvGROW(sv, len + 1);
8057             Move(s,SvPVX(sv),len,char);
8058             SvCUR_set(sv, len);
8059             SvPVX(sv)[len] = '\0';
8060         }
8061         if (!SvPOK(sv)) {
8062             SvPOK_on(sv);               /* validate pointer */
8063             SvTAINT(sv);
8064             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
8065                                   PTR2UV(sv),SvPVX_const(sv)));
8066         }
8067     }
8068     return SvPVX_mutable(sv);
8069 }
8070
8071 /*
8072 =for apidoc sv_pvbyten_force
8073
8074 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
8075
8076 =cut
8077 */
8078
8079 char *
8080 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
8081 {
8082     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
8083
8084     sv_pvn_force(sv,lp);
8085     sv_utf8_downgrade(sv,0);
8086     *lp = SvCUR(sv);
8087     return SvPVX(sv);
8088 }
8089
8090 /*
8091 =for apidoc sv_pvutf8n_force
8092
8093 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
8094
8095 =cut
8096 */
8097
8098 char *
8099 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
8100 {
8101     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
8102
8103     sv_pvn_force(sv,lp);
8104     sv_utf8_upgrade(sv);
8105     *lp = SvCUR(sv);
8106     return SvPVX(sv);
8107 }
8108
8109 /*
8110 =for apidoc sv_reftype
8111
8112 Returns a string describing what the SV is a reference to.
8113
8114 =cut
8115 */
8116
8117 const char *
8118 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
8119 {
8120     PERL_ARGS_ASSERT_SV_REFTYPE;
8121
8122     /* The fact that I don't need to downcast to char * everywhere, only in ?:
8123        inside return suggests a const propagation bug in g++.  */
8124     if (ob && SvOBJECT(sv)) {
8125         char * const name = HvNAME_get(SvSTASH(sv));
8126         return name ? name : (char *) "__ANON__";
8127     }
8128     else {
8129         switch (SvTYPE(sv)) {
8130         case SVt_NULL:
8131         case SVt_IV:
8132         case SVt_NV:
8133         case SVt_PV:
8134         case SVt_PVIV:
8135         case SVt_PVNV:
8136         case SVt_PVMG:
8137                                 if (SvVOK(sv))
8138                                     return "VSTRING";
8139                                 if (SvROK(sv))
8140                                     return "REF";
8141                                 else
8142                                     return "SCALAR";
8143
8144         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
8145                                 /* tied lvalues should appear to be
8146                                  * scalars for backwards compatitbility */
8147                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
8148                                     ? "SCALAR" : "LVALUE");
8149         case SVt_PVAV:          return "ARRAY";
8150         case SVt_PVHV:          return "HASH";
8151         case SVt_PVCV:          return "CODE";
8152         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
8153                                     ? "GLOB" : "SCALAR");
8154         case SVt_PVFM:          return "FORMAT";
8155         case SVt_PVIO:          return "IO";
8156         case SVt_BIND:          return "BIND";
8157         case SVt_REGEXP:        return "REGEXP"; 
8158         default:                return "UNKNOWN";
8159         }
8160     }
8161 }
8162
8163 /*
8164 =for apidoc sv_isobject
8165
8166 Returns a boolean indicating whether the SV is an RV pointing to a blessed
8167 object.  If the SV is not an RV, or if the object is not blessed, then this
8168 will return false.
8169
8170 =cut
8171 */
8172
8173 int
8174 Perl_sv_isobject(pTHX_ SV *sv)
8175 {
8176     if (!sv)
8177         return 0;
8178     SvGETMAGIC(sv);
8179     if (!SvROK(sv))
8180         return 0;
8181     sv = (SV*)SvRV(sv);
8182     if (!SvOBJECT(sv))
8183         return 0;
8184     return 1;
8185 }
8186
8187 /*
8188 =for apidoc sv_isa
8189
8190 Returns a boolean indicating whether the SV is blessed into the specified
8191 class.  This does not check for subtypes; use C<sv_derived_from> to verify
8192 an inheritance relationship.
8193
8194 =cut
8195 */
8196
8197 int
8198 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
8199 {
8200     const char *hvname;
8201
8202     PERL_ARGS_ASSERT_SV_ISA;
8203
8204     if (!sv)
8205         return 0;
8206     SvGETMAGIC(sv);
8207     if (!SvROK(sv))
8208         return 0;
8209     sv = (SV*)SvRV(sv);
8210     if (!SvOBJECT(sv))
8211         return 0;
8212     hvname = HvNAME_get(SvSTASH(sv));
8213     if (!hvname)
8214         return 0;
8215
8216     return strEQ(hvname, name);
8217 }
8218
8219 /*
8220 =for apidoc newSVrv
8221
8222 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
8223 it will be upgraded to one.  If C<classname> is non-null then the new SV will
8224 be blessed in the specified package.  The new SV is returned and its
8225 reference count is 1.
8226
8227 =cut
8228 */
8229
8230 SV*
8231 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
8232 {
8233     dVAR;
8234     SV *sv;
8235
8236     PERL_ARGS_ASSERT_NEWSVRV;
8237
8238     new_SV(sv);
8239
8240     SV_CHECK_THINKFIRST_COW_DROP(rv);
8241     (void)SvAMAGIC_off(rv);
8242
8243     if (SvTYPE(rv) >= SVt_PVMG) {
8244         const U32 refcnt = SvREFCNT(rv);
8245         SvREFCNT(rv) = 0;
8246         sv_clear(rv);
8247         SvFLAGS(rv) = 0;
8248         SvREFCNT(rv) = refcnt;
8249
8250         sv_upgrade(rv, SVt_IV);
8251     } else if (SvROK(rv)) {
8252         SvREFCNT_dec(SvRV(rv));
8253     } else {
8254         prepare_SV_for_RV(rv);
8255     }
8256
8257     SvOK_off(rv);
8258     SvRV_set(rv, sv);
8259     SvROK_on(rv);
8260
8261     if (classname) {
8262         HV* const stash = gv_stashpv(classname, GV_ADD);
8263         (void)sv_bless(rv, stash);
8264     }
8265     return sv;
8266 }
8267
8268 /*
8269 =for apidoc sv_setref_pv
8270
8271 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
8272 argument will be upgraded to an RV.  That RV will be modified to point to
8273 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
8274 into the SV.  The C<classname> argument indicates the package for the
8275 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8276 will have a reference count of 1, and the RV will be returned.
8277
8278 Do not use with other Perl types such as HV, AV, SV, CV, because those
8279 objects will become corrupted by the pointer copy process.
8280
8281 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
8282
8283 =cut
8284 */
8285
8286 SV*
8287 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
8288 {
8289     dVAR;
8290
8291     PERL_ARGS_ASSERT_SV_SETREF_PV;
8292
8293     if (!pv) {
8294         sv_setsv(rv, &PL_sv_undef);
8295         SvSETMAGIC(rv);
8296     }
8297     else
8298         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
8299     return rv;
8300 }
8301
8302 /*
8303 =for apidoc sv_setref_iv
8304
8305 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
8306 argument will be upgraded to an RV.  That RV will be modified to point to
8307 the new SV.  The C<classname> argument indicates the package for the
8308 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8309 will have a reference count of 1, and the RV will be returned.
8310
8311 =cut
8312 */
8313
8314 SV*
8315 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
8316 {
8317     PERL_ARGS_ASSERT_SV_SETREF_IV;
8318
8319     sv_setiv(newSVrv(rv,classname), iv);
8320     return rv;
8321 }
8322
8323 /*
8324 =for apidoc sv_setref_uv
8325
8326 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
8327 argument will be upgraded to an RV.  That RV will be modified to point to
8328 the new SV.  The C<classname> argument indicates the package for the
8329 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8330 will have a reference count of 1, and the RV will be returned.
8331
8332 =cut
8333 */
8334
8335 SV*
8336 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
8337 {
8338     PERL_ARGS_ASSERT_SV_SETREF_UV;
8339
8340     sv_setuv(newSVrv(rv,classname), uv);
8341     return rv;
8342 }
8343
8344 /*
8345 =for apidoc sv_setref_nv
8346
8347 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
8348 argument will be upgraded to an RV.  That RV will be modified to point to
8349 the new SV.  The C<classname> argument indicates the package for the
8350 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8351 will have a reference count of 1, and the RV will be returned.
8352
8353 =cut
8354 */
8355
8356 SV*
8357 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
8358 {
8359     PERL_ARGS_ASSERT_SV_SETREF_NV;
8360
8361     sv_setnv(newSVrv(rv,classname), nv);
8362     return rv;
8363 }
8364
8365 /*
8366 =for apidoc sv_setref_pvn
8367
8368 Copies a string into a new SV, optionally blessing the SV.  The length of the
8369 string must be specified with C<n>.  The C<rv> argument will be upgraded to
8370 an RV.  That RV will be modified to point to the new SV.  The C<classname>
8371 argument indicates the package for the blessing.  Set C<classname> to
8372 C<NULL> to avoid the blessing.  The new SV will have a reference count
8373 of 1, and the RV will be returned.
8374
8375 Note that C<sv_setref_pv> copies the pointer while this copies the string.
8376
8377 =cut
8378 */
8379
8380 SV*
8381 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
8382                    const char *const pv, const STRLEN n)
8383 {
8384     PERL_ARGS_ASSERT_SV_SETREF_PVN;
8385
8386     sv_setpvn(newSVrv(rv,classname), pv, n);
8387     return rv;
8388 }
8389
8390 /*
8391 =for apidoc sv_bless
8392
8393 Blesses an SV into a specified package.  The SV must be an RV.  The package
8394 must be designated by its stash (see C<gv_stashpv()>).  The reference count
8395 of the SV is unaffected.
8396
8397 =cut
8398 */
8399
8400 SV*
8401 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
8402 {
8403     dVAR;
8404     SV *tmpRef;
8405
8406     PERL_ARGS_ASSERT_SV_BLESS;
8407
8408     if (!SvROK(sv))
8409         Perl_croak(aTHX_ "Can't bless non-reference value");
8410     tmpRef = SvRV(sv);
8411     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
8412         if (SvIsCOW(tmpRef))
8413             sv_force_normal_flags(tmpRef, 0);
8414         if (SvREADONLY(tmpRef))
8415             Perl_croak(aTHX_ PL_no_modify);
8416         if (SvOBJECT(tmpRef)) {
8417             if (SvTYPE(tmpRef) != SVt_PVIO)
8418                 --PL_sv_objcount;
8419             SvREFCNT_dec(SvSTASH(tmpRef));
8420         }
8421     }
8422     SvOBJECT_on(tmpRef);
8423     if (SvTYPE(tmpRef) != SVt_PVIO)
8424         ++PL_sv_objcount;
8425     SvUPGRADE(tmpRef, SVt_PVMG);
8426     SvSTASH_set(tmpRef, (HV*)SvREFCNT_inc_simple(stash));
8427
8428     if (Gv_AMG(stash))
8429         SvAMAGIC_on(sv);
8430     else
8431         (void)SvAMAGIC_off(sv);
8432
8433     if(SvSMAGICAL(tmpRef))
8434         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
8435             mg_set(tmpRef);
8436
8437
8438
8439     return sv;
8440 }
8441
8442 /* Downgrades a PVGV to a PVMG.
8443  */
8444
8445 STATIC void
8446 S_sv_unglob(pTHX_ SV *const sv)
8447 {
8448     dVAR;
8449     void *xpvmg;
8450     HV *stash;
8451     SV * const temp = sv_newmortal();
8452
8453     PERL_ARGS_ASSERT_SV_UNGLOB;
8454
8455     assert(SvTYPE(sv) == SVt_PVGV);
8456     SvFAKE_off(sv);
8457     gv_efullname3(temp, (GV *) sv, "*");
8458
8459     if (GvGP(sv)) {
8460         if(GvCVu((GV*)sv) && (stash = GvSTASH((GV*)sv)) && HvNAME_get(stash))
8461             mro_method_changed_in(stash);
8462         gp_free((GV*)sv);
8463     }
8464     if (GvSTASH(sv)) {
8465         sv_del_backref((SV*)GvSTASH(sv), sv);
8466         GvSTASH(sv) = NULL;
8467     }
8468     GvMULTI_off(sv);
8469     if (GvNAME_HEK(sv)) {
8470         unshare_hek(GvNAME_HEK(sv));
8471     }
8472     isGV_with_GP_off(sv);
8473
8474     /* need to keep SvANY(sv) in the right arena */
8475     xpvmg = new_XPVMG();
8476     StructCopy(SvANY(sv), xpvmg, XPVMG);
8477     del_XPVGV(SvANY(sv));
8478     SvANY(sv) = xpvmg;
8479
8480     SvFLAGS(sv) &= ~SVTYPEMASK;
8481     SvFLAGS(sv) |= SVt_PVMG;
8482
8483     /* Intentionally not calling any local SET magic, as this isn't so much a
8484        set operation as merely an internal storage change.  */
8485     sv_setsv_flags(sv, temp, 0);
8486 }
8487
8488 /*
8489 =for apidoc sv_unref_flags
8490
8491 Unsets the RV status of the SV, and decrements the reference count of
8492 whatever was being referenced by the RV.  This can almost be thought of
8493 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
8494 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
8495 (otherwise the decrementing is conditional on the reference count being
8496 different from one or the reference being a readonly SV).
8497 See C<SvROK_off>.
8498
8499 =cut
8500 */
8501
8502 void
8503 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
8504 {
8505     SV* const target = SvRV(ref);
8506
8507     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
8508
8509     if (SvWEAKREF(ref)) {
8510         sv_del_backref(target, ref);
8511         SvWEAKREF_off(ref);
8512         SvRV_set(ref, NULL);
8513         return;
8514     }
8515     SvRV_set(ref, NULL);
8516     SvROK_off(ref);
8517     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
8518        assigned to as BEGIN {$a = \"Foo"} will fail.  */
8519     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
8520         SvREFCNT_dec(target);
8521     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
8522         sv_2mortal(target);     /* Schedule for freeing later */
8523 }
8524
8525 /*
8526 =for apidoc sv_untaint
8527
8528 Untaint an SV. Use C<SvTAINTED_off> instead.
8529 =cut
8530 */
8531
8532 void
8533 Perl_sv_untaint(pTHX_ SV *const sv)
8534 {
8535     PERL_ARGS_ASSERT_SV_UNTAINT;
8536
8537     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
8538         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
8539         if (mg)
8540             mg->mg_len &= ~1;
8541     }
8542 }
8543
8544 /*
8545 =for apidoc sv_tainted
8546
8547 Test an SV for taintedness. Use C<SvTAINTED> instead.
8548 =cut
8549 */
8550
8551 bool
8552 Perl_sv_tainted(pTHX_ SV *const sv)
8553 {
8554     PERL_ARGS_ASSERT_SV_TAINTED;
8555
8556     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
8557         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
8558         if (mg && (mg->mg_len & 1) )
8559             return TRUE;
8560     }
8561     return FALSE;
8562 }
8563
8564 /*
8565 =for apidoc sv_setpviv
8566
8567 Copies an integer into the given SV, also updating its string value.
8568 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
8569
8570 =cut
8571 */
8572
8573 void
8574 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
8575 {
8576     char buf[TYPE_CHARS(UV)];
8577     char *ebuf;
8578     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
8579
8580     PERL_ARGS_ASSERT_SV_SETPVIV;
8581
8582     sv_setpvn(sv, ptr, ebuf - ptr);
8583 }
8584
8585 /*
8586 =for apidoc sv_setpviv_mg
8587
8588 Like C<sv_setpviv>, but also handles 'set' magic.
8589
8590 =cut
8591 */
8592
8593 void
8594 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
8595 {
8596     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
8597
8598     sv_setpviv(sv, iv);
8599     SvSETMAGIC(sv);
8600 }
8601
8602 #if defined(PERL_IMPLICIT_CONTEXT)
8603
8604 /* pTHX_ magic can't cope with varargs, so this is a no-context
8605  * version of the main function, (which may itself be aliased to us).
8606  * Don't access this version directly.
8607  */
8608
8609 void
8610 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
8611 {
8612     dTHX;
8613     va_list args;
8614
8615     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
8616
8617     va_start(args, pat);
8618     sv_vsetpvf(sv, pat, &args);
8619     va_end(args);
8620 }
8621
8622 /* pTHX_ magic can't cope with varargs, so this is a no-context
8623  * version of the main function, (which may itself be aliased to us).
8624  * Don't access this version directly.
8625  */
8626
8627 void
8628 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
8629 {
8630     dTHX;
8631     va_list args;
8632
8633     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
8634
8635     va_start(args, pat);
8636     sv_vsetpvf_mg(sv, pat, &args);
8637     va_end(args);
8638 }
8639 #endif
8640
8641 /*
8642 =for apidoc sv_setpvf
8643
8644 Works like C<sv_catpvf> but copies the text into the SV instead of
8645 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
8646
8647 =cut
8648 */
8649
8650 void
8651 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
8652 {
8653     va_list args;
8654
8655     PERL_ARGS_ASSERT_SV_SETPVF;
8656
8657     va_start(args, pat);
8658     sv_vsetpvf(sv, pat, &args);
8659     va_end(args);
8660 }
8661
8662 /*
8663 =for apidoc sv_vsetpvf
8664
8665 Works like C<sv_vcatpvf> but copies the text into the SV instead of
8666 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
8667
8668 Usually used via its frontend C<sv_setpvf>.
8669
8670 =cut
8671 */
8672
8673 void
8674 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
8675 {
8676     PERL_ARGS_ASSERT_SV_VSETPVF;
8677
8678     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8679 }
8680
8681 /*
8682 =for apidoc sv_setpvf_mg
8683
8684 Like C<sv_setpvf>, but also handles 'set' magic.
8685
8686 =cut
8687 */
8688
8689 void
8690 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
8691 {
8692     va_list args;
8693
8694     PERL_ARGS_ASSERT_SV_SETPVF_MG;
8695
8696     va_start(args, pat);
8697     sv_vsetpvf_mg(sv, pat, &args);
8698     va_end(args);
8699 }
8700
8701 /*
8702 =for apidoc sv_vsetpvf_mg
8703
8704 Like C<sv_vsetpvf>, but also handles 'set' magic.
8705
8706 Usually used via its frontend C<sv_setpvf_mg>.
8707
8708 =cut
8709 */
8710
8711 void
8712 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
8713 {
8714     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
8715
8716     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8717     SvSETMAGIC(sv);
8718 }
8719
8720 #if defined(PERL_IMPLICIT_CONTEXT)
8721
8722 /* pTHX_ magic can't cope with varargs, so this is a no-context
8723  * version of the main function, (which may itself be aliased to us).
8724  * Don't access this version directly.
8725  */
8726
8727 void
8728 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
8729 {
8730     dTHX;
8731     va_list args;
8732
8733     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
8734
8735     va_start(args, pat);
8736     sv_vcatpvf(sv, pat, &args);
8737     va_end(args);
8738 }
8739
8740 /* pTHX_ magic can't cope with varargs, so this is a no-context
8741  * version of the main function, (which may itself be aliased to us).
8742  * Don't access this version directly.
8743  */
8744
8745 void
8746 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
8747 {
8748     dTHX;
8749     va_list args;
8750
8751     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
8752
8753     va_start(args, pat);
8754     sv_vcatpvf_mg(sv, pat, &args);
8755     va_end(args);
8756 }
8757 #endif
8758
8759 /*
8760 =for apidoc sv_catpvf
8761
8762 Processes its arguments like C<sprintf> and appends the formatted
8763 output to an SV.  If the appended data contains "wide" characters
8764 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
8765 and characters >255 formatted with %c), the original SV might get
8766 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
8767 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
8768 valid UTF-8; if the original SV was bytes, the pattern should be too.
8769
8770 =cut */
8771
8772 void
8773 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
8774 {
8775     va_list args;
8776
8777     PERL_ARGS_ASSERT_SV_CATPVF;
8778
8779     va_start(args, pat);
8780     sv_vcatpvf(sv, pat, &args);
8781     va_end(args);
8782 }
8783
8784 /*
8785 =for apidoc sv_vcatpvf
8786
8787 Processes its arguments like C<vsprintf> and appends the formatted output
8788 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
8789
8790 Usually used via its frontend C<sv_catpvf>.
8791
8792 =cut
8793 */
8794
8795 void
8796 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
8797 {
8798     PERL_ARGS_ASSERT_SV_VCATPVF;
8799
8800     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8801 }
8802
8803 /*
8804 =for apidoc sv_catpvf_mg
8805
8806 Like C<sv_catpvf>, but also handles 'set' magic.
8807
8808 =cut
8809 */
8810
8811 void
8812 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
8813 {
8814     va_list args;
8815
8816     PERL_ARGS_ASSERT_SV_CATPVF_MG;
8817
8818     va_start(args, pat);
8819     sv_vcatpvf_mg(sv, pat, &args);
8820     va_end(args);
8821 }
8822
8823 /*
8824 =for apidoc sv_vcatpvf_mg
8825
8826 Like C<sv_vcatpvf>, but also handles 'set' magic.
8827
8828 Usually used via its frontend C<sv_catpvf_mg>.
8829
8830 =cut
8831 */
8832
8833 void
8834 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
8835 {
8836     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
8837
8838     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8839     SvSETMAGIC(sv);
8840 }
8841
8842 /*
8843 =for apidoc sv_vsetpvfn
8844
8845 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
8846 appending it.
8847
8848 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
8849
8850 =cut
8851 */
8852
8853 void
8854 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
8855                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
8856 {
8857     PERL_ARGS_ASSERT_SV_VSETPVFN;
8858
8859     sv_setpvn(sv, "", 0);
8860     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
8861 }
8862
8863 STATIC I32
8864 S_expect_number(pTHX_ char **const pattern)
8865 {
8866     dVAR;
8867     I32 var = 0;
8868
8869     PERL_ARGS_ASSERT_EXPECT_NUMBER;
8870
8871     switch (**pattern) {
8872     case '1': case '2': case '3':
8873     case '4': case '5': case '6':
8874     case '7': case '8': case '9':
8875         var = *(*pattern)++ - '0';
8876         while (isDIGIT(**pattern)) {
8877             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
8878             if (tmp < var)
8879                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_NAME(PL_op) : "sv_vcatpvfn"));
8880             var = tmp;
8881         }
8882     }
8883     return var;
8884 }
8885
8886 STATIC char *
8887 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
8888 {
8889     const int neg = nv < 0;
8890     UV uv;
8891
8892     PERL_ARGS_ASSERT_F0CONVERT;
8893
8894     if (neg)
8895         nv = -nv;
8896     if (nv < UV_MAX) {
8897         char *p = endbuf;
8898         nv += 0.5;
8899         uv = (UV)nv;
8900         if (uv & 1 && uv == nv)
8901             uv--;                       /* Round to even */
8902         do {
8903             const unsigned dig = uv % 10;
8904             *--p = '0' + dig;
8905         } while (uv /= 10);
8906         if (neg)
8907             *--p = '-';
8908         *len = endbuf - p;
8909         return p;
8910     }
8911     return NULL;
8912 }
8913
8914
8915 /*
8916 =for apidoc sv_vcatpvfn
8917
8918 Processes its arguments like C<vsprintf> and appends the formatted output
8919 to an SV.  Uses an array of SVs if the C style variable argument list is
8920 missing (NULL).  When running with taint checks enabled, indicates via
8921 C<maybe_tainted> if results are untrustworthy (often due to the use of
8922 locales).
8923
8924 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
8925
8926 =cut
8927 */
8928
8929
8930 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
8931                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
8932                         vec_utf8 = DO_UTF8(vecsv);
8933
8934 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
8935
8936 void
8937 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
8938                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
8939 {
8940     dVAR;
8941     char *p;
8942     char *q;
8943     const char *patend;
8944     STRLEN origlen;
8945     I32 svix = 0;
8946     static const char nullstr[] = "(null)";
8947     SV *argsv = NULL;
8948     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
8949     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
8950     SV *nsv = NULL;
8951     /* Times 4: a decimal digit takes more than 3 binary digits.
8952      * NV_DIG: mantissa takes than many decimal digits.
8953      * Plus 32: Playing safe. */
8954     char ebuf[IV_DIG * 4 + NV_DIG + 32];
8955     /* large enough for "%#.#f" --chip */
8956     /* what about long double NVs? --jhi */
8957
8958     PERL_ARGS_ASSERT_SV_VCATPVFN;
8959     PERL_UNUSED_ARG(maybe_tainted);
8960
8961     /* no matter what, this is a string now */
8962     (void)SvPV_force(sv, origlen);
8963
8964     /* special-case "", "%s", and "%-p" (SVf - see below) */
8965     if (patlen == 0)
8966         return;
8967     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
8968         if (args) {
8969             const char * const s = va_arg(*args, char*);
8970             sv_catpv(sv, s ? s : nullstr);
8971         }
8972         else if (svix < svmax) {
8973             sv_catsv(sv, *svargs);
8974         }
8975         return;
8976     }
8977     if (args && patlen == 3 && pat[0] == '%' &&
8978                 pat[1] == '-' && pat[2] == 'p') {
8979         argsv = (SV*)va_arg(*args, void*);
8980         sv_catsv(sv, argsv);
8981         return;
8982     }
8983
8984 #ifndef USE_LONG_DOUBLE
8985     /* special-case "%.<number>[gf]" */
8986     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
8987          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
8988         unsigned digits = 0;
8989         const char *pp;
8990
8991         pp = pat + 2;
8992         while (*pp >= '0' && *pp <= '9')
8993             digits = 10 * digits + (*pp++ - '0');
8994         if (pp - pat == (int)patlen - 1) {
8995             NV nv;
8996
8997             if (svix < svmax)
8998                 nv = SvNV(*svargs);
8999             else
9000                 return;
9001             if (*pp == 'g') {
9002                 /* Add check for digits != 0 because it seems that some
9003                    gconverts are buggy in this case, and we don't yet have
9004                    a Configure test for this.  */
9005                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
9006                      /* 0, point, slack */
9007                     Gconvert(nv, (int)digits, 0, ebuf);
9008                     sv_catpv(sv, ebuf);
9009                     if (*ebuf)  /* May return an empty string for digits==0 */
9010                         return;
9011                 }
9012             } else if (!digits) {
9013                 STRLEN l;
9014
9015                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
9016                     sv_catpvn(sv, p, l);
9017                     return;
9018                 }
9019             }
9020         }
9021     }
9022 #endif /* !USE_LONG_DOUBLE */
9023
9024     if (!args && svix < svmax && DO_UTF8(*svargs))
9025         has_utf8 = TRUE;
9026
9027     patend = (char*)pat + patlen;
9028     for (p = (char*)pat; p < patend; p = q) {
9029         bool alt = FALSE;
9030         bool left = FALSE;
9031         bool vectorize = FALSE;
9032         bool vectorarg = FALSE;
9033         bool vec_utf8 = FALSE;
9034         char fill = ' ';
9035         char plus = 0;
9036         char intsize = 0;
9037         STRLEN width = 0;
9038         STRLEN zeros = 0;
9039         bool has_precis = FALSE;
9040         STRLEN precis = 0;
9041         const I32 osvix = svix;
9042         bool is_utf8 = FALSE;  /* is this item utf8?   */
9043 #ifdef HAS_LDBL_SPRINTF_BUG
9044         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
9045            with sfio - Allen <allens@cpan.org> */
9046         bool fix_ldbl_sprintf_bug = FALSE;
9047 #endif
9048
9049         char esignbuf[4];
9050         U8 utf8buf[UTF8_MAXBYTES+1];
9051         STRLEN esignlen = 0;
9052
9053         const char *eptr = NULL;
9054         STRLEN elen = 0;
9055         SV *vecsv = NULL;
9056         const U8 *vecstr = NULL;
9057         STRLEN veclen = 0;
9058         char c = 0;
9059         int i;
9060         unsigned base = 0;
9061         IV iv = 0;
9062         UV uv = 0;
9063         /* we need a long double target in case HAS_LONG_DOUBLE but
9064            not USE_LONG_DOUBLE
9065         */
9066 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
9067         long double nv;
9068 #else
9069         NV nv;
9070 #endif
9071         STRLEN have;
9072         STRLEN need;
9073         STRLEN gap;
9074         const char *dotstr = ".";
9075         STRLEN dotstrlen = 1;
9076         I32 efix = 0; /* explicit format parameter index */
9077         I32 ewix = 0; /* explicit width index */
9078         I32 epix = 0; /* explicit precision index */
9079         I32 evix = 0; /* explicit vector index */
9080         bool asterisk = FALSE;
9081
9082         /* echo everything up to the next format specification */
9083         for (q = p; q < patend && *q != '%'; ++q) ;
9084         if (q > p) {
9085             if (has_utf8 && !pat_utf8)
9086                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
9087             else
9088                 sv_catpvn(sv, p, q - p);
9089             p = q;
9090         }
9091         if (q++ >= patend)
9092             break;
9093
9094 /*
9095     We allow format specification elements in this order:
9096         \d+\$              explicit format parameter index
9097         [-+ 0#]+           flags
9098         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
9099         0                  flag (as above): repeated to allow "v02"     
9100         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
9101         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
9102         [hlqLV]            size
9103     [%bcdefginopsuxDFOUX] format (mandatory)
9104 */
9105
9106         if (args) {
9107 /*  
9108         As of perl5.9.3, printf format checking is on by default.
9109         Internally, perl uses %p formats to provide an escape to
9110         some extended formatting.  This block deals with those
9111         extensions: if it does not match, (char*)q is reset and
9112         the normal format processing code is used.
9113
9114         Currently defined extensions are:
9115                 %p              include pointer address (standard)      
9116                 %-p     (SVf)   include an SV (previously %_)
9117                 %-<num>p        include an SV with precision <num>      
9118                 %<num>p         reserved for future extensions
9119
9120         Robin Barker 2005-07-14
9121
9122                 %1p     (VDf)   removed.  RMB 2007-10-19
9123 */
9124             char* r = q; 
9125             bool sv = FALSE;    
9126             STRLEN n = 0;
9127             if (*q == '-')
9128                 sv = *q++;
9129             n = expect_number(&q);
9130             if (*q++ == 'p') {
9131                 if (sv) {                       /* SVf */
9132                     if (n) {
9133                         precis = n;
9134                         has_precis = TRUE;
9135                     }
9136                     argsv = (SV*)va_arg(*args, void*);
9137                     eptr = SvPV_const(argsv, elen);
9138                     if (DO_UTF8(argsv))
9139                         is_utf8 = TRUE;
9140                     goto string;
9141                 }
9142                 else if (n) {
9143                     if (ckWARN_d(WARN_INTERNAL))
9144                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
9145                         "internal %%<num>p might conflict with future printf extensions");
9146                 }
9147             }
9148             q = r; 
9149         }
9150
9151         if ( (width = expect_number(&q)) ) {
9152             if (*q == '$') {
9153                 ++q;
9154                 efix = width;
9155             } else {
9156                 goto gotwidth;
9157             }
9158         }
9159
9160         /* FLAGS */
9161
9162         while (*q) {
9163             switch (*q) {
9164             case ' ':
9165             case '+':
9166                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
9167                     q++;
9168                 else
9169                     plus = *q++;
9170                 continue;
9171
9172             case '-':
9173                 left = TRUE;
9174                 q++;
9175                 continue;
9176
9177             case '0':
9178                 fill = *q++;
9179                 continue;
9180
9181             case '#':
9182                 alt = TRUE;
9183                 q++;
9184                 continue;
9185
9186             default:
9187                 break;
9188             }
9189             break;
9190         }
9191
9192       tryasterisk:
9193         if (*q == '*') {
9194             q++;
9195             if ( (ewix = expect_number(&q)) )
9196                 if (*q++ != '$')
9197                     goto unknown;
9198             asterisk = TRUE;
9199         }
9200         if (*q == 'v') {
9201             q++;
9202             if (vectorize)
9203                 goto unknown;
9204             if ((vectorarg = asterisk)) {
9205                 evix = ewix;
9206                 ewix = 0;
9207                 asterisk = FALSE;
9208             }
9209             vectorize = TRUE;
9210             goto tryasterisk;
9211         }
9212
9213         if (!asterisk)
9214         {
9215             if( *q == '0' )
9216                 fill = *q++;
9217             width = expect_number(&q);
9218         }
9219
9220         if (vectorize) {
9221             if (vectorarg) {
9222                 if (args)
9223                     vecsv = va_arg(*args, SV*);
9224                 else if (evix) {
9225                     vecsv = (evix > 0 && evix <= svmax)
9226                         ? svargs[evix-1] : &PL_sv_undef;
9227                 } else {
9228                     vecsv = svix < svmax ? svargs[svix++] : &PL_sv_undef;
9229                 }
9230                 dotstr = SvPV_const(vecsv, dotstrlen);
9231                 /* Keep the DO_UTF8 test *after* the SvPV call, else things go
9232                    bad with tied or overloaded values that return UTF8.  */
9233                 if (DO_UTF8(vecsv))
9234                     is_utf8 = TRUE;
9235                 else if (has_utf8) {
9236                     vecsv = sv_mortalcopy(vecsv);
9237                     sv_utf8_upgrade(vecsv);
9238                     dotstr = SvPV_const(vecsv, dotstrlen);
9239                     is_utf8 = TRUE;
9240                 }                   
9241             }
9242             if (args) {
9243                 VECTORIZE_ARGS
9244             }
9245             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
9246                 vecsv = svargs[efix ? efix-1 : svix++];
9247                 vecstr = (U8*)SvPV_const(vecsv,veclen);
9248                 vec_utf8 = DO_UTF8(vecsv);
9249
9250                 /* if this is a version object, we need to convert
9251                  * back into v-string notation and then let the
9252                  * vectorize happen normally
9253                  */
9254                 if (sv_derived_from(vecsv, "version")) {
9255                     char *version = savesvpv(vecsv);
9256                     if ( hv_exists((HV*)SvRV(vecsv), "alpha", 5 ) ) {
9257                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
9258                         "vector argument not supported with alpha versions");
9259                         goto unknown;
9260                     }
9261                     vecsv = sv_newmortal();
9262                     scan_vstring(version, version + veclen, vecsv);
9263                     vecstr = (U8*)SvPV_const(vecsv, veclen);
9264                     vec_utf8 = DO_UTF8(vecsv);
9265                     Safefree(version);
9266                 }
9267             }
9268             else {
9269                 vecstr = (U8*)"";
9270                 veclen = 0;
9271             }
9272         }
9273
9274         if (asterisk) {
9275             if (args)
9276                 i = va_arg(*args, int);
9277             else
9278                 i = (ewix ? ewix <= svmax : svix < svmax) ?
9279                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9280             left |= (i < 0);
9281             width = (i < 0) ? -i : i;
9282         }
9283       gotwidth:
9284
9285         /* PRECISION */
9286
9287         if (*q == '.') {
9288             q++;
9289             if (*q == '*') {
9290                 q++;
9291                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
9292                     goto unknown;
9293                 /* XXX: todo, support specified precision parameter */
9294                 if (epix)
9295                     goto unknown;
9296                 if (args)
9297                     i = va_arg(*args, int);
9298                 else
9299                     i = (ewix ? ewix <= svmax : svix < svmax)
9300                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9301                 precis = i;
9302                 has_precis = !(i < 0);
9303             }
9304             else {
9305                 precis = 0;
9306                 while (isDIGIT(*q))
9307                     precis = precis * 10 + (*q++ - '0');
9308                 has_precis = TRUE;
9309             }
9310         }
9311
9312         /* SIZE */
9313
9314         switch (*q) {
9315 #ifdef WIN32
9316         case 'I':                       /* Ix, I32x, and I64x */
9317 #  ifdef WIN64
9318             if (q[1] == '6' && q[2] == '4') {
9319                 q += 3;
9320                 intsize = 'q';
9321                 break;
9322             }
9323 #  endif
9324             if (q[1] == '3' && q[2] == '2') {
9325                 q += 3;
9326                 break;
9327             }
9328 #  ifdef WIN64
9329             intsize = 'q';
9330 #  endif
9331             q++;
9332             break;
9333 #endif
9334 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9335         case 'L':                       /* Ld */
9336             /*FALLTHROUGH*/
9337 #ifdef HAS_QUAD
9338         case 'q':                       /* qd */
9339 #endif
9340             intsize = 'q';
9341             q++;
9342             break;
9343 #endif
9344         case 'l':
9345 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9346             if (*(q + 1) == 'l') {      /* lld, llf */
9347                 intsize = 'q';
9348                 q += 2;
9349                 break;
9350              }
9351 #endif
9352             /*FALLTHROUGH*/
9353         case 'h':
9354             /*FALLTHROUGH*/
9355         case 'V':
9356             intsize = *q++;
9357             break;
9358         }
9359
9360         /* CONVERSION */
9361
9362         if (*q == '%') {
9363             eptr = q++;
9364             elen = 1;
9365             if (vectorize) {
9366                 c = '%';
9367                 goto unknown;
9368             }
9369             goto string;
9370         }
9371
9372         if (!vectorize && !args) {
9373             if (efix) {
9374                 const I32 i = efix-1;
9375                 argsv = (i >= 0 && i < svmax) ? svargs[i] : &PL_sv_undef;
9376             } else {
9377                 argsv = (svix >= 0 && svix < svmax)
9378                     ? svargs[svix++] : &PL_sv_undef;
9379             }
9380         }
9381
9382         switch (c = *q++) {
9383
9384             /* STRINGS */
9385
9386         case 'c':
9387             if (vectorize)
9388                 goto unknown;
9389             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
9390             if ((uv > 255 ||
9391                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
9392                 && !IN_BYTES) {
9393                 eptr = (char*)utf8buf;
9394                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
9395                 is_utf8 = TRUE;
9396             }
9397             else {
9398                 c = (char)uv;
9399                 eptr = &c;
9400                 elen = 1;
9401             }
9402             goto string;
9403
9404         case 's':
9405             if (vectorize)
9406                 goto unknown;
9407             if (args) {
9408                 eptr = va_arg(*args, char*);
9409                 if (eptr)
9410 #ifdef MACOS_TRADITIONAL
9411                   /* On MacOS, %#s format is used for Pascal strings */
9412                   if (alt)
9413                     elen = *eptr++;
9414                   else
9415 #endif
9416                     elen = strlen(eptr);
9417                 else {
9418                     eptr = (char *)nullstr;
9419                     elen = sizeof nullstr - 1;
9420                 }
9421             }
9422             else {
9423                 eptr = SvPV_const(argsv, elen);
9424                 if (DO_UTF8(argsv)) {
9425                     I32 old_precis = precis;
9426                     if (has_precis && precis < elen) {
9427                         I32 p = precis;
9428                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
9429                         precis = p;
9430                     }
9431                     if (width) { /* fudge width (can't fudge elen) */
9432                         if (has_precis && precis < elen)
9433                             width += precis - old_precis;
9434                         else
9435                             width += elen - sv_len_utf8(argsv);
9436                     }
9437                     is_utf8 = TRUE;
9438                 }
9439             }
9440
9441         string:
9442             if (has_precis && elen > precis)
9443                 elen = precis;
9444             break;
9445
9446             /* INTEGERS */
9447
9448         case 'p':
9449             if (alt || vectorize)
9450                 goto unknown;
9451             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
9452             base = 16;
9453             goto integer;
9454
9455         case 'D':
9456 #ifdef IV_IS_QUAD
9457             intsize = 'q';
9458 #else
9459             intsize = 'l';
9460 #endif
9461             /*FALLTHROUGH*/
9462         case 'd':
9463         case 'i':
9464 #if vdNUMBER
9465         format_vd:
9466 #endif
9467             if (vectorize) {
9468                 STRLEN ulen;
9469                 if (!veclen)
9470                     continue;
9471                 if (vec_utf8)
9472                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9473                                         UTF8_ALLOW_ANYUV);
9474                 else {
9475                     uv = *vecstr;
9476                     ulen = 1;
9477                 }
9478                 vecstr += ulen;
9479                 veclen -= ulen;
9480                 if (plus)
9481                      esignbuf[esignlen++] = plus;
9482             }
9483             else if (args) {
9484                 switch (intsize) {
9485                 case 'h':       iv = (short)va_arg(*args, int); break;
9486                 case 'l':       iv = va_arg(*args, long); break;
9487                 case 'V':       iv = va_arg(*args, IV); break;
9488                 default:        iv = va_arg(*args, int); break;
9489 #ifdef HAS_QUAD
9490                 case 'q':       iv = va_arg(*args, Quad_t); break;
9491 #endif
9492                 }
9493             }
9494             else {
9495                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
9496                 switch (intsize) {
9497                 case 'h':       iv = (short)tiv; break;
9498                 case 'l':       iv = (long)tiv; break;
9499                 case 'V':
9500                 default:        iv = tiv; break;
9501 #ifdef HAS_QUAD
9502                 case 'q':       iv = (Quad_t)tiv; break;
9503 #endif
9504                 }
9505             }
9506             if ( !vectorize )   /* we already set uv above */
9507             {
9508                 if (iv >= 0) {
9509                     uv = iv;
9510                     if (plus)
9511                         esignbuf[esignlen++] = plus;
9512                 }
9513                 else {
9514                     uv = -iv;
9515                     esignbuf[esignlen++] = '-';
9516                 }
9517             }
9518             base = 10;
9519             goto integer;
9520
9521         case 'U':
9522 #ifdef IV_IS_QUAD
9523             intsize = 'q';
9524 #else
9525             intsize = 'l';
9526 #endif
9527             /*FALLTHROUGH*/
9528         case 'u':
9529             base = 10;
9530             goto uns_integer;
9531
9532         case 'B':
9533         case 'b':
9534             base = 2;
9535             goto uns_integer;
9536
9537         case 'O':
9538 #ifdef IV_IS_QUAD
9539             intsize = 'q';
9540 #else
9541             intsize = 'l';
9542 #endif
9543             /*FALLTHROUGH*/
9544         case 'o':
9545             base = 8;
9546             goto uns_integer;
9547
9548         case 'X':
9549         case 'x':
9550             base = 16;
9551
9552         uns_integer:
9553             if (vectorize) {
9554                 STRLEN ulen;
9555         vector:
9556                 if (!veclen)
9557                     continue;
9558                 if (vec_utf8)
9559                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9560                                         UTF8_ALLOW_ANYUV);
9561                 else {
9562                     uv = *vecstr;
9563                     ulen = 1;
9564                 }
9565                 vecstr += ulen;
9566                 veclen -= ulen;
9567             }
9568             else if (args) {
9569                 switch (intsize) {
9570                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
9571                 case 'l':  uv = va_arg(*args, unsigned long); break;
9572                 case 'V':  uv = va_arg(*args, UV); break;
9573                 default:   uv = va_arg(*args, unsigned); break;
9574 #ifdef HAS_QUAD
9575                 case 'q':  uv = va_arg(*args, Uquad_t); break;
9576 #endif
9577                 }
9578             }
9579             else {
9580                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
9581                 switch (intsize) {
9582                 case 'h':       uv = (unsigned short)tuv; break;
9583                 case 'l':       uv = (unsigned long)tuv; break;
9584                 case 'V':
9585                 default:        uv = tuv; break;
9586 #ifdef HAS_QUAD
9587                 case 'q':       uv = (Uquad_t)tuv; break;
9588 #endif
9589                 }
9590             }
9591
9592         integer:
9593             {
9594                 char *ptr = ebuf + sizeof ebuf;
9595                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
9596                 zeros = 0;
9597
9598                 switch (base) {
9599                     unsigned dig;
9600                 case 16:
9601                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
9602                     do {
9603                         dig = uv & 15;
9604                         *--ptr = p[dig];
9605                     } while (uv >>= 4);
9606                     if (tempalt) {
9607                         esignbuf[esignlen++] = '0';
9608                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
9609                     }
9610                     break;
9611                 case 8:
9612                     do {
9613                         dig = uv & 7;
9614                         *--ptr = '0' + dig;
9615                     } while (uv >>= 3);
9616                     if (alt && *ptr != '0')
9617                         *--ptr = '0';
9618                     break;
9619                 case 2:
9620                     do {
9621                         dig = uv & 1;
9622                         *--ptr = '0' + dig;
9623                     } while (uv >>= 1);
9624                     if (tempalt) {
9625                         esignbuf[esignlen++] = '0';
9626                         esignbuf[esignlen++] = c;
9627                     }
9628                     break;
9629                 default:                /* it had better be ten or less */
9630                     do {
9631                         dig = uv % base;
9632                         *--ptr = '0' + dig;
9633                     } while (uv /= base);
9634                     break;
9635                 }
9636                 elen = (ebuf + sizeof ebuf) - ptr;
9637                 eptr = ptr;
9638                 if (has_precis) {
9639                     if (precis > elen)
9640                         zeros = precis - elen;
9641                     else if (precis == 0 && elen == 1 && *eptr == '0'
9642                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
9643                         elen = 0;
9644
9645                 /* a precision nullifies the 0 flag. */
9646                     if (fill == '0')
9647                         fill = ' ';
9648                 }
9649             }
9650             break;
9651
9652             /* FLOATING POINT */
9653
9654         case 'F':
9655             c = 'f';            /* maybe %F isn't supported here */
9656             /*FALLTHROUGH*/
9657         case 'e': case 'E':
9658         case 'f':
9659         case 'g': case 'G':
9660             if (vectorize)
9661                 goto unknown;
9662
9663             /* This is evil, but floating point is even more evil */
9664
9665             /* for SV-style calling, we can only get NV
9666                for C-style calling, we assume %f is double;
9667                for simplicity we allow any of %Lf, %llf, %qf for long double
9668             */
9669             switch (intsize) {
9670             case 'V':
9671 #if defined(USE_LONG_DOUBLE)
9672                 intsize = 'q';
9673 #endif
9674                 break;
9675 /* [perl #20339] - we should accept and ignore %lf rather than die */
9676             case 'l':
9677                 /*FALLTHROUGH*/
9678             default:
9679 #if defined(USE_LONG_DOUBLE)
9680                 intsize = args ? 0 : 'q';
9681 #endif
9682                 break;
9683             case 'q':
9684 #if defined(HAS_LONG_DOUBLE)
9685                 break;
9686 #else
9687                 /*FALLTHROUGH*/
9688 #endif
9689             case 'h':
9690                 goto unknown;
9691             }
9692
9693             /* now we need (long double) if intsize == 'q', else (double) */
9694             nv = (args) ?
9695 #if LONG_DOUBLESIZE > DOUBLESIZE
9696                 intsize == 'q' ?
9697                     va_arg(*args, long double) :
9698                     va_arg(*args, double)
9699 #else
9700                     va_arg(*args, double)
9701 #endif
9702                 : SvNV(argsv);
9703
9704             need = 0;
9705             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
9706                else. frexp() has some unspecified behaviour for those three */
9707             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
9708                 i = PERL_INT_MIN;
9709                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
9710                    will cast our (long double) to (double) */
9711                 (void)Perl_frexp(nv, &i);
9712                 if (i == PERL_INT_MIN)
9713                     Perl_die(aTHX_ "panic: frexp");
9714                 if (i > 0)
9715                     need = BIT_DIGITS(i);
9716             }
9717             need += has_precis ? precis : 6; /* known default */
9718
9719             if (need < width)
9720                 need = width;
9721
9722 #ifdef HAS_LDBL_SPRINTF_BUG
9723             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
9724                with sfio - Allen <allens@cpan.org> */
9725
9726 #  ifdef DBL_MAX
9727 #    define MY_DBL_MAX DBL_MAX
9728 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
9729 #    if DOUBLESIZE >= 8
9730 #      define MY_DBL_MAX 1.7976931348623157E+308L
9731 #    else
9732 #      define MY_DBL_MAX 3.40282347E+38L
9733 #    endif
9734 #  endif
9735
9736 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
9737 #    define MY_DBL_MAX_BUG 1L
9738 #  else
9739 #    define MY_DBL_MAX_BUG MY_DBL_MAX
9740 #  endif
9741
9742 #  ifdef DBL_MIN
9743 #    define MY_DBL_MIN DBL_MIN
9744 #  else  /* XXX guessing! -Allen */
9745 #    if DOUBLESIZE >= 8
9746 #      define MY_DBL_MIN 2.2250738585072014E-308L
9747 #    else
9748 #      define MY_DBL_MIN 1.17549435E-38L
9749 #    endif
9750 #  endif
9751
9752             if ((intsize == 'q') && (c == 'f') &&
9753                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
9754                 (need < DBL_DIG)) {
9755                 /* it's going to be short enough that
9756                  * long double precision is not needed */
9757
9758                 if ((nv <= 0L) && (nv >= -0L))
9759                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
9760                 else {
9761                     /* would use Perl_fp_class as a double-check but not
9762                      * functional on IRIX - see perl.h comments */
9763
9764                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
9765                         /* It's within the range that a double can represent */
9766 #if defined(DBL_MAX) && !defined(DBL_MIN)
9767                         if ((nv >= ((long double)1/DBL_MAX)) ||
9768                             (nv <= (-(long double)1/DBL_MAX)))
9769 #endif
9770                         fix_ldbl_sprintf_bug = TRUE;
9771                     }
9772                 }
9773                 if (fix_ldbl_sprintf_bug == TRUE) {
9774                     double temp;
9775
9776                     intsize = 0;
9777                     temp = (double)nv;
9778                     nv = (NV)temp;
9779                 }
9780             }
9781
9782 #  undef MY_DBL_MAX
9783 #  undef MY_DBL_MAX_BUG
9784 #  undef MY_DBL_MIN
9785
9786 #endif /* HAS_LDBL_SPRINTF_BUG */
9787
9788             need += 20; /* fudge factor */
9789             if (PL_efloatsize < need) {
9790                 Safefree(PL_efloatbuf);
9791                 PL_efloatsize = need + 20; /* more fudge */
9792                 Newx(PL_efloatbuf, PL_efloatsize, char);
9793                 PL_efloatbuf[0] = '\0';
9794             }
9795
9796             if ( !(width || left || plus || alt) && fill != '0'
9797                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
9798                 /* See earlier comment about buggy Gconvert when digits,
9799                    aka precis is 0  */
9800                 if ( c == 'g' && precis) {
9801                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
9802                     /* May return an empty string for digits==0 */
9803                     if (*PL_efloatbuf) {
9804                         elen = strlen(PL_efloatbuf);
9805                         goto float_converted;
9806                     }
9807                 } else if ( c == 'f' && !precis) {
9808                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
9809                         break;
9810                 }
9811             }
9812             {
9813                 char *ptr = ebuf + sizeof ebuf;
9814                 *--ptr = '\0';
9815                 *--ptr = c;
9816                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
9817 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
9818                 if (intsize == 'q') {
9819                     /* Copy the one or more characters in a long double
9820                      * format before the 'base' ([efgEFG]) character to
9821                      * the format string. */
9822                     static char const prifldbl[] = PERL_PRIfldbl;
9823                     char const *p = prifldbl + sizeof(prifldbl) - 3;
9824                     while (p >= prifldbl) { *--ptr = *p--; }
9825                 }
9826 #endif
9827                 if (has_precis) {
9828                     base = precis;
9829                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
9830                     *--ptr = '.';
9831                 }
9832                 if (width) {
9833                     base = width;
9834                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
9835                 }
9836                 if (fill == '0')
9837                     *--ptr = fill;
9838                 if (left)
9839                     *--ptr = '-';
9840                 if (plus)
9841                     *--ptr = plus;
9842                 if (alt)
9843                     *--ptr = '#';
9844                 *--ptr = '%';
9845
9846                 /* No taint.  Otherwise we are in the strange situation
9847                  * where printf() taints but print($float) doesn't.
9848                  * --jhi */
9849 #if defined(HAS_LONG_DOUBLE)
9850                 elen = ((intsize == 'q')
9851                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
9852                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
9853 #else
9854                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
9855 #endif
9856             }
9857         float_converted:
9858             eptr = PL_efloatbuf;
9859             break;
9860
9861             /* SPECIAL */
9862
9863         case 'n':
9864             if (vectorize)
9865                 goto unknown;
9866             i = SvCUR(sv) - origlen;
9867             if (args) {
9868                 switch (intsize) {
9869                 case 'h':       *(va_arg(*args, short*)) = i; break;
9870                 default:        *(va_arg(*args, int*)) = i; break;
9871                 case 'l':       *(va_arg(*args, long*)) = i; break;
9872                 case 'V':       *(va_arg(*args, IV*)) = i; break;
9873 #ifdef HAS_QUAD
9874                 case 'q':       *(va_arg(*args, Quad_t*)) = i; break;
9875 #endif
9876                 }
9877             }
9878             else
9879                 sv_setuv_mg(argsv, (UV)i);
9880             continue;   /* not "break" */
9881
9882             /* UNKNOWN */
9883
9884         default:
9885       unknown:
9886             if (!args
9887                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
9888                 && ckWARN(WARN_PRINTF))
9889             {
9890                 SV * const msg = sv_newmortal();
9891                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
9892                           (PL_op->op_type == OP_PRTF) ? "" : "s");
9893                 if (c) {
9894                     if (isPRINT(c))
9895                         Perl_sv_catpvf(aTHX_ msg,
9896                                        "\"%%%c\"", c & 0xFF);
9897                     else
9898                         Perl_sv_catpvf(aTHX_ msg,
9899                                        "\"%%\\%03"UVof"\"",
9900                                        (UV)c & 0xFF);
9901                 } else
9902                     sv_catpvs(msg, "end of string");
9903                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
9904             }
9905
9906             /* output mangled stuff ... */
9907             if (c == '\0')
9908                 --q;
9909             eptr = p;
9910             elen = q - p;
9911
9912             /* ... right here, because formatting flags should not apply */
9913             SvGROW(sv, SvCUR(sv) + elen + 1);
9914             p = SvEND(sv);
9915             Copy(eptr, p, elen, char);
9916             p += elen;
9917             *p = '\0';
9918             SvCUR_set(sv, p - SvPVX_const(sv));
9919             svix = osvix;
9920             continue;   /* not "break" */
9921         }
9922
9923         if (is_utf8 != has_utf8) {
9924             if (is_utf8) {
9925                 if (SvCUR(sv))
9926                     sv_utf8_upgrade(sv);
9927             }
9928             else {
9929                 const STRLEN old_elen = elen;
9930                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
9931                 sv_utf8_upgrade(nsv);
9932                 eptr = SvPVX_const(nsv);
9933                 elen = SvCUR(nsv);
9934
9935                 if (width) { /* fudge width (can't fudge elen) */
9936                     width += elen - old_elen;
9937                 }
9938                 is_utf8 = TRUE;
9939             }
9940         }
9941
9942         have = esignlen + zeros + elen;
9943         if (have < zeros)
9944             Perl_croak_nocontext(PL_memory_wrap);
9945
9946         need = (have > width ? have : width);
9947         gap = need - have;
9948
9949         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
9950             Perl_croak_nocontext(PL_memory_wrap);
9951         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
9952         p = SvEND(sv);
9953         if (esignlen && fill == '0') {
9954             int i;
9955             for (i = 0; i < (int)esignlen; i++)
9956                 *p++ = esignbuf[i];
9957         }
9958         if (gap && !left) {
9959             memset(p, fill, gap);
9960             p += gap;
9961         }
9962         if (esignlen && fill != '0') {
9963             int i;
9964             for (i = 0; i < (int)esignlen; i++)
9965                 *p++ = esignbuf[i];
9966         }
9967         if (zeros) {
9968             int i;
9969             for (i = zeros; i; i--)
9970                 *p++ = '0';
9971         }
9972         if (elen) {
9973             Copy(eptr, p, elen, char);
9974             p += elen;
9975         }
9976         if (gap && left) {
9977             memset(p, ' ', gap);
9978             p += gap;
9979         }
9980         if (vectorize) {
9981             if (veclen) {
9982                 Copy(dotstr, p, dotstrlen, char);
9983                 p += dotstrlen;
9984             }
9985             else
9986                 vectorize = FALSE;              /* done iterating over vecstr */
9987         }
9988         if (is_utf8)
9989             has_utf8 = TRUE;
9990         if (has_utf8)
9991             SvUTF8_on(sv);
9992         *p = '\0';
9993         SvCUR_set(sv, p - SvPVX_const(sv));
9994         if (vectorize) {
9995             esignlen = 0;
9996             goto vector;
9997         }
9998     }
9999 }
10000
10001 /* =========================================================================
10002
10003 =head1 Cloning an interpreter
10004
10005 All the macros and functions in this section are for the private use of
10006 the main function, perl_clone().
10007
10008 The foo_dup() functions make an exact copy of an existing foo thingy.
10009 During the course of a cloning, a hash table is used to map old addresses
10010 to new addresses. The table is created and manipulated with the
10011 ptr_table_* functions.
10012
10013 =cut
10014
10015 ============================================================================*/
10016
10017
10018 #if defined(USE_ITHREADS)
10019
10020 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
10021 #ifndef GpREFCNT_inc
10022 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
10023 #endif
10024
10025
10026 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
10027    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
10028    If this changes, please unmerge ss_dup.  */
10029 #define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
10030 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup(s,t))
10031 #define av_dup(s,t)     (AV*)sv_dup((SV*)s,t)
10032 #define av_dup_inc(s,t) (AV*)SvREFCNT_inc(sv_dup((SV*)s,t))
10033 #define hv_dup(s,t)     (HV*)sv_dup((SV*)s,t)
10034 #define hv_dup_inc(s,t) (HV*)SvREFCNT_inc(sv_dup((SV*)s,t))
10035 #define cv_dup(s,t)     (CV*)sv_dup((SV*)s,t)
10036 #define cv_dup_inc(s,t) (CV*)SvREFCNT_inc(sv_dup((SV*)s,t))
10037 #define io_dup(s,t)     (IO*)sv_dup((SV*)s,t)
10038 #define io_dup_inc(s,t) (IO*)SvREFCNT_inc(sv_dup((SV*)s,t))
10039 #define gv_dup(s,t)     (GV*)sv_dup((SV*)s,t)
10040 #define gv_dup_inc(s,t) (GV*)SvREFCNT_inc(sv_dup((SV*)s,t))
10041 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
10042 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
10043
10044 /* clone a parser */
10045
10046 yy_parser *
10047 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
10048 {
10049     yy_parser *parser;
10050
10051     PERL_ARGS_ASSERT_PARSER_DUP;
10052
10053     if (!proto)
10054         return NULL;
10055
10056     /* look for it in the table first */
10057     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
10058     if (parser)
10059         return parser;
10060
10061     /* create anew and remember what it is */
10062     Newxz(parser, 1, yy_parser);
10063     ptr_table_store(PL_ptr_table, proto, parser);
10064
10065     parser->yyerrstatus = 0;
10066     parser->yychar = YYEMPTY;           /* Cause a token to be read.  */
10067
10068     /* XXX these not yet duped */
10069     parser->old_parser = NULL;
10070     parser->stack = NULL;
10071     parser->ps = NULL;
10072     parser->stack_size = 0;
10073     /* XXX parser->stack->state = 0; */
10074
10075     /* XXX eventually, just Copy() most of the parser struct ? */
10076
10077     parser->lex_brackets = proto->lex_brackets;
10078     parser->lex_casemods = proto->lex_casemods;
10079     parser->lex_brackstack = savepvn(proto->lex_brackstack,
10080                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
10081     parser->lex_casestack = savepvn(proto->lex_casestack,
10082                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
10083     parser->lex_defer   = proto->lex_defer;
10084     parser->lex_dojoin  = proto->lex_dojoin;
10085     parser->lex_expect  = proto->lex_expect;
10086     parser->lex_formbrack = proto->lex_formbrack;
10087     parser->lex_inpat   = proto->lex_inpat;
10088     parser->lex_inwhat  = proto->lex_inwhat;
10089     parser->lex_op      = proto->lex_op;
10090     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
10091     parser->lex_starts  = proto->lex_starts;
10092     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
10093     parser->multi_close = proto->multi_close;
10094     parser->multi_open  = proto->multi_open;
10095     parser->multi_start = proto->multi_start;
10096     parser->multi_end   = proto->multi_end;
10097     parser->pending_ident = proto->pending_ident;
10098     parser->preambled   = proto->preambled;
10099     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
10100     parser->linestr     = sv_dup_inc(proto->linestr, param);
10101     parser->expect      = proto->expect;
10102     parser->copline     = proto->copline;
10103     parser->last_lop_op = proto->last_lop_op;
10104     parser->lex_state   = proto->lex_state;
10105     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
10106     /* rsfp_filters entries have fake IoDIRP() */
10107     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
10108     parser->in_my       = proto->in_my;
10109     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
10110     parser->error_count = proto->error_count;
10111
10112
10113     parser->linestr     = sv_dup_inc(proto->linestr, param);
10114
10115     {
10116         char * const ols = SvPVX(proto->linestr);
10117         char * const ls  = SvPVX(parser->linestr);
10118
10119         parser->bufptr      = ls + (proto->bufptr >= ols ?
10120                                     proto->bufptr -  ols : 0);
10121         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
10122                                     proto->oldbufptr -  ols : 0);
10123         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
10124                                     proto->oldoldbufptr -  ols : 0);
10125         parser->linestart   = ls + (proto->linestart >= ols ?
10126                                     proto->linestart -  ols : 0);
10127         parser->last_uni    = ls + (proto->last_uni >= ols ?
10128                                     proto->last_uni -  ols : 0);
10129         parser->last_lop    = ls + (proto->last_lop >= ols ?
10130                                     proto->last_lop -  ols : 0);
10131
10132         parser->bufend      = ls + SvCUR(parser->linestr);
10133     }
10134
10135     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
10136
10137
10138 #ifdef PERL_MAD
10139     parser->endwhite    = proto->endwhite;
10140     parser->faketokens  = proto->faketokens;
10141     parser->lasttoke    = proto->lasttoke;
10142     parser->nextwhite   = proto->nextwhite;
10143     parser->realtokenstart = proto->realtokenstart;
10144     parser->skipwhite   = proto->skipwhite;
10145     parser->thisclose   = proto->thisclose;
10146     parser->thismad     = proto->thismad;
10147     parser->thisopen    = proto->thisopen;
10148     parser->thisstuff   = proto->thisstuff;
10149     parser->thistoken   = proto->thistoken;
10150     parser->thiswhite   = proto->thiswhite;
10151
10152     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
10153     parser->curforce    = proto->curforce;
10154 #else
10155     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
10156     Copy(proto->nexttype, parser->nexttype, 5,  I32);
10157     parser->nexttoke    = proto->nexttoke;
10158 #endif
10159     return parser;
10160 }
10161
10162
10163 /* duplicate a file handle */
10164
10165 PerlIO *
10166 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
10167 {
10168     PerlIO *ret;
10169
10170     PERL_ARGS_ASSERT_FP_DUP;
10171     PERL_UNUSED_ARG(type);
10172
10173     if (!fp)
10174         return (PerlIO*)NULL;
10175
10176     /* look for it in the table first */
10177     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
10178     if (ret)
10179         return ret;
10180
10181     /* create anew and remember what it is */
10182     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
10183     ptr_table_store(PL_ptr_table, fp, ret);
10184     return ret;
10185 }
10186
10187 /* duplicate a directory handle */
10188
10189 DIR *
10190 Perl_dirp_dup(pTHX_ DIR *const dp)
10191 {
10192     PERL_UNUSED_CONTEXT;
10193     if (!dp)
10194         return (DIR*)NULL;
10195     /* XXX TODO */
10196     return dp;
10197 }
10198
10199 /* duplicate a typeglob */
10200
10201 GP *
10202 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
10203 {
10204     GP *ret;
10205
10206     PERL_ARGS_ASSERT_GP_DUP;
10207
10208     if (!gp)
10209         return (GP*)NULL;
10210     /* look for it in the table first */
10211     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
10212     if (ret)
10213         return ret;
10214
10215     /* create anew and remember what it is */
10216     Newxz(ret, 1, GP);
10217     ptr_table_store(PL_ptr_table, gp, ret);
10218
10219     /* clone */
10220     ret->gp_refcnt      = 0;                    /* must be before any other dups! */
10221     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
10222     ret->gp_io          = io_dup_inc(gp->gp_io, param);
10223     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
10224     ret->gp_av          = av_dup_inc(gp->gp_av, param);
10225     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
10226     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
10227     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
10228     ret->gp_cvgen       = gp->gp_cvgen;
10229     ret->gp_line        = gp->gp_line;
10230     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
10231     return ret;
10232 }
10233
10234 /* duplicate a chain of magic */
10235
10236 MAGIC *
10237 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
10238 {
10239     MAGIC *mgprev = (MAGIC*)NULL;
10240     MAGIC *mgret;
10241
10242     PERL_ARGS_ASSERT_MG_DUP;
10243
10244     if (!mg)
10245         return (MAGIC*)NULL;
10246     /* look for it in the table first */
10247     mgret = (MAGIC*)ptr_table_fetch(PL_ptr_table, mg);
10248     if (mgret)
10249         return mgret;
10250
10251     for (; mg; mg = mg->mg_moremagic) {
10252         MAGIC *nmg;
10253         Newxz(nmg, 1, MAGIC);
10254         if (mgprev)
10255             mgprev->mg_moremagic = nmg;
10256         else
10257             mgret = nmg;
10258         nmg->mg_virtual = mg->mg_virtual;       /* XXX copy dynamic vtable? */
10259         nmg->mg_private = mg->mg_private;
10260         nmg->mg_type    = mg->mg_type;
10261         nmg->mg_flags   = mg->mg_flags;
10262         /* FIXME for plugins
10263         if (mg->mg_type == PERL_MAGIC_qr) {
10264             nmg->mg_obj = (SV*)CALLREGDUPE((REGEXP*)mg->mg_obj, param);
10265         }
10266         else
10267         */
10268         if(mg->mg_type == PERL_MAGIC_backref) {
10269             /* The backref AV has its reference count deliberately bumped by
10270                1.  */
10271             nmg->mg_obj = SvREFCNT_inc(av_dup_inc((AV*) mg->mg_obj, param));
10272         }
10273         else {
10274             nmg->mg_obj = (mg->mg_flags & MGf_REFCOUNTED)
10275                               ? sv_dup_inc(mg->mg_obj, param)
10276                               : sv_dup(mg->mg_obj, param);
10277         }
10278         nmg->mg_len     = mg->mg_len;
10279         nmg->mg_ptr     = mg->mg_ptr;   /* XXX random ptr? */
10280         if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
10281             if (mg->mg_len > 0) {
10282                 nmg->mg_ptr     = SAVEPVN(mg->mg_ptr, mg->mg_len);
10283                 if (mg->mg_type == PERL_MAGIC_overload_table &&
10284                         AMT_AMAGIC((AMT*)mg->mg_ptr))
10285                 {
10286                     const AMT * const amtp = (AMT*)mg->mg_ptr;
10287                     AMT * const namtp = (AMT*)nmg->mg_ptr;
10288                     I32 i;
10289                     for (i = 1; i < NofAMmeth; i++) {
10290                         namtp->table[i] = cv_dup_inc(amtp->table[i], param);
10291                     }
10292                 }
10293             }
10294             else if (mg->mg_len == HEf_SVKEY)
10295                 nmg->mg_ptr     = (char*)sv_dup_inc((SV*)mg->mg_ptr, param);
10296         }
10297         if ((mg->mg_flags & MGf_DUP) && mg->mg_virtual && mg->mg_virtual->svt_dup) {
10298             CALL_FPTR(nmg->mg_virtual->svt_dup)(aTHX_ nmg, param);
10299         }
10300         mgprev = nmg;
10301     }
10302     return mgret;
10303 }
10304
10305 #endif /* USE_ITHREADS */
10306
10307 /* create a new pointer-mapping table */
10308
10309 PTR_TBL_t *
10310 Perl_ptr_table_new(pTHX)
10311 {
10312     PTR_TBL_t *tbl;
10313     PERL_UNUSED_CONTEXT;
10314
10315     Newxz(tbl, 1, PTR_TBL_t);
10316     tbl->tbl_max        = 511;
10317     tbl->tbl_items      = 0;
10318     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
10319     return tbl;
10320 }
10321
10322 #define PTR_TABLE_HASH(ptr) \
10323   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
10324
10325 /* 
10326    we use the PTE_SVSLOT 'reservation' made above, both here (in the
10327    following define) and at call to new_body_inline made below in 
10328    Perl_ptr_table_store()
10329  */
10330
10331 #define del_pte(p)     del_body_type(p, PTE_SVSLOT)
10332
10333 /* map an existing pointer using a table */
10334
10335 STATIC PTR_TBL_ENT_t *
10336 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
10337 {
10338     PTR_TBL_ENT_t *tblent;
10339     const UV hash = PTR_TABLE_HASH(sv);
10340
10341     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
10342
10343     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
10344     for (; tblent; tblent = tblent->next) {
10345         if (tblent->oldval == sv)
10346             return tblent;
10347     }
10348     return NULL;
10349 }
10350
10351 void *
10352 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
10353 {
10354     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
10355
10356     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
10357     PERL_UNUSED_CONTEXT;
10358
10359     return tblent ? tblent->newval : NULL;
10360 }
10361
10362 /* add a new entry to a pointer-mapping table */
10363
10364 void
10365 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
10366 {
10367     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
10368
10369     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
10370     PERL_UNUSED_CONTEXT;
10371
10372     if (tblent) {
10373         tblent->newval = newsv;
10374     } else {
10375         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
10376
10377         new_body_inline(tblent, PTE_SVSLOT);
10378
10379         tblent->oldval = oldsv;
10380         tblent->newval = newsv;
10381         tblent->next = tbl->tbl_ary[entry];
10382         tbl->tbl_ary[entry] = tblent;
10383         tbl->tbl_items++;
10384         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
10385             ptr_table_split(tbl);
10386     }
10387 }
10388
10389 /* double the hash bucket size of an existing ptr table */
10390
10391 void
10392 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
10393 {
10394     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
10395     const UV oldsize = tbl->tbl_max + 1;
10396     UV newsize = oldsize * 2;
10397     UV i;
10398
10399     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
10400     PERL_UNUSED_CONTEXT;
10401
10402     Renew(ary, newsize, PTR_TBL_ENT_t*);
10403     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
10404     tbl->tbl_max = --newsize;
10405     tbl->tbl_ary = ary;
10406     for (i=0; i < oldsize; i++, ary++) {
10407         PTR_TBL_ENT_t **curentp, **entp, *ent;
10408         if (!*ary)
10409             continue;
10410         curentp = ary + oldsize;
10411         for (entp = ary, ent = *ary; ent; ent = *entp) {
10412             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
10413                 *entp = ent->next;
10414                 ent->next = *curentp;
10415                 *curentp = ent;
10416                 continue;
10417             }
10418             else
10419                 entp = &ent->next;
10420         }
10421     }
10422 }
10423
10424 /* remove all the entries from a ptr table */
10425
10426 void
10427 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
10428 {
10429     if (tbl && tbl->tbl_items) {
10430         register PTR_TBL_ENT_t * const * const array = tbl->tbl_ary;
10431         UV riter = tbl->tbl_max;
10432
10433         do {
10434             PTR_TBL_ENT_t *entry = array[riter];
10435
10436             while (entry) {
10437                 PTR_TBL_ENT_t * const oentry = entry;
10438                 entry = entry->next;
10439                 del_pte(oentry);
10440             }
10441         } while (riter--);
10442
10443         tbl->tbl_items = 0;
10444     }
10445 }
10446
10447 /* clear and free a ptr table */
10448
10449 void
10450 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
10451 {
10452     if (!tbl) {
10453         return;
10454     }
10455     ptr_table_clear(tbl);
10456     Safefree(tbl->tbl_ary);
10457     Safefree(tbl);
10458 }
10459
10460 #if defined(USE_ITHREADS)
10461
10462 void
10463 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
10464 {
10465     PERL_ARGS_ASSERT_RVPV_DUP;
10466
10467     if (SvROK(sstr)) {
10468         SvRV_set(dstr, SvWEAKREF(sstr)
10469                        ? sv_dup(SvRV(sstr), param)
10470                        : sv_dup_inc(SvRV(sstr), param));
10471
10472     }
10473     else if (SvPVX_const(sstr)) {
10474         /* Has something there */
10475         if (SvLEN(sstr)) {
10476             /* Normal PV - clone whole allocated space */
10477             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
10478             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
10479                 /* Not that normal - actually sstr is copy on write.
10480                    But we are a true, independant SV, so:  */
10481                 SvREADONLY_off(dstr);
10482                 SvFAKE_off(dstr);
10483             }
10484         }
10485         else {
10486             /* Special case - not normally malloced for some reason */
10487             if (isGV_with_GP(sstr)) {
10488                 /* Don't need to do anything here.  */
10489             }
10490             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
10491                 /* A "shared" PV - clone it as "shared" PV */
10492                 SvPV_set(dstr,
10493                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
10494                                          param)));
10495             }
10496             else {
10497                 /* Some other special case - random pointer */
10498                 SvPV_set(dstr, SvPVX(sstr));            
10499             }
10500         }
10501     }
10502     else {
10503         /* Copy the NULL */
10504         SvPV_set(dstr, NULL);
10505     }
10506 }
10507
10508 /* duplicate an SV of any type (including AV, HV etc) */
10509
10510 SV *
10511 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
10512 {
10513     dVAR;
10514     SV *dstr;
10515
10516     PERL_ARGS_ASSERT_SV_DUP;
10517
10518     if (!sstr)
10519         return NULL;
10520     if (SvTYPE(sstr) == SVTYPEMASK) {
10521 #ifdef DEBUG_LEAKING_SCALARS_ABORT
10522         abort();
10523 #endif
10524         return NULL;
10525     }
10526     /* look for it in the table first */
10527     dstr = (SV*)ptr_table_fetch(PL_ptr_table, sstr);
10528     if (dstr)
10529         return dstr;
10530
10531     if(param->flags & CLONEf_JOIN_IN) {
10532         /** We are joining here so we don't want do clone
10533             something that is bad **/
10534         if (SvTYPE(sstr) == SVt_PVHV) {
10535             const HEK * const hvname = HvNAME_HEK(sstr);
10536             if (hvname)
10537                 /** don't clone stashes if they already exist **/
10538                 return (SV*)gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname), 0);
10539         }
10540     }
10541
10542     /* create anew and remember what it is */
10543     new_SV(dstr);
10544
10545 #ifdef DEBUG_LEAKING_SCALARS
10546     dstr->sv_debug_optype = sstr->sv_debug_optype;
10547     dstr->sv_debug_line = sstr->sv_debug_line;
10548     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
10549     dstr->sv_debug_cloned = 1;
10550     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
10551 #endif
10552
10553     ptr_table_store(PL_ptr_table, sstr, dstr);
10554
10555     /* clone */
10556     SvFLAGS(dstr)       = SvFLAGS(sstr);
10557     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
10558     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
10559
10560 #ifdef DEBUGGING
10561     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
10562         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
10563                       (void*)PL_watch_pvx, SvPVX_const(sstr));
10564 #endif
10565
10566     /* don't clone objects whose class has asked us not to */
10567     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
10568         SvFLAGS(dstr) = 0;
10569         return dstr;
10570     }
10571
10572     switch (SvTYPE(sstr)) {
10573     case SVt_NULL:
10574         SvANY(dstr)     = NULL;
10575         break;
10576     case SVt_IV:
10577         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
10578         if(SvROK(sstr)) {
10579             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10580         } else {
10581             SvIV_set(dstr, SvIVX(sstr));
10582         }
10583         break;
10584     case SVt_NV:
10585         SvANY(dstr)     = new_XNV();
10586         SvNV_set(dstr, SvNVX(sstr));
10587         break;
10588         /* case SVt_BIND: */
10589     default:
10590         {
10591             /* These are all the types that need complex bodies allocating.  */
10592             void *new_body;
10593             const svtype sv_type = SvTYPE(sstr);
10594             const struct body_details *const sv_type_details
10595                 = bodies_by_type + sv_type;
10596
10597             switch (sv_type) {
10598             default:
10599                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
10600                 break;
10601
10602             case SVt_PVGV:
10603                 if (GvUNIQUE((GV*)sstr)) {
10604                     NOOP;   /* Do sharing here, and fall through */
10605                 }
10606             case SVt_PVIO:
10607             case SVt_PVFM:
10608             case SVt_PVHV:
10609             case SVt_PVAV:
10610             case SVt_PVCV:
10611             case SVt_PVLV:
10612             case SVt_REGEXP:
10613             case SVt_PVMG:
10614             case SVt_PVNV:
10615             case SVt_PVIV:
10616             case SVt_PV:
10617                 assert(sv_type_details->body_size);
10618                 if (sv_type_details->arena) {
10619                     new_body_inline(new_body, sv_type);
10620                     new_body
10621                         = (void*)((char*)new_body - sv_type_details->offset);
10622                 } else {
10623                     new_body = new_NOARENA(sv_type_details);
10624                 }
10625             }
10626             assert(new_body);
10627             SvANY(dstr) = new_body;
10628
10629 #ifndef PURIFY
10630             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
10631                  ((char*)SvANY(dstr)) + sv_type_details->offset,
10632                  sv_type_details->copy, char);
10633 #else
10634             Copy(((char*)SvANY(sstr)),
10635                  ((char*)SvANY(dstr)),
10636                  sv_type_details->body_size + sv_type_details->offset, char);
10637 #endif
10638
10639             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
10640                 && !isGV_with_GP(dstr))
10641                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10642
10643             /* The Copy above means that all the source (unduplicated) pointers
10644                are now in the destination.  We can check the flags and the
10645                pointers in either, but it's possible that there's less cache
10646                missing by always going for the destination.
10647                FIXME - instrument and check that assumption  */
10648             if (sv_type >= SVt_PVMG) {
10649                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
10650                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
10651                 } else if (SvMAGIC(dstr))
10652                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
10653                 if (SvSTASH(dstr))
10654                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
10655             }
10656
10657             /* The cast silences a GCC warning about unhandled types.  */
10658             switch ((int)sv_type) {
10659             case SVt_PV:
10660                 break;
10661             case SVt_PVIV:
10662                 break;
10663             case SVt_PVNV:
10664                 break;
10665             case SVt_PVMG:
10666                 break;
10667             case SVt_REGEXP:
10668                 /* FIXME for plugins */
10669                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
10670                 break;
10671             case SVt_PVLV:
10672                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
10673                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
10674                     LvTARG(dstr) = dstr;
10675                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
10676                     LvTARG(dstr) = (SV*)he_dup((HE*)LvTARG(dstr), 0, param);
10677                 else
10678                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
10679             case SVt_PVGV:
10680                 if(isGV_with_GP(sstr)) {
10681                     if (GvNAME_HEK(dstr))
10682                         GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
10683                     /* Don't call sv_add_backref here as it's going to be
10684                        created as part of the magic cloning of the symbol
10685                        table.  */
10686                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
10687                        at the point of this comment.  */
10688                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
10689                     GvGP(dstr)  = gp_dup(GvGP(sstr), param);
10690                     (void)GpREFCNT_inc(GvGP(dstr));
10691                 } else
10692                     Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10693                 break;
10694             case SVt_PVIO:
10695                 IoIFP(dstr)     = fp_dup(IoIFP(dstr), IoTYPE(dstr), param);
10696                 if (IoOFP(dstr) == IoIFP(sstr))
10697                     IoOFP(dstr) = IoIFP(dstr);
10698                 else
10699                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
10700                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
10701                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
10702                     /* I have no idea why fake dirp (rsfps)
10703                        should be treated differently but otherwise
10704                        we end up with leaks -- sky*/
10705                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
10706                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
10707                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
10708                 } else {
10709                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
10710                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
10711                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
10712                     if (IoDIRP(dstr)) {
10713                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr));
10714                     } else {
10715                         NOOP;
10716                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
10717                     }
10718                 }
10719                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
10720                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
10721                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
10722                 break;
10723             case SVt_PVAV:
10724                 if (AvARRAY((AV*)sstr)) {
10725                     SV **dst_ary, **src_ary;
10726                     SSize_t items = AvFILLp((AV*)sstr) + 1;
10727
10728                     src_ary = AvARRAY((AV*)sstr);
10729                     Newxz(dst_ary, AvMAX((AV*)sstr)+1, SV*);
10730                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
10731                     AvARRAY((AV*)dstr) = dst_ary;
10732                     AvALLOC((AV*)dstr) = dst_ary;
10733                     if (AvREAL((AV*)sstr)) {
10734                         while (items-- > 0)
10735                             *dst_ary++ = sv_dup_inc(*src_ary++, param);
10736                     }
10737                     else {
10738                         while (items-- > 0)
10739                             *dst_ary++ = sv_dup(*src_ary++, param);
10740                     }
10741                     items = AvMAX((AV*)sstr) - AvFILLp((AV*)sstr);
10742                     while (items-- > 0) {
10743                         *dst_ary++ = &PL_sv_undef;
10744                     }
10745                 }
10746                 else {
10747                     AvARRAY((AV*)dstr)  = NULL;
10748                     AvALLOC((AV*)dstr)  = (SV**)NULL;
10749                 }
10750                 break;
10751             case SVt_PVHV:
10752                 if (HvARRAY((HV*)sstr)) {
10753                     STRLEN i = 0;
10754                     const bool sharekeys = !!HvSHAREKEYS(sstr);
10755                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
10756                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
10757                     char *darray;
10758                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
10759                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
10760                         char);
10761                     HvARRAY(dstr) = (HE**)darray;
10762                     while (i <= sxhv->xhv_max) {
10763                         const HE * const source = HvARRAY(sstr)[i];
10764                         HvARRAY(dstr)[i] = source
10765                             ? he_dup(source, sharekeys, param) : 0;
10766                         ++i;
10767                     }
10768                     if (SvOOK(sstr)) {
10769                         HEK *hvname;
10770                         const struct xpvhv_aux * const saux = HvAUX(sstr);
10771                         struct xpvhv_aux * const daux = HvAUX(dstr);
10772                         /* This flag isn't copied.  */
10773                         /* SvOOK_on(hv) attacks the IV flags.  */
10774                         SvFLAGS(dstr) |= SVf_OOK;
10775
10776                         hvname = saux->xhv_name;
10777                         daux->xhv_name = hvname ? hek_dup(hvname, param) : hvname;
10778
10779                         daux->xhv_riter = saux->xhv_riter;
10780                         daux->xhv_eiter = saux->xhv_eiter
10781                             ? he_dup(saux->xhv_eiter,
10782                                         (bool)!!HvSHAREKEYS(sstr), param) : 0;
10783                         /* backref array needs refcnt=2; see sv_add_backref */
10784                         daux->xhv_backreferences =
10785                             saux->xhv_backreferences
10786                                 ? (AV*) SvREFCNT_inc(
10787                                         sv_dup_inc((SV*)saux->xhv_backreferences, param))
10788                                 : 0;
10789
10790                         daux->xhv_mro_meta = saux->xhv_mro_meta
10791                             ? mro_meta_dup(saux->xhv_mro_meta, param)
10792                             : 0;
10793
10794                         /* Record stashes for possible cloning in Perl_clone(). */
10795                         if (hvname)
10796                             av_push(param->stashes, dstr);
10797                     }
10798                 }
10799                 else
10800                     HvARRAY((HV*)dstr) = NULL;
10801                 break;
10802             case SVt_PVCV:
10803                 if (!(param->flags & CLONEf_COPY_STACKS)) {
10804                     CvDEPTH(dstr) = 0;
10805                 }
10806             case SVt_PVFM:
10807                 /* NOTE: not refcounted */
10808                 CvSTASH(dstr)   = hv_dup(CvSTASH(dstr), param);
10809                 OP_REFCNT_LOCK;
10810                 if (!CvISXSUB(dstr))
10811                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
10812                 OP_REFCNT_UNLOCK;
10813                 if (CvCONST(dstr) && CvISXSUB(dstr)) {
10814                     CvXSUBANY(dstr).any_ptr = GvUNIQUE(CvGV(dstr)) ?
10815                         SvREFCNT_inc(CvXSUBANY(dstr).any_ptr) :
10816                         sv_dup_inc((SV *)CvXSUBANY(dstr).any_ptr, param);
10817                 }
10818                 /* don't dup if copying back - CvGV isn't refcounted, so the
10819                  * duped GV may never be freed. A bit of a hack! DAPM */
10820                 CvGV(dstr)      = (param->flags & CLONEf_JOIN_IN) ?
10821                     NULL : gv_dup(CvGV(dstr), param) ;
10822                 PAD_DUP(CvPADLIST(dstr), CvPADLIST(sstr), param);
10823                 CvOUTSIDE(dstr) =
10824                     CvWEAKOUTSIDE(sstr)
10825                     ? cv_dup(    CvOUTSIDE(dstr), param)
10826                     : cv_dup_inc(CvOUTSIDE(dstr), param);
10827                 if (!CvISXSUB(dstr))
10828                     CvFILE(dstr) = SAVEPV(CvFILE(dstr));
10829                 break;
10830             }
10831         }
10832     }
10833
10834     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
10835         ++PL_sv_objcount;
10836
10837     return dstr;
10838  }
10839
10840 /* duplicate a context */
10841
10842 PERL_CONTEXT *
10843 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
10844 {
10845     PERL_CONTEXT *ncxs;
10846
10847     PERL_ARGS_ASSERT_CX_DUP;
10848
10849     if (!cxs)
10850         return (PERL_CONTEXT*)NULL;
10851
10852     /* look for it in the table first */
10853     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
10854     if (ncxs)
10855         return ncxs;
10856
10857     /* create anew and remember what it is */
10858     Newx(ncxs, max + 1, PERL_CONTEXT);
10859     ptr_table_store(PL_ptr_table, cxs, ncxs);
10860     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
10861
10862     while (ix >= 0) {
10863         PERL_CONTEXT * const ncx = &ncxs[ix];
10864         if (CxTYPE(ncx) == CXt_SUBST) {
10865             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
10866         }
10867         else {
10868             switch (CxTYPE(ncx)) {
10869             case CXt_SUB:
10870                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
10871                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
10872                                            : cv_dup(ncx->blk_sub.cv,param));
10873                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
10874                                            ? av_dup_inc(ncx->blk_sub.argarray,
10875                                                         param)
10876                                            : NULL);
10877                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
10878                                                      param);
10879                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
10880                                            ncx->blk_sub.oldcomppad);
10881                 break;
10882             case CXt_EVAL:
10883                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
10884                                                       param);
10885                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
10886                 break;
10887             case CXt_LOOP_LAZYSV:
10888                 ncx->blk_loop.state_u.lazysv.end
10889                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
10890                 /* We are taking advantage of av_dup_inc and sv_dup_inc
10891                    actually being the same function, and order equivalance of
10892                    the two unions.
10893                    We can assert the later [but only at run time :-(]  */
10894                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
10895                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
10896             case CXt_LOOP_FOR:
10897                 ncx->blk_loop.state_u.ary.ary
10898                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
10899             case CXt_LOOP_LAZYIV:
10900             case CXt_LOOP_PLAIN:
10901                 if (CxPADLOOP(ncx)) {
10902                     ncx->blk_loop.oldcomppad
10903                         = (PAD*)ptr_table_fetch(PL_ptr_table,
10904                                                 ncx->blk_loop.oldcomppad);
10905                 } else {
10906                     ncx->blk_loop.oldcomppad
10907                         = (PAD*)gv_dup((GV*)ncx->blk_loop.oldcomppad, param);
10908                 }
10909                 break;
10910             case CXt_FORMAT:
10911                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
10912                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
10913                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
10914                                                      param);
10915                 break;
10916             case CXt_BLOCK:
10917             case CXt_NULL:
10918                 break;
10919             }
10920         }
10921         --ix;
10922     }
10923     return ncxs;
10924 }
10925
10926 /* duplicate a stack info structure */
10927
10928 PERL_SI *
10929 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
10930 {
10931     PERL_SI *nsi;
10932
10933     PERL_ARGS_ASSERT_SI_DUP;
10934
10935     if (!si)
10936         return (PERL_SI*)NULL;
10937
10938     /* look for it in the table first */
10939     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
10940     if (nsi)
10941         return nsi;
10942
10943     /* create anew and remember what it is */
10944     Newxz(nsi, 1, PERL_SI);
10945     ptr_table_store(PL_ptr_table, si, nsi);
10946
10947     nsi->si_stack       = av_dup_inc(si->si_stack, param);
10948     nsi->si_cxix        = si->si_cxix;
10949     nsi->si_cxmax       = si->si_cxmax;
10950     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
10951     nsi->si_type        = si->si_type;
10952     nsi->si_prev        = si_dup(si->si_prev, param);
10953     nsi->si_next        = si_dup(si->si_next, param);
10954     nsi->si_markoff     = si->si_markoff;
10955
10956     return nsi;
10957 }
10958
10959 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
10960 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
10961 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
10962 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
10963 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
10964 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
10965 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
10966 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
10967 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
10968 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
10969 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
10970 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
10971 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
10972 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
10973
10974 /* XXXXX todo */
10975 #define pv_dup_inc(p)   SAVEPV(p)
10976 #define pv_dup(p)       SAVEPV(p)
10977 #define svp_dup_inc(p,pp)       any_dup(p,pp)
10978
10979 /* map any object to the new equivent - either something in the
10980  * ptr table, or something in the interpreter structure
10981  */
10982
10983 void *
10984 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
10985 {
10986     void *ret;
10987
10988     PERL_ARGS_ASSERT_ANY_DUP;
10989
10990     if (!v)
10991         return (void*)NULL;
10992
10993     /* look for it in the table first */
10994     ret = ptr_table_fetch(PL_ptr_table, v);
10995     if (ret)
10996         return ret;
10997
10998     /* see if it is part of the interpreter structure */
10999     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
11000         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
11001     else {
11002         ret = v;
11003     }
11004
11005     return ret;
11006 }
11007
11008 /* duplicate the save stack */
11009
11010 ANY *
11011 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
11012 {
11013     dVAR;
11014     ANY * const ss      = proto_perl->Isavestack;
11015     const I32 max       = proto_perl->Isavestack_max;
11016     I32 ix              = proto_perl->Isavestack_ix;
11017     ANY *nss;
11018     SV *sv;
11019     GV *gv;
11020     AV *av;
11021     HV *hv;
11022     void* ptr;
11023     int intval;
11024     long longval;
11025     GP *gp;
11026     IV iv;
11027     I32 i;
11028     char *c = NULL;
11029     void (*dptr) (void*);
11030     void (*dxptr) (pTHX_ void*);
11031
11032     PERL_ARGS_ASSERT_SS_DUP;
11033
11034     Newxz(nss, max, ANY);
11035
11036     while (ix > 0) {
11037         const I32 type = POPINT(ss,ix);
11038         TOPINT(nss,ix) = type;
11039         switch (type) {
11040         case SAVEt_HELEM:               /* hash element */
11041             sv = (SV*)POPPTR(ss,ix);
11042             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11043             /* fall through */
11044         case SAVEt_ITEM:                        /* normal string */
11045         case SAVEt_SV:                          /* scalar reference */
11046             sv = (SV*)POPPTR(ss,ix);
11047             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11048             /* fall through */
11049         case SAVEt_FREESV:
11050         case SAVEt_MORTALIZESV:
11051             sv = (SV*)POPPTR(ss,ix);
11052             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11053             break;
11054         case SAVEt_SHARED_PVREF:                /* char* in shared space */
11055             c = (char*)POPPTR(ss,ix);
11056             TOPPTR(nss,ix) = savesharedpv(c);
11057             ptr = POPPTR(ss,ix);
11058             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11059             break;
11060         case SAVEt_GENERIC_SVREF:               /* generic sv */
11061         case SAVEt_SVREF:                       /* scalar reference */
11062             sv = (SV*)POPPTR(ss,ix);
11063             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11064             ptr = POPPTR(ss,ix);
11065             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
11066             break;
11067         case SAVEt_HV:                          /* hash reference */
11068         case SAVEt_AV:                          /* array reference */
11069             sv = (SV*) POPPTR(ss,ix);
11070             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11071             /* fall through */
11072         case SAVEt_COMPPAD:
11073         case SAVEt_NSTAB:
11074             sv = (SV*) POPPTR(ss,ix);
11075             TOPPTR(nss,ix) = sv_dup(sv, param);
11076             break;
11077         case SAVEt_INT:                         /* int reference */
11078             ptr = POPPTR(ss,ix);
11079             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11080             intval = (int)POPINT(ss,ix);
11081             TOPINT(nss,ix) = intval;
11082             break;
11083         case SAVEt_LONG:                        /* long reference */
11084             ptr = POPPTR(ss,ix);
11085             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11086             /* fall through */
11087         case SAVEt_CLEARSV:
11088             longval = (long)POPLONG(ss,ix);
11089             TOPLONG(nss,ix) = longval;
11090             break;
11091         case SAVEt_I32:                         /* I32 reference */
11092         case SAVEt_I16:                         /* I16 reference */
11093         case SAVEt_I8:                          /* I8 reference */
11094         case SAVEt_COP_ARYBASE:                 /* call CopARYBASE_set */
11095             ptr = POPPTR(ss,ix);
11096             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11097             i = POPINT(ss,ix);
11098             TOPINT(nss,ix) = i;
11099             break;
11100         case SAVEt_IV:                          /* IV reference */
11101             ptr = POPPTR(ss,ix);
11102             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11103             iv = POPIV(ss,ix);
11104             TOPIV(nss,ix) = iv;
11105             break;
11106         case SAVEt_HPTR:                        /* HV* reference */
11107         case SAVEt_APTR:                        /* AV* reference */
11108         case SAVEt_SPTR:                        /* SV* reference */
11109             ptr = POPPTR(ss,ix);
11110             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11111             sv = (SV*)POPPTR(ss,ix);
11112             TOPPTR(nss,ix) = sv_dup(sv, param);
11113             break;
11114         case SAVEt_VPTR:                        /* random* reference */
11115             ptr = POPPTR(ss,ix);
11116             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11117             ptr = POPPTR(ss,ix);
11118             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11119             break;
11120         case SAVEt_GENERIC_PVREF:               /* generic char* */
11121         case SAVEt_PPTR:                        /* char* reference */
11122             ptr = POPPTR(ss,ix);
11123             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11124             c = (char*)POPPTR(ss,ix);
11125             TOPPTR(nss,ix) = pv_dup(c);
11126             break;
11127         case SAVEt_GP:                          /* scalar reference */
11128             gp = (GP*)POPPTR(ss,ix);
11129             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
11130             (void)GpREFCNT_inc(gp);
11131             gv = (GV*)POPPTR(ss,ix);
11132             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
11133             break;
11134         case SAVEt_FREEOP:
11135             ptr = POPPTR(ss,ix);
11136             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
11137                 /* these are assumed to be refcounted properly */
11138                 OP *o;
11139                 switch (((OP*)ptr)->op_type) {
11140                 case OP_LEAVESUB:
11141                 case OP_LEAVESUBLV:
11142                 case OP_LEAVEEVAL:
11143                 case OP_LEAVE:
11144                 case OP_SCOPE:
11145                 case OP_LEAVEWRITE:
11146                     TOPPTR(nss,ix) = ptr;
11147                     o = (OP*)ptr;
11148                     OP_REFCNT_LOCK;
11149                     (void) OpREFCNT_inc(o);
11150                     OP_REFCNT_UNLOCK;
11151                     break;
11152                 default:
11153                     TOPPTR(nss,ix) = NULL;
11154                     break;
11155                 }
11156             }
11157             else
11158                 TOPPTR(nss,ix) = NULL;
11159             break;
11160         case SAVEt_FREEPV:
11161             c = (char*)POPPTR(ss,ix);
11162             TOPPTR(nss,ix) = pv_dup_inc(c);
11163             break;
11164         case SAVEt_DELETE:
11165             hv = (HV*)POPPTR(ss,ix);
11166             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11167             c = (char*)POPPTR(ss,ix);
11168             TOPPTR(nss,ix) = pv_dup_inc(c);
11169             /* fall through */
11170         case SAVEt_STACK_POS:           /* Position on Perl stack */
11171             i = POPINT(ss,ix);
11172             TOPINT(nss,ix) = i;
11173             break;
11174         case SAVEt_DESTRUCTOR:
11175             ptr = POPPTR(ss,ix);
11176             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11177             dptr = POPDPTR(ss,ix);
11178             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
11179                                         any_dup(FPTR2DPTR(void *, dptr),
11180                                                 proto_perl));
11181             break;
11182         case SAVEt_DESTRUCTOR_X:
11183             ptr = POPPTR(ss,ix);
11184             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11185             dxptr = POPDXPTR(ss,ix);
11186             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
11187                                          any_dup(FPTR2DPTR(void *, dxptr),
11188                                                  proto_perl));
11189             break;
11190         case SAVEt_REGCONTEXT:
11191         case SAVEt_ALLOC:
11192             i = POPINT(ss,ix);
11193             TOPINT(nss,ix) = i;
11194             ix -= i;
11195             break;
11196         case SAVEt_AELEM:               /* array element */
11197             sv = (SV*)POPPTR(ss,ix);
11198             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11199             i = POPINT(ss,ix);
11200             TOPINT(nss,ix) = i;
11201             av = (AV*)POPPTR(ss,ix);
11202             TOPPTR(nss,ix) = av_dup_inc(av, param);
11203             break;
11204         case SAVEt_OP:
11205             ptr = POPPTR(ss,ix);
11206             TOPPTR(nss,ix) = ptr;
11207             break;
11208         case SAVEt_HINTS:
11209             i = POPINT(ss,ix);
11210             TOPINT(nss,ix) = i;
11211             ptr = POPPTR(ss,ix);
11212             if (ptr) {
11213                 HINTS_REFCNT_LOCK;
11214                 ((struct refcounted_he *)ptr)->refcounted_he_refcnt++;
11215                 HINTS_REFCNT_UNLOCK;
11216             }
11217             TOPPTR(nss,ix) = ptr;
11218             if (i & HINT_LOCALIZE_HH) {
11219                 hv = (HV*)POPPTR(ss,ix);
11220                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11221             }
11222             break;
11223         case SAVEt_PADSV_AND_MORTALIZE:
11224             longval = (long)POPLONG(ss,ix);
11225             TOPLONG(nss,ix) = longval;
11226             ptr = POPPTR(ss,ix);
11227             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11228             sv = (SV*)POPPTR(ss,ix);
11229             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11230             break;
11231         case SAVEt_BOOL:
11232             ptr = POPPTR(ss,ix);
11233             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11234             longval = (long)POPBOOL(ss,ix);
11235             TOPBOOL(nss,ix) = (bool)longval;
11236             break;
11237         case SAVEt_SET_SVFLAGS:
11238             i = POPINT(ss,ix);
11239             TOPINT(nss,ix) = i;
11240             i = POPINT(ss,ix);
11241             TOPINT(nss,ix) = i;
11242             sv = (SV*)POPPTR(ss,ix);
11243             TOPPTR(nss,ix) = sv_dup(sv, param);
11244             break;
11245         case SAVEt_RE_STATE:
11246             {
11247                 const struct re_save_state *const old_state
11248                     = (struct re_save_state *)
11249                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
11250                 struct re_save_state *const new_state
11251                     = (struct re_save_state *)
11252                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
11253
11254                 Copy(old_state, new_state, 1, struct re_save_state);
11255                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
11256
11257                 new_state->re_state_bostr
11258                     = pv_dup(old_state->re_state_bostr);
11259                 new_state->re_state_reginput
11260                     = pv_dup(old_state->re_state_reginput);
11261                 new_state->re_state_regeol
11262                     = pv_dup(old_state->re_state_regeol);
11263                 new_state->re_state_regoffs
11264                     = (regexp_paren_pair*)
11265                         any_dup(old_state->re_state_regoffs, proto_perl);
11266                 new_state->re_state_reglastparen
11267                     = (U32*) any_dup(old_state->re_state_reglastparen, 
11268                               proto_perl);
11269                 new_state->re_state_reglastcloseparen
11270                     = (U32*)any_dup(old_state->re_state_reglastcloseparen,
11271                               proto_perl);
11272                 /* XXX This just has to be broken. The old save_re_context
11273                    code did SAVEGENERICPV(PL_reg_start_tmp);
11274                    PL_reg_start_tmp is char **.
11275                    Look above to what the dup code does for
11276                    SAVEt_GENERIC_PVREF
11277                    It can never have worked.
11278                    So this is merely a faithful copy of the exiting bug:  */
11279                 new_state->re_state_reg_start_tmp
11280                     = (char **) pv_dup((char *)
11281                                       old_state->re_state_reg_start_tmp);
11282                 /* I assume that it only ever "worked" because no-one called
11283                    (pseudo)fork while the regexp engine had re-entered itself.
11284                 */
11285 #ifdef PERL_OLD_COPY_ON_WRITE
11286                 new_state->re_state_nrs
11287                     = sv_dup(old_state->re_state_nrs, param);
11288 #endif
11289                 new_state->re_state_reg_magic
11290                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
11291                                proto_perl);
11292                 new_state->re_state_reg_oldcurpm
11293                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
11294                               proto_perl);
11295                 new_state->re_state_reg_curpm
11296                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
11297                                proto_perl);
11298                 new_state->re_state_reg_oldsaved
11299                     = pv_dup(old_state->re_state_reg_oldsaved);
11300                 new_state->re_state_reg_poscache
11301                     = pv_dup(old_state->re_state_reg_poscache);
11302                 new_state->re_state_reg_starttry
11303                     = pv_dup(old_state->re_state_reg_starttry);
11304                 break;
11305             }
11306         case SAVEt_COMPILE_WARNINGS:
11307             ptr = POPPTR(ss,ix);
11308             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
11309             break;
11310         case SAVEt_PARSER:
11311             ptr = POPPTR(ss,ix);
11312             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
11313             break;
11314         default:
11315             Perl_croak(aTHX_
11316                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
11317         }
11318     }
11319
11320     return nss;
11321 }
11322
11323
11324 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
11325  * flag to the result. This is done for each stash before cloning starts,
11326  * so we know which stashes want their objects cloned */
11327
11328 static void
11329 do_mark_cloneable_stash(pTHX_ SV *const sv)
11330 {
11331     const HEK * const hvname = HvNAME_HEK((HV*)sv);
11332     if (hvname) {
11333         GV* const cloner = gv_fetchmethod_autoload((HV*)sv, "CLONE_SKIP", 0);
11334         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
11335         if (cloner && GvCV(cloner)) {
11336             dSP;
11337             UV status;
11338
11339             ENTER;
11340             SAVETMPS;
11341             PUSHMARK(SP);
11342             mXPUSHs(newSVhek(hvname));
11343             PUTBACK;
11344             call_sv((SV*)GvCV(cloner), G_SCALAR);
11345             SPAGAIN;
11346             status = POPu;
11347             PUTBACK;
11348             FREETMPS;
11349             LEAVE;
11350             if (status)
11351                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
11352         }
11353     }
11354 }
11355
11356
11357
11358 /*
11359 =for apidoc perl_clone
11360
11361 Create and return a new interpreter by cloning the current one.
11362
11363 perl_clone takes these flags as parameters:
11364
11365 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
11366 without it we only clone the data and zero the stacks,
11367 with it we copy the stacks and the new perl interpreter is
11368 ready to run at the exact same point as the previous one.
11369 The pseudo-fork code uses COPY_STACKS while the
11370 threads->create doesn't.
11371
11372 CLONEf_KEEP_PTR_TABLE
11373 perl_clone keeps a ptr_table with the pointer of the old
11374 variable as a key and the new variable as a value,
11375 this allows it to check if something has been cloned and not
11376 clone it again but rather just use the value and increase the
11377 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
11378 the ptr_table using the function
11379 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
11380 reason to keep it around is if you want to dup some of your own
11381 variable who are outside the graph perl scans, example of this
11382 code is in threads.xs create
11383
11384 CLONEf_CLONE_HOST
11385 This is a win32 thing, it is ignored on unix, it tells perls
11386 win32host code (which is c++) to clone itself, this is needed on
11387 win32 if you want to run two threads at the same time,
11388 if you just want to do some stuff in a separate perl interpreter
11389 and then throw it away and return to the original one,
11390 you don't need to do anything.
11391
11392 =cut
11393 */
11394
11395 /* XXX the above needs expanding by someone who actually understands it ! */
11396 EXTERN_C PerlInterpreter *
11397 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
11398
11399 PerlInterpreter *
11400 perl_clone(PerlInterpreter *proto_perl, UV flags)
11401 {
11402    dVAR;
11403 #ifdef PERL_IMPLICIT_SYS
11404
11405     PERL_ARGS_ASSERT_PERL_CLONE;
11406
11407    /* perlhost.h so we need to call into it
11408    to clone the host, CPerlHost should have a c interface, sky */
11409
11410    if (flags & CLONEf_CLONE_HOST) {
11411        return perl_clone_host(proto_perl,flags);
11412    }
11413    return perl_clone_using(proto_perl, flags,
11414                             proto_perl->IMem,
11415                             proto_perl->IMemShared,
11416                             proto_perl->IMemParse,
11417                             proto_perl->IEnv,
11418                             proto_perl->IStdIO,
11419                             proto_perl->ILIO,
11420                             proto_perl->IDir,
11421                             proto_perl->ISock,
11422                             proto_perl->IProc);
11423 }
11424
11425 PerlInterpreter *
11426 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
11427                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
11428                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
11429                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
11430                  struct IPerlDir* ipD, struct IPerlSock* ipS,
11431                  struct IPerlProc* ipP)
11432 {
11433     /* XXX many of the string copies here can be optimized if they're
11434      * constants; they need to be allocated as common memory and just
11435      * their pointers copied. */
11436
11437     IV i;
11438     CLONE_PARAMS clone_params;
11439     CLONE_PARAMS* const param = &clone_params;
11440
11441     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
11442
11443     PERL_ARGS_ASSERT_PERL_CLONE_USING;
11444
11445     /* for each stash, determine whether its objects should be cloned */
11446     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
11447     PERL_SET_THX(my_perl);
11448
11449 #  ifdef DEBUGGING
11450     PoisonNew(my_perl, 1, PerlInterpreter);
11451     PL_op = NULL;
11452     PL_curcop = NULL;
11453     PL_markstack = 0;
11454     PL_scopestack = 0;
11455     PL_savestack = 0;
11456     PL_savestack_ix = 0;
11457     PL_savestack_max = -1;
11458     PL_sig_pending = 0;
11459     PL_parser = NULL;
11460     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
11461 #  else /* !DEBUGGING */
11462     Zero(my_perl, 1, PerlInterpreter);
11463 #  endif        /* DEBUGGING */
11464
11465     /* host pointers */
11466     PL_Mem              = ipM;
11467     PL_MemShared        = ipMS;
11468     PL_MemParse         = ipMP;
11469     PL_Env              = ipE;
11470     PL_StdIO            = ipStd;
11471     PL_LIO              = ipLIO;
11472     PL_Dir              = ipD;
11473     PL_Sock             = ipS;
11474     PL_Proc             = ipP;
11475 #else           /* !PERL_IMPLICIT_SYS */
11476     IV i;
11477     CLONE_PARAMS clone_params;
11478     CLONE_PARAMS* param = &clone_params;
11479     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
11480
11481     PERL_ARGS_ASSERT_PERL_CLONE;
11482
11483     /* for each stash, determine whether its objects should be cloned */
11484     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
11485     PERL_SET_THX(my_perl);
11486
11487 #    ifdef DEBUGGING
11488     PoisonNew(my_perl, 1, PerlInterpreter);
11489     PL_op = NULL;
11490     PL_curcop = NULL;
11491     PL_markstack = 0;
11492     PL_scopestack = 0;
11493     PL_savestack = 0;
11494     PL_savestack_ix = 0;
11495     PL_savestack_max = -1;
11496     PL_sig_pending = 0;
11497     PL_parser = NULL;
11498     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
11499 #    else       /* !DEBUGGING */
11500     Zero(my_perl, 1, PerlInterpreter);
11501 #    endif      /* DEBUGGING */
11502 #endif          /* PERL_IMPLICIT_SYS */
11503     param->flags = flags;
11504     param->proto_perl = proto_perl;
11505
11506     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
11507
11508     PL_body_arenas = NULL;
11509     Zero(&PL_body_roots, 1, PL_body_roots);
11510     
11511     PL_nice_chunk       = NULL;
11512     PL_nice_chunk_size  = 0;
11513     PL_sv_count         = 0;
11514     PL_sv_objcount      = 0;
11515     PL_sv_root          = NULL;
11516     PL_sv_arenaroot     = NULL;
11517
11518     PL_debug            = proto_perl->Idebug;
11519
11520     PL_hash_seed        = proto_perl->Ihash_seed;
11521     PL_rehash_seed      = proto_perl->Irehash_seed;
11522
11523 #ifdef USE_REENTRANT_API
11524     /* XXX: things like -Dm will segfault here in perlio, but doing
11525      *  PERL_SET_CONTEXT(proto_perl);
11526      * breaks too many other things
11527      */
11528     Perl_reentrant_init(aTHX);
11529 #endif
11530
11531     /* create SV map for pointer relocation */
11532     PL_ptr_table = ptr_table_new();
11533
11534     /* initialize these special pointers as early as possible */
11535     SvANY(&PL_sv_undef)         = NULL;
11536     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
11537     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
11538     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
11539
11540     SvANY(&PL_sv_no)            = new_XPVNV();
11541     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
11542     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11543                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
11544     SvPV_set(&PL_sv_no, savepvn(PL_No, 0));
11545     SvCUR_set(&PL_sv_no, 0);
11546     SvLEN_set(&PL_sv_no, 1);
11547     SvIV_set(&PL_sv_no, 0);
11548     SvNV_set(&PL_sv_no, 0);
11549     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
11550
11551     SvANY(&PL_sv_yes)           = new_XPVNV();
11552     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
11553     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11554                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
11555     SvPV_set(&PL_sv_yes, savepvn(PL_Yes, 1));
11556     SvCUR_set(&PL_sv_yes, 1);
11557     SvLEN_set(&PL_sv_yes, 2);
11558     SvIV_set(&PL_sv_yes, 1);
11559     SvNV_set(&PL_sv_yes, 1);
11560     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
11561
11562     /* create (a non-shared!) shared string table */
11563     PL_strtab           = newHV();
11564     HvSHAREKEYS_off(PL_strtab);
11565     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
11566     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
11567
11568     PL_compiling = proto_perl->Icompiling;
11569
11570     /* These two PVs will be free'd special way so must set them same way op.c does */
11571     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
11572     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
11573
11574     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
11575     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
11576
11577     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
11578     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
11579     if (PL_compiling.cop_hints_hash) {
11580         HINTS_REFCNT_LOCK;
11581         PL_compiling.cop_hints_hash->refcounted_he_refcnt++;
11582         HINTS_REFCNT_UNLOCK;
11583     }
11584     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
11585 #ifdef PERL_DEBUG_READONLY_OPS
11586     PL_slabs = NULL;
11587     PL_slab_count = 0;
11588 #endif
11589
11590     /* pseudo environmental stuff */
11591     PL_origargc         = proto_perl->Iorigargc;
11592     PL_origargv         = proto_perl->Iorigargv;
11593
11594     param->stashes      = newAV();  /* Setup array of objects to call clone on */
11595
11596     /* Set tainting stuff before PerlIO_debug can possibly get called */
11597     PL_tainting         = proto_perl->Itainting;
11598     PL_taint_warn       = proto_perl->Itaint_warn;
11599
11600 #ifdef PERLIO_LAYERS
11601     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
11602     PerlIO_clone(aTHX_ proto_perl, param);
11603 #endif
11604
11605     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
11606     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
11607     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
11608     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
11609     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
11610     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
11611
11612     /* switches */
11613     PL_minus_c          = proto_perl->Iminus_c;
11614     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
11615     PL_localpatches     = proto_perl->Ilocalpatches;
11616     PL_splitstr         = proto_perl->Isplitstr;
11617     PL_minus_n          = proto_perl->Iminus_n;
11618     PL_minus_p          = proto_perl->Iminus_p;
11619     PL_minus_l          = proto_perl->Iminus_l;
11620     PL_minus_a          = proto_perl->Iminus_a;
11621     PL_minus_E          = proto_perl->Iminus_E;
11622     PL_minus_F          = proto_perl->Iminus_F;
11623     PL_doswitches       = proto_perl->Idoswitches;
11624     PL_dowarn           = proto_perl->Idowarn;
11625     PL_doextract        = proto_perl->Idoextract;
11626     PL_sawampersand     = proto_perl->Isawampersand;
11627     PL_unsafe           = proto_perl->Iunsafe;
11628     PL_inplace          = SAVEPV(proto_perl->Iinplace);
11629     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
11630     PL_perldb           = proto_perl->Iperldb;
11631     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
11632     PL_exit_flags       = proto_perl->Iexit_flags;
11633
11634     /* magical thingies */
11635     /* XXX time(&PL_basetime) when asked for? */
11636     PL_basetime         = proto_perl->Ibasetime;
11637     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
11638
11639     PL_maxsysfd         = proto_perl->Imaxsysfd;
11640     PL_statusvalue      = proto_perl->Istatusvalue;
11641 #ifdef VMS
11642     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
11643 #else
11644     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
11645 #endif
11646     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
11647
11648     sv_setpvn(PERL_DEBUG_PAD(0), "", 0);        /* For regex debugging. */
11649     sv_setpvn(PERL_DEBUG_PAD(1), "", 0);        /* ext/re needs these */
11650     sv_setpvn(PERL_DEBUG_PAD(2), "", 0);        /* even without DEBUGGING. */
11651
11652    
11653     /* RE engine related */
11654     Zero(&PL_reg_state, 1, struct re_save_state);
11655     PL_reginterp_cnt    = 0;
11656     PL_regmatch_slab    = NULL;
11657     
11658     /* Clone the regex array */
11659     /* ORANGE FIXME for plugins, probably in the SV dup code.
11660        newSViv(PTR2IV(CALLREGDUPE(
11661        INT2PTR(REGEXP *, SvIVX(regex)), param))))
11662     */
11663     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
11664     PL_regex_pad = AvARRAY(PL_regex_padav);
11665
11666     /* shortcuts to various I/O objects */
11667     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
11668     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
11669     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
11670     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
11671     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
11672     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
11673
11674     /* shortcuts to regexp stuff */
11675     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
11676
11677     /* shortcuts to misc objects */
11678     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
11679
11680     /* shortcuts to debugging objects */
11681     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
11682     PL_DBline           = gv_dup(proto_perl->IDBline, param);
11683     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
11684     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
11685     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
11686     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
11687     PL_dbargs           = av_dup(proto_perl->Idbargs, param);
11688
11689     /* symbol tables */
11690     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
11691     PL_curstash         = hv_dup(proto_perl->Icurstash, param);
11692     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
11693     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
11694     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
11695
11696     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
11697     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
11698     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
11699     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
11700     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
11701     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
11702     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
11703     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
11704
11705     PL_sub_generation   = proto_perl->Isub_generation;
11706     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
11707
11708     /* funky return mechanisms */
11709     PL_forkprocess      = proto_perl->Iforkprocess;
11710
11711     /* subprocess state */
11712     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
11713
11714     /* internal state */
11715     PL_maxo             = proto_perl->Imaxo;
11716     if (proto_perl->Iop_mask)
11717         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
11718     else
11719         PL_op_mask      = NULL;
11720     /* PL_asserting        = proto_perl->Iasserting; */
11721
11722     /* current interpreter roots */
11723     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
11724     OP_REFCNT_LOCK;
11725     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
11726     OP_REFCNT_UNLOCK;
11727     PL_main_start       = proto_perl->Imain_start;
11728     PL_eval_root        = proto_perl->Ieval_root;
11729     PL_eval_start       = proto_perl->Ieval_start;
11730
11731     /* runtime control stuff */
11732     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
11733
11734     PL_filemode         = proto_perl->Ifilemode;
11735     PL_lastfd           = proto_perl->Ilastfd;
11736     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
11737     PL_Argv             = NULL;
11738     PL_Cmd              = NULL;
11739     PL_gensym           = proto_perl->Igensym;
11740     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
11741     PL_laststatval      = proto_perl->Ilaststatval;
11742     PL_laststype        = proto_perl->Ilaststype;
11743     PL_mess_sv          = NULL;
11744
11745     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
11746
11747     /* interpreter atexit processing */
11748     PL_exitlistlen      = proto_perl->Iexitlistlen;
11749     if (PL_exitlistlen) {
11750         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
11751         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
11752     }
11753     else
11754         PL_exitlist     = (PerlExitListEntry*)NULL;
11755
11756     PL_my_cxt_size = proto_perl->Imy_cxt_size;
11757     if (PL_my_cxt_size) {
11758         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
11759         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
11760 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
11761         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
11762         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
11763 #endif
11764     }
11765     else {
11766         PL_my_cxt_list  = (void**)NULL;
11767 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
11768         PL_my_cxt_keys  = (const char**)NULL;
11769 #endif
11770     }
11771     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
11772     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
11773     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
11774
11775     PL_profiledata      = NULL;
11776
11777     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
11778
11779     PAD_CLONE_VARS(proto_perl, param);
11780
11781 #ifdef HAVE_INTERP_INTERN
11782     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
11783 #endif
11784
11785     /* more statics moved here */
11786     PL_generation       = proto_perl->Igeneration;
11787     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
11788
11789     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
11790     PL_in_clean_all     = proto_perl->Iin_clean_all;
11791
11792     PL_uid              = proto_perl->Iuid;
11793     PL_euid             = proto_perl->Ieuid;
11794     PL_gid              = proto_perl->Igid;
11795     PL_egid             = proto_perl->Iegid;
11796     PL_nomemok          = proto_perl->Inomemok;
11797     PL_an               = proto_perl->Ian;
11798     PL_evalseq          = proto_perl->Ievalseq;
11799     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
11800     PL_origalen         = proto_perl->Iorigalen;
11801 #ifdef PERL_USES_PL_PIDSTATUS
11802     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
11803 #endif
11804     PL_osname           = SAVEPV(proto_perl->Iosname);
11805     PL_sighandlerp      = proto_perl->Isighandlerp;
11806
11807     PL_runops           = proto_perl->Irunops;
11808
11809     PL_parser           = parser_dup(proto_perl->Iparser, param);
11810
11811     PL_subline          = proto_perl->Isubline;
11812     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
11813
11814 #ifdef FCRYPT
11815     PL_cryptseen        = proto_perl->Icryptseen;
11816 #endif
11817
11818     PL_hints            = proto_perl->Ihints;
11819
11820     PL_amagic_generation        = proto_perl->Iamagic_generation;
11821
11822 #ifdef USE_LOCALE_COLLATE
11823     PL_collation_ix     = proto_perl->Icollation_ix;
11824     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
11825     PL_collation_standard       = proto_perl->Icollation_standard;
11826     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
11827     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
11828 #endif /* USE_LOCALE_COLLATE */
11829
11830 #ifdef USE_LOCALE_NUMERIC
11831     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
11832     PL_numeric_standard = proto_perl->Inumeric_standard;
11833     PL_numeric_local    = proto_perl->Inumeric_local;
11834     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
11835 #endif /* !USE_LOCALE_NUMERIC */
11836
11837     /* utf8 character classes */
11838     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
11839     PL_utf8_alnumc      = sv_dup_inc(proto_perl->Iutf8_alnumc, param);
11840     PL_utf8_ascii       = sv_dup_inc(proto_perl->Iutf8_ascii, param);
11841     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
11842     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
11843     PL_utf8_cntrl       = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
11844     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
11845     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
11846     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
11847     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
11848     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
11849     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
11850     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
11851     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
11852     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
11853     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
11854     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
11855     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
11856     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
11857     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
11858
11859     /* Did the locale setup indicate UTF-8? */
11860     PL_utf8locale       = proto_perl->Iutf8locale;
11861     /* Unicode features (see perlrun/-C) */
11862     PL_unicode          = proto_perl->Iunicode;
11863
11864     /* Pre-5.8 signals control */
11865     PL_signals          = proto_perl->Isignals;
11866
11867     /* times() ticks per second */
11868     PL_clocktick        = proto_perl->Iclocktick;
11869
11870     /* Recursion stopper for PerlIO_find_layer */
11871     PL_in_load_module   = proto_perl->Iin_load_module;
11872
11873     /* sort() routine */
11874     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
11875
11876     /* Not really needed/useful since the reenrant_retint is "volatile",
11877      * but do it for consistency's sake. */
11878     PL_reentrant_retint = proto_perl->Ireentrant_retint;
11879
11880     /* Hooks to shared SVs and locks. */
11881     PL_sharehook        = proto_perl->Isharehook;
11882     PL_lockhook         = proto_perl->Ilockhook;
11883     PL_unlockhook       = proto_perl->Iunlockhook;
11884     PL_threadhook       = proto_perl->Ithreadhook;
11885     PL_destroyhook      = proto_perl->Idestroyhook;
11886
11887 #ifdef THREADS_HAVE_PIDS
11888     PL_ppid             = proto_perl->Ippid;
11889 #endif
11890
11891     /* swatch cache */
11892     PL_last_swash_hv    = NULL; /* reinits on demand */
11893     PL_last_swash_klen  = 0;
11894     PL_last_swash_key[0]= '\0';
11895     PL_last_swash_tmps  = (U8*)NULL;
11896     PL_last_swash_slen  = 0;
11897
11898     PL_glob_index       = proto_perl->Iglob_index;
11899     PL_srand_called     = proto_perl->Isrand_called;
11900     PL_bitcount         = NULL; /* reinits on demand */
11901
11902     if (proto_perl->Ipsig_pend) {
11903         Newxz(PL_psig_pend, SIG_SIZE, int);
11904     }
11905     else {
11906         PL_psig_pend    = (int*)NULL;
11907     }
11908
11909     if (proto_perl->Ipsig_ptr) {
11910         Newxz(PL_psig_ptr,  SIG_SIZE, SV*);
11911         Newxz(PL_psig_name, SIG_SIZE, SV*);
11912         for (i = 1; i < SIG_SIZE; i++) {
11913             PL_psig_ptr[i]  = sv_dup_inc(proto_perl->Ipsig_ptr[i], param);
11914             PL_psig_name[i] = sv_dup_inc(proto_perl->Ipsig_name[i], param);
11915         }
11916     }
11917     else {
11918         PL_psig_ptr     = (SV**)NULL;
11919         PL_psig_name    = (SV**)NULL;
11920     }
11921
11922     /* intrpvar.h stuff */
11923
11924     if (flags & CLONEf_COPY_STACKS) {
11925         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
11926         PL_tmps_ix              = proto_perl->Itmps_ix;
11927         PL_tmps_max             = proto_perl->Itmps_max;
11928         PL_tmps_floor           = proto_perl->Itmps_floor;
11929         Newxz(PL_tmps_stack, PL_tmps_max, SV*);
11930         i = 0;
11931         while (i <= PL_tmps_ix) {
11932             PL_tmps_stack[i]    = sv_dup_inc(proto_perl->Itmps_stack[i], param);
11933             ++i;
11934         }
11935
11936         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
11937         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
11938         Newxz(PL_markstack, i, I32);
11939         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
11940                                                   - proto_perl->Imarkstack);
11941         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
11942                                                   - proto_perl->Imarkstack);
11943         Copy(proto_perl->Imarkstack, PL_markstack,
11944              PL_markstack_ptr - PL_markstack + 1, I32);
11945
11946         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
11947          * NOTE: unlike the others! */
11948         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
11949         PL_scopestack_max       = proto_perl->Iscopestack_max;
11950         Newxz(PL_scopestack, PL_scopestack_max, I32);
11951         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
11952
11953         /* NOTE: si_dup() looks at PL_markstack */
11954         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
11955
11956         /* PL_curstack          = PL_curstackinfo->si_stack; */
11957         PL_curstack             = av_dup(proto_perl->Icurstack, param);
11958         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
11959
11960         /* next PUSHs() etc. set *(PL_stack_sp+1) */
11961         PL_stack_base           = AvARRAY(PL_curstack);
11962         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
11963                                                    - proto_perl->Istack_base);
11964         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
11965
11966         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
11967          * NOTE: unlike the others! */
11968         PL_savestack_ix         = proto_perl->Isavestack_ix;
11969         PL_savestack_max        = proto_perl->Isavestack_max;
11970         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
11971         PL_savestack            = ss_dup(proto_perl, param);
11972     }
11973     else {
11974         init_stacks();
11975         ENTER;                  /* perl_destruct() wants to LEAVE; */
11976
11977         /* although we're not duplicating the tmps stack, we should still
11978          * add entries for any SVs on the tmps stack that got cloned by a
11979          * non-refcount means (eg a temp in @_); otherwise they will be
11980          * orphaned
11981          */
11982         for (i = 0; i<= proto_perl->Itmps_ix; i++) {
11983             SV * const nsv = (SV*)ptr_table_fetch(PL_ptr_table,
11984                     proto_perl->Itmps_stack[i]);
11985             if (nsv && !SvREFCNT(nsv)) {
11986                 EXTEND_MORTAL(1);
11987                 PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple(nsv);
11988             }
11989         }
11990     }
11991
11992     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
11993     PL_top_env          = &PL_start_env;
11994
11995     PL_op               = proto_perl->Iop;
11996
11997     PL_Sv               = NULL;
11998     PL_Xpv              = (XPV*)NULL;
11999     my_perl->Ina        = proto_perl->Ina;
12000
12001     PL_statbuf          = proto_perl->Istatbuf;
12002     PL_statcache        = proto_perl->Istatcache;
12003     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
12004     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
12005 #ifdef HAS_TIMES
12006     PL_timesbuf         = proto_perl->Itimesbuf;
12007 #endif
12008
12009     PL_tainted          = proto_perl->Itainted;
12010     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
12011     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
12012     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
12013     PL_ofs_sv           = sv_dup_inc(proto_perl->Iofs_sv, param);
12014     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
12015     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
12016     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
12017     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
12018     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
12019
12020     PL_restartop        = proto_perl->Irestartop;
12021     PL_in_eval          = proto_perl->Iin_eval;
12022     PL_delaymagic       = proto_perl->Idelaymagic;
12023     PL_dirty            = proto_perl->Idirty;
12024     PL_localizing       = proto_perl->Ilocalizing;
12025
12026     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
12027     PL_hv_fetch_ent_mh  = NULL;
12028     PL_modcount         = proto_perl->Imodcount;
12029     PL_lastgotoprobe    = NULL;
12030     PL_dumpindent       = proto_perl->Idumpindent;
12031
12032     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
12033     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
12034     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
12035     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
12036     PL_efloatbuf        = NULL;         /* reinits on demand */
12037     PL_efloatsize       = 0;                    /* reinits on demand */
12038
12039     /* regex stuff */
12040
12041     PL_screamfirst      = NULL;
12042     PL_screamnext       = NULL;
12043     PL_maxscream        = -1;                   /* reinits on demand */
12044     PL_lastscream       = NULL;
12045
12046
12047     PL_regdummy         = proto_perl->Iregdummy;
12048     PL_colorset         = 0;            /* reinits PL_colors[] */
12049     /*PL_colors[6]      = {0,0,0,0,0,0};*/
12050
12051
12052
12053     /* Pluggable optimizer */
12054     PL_peepp            = proto_perl->Ipeepp;
12055
12056     PL_stashcache       = newHV();
12057
12058     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
12059                                             proto_perl->Iwatchaddr);
12060     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
12061     if (PL_debug && PL_watchaddr) {
12062         PerlIO_printf(Perl_debug_log,
12063           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
12064           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
12065           PTR2UV(PL_watchok));
12066     }
12067
12068     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
12069         ptr_table_free(PL_ptr_table);
12070         PL_ptr_table = NULL;
12071     }
12072
12073     /* Call the ->CLONE method, if it exists, for each of the stashes
12074        identified by sv_dup() above.
12075     */
12076     while(av_len(param->stashes) != -1) {
12077         HV* const stash = (HV*) av_shift(param->stashes);
12078         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
12079         if (cloner && GvCV(cloner)) {
12080             dSP;
12081             ENTER;
12082             SAVETMPS;
12083             PUSHMARK(SP);
12084             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
12085             PUTBACK;
12086             call_sv((SV*)GvCV(cloner), G_DISCARD);
12087             FREETMPS;
12088             LEAVE;
12089         }
12090     }
12091
12092     SvREFCNT_dec(param->stashes);
12093
12094     /* orphaned? eg threads->new inside BEGIN or use */
12095     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
12096         SvREFCNT_inc_simple_void(PL_compcv);
12097         SAVEFREESV(PL_compcv);
12098     }
12099
12100     return my_perl;
12101 }
12102
12103 #endif /* USE_ITHREADS */
12104
12105 /*
12106 =head1 Unicode Support
12107
12108 =for apidoc sv_recode_to_utf8
12109
12110 The encoding is assumed to be an Encode object, on entry the PV
12111 of the sv is assumed to be octets in that encoding, and the sv
12112 will be converted into Unicode (and UTF-8).
12113
12114 If the sv already is UTF-8 (or if it is not POK), or if the encoding
12115 is not a reference, nothing is done to the sv.  If the encoding is not
12116 an C<Encode::XS> Encoding object, bad things will happen.
12117 (See F<lib/encoding.pm> and L<Encode>).
12118
12119 The PV of the sv is returned.
12120
12121 =cut */
12122
12123 char *
12124 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
12125 {
12126     dVAR;
12127
12128     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
12129
12130     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
12131         SV *uni;
12132         STRLEN len;
12133         const char *s;
12134         dSP;
12135         ENTER;
12136         SAVETMPS;
12137         save_re_context();
12138         PUSHMARK(sp);
12139         EXTEND(SP, 3);
12140         XPUSHs(encoding);
12141         XPUSHs(sv);
12142 /*
12143   NI-S 2002/07/09
12144   Passing sv_yes is wrong - it needs to be or'ed set of constants
12145   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
12146   remove converted chars from source.
12147
12148   Both will default the value - let them.
12149
12150         XPUSHs(&PL_sv_yes);
12151 */
12152         PUTBACK;
12153         call_method("decode", G_SCALAR);
12154         SPAGAIN;
12155         uni = POPs;
12156         PUTBACK;
12157         s = SvPV_const(uni, len);
12158         if (s != SvPVX_const(sv)) {
12159             SvGROW(sv, len + 1);
12160             Move(s, SvPVX(sv), len + 1, char);
12161             SvCUR_set(sv, len);
12162         }
12163         FREETMPS;
12164         LEAVE;
12165         SvUTF8_on(sv);
12166         return SvPVX(sv);
12167     }
12168     return SvPOKp(sv) ? SvPVX(sv) : NULL;
12169 }
12170
12171 /*
12172 =for apidoc sv_cat_decode
12173
12174 The encoding is assumed to be an Encode object, the PV of the ssv is
12175 assumed to be octets in that encoding and decoding the input starts
12176 from the position which (PV + *offset) pointed to.  The dsv will be
12177 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
12178 when the string tstr appears in decoding output or the input ends on
12179 the PV of the ssv. The value which the offset points will be modified
12180 to the last input position on the ssv.
12181
12182 Returns TRUE if the terminator was found, else returns FALSE.
12183
12184 =cut */
12185
12186 bool
12187 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
12188                    SV *ssv, int *offset, char *tstr, int tlen)
12189 {
12190     dVAR;
12191     bool ret = FALSE;
12192
12193     PERL_ARGS_ASSERT_SV_CAT_DECODE;
12194
12195     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
12196         SV *offsv;
12197         dSP;
12198         ENTER;
12199         SAVETMPS;
12200         save_re_context();
12201         PUSHMARK(sp);
12202         EXTEND(SP, 6);
12203         XPUSHs(encoding);
12204         XPUSHs(dsv);
12205         XPUSHs(ssv);
12206         offsv = newSViv(*offset);
12207         mXPUSHs(offsv);
12208         mXPUSHp(tstr, tlen);
12209         PUTBACK;
12210         call_method("cat_decode", G_SCALAR);
12211         SPAGAIN;
12212         ret = SvTRUE(TOPs);
12213         *offset = SvIV(offsv);
12214         PUTBACK;
12215         FREETMPS;
12216         LEAVE;
12217     }
12218     else
12219         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
12220     return ret;
12221
12222 }
12223
12224 /* ---------------------------------------------------------------------
12225  *
12226  * support functions for report_uninit()
12227  */
12228
12229 /* the maxiumum size of array or hash where we will scan looking
12230  * for the undefined element that triggered the warning */
12231
12232 #define FUV_MAX_SEARCH_SIZE 1000
12233
12234 /* Look for an entry in the hash whose value has the same SV as val;
12235  * If so, return a mortal copy of the key. */
12236
12237 STATIC SV*
12238 S_find_hash_subscript(pTHX_ HV *hv, SV* val)
12239 {
12240     dVAR;
12241     register HE **array;
12242     I32 i;
12243
12244     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
12245
12246     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
12247                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
12248         return NULL;
12249
12250     array = HvARRAY(hv);
12251
12252     for (i=HvMAX(hv); i>0; i--) {
12253         register HE *entry;
12254         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
12255             if (HeVAL(entry) != val)
12256                 continue;
12257             if (    HeVAL(entry) == &PL_sv_undef ||
12258                     HeVAL(entry) == &PL_sv_placeholder)
12259                 continue;
12260             if (!HeKEY(entry))
12261                 return NULL;
12262             if (HeKLEN(entry) == HEf_SVKEY)
12263                 return sv_mortalcopy(HeKEY_sv(entry));
12264             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
12265         }
12266     }
12267     return NULL;
12268 }
12269
12270 /* Look for an entry in the array whose value has the same SV as val;
12271  * If so, return the index, otherwise return -1. */
12272
12273 STATIC I32
12274 S_find_array_subscript(pTHX_ AV *av, SV* val)
12275 {
12276     dVAR;
12277
12278     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
12279
12280     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
12281                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
12282         return -1;
12283
12284     if (val != &PL_sv_undef) {
12285         SV ** const svp = AvARRAY(av);
12286         I32 i;
12287
12288         for (i=AvFILLp(av); i>=0; i--)
12289             if (svp[i] == val)
12290                 return i;
12291     }
12292     return -1;
12293 }
12294
12295 /* S_varname(): return the name of a variable, optionally with a subscript.
12296  * If gv is non-zero, use the name of that global, along with gvtype (one
12297  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
12298  * targ.  Depending on the value of the subscript_type flag, return:
12299  */
12300
12301 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
12302 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
12303 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
12304 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
12305
12306 STATIC SV*
12307 S_varname(pTHX_ GV *gv, const char gvtype, PADOFFSET targ,
12308         SV* keyname, I32 aindex, int subscript_type)
12309 {
12310
12311     SV * const name = sv_newmortal();
12312     if (gv) {
12313         char buffer[2];
12314         buffer[0] = gvtype;
12315         buffer[1] = 0;
12316
12317         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
12318
12319         gv_fullname4(name, gv, buffer, 0);
12320
12321         if ((unsigned int)SvPVX(name)[1] <= 26) {
12322             buffer[0] = '^';
12323             buffer[1] = SvPVX(name)[1] + 'A' - 1;
12324
12325             /* Swap the 1 unprintable control character for the 2 byte pretty
12326                version - ie substr($name, 1, 1) = $buffer; */
12327             sv_insert(name, 1, 1, buffer, 2);
12328         }
12329     }
12330     else {
12331         CV * const cv = find_runcv(NULL);
12332         SV *sv;
12333         AV *av;
12334
12335         if (!cv || !CvPADLIST(cv))
12336             return NULL;
12337         av = (AV*)(*av_fetch(CvPADLIST(cv), 0, FALSE));
12338         sv = *av_fetch(av, targ, FALSE);
12339         sv_setpvn(name, SvPV_nolen_const(sv), SvCUR(sv));
12340     }
12341
12342     if (subscript_type == FUV_SUBSCRIPT_HASH) {
12343         SV * const sv = newSV(0);
12344         *SvPVX(name) = '$';
12345         Perl_sv_catpvf(aTHX_ name, "{%s}",
12346             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
12347         SvREFCNT_dec(sv);
12348     }
12349     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
12350         *SvPVX(name) = '$';
12351         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
12352     }
12353     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
12354         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
12355         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
12356     }
12357
12358     return name;
12359 }
12360
12361
12362 /*
12363 =for apidoc find_uninit_var
12364
12365 Find the name of the undefined variable (if any) that caused the operator o
12366 to issue a "Use of uninitialized value" warning.
12367 If match is true, only return a name if it's value matches uninit_sv.
12368 So roughly speaking, if a unary operator (such as OP_COS) generates a
12369 warning, then following the direct child of the op may yield an
12370 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
12371 other hand, with OP_ADD there are two branches to follow, so we only print
12372 the variable name if we get an exact match.
12373
12374 The name is returned as a mortal SV.
12375
12376 Assumes that PL_op is the op that originally triggered the error, and that
12377 PL_comppad/PL_curpad points to the currently executing pad.
12378
12379 =cut
12380 */
12381
12382 STATIC SV *
12383 S_find_uninit_var(pTHX_ OP* obase, SV* uninit_sv, bool match)
12384 {
12385     dVAR;
12386     SV *sv;
12387     AV *av;
12388     GV *gv;
12389     OP *o, *o2, *kid;
12390
12391     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
12392                             uninit_sv == &PL_sv_placeholder)))
12393         return NULL;
12394
12395     switch (obase->op_type) {
12396
12397     case OP_RV2AV:
12398     case OP_RV2HV:
12399     case OP_PADAV:
12400     case OP_PADHV:
12401       {
12402         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
12403         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
12404         I32 index = 0;
12405         SV *keysv = NULL;
12406         int subscript_type = FUV_SUBSCRIPT_WITHIN;
12407
12408         if (pad) { /* @lex, %lex */
12409             sv = PAD_SVl(obase->op_targ);
12410             gv = NULL;
12411         }
12412         else {
12413             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
12414             /* @global, %global */
12415                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
12416                 if (!gv)
12417                     break;
12418                 sv = hash ? (SV*)GvHV(gv): (SV*)GvAV(gv);
12419             }
12420             else /* @{expr}, %{expr} */
12421                 return find_uninit_var(cUNOPx(obase)->op_first,
12422                                                     uninit_sv, match);
12423         }
12424
12425         /* attempt to find a match within the aggregate */
12426         if (hash) {
12427             keysv = find_hash_subscript((HV*)sv, uninit_sv);
12428             if (keysv)
12429                 subscript_type = FUV_SUBSCRIPT_HASH;
12430         }
12431         else {
12432             index = find_array_subscript((AV*)sv, uninit_sv);
12433             if (index >= 0)
12434                 subscript_type = FUV_SUBSCRIPT_ARRAY;
12435         }
12436
12437         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
12438             break;
12439
12440         return varname(gv, hash ? '%' : '@', obase->op_targ,
12441                                     keysv, index, subscript_type);
12442       }
12443
12444     case OP_PADSV:
12445         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
12446             break;
12447         return varname(NULL, '$', obase->op_targ,
12448                                     NULL, 0, FUV_SUBSCRIPT_NONE);
12449
12450     case OP_GVSV:
12451         gv = cGVOPx_gv(obase);
12452         if (!gv || (match && GvSV(gv) != uninit_sv))
12453             break;
12454         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
12455
12456     case OP_AELEMFAST:
12457         if (obase->op_flags & OPf_SPECIAL) { /* lexical array */
12458             if (match) {
12459                 SV **svp;
12460                 av = (AV*)PAD_SV(obase->op_targ);
12461                 if (!av || SvRMAGICAL(av))
12462                     break;
12463                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
12464                 if (!svp || *svp != uninit_sv)
12465                     break;
12466             }
12467             return varname(NULL, '$', obase->op_targ,
12468                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
12469         }
12470         else {
12471             gv = cGVOPx_gv(obase);
12472             if (!gv)
12473                 break;
12474             if (match) {
12475                 SV **svp;
12476                 av = GvAV(gv);
12477                 if (!av || SvRMAGICAL(av))
12478                     break;
12479                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
12480                 if (!svp || *svp != uninit_sv)
12481                     break;
12482             }
12483             return varname(gv, '$', 0,
12484                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
12485         }
12486         break;
12487
12488     case OP_EXISTS:
12489         o = cUNOPx(obase)->op_first;
12490         if (!o || o->op_type != OP_NULL ||
12491                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
12492             break;
12493         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
12494
12495     case OP_AELEM:
12496     case OP_HELEM:
12497         if (PL_op == obase)
12498             /* $a[uninit_expr] or $h{uninit_expr} */
12499             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
12500
12501         gv = NULL;
12502         o = cBINOPx(obase)->op_first;
12503         kid = cBINOPx(obase)->op_last;
12504
12505         /* get the av or hv, and optionally the gv */
12506         sv = NULL;
12507         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
12508             sv = PAD_SV(o->op_targ);
12509         }
12510         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
12511                 && cUNOPo->op_first->op_type == OP_GV)
12512         {
12513             gv = cGVOPx_gv(cUNOPo->op_first);
12514             if (!gv)
12515                 break;
12516             sv = o->op_type == OP_RV2HV ? (SV*)GvHV(gv) : (SV*)GvAV(gv);
12517         }
12518         if (!sv)
12519             break;
12520
12521         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
12522             /* index is constant */
12523             if (match) {
12524                 if (SvMAGICAL(sv))
12525                     break;
12526                 if (obase->op_type == OP_HELEM) {
12527                     HE* he = hv_fetch_ent((HV*)sv, cSVOPx_sv(kid), 0, 0);
12528                     if (!he || HeVAL(he) != uninit_sv)
12529                         break;
12530                 }
12531                 else {
12532                     SV * const * const svp = av_fetch((AV*)sv, SvIV(cSVOPx_sv(kid)), FALSE);
12533                     if (!svp || *svp != uninit_sv)
12534                         break;
12535                 }
12536             }
12537             if (obase->op_type == OP_HELEM)
12538                 return varname(gv, '%', o->op_targ,
12539                             cSVOPx_sv(kid), 0, FUV_SUBSCRIPT_HASH);
12540             else
12541                 return varname(gv, '@', o->op_targ, NULL,
12542                             SvIV(cSVOPx_sv(kid)), FUV_SUBSCRIPT_ARRAY);
12543         }
12544         else  {
12545             /* index is an expression;
12546              * attempt to find a match within the aggregate */
12547             if (obase->op_type == OP_HELEM) {
12548                 SV * const keysv = find_hash_subscript((HV*)sv, uninit_sv);
12549                 if (keysv)
12550                     return varname(gv, '%', o->op_targ,
12551                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
12552             }
12553             else {
12554                 const I32 index = find_array_subscript((AV*)sv, uninit_sv);
12555                 if (index >= 0)
12556                     return varname(gv, '@', o->op_targ,
12557                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
12558             }
12559             if (match)
12560                 break;
12561             return varname(gv,
12562                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
12563                 ? '@' : '%',
12564                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
12565         }
12566         break;
12567
12568     case OP_AASSIGN:
12569         /* only examine RHS */
12570         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
12571
12572     case OP_OPEN:
12573         o = cUNOPx(obase)->op_first;
12574         if (o->op_type == OP_PUSHMARK)
12575             o = o->op_sibling;
12576
12577         if (!o->op_sibling) {
12578             /* one-arg version of open is highly magical */
12579
12580             if (o->op_type == OP_GV) { /* open FOO; */
12581                 gv = cGVOPx_gv(o);
12582                 if (match && GvSV(gv) != uninit_sv)
12583                     break;
12584                 return varname(gv, '$', 0,
12585                             NULL, 0, FUV_SUBSCRIPT_NONE);
12586             }
12587             /* other possibilities not handled are:
12588              * open $x; or open my $x;  should return '${*$x}'
12589              * open expr;               should return '$'.expr ideally
12590              */
12591              break;
12592         }
12593         goto do_op;
12594
12595     /* ops where $_ may be an implicit arg */
12596     case OP_TRANS:
12597     case OP_SUBST:
12598     case OP_MATCH:
12599         if ( !(obase->op_flags & OPf_STACKED)) {
12600             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
12601                                  ? PAD_SVl(obase->op_targ)
12602                                  : DEFSV))
12603             {
12604                 sv = sv_newmortal();
12605                 sv_setpvn(sv, "$_", 2);
12606                 return sv;
12607             }
12608         }
12609         goto do_op;
12610
12611     case OP_PRTF:
12612     case OP_PRINT:
12613     case OP_SAY:
12614         match = 1; /* print etc can return undef on defined args */
12615         /* skip filehandle as it can't produce 'undef' warning  */
12616         o = cUNOPx(obase)->op_first;
12617         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
12618             o = o->op_sibling->op_sibling;
12619         goto do_op2;
12620
12621
12622     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
12623     case OP_RV2SV:
12624     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
12625
12626         /* the following ops are capable of returning PL_sv_undef even for
12627          * defined arg(s) */
12628
12629     case OP_BACKTICK:
12630     case OP_PIPE_OP:
12631     case OP_FILENO:
12632     case OP_BINMODE:
12633     case OP_TIED:
12634     case OP_GETC:
12635     case OP_SYSREAD:
12636     case OP_SEND:
12637     case OP_IOCTL:
12638     case OP_SOCKET:
12639     case OP_SOCKPAIR:
12640     case OP_BIND:
12641     case OP_CONNECT:
12642     case OP_LISTEN:
12643     case OP_ACCEPT:
12644     case OP_SHUTDOWN:
12645     case OP_SSOCKOPT:
12646     case OP_GETPEERNAME:
12647     case OP_FTRREAD:
12648     case OP_FTRWRITE:
12649     case OP_FTREXEC:
12650     case OP_FTROWNED:
12651     case OP_FTEREAD:
12652     case OP_FTEWRITE:
12653     case OP_FTEEXEC:
12654     case OP_FTEOWNED:
12655     case OP_FTIS:
12656     case OP_FTZERO:
12657     case OP_FTSIZE:
12658     case OP_FTFILE:
12659     case OP_FTDIR:
12660     case OP_FTLINK:
12661     case OP_FTPIPE:
12662     case OP_FTSOCK:
12663     case OP_FTBLK:
12664     case OP_FTCHR:
12665     case OP_FTTTY:
12666     case OP_FTSUID:
12667     case OP_FTSGID:
12668     case OP_FTSVTX:
12669     case OP_FTTEXT:
12670     case OP_FTBINARY:
12671     case OP_FTMTIME:
12672     case OP_FTATIME:
12673     case OP_FTCTIME:
12674     case OP_READLINK:
12675     case OP_OPEN_DIR:
12676     case OP_READDIR:
12677     case OP_TELLDIR:
12678     case OP_SEEKDIR:
12679     case OP_REWINDDIR:
12680     case OP_CLOSEDIR:
12681     case OP_GMTIME:
12682     case OP_ALARM:
12683     case OP_SEMGET:
12684     case OP_GETLOGIN:
12685     case OP_UNDEF:
12686     case OP_SUBSTR:
12687     case OP_AEACH:
12688     case OP_EACH:
12689     case OP_SORT:
12690     case OP_CALLER:
12691     case OP_DOFILE:
12692     case OP_PROTOTYPE:
12693     case OP_NCMP:
12694     case OP_SMARTMATCH:
12695     case OP_UNPACK:
12696     case OP_SYSOPEN:
12697     case OP_SYSSEEK:
12698         match = 1;
12699         goto do_op;
12700
12701     case OP_ENTERSUB:
12702     case OP_GOTO:
12703         /* XXX tmp hack: these two may call an XS sub, and currently
12704           XS subs don't have a SUB entry on the context stack, so CV and
12705           pad determination goes wrong, and BAD things happen. So, just
12706           don't try to determine the value under those circumstances.
12707           Need a better fix at dome point. DAPM 11/2007 */
12708         break;
12709
12710
12711     case OP_POS:
12712         /* def-ness of rval pos() is independent of the def-ness of its arg */
12713         if ( !(obase->op_flags & OPf_MOD))
12714             break;
12715
12716     case OP_SCHOMP:
12717     case OP_CHOMP:
12718         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
12719             return newSVpvs_flags("${$/}", SVs_TEMP);
12720         /*FALLTHROUGH*/
12721
12722     default:
12723     do_op:
12724         if (!(obase->op_flags & OPf_KIDS))
12725             break;
12726         o = cUNOPx(obase)->op_first;
12727         
12728     do_op2:
12729         if (!o)
12730             break;
12731
12732         /* if all except one arg are constant, or have no side-effects,
12733          * or are optimized away, then it's unambiguous */
12734         o2 = NULL;
12735         for (kid=o; kid; kid = kid->op_sibling) {
12736             if (kid) {
12737                 const OPCODE type = kid->op_type;
12738                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
12739                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
12740                   || (type == OP_PUSHMARK)
12741                 )
12742                 continue;
12743             }
12744             if (o2) { /* more than one found */
12745                 o2 = NULL;
12746                 break;
12747             }
12748             o2 = kid;
12749         }
12750         if (o2)
12751             return find_uninit_var(o2, uninit_sv, match);
12752
12753         /* scan all args */
12754         while (o) {
12755             sv = find_uninit_var(o, uninit_sv, 1);
12756             if (sv)
12757                 return sv;
12758             o = o->op_sibling;
12759         }
12760         break;
12761     }
12762     return NULL;
12763 }
12764
12765
12766 /*
12767 =for apidoc report_uninit
12768
12769 Print appropriate "Use of uninitialized variable" warning
12770
12771 =cut
12772 */
12773
12774 void
12775 Perl_report_uninit(pTHX_ SV* uninit_sv)
12776 {
12777     dVAR;
12778     if (PL_op) {
12779         SV* varname = NULL;
12780         if (uninit_sv) {
12781             varname = find_uninit_var(PL_op, uninit_sv,0);
12782             if (varname)
12783                 sv_insert(varname, 0, 0, " ", 1);
12784         }
12785         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
12786                 varname ? SvPV_nolen_const(varname) : "",
12787                 " in ", OP_DESC(PL_op));
12788     }
12789     else
12790         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
12791                     "", "", "");
12792 }
12793
12794 /*
12795  * Local variables:
12796  * c-indentation-style: bsd
12797  * c-basic-offset: 4
12798  * indent-tabs-mode: t
12799  * End:
12800  *
12801  * ex: set ts=8 sts=4 sw=4 noet:
12802  */