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