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