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