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