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