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