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