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