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