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