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