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