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