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