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