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