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