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