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