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