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