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