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