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