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