68caa6d6aa04fe9cc0cdbffe2fb6f3e384b3c7ea
[p5sagit/p5-mst-13.2.git] / sv.c
1 /*    sv.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4  *    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall
5  *    and others
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  *
10  */
11
12 /*
13  * 'I wonder what the Entish is for "yes" and "no",' he thought.
14  *                                                      --Pippin
15  *
16  *     [p.480 of _The Lord of the Rings_, III/iv: "Treebeard"]
17  */
18
19 /*
20  *
21  *
22  * This file contains the code that creates, manipulates and destroys
23  * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
24  * structure of an SV, so their creation and destruction is handled
25  * here; higher-level functions are in av.c, hv.c, and so on. Opcode
26  * level functions (eg. substr, split, join) for each of the types are
27  * in the pp*.c files.
28  */
29
30 #include "EXTERN.h"
31 #define PERL_IN_SV_C
32 #include "perl.h"
33 #include "regcomp.h"
34
35 #define FCALL *f
36
37 #ifdef __Lynx__
38 /* Missing proto on LynxOS */
39   char *gconvert(double, int, int,  char *);
40 #endif
41
42 #ifdef PERL_UTF8_CACHE_ASSERT
43 /* if adding more checks watch out for the following tests:
44  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
45  *   lib/utf8.t lib/Unicode/Collate/t/index.t
46  * --jhi
47  */
48 #   define ASSERT_UTF8_CACHE(cache) \
49     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
50                               assert((cache)[2] <= (cache)[3]); \
51                               assert((cache)[3] <= (cache)[1]);} \
52                               } STMT_END
53 #else
54 #   define ASSERT_UTF8_CACHE(cache) NOOP
55 #endif
56
57 #ifdef PERL_OLD_COPY_ON_WRITE
58 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
59 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
60 /* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
61    on-write.  */
62 #endif
63
64 /* ============================================================================
65
66 =head1 Allocation and deallocation of SVs.
67
68 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
69 sv, av, hv...) contains type and reference count information, and for
70 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
71 contains fields specific to each type.  Some types store all they need
72 in the head, so don't have a body.
73
74 In all but the most memory-paranoid configuations (ex: PURIFY), heads
75 and bodies are allocated out of arenas, which by default are
76 approximately 4K chunks of memory parcelled up into N heads or bodies.
77 Sv-bodies are allocated by their sv-type, guaranteeing size
78 consistency needed to allocate safely from arrays.
79
80 For SV-heads, the first slot in each arena is reserved, and holds a
81 link to the next arena, some flags, and a note of the number of slots.
82 Snaked through each arena chain is a linked list of free items; when
83 this becomes empty, an extra arena is allocated and divided up into N
84 items which are threaded into the free list.
85
86 SV-bodies are similar, but they use arena-sets by default, which
87 separate the link and info from the arena itself, and reclaim the 1st
88 slot in the arena.  SV-bodies are further described later.
89
90 The following global variables are associated with arenas:
91
92     PL_sv_arenaroot     pointer to list of SV arenas
93     PL_sv_root          pointer to list of free SV structures
94
95     PL_body_arenas      head of linked-list of body arenas
96     PL_body_roots[]     array of pointers to list of free bodies of svtype
97                         arrays are indexed by the svtype needed
98
99 A few special SV heads are not allocated from an arena, but are
100 instead directly created in the interpreter structure, eg PL_sv_undef.
101 The size of arenas can be changed from the default by setting
102 PERL_ARENA_SIZE appropriately at compile time.
103
104 The SV arena serves the secondary purpose of allowing still-live SVs
105 to be located and destroyed during final cleanup.
106
107 At the lowest level, the macros new_SV() and del_SV() grab and free
108 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
109 to return the SV to the free list with error checking.) new_SV() calls
110 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
111 SVs in the free list have their SvTYPE field set to all ones.
112
113 At the time of very final cleanup, sv_free_arenas() is called from
114 perl_destruct() to physically free all the arenas allocated since the
115 start of the interpreter.
116
117 The function visit() scans the SV arenas list, and calls a specified
118 function for each SV it finds which is still live - ie which has an SvTYPE
119 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
120 following functions (specified as [function that calls visit()] / [function
121 called by visit() for each SV]):
122
123     sv_report_used() / do_report_used()
124                         dump all remaining SVs (debugging aid)
125
126     sv_clean_objs() / do_clean_objs(),do_clean_named_objs()
127                         Attempt to free all objects pointed to by RVs,
128                         and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
129                         try to do the same for all objects indirectly
130                         referenced by typeglobs too.  Called once from
131                         perl_destruct(), prior to calling sv_clean_all()
132                         below.
133
134     sv_clean_all() / do_clean_all()
135                         SvREFCNT_dec(sv) each remaining SV, possibly
136                         triggering an sv_free(). It also sets the
137                         SVf_BREAK flag on the SV to indicate that the
138                         refcnt has been artificially lowered, and thus
139                         stopping sv_free() from giving spurious warnings
140                         about SVs which unexpectedly have a refcnt
141                         of zero.  called repeatedly from perl_destruct()
142                         until there are no SVs left.
143
144 =head2 Arena allocator API Summary
145
146 Private API to rest of sv.c
147
148     new_SV(),  del_SV(),
149
150     new_XIV(), del_XIV(),
151     new_XNV(), del_XNV(),
152     etc
153
154 Public API:
155
156     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
157
158 =cut
159
160  * ========================================================================= */
161
162 /*
163  * "A time to plant, and a time to uproot what was planted..."
164  */
165
166 void
167 Perl_offer_nice_chunk(pTHX_ void *const chunk, const U32 chunk_size)
168 {
169     dVAR;
170     void *new_chunk;
171     U32 new_chunk_size;
172
173     PERL_ARGS_ASSERT_OFFER_NICE_CHUNK;
174
175     new_chunk = (void *)(chunk);
176     new_chunk_size = (chunk_size);
177     if (new_chunk_size > PL_nice_chunk_size) {
178         Safefree(PL_nice_chunk);
179         PL_nice_chunk = (char *) new_chunk;
180         PL_nice_chunk_size = new_chunk_size;
181     } else {
182         Safefree(chunk);
183     }
184 }
185
186 #ifdef PERL_MEM_LOG
187 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
188             Perl_mem_log_new_sv(sv, file, line, func)
189 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
190             Perl_mem_log_del_sv(sv, file, line, func)
191 #else
192 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
193 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
194 #endif
195
196 #ifdef DEBUG_LEAKING_SCALARS
197 #  define FREE_SV_DEBUG_FILE(sv) Safefree((sv)->sv_debug_file)
198 #  define DEBUG_SV_SERIAL(sv)                                               \
199     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
200             PTR2UV(sv), (long)(sv)->sv_debug_serial))
201 #else
202 #  define FREE_SV_DEBUG_FILE(sv)
203 #  define DEBUG_SV_SERIAL(sv)   NOOP
204 #endif
205
206 #ifdef PERL_POISON
207 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
208 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
209 /* Whilst I'd love to do this, it seems that things like to check on
210    unreferenced scalars
211 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
212 */
213 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
214                                 PoisonNew(&SvREFCNT(sv), 1, U32)
215 #else
216 #  define SvARENA_CHAIN(sv)     SvANY(sv)
217 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
218 #  define POSION_SV_HEAD(sv)
219 #endif
220
221 /* Mark an SV head as unused, and add to free list.
222  *
223  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
224  * its refcount artificially decremented during global destruction, so
225  * there may be dangling pointers to it. The last thing we want in that
226  * case is for it to be reused. */
227
228 #define plant_SV(p) \
229     STMT_START {                                        \
230         const U32 old_flags = SvFLAGS(p);                       \
231         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
232         DEBUG_SV_SERIAL(p);                             \
233         FREE_SV_DEBUG_FILE(p);                          \
234         POSION_SV_HEAD(p);                              \
235         SvFLAGS(p) = SVTYPEMASK;                        \
236         if (!(old_flags & SVf_BREAK)) {         \
237             SvARENA_CHAIN_SET(p, PL_sv_root);   \
238             PL_sv_root = (p);                           \
239         }                                               \
240         --PL_sv_count;                                  \
241     } STMT_END
242
243 #define uproot_SV(p) \
244     STMT_START {                                        \
245         (p) = PL_sv_root;                               \
246         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
247         ++PL_sv_count;                                  \
248     } STMT_END
249
250
251 /* make some more SVs by adding another arena */
252
253 STATIC SV*
254 S_more_sv(pTHX)
255 {
256     dVAR;
257     SV* sv;
258
259     if (PL_nice_chunk) {
260         sv_add_arena(PL_nice_chunk, PL_nice_chunk_size, 0);
261         PL_nice_chunk = NULL;
262         PL_nice_chunk_size = 0;
263     }
264     else {
265         char *chunk;                /* must use New here to match call to */
266         Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
267         sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
268     }
269     uproot_SV(sv);
270     return sv;
271 }
272
273 /* new_SV(): return a new, empty SV head */
274
275 #ifdef DEBUG_LEAKING_SCALARS
276 /* provide a real function for a debugger to play with */
277 STATIC SV*
278 S_new_SV(pTHX_ const char *file, int line, const char *func)
279 {
280     SV* sv;
281
282     if (PL_sv_root)
283         uproot_SV(sv);
284     else
285         sv = S_more_sv(aTHX);
286     SvANY(sv) = 0;
287     SvREFCNT(sv) = 1;
288     SvFLAGS(sv) = 0;
289     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
290     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
291                 ? PL_parser->copline
292                 :  PL_curcop
293                     ? CopLINE(PL_curcop)
294                     : 0
295             );
296     sv->sv_debug_inpad = 0;
297     sv->sv_debug_cloned = 0;
298     sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
299
300     sv->sv_debug_serial = PL_sv_serial++;
301
302     MEM_LOG_NEW_SV(sv, file, line, func);
303     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
304             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
305
306     return sv;
307 }
308 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
309
310 #else
311 #  define new_SV(p) \
312     STMT_START {                                        \
313         if (PL_sv_root)                                 \
314             uproot_SV(p);                               \
315         else                                            \
316             (p) = S_more_sv(aTHX);                      \
317         SvANY(p) = 0;                                   \
318         SvREFCNT(p) = 1;                                \
319         SvFLAGS(p) = 0;                                 \
320         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
321     } STMT_END
322 #endif
323
324
325 /* del_SV(): return an empty SV head to the free list */
326
327 #ifdef DEBUGGING
328
329 #define del_SV(p) \
330     STMT_START {                                        \
331         if (DEBUG_D_TEST)                               \
332             del_sv(p);                                  \
333         else                                            \
334             plant_SV(p);                                \
335     } STMT_END
336
337 STATIC void
338 S_del_sv(pTHX_ SV *p)
339 {
340     dVAR;
341
342     PERL_ARGS_ASSERT_DEL_SV;
343
344     if (DEBUG_D_TEST) {
345         SV* sva;
346         bool ok = 0;
347         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
348             const SV * const sv = sva + 1;
349             const SV * const svend = &sva[SvREFCNT(sva)];
350             if (p >= sv && p < svend) {
351                 ok = 1;
352                 break;
353             }
354         }
355         if (!ok) {
356             if (ckWARN_d(WARN_INTERNAL))        
357                 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
358                             "Attempt to free non-arena SV: 0x%"UVxf
359                             pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
360             return;
361         }
362     }
363     plant_SV(p);
364 }
365
366 #else /* ! DEBUGGING */
367
368 #define del_SV(p)   plant_SV(p)
369
370 #endif /* DEBUGGING */
371
372
373 /*
374 =head1 SV Manipulation Functions
375
376 =for apidoc sv_add_arena
377
378 Given a chunk of memory, link it to the head of the list of arenas,
379 and split it into a list of free SVs.
380
381 =cut
382 */
383
384 static void
385 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
386 {
387     dVAR;
388     SV *const sva = MUTABLE_SV(ptr);
389     register SV* sv;
390     register SV* svend;
391
392     PERL_ARGS_ASSERT_SV_ADD_ARENA;
393
394     /* The first SV in an arena isn't an SV. */
395     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
396     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
397     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
398
399     PL_sv_arenaroot = sva;
400     PL_sv_root = sva + 1;
401
402     svend = &sva[SvREFCNT(sva) - 1];
403     sv = sva + 1;
404     while (sv < svend) {
405         SvARENA_CHAIN_SET(sv, (sv + 1));
406 #ifdef DEBUGGING
407         SvREFCNT(sv) = 0;
408 #endif
409         /* Must always set typemask because it's always checked in on cleanup
410            when the arenas are walked looking for objects.  */
411         SvFLAGS(sv) = SVTYPEMASK;
412         sv++;
413     }
414     SvARENA_CHAIN_SET(sv, 0);
415 #ifdef DEBUGGING
416     SvREFCNT(sv) = 0;
417 #endif
418     SvFLAGS(sv) = SVTYPEMASK;
419 }
420
421 /* visit(): call the named function for each non-free SV in the arenas
422  * whose flags field matches the flags/mask args. */
423
424 STATIC I32
425 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
426 {
427     dVAR;
428     SV* sva;
429     I32 visited = 0;
430
431     PERL_ARGS_ASSERT_VISIT;
432
433     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
434         register const SV * const svend = &sva[SvREFCNT(sva)];
435         register SV* sv;
436         for (sv = sva + 1; sv < svend; ++sv) {
437             if (SvTYPE(sv) != SVTYPEMASK
438                     && (sv->sv_flags & mask) == flags
439                     && SvREFCNT(sv))
440             {
441                 (FCALL)(aTHX_ sv);
442                 ++visited;
443             }
444         }
445     }
446     return visited;
447 }
448
449 #ifdef DEBUGGING
450
451 /* called by sv_report_used() for each live SV */
452
453 static void
454 do_report_used(pTHX_ SV *const sv)
455 {
456     if (SvTYPE(sv) != SVTYPEMASK) {
457         PerlIO_printf(Perl_debug_log, "****\n");
458         sv_dump(sv);
459     }
460 }
461 #endif
462
463 /*
464 =for apidoc sv_report_used
465
466 Dump the contents of all SVs not yet freed. (Debugging aid).
467
468 =cut
469 */
470
471 void
472 Perl_sv_report_used(pTHX)
473 {
474 #ifdef DEBUGGING
475     visit(do_report_used, 0, 0);
476 #else
477     PERL_UNUSED_CONTEXT;
478 #endif
479 }
480
481 /* called by sv_clean_objs() for each live SV */
482
483 static void
484 do_clean_objs(pTHX_ SV *const ref)
485 {
486     dVAR;
487     assert (SvROK(ref));
488     {
489         SV * const target = SvRV(ref);
490         if (SvOBJECT(target)) {
491             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
492             if (SvWEAKREF(ref)) {
493                 sv_del_backref(target, ref);
494                 SvWEAKREF_off(ref);
495                 SvRV_set(ref, NULL);
496             } else {
497                 SvROK_off(ref);
498                 SvRV_set(ref, NULL);
499                 SvREFCNT_dec(target);
500             }
501         }
502     }
503
504     /* XXX Might want to check arrays, etc. */
505 }
506
507 /* called by sv_clean_objs() for each live SV */
508
509 #ifndef DISABLE_DESTRUCTOR_KLUDGE
510 static void
511 do_clean_named_objs(pTHX_ SV *const sv)
512 {
513     dVAR;
514     assert(SvTYPE(sv) == SVt_PVGV);
515     assert(isGV_with_GP(sv));
516     if (GvGP(sv)) {
517         if ((
518 #ifdef PERL_DONT_CREATE_GVSV
519              GvSV(sv) &&
520 #endif
521              SvOBJECT(GvSV(sv))) ||
522              (GvAV(sv) && SvOBJECT(GvAV(sv))) ||
523              (GvHV(sv) && SvOBJECT(GvHV(sv))) ||
524              /* In certain rare cases GvIOp(sv) can be NULL, which would make SvOBJECT(GvIO(sv)) dereference NULL. */
525              (GvIO(sv) ? (SvFLAGS(GvIOp(sv)) & SVs_OBJECT) : 0) ||
526              (GvCV(sv) && SvOBJECT(GvCV(sv))) )
527         {
528             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning named glob object:\n "), sv_dump(sv)));
529             SvFLAGS(sv) |= SVf_BREAK;
530             SvREFCNT_dec(sv);
531         }
532     }
533 }
534 #endif
535
536 /*
537 =for apidoc sv_clean_objs
538
539 Attempt to destroy all objects not yet freed
540
541 =cut
542 */
543
544 void
545 Perl_sv_clean_objs(pTHX)
546 {
547     dVAR;
548     PL_in_clean_objs = TRUE;
549     visit(do_clean_objs, SVf_ROK, SVf_ROK);
550 #ifndef DISABLE_DESTRUCTOR_KLUDGE
551     /* some barnacles may yet remain, clinging to typeglobs */
552     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
553 #endif
554     PL_in_clean_objs = FALSE;
555 }
556
557 /* called by sv_clean_all() for each live SV */
558
559 static void
560 do_clean_all(pTHX_ SV *const sv)
561 {
562     dVAR;
563     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
564         /* don't clean pid table and strtab */
565         return;
566     }
567     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
568     SvFLAGS(sv) |= SVf_BREAK;
569     SvREFCNT_dec(sv);
570 }
571
572 /*
573 =for apidoc sv_clean_all
574
575 Decrement the refcnt of each remaining SV, possibly triggering a
576 cleanup. This function may have to be called multiple times to free
577 SVs which are in complex self-referential hierarchies.
578
579 =cut
580 */
581
582 I32
583 Perl_sv_clean_all(pTHX)
584 {
585     dVAR;
586     I32 cleaned;
587     PL_in_clean_all = TRUE;
588     cleaned = visit(do_clean_all, 0,0);
589     PL_in_clean_all = FALSE;
590     return cleaned;
591 }
592
593 /*
594   ARENASETS: a meta-arena implementation which separates arena-info
595   into struct arena_set, which contains an array of struct
596   arena_descs, each holding info for a single arena.  By separating
597   the meta-info from the arena, we recover the 1st slot, formerly
598   borrowed for list management.  The arena_set is about the size of an
599   arena, avoiding the needless malloc overhead of a naive linked-list.
600
601   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
602   memory in the last arena-set (1/2 on average).  In trade, we get
603   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
604   smaller types).  The recovery of the wasted space allows use of
605   small arenas for large, rare body types, by changing array* fields
606   in body_details_by_type[] below.
607 */
608 struct arena_desc {
609     char       *arena;          /* the raw storage, allocated aligned */
610     size_t      size;           /* its size ~4k typ */
611     U32         misc;           /* type, and in future other things. */
612 };
613
614 struct arena_set;
615
616 /* Get the maximum number of elements in set[] such that struct arena_set
617    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
618    therefore likely to be 1 aligned memory page.  */
619
620 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
621                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
622
623 struct arena_set {
624     struct arena_set* next;
625     unsigned int   set_size;    /* ie ARENAS_PER_SET */
626     unsigned int   curr;        /* index of next available arena-desc */
627     struct arena_desc set[ARENAS_PER_SET];
628 };
629
630 /*
631 =for apidoc sv_free_arenas
632
633 Deallocate the memory used by all arenas. Note that all the individual SV
634 heads and bodies within the arenas must already have been freed.
635
636 =cut
637 */
638 void
639 Perl_sv_free_arenas(pTHX)
640 {
641     dVAR;
642     SV* sva;
643     SV* svanext;
644     unsigned int i;
645
646     /* Free arenas here, but be careful about fake ones.  (We assume
647        contiguity of the fake ones with the corresponding real ones.) */
648
649     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
650         svanext = MUTABLE_SV(SvANY(sva));
651         while (svanext && SvFAKE(svanext))
652             svanext = MUTABLE_SV(SvANY(svanext));
653
654         if (!SvFAKE(sva))
655             Safefree(sva);
656     }
657
658     {
659         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
660
661         while (aroot) {
662             struct arena_set *current = aroot;
663             i = aroot->curr;
664             while (i--) {
665                 assert(aroot->set[i].arena);
666                 Safefree(aroot->set[i].arena);
667             }
668             aroot = aroot->next;
669             Safefree(current);
670         }
671     }
672     PL_body_arenas = 0;
673
674     i = PERL_ARENA_ROOTS_SIZE;
675     while (i--)
676         PL_body_roots[i] = 0;
677
678     Safefree(PL_nice_chunk);
679     PL_nice_chunk = NULL;
680     PL_nice_chunk_size = 0;
681     PL_sv_arenaroot = 0;
682     PL_sv_root = 0;
683 }
684
685 /*
686   Here are mid-level routines that manage the allocation of bodies out
687   of the various arenas.  There are 5 kinds of arenas:
688
689   1. SV-head arenas, which are discussed and handled above
690   2. regular body arenas
691   3. arenas for reduced-size bodies
692   4. Hash-Entry arenas
693   5. pte arenas (thread related)
694
695   Arena types 2 & 3 are chained by body-type off an array of
696   arena-root pointers, which is indexed by svtype.  Some of the
697   larger/less used body types are malloced singly, since a large
698   unused block of them is wasteful.  Also, several svtypes dont have
699   bodies; the data fits into the sv-head itself.  The arena-root
700   pointer thus has a few unused root-pointers (which may be hijacked
701   later for arena types 4,5)
702
703   3 differs from 2 as an optimization; some body types have several
704   unused fields in the front of the structure (which are kept in-place
705   for consistency).  These bodies can be allocated in smaller chunks,
706   because the leading fields arent accessed.  Pointers to such bodies
707   are decremented to point at the unused 'ghost' memory, knowing that
708   the pointers are used with offsets to the real memory.
709
710   HE, HEK arenas are managed separately, with separate code, but may
711   be merge-able later..
712
713   PTE arenas are not sv-bodies, but they share these mid-level
714   mechanics, so are considered here.  The new mid-level mechanics rely
715   on the sv_type of the body being allocated, so we just reserve one
716   of the unused body-slots for PTEs, then use it in those (2) PTE
717   contexts below (line ~10k)
718 */
719
720 /* get_arena(size): this creates custom-sized arenas
721    TBD: export properly for hv.c: S_more_he().
722 */
723 void*
724 Perl_get_arena(pTHX_ const size_t arena_size, const U32 misc)
725 {
726     dVAR;
727     struct arena_desc* adesc;
728     struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
729     unsigned int curr;
730
731     /* shouldnt need this
732     if (!arena_size)    arena_size = PERL_ARENA_SIZE;
733     */
734
735     /* may need new arena-set to hold new arena */
736     if (!aroot || aroot->curr >= aroot->set_size) {
737         struct arena_set *newroot;
738         Newxz(newroot, 1, struct arena_set);
739         newroot->set_size = ARENAS_PER_SET;
740         newroot->next = aroot;
741         aroot = newroot;
742         PL_body_arenas = (void *) newroot;
743         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
744     }
745
746     /* ok, now have arena-set with at least 1 empty/available arena-desc */
747     curr = aroot->curr++;
748     adesc = &(aroot->set[curr]);
749     assert(!adesc->arena);
750     
751     Newx(adesc->arena, arena_size, char);
752     adesc->size = arena_size;
753     adesc->misc = misc;
754     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
755                           curr, (void*)adesc->arena, (UV)arena_size));
756
757     return adesc->arena;
758 }
759
760
761 /* return a thing to the free list */
762
763 #define del_body(thing, root)                   \
764     STMT_START {                                \
765         void ** const thing_copy = (void **)thing;\
766         *thing_copy = *root;                    \
767         *root = (void*)thing_copy;              \
768     } STMT_END
769
770 /* 
771
772 =head1 SV-Body Allocation
773
774 Allocation of SV-bodies is similar to SV-heads, differing as follows;
775 the allocation mechanism is used for many body types, so is somewhat
776 more complicated, it uses arena-sets, and has no need for still-live
777 SV detection.
778
779 At the outermost level, (new|del)_X*V macros return bodies of the
780 appropriate type.  These macros call either (new|del)_body_type or
781 (new|del)_body_allocated macro pairs, depending on specifics of the
782 type.  Most body types use the former pair, the latter pair is used to
783 allocate body types with "ghost fields".
784
785 "ghost fields" are fields that are unused in certain types, and
786 consequently dont need to actually exist.  They are declared because
787 they're part of a "base type", which allows use of functions as
788 methods.  The simplest examples are AVs and HVs, 2 aggregate types
789 which don't use the fields which support SCALAR semantics.
790
791 For these types, the arenas are carved up into *_allocated size
792 chunks, we thus avoid wasted memory for those unaccessed members.
793 When bodies are allocated, we adjust the pointer back in memory by the
794 size of the bit not allocated, so it's as if we allocated the full
795 structure.  (But things will all go boom if you write to the part that
796 is "not there", because you'll be overwriting the last members of the
797 preceding structure in memory.)
798
799 We calculate the correction using the STRUCT_OFFSET macro. For
800 example, if xpv_allocated is the same structure as XPV then the two
801 OFFSETs sum to zero, and the pointer is unchanged. If the allocated
802 structure is smaller (no initial NV actually allocated) then the net
803 effect is to subtract the size of the NV from the pointer, to return a
804 new pointer as if an initial NV were actually allocated.
805
806 This is the same trick as was used for NV and IV bodies. Ironically it
807 doesn't need to be used for NV bodies any more, because NV is now at
808 the start of the structure. IV bodies don't need it either, because
809 they are no longer allocated.
810
811 In turn, the new_body_* allocators call S_new_body(), which invokes
812 new_body_inline macro, which takes a lock, and takes a body off the
813 linked list at PL_body_roots[sv_type], calling S_more_bodies() if
814 necessary to refresh an empty list.  Then the lock is released, and
815 the body is returned.
816
817 S_more_bodies calls get_arena(), and carves it up into an array of N
818 bodies, which it strings into a linked list.  It looks up arena-size
819 and body-size from the body_details table described below, thus
820 supporting the multiple body-types.
821
822 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
823 the (new|del)_X*V macros are mapped directly to malloc/free.
824
825 */
826
827 /* 
828
829 For each sv-type, struct body_details bodies_by_type[] carries
830 parameters which control these aspects of SV handling:
831
832 Arena_size determines whether arenas are used for this body type, and if
833 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
834 zero, forcing individual mallocs and frees.
835
836 Body_size determines how big a body is, and therefore how many fit into
837 each arena.  Offset carries the body-pointer adjustment needed for
838 *_allocated body types, and is used in *_allocated macros.
839
840 But its main purpose is to parameterize info needed in
841 Perl_sv_upgrade().  The info here dramatically simplifies the function
842 vs the implementation in 5.8.7, making it table-driven.  All fields
843 are used for this, except for arena_size.
844
845 For the sv-types that have no bodies, arenas are not used, so those
846 PL_body_roots[sv_type] are unused, and can be overloaded.  In
847 something of a special case, SVt_NULL is borrowed for HE arenas;
848 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
849 bodies_by_type[SVt_NULL] slot is not used, as the table is not
850 available in hv.c.
851
852 PTEs also use arenas, but are never seen in Perl_sv_upgrade. Nonetheless,
853 they get their own slot in bodies_by_type[PTE_SVSLOT =SVt_IV], so they can
854 just use the same allocation semantics.  At first, PTEs were also
855 overloaded to a non-body sv-type, but this yielded hard-to-find malloc
856 bugs, so was simplified by claiming a new slot.  This choice has no
857 consequence at this time.
858
859 */
860
861 struct body_details {
862     U8 body_size;       /* Size to allocate  */
863     U8 copy;            /* Size of structure to copy (may be shorter)  */
864     U8 offset;
865     unsigned int type : 4;          /* We have space for a sanity check.  */
866     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
867     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
868     unsigned int arena : 1;         /* Allocated from an arena */
869     size_t arena_size;              /* Size of arena to allocate */
870 };
871
872 #define HADNV FALSE
873 #define NONV TRUE
874
875
876 #ifdef PURIFY
877 /* With -DPURFIY we allocate everything directly, and don't use arenas.
878    This seems a rather elegant way to simplify some of the code below.  */
879 #define HASARENA FALSE
880 #else
881 #define HASARENA TRUE
882 #endif
883 #define NOARENA FALSE
884
885 /* Size the arenas to exactly fit a given number of bodies.  A count
886    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
887    simplifying the default.  If count > 0, the arena is sized to fit
888    only that many bodies, allowing arenas to be used for large, rare
889    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
890    limited by PERL_ARENA_SIZE, so we can safely oversize the
891    declarations.
892  */
893 #define FIT_ARENA0(body_size)                           \
894     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
895 #define FIT_ARENAn(count,body_size)                     \
896     ( count * body_size <= PERL_ARENA_SIZE)             \
897     ? count * body_size                                 \
898     : FIT_ARENA0 (body_size)
899 #define FIT_ARENA(count,body_size)                      \
900     count                                               \
901     ? FIT_ARENAn (count, body_size)                     \
902     : FIT_ARENA0 (body_size)
903
904 /* A macro to work out the offset needed to subtract from a pointer to (say)
905
906 typedef struct {
907     STRLEN      xpv_cur;
908     STRLEN      xpv_len;
909 } xpv_allocated;
910
911 to make its members accessible via a pointer to (say)
912
913 struct xpv {
914     NV          xnv_nv;
915     STRLEN      xpv_cur;
916     STRLEN      xpv_len;
917 };
918
919 */
920
921 #define relative_STRUCT_OFFSET(longer, shorter, member) \
922     (STRUCT_OFFSET(shorter, member) - STRUCT_OFFSET(longer, member))
923
924 /* Calculate the length to copy. Specifically work out the length less any
925    final padding the compiler needed to add.  See the comment in sv_upgrade
926    for why copying the padding proved to be a bug.  */
927
928 #define copy_length(type, last_member) \
929         STRUCT_OFFSET(type, last_member) \
930         + sizeof (((type*)SvANY((const SV *)0))->last_member)
931
932 static const struct body_details bodies_by_type[] = {
933     { sizeof(HE), 0, 0, SVt_NULL,
934       FALSE, NONV, NOARENA, FIT_ARENA(0, sizeof(HE)) },
935
936     /* The bind placeholder pretends to be an RV for now.
937        Also it's marked as "can't upgrade" to stop anyone using it before it's
938        implemented.  */
939     { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
940
941     /* IVs are in the head, so the allocation size is 0.
942        However, the slot is overloaded for PTEs.  */
943     { sizeof(struct ptr_tbl_ent), /* This is used for PTEs.  */
944       sizeof(IV), /* This is used to copy out the IV body.  */
945       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
946       NOARENA /* IVS don't need an arena  */,
947       /* But PTEs need to know the size of their arena  */
948       FIT_ARENA(0, sizeof(struct ptr_tbl_ent))
949     },
950
951     /* 8 bytes on most ILP32 with IEEE doubles */
952     { sizeof(NV), sizeof(NV), 0, SVt_NV, FALSE, HADNV, HASARENA,
953       FIT_ARENA(0, sizeof(NV)) },
954
955     /* 8 bytes on most ILP32 with IEEE doubles */
956     { sizeof(xpv_allocated),
957       copy_length(XPV, xpv_len)
958       - relative_STRUCT_OFFSET(xpv_allocated, XPV, xpv_cur),
959       + relative_STRUCT_OFFSET(xpv_allocated, XPV, xpv_cur),
960       SVt_PV, FALSE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpv_allocated)) },
961
962     /* 12 */
963     { sizeof(xpviv_allocated),
964       copy_length(XPVIV, xiv_u)
965       - relative_STRUCT_OFFSET(xpviv_allocated, XPVIV, xpv_cur),
966       + relative_STRUCT_OFFSET(xpviv_allocated, XPVIV, xpv_cur),
967       SVt_PVIV, FALSE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpviv_allocated)) },
968
969     /* 20 */
970     { sizeof(XPVNV), copy_length(XPVNV, xiv_u), 0, SVt_PVNV, FALSE, HADNV,
971       HASARENA, FIT_ARENA(0, sizeof(XPVNV)) },
972
973     /* 28 */
974     { sizeof(XPVMG), copy_length(XPVMG, xmg_stash), 0, SVt_PVMG, FALSE, HADNV,
975       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
976
977     /* something big */
978     { sizeof(struct regexp_allocated), sizeof(struct regexp_allocated),
979       + relative_STRUCT_OFFSET(struct regexp_allocated, regexp, xpv_cur),
980       SVt_REGEXP, FALSE, NONV, HASARENA,
981       FIT_ARENA(0, sizeof(struct regexp_allocated))
982     },
983
984     /* 48 */
985     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
986       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
987     
988     /* 64 */
989     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
990       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
991
992     { sizeof(xpvav_allocated),
993       copy_length(XPVAV, xmg_stash)
994       - relative_STRUCT_OFFSET(xpvav_allocated, XPVAV, xav_fill),
995       + relative_STRUCT_OFFSET(xpvav_allocated, XPVAV, xav_fill),
996       SVt_PVAV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvav_allocated)) },
997
998     { sizeof(xpvhv_allocated),
999       copy_length(XPVHV, xmg_stash)
1000       - relative_STRUCT_OFFSET(xpvhv_allocated, XPVHV, xhv_fill),
1001       + relative_STRUCT_OFFSET(xpvhv_allocated, XPVHV, xhv_fill),
1002       SVt_PVHV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvhv_allocated)) },
1003
1004     /* 56 */
1005     { sizeof(xpvcv_allocated), sizeof(xpvcv_allocated),
1006       + relative_STRUCT_OFFSET(xpvcv_allocated, XPVCV, xpv_cur),
1007       SVt_PVCV, TRUE, NONV, HASARENA, FIT_ARENA(0, sizeof(xpvcv_allocated)) },
1008
1009     { sizeof(xpvfm_allocated), sizeof(xpvfm_allocated),
1010       + relative_STRUCT_OFFSET(xpvfm_allocated, XPVFM, xpv_cur),
1011       SVt_PVFM, TRUE, NONV, NOARENA, FIT_ARENA(20, sizeof(xpvfm_allocated)) },
1012
1013     /* XPVIO is 84 bytes, fits 48x */
1014     { sizeof(xpvio_allocated), sizeof(xpvio_allocated),
1015       + relative_STRUCT_OFFSET(xpvio_allocated, XPVIO, xpv_cur),
1016       SVt_PVIO, TRUE, NONV, HASARENA, FIT_ARENA(24, sizeof(xpvio_allocated)) },
1017 };
1018
1019 #define new_body_type(sv_type)          \
1020     (void *)((char *)S_new_body(aTHX_ sv_type))
1021
1022 #define del_body_type(p, sv_type)       \
1023     del_body(p, &PL_body_roots[sv_type])
1024
1025
1026 #define new_body_allocated(sv_type)             \
1027     (void *)((char *)S_new_body(aTHX_ sv_type)  \
1028              - bodies_by_type[sv_type].offset)
1029
1030 #define del_body_allocated(p, sv_type)          \
1031     del_body(p + bodies_by_type[sv_type].offset, &PL_body_roots[sv_type])
1032
1033
1034 #define my_safemalloc(s)        (void*)safemalloc(s)
1035 #define my_safecalloc(s)        (void*)safecalloc(s, 1)
1036 #define my_safefree(p)  safefree((char*)p)
1037
1038 #ifdef PURIFY
1039
1040 #define new_XNV()       my_safemalloc(sizeof(XPVNV))
1041 #define del_XNV(p)      my_safefree(p)
1042
1043 #define new_XPVNV()     my_safemalloc(sizeof(XPVNV))
1044 #define del_XPVNV(p)    my_safefree(p)
1045
1046 #define new_XPVAV()     my_safemalloc(sizeof(XPVAV))
1047 #define del_XPVAV(p)    my_safefree(p)
1048
1049 #define new_XPVHV()     my_safemalloc(sizeof(XPVHV))
1050 #define del_XPVHV(p)    my_safefree(p)
1051
1052 #define new_XPVMG()     my_safemalloc(sizeof(XPVMG))
1053 #define del_XPVMG(p)    my_safefree(p)
1054
1055 #define new_XPVGV()     my_safemalloc(sizeof(XPVGV))
1056 #define del_XPVGV(p)    my_safefree(p)
1057
1058 #else /* !PURIFY */
1059
1060 #define new_XNV()       new_body_type(SVt_NV)
1061 #define del_XNV(p)      del_body_type(p, SVt_NV)
1062
1063 #define new_XPVNV()     new_body_type(SVt_PVNV)
1064 #define del_XPVNV(p)    del_body_type(p, SVt_PVNV)
1065
1066 #define new_XPVAV()     new_body_allocated(SVt_PVAV)
1067 #define del_XPVAV(p)    del_body_allocated(p, SVt_PVAV)
1068
1069 #define new_XPVHV()     new_body_allocated(SVt_PVHV)
1070 #define del_XPVHV(p)    del_body_allocated(p, SVt_PVHV)
1071
1072 #define new_XPVMG()     new_body_type(SVt_PVMG)
1073 #define del_XPVMG(p)    del_body_type(p, SVt_PVMG)
1074
1075 #define new_XPVGV()     new_body_type(SVt_PVGV)
1076 #define del_XPVGV(p)    del_body_type(p, SVt_PVGV)
1077
1078 #endif /* PURIFY */
1079
1080 /* no arena for you! */
1081
1082 #define new_NOARENA(details) \
1083         my_safemalloc((details)->body_size + (details)->offset)
1084 #define new_NOARENAZ(details) \
1085         my_safecalloc((details)->body_size + (details)->offset)
1086
1087 STATIC void *
1088 S_more_bodies (pTHX_ const svtype sv_type)
1089 {
1090     dVAR;
1091     void ** const root = &PL_body_roots[sv_type];
1092     const struct body_details * const bdp = &bodies_by_type[sv_type];
1093     const size_t body_size = bdp->body_size;
1094     char *start;
1095     const char *end;
1096     const size_t arena_size = Perl_malloc_good_size(bdp->arena_size);
1097 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1098     static bool done_sanity_check;
1099
1100     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1101      * variables like done_sanity_check. */
1102     if (!done_sanity_check) {
1103         unsigned int i = SVt_LAST;
1104
1105         done_sanity_check = TRUE;
1106
1107         while (i--)
1108             assert (bodies_by_type[i].type == i);
1109     }
1110 #endif
1111
1112     assert(bdp->arena_size);
1113
1114     start = (char*) Perl_get_arena(aTHX_ arena_size, sv_type);
1115
1116     end = start + arena_size - 2 * body_size;
1117
1118     /* computed count doesnt reflect the 1st slot reservation */
1119 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1120     DEBUG_m(PerlIO_printf(Perl_debug_log,
1121                           "arena %p end %p arena-size %d (from %d) type %d "
1122                           "size %d ct %d\n",
1123                           (void*)start, (void*)end, (int)arena_size,
1124                           (int)bdp->arena_size, sv_type, (int)body_size,
1125                           (int)arena_size / (int)body_size));
1126 #else
1127     DEBUG_m(PerlIO_printf(Perl_debug_log,
1128                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1129                           (void*)start, (void*)end,
1130                           (int)bdp->arena_size, sv_type, (int)body_size,
1131                           (int)bdp->arena_size / (int)body_size));
1132 #endif
1133     *root = (void *)start;
1134
1135     while (start <= end) {
1136         char * const next = start + body_size;
1137         *(void**) start = (void *)next;
1138         start = next;
1139     }
1140     *(void **)start = 0;
1141
1142     return *root;
1143 }
1144
1145 /* grab a new thing from the free list, allocating more if necessary.
1146    The inline version is used for speed in hot routines, and the
1147    function using it serves the rest (unless PURIFY).
1148 */
1149 #define new_body_inline(xpv, sv_type) \
1150     STMT_START { \
1151         void ** const r3wt = &PL_body_roots[sv_type]; \
1152         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1153           ? *((void **)(r3wt)) : more_bodies(sv_type)); \
1154         *(r3wt) = *(void**)(xpv); \
1155     } STMT_END
1156
1157 #ifndef PURIFY
1158
1159 STATIC void *
1160 S_new_body(pTHX_ const svtype sv_type)
1161 {
1162     dVAR;
1163     void *xpv;
1164     new_body_inline(xpv, sv_type);
1165     return xpv;
1166 }
1167
1168 #endif
1169
1170 static const struct body_details fake_rv =
1171     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1172
1173 /*
1174 =for apidoc sv_upgrade
1175
1176 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1177 SV, then copies across as much information as possible from the old body.
1178 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1179
1180 =cut
1181 */
1182
1183 void
1184 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1185 {
1186     dVAR;
1187     void*       old_body;
1188     void*       new_body;
1189     const svtype old_type = SvTYPE(sv);
1190     const struct body_details *new_type_details;
1191     const struct body_details *old_type_details
1192         = bodies_by_type + old_type;
1193     SV *referant = NULL;
1194
1195     PERL_ARGS_ASSERT_SV_UPGRADE;
1196
1197     if (new_type != SVt_PV && SvIsCOW(sv)) {
1198         sv_force_normal_flags(sv, 0);
1199     }
1200
1201     if (old_type == new_type)
1202         return;
1203
1204     old_body = SvANY(sv);
1205
1206     /* Copying structures onto other structures that have been neatly zeroed
1207        has a subtle gotcha. Consider XPVMG
1208
1209        +------+------+------+------+------+-------+-------+
1210        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1211        +------+------+------+------+------+-------+-------+
1212        0      4      8     12     16     20      24      28
1213
1214        where NVs are aligned to 8 bytes, so that sizeof that structure is
1215        actually 32 bytes long, with 4 bytes of padding at the end:
1216
1217        +------+------+------+------+------+-------+-------+------+
1218        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1219        +------+------+------+------+------+-------+-------+------+
1220        0      4      8     12     16     20      24      28     32
1221
1222        so what happens if you allocate memory for this structure:
1223
1224        +------+------+------+------+------+-------+-------+------+------+...
1225        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1226        +------+------+------+------+------+-------+-------+------+------+...
1227        0      4      8     12     16     20      24      28     32     36
1228
1229        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1230        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1231        started out as zero once, but it's quite possible that it isn't. So now,
1232        rather than a nicely zeroed GP, you have it pointing somewhere random.
1233        Bugs ensue.
1234
1235        (In fact, GP ends up pointing at a previous GP structure, because the
1236        principle cause of the padding in XPVMG getting garbage is a copy of
1237        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1238        this happens to be moot because XPVGV has been re-ordered, with GP
1239        no longer after STASH)
1240
1241        So we are careful and work out the size of used parts of all the
1242        structures.  */
1243
1244     switch (old_type) {
1245     case SVt_NULL:
1246         break;
1247     case SVt_IV:
1248         if (SvROK(sv)) {
1249             referant = SvRV(sv);
1250             old_type_details = &fake_rv;
1251             if (new_type == SVt_NV)
1252                 new_type = SVt_PVNV;
1253         } else {
1254             if (new_type < SVt_PVIV) {
1255                 new_type = (new_type == SVt_NV)
1256                     ? SVt_PVNV : SVt_PVIV;
1257             }
1258         }
1259         break;
1260     case SVt_NV:
1261         if (new_type < SVt_PVNV) {
1262             new_type = SVt_PVNV;
1263         }
1264         break;
1265     case SVt_PV:
1266         assert(new_type > SVt_PV);
1267         assert(SVt_IV < SVt_PV);
1268         assert(SVt_NV < SVt_PV);
1269         break;
1270     case SVt_PVIV:
1271         break;
1272     case SVt_PVNV:
1273         break;
1274     case SVt_PVMG:
1275         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1276            there's no way that it can be safely upgraded, because perl.c
1277            expects to Safefree(SvANY(PL_mess_sv))  */
1278         assert(sv != PL_mess_sv);
1279         /* This flag bit is used to mean other things in other scalar types.
1280            Given that it only has meaning inside the pad, it shouldn't be set
1281            on anything that can get upgraded.  */
1282         assert(!SvPAD_TYPED(sv));
1283         break;
1284     default:
1285         if (old_type_details->cant_upgrade)
1286             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1287                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1288     }
1289
1290     if (old_type > new_type)
1291         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1292                 (int)old_type, (int)new_type);
1293
1294     new_type_details = bodies_by_type + new_type;
1295
1296     SvFLAGS(sv) &= ~SVTYPEMASK;
1297     SvFLAGS(sv) |= new_type;
1298
1299     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1300        the return statements above will have triggered.  */
1301     assert (new_type != SVt_NULL);
1302     switch (new_type) {
1303     case SVt_IV:
1304         assert(old_type == SVt_NULL);
1305         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1306         SvIV_set(sv, 0);
1307         return;
1308     case SVt_NV:
1309         assert(old_type == SVt_NULL);
1310         SvANY(sv) = new_XNV();
1311         SvNV_set(sv, 0);
1312         return;
1313     case SVt_PVHV:
1314     case SVt_PVAV:
1315         assert(new_type_details->body_size);
1316
1317 #ifndef PURIFY  
1318         assert(new_type_details->arena);
1319         assert(new_type_details->arena_size);
1320         /* This points to the start of the allocated area.  */
1321         new_body_inline(new_body, new_type);
1322         Zero(new_body, new_type_details->body_size, char);
1323         new_body = ((char *)new_body) - new_type_details->offset;
1324 #else
1325         /* We always allocated the full length item with PURIFY. To do this
1326            we fake things so that arena is false for all 16 types..  */
1327         new_body = new_NOARENAZ(new_type_details);
1328 #endif
1329         SvANY(sv) = new_body;
1330         if (new_type == SVt_PVAV) {
1331             AvMAX(sv)   = -1;
1332             AvFILLp(sv) = -1;
1333             AvREAL_only(sv);
1334             if (old_type_details->body_size) {
1335                 AvALLOC(sv) = 0;
1336             } else {
1337                 /* It will have been zeroed when the new body was allocated.
1338                    Lets not write to it, in case it confuses a write-back
1339                    cache.  */
1340             }
1341         } else {
1342             assert(!SvOK(sv));
1343             SvOK_off(sv);
1344 #ifndef NODEFAULT_SHAREKEYS
1345             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1346 #endif
1347             HvMAX(sv) = 7; /* (start with 8 buckets) */
1348             if (old_type_details->body_size) {
1349                 HvFILL(sv) = 0;
1350             } else {
1351                 /* It will have been zeroed when the new body was allocated.
1352                    Lets not write to it, in case it confuses a write-back
1353                    cache.  */
1354             }
1355         }
1356
1357         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1358            The target created by newSVrv also is, and it can have magic.
1359            However, it never has SvPVX set.
1360         */
1361         if (old_type == SVt_IV) {
1362             assert(!SvROK(sv));
1363         } else if (old_type >= SVt_PV) {
1364             assert(SvPVX_const(sv) == 0);
1365         }
1366
1367         if (old_type >= SVt_PVMG) {
1368             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1369             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1370         } else {
1371             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1372         }
1373         break;
1374
1375
1376     case SVt_PVIV:
1377         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1378            no route from NV to PVIV, NOK can never be true  */
1379         assert(!SvNOKp(sv));
1380         assert(!SvNOK(sv));
1381     case SVt_PVIO:
1382     case SVt_PVFM:
1383     case SVt_PVGV:
1384     case SVt_PVCV:
1385     case SVt_PVLV:
1386     case SVt_REGEXP:
1387     case SVt_PVMG:
1388     case SVt_PVNV:
1389     case SVt_PV:
1390
1391         assert(new_type_details->body_size);
1392         /* We always allocated the full length item with PURIFY. To do this
1393            we fake things so that arena is false for all 16 types..  */
1394         if(new_type_details->arena) {
1395             /* This points to the start of the allocated area.  */
1396             new_body_inline(new_body, new_type);
1397             Zero(new_body, new_type_details->body_size, char);
1398             new_body = ((char *)new_body) - new_type_details->offset;
1399         } else {
1400             new_body = new_NOARENAZ(new_type_details);
1401         }
1402         SvANY(sv) = new_body;
1403
1404         if (old_type_details->copy) {
1405             /* There is now the potential for an upgrade from something without
1406                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1407             int offset = old_type_details->offset;
1408             int length = old_type_details->copy;
1409
1410             if (new_type_details->offset > old_type_details->offset) {
1411                 const int difference
1412                     = new_type_details->offset - old_type_details->offset;
1413                 offset += difference;
1414                 length -= difference;
1415             }
1416             assert (length >= 0);
1417                 
1418             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1419                  char);
1420         }
1421
1422 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1423         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1424          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1425          * NV slot, but the new one does, then we need to initialise the
1426          * freshly created NV slot with whatever the correct bit pattern is
1427          * for 0.0  */
1428         if (old_type_details->zero_nv && !new_type_details->zero_nv
1429             && !isGV_with_GP(sv))
1430             SvNV_set(sv, 0);
1431 #endif
1432
1433         if (new_type == SVt_PVIO)
1434             IoPAGE_LEN(sv) = 60;
1435         if (old_type < SVt_PV) {
1436             /* referant will be NULL unless the old type was SVt_IV emulating
1437                SVt_RV */
1438             sv->sv_u.svu_rv = referant;
1439         }
1440         break;
1441     default:
1442         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1443                    (unsigned long)new_type);
1444     }
1445
1446     if (old_type_details->arena) {
1447         /* If there was an old body, then we need to free it.
1448            Note that there is an assumption that all bodies of types that
1449            can be upgraded came from arenas. Only the more complex non-
1450            upgradable types are allowed to be directly malloc()ed.  */
1451 #ifdef PURIFY
1452         my_safefree(old_body);
1453 #else
1454         del_body((void*)((char*)old_body + old_type_details->offset),
1455                  &PL_body_roots[old_type]);
1456 #endif
1457     }
1458 }
1459
1460 /*
1461 =for apidoc sv_backoff
1462
1463 Remove any string offset. You should normally use the C<SvOOK_off> macro
1464 wrapper instead.
1465
1466 =cut
1467 */
1468
1469 int
1470 Perl_sv_backoff(pTHX_ register SV *const sv)
1471 {
1472     STRLEN delta;
1473     const char * const s = SvPVX_const(sv);
1474
1475     PERL_ARGS_ASSERT_SV_BACKOFF;
1476     PERL_UNUSED_CONTEXT;
1477
1478     assert(SvOOK(sv));
1479     assert(SvTYPE(sv) != SVt_PVHV);
1480     assert(SvTYPE(sv) != SVt_PVAV);
1481
1482     SvOOK_offset(sv, delta);
1483     
1484     SvLEN_set(sv, SvLEN(sv) + delta);
1485     SvPV_set(sv, SvPVX(sv) - delta);
1486     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1487     SvFLAGS(sv) &= ~SVf_OOK;
1488     return 0;
1489 }
1490
1491 /*
1492 =for apidoc sv_grow
1493
1494 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1495 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1496 Use the C<SvGROW> wrapper instead.
1497
1498 =cut
1499 */
1500
1501 char *
1502 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1503 {
1504     register char *s;
1505
1506     PERL_ARGS_ASSERT_SV_GROW;
1507
1508     if (PL_madskills && newlen >= 0x100000) {
1509         PerlIO_printf(Perl_debug_log,
1510                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1511     }
1512 #ifdef HAS_64K_LIMIT
1513     if (newlen >= 0x10000) {
1514         PerlIO_printf(Perl_debug_log,
1515                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1516         my_exit(1);
1517     }
1518 #endif /* HAS_64K_LIMIT */
1519     if (SvROK(sv))
1520         sv_unref(sv);
1521     if (SvTYPE(sv) < SVt_PV) {
1522         sv_upgrade(sv, SVt_PV);
1523         s = SvPVX_mutable(sv);
1524     }
1525     else if (SvOOK(sv)) {       /* pv is offset? */
1526         sv_backoff(sv);
1527         s = SvPVX_mutable(sv);
1528         if (newlen > SvLEN(sv))
1529             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1530 #ifdef HAS_64K_LIMIT
1531         if (newlen >= 0x10000)
1532             newlen = 0xFFFF;
1533 #endif
1534     }
1535     else
1536         s = SvPVX_mutable(sv);
1537
1538     if (newlen > SvLEN(sv)) {           /* need more room? */
1539 #ifndef Perl_safesysmalloc_size
1540         newlen = PERL_STRLEN_ROUNDUP(newlen);
1541 #endif
1542         if (SvLEN(sv) && s) {
1543             s = (char*)saferealloc(s, newlen);
1544         }
1545         else {
1546             s = (char*)safemalloc(newlen);
1547             if (SvPVX_const(sv) && SvCUR(sv)) {
1548                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1549             }
1550         }
1551         SvPV_set(sv, s);
1552 #ifdef Perl_safesysmalloc_size
1553         /* Do this here, do it once, do it right, and then we will never get
1554            called back into sv_grow() unless there really is some growing
1555            needed.  */
1556         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1557 #else
1558         SvLEN_set(sv, newlen);
1559 #endif
1560     }
1561     return s;
1562 }
1563
1564 /*
1565 =for apidoc sv_setiv
1566
1567 Copies an integer into the given SV, upgrading first if necessary.
1568 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1569
1570 =cut
1571 */
1572
1573 void
1574 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1575 {
1576     dVAR;
1577
1578     PERL_ARGS_ASSERT_SV_SETIV;
1579
1580     SV_CHECK_THINKFIRST_COW_DROP(sv);
1581     switch (SvTYPE(sv)) {
1582     case SVt_NULL:
1583     case SVt_NV:
1584         sv_upgrade(sv, SVt_IV);
1585         break;
1586     case SVt_PV:
1587         sv_upgrade(sv, SVt_PVIV);
1588         break;
1589
1590     case SVt_PVGV:
1591         if (!isGV_with_GP(sv))
1592             break;
1593     case SVt_PVAV:
1594     case SVt_PVHV:
1595     case SVt_PVCV:
1596     case SVt_PVFM:
1597     case SVt_PVIO:
1598         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1599                    OP_DESC(PL_op));
1600     default: NOOP;
1601     }
1602     (void)SvIOK_only(sv);                       /* validate number */
1603     SvIV_set(sv, i);
1604     SvTAINT(sv);
1605 }
1606
1607 /*
1608 =for apidoc sv_setiv_mg
1609
1610 Like C<sv_setiv>, but also handles 'set' magic.
1611
1612 =cut
1613 */
1614
1615 void
1616 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1617 {
1618     PERL_ARGS_ASSERT_SV_SETIV_MG;
1619
1620     sv_setiv(sv,i);
1621     SvSETMAGIC(sv);
1622 }
1623
1624 /*
1625 =for apidoc sv_setuv
1626
1627 Copies an unsigned integer into the given SV, upgrading first if necessary.
1628 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1629
1630 =cut
1631 */
1632
1633 void
1634 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1635 {
1636     PERL_ARGS_ASSERT_SV_SETUV;
1637
1638     /* With these two if statements:
1639        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1640
1641        without
1642        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1643
1644        If you wish to remove them, please benchmark to see what the effect is
1645     */
1646     if (u <= (UV)IV_MAX) {
1647        sv_setiv(sv, (IV)u);
1648        return;
1649     }
1650     sv_setiv(sv, 0);
1651     SvIsUV_on(sv);
1652     SvUV_set(sv, u);
1653 }
1654
1655 /*
1656 =for apidoc sv_setuv_mg
1657
1658 Like C<sv_setuv>, but also handles 'set' magic.
1659
1660 =cut
1661 */
1662
1663 void
1664 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1665 {
1666     PERL_ARGS_ASSERT_SV_SETUV_MG;
1667
1668     sv_setuv(sv,u);
1669     SvSETMAGIC(sv);
1670 }
1671
1672 /*
1673 =for apidoc sv_setnv
1674
1675 Copies a double into the given SV, upgrading first if necessary.
1676 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1677
1678 =cut
1679 */
1680
1681 void
1682 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1683 {
1684     dVAR;
1685
1686     PERL_ARGS_ASSERT_SV_SETNV;
1687
1688     SV_CHECK_THINKFIRST_COW_DROP(sv);
1689     switch (SvTYPE(sv)) {
1690     case SVt_NULL:
1691     case SVt_IV:
1692         sv_upgrade(sv, SVt_NV);
1693         break;
1694     case SVt_PV:
1695     case SVt_PVIV:
1696         sv_upgrade(sv, SVt_PVNV);
1697         break;
1698
1699     case SVt_PVGV:
1700         if (!isGV_with_GP(sv))
1701             break;
1702     case SVt_PVAV:
1703     case SVt_PVHV:
1704     case SVt_PVCV:
1705     case SVt_PVFM:
1706     case SVt_PVIO:
1707         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1708                    OP_NAME(PL_op));
1709     default: NOOP;
1710     }
1711     SvNV_set(sv, num);
1712     (void)SvNOK_only(sv);                       /* validate number */
1713     SvTAINT(sv);
1714 }
1715
1716 /*
1717 =for apidoc sv_setnv_mg
1718
1719 Like C<sv_setnv>, but also handles 'set' magic.
1720
1721 =cut
1722 */
1723
1724 void
1725 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1726 {
1727     PERL_ARGS_ASSERT_SV_SETNV_MG;
1728
1729     sv_setnv(sv,num);
1730     SvSETMAGIC(sv);
1731 }
1732
1733 /* Print an "isn't numeric" warning, using a cleaned-up,
1734  * printable version of the offending string
1735  */
1736
1737 STATIC void
1738 S_not_a_number(pTHX_ SV *const sv)
1739 {
1740      dVAR;
1741      SV *dsv;
1742      char tmpbuf[64];
1743      const char *pv;
1744
1745      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1746
1747      if (DO_UTF8(sv)) {
1748           dsv = newSVpvs_flags("", SVs_TEMP);
1749           pv = sv_uni_display(dsv, sv, 10, 0);
1750      } else {
1751           char *d = tmpbuf;
1752           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1753           /* each *s can expand to 4 chars + "...\0",
1754              i.e. need room for 8 chars */
1755         
1756           const char *s = SvPVX_const(sv);
1757           const char * const end = s + SvCUR(sv);
1758           for ( ; s < end && d < limit; s++ ) {
1759                int ch = *s & 0xFF;
1760                if (ch & 128 && !isPRINT_LC(ch)) {
1761                     *d++ = 'M';
1762                     *d++ = '-';
1763                     ch &= 127;
1764                }
1765                if (ch == '\n') {
1766                     *d++ = '\\';
1767                     *d++ = 'n';
1768                }
1769                else if (ch == '\r') {
1770                     *d++ = '\\';
1771                     *d++ = 'r';
1772                }
1773                else if (ch == '\f') {
1774                     *d++ = '\\';
1775                     *d++ = 'f';
1776                }
1777                else if (ch == '\\') {
1778                     *d++ = '\\';
1779                     *d++ = '\\';
1780                }
1781                else if (ch == '\0') {
1782                     *d++ = '\\';
1783                     *d++ = '0';
1784                }
1785                else if (isPRINT_LC(ch))
1786                     *d++ = ch;
1787                else {
1788                     *d++ = '^';
1789                     *d++ = toCTRL(ch);
1790                }
1791           }
1792           if (s < end) {
1793                *d++ = '.';
1794                *d++ = '.';
1795                *d++ = '.';
1796           }
1797           *d = '\0';
1798           pv = tmpbuf;
1799     }
1800
1801     if (PL_op)
1802         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1803                     "Argument \"%s\" isn't numeric in %s", pv,
1804                     OP_DESC(PL_op));
1805     else
1806         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1807                     "Argument \"%s\" isn't numeric", pv);
1808 }
1809
1810 /*
1811 =for apidoc looks_like_number
1812
1813 Test if the content of an SV looks like a number (or is a number).
1814 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1815 non-numeric warning), even if your atof() doesn't grok them.
1816
1817 =cut
1818 */
1819
1820 I32
1821 Perl_looks_like_number(pTHX_ SV *const sv)
1822 {
1823     register const char *sbegin;
1824     STRLEN len;
1825
1826     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1827
1828     if (SvPOK(sv)) {
1829         sbegin = SvPVX_const(sv);
1830         len = SvCUR(sv);
1831     }
1832     else if (SvPOKp(sv))
1833         sbegin = SvPV_const(sv, len);
1834     else
1835         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1836     return grok_number(sbegin, len, NULL);
1837 }
1838
1839 STATIC bool
1840 S_glob_2number(pTHX_ GV * const gv)
1841 {
1842     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1843     SV *const buffer = sv_newmortal();
1844
1845     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1846
1847     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1848        is on.  */
1849     SvFAKE_off(gv);
1850     gv_efullname3(buffer, gv, "*");
1851     SvFLAGS(gv) |= wasfake;
1852
1853     /* We know that all GVs stringify to something that is not-a-number,
1854         so no need to test that.  */
1855     if (ckWARN(WARN_NUMERIC))
1856         not_a_number(buffer);
1857     /* We just want something true to return, so that S_sv_2iuv_common
1858         can tail call us and return true.  */
1859     return TRUE;
1860 }
1861
1862 STATIC char *
1863 S_glob_2pv(pTHX_ GV * const gv, STRLEN * const len)
1864 {
1865     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1866     SV *const buffer = sv_newmortal();
1867
1868     PERL_ARGS_ASSERT_GLOB_2PV;
1869
1870     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1871        is on.  */
1872     SvFAKE_off(gv);
1873     gv_efullname3(buffer, gv, "*");
1874     SvFLAGS(gv) |= wasfake;
1875
1876     assert(SvPOK(buffer));
1877     if (len) {
1878         *len = SvCUR(buffer);
1879     }
1880     return SvPVX(buffer);
1881 }
1882
1883 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1884    until proven guilty, assume that things are not that bad... */
1885
1886 /*
1887    NV_PRESERVES_UV:
1888
1889    As 64 bit platforms often have an NV that doesn't preserve all bits of
1890    an IV (an assumption perl has been based on to date) it becomes necessary
1891    to remove the assumption that the NV always carries enough precision to
1892    recreate the IV whenever needed, and that the NV is the canonical form.
1893    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1894    precision as a side effect of conversion (which would lead to insanity
1895    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1896    1) to distinguish between IV/UV/NV slots that have cached a valid
1897       conversion where precision was lost and IV/UV/NV slots that have a
1898       valid conversion which has lost no precision
1899    2) to ensure that if a numeric conversion to one form is requested that
1900       would lose precision, the precise conversion (or differently
1901       imprecise conversion) is also performed and cached, to prevent
1902       requests for different numeric formats on the same SV causing
1903       lossy conversion chains. (lossless conversion chains are perfectly
1904       acceptable (still))
1905
1906
1907    flags are used:
1908    SvIOKp is true if the IV slot contains a valid value
1909    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1910    SvNOKp is true if the NV slot contains a valid value
1911    SvNOK  is true only if the NV value is accurate
1912
1913    so
1914    while converting from PV to NV, check to see if converting that NV to an
1915    IV(or UV) would lose accuracy over a direct conversion from PV to
1916    IV(or UV). If it would, cache both conversions, return NV, but mark
1917    SV as IOK NOKp (ie not NOK).
1918
1919    While converting from PV to IV, check to see if converting that IV to an
1920    NV would lose accuracy over a direct conversion from PV to NV. If it
1921    would, cache both conversions, flag similarly.
1922
1923    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1924    correctly because if IV & NV were set NV *always* overruled.
1925    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1926    changes - now IV and NV together means that the two are interchangeable:
1927    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1928
1929    The benefit of this is that operations such as pp_add know that if
1930    SvIOK is true for both left and right operands, then integer addition
1931    can be used instead of floating point (for cases where the result won't
1932    overflow). Before, floating point was always used, which could lead to
1933    loss of precision compared with integer addition.
1934
1935    * making IV and NV equal status should make maths accurate on 64 bit
1936      platforms
1937    * may speed up maths somewhat if pp_add and friends start to use
1938      integers when possible instead of fp. (Hopefully the overhead in
1939      looking for SvIOK and checking for overflow will not outweigh the
1940      fp to integer speedup)
1941    * will slow down integer operations (callers of SvIV) on "inaccurate"
1942      values, as the change from SvIOK to SvIOKp will cause a call into
1943      sv_2iv each time rather than a macro access direct to the IV slot
1944    * should speed up number->string conversion on integers as IV is
1945      favoured when IV and NV are equally accurate
1946
1947    ####################################################################
1948    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1949    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1950    On the other hand, SvUOK is true iff UV.
1951    ####################################################################
1952
1953    Your mileage will vary depending your CPU's relative fp to integer
1954    performance ratio.
1955 */
1956
1957 #ifndef NV_PRESERVES_UV
1958 #  define IS_NUMBER_UNDERFLOW_IV 1
1959 #  define IS_NUMBER_UNDERFLOW_UV 2
1960 #  define IS_NUMBER_IV_AND_UV    2
1961 #  define IS_NUMBER_OVERFLOW_IV  4
1962 #  define IS_NUMBER_OVERFLOW_UV  5
1963
1964 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1965
1966 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1967 STATIC int
1968 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1969 #  ifdef DEBUGGING
1970                        , I32 numtype
1971 #  endif
1972                        )
1973 {
1974     dVAR;
1975
1976     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1977
1978     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));
1979     if (SvNVX(sv) < (NV)IV_MIN) {
1980         (void)SvIOKp_on(sv);
1981         (void)SvNOK_on(sv);
1982         SvIV_set(sv, IV_MIN);
1983         return IS_NUMBER_UNDERFLOW_IV;
1984     }
1985     if (SvNVX(sv) > (NV)UV_MAX) {
1986         (void)SvIOKp_on(sv);
1987         (void)SvNOK_on(sv);
1988         SvIsUV_on(sv);
1989         SvUV_set(sv, UV_MAX);
1990         return IS_NUMBER_OVERFLOW_UV;
1991     }
1992     (void)SvIOKp_on(sv);
1993     (void)SvNOK_on(sv);
1994     /* Can't use strtol etc to convert this string.  (See truth table in
1995        sv_2iv  */
1996     if (SvNVX(sv) <= (UV)IV_MAX) {
1997         SvIV_set(sv, I_V(SvNVX(sv)));
1998         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1999             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
2000         } else {
2001             /* Integer is imprecise. NOK, IOKp */
2002         }
2003         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
2004     }
2005     SvIsUV_on(sv);
2006     SvUV_set(sv, U_V(SvNVX(sv)));
2007     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2008         if (SvUVX(sv) == UV_MAX) {
2009             /* As we know that NVs don't preserve UVs, UV_MAX cannot
2010                possibly be preserved by NV. Hence, it must be overflow.
2011                NOK, IOKp */
2012             return IS_NUMBER_OVERFLOW_UV;
2013         }
2014         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2015     } else {
2016         /* Integer is imprecise. NOK, IOKp */
2017     }
2018     return IS_NUMBER_OVERFLOW_IV;
2019 }
2020 #endif /* !NV_PRESERVES_UV*/
2021
2022 STATIC bool
2023 S_sv_2iuv_common(pTHX_ SV *const sv)
2024 {
2025     dVAR;
2026
2027     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
2028
2029     if (SvNOKp(sv)) {
2030         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2031          * without also getting a cached IV/UV from it at the same time
2032          * (ie PV->NV conversion should detect loss of accuracy and cache
2033          * IV or UV at same time to avoid this. */
2034         /* IV-over-UV optimisation - choose to cache IV if possible */
2035
2036         if (SvTYPE(sv) == SVt_NV)
2037             sv_upgrade(sv, SVt_PVNV);
2038
2039         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2040         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2041            certainly cast into the IV range at IV_MAX, whereas the correct
2042            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2043            cases go to UV */
2044 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2045         if (Perl_isnan(SvNVX(sv))) {
2046             SvUV_set(sv, 0);
2047             SvIsUV_on(sv);
2048             return FALSE;
2049         }
2050 #endif
2051         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2052             SvIV_set(sv, I_V(SvNVX(sv)));
2053             if (SvNVX(sv) == (NV) SvIVX(sv)
2054 #ifndef NV_PRESERVES_UV
2055                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2056                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2057                 /* Don't flag it as "accurately an integer" if the number
2058                    came from a (by definition imprecise) NV operation, and
2059                    we're outside the range of NV integer precision */
2060 #endif
2061                 ) {
2062                 if (SvNOK(sv))
2063                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2064                 else {
2065                     /* scalar has trailing garbage, eg "42a" */
2066                 }
2067                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2068                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2069                                       PTR2UV(sv),
2070                                       SvNVX(sv),
2071                                       SvIVX(sv)));
2072
2073             } else {
2074                 /* IV not precise.  No need to convert from PV, as NV
2075                    conversion would already have cached IV if it detected
2076                    that PV->IV would be better than PV->NV->IV
2077                    flags already correct - don't set public IOK.  */
2078                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2079                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2080                                       PTR2UV(sv),
2081                                       SvNVX(sv),
2082                                       SvIVX(sv)));
2083             }
2084             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2085                but the cast (NV)IV_MIN rounds to a the value less (more
2086                negative) than IV_MIN which happens to be equal to SvNVX ??
2087                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2088                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2089                (NV)UVX == NVX are both true, but the values differ. :-(
2090                Hopefully for 2s complement IV_MIN is something like
2091                0x8000000000000000 which will be exact. NWC */
2092         }
2093         else {
2094             SvUV_set(sv, U_V(SvNVX(sv)));
2095             if (
2096                 (SvNVX(sv) == (NV) SvUVX(sv))
2097 #ifndef  NV_PRESERVES_UV
2098                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2099                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2100                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2101                 /* Don't flag it as "accurately an integer" if the number
2102                    came from a (by definition imprecise) NV operation, and
2103                    we're outside the range of NV integer precision */
2104 #endif
2105                 && SvNOK(sv)
2106                 )
2107                 SvIOK_on(sv);
2108             SvIsUV_on(sv);
2109             DEBUG_c(PerlIO_printf(Perl_debug_log,
2110                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2111                                   PTR2UV(sv),
2112                                   SvUVX(sv),
2113                                   SvUVX(sv)));
2114         }
2115     }
2116     else if (SvPOKp(sv) && SvLEN(sv)) {
2117         UV value;
2118         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2119         /* We want to avoid a possible problem when we cache an IV/ a UV which
2120            may be later translated to an NV, and the resulting NV is not
2121            the same as the direct translation of the initial string
2122            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2123            be careful to ensure that the value with the .456 is around if the
2124            NV value is requested in the future).
2125         
2126            This means that if we cache such an IV/a UV, we need to cache the
2127            NV as well.  Moreover, we trade speed for space, and do not
2128            cache the NV if we are sure it's not needed.
2129          */
2130
2131         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2132         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2133              == IS_NUMBER_IN_UV) {
2134             /* It's definitely an integer, only upgrade to PVIV */
2135             if (SvTYPE(sv) < SVt_PVIV)
2136                 sv_upgrade(sv, SVt_PVIV);
2137             (void)SvIOK_on(sv);
2138         } else if (SvTYPE(sv) < SVt_PVNV)
2139             sv_upgrade(sv, SVt_PVNV);
2140
2141         /* If NVs preserve UVs then we only use the UV value if we know that
2142            we aren't going to call atof() below. If NVs don't preserve UVs
2143            then the value returned may have more precision than atof() will
2144            return, even though value isn't perfectly accurate.  */
2145         if ((numtype & (IS_NUMBER_IN_UV
2146 #ifdef NV_PRESERVES_UV
2147                         | IS_NUMBER_NOT_INT
2148 #endif
2149             )) == IS_NUMBER_IN_UV) {
2150             /* This won't turn off the public IOK flag if it was set above  */
2151             (void)SvIOKp_on(sv);
2152
2153             if (!(numtype & IS_NUMBER_NEG)) {
2154                 /* positive */;
2155                 if (value <= (UV)IV_MAX) {
2156                     SvIV_set(sv, (IV)value);
2157                 } else {
2158                     /* it didn't overflow, and it was positive. */
2159                     SvUV_set(sv, value);
2160                     SvIsUV_on(sv);
2161                 }
2162             } else {
2163                 /* 2s complement assumption  */
2164                 if (value <= (UV)IV_MIN) {
2165                     SvIV_set(sv, -(IV)value);
2166                 } else {
2167                     /* Too negative for an IV.  This is a double upgrade, but
2168                        I'm assuming it will be rare.  */
2169                     if (SvTYPE(sv) < SVt_PVNV)
2170                         sv_upgrade(sv, SVt_PVNV);
2171                     SvNOK_on(sv);
2172                     SvIOK_off(sv);
2173                     SvIOKp_on(sv);
2174                     SvNV_set(sv, -(NV)value);
2175                     SvIV_set(sv, IV_MIN);
2176                 }
2177             }
2178         }
2179         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2180            will be in the previous block to set the IV slot, and the next
2181            block to set the NV slot.  So no else here.  */
2182         
2183         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2184             != IS_NUMBER_IN_UV) {
2185             /* It wasn't an (integer that doesn't overflow the UV). */
2186             SvNV_set(sv, Atof(SvPVX_const(sv)));
2187
2188             if (! numtype && ckWARN(WARN_NUMERIC))
2189                 not_a_number(sv);
2190
2191 #if defined(USE_LONG_DOUBLE)
2192             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2193                                   PTR2UV(sv), SvNVX(sv)));
2194 #else
2195             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2196                                   PTR2UV(sv), SvNVX(sv)));
2197 #endif
2198
2199 #ifdef NV_PRESERVES_UV
2200             (void)SvIOKp_on(sv);
2201             (void)SvNOK_on(sv);
2202             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2203                 SvIV_set(sv, I_V(SvNVX(sv)));
2204                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2205                     SvIOK_on(sv);
2206                 } else {
2207                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2208                 }
2209                 /* UV will not work better than IV */
2210             } else {
2211                 if (SvNVX(sv) > (NV)UV_MAX) {
2212                     SvIsUV_on(sv);
2213                     /* Integer is inaccurate. NOK, IOKp, is UV */
2214                     SvUV_set(sv, UV_MAX);
2215                 } else {
2216                     SvUV_set(sv, U_V(SvNVX(sv)));
2217                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2218                        NV preservse UV so can do correct comparison.  */
2219                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2220                         SvIOK_on(sv);
2221                     } else {
2222                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2223                     }
2224                 }
2225                 SvIsUV_on(sv);
2226             }
2227 #else /* NV_PRESERVES_UV */
2228             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2229                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2230                 /* The IV/UV slot will have been set from value returned by
2231                    grok_number above.  The NV slot has just been set using
2232                    Atof.  */
2233                 SvNOK_on(sv);
2234                 assert (SvIOKp(sv));
2235             } else {
2236                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2237                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2238                     /* Small enough to preserve all bits. */
2239                     (void)SvIOKp_on(sv);
2240                     SvNOK_on(sv);
2241                     SvIV_set(sv, I_V(SvNVX(sv)));
2242                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2243                         SvIOK_on(sv);
2244                     /* Assumption: first non-preserved integer is < IV_MAX,
2245                        this NV is in the preserved range, therefore: */
2246                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2247                           < (UV)IV_MAX)) {
2248                         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);
2249                     }
2250                 } else {
2251                     /* IN_UV NOT_INT
2252                          0      0       already failed to read UV.
2253                          0      1       already failed to read UV.
2254                          1      0       you won't get here in this case. IV/UV
2255                                         slot set, public IOK, Atof() unneeded.
2256                          1      1       already read UV.
2257                        so there's no point in sv_2iuv_non_preserve() attempting
2258                        to use atol, strtol, strtoul etc.  */
2259 #  ifdef DEBUGGING
2260                     sv_2iuv_non_preserve (sv, numtype);
2261 #  else
2262                     sv_2iuv_non_preserve (sv);
2263 #  endif
2264                 }
2265             }
2266 #endif /* NV_PRESERVES_UV */
2267         /* It might be more code efficient to go through the entire logic above
2268            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2269            gets complex and potentially buggy, so more programmer efficient
2270            to do it this way, by turning off the public flags:  */
2271         if (!numtype)
2272             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2273         }
2274     }
2275     else  {
2276         if (isGV_with_GP(sv))
2277             return glob_2number(MUTABLE_GV(sv));
2278
2279         if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2280             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2281                 report_uninit(sv);
2282         }
2283         if (SvTYPE(sv) < SVt_IV)
2284             /* Typically the caller expects that sv_any is not NULL now.  */
2285             sv_upgrade(sv, SVt_IV);
2286         /* Return 0 from the caller.  */
2287         return TRUE;
2288     }
2289     return FALSE;
2290 }
2291
2292 /*
2293 =for apidoc sv_2iv_flags
2294
2295 Return the integer value of an SV, doing any necessary string
2296 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2297 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2298
2299 =cut
2300 */
2301
2302 IV
2303 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2304 {
2305     dVAR;
2306     if (!sv)
2307         return 0;
2308     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2309         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2310            cache IVs just in case. In practice it seems that they never
2311            actually anywhere accessible by user Perl code, let alone get used
2312            in anything other than a string context.  */
2313         if (flags & SV_GMAGIC)
2314             mg_get(sv);
2315         if (SvIOKp(sv))
2316             return SvIVX(sv);
2317         if (SvNOKp(sv)) {
2318             return I_V(SvNVX(sv));
2319         }
2320         if (SvPOKp(sv) && SvLEN(sv)) {
2321             UV value;
2322             const int numtype
2323                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2324
2325             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2326                 == IS_NUMBER_IN_UV) {
2327                 /* It's definitely an integer */
2328                 if (numtype & IS_NUMBER_NEG) {
2329                     if (value < (UV)IV_MIN)
2330                         return -(IV)value;
2331                 } else {
2332                     if (value < (UV)IV_MAX)
2333                         return (IV)value;
2334                 }
2335             }
2336             if (!numtype) {
2337                 if (ckWARN(WARN_NUMERIC))
2338                     not_a_number(sv);
2339             }
2340             return I_V(Atof(SvPVX_const(sv)));
2341         }
2342         if (SvROK(sv)) {
2343             goto return_rok;
2344         }
2345         assert(SvTYPE(sv) >= SVt_PVMG);
2346         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2347     } else if (SvTHINKFIRST(sv)) {
2348         if (SvROK(sv)) {
2349         return_rok:
2350             if (SvAMAGIC(sv)) {
2351                 SV * const tmpstr=AMG_CALLun(sv,numer);
2352                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2353                     return SvIV(tmpstr);
2354                 }
2355             }
2356             return PTR2IV(SvRV(sv));
2357         }
2358         if (SvIsCOW(sv)) {
2359             sv_force_normal_flags(sv, 0);
2360         }
2361         if (SvREADONLY(sv) && !SvOK(sv)) {
2362             if (ckWARN(WARN_UNINITIALIZED))
2363                 report_uninit(sv);
2364             return 0;
2365         }
2366     }
2367     if (!SvIOKp(sv)) {
2368         if (S_sv_2iuv_common(aTHX_ sv))
2369             return 0;
2370     }
2371     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2372         PTR2UV(sv),SvIVX(sv)));
2373     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2374 }
2375
2376 /*
2377 =for apidoc sv_2uv_flags
2378
2379 Return the unsigned integer value of an SV, doing any necessary string
2380 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2381 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2382
2383 =cut
2384 */
2385
2386 UV
2387 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2388 {
2389     dVAR;
2390     if (!sv)
2391         return 0;
2392     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2393         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2394            cache IVs just in case.  */
2395         if (flags & SV_GMAGIC)
2396             mg_get(sv);
2397         if (SvIOKp(sv))
2398             return SvUVX(sv);
2399         if (SvNOKp(sv))
2400             return U_V(SvNVX(sv));
2401         if (SvPOKp(sv) && SvLEN(sv)) {
2402             UV value;
2403             const int numtype
2404                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2405
2406             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2407                 == IS_NUMBER_IN_UV) {
2408                 /* It's definitely an integer */
2409                 if (!(numtype & IS_NUMBER_NEG))
2410                     return value;
2411             }
2412             if (!numtype) {
2413                 if (ckWARN(WARN_NUMERIC))
2414                     not_a_number(sv);
2415             }
2416             return U_V(Atof(SvPVX_const(sv)));
2417         }
2418         if (SvROK(sv)) {
2419             goto return_rok;
2420         }
2421         assert(SvTYPE(sv) >= SVt_PVMG);
2422         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2423     } else if (SvTHINKFIRST(sv)) {
2424         if (SvROK(sv)) {
2425         return_rok:
2426             if (SvAMAGIC(sv)) {
2427                 SV *const tmpstr = AMG_CALLun(sv,numer);
2428                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2429                     return SvUV(tmpstr);
2430                 }
2431             }
2432             return PTR2UV(SvRV(sv));
2433         }
2434         if (SvIsCOW(sv)) {
2435             sv_force_normal_flags(sv, 0);
2436         }
2437         if (SvREADONLY(sv) && !SvOK(sv)) {
2438             if (ckWARN(WARN_UNINITIALIZED))
2439                 report_uninit(sv);
2440             return 0;
2441         }
2442     }
2443     if (!SvIOKp(sv)) {
2444         if (S_sv_2iuv_common(aTHX_ sv))
2445             return 0;
2446     }
2447
2448     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2449                           PTR2UV(sv),SvUVX(sv)));
2450     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2451 }
2452
2453 /*
2454 =for apidoc sv_2nv
2455
2456 Return the num value of an SV, doing any necessary string or integer
2457 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
2458 macros.
2459
2460 =cut
2461 */
2462
2463 NV
2464 Perl_sv_2nv(pTHX_ register SV *const sv)
2465 {
2466     dVAR;
2467     if (!sv)
2468         return 0.0;
2469     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2470         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2471            cache IVs just in case.  */
2472         mg_get(sv);
2473         if (SvNOKp(sv))
2474             return SvNVX(sv);
2475         if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
2476             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2477                 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
2478                 not_a_number(sv);
2479             return Atof(SvPVX_const(sv));
2480         }
2481         if (SvIOKp(sv)) {
2482             if (SvIsUV(sv))
2483                 return (NV)SvUVX(sv);
2484             else
2485                 return (NV)SvIVX(sv);
2486         }
2487         if (SvROK(sv)) {
2488             goto return_rok;
2489         }
2490         assert(SvTYPE(sv) >= SVt_PVMG);
2491         /* This falls through to the report_uninit near the end of the
2492            function. */
2493     } else if (SvTHINKFIRST(sv)) {
2494         if (SvROK(sv)) {
2495         return_rok:
2496             if (SvAMAGIC(sv)) {
2497                 SV *const tmpstr = AMG_CALLun(sv,numer);
2498                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2499                     return SvNV(tmpstr);
2500                 }
2501             }
2502             return PTR2NV(SvRV(sv));
2503         }
2504         if (SvIsCOW(sv)) {
2505             sv_force_normal_flags(sv, 0);
2506         }
2507         if (SvREADONLY(sv) && !SvOK(sv)) {
2508             if (ckWARN(WARN_UNINITIALIZED))
2509                 report_uninit(sv);
2510             return 0.0;
2511         }
2512     }
2513     if (SvTYPE(sv) < SVt_NV) {
2514         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2515         sv_upgrade(sv, SVt_NV);
2516 #ifdef USE_LONG_DOUBLE
2517         DEBUG_c({
2518             STORE_NUMERIC_LOCAL_SET_STANDARD();
2519             PerlIO_printf(Perl_debug_log,
2520                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2521                           PTR2UV(sv), SvNVX(sv));
2522             RESTORE_NUMERIC_LOCAL();
2523         });
2524 #else
2525         DEBUG_c({
2526             STORE_NUMERIC_LOCAL_SET_STANDARD();
2527             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2528                           PTR2UV(sv), SvNVX(sv));
2529             RESTORE_NUMERIC_LOCAL();
2530         });
2531 #endif
2532     }
2533     else if (SvTYPE(sv) < SVt_PVNV)
2534         sv_upgrade(sv, SVt_PVNV);
2535     if (SvNOKp(sv)) {
2536         return SvNVX(sv);
2537     }
2538     if (SvIOKp(sv)) {
2539         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2540 #ifdef NV_PRESERVES_UV
2541         if (SvIOK(sv))
2542             SvNOK_on(sv);
2543         else
2544             SvNOKp_on(sv);
2545 #else
2546         /* Only set the public NV OK flag if this NV preserves the IV  */
2547         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2548         if (SvIOK(sv) &&
2549             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2550                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2551             SvNOK_on(sv);
2552         else
2553             SvNOKp_on(sv);
2554 #endif
2555     }
2556     else if (SvPOKp(sv) && SvLEN(sv)) {
2557         UV value;
2558         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2559         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2560             not_a_number(sv);
2561 #ifdef NV_PRESERVES_UV
2562         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2563             == IS_NUMBER_IN_UV) {
2564             /* It's definitely an integer */
2565             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2566         } else
2567             SvNV_set(sv, Atof(SvPVX_const(sv)));
2568         if (numtype)
2569             SvNOK_on(sv);
2570         else
2571             SvNOKp_on(sv);
2572 #else
2573         SvNV_set(sv, Atof(SvPVX_const(sv)));
2574         /* Only set the public NV OK flag if this NV preserves the value in
2575            the PV at least as well as an IV/UV would.
2576            Not sure how to do this 100% reliably. */
2577         /* if that shift count is out of range then Configure's test is
2578            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2579            UV_BITS */
2580         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2581             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2582             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2583         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2584             /* Can't use strtol etc to convert this string, so don't try.
2585                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2586             SvNOK_on(sv);
2587         } else {
2588             /* value has been set.  It may not be precise.  */
2589             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2590                 /* 2s complement assumption for (UV)IV_MIN  */
2591                 SvNOK_on(sv); /* Integer is too negative.  */
2592             } else {
2593                 SvNOKp_on(sv);
2594                 SvIOKp_on(sv);
2595
2596                 if (numtype & IS_NUMBER_NEG) {
2597                     SvIV_set(sv, -(IV)value);
2598                 } else if (value <= (UV)IV_MAX) {
2599                     SvIV_set(sv, (IV)value);
2600                 } else {
2601                     SvUV_set(sv, value);
2602                     SvIsUV_on(sv);
2603                 }
2604
2605                 if (numtype & IS_NUMBER_NOT_INT) {
2606                     /* I believe that even if the original PV had decimals,
2607                        they are lost beyond the limit of the FP precision.
2608                        However, neither is canonical, so both only get p
2609                        flags.  NWC, 2000/11/25 */
2610                     /* Both already have p flags, so do nothing */
2611                 } else {
2612                     const NV nv = SvNVX(sv);
2613                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2614                         if (SvIVX(sv) == I_V(nv)) {
2615                             SvNOK_on(sv);
2616                         } else {
2617                             /* It had no "." so it must be integer.  */
2618                         }
2619                         SvIOK_on(sv);
2620                     } else {
2621                         /* between IV_MAX and NV(UV_MAX).
2622                            Could be slightly > UV_MAX */
2623
2624                         if (numtype & IS_NUMBER_NOT_INT) {
2625                             /* UV and NV both imprecise.  */
2626                         } else {
2627                             const UV nv_as_uv = U_V(nv);
2628
2629                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2630                                 SvNOK_on(sv);
2631                             }
2632                             SvIOK_on(sv);
2633                         }
2634                     }
2635                 }
2636             }
2637         }
2638         /* It might be more code efficient to go through the entire logic above
2639            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2640            gets complex and potentially buggy, so more programmer efficient
2641            to do it this way, by turning off the public flags:  */
2642         if (!numtype)
2643             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2644 #endif /* NV_PRESERVES_UV */
2645     }
2646     else  {
2647         if (isGV_with_GP(sv)) {
2648             glob_2number(MUTABLE_GV(sv));
2649             return 0.0;
2650         }
2651
2652         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2653             report_uninit(sv);
2654         assert (SvTYPE(sv) >= SVt_NV);
2655         /* Typically the caller expects that sv_any is not NULL now.  */
2656         /* XXX Ilya implies that this is a bug in callers that assume this
2657            and ideally should be fixed.  */
2658         return 0.0;
2659     }
2660 #if defined(USE_LONG_DOUBLE)
2661     DEBUG_c({
2662         STORE_NUMERIC_LOCAL_SET_STANDARD();
2663         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2664                       PTR2UV(sv), SvNVX(sv));
2665         RESTORE_NUMERIC_LOCAL();
2666     });
2667 #else
2668     DEBUG_c({
2669         STORE_NUMERIC_LOCAL_SET_STANDARD();
2670         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2671                       PTR2UV(sv), SvNVX(sv));
2672         RESTORE_NUMERIC_LOCAL();
2673     });
2674 #endif
2675     return SvNVX(sv);
2676 }
2677
2678 /*
2679 =for apidoc sv_2num
2680
2681 Return an SV with the numeric value of the source SV, doing any necessary
2682 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2683 access this function.
2684
2685 =cut
2686 */
2687
2688 SV *
2689 Perl_sv_2num(pTHX_ register SV *const sv)
2690 {
2691     PERL_ARGS_ASSERT_SV_2NUM;
2692
2693     if (!SvROK(sv))
2694         return sv;
2695     if (SvAMAGIC(sv)) {
2696         SV * const tmpsv = AMG_CALLun(sv,numer);
2697         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2698             return sv_2num(tmpsv);
2699     }
2700     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2701 }
2702
2703 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2704  * UV as a string towards the end of buf, and return pointers to start and
2705  * end of it.
2706  *
2707  * We assume that buf is at least TYPE_CHARS(UV) long.
2708  */
2709
2710 static char *
2711 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2712 {
2713     char *ptr = buf + TYPE_CHARS(UV);
2714     char * const ebuf = ptr;
2715     int sign;
2716
2717     PERL_ARGS_ASSERT_UIV_2BUF;
2718
2719     if (is_uv)
2720         sign = 0;
2721     else if (iv >= 0) {
2722         uv = iv;
2723         sign = 0;
2724     } else {
2725         uv = -iv;
2726         sign = 1;
2727     }
2728     do {
2729         *--ptr = '0' + (char)(uv % 10);
2730     } while (uv /= 10);
2731     if (sign)
2732         *--ptr = '-';
2733     *peob = ebuf;
2734     return ptr;
2735 }
2736
2737 /*
2738 =for apidoc sv_2pv_flags
2739
2740 Returns a pointer to the string value of an SV, and sets *lp to its length.
2741 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2742 if necessary.
2743 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2744 usually end up here too.
2745
2746 =cut
2747 */
2748
2749 char *
2750 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2751 {
2752     dVAR;
2753     register char *s;
2754
2755     if (!sv) {
2756         if (lp)
2757             *lp = 0;
2758         return (char *)"";
2759     }
2760     if (SvGMAGICAL(sv)) {
2761         if (flags & SV_GMAGIC)
2762             mg_get(sv);
2763         if (SvPOKp(sv)) {
2764             if (lp)
2765                 *lp = SvCUR(sv);
2766             if (flags & SV_MUTABLE_RETURN)
2767                 return SvPVX_mutable(sv);
2768             if (flags & SV_CONST_RETURN)
2769                 return (char *)SvPVX_const(sv);
2770             return SvPVX(sv);
2771         }
2772         if (SvIOKp(sv) || SvNOKp(sv)) {
2773             char tbuf[64];  /* Must fit sprintf/Gconvert of longest IV/NV */
2774             STRLEN len;
2775
2776             if (SvIOKp(sv)) {
2777                 len = SvIsUV(sv)
2778                     ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2779                     : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
2780             } else {
2781                 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2782                 len = strlen(tbuf);
2783             }
2784             assert(!SvROK(sv));
2785             {
2786                 dVAR;
2787
2788 #ifdef FIXNEGATIVEZERO
2789                 if (len == 2 && tbuf[0] == '-' && tbuf[1] == '0') {
2790                     tbuf[0] = '0';
2791                     tbuf[1] = 0;
2792                     len = 1;
2793                 }
2794 #endif
2795                 SvUPGRADE(sv, SVt_PV);
2796                 if (lp)
2797                     *lp = len;
2798                 s = SvGROW_mutable(sv, len + 1);
2799                 SvCUR_set(sv, len);
2800                 SvPOKp_on(sv);
2801                 return (char*)memcpy(s, tbuf, len + 1);
2802             }
2803         }
2804         if (SvROK(sv)) {
2805             goto return_rok;
2806         }
2807         assert(SvTYPE(sv) >= SVt_PVMG);
2808         /* This falls through to the report_uninit near the end of the
2809            function. */
2810     } else if (SvTHINKFIRST(sv)) {
2811         if (SvROK(sv)) {
2812         return_rok:
2813             if (SvAMAGIC(sv)) {
2814                 SV *const tmpstr = AMG_CALLun(sv,string);
2815                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2816                     /* Unwrap this:  */
2817                     /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2818                      */
2819
2820                     char *pv;
2821                     if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2822                         if (flags & SV_CONST_RETURN) {
2823                             pv = (char *) SvPVX_const(tmpstr);
2824                         } else {
2825                             pv = (flags & SV_MUTABLE_RETURN)
2826                                 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2827                         }
2828                         if (lp)
2829                             *lp = SvCUR(tmpstr);
2830                     } else {
2831                         pv = sv_2pv_flags(tmpstr, lp, flags);
2832                     }
2833                     if (SvUTF8(tmpstr))
2834                         SvUTF8_on(sv);
2835                     else
2836                         SvUTF8_off(sv);
2837                     return pv;
2838                 }
2839             }
2840             {
2841                 STRLEN len;
2842                 char *retval;
2843                 char *buffer;
2844                 SV *const referent = SvRV(sv);
2845
2846                 if (!referent) {
2847                     len = 7;
2848                     retval = buffer = savepvn("NULLREF", len);
2849                 } else if (SvTYPE(referent) == SVt_REGEXP) {
2850                     REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2851                     I32 seen_evals = 0;
2852
2853                     assert(re);
2854                         
2855                     /* If the regex is UTF-8 we want the containing scalar to
2856                        have an UTF-8 flag too */
2857                     if (RX_UTF8(re))
2858                         SvUTF8_on(sv);
2859                     else
2860                         SvUTF8_off(sv); 
2861
2862                     if ((seen_evals = RX_SEEN_EVALS(re)))
2863                         PL_reginterp_cnt += seen_evals;
2864
2865                     if (lp)
2866                         *lp = RX_WRAPLEN(re);
2867  
2868                     return RX_WRAPPED(re);
2869                 } else {
2870                     const char *const typestr = sv_reftype(referent, 0);
2871                     const STRLEN typelen = strlen(typestr);
2872                     UV addr = PTR2UV(referent);
2873                     const char *stashname = NULL;
2874                     STRLEN stashnamelen = 0; /* hush, gcc */
2875                     const char *buffer_end;
2876
2877                     if (SvOBJECT(referent)) {
2878                         const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2879
2880                         if (name) {
2881                             stashname = HEK_KEY(name);
2882                             stashnamelen = HEK_LEN(name);
2883
2884                             if (HEK_UTF8(name)) {
2885                                 SvUTF8_on(sv);
2886                             } else {
2887                                 SvUTF8_off(sv);
2888                             }
2889                         } else {
2890                             stashname = "__ANON__";
2891                             stashnamelen = 8;
2892                         }
2893                         len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2894                             + 2 * sizeof(UV) + 2 /* )\0 */;
2895                     } else {
2896                         len = typelen + 3 /* (0x */
2897                             + 2 * sizeof(UV) + 2 /* )\0 */;
2898                     }
2899
2900                     Newx(buffer, len, char);
2901                     buffer_end = retval = buffer + len;
2902
2903                     /* Working backwards  */
2904                     *--retval = '\0';
2905                     *--retval = ')';
2906                     do {
2907                         *--retval = PL_hexdigit[addr & 15];
2908                     } while (addr >>= 4);
2909                     *--retval = 'x';
2910                     *--retval = '0';
2911                     *--retval = '(';
2912
2913                     retval -= typelen;
2914                     memcpy(retval, typestr, typelen);
2915
2916                     if (stashname) {
2917                         *--retval = '=';
2918                         retval -= stashnamelen;
2919                         memcpy(retval, stashname, stashnamelen);
2920                     }
2921                     /* retval may not neccesarily have reached the start of the
2922                        buffer here.  */
2923                     assert (retval >= buffer);
2924
2925                     len = buffer_end - retval - 1; /* -1 for that \0  */
2926                 }
2927                 if (lp)
2928                     *lp = len;
2929                 SAVEFREEPV(buffer);
2930                 return retval;
2931             }
2932         }
2933         if (SvREADONLY(sv) && !SvOK(sv)) {
2934             if (lp)
2935                 *lp = 0;
2936             if (flags & SV_UNDEF_RETURNS_NULL)
2937                 return NULL;
2938             if (ckWARN(WARN_UNINITIALIZED))
2939                 report_uninit(sv);
2940             return (char *)"";
2941         }
2942     }
2943     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2944         /* I'm assuming that if both IV and NV are equally valid then
2945            converting the IV is going to be more efficient */
2946         const U32 isUIOK = SvIsUV(sv);
2947         char buf[TYPE_CHARS(UV)];
2948         char *ebuf, *ptr;
2949         STRLEN len;
2950
2951         if (SvTYPE(sv) < SVt_PVIV)
2952             sv_upgrade(sv, SVt_PVIV);
2953         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2954         len = ebuf - ptr;
2955         /* inlined from sv_setpvn */
2956         s = SvGROW_mutable(sv, len + 1);
2957         Move(ptr, s, len, char);
2958         s += len;
2959         *s = '\0';
2960     }
2961     else if (SvNOKp(sv)) {
2962         dSAVE_ERRNO;
2963         if (SvTYPE(sv) < SVt_PVNV)
2964             sv_upgrade(sv, SVt_PVNV);
2965         /* The +20 is pure guesswork.  Configure test needed. --jhi */
2966         s = SvGROW_mutable(sv, NV_DIG + 20);
2967         /* some Xenix systems wipe out errno here */
2968 #ifdef apollo
2969         if (SvNVX(sv) == 0.0)
2970             my_strlcpy(s, "0", SvLEN(sv));
2971         else
2972 #endif /*apollo*/
2973         {
2974             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2975         }
2976         RESTORE_ERRNO;
2977 #ifdef FIXNEGATIVEZERO
2978         if (*s == '-' && s[1] == '0' && !s[2]) {
2979             s[0] = '0';
2980             s[1] = 0;
2981         }
2982 #endif
2983         while (*s) s++;
2984 #ifdef hcx
2985         if (s[-1] == '.')
2986             *--s = '\0';
2987 #endif
2988     }
2989     else {
2990         if (isGV_with_GP(sv))
2991             return glob_2pv(MUTABLE_GV(sv), lp);
2992
2993         if (lp)
2994             *lp = 0;
2995         if (flags & SV_UNDEF_RETURNS_NULL)
2996             return NULL;
2997         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2998             report_uninit(sv);
2999         if (SvTYPE(sv) < SVt_PV)
3000             /* Typically the caller expects that sv_any is not NULL now.  */
3001             sv_upgrade(sv, SVt_PV);
3002         return (char *)"";
3003     }
3004     {
3005         const STRLEN len = s - SvPVX_const(sv);
3006         if (lp) 
3007             *lp = len;
3008         SvCUR_set(sv, len);
3009     }
3010     SvPOK_on(sv);
3011     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3012                           PTR2UV(sv),SvPVX_const(sv)));
3013     if (flags & SV_CONST_RETURN)
3014         return (char *)SvPVX_const(sv);
3015     if (flags & SV_MUTABLE_RETURN)
3016         return SvPVX_mutable(sv);
3017     return SvPVX(sv);
3018 }
3019
3020 /*
3021 =for apidoc sv_copypv
3022
3023 Copies a stringified representation of the source SV into the
3024 destination SV.  Automatically performs any necessary mg_get and
3025 coercion of numeric values into strings.  Guaranteed to preserve
3026 UTF8 flag even from overloaded objects.  Similar in nature to
3027 sv_2pv[_flags] but operates directly on an SV instead of just the
3028 string.  Mostly uses sv_2pv_flags to do its work, except when that
3029 would lose the UTF-8'ness of the PV.
3030
3031 =cut
3032 */
3033
3034 void
3035 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
3036 {
3037     STRLEN len;
3038     const char * const s = SvPV_const(ssv,len);
3039
3040     PERL_ARGS_ASSERT_SV_COPYPV;
3041
3042     sv_setpvn(dsv,s,len);
3043     if (SvUTF8(ssv))
3044         SvUTF8_on(dsv);
3045     else
3046         SvUTF8_off(dsv);
3047 }
3048
3049 /*
3050 =for apidoc sv_2pvbyte
3051
3052 Return a pointer to the byte-encoded representation of the SV, and set *lp
3053 to its length.  May cause the SV to be downgraded from UTF-8 as a
3054 side-effect.
3055
3056 Usually accessed via the C<SvPVbyte> macro.
3057
3058 =cut
3059 */
3060
3061 char *
3062 Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
3063 {
3064     PERL_ARGS_ASSERT_SV_2PVBYTE;
3065
3066     sv_utf8_downgrade(sv,0);
3067     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3068 }
3069
3070 /*
3071 =for apidoc sv_2pvutf8
3072
3073 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3074 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3075
3076 Usually accessed via the C<SvPVutf8> macro.
3077
3078 =cut
3079 */
3080
3081 char *
3082 Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
3083 {
3084     PERL_ARGS_ASSERT_SV_2PVUTF8;
3085
3086     sv_utf8_upgrade(sv);
3087     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3088 }
3089
3090
3091 /*
3092 =for apidoc sv_2bool
3093
3094 This function is only called on magical items, and is only used by
3095 sv_true() or its macro equivalent.
3096
3097 =cut
3098 */
3099
3100 bool
3101 Perl_sv_2bool(pTHX_ register SV *const sv)
3102 {
3103     dVAR;
3104
3105     PERL_ARGS_ASSERT_SV_2BOOL;
3106
3107     SvGETMAGIC(sv);
3108
3109     if (!SvOK(sv))
3110         return 0;
3111     if (SvROK(sv)) {
3112         if (SvAMAGIC(sv)) {
3113             SV * const tmpsv = AMG_CALLun(sv,bool_);
3114             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3115                 return (bool)SvTRUE(tmpsv);
3116         }
3117         return SvRV(sv) != 0;
3118     }
3119     if (SvPOKp(sv)) {
3120         register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3121         if (Xpvtmp &&
3122                 (*sv->sv_u.svu_pv > '0' ||
3123                 Xpvtmp->xpv_cur > 1 ||
3124                 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
3125             return 1;
3126         else
3127             return 0;
3128     }
3129     else {
3130         if (SvIOKp(sv))
3131             return SvIVX(sv) != 0;
3132         else {
3133             if (SvNOKp(sv))
3134                 return SvNVX(sv) != 0.0;
3135             else {
3136                 if (isGV_with_GP(sv))
3137                     return TRUE;
3138                 else
3139                     return FALSE;
3140             }
3141         }
3142     }
3143 }
3144
3145 /*
3146 =for apidoc sv_utf8_upgrade
3147
3148 Converts the PV of an SV to its UTF-8-encoded form.
3149 Forces the SV to string form if it is not already.
3150 Will C<mg_get> on C<sv> if appropriate.
3151 Always sets the SvUTF8 flag to avoid future validity checks even
3152 if the whole string is the same in UTF-8 as not.
3153 Returns the number of bytes in the converted string
3154
3155 This is not as a general purpose byte encoding to Unicode interface:
3156 use the Encode extension for that.
3157
3158 =for apidoc sv_utf8_upgrade_nomg
3159
3160 Like sv_utf8_upgrade, but doesn't do magic on C<sv>
3161
3162 =for apidoc sv_utf8_upgrade_flags
3163
3164 Converts the PV of an SV to its UTF-8-encoded form.
3165 Forces the SV to string form if it is not already.
3166 Always sets the SvUTF8 flag to avoid future validity checks even
3167 if all the bytes are invariant in UTF-8. If C<flags> has C<SV_GMAGIC> bit set,
3168 will C<mg_get> on C<sv> if appropriate, else not.
3169 Returns the number of bytes in the converted string
3170 C<sv_utf8_upgrade> and
3171 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3172
3173 This is not as a general purpose byte encoding to Unicode interface:
3174 use the Encode extension for that.
3175
3176 =cut
3177
3178 The grow version is currently not externally documented.  It adds a parameter,
3179 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3180 have free after it upon return.  This allows the caller to reserve extra space
3181 that it intends to fill, to avoid extra grows.
3182
3183 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3184 which can be used to tell this function to not first check to see if there are
3185 any characters that are different in UTF-8 (variant characters) which would
3186 force it to allocate a new string to sv, but to assume there are.  Typically
3187 this flag is used by a routine that has already parsed the string to find that
3188 there are such characters, and passes this information on so that the work
3189 doesn't have to be repeated.
3190
3191 (One might think that the calling routine could pass in the position of the
3192 first such variant, so it wouldn't have to be found again.  But that is not the
3193 case, because typically when the caller is likely to use this flag, it won't be
3194 calling this routine unless it finds something that won't fit into a byte.
3195 Otherwise it tries to not upgrade and just use bytes.  But some things that
3196 do fit into a byte are variants in utf8, and the caller may not have been
3197 keeping track of these.)
3198
3199 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3200 isn't guaranteed due to having other routines do the work in some input cases,
3201 or if the input is already flagged as being in utf8.
3202
3203 The speed of this could perhaps be improved for many cases if someone wanted to
3204 write a fast function that counts the number of variant characters in a string,
3205 especially if it could return the position of the first one.
3206
3207 */
3208
3209 STRLEN
3210 Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
3211 {
3212     dVAR;
3213
3214     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3215
3216     if (sv == &PL_sv_undef)
3217         return 0;
3218     if (!SvPOK(sv)) {
3219         STRLEN len = 0;
3220         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3221             (void) sv_2pv_flags(sv,&len, flags);
3222             if (SvUTF8(sv)) {
3223                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3224                 return len;
3225             }
3226         } else {
3227             (void) SvPV_force(sv,len);
3228         }
3229     }
3230
3231     if (SvUTF8(sv)) {
3232         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3233         return SvCUR(sv);
3234     }
3235
3236     if (SvIsCOW(sv)) {
3237         sv_force_normal_flags(sv, 0);
3238     }
3239
3240     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3241         sv_recode_to_utf8(sv, PL_encoding);
3242         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3243         return SvCUR(sv);
3244     }
3245
3246     if (SvCUR(sv) > 0) { /* Assume Latin-1/EBCDIC */
3247         /* This function could be much more efficient if we
3248          * had a FLAG in SVs to signal if there are any variant
3249          * chars in the PV.  Given that there isn't such a flag
3250          * make the loop as fast as possible (although there are certainly ways
3251          * to speed this up, eg. through vectorization) */
3252         U8 * s = (U8 *) SvPVX_const(sv);
3253         U8 * e = (U8 *) SvEND(sv);
3254         U8 *t = s;
3255         STRLEN two_byte_count = 0;
3256         
3257         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3258
3259         /* See if really will need to convert to utf8.  We mustn't rely on our
3260          * incoming SV being well formed and having a trailing '\0', as certain
3261          * code in pp_formline can send us partially built SVs. */
3262
3263         while (t < e) {
3264             const U8 ch = *t++;
3265             if (NATIVE_IS_INVARIANT(ch)) continue;
3266
3267             t--;    /* t already incremented; re-point to first variant */
3268             two_byte_count = 1;
3269             goto must_be_utf8;
3270         }
3271
3272         /* utf8 conversion not needed because all are invariants.  Mark as
3273          * UTF-8 even if no variant - saves scanning loop */
3274         SvUTF8_on(sv);
3275         return SvCUR(sv);
3276
3277 must_be_utf8:
3278
3279         /* Here, the string should be converted to utf8, either because of an
3280          * input flag (two_byte_count = 0), or because a character that
3281          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3282          * the beginning of the string (if we didn't examine anything), or to
3283          * the first variant.  In either case, everything from s to t - 1 will
3284          * occupy only 1 byte each on output.
3285          *
3286          * There are two main ways to convert.  One is to create a new string
3287          * and go through the input starting from the beginning, appending each
3288          * converted value onto the new string as we go along.  It's probably
3289          * best to allocate enough space in the string for the worst possible
3290          * case rather than possibly running out of space and having to
3291          * reallocate and then copy what we've done so far.  Since everything
3292          * from s to t - 1 is invariant, the destination can be initialized
3293          * with these using a fast memory copy
3294          *
3295          * The other way is to figure out exactly how big the string should be
3296          * by parsing the entire input.  Then you don't have to make it big
3297          * enough to handle the worst possible case, and more importantly, if
3298          * the string you already have is large enough, you don't have to
3299          * allocate a new string, you can copy the last character in the input
3300          * string to the final position(s) that will be occupied by the
3301          * converted string and go backwards, stopping at t, since everything
3302          * before that is invariant.
3303          *
3304          * There are advantages and disadvantages to each method.
3305          *
3306          * In the first method, we can allocate a new string, do the memory
3307          * copy from the s to t - 1, and then proceed through the rest of the
3308          * string byte-by-byte.
3309          *
3310          * In the second method, we proceed through the rest of the input
3311          * string just calculating how big the converted string will be.  Then
3312          * there are two cases:
3313          *  1)  if the string has enough extra space to handle the converted
3314          *      value.  We go backwards through the string, converting until we
3315          *      get to the position we are at now, and then stop.  If this
3316          *      position is far enough along in the string, this method is
3317          *      faster than the other method.  If the memory copy were the same
3318          *      speed as the byte-by-byte loop, that position would be about
3319          *      half-way, as at the half-way mark, parsing to the end and back
3320          *      is one complete string's parse, the same amount as starting
3321          *      over and going all the way through.  Actually, it would be
3322          *      somewhat less than half-way, as it's faster to just count bytes
3323          *      than to also copy, and we don't have the overhead of allocating
3324          *      a new string, changing the scalar to use it, and freeing the
3325          *      existing one.  But if the memory copy is fast, the break-even
3326          *      point is somewhere after half way.  The counting loop could be
3327          *      sped up by vectorization, etc, to move the break-even point
3328          *      further towards the beginning.
3329          *  2)  if the string doesn't have enough space to handle the converted
3330          *      value.  A new string will have to be allocated, and one might
3331          *      as well, given that, start from the beginning doing the first
3332          *      method.  We've spent extra time parsing the string and in
3333          *      exchange all we've gotten is that we know precisely how big to
3334          *      make the new one.  Perl is more optimized for time than space,
3335          *      so this case is a loser.
3336          * So what I've decided to do is not use the 2nd method unless it is
3337          * guaranteed that a new string won't have to be allocated, assuming
3338          * the worst case.  I also decided not to put any more conditions on it
3339          * than this, for now.  It seems likely that, since the worst case is
3340          * twice as big as the unknown portion of the string (plus 1), we won't
3341          * be guaranteed enough space, causing us to go to the first method,
3342          * unless the string is short, or the first variant character is near
3343          * the end of it.  In either of these cases, it seems best to use the
3344          * 2nd method.  The only circumstance I can think of where this would
3345          * be really slower is if the string had once had much more data in it
3346          * than it does now, but there is still a substantial amount in it  */
3347
3348         {
3349             STRLEN invariant_head = t - s;
3350             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3351             if (SvLEN(sv) < size) {
3352
3353                 /* Here, have decided to allocate a new string */
3354
3355                 U8 *dst;
3356                 U8 *d;
3357
3358                 Newx(dst, size, U8);
3359
3360                 /* If no known invariants at the beginning of the input string,
3361                  * set so starts from there.  Otherwise, can use memory copy to
3362                  * get up to where we are now, and then start from here */
3363
3364                 if (invariant_head <= 0) {
3365                     d = dst;
3366                 } else {
3367                     Copy(s, dst, invariant_head, char);
3368                     d = dst + invariant_head;
3369                 }
3370
3371                 while (t < e) {
3372                     const UV uv = NATIVE8_TO_UNI(*t++);
3373                     if (UNI_IS_INVARIANT(uv))
3374                         *d++ = (U8)UNI_TO_NATIVE(uv);
3375                     else {
3376                         *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3377                         *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3378                     }
3379                 }
3380                 *d = '\0';
3381                 SvPV_free(sv); /* No longer using pre-existing string */
3382                 SvPV_set(sv, (char*)dst);
3383                 SvCUR_set(sv, d - dst);
3384                 SvLEN_set(sv, size);
3385             } else {
3386
3387                 /* Here, have decided to get the exact size of the string.
3388                  * Currently this happens only when we know that there is
3389                  * guaranteed enough space to fit the converted string, so
3390                  * don't have to worry about growing.  If two_byte_count is 0,
3391                  * then t points to the first byte of the string which hasn't
3392                  * been examined yet.  Otherwise two_byte_count is 1, and t
3393                  * points to the first byte in the string that will expand to
3394                  * two.  Depending on this, start examining at t or 1 after t.
3395                  * */
3396
3397                 U8 *d = t + two_byte_count;
3398
3399
3400                 /* Count up the remaining bytes that expand to two */
3401
3402                 while (d < e) {
3403                     const U8 chr = *d++;
3404                     if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3405                 }
3406
3407                 /* The string will expand by just the number of bytes that
3408                  * occupy two positions.  But we are one afterwards because of
3409                  * the increment just above.  This is the place to put the
3410                  * trailing NUL, and to set the length before we decrement */
3411
3412                 d += two_byte_count;
3413                 SvCUR_set(sv, d - s);
3414                 *d-- = '\0';
3415
3416
3417                 /* Having decremented d, it points to the position to put the
3418                  * very last byte of the expanded string.  Go backwards through
3419                  * the string, copying and expanding as we go, stopping when we
3420                  * get to the part that is invariant the rest of the way down */
3421
3422                 e--;
3423                 while (e >= t) {
3424                     const U8 ch = NATIVE8_TO_UNI(*e--);
3425                     if (UNI_IS_INVARIANT(ch)) {
3426                         *d-- = UNI_TO_NATIVE(ch);
3427                     } else {
3428                         *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3429                         *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3430                     }
3431                 }
3432             }
3433         }
3434     }
3435
3436     /* Mark as UTF-8 even if no variant - saves scanning loop */
3437     SvUTF8_on(sv);
3438     return SvCUR(sv);
3439 }
3440
3441 /*
3442 =for apidoc sv_utf8_downgrade
3443
3444 Attempts to convert the PV of an SV from characters to bytes.
3445 If the PV contains a character that cannot fit
3446 in a byte, this conversion will fail;
3447 in this case, either returns false or, if C<fail_ok> is not
3448 true, croaks.
3449
3450 This is not as a general purpose Unicode to byte encoding interface:
3451 use the Encode extension for that.
3452
3453 =cut
3454 */
3455
3456 bool
3457 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3458 {
3459     dVAR;
3460
3461     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3462
3463     if (SvPOKp(sv) && SvUTF8(sv)) {
3464         if (SvCUR(sv)) {
3465             U8 *s;
3466             STRLEN len;
3467
3468             if (SvIsCOW(sv)) {
3469                 sv_force_normal_flags(sv, 0);
3470             }
3471             s = (U8 *) SvPV(sv, len);
3472             if (!utf8_to_bytes(s, &len)) {
3473                 if (fail_ok)
3474                     return FALSE;
3475                 else {
3476                     if (PL_op)
3477                         Perl_croak(aTHX_ "Wide character in %s",
3478                                    OP_DESC(PL_op));
3479                     else
3480                         Perl_croak(aTHX_ "Wide character");
3481                 }
3482             }
3483             SvCUR_set(sv, len);
3484         }
3485     }
3486     SvUTF8_off(sv);
3487     return TRUE;
3488 }
3489
3490 /*
3491 =for apidoc sv_utf8_encode
3492
3493 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3494 flag off so that it looks like octets again.
3495
3496 =cut
3497 */
3498
3499 void
3500 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3501 {
3502     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3503
3504     if (SvIsCOW(sv)) {
3505         sv_force_normal_flags(sv, 0);
3506     }
3507     if (SvREADONLY(sv)) {
3508         Perl_croak(aTHX_ "%s", PL_no_modify);
3509     }
3510     (void) sv_utf8_upgrade(sv);
3511     SvUTF8_off(sv);
3512 }
3513
3514 /*
3515 =for apidoc sv_utf8_decode
3516
3517 If the PV of the SV is an octet sequence in UTF-8
3518 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3519 so that it looks like a character. If the PV contains only single-byte
3520 characters, the C<SvUTF8> flag stays being off.
3521 Scans PV for validity and returns false if the PV is invalid UTF-8.
3522
3523 =cut
3524 */
3525
3526 bool
3527 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3528 {
3529     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3530
3531     if (SvPOKp(sv)) {
3532         const U8 *c;
3533         const U8 *e;
3534
3535         /* The octets may have got themselves encoded - get them back as
3536          * bytes
3537          */
3538         if (!sv_utf8_downgrade(sv, TRUE))
3539             return FALSE;
3540
3541         /* it is actually just a matter of turning the utf8 flag on, but
3542          * we want to make sure everything inside is valid utf8 first.
3543          */
3544         c = (const U8 *) SvPVX_const(sv);
3545         if (!is_utf8_string(c, SvCUR(sv)+1))
3546             return FALSE;
3547         e = (const U8 *) SvEND(sv);
3548         while (c < e) {
3549             const U8 ch = *c++;
3550             if (!UTF8_IS_INVARIANT(ch)) {
3551                 SvUTF8_on(sv);
3552                 break;
3553             }
3554         }
3555     }
3556     return TRUE;
3557 }
3558
3559 /*
3560 =for apidoc sv_setsv
3561
3562 Copies the contents of the source SV C<ssv> into the destination SV
3563 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3564 function if the source SV needs to be reused. Does not handle 'set' magic.
3565 Loosely speaking, it performs a copy-by-value, obliterating any previous
3566 content of the destination.
3567
3568 You probably want to use one of the assortment of wrappers, such as
3569 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3570 C<SvSetMagicSV_nosteal>.
3571
3572 =for apidoc sv_setsv_flags
3573
3574 Copies the contents of the source SV C<ssv> into the destination SV
3575 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3576 function if the source SV needs to be reused. Does not handle 'set' magic.
3577 Loosely speaking, it performs a copy-by-value, obliterating any previous
3578 content of the destination.
3579 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3580 C<ssv> if appropriate, else not. If the C<flags> parameter has the
3581 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3582 and C<sv_setsv_nomg> are implemented in terms of this function.
3583
3584 You probably want to use one of the assortment of wrappers, such as
3585 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3586 C<SvSetMagicSV_nosteal>.
3587
3588 This is the primary function for copying scalars, and most other
3589 copy-ish functions and macros use this underneath.
3590
3591 =cut
3592 */
3593
3594 static void
3595 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3596 {
3597     I32 mro_changes = 0; /* 1 = method, 2 = isa */
3598
3599     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3600
3601     if (dtype != SVt_PVGV) {
3602         const char * const name = GvNAME(sstr);
3603         const STRLEN len = GvNAMELEN(sstr);
3604         {
3605             if (dtype >= SVt_PV) {
3606                 SvPV_free(dstr);
3607                 SvPV_set(dstr, 0);
3608                 SvLEN_set(dstr, 0);
3609                 SvCUR_set(dstr, 0);
3610             }
3611             SvUPGRADE(dstr, SVt_PVGV);
3612             (void)SvOK_off(dstr);
3613             /* FIXME - why are we doing this, then turning it off and on again
3614                below?  */
3615             isGV_with_GP_on(dstr);
3616         }
3617         GvSTASH(dstr) = GvSTASH(sstr);
3618         if (GvSTASH(dstr))
3619             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3620         gv_name_set(MUTABLE_GV(dstr), name, len, GV_ADD);
3621         SvFAKE_on(dstr);        /* can coerce to non-glob */
3622     }
3623
3624     if(GvGP(MUTABLE_GV(sstr))) {
3625         /* If source has method cache entry, clear it */
3626         if(GvCVGEN(sstr)) {
3627             SvREFCNT_dec(GvCV(sstr));
3628             GvCV(sstr) = NULL;
3629             GvCVGEN(sstr) = 0;
3630         }
3631         /* If source has a real method, then a method is
3632            going to change */
3633         else if(GvCV((const GV *)sstr)) {
3634             mro_changes = 1;
3635         }
3636     }
3637
3638     /* If dest already had a real method, that's a change as well */
3639     if(!mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)) {
3640         mro_changes = 1;
3641     }
3642
3643     if(strEQ(GvNAME((const GV *)dstr),"ISA"))
3644         mro_changes = 2;
3645
3646     gp_free(MUTABLE_GV(dstr));
3647     isGV_with_GP_off(dstr);
3648     (void)SvOK_off(dstr);
3649     isGV_with_GP_on(dstr);
3650     GvINTRO_off(dstr);          /* one-shot flag */
3651     GvGP(dstr) = gp_ref(GvGP(sstr));
3652     if (SvTAINTED(sstr))
3653         SvTAINT(dstr);
3654     if (GvIMPORTED(dstr) != GVf_IMPORTED
3655         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3656         {
3657             GvIMPORTED_on(dstr);
3658         }
3659     GvMULTI_on(dstr);
3660     if(mro_changes == 2) mro_isa_changed_in(GvSTASH(dstr));
3661     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3662     return;
3663 }
3664
3665 static void
3666 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3667 {
3668     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3669     SV *dref = NULL;
3670     const int intro = GvINTRO(dstr);
3671     SV **location;
3672     U8 import_flag = 0;
3673     const U32 stype = SvTYPE(sref);
3674
3675     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3676
3677     if (intro) {
3678         GvINTRO_off(dstr);      /* one-shot flag */
3679         GvLINE(dstr) = CopLINE(PL_curcop);
3680         GvEGV(dstr) = MUTABLE_GV(dstr);
3681     }
3682     GvMULTI_on(dstr);
3683     switch (stype) {
3684     case SVt_PVCV:
3685         location = (SV **) &GvCV(dstr);
3686         import_flag = GVf_IMPORTED_CV;
3687         goto common;
3688     case SVt_PVHV:
3689         location = (SV **) &GvHV(dstr);
3690         import_flag = GVf_IMPORTED_HV;
3691         goto common;
3692     case SVt_PVAV:
3693         location = (SV **) &GvAV(dstr);
3694         import_flag = GVf_IMPORTED_AV;
3695         goto common;
3696     case SVt_PVIO:
3697         location = (SV **) &GvIOp(dstr);
3698         goto common;
3699     case SVt_PVFM:
3700         location = (SV **) &GvFORM(dstr);
3701     default:
3702         location = &GvSV(dstr);
3703         import_flag = GVf_IMPORTED_SV;
3704     common:
3705         if (intro) {
3706             if (stype == SVt_PVCV) {
3707                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3708                 if (GvCVGEN(dstr)) {
3709                     SvREFCNT_dec(GvCV(dstr));
3710                     GvCV(dstr) = NULL;
3711                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3712                 }
3713             }
3714             SAVEGENERICSV(*location);
3715         }
3716         else
3717             dref = *location;
3718         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3719             CV* const cv = MUTABLE_CV(*location);
3720             if (cv) {
3721                 if (!GvCVGEN((const GV *)dstr) &&
3722                     (CvROOT(cv) || CvXSUB(cv)))
3723                     {
3724                         /* Redefining a sub - warning is mandatory if
3725                            it was a const and its value changed. */
3726                         if (CvCONST(cv) && CvCONST((const CV *)sref)
3727                             && cv_const_sv(cv)
3728                             == cv_const_sv((const CV *)sref)) {
3729                             NOOP;
3730                             /* They are 2 constant subroutines generated from
3731                                the same constant. This probably means that
3732                                they are really the "same" proxy subroutine
3733                                instantiated in 2 places. Most likely this is
3734                                when a constant is exported twice.  Don't warn.
3735                             */
3736                         }
3737                         else if (ckWARN(WARN_REDEFINE)
3738                                  || (CvCONST(cv)
3739                                      && (!CvCONST((const CV *)sref)
3740                                          || sv_cmp(cv_const_sv(cv),
3741                                                    cv_const_sv((const CV *)
3742                                                                sref))))) {
3743                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
3744                                         (const char *)
3745                                         (CvCONST(cv)
3746                                          ? "Constant subroutine %s::%s redefined"
3747                                          : "Subroutine %s::%s redefined"),
3748                                         HvNAME_get(GvSTASH((const GV *)dstr)),
3749                                         GvENAME(MUTABLE_GV(dstr)));
3750                         }
3751                     }
3752                 if (!intro)
3753                     cv_ckproto_len(cv, (const GV *)dstr,
3754                                    SvPOK(sref) ? SvPVX_const(sref) : NULL,
3755                                    SvPOK(sref) ? SvCUR(sref) : 0);
3756             }
3757             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3758             GvASSUMECV_on(dstr);
3759             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3760         }
3761         *location = sref;
3762         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3763             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3764             GvFLAGS(dstr) |= import_flag;
3765         }
3766         break;
3767     }
3768     SvREFCNT_dec(dref);
3769     if (SvTAINTED(sstr))
3770         SvTAINT(dstr);
3771     return;
3772 }
3773
3774 void
3775 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3776 {
3777     dVAR;
3778     register U32 sflags;
3779     register int dtype;
3780     register svtype stype;
3781
3782     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3783
3784     if (sstr == dstr)
3785         return;
3786
3787     if (SvIS_FREED(dstr)) {
3788         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3789                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3790     }
3791     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3792     if (!sstr)
3793         sstr = &PL_sv_undef;
3794     if (SvIS_FREED(sstr)) {
3795         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3796                    (void*)sstr, (void*)dstr);
3797     }
3798     stype = SvTYPE(sstr);
3799     dtype = SvTYPE(dstr);
3800
3801     (void)SvAMAGIC_off(dstr);
3802     if ( SvVOK(dstr) )
3803     {
3804         /* need to nuke the magic */
3805         mg_free(dstr);
3806     }
3807
3808     /* There's a lot of redundancy below but we're going for speed here */
3809
3810     switch (stype) {
3811     case SVt_NULL:
3812       undef_sstr:
3813         if (dtype != SVt_PVGV) {
3814             (void)SvOK_off(dstr);
3815             return;
3816         }
3817         break;
3818     case SVt_IV:
3819         if (SvIOK(sstr)) {
3820             switch (dtype) {
3821             case SVt_NULL:
3822                 sv_upgrade(dstr, SVt_IV);
3823                 break;
3824             case SVt_NV:
3825             case SVt_PV:
3826                 sv_upgrade(dstr, SVt_PVIV);
3827                 break;
3828             case SVt_PVGV:
3829                 goto end_of_first_switch;
3830             }
3831             (void)SvIOK_only(dstr);
3832             SvIV_set(dstr,  SvIVX(sstr));
3833             if (SvIsUV(sstr))
3834                 SvIsUV_on(dstr);
3835             /* SvTAINTED can only be true if the SV has taint magic, which in
3836                turn means that the SV type is PVMG (or greater). This is the
3837                case statement for SVt_IV, so this cannot be true (whatever gcov
3838                may say).  */
3839             assert(!SvTAINTED(sstr));
3840             return;
3841         }
3842         if (!SvROK(sstr))
3843             goto undef_sstr;
3844         if (dtype < SVt_PV && dtype != SVt_IV)
3845             sv_upgrade(dstr, SVt_IV);
3846         break;
3847
3848     case SVt_NV:
3849         if (SvNOK(sstr)) {
3850             switch (dtype) {
3851             case SVt_NULL:
3852             case SVt_IV:
3853                 sv_upgrade(dstr, SVt_NV);
3854                 break;
3855             case SVt_PV:
3856             case SVt_PVIV:
3857                 sv_upgrade(dstr, SVt_PVNV);
3858                 break;
3859             case SVt_PVGV:
3860                 goto end_of_first_switch;
3861             }
3862             SvNV_set(dstr, SvNVX(sstr));
3863             (void)SvNOK_only(dstr);
3864             /* SvTAINTED can only be true if the SV has taint magic, which in
3865                turn means that the SV type is PVMG (or greater). This is the
3866                case statement for SVt_NV, so this cannot be true (whatever gcov
3867                may say).  */
3868             assert(!SvTAINTED(sstr));
3869             return;
3870         }
3871         goto undef_sstr;
3872
3873     case SVt_PVFM:
3874 #ifdef PERL_OLD_COPY_ON_WRITE
3875         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
3876             if (dtype < SVt_PVIV)
3877                 sv_upgrade(dstr, SVt_PVIV);
3878             break;
3879         }
3880         /* Fall through */
3881 #endif
3882     case SVt_REGEXP:
3883     case SVt_PV:
3884         if (dtype < SVt_PV)
3885             sv_upgrade(dstr, SVt_PV);
3886         break;
3887     case SVt_PVIV:
3888         if (dtype < SVt_PVIV)
3889             sv_upgrade(dstr, SVt_PVIV);
3890         break;
3891     case SVt_PVNV:
3892         if (dtype < SVt_PVNV)
3893             sv_upgrade(dstr, SVt_PVNV);
3894         break;
3895     default:
3896         {
3897         const char * const type = sv_reftype(sstr,0);
3898         if (PL_op)
3899             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_NAME(PL_op));
3900         else
3901             Perl_croak(aTHX_ "Bizarre copy of %s", type);
3902         }
3903         break;
3904
3905         /* case SVt_BIND: */
3906     case SVt_PVLV:
3907     case SVt_PVGV:
3908         if (isGV_with_GP(sstr) && dtype <= SVt_PVGV) {
3909             glob_assign_glob(dstr, sstr, dtype);
3910             return;
3911         }
3912         /* SvVALID means that this PVGV is playing at being an FBM.  */
3913         /*FALLTHROUGH*/
3914
3915     case SVt_PVMG:
3916         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
3917             mg_get(sstr);
3918             if (SvTYPE(sstr) != stype) {
3919                 stype = SvTYPE(sstr);
3920                 if (isGV_with_GP(sstr) && stype == SVt_PVGV && dtype <= SVt_PVGV) {
3921                     glob_assign_glob(dstr, sstr, dtype);
3922                     return;
3923                 }
3924             }
3925         }
3926         if (stype == SVt_PVLV)
3927             SvUPGRADE(dstr, SVt_PVNV);
3928         else
3929             SvUPGRADE(dstr, (svtype)stype);
3930     }
3931  end_of_first_switch:
3932
3933     /* dstr may have been upgraded.  */
3934     dtype = SvTYPE(dstr);
3935     sflags = SvFLAGS(sstr);
3936
3937     if (dtype == SVt_PVCV || dtype == SVt_PVFM) {
3938         /* Assigning to a subroutine sets the prototype.  */
3939         if (SvOK(sstr)) {
3940             STRLEN len;
3941             const char *const ptr = SvPV_const(sstr, len);
3942
3943             SvGROW(dstr, len + 1);
3944             Copy(ptr, SvPVX(dstr), len + 1, char);
3945             SvCUR_set(dstr, len);
3946             SvPOK_only(dstr);
3947             SvFLAGS(dstr) |= sflags & SVf_UTF8;
3948         } else {
3949             SvOK_off(dstr);
3950         }
3951     } else if (dtype == SVt_PVAV || dtype == SVt_PVHV) {
3952         const char * const type = sv_reftype(dstr,0);
3953         if (PL_op)
3954             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_NAME(PL_op));
3955         else
3956             Perl_croak(aTHX_ "Cannot copy to %s", type);
3957     } else if (sflags & SVf_ROK) {
3958         if (isGV_with_GP(dstr) && dtype == SVt_PVGV
3959             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
3960             sstr = SvRV(sstr);
3961             if (sstr == dstr) {
3962                 if (GvIMPORTED(dstr) != GVf_IMPORTED
3963                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3964                 {
3965                     GvIMPORTED_on(dstr);
3966                 }
3967                 GvMULTI_on(dstr);
3968                 return;
3969             }
3970             glob_assign_glob(dstr, sstr, dtype);
3971             return;
3972         }
3973
3974         if (dtype >= SVt_PV) {
3975             if (dtype == SVt_PVGV && isGV_with_GP(dstr)) {
3976                 glob_assign_ref(dstr, sstr);
3977                 return;
3978             }
3979             if (SvPVX_const(dstr)) {
3980                 SvPV_free(dstr);
3981                 SvLEN_set(dstr, 0);
3982                 SvCUR_set(dstr, 0);
3983             }
3984         }
3985         (void)SvOK_off(dstr);
3986         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
3987         SvFLAGS(dstr) |= sflags & SVf_ROK;
3988         assert(!(sflags & SVp_NOK));
3989         assert(!(sflags & SVp_IOK));
3990         assert(!(sflags & SVf_NOK));
3991         assert(!(sflags & SVf_IOK));
3992     }
3993     else if (dtype == SVt_PVGV && isGV_with_GP(dstr)) {
3994         if (!(sflags & SVf_OK)) {
3995             if (ckWARN(WARN_MISC))
3996                 Perl_warner(aTHX_ packWARN(WARN_MISC),
3997                             "Undefined value assigned to typeglob");
3998         }
3999         else {
4000             GV *gv = gv_fetchsv(sstr, GV_ADD, SVt_PVGV);
4001             if (dstr != (const SV *)gv) {
4002                 if (GvGP(dstr))
4003                     gp_free(MUTABLE_GV(dstr));
4004                 GvGP(dstr) = gp_ref(GvGP(gv));
4005             }
4006         }
4007     }
4008     else if (sflags & SVp_POK) {
4009         bool isSwipe = 0;
4010
4011         /*
4012          * Check to see if we can just swipe the string.  If so, it's a
4013          * possible small lose on short strings, but a big win on long ones.
4014          * It might even be a win on short strings if SvPVX_const(dstr)
4015          * has to be allocated and SvPVX_const(sstr) has to be freed.
4016          * Likewise if we can set up COW rather than doing an actual copy, we
4017          * drop to the else clause, as the swipe code and the COW setup code
4018          * have much in common.
4019          */
4020
4021         /* Whichever path we take through the next code, we want this true,
4022            and doing it now facilitates the COW check.  */
4023         (void)SvPOK_only(dstr);
4024
4025         if (
4026             /* If we're already COW then this clause is not true, and if COW
4027                is allowed then we drop down to the else and make dest COW 
4028                with us.  If caller hasn't said that we're allowed to COW
4029                shared hash keys then we don't do the COW setup, even if the
4030                source scalar is a shared hash key scalar.  */
4031             (((flags & SV_COW_SHARED_HASH_KEYS)
4032                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
4033                : 1 /* If making a COW copy is forbidden then the behaviour we
4034                        desire is as if the source SV isn't actually already
4035                        COW, even if it is.  So we act as if the source flags
4036                        are not COW, rather than actually testing them.  */
4037               )
4038 #ifndef PERL_OLD_COPY_ON_WRITE
4039              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4040                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4041                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4042                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4043                 but in turn, it's somewhat dead code, never expected to go
4044                 live, but more kept as a placeholder on how to do it better
4045                 in a newer implementation.  */
4046              /* If we are COW and dstr is a suitable target then we drop down
4047                 into the else and make dest a COW of us.  */
4048              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
4049 #endif
4050              )
4051             &&
4052             !(isSwipe =
4053                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4054                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4055                  (!(flags & SV_NOSTEAL)) &&
4056                                         /* and we're allowed to steal temps */
4057                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4058                  SvLEN(sstr)    &&        /* and really is a string */
4059                                 /* and won't be needed again, potentially */
4060               !(PL_op && PL_op->op_type == OP_AASSIGN))
4061 #ifdef PERL_OLD_COPY_ON_WRITE
4062             && ((flags & SV_COW_SHARED_HASH_KEYS)
4063                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4064                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4065                      && SvTYPE(sstr) >= SVt_PVIV && SvTYPE(sstr) != SVt_PVFM))
4066                 : 1)
4067 #endif
4068             ) {
4069             /* Failed the swipe test, and it's not a shared hash key either.
4070                Have to copy the string.  */
4071             STRLEN len = SvCUR(sstr);
4072             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4073             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
4074             SvCUR_set(dstr, len);
4075             *SvEND(dstr) = '\0';
4076         } else {
4077             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4078                be true in here.  */
4079             /* Either it's a shared hash key, or it's suitable for
4080                copy-on-write or we can swipe the string.  */
4081             if (DEBUG_C_TEST) {
4082                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4083                 sv_dump(sstr);
4084                 sv_dump(dstr);
4085             }
4086 #ifdef PERL_OLD_COPY_ON_WRITE
4087             if (!isSwipe) {
4088                 /* I believe I should acquire a global SV mutex if
4089                    it's a COW sv (not a shared hash key) to stop
4090                    it going un copy-on-write.
4091                    If the source SV has gone un copy on write between up there
4092                    and down here, then (assert() that) it is of the correct
4093                    form to make it copy on write again */
4094                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4095                     != (SVf_FAKE | SVf_READONLY)) {
4096                     SvREADONLY_on(sstr);
4097                     SvFAKE_on(sstr);
4098                     /* Make the source SV into a loop of 1.
4099                        (about to become 2) */
4100                     SV_COW_NEXT_SV_SET(sstr, sstr);
4101                 }
4102             }
4103 #endif
4104             /* Initial code is common.  */
4105             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4106                 SvPV_free(dstr);
4107             }
4108
4109             if (!isSwipe) {
4110                 /* making another shared SV.  */
4111                 STRLEN cur = SvCUR(sstr);
4112                 STRLEN len = SvLEN(sstr);
4113 #ifdef PERL_OLD_COPY_ON_WRITE
4114                 if (len) {
4115                     assert (SvTYPE(dstr) >= SVt_PVIV);
4116                     /* SvIsCOW_normal */
4117                     /* splice us in between source and next-after-source.  */
4118                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4119                     SV_COW_NEXT_SV_SET(sstr, dstr);
4120                     SvPV_set(dstr, SvPVX_mutable(sstr));
4121                 } else
4122 #endif
4123                 {
4124                     /* SvIsCOW_shared_hash */
4125                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4126                                           "Copy on write: Sharing hash\n"));
4127
4128                     assert (SvTYPE(dstr) >= SVt_PV);
4129                     SvPV_set(dstr,
4130                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4131                 }
4132                 SvLEN_set(dstr, len);
4133                 SvCUR_set(dstr, cur);
4134                 SvREADONLY_on(dstr);
4135                 SvFAKE_on(dstr);
4136                 /* Relesase a global SV mutex.  */
4137             }
4138             else
4139                 {       /* Passes the swipe test.  */
4140                 SvPV_set(dstr, SvPVX_mutable(sstr));
4141                 SvLEN_set(dstr, SvLEN(sstr));
4142                 SvCUR_set(dstr, SvCUR(sstr));
4143
4144                 SvTEMP_off(dstr);
4145                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4146                 SvPV_set(sstr, NULL);
4147                 SvLEN_set(sstr, 0);
4148                 SvCUR_set(sstr, 0);
4149                 SvTEMP_off(sstr);
4150             }
4151         }
4152         if (sflags & SVp_NOK) {
4153             SvNV_set(dstr, SvNVX(sstr));
4154         }
4155         if (sflags & SVp_IOK) {
4156             SvIV_set(dstr, SvIVX(sstr));
4157             /* Must do this otherwise some other overloaded use of 0x80000000
4158                gets confused. I guess SVpbm_VALID */
4159             if (sflags & SVf_IVisUV)
4160                 SvIsUV_on(dstr);
4161         }
4162         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4163         {
4164             const MAGIC * const smg = SvVSTRING_mg(sstr);
4165             if (smg) {
4166                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4167                          smg->mg_ptr, smg->mg_len);
4168                 SvRMAGICAL_on(dstr);
4169             }
4170         }
4171     }
4172     else if (sflags & (SVp_IOK|SVp_NOK)) {
4173         (void)SvOK_off(dstr);
4174         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4175         if (sflags & SVp_IOK) {
4176             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4177             SvIV_set(dstr, SvIVX(sstr));
4178         }
4179         if (sflags & SVp_NOK) {
4180             SvNV_set(dstr, SvNVX(sstr));
4181         }
4182     }
4183     else {
4184         if (isGV_with_GP(sstr)) {
4185             /* This stringification rule for globs is spread in 3 places.
4186                This feels bad. FIXME.  */
4187             const U32 wasfake = sflags & SVf_FAKE;
4188
4189             /* FAKE globs can get coerced, so need to turn this off
4190                temporarily if it is on.  */
4191             SvFAKE_off(sstr);
4192             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4193             SvFLAGS(sstr) |= wasfake;
4194         }
4195         else
4196             (void)SvOK_off(dstr);
4197     }
4198     if (SvTAINTED(sstr))
4199         SvTAINT(dstr);
4200 }
4201
4202 /*
4203 =for apidoc sv_setsv_mg
4204
4205 Like C<sv_setsv>, but also handles 'set' magic.
4206
4207 =cut
4208 */
4209
4210 void
4211 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
4212 {
4213     PERL_ARGS_ASSERT_SV_SETSV_MG;
4214
4215     sv_setsv(dstr,sstr);
4216     SvSETMAGIC(dstr);
4217 }
4218
4219 #ifdef PERL_OLD_COPY_ON_WRITE
4220 SV *
4221 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4222 {
4223     STRLEN cur = SvCUR(sstr);
4224     STRLEN len = SvLEN(sstr);
4225     register char *new_pv;
4226
4227     PERL_ARGS_ASSERT_SV_SETSV_COW;
4228
4229     if (DEBUG_C_TEST) {
4230         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4231                       (void*)sstr, (void*)dstr);
4232         sv_dump(sstr);
4233         if (dstr)
4234                     sv_dump(dstr);
4235     }
4236
4237     if (dstr) {
4238         if (SvTHINKFIRST(dstr))
4239             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4240         else if (SvPVX_const(dstr))
4241             Safefree(SvPVX_const(dstr));
4242     }
4243     else
4244         new_SV(dstr);
4245     SvUPGRADE(dstr, SVt_PVIV);
4246
4247     assert (SvPOK(sstr));
4248     assert (SvPOKp(sstr));
4249     assert (!SvIOK(sstr));
4250     assert (!SvIOKp(sstr));
4251     assert (!SvNOK(sstr));
4252     assert (!SvNOKp(sstr));
4253
4254     if (SvIsCOW(sstr)) {
4255
4256         if (SvLEN(sstr) == 0) {
4257             /* source is a COW shared hash key.  */
4258             DEBUG_C(PerlIO_printf(Perl_debug_log,
4259                                   "Fast copy on write: Sharing hash\n"));
4260             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4261             goto common_exit;
4262         }
4263         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4264     } else {
4265         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4266         SvUPGRADE(sstr, SVt_PVIV);
4267         SvREADONLY_on(sstr);
4268         SvFAKE_on(sstr);
4269         DEBUG_C(PerlIO_printf(Perl_debug_log,
4270                               "Fast copy on write: Converting sstr to COW\n"));
4271         SV_COW_NEXT_SV_SET(dstr, sstr);
4272     }
4273     SV_COW_NEXT_SV_SET(sstr, dstr);
4274     new_pv = SvPVX_mutable(sstr);
4275
4276   common_exit:
4277     SvPV_set(dstr, new_pv);
4278     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4279     if (SvUTF8(sstr))
4280         SvUTF8_on(dstr);
4281     SvLEN_set(dstr, len);
4282     SvCUR_set(dstr, cur);
4283     if (DEBUG_C_TEST) {
4284         sv_dump(dstr);
4285     }
4286     return dstr;
4287 }
4288 #endif
4289
4290 /*
4291 =for apidoc sv_setpvn
4292
4293 Copies a string into an SV.  The C<len> parameter indicates the number of
4294 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4295 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4296
4297 =cut
4298 */
4299
4300 void
4301 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4302 {
4303     dVAR;
4304     register char *dptr;
4305
4306     PERL_ARGS_ASSERT_SV_SETPVN;
4307
4308     SV_CHECK_THINKFIRST_COW_DROP(sv);
4309     if (!ptr) {
4310         (void)SvOK_off(sv);
4311         return;
4312     }
4313     else {
4314         /* len is STRLEN which is unsigned, need to copy to signed */
4315         const IV iv = len;
4316         if (iv < 0)
4317             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4318     }
4319     SvUPGRADE(sv, SVt_PV);
4320
4321     dptr = SvGROW(sv, len + 1);
4322     Move(ptr,dptr,len,char);
4323     dptr[len] = '\0';
4324     SvCUR_set(sv, len);
4325     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4326     SvTAINT(sv);
4327 }
4328
4329 /*
4330 =for apidoc sv_setpvn_mg
4331
4332 Like C<sv_setpvn>, but also handles 'set' magic.
4333
4334 =cut
4335 */
4336
4337 void
4338 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4339 {
4340     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4341
4342     sv_setpvn(sv,ptr,len);
4343     SvSETMAGIC(sv);
4344 }
4345
4346 /*
4347 =for apidoc sv_setpv
4348
4349 Copies a string into an SV.  The string must be null-terminated.  Does not
4350 handle 'set' magic.  See C<sv_setpv_mg>.
4351
4352 =cut
4353 */
4354
4355 void
4356 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4357 {
4358     dVAR;
4359     register STRLEN len;
4360
4361     PERL_ARGS_ASSERT_SV_SETPV;
4362
4363     SV_CHECK_THINKFIRST_COW_DROP(sv);
4364     if (!ptr) {
4365         (void)SvOK_off(sv);
4366         return;
4367     }
4368     len = strlen(ptr);
4369     SvUPGRADE(sv, SVt_PV);
4370
4371     SvGROW(sv, len + 1);
4372     Move(ptr,SvPVX(sv),len+1,char);
4373     SvCUR_set(sv, len);
4374     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4375     SvTAINT(sv);
4376 }
4377
4378 /*
4379 =for apidoc sv_setpv_mg
4380
4381 Like C<sv_setpv>, but also handles 'set' magic.
4382
4383 =cut
4384 */
4385
4386 void
4387 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4388 {
4389     PERL_ARGS_ASSERT_SV_SETPV_MG;
4390
4391     sv_setpv(sv,ptr);
4392     SvSETMAGIC(sv);
4393 }
4394
4395 /*
4396 =for apidoc sv_usepvn_flags
4397
4398 Tells an SV to use C<ptr> to find its string value.  Normally the
4399 string is stored inside the SV but sv_usepvn allows the SV to use an
4400 outside string.  The C<ptr> should point to memory that was allocated
4401 by C<malloc>.  The string length, C<len>, must be supplied.  By default
4402 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4403 so that pointer should not be freed or used by the programmer after
4404 giving it to sv_usepvn, and neither should any pointers from "behind"
4405 that pointer (e.g. ptr + 1) be used.
4406
4407 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
4408 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4409 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
4410 C<len>, and already meets the requirements for storing in C<SvPVX>)
4411
4412 =cut
4413 */
4414
4415 void
4416 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4417 {
4418     dVAR;
4419     STRLEN allocate;
4420
4421     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4422
4423     SV_CHECK_THINKFIRST_COW_DROP(sv);
4424     SvUPGRADE(sv, SVt_PV);
4425     if (!ptr) {
4426         (void)SvOK_off(sv);
4427         if (flags & SV_SMAGIC)
4428             SvSETMAGIC(sv);
4429         return;
4430     }
4431     if (SvPVX_const(sv))
4432         SvPV_free(sv);
4433
4434 #ifdef DEBUGGING
4435     if (flags & SV_HAS_TRAILING_NUL)
4436         assert(ptr[len] == '\0');
4437 #endif
4438
4439     allocate = (flags & SV_HAS_TRAILING_NUL)
4440         ? len + 1 :
4441 #ifdef Perl_safesysmalloc_size
4442         len + 1;
4443 #else 
4444         PERL_STRLEN_ROUNDUP(len + 1);
4445 #endif
4446     if (flags & SV_HAS_TRAILING_NUL) {
4447         /* It's long enough - do nothing.
4448            Specfically Perl_newCONSTSUB is relying on this.  */
4449     } else {
4450 #ifdef DEBUGGING
4451         /* Force a move to shake out bugs in callers.  */
4452         char *new_ptr = (char*)safemalloc(allocate);
4453         Copy(ptr, new_ptr, len, char);
4454         PoisonFree(ptr,len,char);
4455         Safefree(ptr);
4456         ptr = new_ptr;
4457 #else
4458         ptr = (char*) saferealloc (ptr, allocate);
4459 #endif
4460     }
4461 #ifdef Perl_safesysmalloc_size
4462     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4463 #else
4464     SvLEN_set(sv, allocate);
4465 #endif
4466     SvCUR_set(sv, len);
4467     SvPV_set(sv, ptr);
4468     if (!(flags & SV_HAS_TRAILING_NUL)) {
4469         ptr[len] = '\0';
4470     }
4471     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4472     SvTAINT(sv);
4473     if (flags & SV_SMAGIC)
4474         SvSETMAGIC(sv);
4475 }
4476
4477 #ifdef PERL_OLD_COPY_ON_WRITE
4478 /* Need to do this *after* making the SV normal, as we need the buffer
4479    pointer to remain valid until after we've copied it.  If we let go too early,
4480    another thread could invalidate it by unsharing last of the same hash key
4481    (which it can do by means other than releasing copy-on-write Svs)
4482    or by changing the other copy-on-write SVs in the loop.  */
4483 STATIC void
4484 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4485 {
4486     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4487
4488     { /* this SV was SvIsCOW_normal(sv) */
4489          /* we need to find the SV pointing to us.  */
4490         SV *current = SV_COW_NEXT_SV(after);
4491
4492         if (current == sv) {
4493             /* The SV we point to points back to us (there were only two of us
4494                in the loop.)
4495                Hence other SV is no longer copy on write either.  */
4496             SvFAKE_off(after);
4497             SvREADONLY_off(after);
4498         } else {
4499             /* We need to follow the pointers around the loop.  */
4500             SV *next;
4501             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4502                 assert (next);
4503                 current = next;
4504                  /* don't loop forever if the structure is bust, and we have
4505                     a pointer into a closed loop.  */
4506                 assert (current != after);
4507                 assert (SvPVX_const(current) == pvx);
4508             }
4509             /* Make the SV before us point to the SV after us.  */
4510             SV_COW_NEXT_SV_SET(current, after);
4511         }
4512     }
4513 }
4514 #endif
4515 /*
4516 =for apidoc sv_force_normal_flags
4517
4518 Undo various types of fakery on an SV: if the PV is a shared string, make
4519 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4520 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4521 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4522 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4523 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4524 set to some other value.) In addition, the C<flags> parameter gets passed to
4525 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
4526 with flags set to 0.
4527
4528 =cut
4529 */
4530
4531 void
4532 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4533 {
4534     dVAR;
4535
4536     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4537
4538 #ifdef PERL_OLD_COPY_ON_WRITE
4539     if (SvREADONLY(sv)) {
4540         /* At this point I believe I should acquire a global SV mutex.  */
4541         if (SvFAKE(sv)) {
4542             const char * const pvx = SvPVX_const(sv);
4543             const STRLEN len = SvLEN(sv);
4544             const STRLEN cur = SvCUR(sv);
4545             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4546                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4547                we'll fail an assertion.  */
4548             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4549
4550             if (DEBUG_C_TEST) {
4551                 PerlIO_printf(Perl_debug_log,
4552                               "Copy on write: Force normal %ld\n",
4553                               (long) flags);
4554                 sv_dump(sv);
4555             }
4556             SvFAKE_off(sv);
4557             SvREADONLY_off(sv);
4558             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4559             SvPV_set(sv, NULL);
4560             SvLEN_set(sv, 0);
4561             if (flags & SV_COW_DROP_PV) {
4562                 /* OK, so we don't need to copy our buffer.  */
4563                 SvPOK_off(sv);
4564             } else {
4565                 SvGROW(sv, cur + 1);
4566                 Move(pvx,SvPVX(sv),cur,char);
4567                 SvCUR_set(sv, cur);
4568                 *SvEND(sv) = '\0';
4569             }
4570             if (len) {
4571                 sv_release_COW(sv, pvx, next);
4572             } else {
4573                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4574             }
4575             if (DEBUG_C_TEST) {
4576                 sv_dump(sv);
4577             }
4578         }
4579         else if (IN_PERL_RUNTIME)
4580             Perl_croak(aTHX_ "%s", PL_no_modify);
4581         /* At this point I believe that I can drop the global SV mutex.  */
4582     }
4583 #else
4584     if (SvREADONLY(sv)) {
4585         if (SvFAKE(sv)) {
4586             const char * const pvx = SvPVX_const(sv);
4587             const STRLEN len = SvCUR(sv);
4588             SvFAKE_off(sv);
4589             SvREADONLY_off(sv);
4590             SvPV_set(sv, NULL);
4591             SvLEN_set(sv, 0);
4592             SvGROW(sv, len + 1);
4593             Move(pvx,SvPVX(sv),len,char);
4594             *SvEND(sv) = '\0';
4595             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4596         }
4597         else if (IN_PERL_RUNTIME)
4598             Perl_croak(aTHX_ "%s", PL_no_modify);
4599     }
4600 #endif
4601     if (SvROK(sv))
4602         sv_unref_flags(sv, flags);
4603     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_PVGV)
4604         sv_unglob(sv);
4605 }
4606
4607 /*
4608 =for apidoc sv_chop
4609
4610 Efficient removal of characters from the beginning of the string buffer.
4611 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4612 the string buffer.  The C<ptr> becomes the first character of the adjusted
4613 string. Uses the "OOK hack".
4614 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4615 refer to the same chunk of data.
4616
4617 =cut
4618 */
4619
4620 void
4621 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4622 {
4623     STRLEN delta;
4624     STRLEN old_delta;
4625     U8 *p;
4626 #ifdef DEBUGGING
4627     const U8 *real_start;
4628 #endif
4629     STRLEN max_delta;
4630
4631     PERL_ARGS_ASSERT_SV_CHOP;
4632
4633     if (!ptr || !SvPOKp(sv))
4634         return;
4635     delta = ptr - SvPVX_const(sv);
4636     if (!delta) {
4637         /* Nothing to do.  */
4638         return;
4639     }
4640     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), but after this line,
4641        nothing uses the value of ptr any more.  */
4642     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4643     if (ptr <= SvPVX_const(sv))
4644         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4645                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4646     SV_CHECK_THINKFIRST(sv);
4647     if (delta > max_delta)
4648         Perl_croak(aTHX_ "panic: sv_chop ptr=%p (was %p), start=%p, end=%p",
4649                    SvPVX_const(sv) + delta, ptr, SvPVX_const(sv),
4650                    SvPVX_const(sv) + max_delta);
4651
4652     if (!SvOOK(sv)) {
4653         if (!SvLEN(sv)) { /* make copy of shared string */
4654             const char *pvx = SvPVX_const(sv);
4655             const STRLEN len = SvCUR(sv);
4656             SvGROW(sv, len + 1);
4657             Move(pvx,SvPVX(sv),len,char);
4658             *SvEND(sv) = '\0';
4659         }
4660         SvFLAGS(sv) |= SVf_OOK;
4661         old_delta = 0;
4662     } else {
4663         SvOOK_offset(sv, old_delta);
4664     }
4665     SvLEN_set(sv, SvLEN(sv) - delta);
4666     SvCUR_set(sv, SvCUR(sv) - delta);
4667     SvPV_set(sv, SvPVX(sv) + delta);
4668
4669     p = (U8 *)SvPVX_const(sv);
4670
4671     delta += old_delta;
4672
4673 #ifdef DEBUGGING
4674     real_start = p - delta;
4675 #endif
4676
4677     assert(delta);
4678     if (delta < 0x100) {
4679         *--p = (U8) delta;
4680     } else {
4681         *--p = 0;
4682         p -= sizeof(STRLEN);
4683         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4684     }
4685
4686 #ifdef DEBUGGING
4687     /* Fill the preceding buffer with sentinals to verify that no-one is
4688        using it.  */
4689     while (p > real_start) {
4690         --p;
4691         *p = (U8)PTR2UV(p);
4692     }
4693 #endif
4694 }
4695
4696 /*
4697 =for apidoc sv_catpvn
4698
4699 Concatenates the string onto the end of the string which is in the SV.  The
4700 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4701 status set, then the bytes appended should be valid UTF-8.
4702 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4703
4704 =for apidoc sv_catpvn_flags
4705
4706 Concatenates the string onto the end of the string which is in the SV.  The
4707 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4708 status set, then the bytes appended should be valid UTF-8.
4709 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4710 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4711 in terms of this function.
4712
4713 =cut
4714 */
4715
4716 void
4717 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
4718 {
4719     dVAR;
4720     STRLEN dlen;
4721     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4722
4723     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
4724
4725     SvGROW(dsv, dlen + slen + 1);
4726     if (sstr == dstr)
4727         sstr = SvPVX_const(dsv);
4728     Move(sstr, SvPVX(dsv) + dlen, slen, char);
4729     SvCUR_set(dsv, SvCUR(dsv) + slen);
4730     *SvEND(dsv) = '\0';
4731     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
4732     SvTAINT(dsv);
4733     if (flags & SV_SMAGIC)
4734         SvSETMAGIC(dsv);
4735 }
4736
4737 /*
4738 =for apidoc sv_catsv
4739
4740 Concatenates the string from SV C<ssv> onto the end of the string in
4741 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
4742 not 'set' magic.  See C<sv_catsv_mg>.
4743
4744 =for apidoc sv_catsv_flags
4745
4746 Concatenates the string from SV C<ssv> onto the end of the string in
4747 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
4748 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4749 and C<sv_catsv_nomg> are implemented in terms of this function.
4750
4751 =cut */
4752
4753 void
4754 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
4755 {
4756     dVAR;
4757  
4758     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
4759
4760    if (ssv) {
4761         STRLEN slen;
4762         const char *spv = SvPV_const(ssv, slen);
4763         if (spv) {
4764             /*  sutf8 and dutf8 were type bool, but under USE_ITHREADS,
4765                 gcc version 2.95.2 20000220 (Debian GNU/Linux) for
4766                 Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
4767                 get dutf8 = 0x20000000, (i.e.  SVf_UTF8) even though
4768                 dsv->sv_flags doesn't have that bit set.
4769                 Andy Dougherty  12 Oct 2001
4770             */
4771             const I32 sutf8 = DO_UTF8(ssv);
4772             I32 dutf8;
4773
4774             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
4775                 mg_get(dsv);
4776             dutf8 = DO_UTF8(dsv);
4777
4778             if (dutf8 != sutf8) {
4779                 if (dutf8) {
4780                     /* Not modifying source SV, so taking a temporary copy. */
4781                     SV* const csv = newSVpvn_flags(spv, slen, SVs_TEMP);
4782
4783                     sv_utf8_upgrade(csv);
4784                     spv = SvPV_const(csv, slen);
4785                 }
4786                 else
4787                     /* Leave enough space for the cat that's about to happen */
4788                     sv_utf8_upgrade_flags_grow(dsv, 0, slen);
4789             }
4790             sv_catpvn_nomg(dsv, spv, slen);
4791         }
4792     }
4793     if (flags & SV_SMAGIC)
4794         SvSETMAGIC(dsv);
4795 }
4796
4797 /*
4798 =for apidoc sv_catpv
4799
4800 Concatenates the string onto the end of the string which is in the SV.
4801 If the SV has the UTF-8 status set, then the bytes appended should be
4802 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
4803
4804 =cut */
4805
4806 void
4807 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
4808 {
4809     dVAR;
4810     register STRLEN len;
4811     STRLEN tlen;
4812     char *junk;
4813
4814     PERL_ARGS_ASSERT_SV_CATPV;
4815
4816     if (!ptr)
4817         return;
4818     junk = SvPV_force(sv, tlen);
4819     len = strlen(ptr);
4820     SvGROW(sv, tlen + len + 1);
4821     if (ptr == junk)
4822         ptr = SvPVX_const(sv);
4823     Move(ptr,SvPVX(sv)+tlen,len+1,char);
4824     SvCUR_set(sv, SvCUR(sv) + len);
4825     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4826     SvTAINT(sv);
4827 }
4828
4829 /*
4830 =for apidoc sv_catpv_mg
4831
4832 Like C<sv_catpv>, but also handles 'set' magic.
4833
4834 =cut
4835 */
4836
4837 void
4838 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4839 {
4840     PERL_ARGS_ASSERT_SV_CATPV_MG;
4841
4842     sv_catpv(sv,ptr);
4843     SvSETMAGIC(sv);
4844 }
4845
4846 /*
4847 =for apidoc newSV
4848
4849 Creates a new SV.  A non-zero C<len> parameter indicates the number of
4850 bytes of preallocated string space the SV should have.  An extra byte for a
4851 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
4852 space is allocated.)  The reference count for the new SV is set to 1.
4853
4854 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
4855 parameter, I<x>, a debug aid which allowed callers to identify themselves.
4856 This aid has been superseded by a new build option, PERL_MEM_LOG (see
4857 L<perlhack/PERL_MEM_LOG>).  The older API is still there for use in XS
4858 modules supporting older perls.
4859
4860 =cut
4861 */
4862
4863 SV *
4864 Perl_newSV(pTHX_ const STRLEN len)
4865 {
4866     dVAR;
4867     register SV *sv;
4868
4869     new_SV(sv);
4870     if (len) {
4871         sv_upgrade(sv, SVt_PV);
4872         SvGROW(sv, len + 1);
4873     }
4874     return sv;
4875 }
4876 /*
4877 =for apidoc sv_magicext
4878
4879 Adds magic to an SV, upgrading it if necessary. Applies the
4880 supplied vtable and returns a pointer to the magic added.
4881
4882 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
4883 In particular, you can add magic to SvREADONLY SVs, and add more than
4884 one instance of the same 'how'.
4885
4886 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
4887 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
4888 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
4889 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
4890
4891 (This is now used as a subroutine by C<sv_magic>.)
4892
4893 =cut
4894 */
4895 MAGIC * 
4896 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
4897                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
4898 {
4899     dVAR;
4900     MAGIC* mg;
4901
4902     PERL_ARGS_ASSERT_SV_MAGICEXT;
4903
4904     SvUPGRADE(sv, SVt_PVMG);
4905     Newxz(mg, 1, MAGIC);
4906     mg->mg_moremagic = SvMAGIC(sv);
4907     SvMAGIC_set(sv, mg);
4908
4909     /* Sometimes a magic contains a reference loop, where the sv and
4910        object refer to each other.  To prevent a reference loop that
4911        would prevent such objects being freed, we look for such loops
4912        and if we find one we avoid incrementing the object refcount.
4913
4914        Note we cannot do this to avoid self-tie loops as intervening RV must
4915        have its REFCNT incremented to keep it in existence.
4916
4917     */
4918     if (!obj || obj == sv ||
4919         how == PERL_MAGIC_arylen ||
4920         how == PERL_MAGIC_symtab ||
4921         (SvTYPE(obj) == SVt_PVGV &&
4922             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
4923              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
4924              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
4925     {
4926         mg->mg_obj = obj;
4927     }
4928     else {
4929         mg->mg_obj = SvREFCNT_inc_simple(obj);
4930         mg->mg_flags |= MGf_REFCOUNTED;
4931     }
4932
4933     /* Normal self-ties simply pass a null object, and instead of
4934        using mg_obj directly, use the SvTIED_obj macro to produce a
4935        new RV as needed.  For glob "self-ties", we are tieing the PVIO
4936        with an RV obj pointing to the glob containing the PVIO.  In
4937        this case, to avoid a reference loop, we need to weaken the
4938        reference.
4939     */
4940
4941     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
4942         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
4943     {
4944       sv_rvweaken(obj);
4945     }
4946
4947     mg->mg_type = how;
4948     mg->mg_len = namlen;
4949     if (name) {
4950         if (namlen > 0)
4951             mg->mg_ptr = savepvn(name, namlen);
4952         else if (namlen == HEf_SVKEY) {
4953             /* Yes, this is casting away const. This is only for the case of
4954                HEf_SVKEY. I think we need to document this abberation of the
4955                constness of the API, rather than making name non-const, as
4956                that change propagating outwards a long way.  */
4957             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
4958         } else
4959             mg->mg_ptr = (char *) name;
4960     }
4961     mg->mg_virtual = (MGVTBL *) vtable;
4962
4963     mg_magical(sv);
4964     if (SvGMAGICAL(sv))
4965         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
4966     return mg;
4967 }
4968
4969 /*
4970 =for apidoc sv_magic
4971
4972 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
4973 then adds a new magic item of type C<how> to the head of the magic list.
4974
4975 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
4976 handling of the C<name> and C<namlen> arguments.
4977
4978 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
4979 to add more than one instance of the same 'how'.
4980
4981 =cut
4982 */
4983
4984 void
4985 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
4986              const char *const name, const I32 namlen)
4987 {
4988     dVAR;
4989     const MGVTBL *vtable;
4990     MAGIC* mg;
4991
4992     PERL_ARGS_ASSERT_SV_MAGIC;
4993
4994 #ifdef PERL_OLD_COPY_ON_WRITE
4995     if (SvIsCOW(sv))
4996         sv_force_normal_flags(sv, 0);
4997 #endif
4998     if (SvREADONLY(sv)) {
4999         if (
5000             /* its okay to attach magic to shared strings; the subsequent
5001              * upgrade to PVMG will unshare the string */
5002             !(SvFAKE(sv) && SvTYPE(sv) < SVt_PVMG)
5003
5004             && IN_PERL_RUNTIME
5005             && how != PERL_MAGIC_regex_global
5006             && how != PERL_MAGIC_bm
5007             && how != PERL_MAGIC_fm
5008             && how != PERL_MAGIC_sv
5009             && how != PERL_MAGIC_backref
5010            )
5011         {
5012             Perl_croak(aTHX_ "%s", PL_no_modify);
5013         }
5014     }
5015     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5016         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5017             /* sv_magic() refuses to add a magic of the same 'how' as an
5018                existing one
5019              */
5020             if (how == PERL_MAGIC_taint) {
5021                 mg->mg_len |= 1;
5022                 /* Any scalar which already had taint magic on which someone
5023                    (erroneously?) did SvIOK_on() or similar will now be
5024                    incorrectly sporting public "OK" flags.  */
5025                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5026             }
5027             return;
5028         }
5029     }
5030
5031     switch (how) {
5032     case PERL_MAGIC_sv:
5033         vtable = &PL_vtbl_sv;
5034         break;
5035     case PERL_MAGIC_overload:
5036         vtable = &PL_vtbl_amagic;
5037         break;
5038     case PERL_MAGIC_overload_elem:
5039         vtable = &PL_vtbl_amagicelem;
5040         break;
5041     case PERL_MAGIC_overload_table:
5042         vtable = &PL_vtbl_ovrld;
5043         break;
5044     case PERL_MAGIC_bm:
5045         vtable = &PL_vtbl_bm;
5046         break;
5047     case PERL_MAGIC_regdata:
5048         vtable = &PL_vtbl_regdata;
5049         break;
5050     case PERL_MAGIC_regdatum:
5051         vtable = &PL_vtbl_regdatum;
5052         break;
5053     case PERL_MAGIC_env:
5054         vtable = &PL_vtbl_env;
5055         break;
5056     case PERL_MAGIC_fm:
5057         vtable = &PL_vtbl_fm;
5058         break;
5059     case PERL_MAGIC_envelem:
5060         vtable = &PL_vtbl_envelem;
5061         break;
5062     case PERL_MAGIC_regex_global:
5063         vtable = &PL_vtbl_mglob;
5064         break;
5065     case PERL_MAGIC_isa:
5066         vtable = &PL_vtbl_isa;
5067         break;
5068     case PERL_MAGIC_isaelem:
5069         vtable = &PL_vtbl_isaelem;
5070         break;
5071     case PERL_MAGIC_nkeys:
5072         vtable = &PL_vtbl_nkeys;
5073         break;
5074     case PERL_MAGIC_dbfile:
5075         vtable = NULL;
5076         break;
5077     case PERL_MAGIC_dbline:
5078         vtable = &PL_vtbl_dbline;
5079         break;
5080 #ifdef USE_LOCALE_COLLATE
5081     case PERL_MAGIC_collxfrm:
5082         vtable = &PL_vtbl_collxfrm;
5083         break;
5084 #endif /* USE_LOCALE_COLLATE */
5085     case PERL_MAGIC_tied:
5086         vtable = &PL_vtbl_pack;
5087         break;
5088     case PERL_MAGIC_tiedelem:
5089     case PERL_MAGIC_tiedscalar:
5090         vtable = &PL_vtbl_packelem;
5091         break;
5092     case PERL_MAGIC_qr:
5093         vtable = &PL_vtbl_regexp;
5094         break;
5095     case PERL_MAGIC_hints:
5096         /* As this vtable is all NULL, we can reuse it.  */
5097     case PERL_MAGIC_sig:
5098         vtable = &PL_vtbl_sig;
5099         break;
5100     case PERL_MAGIC_sigelem:
5101         vtable = &PL_vtbl_sigelem;
5102         break;
5103     case PERL_MAGIC_taint:
5104         vtable = &PL_vtbl_taint;
5105         break;
5106     case PERL_MAGIC_uvar:
5107         vtable = &PL_vtbl_uvar;
5108         break;
5109     case PERL_MAGIC_vec:
5110         vtable = &PL_vtbl_vec;
5111         break;
5112     case PERL_MAGIC_arylen_p:
5113     case PERL_MAGIC_rhash:
5114     case PERL_MAGIC_symtab:
5115     case PERL_MAGIC_vstring:
5116         vtable = NULL;
5117         break;
5118     case PERL_MAGIC_utf8:
5119         vtable = &PL_vtbl_utf8;
5120         break;
5121     case PERL_MAGIC_substr:
5122         vtable = &PL_vtbl_substr;
5123         break;
5124     case PERL_MAGIC_defelem:
5125         vtable = &PL_vtbl_defelem;
5126         break;
5127     case PERL_MAGIC_arylen:
5128         vtable = &PL_vtbl_arylen;
5129         break;
5130     case PERL_MAGIC_pos:
5131         vtable = &PL_vtbl_pos;
5132         break;
5133     case PERL_MAGIC_backref:
5134         vtable = &PL_vtbl_backref;
5135         break;
5136     case PERL_MAGIC_hintselem:
5137         vtable = &PL_vtbl_hintselem;
5138         break;
5139     case PERL_MAGIC_ext:
5140         /* Reserved for use by extensions not perl internals.           */
5141         /* Useful for attaching extension internal data to perl vars.   */
5142         /* Note that multiple extensions may clash if magical scalars   */
5143         /* etc holding private data from one are passed to another.     */
5144         vtable = NULL;
5145         break;
5146     default:
5147         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5148     }
5149
5150     /* Rest of work is done else where */
5151     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5152
5153     switch (how) {
5154     case PERL_MAGIC_taint:
5155         mg->mg_len = 1;
5156         break;
5157     case PERL_MAGIC_ext:
5158     case PERL_MAGIC_dbfile:
5159         SvRMAGICAL_on(sv);
5160         break;
5161     }
5162 }
5163
5164 /*
5165 =for apidoc sv_unmagic
5166
5167 Removes all magic of type C<type> from an SV.
5168
5169 =cut
5170 */
5171
5172 int
5173 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5174 {
5175     MAGIC* mg;
5176     MAGIC** mgp;
5177
5178     PERL_ARGS_ASSERT_SV_UNMAGIC;
5179
5180     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5181         return 0;
5182     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5183     for (mg = *mgp; mg; mg = *mgp) {
5184         if (mg->mg_type == type) {
5185             const MGVTBL* const vtbl = mg->mg_virtual;
5186             *mgp = mg->mg_moremagic;
5187             if (vtbl && vtbl->svt_free)
5188                 CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg);
5189             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5190                 if (mg->mg_len > 0)
5191                     Safefree(mg->mg_ptr);
5192                 else if (mg->mg_len == HEf_SVKEY)
5193                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5194                 else if (mg->mg_type == PERL_MAGIC_utf8)
5195                     Safefree(mg->mg_ptr);
5196             }
5197             if (mg->mg_flags & MGf_REFCOUNTED)
5198                 SvREFCNT_dec(mg->mg_obj);
5199             Safefree(mg);
5200         }
5201         else
5202             mgp = &mg->mg_moremagic;
5203     }
5204     if (!SvMAGIC(sv)) {
5205         SvMAGICAL_off(sv);
5206         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5207         SvMAGIC_set(sv, NULL);
5208     }
5209
5210     return 0;
5211 }
5212
5213 /*
5214 =for apidoc sv_rvweaken
5215
5216 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5217 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5218 push a back-reference to this RV onto the array of backreferences
5219 associated with that magic. If the RV is magical, set magic will be
5220 called after the RV is cleared.
5221
5222 =cut
5223 */
5224
5225 SV *
5226 Perl_sv_rvweaken(pTHX_ SV *const sv)
5227 {
5228     SV *tsv;
5229
5230     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5231
5232     if (!SvOK(sv))  /* let undefs pass */
5233         return sv;
5234     if (!SvROK(sv))
5235         Perl_croak(aTHX_ "Can't weaken a nonreference");
5236     else if (SvWEAKREF(sv)) {
5237         if (ckWARN(WARN_MISC))
5238             Perl_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5239         return sv;
5240     }
5241     tsv = SvRV(sv);
5242     Perl_sv_add_backref(aTHX_ tsv, sv);
5243     SvWEAKREF_on(sv);
5244     SvREFCNT_dec(tsv);
5245     return sv;
5246 }
5247
5248 /* Give tsv backref magic if it hasn't already got it, then push a
5249  * back-reference to sv onto the array associated with the backref magic.
5250  */
5251
5252 /* A discussion about the backreferences array and its refcount:
5253  *
5254  * The AV holding the backreferences is pointed to either as the mg_obj of
5255  * PERL_MAGIC_backref, or in the specific case of a HV that has the hv_aux
5256  * structure, from the xhv_backreferences field. (A HV without hv_aux will
5257  * have the standard magic instead.) The array is created with a refcount
5258  * of 2. This means that if during global destruction the array gets
5259  * picked on first to have its refcount decremented by the random zapper,
5260  * it won't actually be freed, meaning it's still theere for when its
5261  * parent gets freed.
5262  * When the parent SV is freed, in the case of magic, the magic is freed,
5263  * Perl_magic_killbackrefs is called which decrements one refcount, then
5264  * mg_obj is freed which kills the second count.
5265  * In the vase of a HV being freed, one ref is removed by
5266  * Perl_hv_kill_backrefs, the other by Perl_sv_kill_backrefs, which it
5267  * calls.
5268  */
5269
5270 void
5271 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5272 {
5273     dVAR;
5274     AV *av;
5275
5276     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5277
5278     if (SvTYPE(tsv) == SVt_PVHV) {
5279         AV **const avp = Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5280
5281         av = *avp;
5282         if (!av) {
5283             /* There is no AV in the offical place - try a fixup.  */
5284             MAGIC *const mg = mg_find(tsv, PERL_MAGIC_backref);
5285
5286             if (mg) {
5287                 /* Aha. They've got it stowed in magic.  Bring it back.  */
5288                 av = MUTABLE_AV(mg->mg_obj);
5289                 /* Stop mg_free decreasing the refernce count.  */
5290                 mg->mg_obj = NULL;
5291                 /* Stop mg_free even calling the destructor, given that
5292                    there's no AV to free up.  */
5293                 mg->mg_virtual = 0;
5294                 sv_unmagic(tsv, PERL_MAGIC_backref);
5295             } else {
5296                 av = newAV();
5297                 AvREAL_off(av);
5298                 SvREFCNT_inc_simple_void(av); /* see discussion above */
5299             }
5300             *avp = av;
5301         }
5302     } else {
5303         const MAGIC *const mg
5304             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5305         if (mg)
5306             av = MUTABLE_AV(mg->mg_obj);
5307         else {
5308             av = newAV();
5309             AvREAL_off(av);
5310             sv_magic(tsv, MUTABLE_SV(av), PERL_MAGIC_backref, NULL, 0);
5311             /* av now has a refcnt of 2; see discussion above */
5312         }
5313     }
5314     if (AvFILLp(av) >= AvMAX(av)) {
5315         av_extend(av, AvFILLp(av)+1);
5316     }
5317     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5318 }
5319
5320 /* delete a back-reference to ourselves from the backref magic associated
5321  * with the SV we point to.
5322  */
5323
5324 STATIC void
5325 S_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5326 {
5327     dVAR;
5328     AV *av = NULL;
5329     SV **svp;
5330     I32 i;
5331
5332     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5333
5334     if (SvTYPE(tsv) == SVt_PVHV && SvOOK(tsv)) {
5335         av = *Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5336         /* We mustn't attempt to "fix up" the hash here by moving the
5337            backreference array back to the hv_aux structure, as that is stored
5338            in the main HvARRAY(), and hfreentries assumes that no-one
5339            reallocates HvARRAY() while it is running.  */
5340     }
5341     if (!av) {
5342         const MAGIC *const mg
5343             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5344         if (mg)
5345             av = MUTABLE_AV(mg->mg_obj);
5346     }
5347
5348     if (!av)
5349         Perl_croak(aTHX_ "panic: del_backref");
5350
5351     assert(!SvIS_FREED(av));
5352
5353     svp = AvARRAY(av);
5354     /* We shouldn't be in here more than once, but for paranoia reasons lets
5355        not assume this.  */
5356     for (i = AvFILLp(av); i >= 0; i--) {
5357         if (svp[i] == sv) {
5358             const SSize_t fill = AvFILLp(av);
5359             if (i != fill) {
5360                 /* We weren't the last entry.
5361                    An unordered list has this property that you can take the
5362                    last element off the end to fill the hole, and it's still
5363                    an unordered list :-)
5364                 */
5365                 svp[i] = svp[fill];
5366             }
5367             svp[fill] = NULL;
5368             AvFILLp(av) = fill - 1;
5369         }
5370     }
5371 }
5372
5373 int
5374 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5375 {
5376     SV **svp = AvARRAY(av);
5377
5378     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5379     PERL_UNUSED_ARG(sv);
5380
5381     assert(!svp || !SvIS_FREED(av));
5382     if (svp) {
5383         SV *const *const last = svp + AvFILLp(av);
5384
5385         while (svp <= last) {
5386             if (*svp) {
5387                 SV *const referrer = *svp;
5388                 if (SvWEAKREF(referrer)) {
5389                     /* XXX Should we check that it hasn't changed? */
5390                     SvRV_set(referrer, 0);
5391                     SvOK_off(referrer);
5392                     SvWEAKREF_off(referrer);
5393                     SvSETMAGIC(referrer);
5394                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5395                            SvTYPE(referrer) == SVt_PVLV) {
5396                     /* You lookin' at me?  */
5397                     assert(GvSTASH(referrer));
5398                     assert(GvSTASH(referrer) == (const HV *)sv);
5399                     GvSTASH(referrer) = 0;
5400                 } else {
5401                     Perl_croak(aTHX_
5402                                "panic: magic_killbackrefs (flags=%"UVxf")",
5403                                (UV)SvFLAGS(referrer));
5404                 }
5405
5406                 *svp = NULL;
5407             }
5408             svp++;
5409         }
5410     }
5411     SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5412     return 0;
5413 }
5414
5415 /*
5416 =for apidoc sv_insert
5417
5418 Inserts a string at the specified offset/length within the SV. Similar to
5419 the Perl substr() function. Handles get magic.
5420
5421 =for apidoc sv_insert_flags
5422
5423 Same as C<sv_insert>, but the extra C<flags> are passed the C<SvPV_force_flags> that applies to C<bigstr>.
5424
5425 =cut
5426 */
5427
5428 void
5429 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5430 {
5431     dVAR;
5432     register char *big;
5433     register char *mid;
5434     register char *midend;
5435     register char *bigend;
5436     register I32 i;
5437     STRLEN curlen;
5438
5439     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5440
5441     if (!bigstr)
5442         Perl_croak(aTHX_ "Can't modify non-existent substring");
5443     SvPV_force_flags(bigstr, curlen, flags);
5444     (void)SvPOK_only_UTF8(bigstr);
5445     if (offset + len > curlen) {
5446         SvGROW(bigstr, offset+len+1);
5447         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5448         SvCUR_set(bigstr, offset+len);
5449     }
5450
5451     SvTAINT(bigstr);
5452     i = littlelen - len;
5453     if (i > 0) {                        /* string might grow */
5454         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5455         mid = big + offset + len;
5456         midend = bigend = big + SvCUR(bigstr);
5457         bigend += i;
5458         *bigend = '\0';
5459         while (midend > mid)            /* shove everything down */
5460             *--bigend = *--midend;
5461         Move(little,big+offset,littlelen,char);
5462         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5463         SvSETMAGIC(bigstr);
5464         return;
5465     }
5466     else if (i == 0) {
5467         Move(little,SvPVX(bigstr)+offset,len,char);
5468         SvSETMAGIC(bigstr);
5469         return;
5470     }
5471
5472     big = SvPVX(bigstr);
5473     mid = big + offset;
5474     midend = mid + len;
5475     bigend = big + SvCUR(bigstr);
5476
5477     if (midend > bigend)
5478         Perl_croak(aTHX_ "panic: sv_insert");
5479
5480     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5481         if (littlelen) {
5482             Move(little, mid, littlelen,char);
5483             mid += littlelen;
5484         }
5485         i = bigend - midend;
5486         if (i > 0) {
5487             Move(midend, mid, i,char);
5488             mid += i;
5489         }
5490         *mid = '\0';
5491         SvCUR_set(bigstr, mid - big);
5492     }
5493     else if ((i = mid - big)) { /* faster from front */
5494         midend -= littlelen;
5495         mid = midend;
5496         Move(big, midend - i, i, char);
5497         sv_chop(bigstr,midend-i);
5498         if (littlelen)
5499             Move(little, mid, littlelen,char);
5500     }
5501     else if (littlelen) {
5502         midend -= littlelen;
5503         sv_chop(bigstr,midend);
5504         Move(little,midend,littlelen,char);
5505     }
5506     else {
5507         sv_chop(bigstr,midend);
5508     }
5509     SvSETMAGIC(bigstr);
5510 }
5511
5512 /*
5513 =for apidoc sv_replace
5514
5515 Make the first argument a copy of the second, then delete the original.
5516 The target SV physically takes over ownership of the body of the source SV
5517 and inherits its flags; however, the target keeps any magic it owns,
5518 and any magic in the source is discarded.
5519 Note that this is a rather specialist SV copying operation; most of the
5520 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5521
5522 =cut
5523 */
5524
5525 void
5526 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5527 {
5528     dVAR;
5529     const U32 refcnt = SvREFCNT(sv);
5530
5531     PERL_ARGS_ASSERT_SV_REPLACE;
5532
5533     SV_CHECK_THINKFIRST_COW_DROP(sv);
5534     if (SvREFCNT(nsv) != 1) {
5535         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace() (%"
5536                    UVuf " != 1)", (UV) SvREFCNT(nsv));
5537     }
5538     if (SvMAGICAL(sv)) {
5539         if (SvMAGICAL(nsv))
5540             mg_free(nsv);
5541         else
5542             sv_upgrade(nsv, SVt_PVMG);
5543         SvMAGIC_set(nsv, SvMAGIC(sv));
5544         SvFLAGS(nsv) |= SvMAGICAL(sv);
5545         SvMAGICAL_off(sv);
5546         SvMAGIC_set(sv, NULL);
5547     }
5548     SvREFCNT(sv) = 0;
5549     sv_clear(sv);
5550     assert(!SvREFCNT(sv));
5551 #ifdef DEBUG_LEAKING_SCALARS
5552     sv->sv_flags  = nsv->sv_flags;
5553     sv->sv_any    = nsv->sv_any;
5554     sv->sv_refcnt = nsv->sv_refcnt;
5555     sv->sv_u      = nsv->sv_u;
5556 #else
5557     StructCopy(nsv,sv,SV);
5558 #endif
5559     if(SvTYPE(sv) == SVt_IV) {
5560         SvANY(sv)
5561             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5562     }
5563         
5564
5565 #ifdef PERL_OLD_COPY_ON_WRITE
5566     if (SvIsCOW_normal(nsv)) {
5567         /* We need to follow the pointers around the loop to make the
5568            previous SV point to sv, rather than nsv.  */
5569         SV *next;
5570         SV *current = nsv;
5571         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5572             assert(next);
5573             current = next;
5574             assert(SvPVX_const(current) == SvPVX_const(nsv));
5575         }
5576         /* Make the SV before us point to the SV after us.  */
5577         if (DEBUG_C_TEST) {
5578             PerlIO_printf(Perl_debug_log, "previous is\n");
5579             sv_dump(current);
5580             PerlIO_printf(Perl_debug_log,
5581                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5582                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5583         }
5584         SV_COW_NEXT_SV_SET(current, sv);
5585     }
5586 #endif
5587     SvREFCNT(sv) = refcnt;
5588     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5589     SvREFCNT(nsv) = 0;
5590     del_SV(nsv);
5591 }
5592
5593 /*
5594 =for apidoc sv_clear
5595
5596 Clear an SV: call any destructors, free up any memory used by the body,
5597 and free the body itself. The SV's head is I<not> freed, although
5598 its type is set to all 1's so that it won't inadvertently be assumed
5599 to be live during global destruction etc.
5600 This function should only be called when REFCNT is zero. Most of the time
5601 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5602 instead.
5603
5604 =cut
5605 */
5606
5607 void
5608 Perl_sv_clear(pTHX_ register SV *const sv)
5609 {
5610     dVAR;
5611     const U32 type = SvTYPE(sv);
5612     const struct body_details *const sv_type_details
5613         = bodies_by_type + type;
5614     HV *stash;
5615
5616     PERL_ARGS_ASSERT_SV_CLEAR;
5617     assert(SvREFCNT(sv) == 0);
5618     assert(SvTYPE(sv) != SVTYPEMASK);
5619
5620     if (type <= SVt_IV) {
5621         /* See the comment in sv.h about the collusion between this early
5622            return and the overloading of the NULL and IV slots in the size
5623            table.  */
5624         if (SvROK(sv)) {
5625             SV * const target = SvRV(sv);
5626             if (SvWEAKREF(sv))
5627                 sv_del_backref(target, sv);
5628             else
5629                 SvREFCNT_dec(target);
5630         }
5631         SvFLAGS(sv) &= SVf_BREAK;
5632         SvFLAGS(sv) |= SVTYPEMASK;
5633         return;
5634     }
5635
5636     if (SvOBJECT(sv)) {
5637         if (PL_defstash &&      /* Still have a symbol table? */
5638             SvDESTROYABLE(sv))
5639         {
5640             dSP;
5641             HV* stash;
5642             do {        
5643                 CV* destructor;
5644                 stash = SvSTASH(sv);
5645                 destructor = StashHANDLER(stash,DESTROY);
5646                 if (destructor
5647                         /* A constant subroutine can have no side effects, so
5648                            don't bother calling it.  */
5649                         && !CvCONST(destructor)
5650                         /* Don't bother calling an empty destructor */
5651                         && (CvISXSUB(destructor)
5652                         || CvSTART(destructor)->op_next->op_type != OP_LEAVESUB))
5653                 {
5654                     SV* const tmpref = newRV(sv);
5655                     SvREADONLY_on(tmpref);   /* DESTROY() could be naughty */
5656                     ENTER;
5657                     PUSHSTACKi(PERLSI_DESTROY);
5658                     EXTEND(SP, 2);
5659                     PUSHMARK(SP);
5660                     PUSHs(tmpref);
5661                     PUTBACK;
5662                     call_sv(MUTABLE_SV(destructor), G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
5663                 
5664                 
5665                     POPSTACK;
5666                     SPAGAIN;
5667                     LEAVE;
5668                     if(SvREFCNT(tmpref) < 2) {
5669                         /* tmpref is not kept alive! */
5670                         SvREFCNT(sv)--;
5671                         SvRV_set(tmpref, NULL);
5672                         SvROK_off(tmpref);
5673                     }
5674                     SvREFCNT_dec(tmpref);
5675                 }
5676             } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
5677
5678
5679             if (SvREFCNT(sv)) {
5680                 if (PL_in_clean_objs)
5681                     Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
5682                           HvNAME_get(stash));
5683                 /* DESTROY gave object new lease on life */
5684                 return;
5685             }
5686         }
5687
5688         if (SvOBJECT(sv)) {
5689             SvREFCNT_dec(SvSTASH(sv));  /* possibly of changed persuasion */
5690             SvOBJECT_off(sv);   /* Curse the object. */
5691             if (type != SVt_PVIO)
5692                 --PL_sv_objcount;       /* XXX Might want something more general */
5693         }
5694     }
5695     if (type >= SVt_PVMG) {
5696         if (type == SVt_PVMG && SvPAD_OUR(sv)) {
5697             SvREFCNT_dec(SvOURSTASH(sv));
5698         } else if (SvMAGIC(sv))
5699             mg_free(sv);
5700         if (type == SVt_PVMG && SvPAD_TYPED(sv))
5701             SvREFCNT_dec(SvSTASH(sv));
5702     }
5703     switch (type) {
5704         /* case SVt_BIND: */
5705     case SVt_PVIO:
5706         if (IoIFP(sv) &&
5707             IoIFP(sv) != PerlIO_stdin() &&
5708             IoIFP(sv) != PerlIO_stdout() &&
5709             IoIFP(sv) != PerlIO_stderr())
5710         {
5711             io_close(MUTABLE_IO(sv), FALSE);
5712         }
5713         if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5714             PerlDir_close(IoDIRP(sv));
5715         IoDIRP(sv) = (DIR*)NULL;
5716         Safefree(IoTOP_NAME(sv));
5717         Safefree(IoFMT_NAME(sv));
5718         Safefree(IoBOTTOM_NAME(sv));
5719         goto freescalar;
5720     case SVt_REGEXP:
5721         /* FIXME for plugins */
5722         pregfree2((REGEXP*) sv);
5723         goto freescalar;
5724     case SVt_PVCV:
5725     case SVt_PVFM:
5726         cv_undef(MUTABLE_CV(sv));
5727         goto freescalar;
5728     case SVt_PVHV:
5729         if (PL_last_swash_hv == (const HV *)sv) {
5730             PL_last_swash_hv = NULL;
5731         }
5732         Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
5733         hv_undef(MUTABLE_HV(sv));
5734         break;
5735     case SVt_PVAV:
5736         if (PL_comppad == MUTABLE_AV(sv)) {
5737             PL_comppad = NULL;
5738             PL_curpad = NULL;
5739         }
5740         av_undef(MUTABLE_AV(sv));
5741         break;
5742     case SVt_PVLV:
5743         if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
5744             SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
5745             HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
5746             PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
5747         }
5748         else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
5749             SvREFCNT_dec(LvTARG(sv));
5750     case SVt_PVGV:
5751         if (isGV_with_GP(sv)) {
5752             if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
5753                && HvNAME_get(stash))
5754                 mro_method_changed_in(stash);
5755             gp_free(MUTABLE_GV(sv));
5756             if (GvNAME_HEK(sv))
5757                 unshare_hek(GvNAME_HEK(sv));
5758             /* If we're in a stash, we don't own a reference to it. However it does
5759                have a back reference to us, which needs to be cleared.  */
5760             if (!SvVALID(sv) && (stash = GvSTASH(sv)))
5761                     sv_del_backref(MUTABLE_SV(stash), sv);
5762         }
5763         /* FIXME. There are probably more unreferenced pointers to SVs in the
5764            interpreter struct that we should check and tidy in a similar
5765            fashion to this:  */
5766         if ((const GV *)sv == PL_last_in_gv)
5767             PL_last_in_gv = NULL;
5768     case SVt_PVMG:
5769     case SVt_PVNV:
5770     case SVt_PVIV:
5771     case SVt_PV:
5772       freescalar:
5773         /* Don't bother with SvOOK_off(sv); as we're only going to free it.  */
5774         if (SvOOK(sv)) {
5775             STRLEN offset;
5776             SvOOK_offset(sv, offset);
5777             SvPV_set(sv, SvPVX_mutable(sv) - offset);
5778             /* Don't even bother with turning off the OOK flag.  */
5779         }
5780         if (SvROK(sv)) {
5781             SV * const target = SvRV(sv);
5782             if (SvWEAKREF(sv))
5783                 sv_del_backref(target, sv);
5784             else
5785                 SvREFCNT_dec(target);
5786         }
5787 #ifdef PERL_OLD_COPY_ON_WRITE
5788         else if (SvPVX_const(sv)) {
5789             if (SvIsCOW(sv)) {
5790                 /* I believe I need to grab the global SV mutex here and
5791                    then recheck the COW status.  */
5792                 if (DEBUG_C_TEST) {
5793                     PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
5794                     sv_dump(sv);
5795                 }
5796                 if (SvLEN(sv)) {
5797                     sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
5798                 } else {
5799                     unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5800                 }
5801
5802                 /* And drop it here.  */
5803                 SvFAKE_off(sv);
5804             } else if (SvLEN(sv)) {
5805                 Safefree(SvPVX_const(sv));
5806             }
5807         }
5808 #else
5809         else if (SvPVX_const(sv) && SvLEN(sv))
5810             Safefree(SvPVX_mutable(sv));
5811         else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
5812             unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5813             SvFAKE_off(sv);
5814         }
5815 #endif
5816         break;
5817     case SVt_NV:
5818         break;
5819     }
5820
5821     SvFLAGS(sv) &= SVf_BREAK;
5822     SvFLAGS(sv) |= SVTYPEMASK;
5823
5824     if (sv_type_details->arena) {
5825         del_body(((char *)SvANY(sv) + sv_type_details->offset),
5826                  &PL_body_roots[type]);
5827     }
5828     else if (sv_type_details->body_size) {
5829         my_safefree(SvANY(sv));
5830     }
5831 }
5832
5833 /*
5834 =for apidoc sv_newref
5835
5836 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5837 instead.
5838
5839 =cut
5840 */
5841
5842 SV *
5843 Perl_sv_newref(pTHX_ SV *const sv)
5844 {
5845     PERL_UNUSED_CONTEXT;
5846     if (sv)
5847         (SvREFCNT(sv))++;
5848     return sv;
5849 }
5850
5851 /*
5852 =for apidoc sv_free
5853
5854 Decrement an SV's reference count, and if it drops to zero, call
5855 C<sv_clear> to invoke destructors and free up any memory used by
5856 the body; finally, deallocate the SV's head itself.
5857 Normally called via a wrapper macro C<SvREFCNT_dec>.
5858
5859 =cut
5860 */
5861
5862 void
5863 Perl_sv_free(pTHX_ SV *const sv)
5864 {
5865     dVAR;
5866     if (!sv)
5867         return;
5868     if (SvREFCNT(sv) == 0) {
5869         if (SvFLAGS(sv) & SVf_BREAK)
5870             /* this SV's refcnt has been artificially decremented to
5871              * trigger cleanup */
5872             return;
5873         if (PL_in_clean_all) /* All is fair */
5874             return;
5875         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5876             /* make sure SvREFCNT(sv)==0 happens very seldom */
5877             SvREFCNT(sv) = (~(U32)0)/2;
5878             return;
5879         }
5880         if (ckWARN_d(WARN_INTERNAL)) {
5881 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
5882             Perl_dump_sv_child(aTHX_ sv);
5883 #else
5884   #ifdef DEBUG_LEAKING_SCALARS
5885             sv_dump(sv);
5886   #endif
5887 #ifdef DEBUG_LEAKING_SCALARS_ABORT
5888             if (PL_warnhook == PERL_WARNHOOK_FATAL
5889                 || ckDEAD(packWARN(WARN_INTERNAL))) {
5890                 /* Don't let Perl_warner cause us to escape our fate:  */
5891                 abort();
5892             }
5893 #endif
5894             /* This may not return:  */
5895             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
5896                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
5897                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
5898 #endif
5899         }
5900 #ifdef DEBUG_LEAKING_SCALARS_ABORT
5901         abort();
5902 #endif
5903         return;
5904     }
5905     if (--(SvREFCNT(sv)) > 0)
5906         return;
5907     Perl_sv_free2(aTHX_ sv);
5908 }
5909
5910 void
5911 Perl_sv_free2(pTHX_ SV *const sv)
5912 {
5913     dVAR;
5914
5915     PERL_ARGS_ASSERT_SV_FREE2;
5916
5917 #ifdef DEBUGGING
5918     if (SvTEMP(sv)) {
5919         if (ckWARN_d(WARN_DEBUGGING))
5920             Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
5921                         "Attempt to free temp prematurely: SV 0x%"UVxf
5922                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
5923         return;
5924     }
5925 #endif
5926     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5927         /* make sure SvREFCNT(sv)==0 happens very seldom */
5928         SvREFCNT(sv) = (~(U32)0)/2;
5929         return;
5930     }
5931     sv_clear(sv);
5932     if (! SvREFCNT(sv))
5933         del_SV(sv);
5934 }
5935
5936 /*
5937 =for apidoc sv_len
5938
5939 Returns the length of the string in the SV. Handles magic and type
5940 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
5941
5942 =cut
5943 */
5944
5945 STRLEN
5946 Perl_sv_len(pTHX_ register SV *const sv)
5947 {
5948     STRLEN len;
5949
5950     if (!sv)
5951         return 0;
5952
5953     if (SvGMAGICAL(sv))
5954         len = mg_length(sv);
5955     else
5956         (void)SvPV_const(sv, len);
5957     return len;
5958 }
5959
5960 /*
5961 =for apidoc sv_len_utf8
5962
5963 Returns the number of characters in the string in an SV, counting wide
5964 UTF-8 bytes as a single character. Handles magic and type coercion.
5965
5966 =cut
5967 */
5968
5969 /*
5970  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
5971  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
5972  * (Note that the mg_len is not the length of the mg_ptr field.
5973  * This allows the cache to store the character length of the string without
5974  * needing to malloc() extra storage to attach to the mg_ptr.)
5975  *
5976  */
5977
5978 STRLEN
5979 Perl_sv_len_utf8(pTHX_ register SV *const sv)
5980 {
5981     if (!sv)
5982         return 0;
5983
5984     if (SvGMAGICAL(sv))
5985         return mg_length(sv);
5986     else
5987     {
5988         STRLEN len;
5989         const U8 *s = (U8*)SvPV_const(sv, len);
5990
5991         if (PL_utf8cache) {
5992             STRLEN ulen;
5993             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
5994
5995             if (mg && mg->mg_len != -1) {
5996                 ulen = mg->mg_len;
5997                 if (PL_utf8cache < 0) {
5998                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
5999                     if (real != ulen) {
6000                         /* Need to turn the assertions off otherwise we may
6001                            recurse infinitely while printing error messages.
6002                         */
6003                         SAVEI8(PL_utf8cache);
6004                         PL_utf8cache = 0;
6005                         Perl_croak(aTHX_ "panic: sv_len_utf8 cache %"UVuf
6006                                    " real %"UVuf" for %"SVf,
6007                                    (UV) ulen, (UV) real, SVfARG(sv));
6008                     }
6009                 }
6010             }
6011             else {
6012                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6013                 if (!SvREADONLY(sv)) {
6014                     if (!mg) {
6015                         mg = sv_magicext(sv, 0, PERL_MAGIC_utf8,
6016                                          &PL_vtbl_utf8, 0, 0);
6017                     }
6018                     assert(mg);
6019                     mg->mg_len = ulen;
6020                 }
6021             }
6022             return ulen;
6023         }
6024         return Perl_utf8_length(aTHX_ s, s + len);
6025     }
6026 }
6027
6028 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6029    offset.  */
6030 static STRLEN
6031 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6032                       STRLEN uoffset)
6033 {
6034     const U8 *s = start;
6035
6036     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6037
6038     while (s < send && uoffset--)
6039         s += UTF8SKIP(s);
6040     if (s > send) {
6041         /* This is the existing behaviour. Possibly it should be a croak, as
6042            it's actually a bounds error  */
6043         s = send;
6044     }
6045     return s - start;
6046 }
6047
6048 /* Given the length of the string in both bytes and UTF-8 characters, decide
6049    whether to walk forwards or backwards to find the byte corresponding to
6050    the passed in UTF-8 offset.  */
6051 static STRLEN
6052 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6053                       const STRLEN uoffset, const STRLEN uend)
6054 {
6055     STRLEN backw = uend - uoffset;
6056
6057     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6058
6059     if (uoffset < 2 * backw) {
6060         /* The assumption is that going forwards is twice the speed of going
6061            forward (that's where the 2 * backw comes from).
6062            (The real figure of course depends on the UTF-8 data.)  */
6063         return sv_pos_u2b_forwards(start, send, uoffset);
6064     }
6065
6066     while (backw--) {
6067         send--;
6068         while (UTF8_IS_CONTINUATION(*send))
6069             send--;
6070     }
6071     return send - start;
6072 }
6073
6074 /* For the string representation of the given scalar, find the byte
6075    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6076    give another position in the string, *before* the sought offset, which
6077    (which is always true, as 0, 0 is a valid pair of positions), which should
6078    help reduce the amount of linear searching.
6079    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6080    will be used to reduce the amount of linear searching. The cache will be
6081    created if necessary, and the found value offered to it for update.  */
6082 static STRLEN
6083 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6084                     const U8 *const send, const STRLEN uoffset,
6085                     STRLEN uoffset0, STRLEN boffset0)
6086 {
6087     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6088     bool found = FALSE;
6089
6090     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6091
6092     assert (uoffset >= uoffset0);
6093
6094     if (SvMAGICAL(sv) && !SvREADONLY(sv) && PL_utf8cache
6095         && (*mgp || (*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6096         if ((*mgp)->mg_ptr) {
6097             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6098             if (cache[0] == uoffset) {
6099                 /* An exact match. */
6100                 return cache[1];
6101             }
6102             if (cache[2] == uoffset) {
6103                 /* An exact match. */
6104                 return cache[3];
6105             }
6106
6107             if (cache[0] < uoffset) {
6108                 /* The cache already knows part of the way.   */
6109                 if (cache[0] > uoffset0) {
6110                     /* The cache knows more than the passed in pair  */
6111                     uoffset0 = cache[0];
6112                     boffset0 = cache[1];
6113                 }
6114                 if ((*mgp)->mg_len != -1) {
6115                     /* And we know the end too.  */
6116                     boffset = boffset0
6117                         + sv_pos_u2b_midway(start + boffset0, send,
6118                                               uoffset - uoffset0,
6119                                               (*mgp)->mg_len - uoffset0);
6120                 } else {
6121                     boffset = boffset0
6122                         + sv_pos_u2b_forwards(start + boffset0,
6123                                                 send, uoffset - uoffset0);
6124                 }
6125             }
6126             else if (cache[2] < uoffset) {
6127                 /* We're between the two cache entries.  */
6128                 if (cache[2] > uoffset0) {
6129                     /* and the cache knows more than the passed in pair  */
6130                     uoffset0 = cache[2];
6131                     boffset0 = cache[3];
6132                 }
6133
6134                 boffset = boffset0
6135                     + sv_pos_u2b_midway(start + boffset0,
6136                                           start + cache[1],
6137                                           uoffset - uoffset0,
6138                                           cache[0] - uoffset0);
6139             } else {
6140                 boffset = boffset0
6141                     + sv_pos_u2b_midway(start + boffset0,
6142                                           start + cache[3],
6143                                           uoffset - uoffset0,
6144                                           cache[2] - uoffset0);
6145             }
6146             found = TRUE;
6147         }
6148         else if ((*mgp)->mg_len != -1) {
6149             /* If we can take advantage of a passed in offset, do so.  */
6150             /* In fact, offset0 is either 0, or less than offset, so don't
6151                need to worry about the other possibility.  */
6152             boffset = boffset0
6153                 + sv_pos_u2b_midway(start + boffset0, send,
6154                                       uoffset - uoffset0,
6155                                       (*mgp)->mg_len - uoffset0);
6156             found = TRUE;
6157         }
6158     }
6159
6160     if (!found || PL_utf8cache < 0) {
6161         const STRLEN real_boffset
6162             = boffset0 + sv_pos_u2b_forwards(start + boffset0,
6163                                                send, uoffset - uoffset0);
6164
6165         if (found && PL_utf8cache < 0) {
6166             if (real_boffset != boffset) {
6167                 /* Need to turn the assertions off otherwise we may recurse
6168                    infinitely while printing error messages.  */
6169                 SAVEI8(PL_utf8cache);
6170                 PL_utf8cache = 0;
6171                 Perl_croak(aTHX_ "panic: sv_pos_u2b_cache cache %"UVuf
6172                            " real %"UVuf" for %"SVf,
6173                            (UV) boffset, (UV) real_boffset, SVfARG(sv));
6174             }
6175         }
6176         boffset = real_boffset;
6177     }
6178
6179     if (PL_utf8cache)
6180         utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
6181     return boffset;
6182 }
6183
6184
6185 /*
6186 =for apidoc sv_pos_u2b
6187
6188 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6189 the start of the string, to a count of the equivalent number of bytes; if
6190 lenp is non-zero, it does the same to lenp, but this time starting from
6191 the offset, rather than from the start of the string. Handles magic and
6192 type coercion.
6193
6194 =cut
6195 */
6196
6197 /*
6198  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6199  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6200  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6201  *
6202  */
6203
6204 void
6205 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
6206 {
6207     const U8 *start;
6208     STRLEN len;
6209
6210     PERL_ARGS_ASSERT_SV_POS_U2B;
6211
6212     if (!sv)
6213         return;
6214
6215     start = (U8*)SvPV_const(sv, len);
6216     if (len) {
6217         STRLEN uoffset = (STRLEN) *offsetp;
6218         const U8 * const send = start + len;
6219         MAGIC *mg = NULL;
6220         const STRLEN boffset = sv_pos_u2b_cached(sv, &mg, start, send,
6221                                              uoffset, 0, 0);
6222
6223         *offsetp = (I32) boffset;
6224
6225         if (lenp) {
6226             /* Convert the relative offset to absolute.  */
6227             const STRLEN uoffset2 = uoffset + (STRLEN) *lenp;
6228             const STRLEN boffset2
6229                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
6230                                       uoffset, boffset) - boffset;
6231
6232             *lenp = boffset2;
6233         }
6234     }
6235     else {
6236          *offsetp = 0;
6237          if (lenp)
6238               *lenp = 0;
6239     }
6240
6241     return;
6242 }
6243
6244 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
6245    byte length pairing. The (byte) length of the total SV is passed in too,
6246    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
6247    may not have updated SvCUR, so we can't rely on reading it directly.
6248
6249    The proffered utf8/byte length pairing isn't used if the cache already has
6250    two pairs, and swapping either for the proffered pair would increase the
6251    RMS of the intervals between known byte offsets.
6252
6253    The cache itself consists of 4 STRLEN values
6254    0: larger UTF-8 offset
6255    1: corresponding byte offset
6256    2: smaller UTF-8 offset
6257    3: corresponding byte offset
6258
6259    Unused cache pairs have the value 0, 0.
6260    Keeping the cache "backwards" means that the invariant of
6261    cache[0] >= cache[2] is maintained even with empty slots, which means that
6262    the code that uses it doesn't need to worry if only 1 entry has actually
6263    been set to non-zero.  It also makes the "position beyond the end of the
6264    cache" logic much simpler, as the first slot is always the one to start
6265    from.   
6266 */
6267 static void
6268 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6269                            const STRLEN utf8, const STRLEN blen)
6270 {
6271     STRLEN *cache;
6272
6273     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6274
6275     if (SvREADONLY(sv))
6276         return;
6277
6278     if (!*mgp) {
6279         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6280                            0);
6281         (*mgp)->mg_len = -1;
6282     }
6283     assert(*mgp);
6284
6285     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6286         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6287         (*mgp)->mg_ptr = (char *) cache;
6288     }
6289     assert(cache);
6290
6291     if (PL_utf8cache < 0) {
6292         const U8 *start = (const U8 *) SvPVX_const(sv);
6293         const STRLEN realutf8 = utf8_length(start, start + byte);
6294
6295         if (realutf8 != utf8) {
6296             /* Need to turn the assertions off otherwise we may recurse
6297                infinitely while printing error messages.  */
6298             SAVEI8(PL_utf8cache);
6299             PL_utf8cache = 0;
6300             Perl_croak(aTHX_ "panic: utf8_mg_pos_cache_update cache %"UVuf
6301                        " real %"UVuf" for %"SVf, (UV) utf8, (UV) realutf8, SVfARG(sv));
6302         }
6303     }
6304
6305     /* Cache is held with the later position first, to simplify the code
6306        that deals with unbounded ends.  */
6307        
6308     ASSERT_UTF8_CACHE(cache);
6309     if (cache[1] == 0) {
6310         /* Cache is totally empty  */
6311         cache[0] = utf8;
6312         cache[1] = byte;
6313     } else if (cache[3] == 0) {
6314         if (byte > cache[1]) {
6315             /* New one is larger, so goes first.  */
6316             cache[2] = cache[0];
6317             cache[3] = cache[1];
6318             cache[0] = utf8;
6319             cache[1] = byte;
6320         } else {
6321             cache[2] = utf8;
6322             cache[3] = byte;
6323         }
6324     } else {
6325 #define THREEWAY_SQUARE(a,b,c,d) \
6326             ((float)((d) - (c))) * ((float)((d) - (c))) \
6327             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6328                + ((float)((b) - (a))) * ((float)((b) - (a)))
6329
6330         /* Cache has 2 slots in use, and we know three potential pairs.
6331            Keep the two that give the lowest RMS distance. Do the
6332            calcualation in bytes simply because we always know the byte
6333            length.  squareroot has the same ordering as the positive value,
6334            so don't bother with the actual square root.  */
6335         const float existing = THREEWAY_SQUARE(0, cache[3], cache[1], blen);
6336         if (byte > cache[1]) {
6337             /* New position is after the existing pair of pairs.  */
6338             const float keep_earlier
6339                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6340             const float keep_later
6341                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6342
6343             if (keep_later < keep_earlier) {
6344                 if (keep_later < existing) {
6345                     cache[2] = cache[0];
6346                     cache[3] = cache[1];
6347                     cache[0] = utf8;
6348                     cache[1] = byte;
6349                 }
6350             }
6351             else {
6352                 if (keep_earlier < existing) {
6353                     cache[0] = utf8;
6354                     cache[1] = byte;
6355                 }
6356             }
6357         }
6358         else if (byte > cache[3]) {
6359             /* New position is between the existing pair of pairs.  */
6360             const float keep_earlier
6361                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6362             const float keep_later
6363                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6364
6365             if (keep_later < keep_earlier) {
6366                 if (keep_later < existing) {
6367                     cache[2] = utf8;
6368                     cache[3] = byte;
6369                 }
6370             }
6371             else {
6372                 if (keep_earlier < existing) {
6373                     cache[0] = utf8;
6374                     cache[1] = byte;
6375                 }
6376             }
6377         }
6378         else {
6379             /* New position is before the existing pair of pairs.  */
6380             const float keep_earlier
6381                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
6382             const float keep_later
6383                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6384
6385             if (keep_later < keep_earlier) {
6386                 if (keep_later < existing) {
6387                     cache[2] = utf8;
6388                     cache[3] = byte;
6389                 }
6390             }
6391             else {
6392                 if (keep_earlier < existing) {
6393                     cache[0] = cache[2];
6394                     cache[1] = cache[3];
6395                     cache[2] = utf8;
6396                     cache[3] = byte;
6397                 }
6398             }
6399         }
6400     }
6401     ASSERT_UTF8_CACHE(cache);
6402 }
6403
6404 /* We already know all of the way, now we may be able to walk back.  The same
6405    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
6406    backward is half the speed of walking forward. */
6407 static STRLEN
6408 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
6409                     const U8 *end, STRLEN endu)
6410 {
6411     const STRLEN forw = target - s;
6412     STRLEN backw = end - target;
6413
6414     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
6415
6416     if (forw < 2 * backw) {
6417         return utf8_length(s, target);
6418     }
6419
6420     while (end > target) {
6421         end--;
6422         while (UTF8_IS_CONTINUATION(*end)) {
6423             end--;
6424         }
6425         endu--;
6426     }
6427     return endu;
6428 }
6429
6430 /*
6431 =for apidoc sv_pos_b2u
6432
6433 Converts the value pointed to by offsetp from a count of bytes from the
6434 start of the string, to a count of the equivalent number of UTF-8 chars.
6435 Handles magic and type coercion.
6436
6437 =cut
6438 */
6439
6440 /*
6441  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
6442  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6443  * byte offsets.
6444  *
6445  */
6446 void
6447 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
6448 {
6449     const U8* s;
6450     const STRLEN byte = *offsetp;
6451     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
6452     STRLEN blen;
6453     MAGIC* mg = NULL;
6454     const U8* send;
6455     bool found = FALSE;
6456
6457     PERL_ARGS_ASSERT_SV_POS_B2U;
6458
6459     if (!sv)
6460         return;
6461
6462     s = (const U8*)SvPV_const(sv, blen);
6463
6464     if (blen < byte)
6465         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
6466
6467     send = s + byte;
6468
6469     if (SvMAGICAL(sv) && !SvREADONLY(sv) && PL_utf8cache
6470         && (mg = mg_find(sv, PERL_MAGIC_utf8))) {
6471         if (mg->mg_ptr) {
6472             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
6473             if (cache[1] == byte) {
6474                 /* An exact match. */
6475                 *offsetp = cache[0];
6476                 return;
6477             }
6478             if (cache[3] == byte) {
6479                 /* An exact match. */
6480                 *offsetp = cache[2];
6481                 return;
6482             }
6483
6484             if (cache[1] < byte) {
6485                 /* We already know part of the way. */
6486                 if (mg->mg_len != -1) {
6487                     /* Actually, we know the end too.  */
6488                     len = cache[0]
6489                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
6490                                               s + blen, mg->mg_len - cache[0]);
6491                 } else {
6492                     len = cache[0] + utf8_length(s + cache[1], send);
6493                 }
6494             }
6495             else if (cache[3] < byte) {
6496                 /* We're between the two cached pairs, so we do the calculation
6497                    offset by the byte/utf-8 positions for the earlier pair,
6498                    then add the utf-8 characters from the string start to
6499                    there.  */
6500                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
6501                                           s + cache[1], cache[0] - cache[2])
6502                     + cache[2];
6503
6504             }
6505             else { /* cache[3] > byte */
6506                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
6507                                           cache[2]);
6508
6509             }
6510             ASSERT_UTF8_CACHE(cache);
6511             found = TRUE;
6512         } else if (mg->mg_len != -1) {
6513             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
6514             found = TRUE;
6515         }
6516     }
6517     if (!found || PL_utf8cache < 0) {
6518         const STRLEN real_len = utf8_length(s, send);
6519
6520         if (found && PL_utf8cache < 0) {
6521             if (len != real_len) {
6522                 /* Need to turn the assertions off otherwise we may recurse
6523                    infinitely while printing error messages.  */
6524                 SAVEI8(PL_utf8cache);
6525                 PL_utf8cache = 0;
6526                 Perl_croak(aTHX_ "panic: sv_pos_b2u cache %"UVuf
6527                            " real %"UVuf" for %"SVf,
6528                            (UV) len, (UV) real_len, SVfARG(sv));
6529             }
6530         }
6531         len = real_len;
6532     }
6533     *offsetp = len;
6534
6535     if (PL_utf8cache)
6536         utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
6537 }
6538
6539 /*
6540 =for apidoc sv_eq
6541
6542 Returns a boolean indicating whether the strings in the two SVs are
6543 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6544 coerce its args to strings if necessary.
6545
6546 =cut
6547 */
6548
6549 I32
6550 Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2)
6551 {
6552     dVAR;
6553     const char *pv1;
6554     STRLEN cur1;
6555     const char *pv2;
6556     STRLEN cur2;
6557     I32  eq     = 0;
6558     char *tpv   = NULL;
6559     SV* svrecode = NULL;
6560
6561     if (!sv1) {
6562         pv1 = "";
6563         cur1 = 0;
6564     }
6565     else {
6566         /* if pv1 and pv2 are the same, second SvPV_const call may
6567          * invalidate pv1, so we may need to make a copy */
6568         if (sv1 == sv2 && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
6569             pv1 = SvPV_const(sv1, cur1);
6570             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
6571         }
6572         pv1 = SvPV_const(sv1, cur1);
6573     }
6574
6575     if (!sv2){
6576         pv2 = "";
6577         cur2 = 0;
6578     }
6579     else
6580         pv2 = SvPV_const(sv2, cur2);
6581
6582     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6583         /* Differing utf8ness.
6584          * Do not UTF8size the comparands as a side-effect. */
6585          if (PL_encoding) {
6586               if (SvUTF8(sv1)) {
6587                    svrecode = newSVpvn(pv2, cur2);
6588                    sv_recode_to_utf8(svrecode, PL_encoding);
6589                    pv2 = SvPV_const(svrecode, cur2);
6590               }
6591               else {
6592                    svrecode = newSVpvn(pv1, cur1);
6593                    sv_recode_to_utf8(svrecode, PL_encoding);
6594                    pv1 = SvPV_const(svrecode, cur1);
6595               }
6596               /* Now both are in UTF-8. */
6597               if (cur1 != cur2) {
6598                    SvREFCNT_dec(svrecode);
6599                    return FALSE;
6600               }
6601          }
6602          else {
6603               bool is_utf8 = TRUE;
6604
6605               if (SvUTF8(sv1)) {
6606                    /* sv1 is the UTF-8 one,
6607                     * if is equal it must be downgrade-able */
6608                    char * const pv = (char*)bytes_from_utf8((const U8*)pv1,
6609                                                      &cur1, &is_utf8);
6610                    if (pv != pv1)
6611                         pv1 = tpv = pv;
6612               }
6613               else {
6614                    /* sv2 is the UTF-8 one,
6615                     * if is equal it must be downgrade-able */
6616                    char * const pv = (char *)bytes_from_utf8((const U8*)pv2,
6617                                                       &cur2, &is_utf8);
6618                    if (pv != pv2)
6619                         pv2 = tpv = pv;
6620               }
6621               if (is_utf8) {
6622                    /* Downgrade not possible - cannot be eq */
6623                    assert (tpv == 0);
6624                    return FALSE;
6625               }
6626          }
6627     }
6628
6629     if (cur1 == cur2)
6630         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
6631         
6632     SvREFCNT_dec(svrecode);
6633     if (tpv)
6634         Safefree(tpv);
6635
6636     return eq;
6637 }
6638
6639 /*
6640 =for apidoc sv_cmp
6641
6642 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
6643 string in C<sv1> is less than, equal to, or greater than the string in
6644 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6645 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
6646
6647 =cut
6648 */
6649
6650 I32
6651 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
6652 {
6653     dVAR;
6654     STRLEN cur1, cur2;
6655     const char *pv1, *pv2;
6656     char *tpv = NULL;
6657     I32  cmp;
6658     SV *svrecode = NULL;
6659
6660     if (!sv1) {
6661         pv1 = "";
6662         cur1 = 0;
6663     }
6664     else
6665         pv1 = SvPV_const(sv1, cur1);
6666
6667     if (!sv2) {
6668         pv2 = "";
6669         cur2 = 0;
6670     }
6671     else
6672         pv2 = SvPV_const(sv2, cur2);
6673
6674     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6675         /* Differing utf8ness.
6676          * Do not UTF8size the comparands as a side-effect. */
6677         if (SvUTF8(sv1)) {
6678             if (PL_encoding) {
6679                  svrecode = newSVpvn(pv2, cur2);
6680                  sv_recode_to_utf8(svrecode, PL_encoding);
6681                  pv2 = SvPV_const(svrecode, cur2);
6682             }
6683             else {
6684                  pv2 = tpv = (char*)bytes_to_utf8((const U8*)pv2, &cur2);
6685             }
6686         }
6687         else {
6688             if (PL_encoding) {
6689                  svrecode = newSVpvn(pv1, cur1);
6690                  sv_recode_to_utf8(svrecode, PL_encoding);
6691                  pv1 = SvPV_const(svrecode, cur1);
6692             }
6693             else {
6694                  pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
6695             }
6696         }
6697     }
6698
6699     if (!cur1) {
6700         cmp = cur2 ? -1 : 0;
6701     } else if (!cur2) {
6702         cmp = 1;
6703     } else {
6704         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
6705
6706         if (retval) {
6707             cmp = retval < 0 ? -1 : 1;
6708         } else if (cur1 == cur2) {
6709             cmp = 0;
6710         } else {
6711             cmp = cur1 < cur2 ? -1 : 1;
6712         }
6713     }
6714
6715     SvREFCNT_dec(svrecode);
6716     if (tpv)
6717         Safefree(tpv);
6718
6719     return cmp;
6720 }
6721
6722 /*
6723 =for apidoc sv_cmp_locale
6724
6725 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
6726 'use bytes' aware, handles get magic, and will coerce its args to strings
6727 if necessary.  See also C<sv_cmp>.
6728
6729 =cut
6730 */
6731
6732 I32
6733 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
6734 {
6735     dVAR;
6736 #ifdef USE_LOCALE_COLLATE
6737
6738     char *pv1, *pv2;
6739     STRLEN len1, len2;
6740     I32 retval;
6741
6742     if (PL_collation_standard)
6743         goto raw_compare;
6744
6745     len1 = 0;
6746     pv1 = sv1 ? sv_collxfrm(sv1, &len1) : (char *) NULL;
6747     len2 = 0;
6748     pv2 = sv2 ? sv_collxfrm(sv2, &len2) : (char *) NULL;
6749
6750     if (!pv1 || !len1) {
6751         if (pv2 && len2)
6752             return -1;
6753         else
6754             goto raw_compare;
6755     }
6756     else {
6757         if (!pv2 || !len2)
6758             return 1;
6759     }
6760
6761     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
6762
6763     if (retval)
6764         return retval < 0 ? -1 : 1;
6765
6766     /*
6767      * When the result of collation is equality, that doesn't mean
6768      * that there are no differences -- some locales exclude some
6769      * characters from consideration.  So to avoid false equalities,
6770      * we use the raw string as a tiebreaker.
6771      */
6772
6773   raw_compare:
6774     /*FALLTHROUGH*/
6775
6776 #endif /* USE_LOCALE_COLLATE */
6777
6778     return sv_cmp(sv1, sv2);
6779 }
6780
6781
6782 #ifdef USE_LOCALE_COLLATE
6783
6784 /*
6785 =for apidoc sv_collxfrm
6786
6787 Add Collate Transform magic to an SV if it doesn't already have it.
6788
6789 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
6790 scalar data of the variable, but transformed to such a format that a normal
6791 memory comparison can be used to compare the data according to the locale
6792 settings.
6793
6794 =cut
6795 */
6796
6797 char *
6798 Perl_sv_collxfrm(pTHX_ SV *const sv, STRLEN *const nxp)
6799 {
6800     dVAR;
6801     MAGIC *mg;
6802
6803     PERL_ARGS_ASSERT_SV_COLLXFRM;
6804
6805     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
6806     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
6807         const char *s;
6808         char *xf;
6809         STRLEN len, xlen;
6810
6811         if (mg)
6812             Safefree(mg->mg_ptr);
6813         s = SvPV_const(sv, len);
6814         if ((xf = mem_collxfrm(s, len, &xlen))) {
6815             if (! mg) {
6816 #ifdef PERL_OLD_COPY_ON_WRITE
6817                 if (SvIsCOW(sv))
6818                     sv_force_normal_flags(sv, 0);
6819 #endif
6820                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
6821                                  0, 0);
6822                 assert(mg);
6823             }
6824             mg->mg_ptr = xf;
6825             mg->mg_len = xlen;
6826         }
6827         else {
6828             if (mg) {
6829                 mg->mg_ptr = NULL;
6830                 mg->mg_len = -1;
6831             }
6832         }
6833     }
6834     if (mg && mg->mg_ptr) {
6835         *nxp = mg->mg_len;
6836         return mg->mg_ptr + sizeof(PL_collation_ix);
6837     }
6838     else {
6839         *nxp = 0;
6840         return NULL;
6841     }
6842 }
6843
6844 #endif /* USE_LOCALE_COLLATE */
6845
6846 /*
6847 =for apidoc sv_gets
6848
6849 Get a line from the filehandle and store it into the SV, optionally
6850 appending to the currently-stored string.
6851
6852 =cut
6853 */
6854
6855 char *
6856 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
6857 {
6858     dVAR;
6859     const char *rsptr;
6860     STRLEN rslen;
6861     register STDCHAR rslast;
6862     register STDCHAR *bp;
6863     register I32 cnt;
6864     I32 i = 0;
6865     I32 rspara = 0;
6866
6867     PERL_ARGS_ASSERT_SV_GETS;
6868
6869     if (SvTHINKFIRST(sv))
6870         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
6871     /* XXX. If you make this PVIV, then copy on write can copy scalars read
6872        from <>.
6873        However, perlbench says it's slower, because the existing swipe code
6874        is faster than copy on write.
6875        Swings and roundabouts.  */
6876     SvUPGRADE(sv, SVt_PV);
6877
6878     SvSCREAM_off(sv);
6879
6880     if (append) {
6881         if (PerlIO_isutf8(fp)) {
6882             if (!SvUTF8(sv)) {
6883                 sv_utf8_upgrade_nomg(sv);
6884                 sv_pos_u2b(sv,&append,0);
6885             }
6886         } else if (SvUTF8(sv)) {
6887             SV * const tsv = newSV(0);
6888             sv_gets(tsv, fp, 0);
6889             sv_utf8_upgrade_nomg(tsv);
6890             SvCUR_set(sv,append);
6891             sv_catsv(sv,tsv);
6892             sv_free(tsv);
6893             goto return_string_or_null;
6894         }
6895     }
6896
6897     SvPOK_only(sv);
6898     if (PerlIO_isutf8(fp))
6899         SvUTF8_on(sv);
6900
6901     if (IN_PERL_COMPILETIME) {
6902         /* we always read code in line mode */
6903         rsptr = "\n";
6904         rslen = 1;
6905     }
6906     else if (RsSNARF(PL_rs)) {
6907         /* If it is a regular disk file use size from stat() as estimate
6908            of amount we are going to read -- may result in mallocing
6909            more memory than we really need if the layers below reduce
6910            the size we read (e.g. CRLF or a gzip layer).
6911          */
6912         Stat_t st;
6913         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
6914             const Off_t offset = PerlIO_tell(fp);
6915             if (offset != (Off_t) -1 && st.st_size + append > offset) {
6916                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
6917             }
6918         }
6919         rsptr = NULL;
6920         rslen = 0;
6921     }
6922     else if (RsRECORD(PL_rs)) {
6923       I32 bytesread;
6924       char *buffer;
6925       U32 recsize;
6926 #ifdef VMS
6927       int fd;
6928 #endif
6929
6930       /* Grab the size of the record we're getting */
6931       recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
6932       buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
6933       /* Go yank in */
6934 #ifdef VMS
6935       /* VMS wants read instead of fread, because fread doesn't respect */
6936       /* RMS record boundaries. This is not necessarily a good thing to be */
6937       /* doing, but we've got no other real choice - except avoid stdio
6938          as implementation - perhaps write a :vms layer ?
6939        */
6940       fd = PerlIO_fileno(fp);
6941       if (fd == -1) { /* in-memory file from PerlIO::Scalar */
6942           bytesread = PerlIO_read(fp, buffer, recsize);
6943       }
6944       else {
6945           bytesread = PerlLIO_read(fd, buffer, recsize);
6946       }
6947 #else
6948       bytesread = PerlIO_read(fp, buffer, recsize);
6949 #endif
6950       if (bytesread < 0)
6951           bytesread = 0;
6952       SvCUR_set(sv, bytesread + append);
6953       buffer[bytesread] = '\0';
6954       goto return_string_or_null;
6955     }
6956     else if (RsPARA(PL_rs)) {
6957         rsptr = "\n\n";
6958         rslen = 2;
6959         rspara = 1;
6960     }
6961     else {
6962         /* Get $/ i.e. PL_rs into same encoding as stream wants */
6963         if (PerlIO_isutf8(fp)) {
6964             rsptr = SvPVutf8(PL_rs, rslen);
6965         }
6966         else {
6967             if (SvUTF8(PL_rs)) {
6968                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
6969                     Perl_croak(aTHX_ "Wide character in $/");
6970                 }
6971             }
6972             rsptr = SvPV_const(PL_rs, rslen);
6973         }
6974     }
6975
6976     rslast = rslen ? rsptr[rslen - 1] : '\0';
6977
6978     if (rspara) {               /* have to do this both before and after */
6979         do {                    /* to make sure file boundaries work right */
6980             if (PerlIO_eof(fp))
6981                 return 0;
6982             i = PerlIO_getc(fp);
6983             if (i != '\n') {
6984                 if (i == -1)
6985                     return 0;
6986                 PerlIO_ungetc(fp,i);
6987                 break;
6988             }
6989         } while (i != EOF);
6990     }
6991
6992     /* See if we know enough about I/O mechanism to cheat it ! */
6993
6994     /* This used to be #ifdef test - it is made run-time test for ease
6995        of abstracting out stdio interface. One call should be cheap
6996        enough here - and may even be a macro allowing compile
6997        time optimization.
6998      */
6999
7000     if (PerlIO_fast_gets(fp)) {
7001
7002     /*
7003      * We're going to steal some values from the stdio struct
7004      * and put EVERYTHING in the innermost loop into registers.
7005      */
7006     register STDCHAR *ptr;
7007     STRLEN bpx;
7008     I32 shortbuffered;
7009
7010 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7011     /* An ungetc()d char is handled separately from the regular
7012      * buffer, so we getc() it back out and stuff it in the buffer.
7013      */
7014     i = PerlIO_getc(fp);
7015     if (i == EOF) return 0;
7016     *(--((*fp)->_ptr)) = (unsigned char) i;
7017     (*fp)->_cnt++;
7018 #endif
7019
7020     /* Here is some breathtakingly efficient cheating */
7021
7022     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7023     /* make sure we have the room */
7024     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7025         /* Not room for all of it
7026            if we are looking for a separator and room for some
7027          */
7028         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7029             /* just process what we have room for */
7030             shortbuffered = cnt - SvLEN(sv) + append + 1;
7031             cnt -= shortbuffered;
7032         }
7033         else {
7034             shortbuffered = 0;
7035             /* remember that cnt can be negative */
7036             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7037         }
7038     }
7039     else
7040         shortbuffered = 0;
7041     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
7042     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7043     DEBUG_P(PerlIO_printf(Perl_debug_log,
7044         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7045     DEBUG_P(PerlIO_printf(Perl_debug_log,
7046         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7047                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7048                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7049     for (;;) {
7050       screamer:
7051         if (cnt > 0) {
7052             if (rslen) {
7053                 while (cnt > 0) {                    /* this     |  eat */
7054                     cnt--;
7055                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7056                         goto thats_all_folks;        /* screams  |  sed :-) */
7057                 }
7058             }
7059             else {
7060                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7061                 bp += cnt;                           /* screams  |  dust */
7062                 ptr += cnt;                          /* louder   |  sed :-) */
7063                 cnt = 0;
7064             }
7065         }
7066         
7067         if (shortbuffered) {            /* oh well, must extend */
7068             cnt = shortbuffered;
7069             shortbuffered = 0;
7070             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
7071             SvCUR_set(sv, bpx);
7072             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7073             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
7074             continue;
7075         }
7076
7077         DEBUG_P(PerlIO_printf(Perl_debug_log,
7078                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7079                               PTR2UV(ptr),(long)cnt));
7080         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7081 #if 0
7082         DEBUG_P(PerlIO_printf(Perl_debug_log,
7083             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7084             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7085             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7086 #endif
7087         /* This used to call 'filbuf' in stdio form, but as that behaves like
7088            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7089            another abstraction.  */
7090         i   = PerlIO_getc(fp);          /* get more characters */
7091 #if 0
7092         DEBUG_P(PerlIO_printf(Perl_debug_log,
7093             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7094             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7095             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7096 #endif
7097         cnt = PerlIO_get_cnt(fp);
7098         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7099         DEBUG_P(PerlIO_printf(Perl_debug_log,
7100             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7101
7102         if (i == EOF)                   /* all done for ever? */
7103             goto thats_really_all_folks;
7104
7105         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
7106         SvCUR_set(sv, bpx);
7107         SvGROW(sv, bpx + cnt + 2);
7108         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
7109
7110         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7111
7112         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7113             goto thats_all_folks;
7114     }
7115
7116 thats_all_folks:
7117     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
7118           memNE((char*)bp - rslen, rsptr, rslen))
7119         goto screamer;                          /* go back to the fray */
7120 thats_really_all_folks:
7121     if (shortbuffered)
7122         cnt += shortbuffered;
7123         DEBUG_P(PerlIO_printf(Perl_debug_log,
7124             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7125     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7126     DEBUG_P(PerlIO_printf(Perl_debug_log,
7127         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7128         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7129         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7130     *bp = '\0';
7131     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
7132     DEBUG_P(PerlIO_printf(Perl_debug_log,
7133         "Screamer: done, len=%ld, string=|%.*s|\n",
7134         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
7135     }
7136    else
7137     {
7138        /*The big, slow, and stupid way. */
7139 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7140         STDCHAR *buf = NULL;
7141         Newx(buf, 8192, STDCHAR);
7142         assert(buf);
7143 #else
7144         STDCHAR buf[8192];
7145 #endif
7146
7147 screamer2:
7148         if (rslen) {
7149             register const STDCHAR * const bpe = buf + sizeof(buf);
7150             bp = buf;
7151             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7152                 ; /* keep reading */
7153             cnt = bp - buf;
7154         }
7155         else {
7156             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7157             /* Accomodate broken VAXC compiler, which applies U8 cast to
7158              * both args of ?: operator, causing EOF to change into 255
7159              */
7160             if (cnt > 0)
7161                  i = (U8)buf[cnt - 1];
7162             else
7163                  i = EOF;
7164         }
7165
7166         if (cnt < 0)
7167             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7168         if (append)
7169              sv_catpvn(sv, (char *) buf, cnt);
7170         else
7171              sv_setpvn(sv, (char *) buf, cnt);
7172
7173         if (i != EOF &&                 /* joy */
7174             (!rslen ||
7175              SvCUR(sv) < rslen ||
7176              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7177         {
7178             append = -1;
7179             /*
7180              * If we're reading from a TTY and we get a short read,
7181              * indicating that the user hit his EOF character, we need
7182              * to notice it now, because if we try to read from the TTY
7183              * again, the EOF condition will disappear.
7184              *
7185              * The comparison of cnt to sizeof(buf) is an optimization
7186              * that prevents unnecessary calls to feof().
7187              *
7188              * - jik 9/25/96
7189              */
7190             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
7191                 goto screamer2;
7192         }
7193
7194 #ifdef USE_HEAP_INSTEAD_OF_STACK
7195         Safefree(buf);
7196 #endif
7197     }
7198
7199     if (rspara) {               /* have to do this both before and after */
7200         while (i != EOF) {      /* to make sure file boundaries work right */
7201             i = PerlIO_getc(fp);
7202             if (i != '\n') {
7203                 PerlIO_ungetc(fp,i);
7204                 break;
7205             }
7206         }
7207     }
7208
7209 return_string_or_null:
7210     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7211 }
7212
7213 /*
7214 =for apidoc sv_inc
7215
7216 Auto-increment of the value in the SV, doing string to numeric conversion
7217 if necessary. Handles 'get' magic.
7218
7219 =cut
7220 */
7221
7222 void
7223 Perl_sv_inc(pTHX_ register SV *const sv)
7224 {
7225     dVAR;
7226     register char *d;
7227     int flags;
7228
7229     if (!sv)
7230         return;
7231     SvGETMAGIC(sv);
7232     if (SvTHINKFIRST(sv)) {
7233         if (SvIsCOW(sv))
7234             sv_force_normal_flags(sv, 0);
7235         if (SvREADONLY(sv)) {
7236             if (IN_PERL_RUNTIME)
7237                 Perl_croak(aTHX_ "%s", PL_no_modify);
7238         }
7239         if (SvROK(sv)) {
7240             IV i;
7241             if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
7242                 return;
7243             i = PTR2IV(SvRV(sv));
7244             sv_unref(sv);
7245             sv_setiv(sv, i);
7246         }
7247     }
7248     flags = SvFLAGS(sv);
7249     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7250         /* It's (privately or publicly) a float, but not tested as an
7251            integer, so test it to see. */
7252         (void) SvIV(sv);
7253         flags = SvFLAGS(sv);
7254     }
7255     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7256         /* It's publicly an integer, or privately an integer-not-float */
7257 #ifdef PERL_PRESERVE_IVUV
7258       oops_its_int:
7259 #endif
7260         if (SvIsUV(sv)) {
7261             if (SvUVX(sv) == UV_MAX)
7262                 sv_setnv(sv, UV_MAX_P1);
7263             else
7264                 (void)SvIOK_only_UV(sv);
7265                 SvUV_set(sv, SvUVX(sv) + 1);
7266         } else {
7267             if (SvIVX(sv) == IV_MAX)
7268                 sv_setuv(sv, (UV)IV_MAX + 1);
7269             else {
7270                 (void)SvIOK_only(sv);
7271                 SvIV_set(sv, SvIVX(sv) + 1);
7272             }   
7273         }
7274         return;
7275     }
7276     if (flags & SVp_NOK) {
7277         const NV was = SvNVX(sv);
7278         if (NV_OVERFLOWS_INTEGERS_AT &&
7279             was >= NV_OVERFLOWS_INTEGERS_AT && ckWARN(WARN_IMPRECISION)) {
7280             Perl_warner(aTHX_ packWARN(WARN_IMPRECISION),
7281                         "Lost precision when incrementing %" NVff " by 1",
7282                         was);
7283         }
7284         (void)SvNOK_only(sv);
7285         SvNV_set(sv, was + 1.0);
7286         return;
7287     }
7288
7289     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
7290         if ((flags & SVTYPEMASK) < SVt_PVIV)
7291             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
7292         (void)SvIOK_only(sv);
7293         SvIV_set(sv, 1);
7294         return;
7295     }
7296     d = SvPVX(sv);
7297     while (isALPHA(*d)) d++;
7298     while (isDIGIT(*d)) d++;
7299     if (*d) {
7300 #ifdef PERL_PRESERVE_IVUV
7301         /* Got to punt this as an integer if needs be, but we don't issue
7302            warnings. Probably ought to make the sv_iv_please() that does
7303            the conversion if possible, and silently.  */
7304         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7305         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7306             /* Need to try really hard to see if it's an integer.
7307                9.22337203685478e+18 is an integer.
7308                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7309                so $a="9.22337203685478e+18"; $a+0; $a++
7310                needs to be the same as $a="9.22337203685478e+18"; $a++
7311                or we go insane. */
7312         
7313             (void) sv_2iv(sv);
7314             if (SvIOK(sv))
7315                 goto oops_its_int;
7316
7317             /* sv_2iv *should* have made this an NV */
7318             if (flags & SVp_NOK) {
7319                 (void)SvNOK_only(sv);
7320                 SvNV_set(sv, SvNVX(sv) + 1.0);
7321                 return;
7322             }
7323             /* I don't think we can get here. Maybe I should assert this
7324                And if we do get here I suspect that sv_setnv will croak. NWC
7325                Fall through. */
7326 #if defined(USE_LONG_DOUBLE)
7327             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",
7328                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7329 #else
7330             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7331                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7332 #endif
7333         }
7334 #endif /* PERL_PRESERVE_IVUV */
7335         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
7336         return;
7337     }
7338     d--;
7339     while (d >= SvPVX_const(sv)) {
7340         if (isDIGIT(*d)) {
7341             if (++*d <= '9')
7342                 return;
7343             *(d--) = '0';
7344         }
7345         else {
7346 #ifdef EBCDIC
7347             /* MKS: The original code here died if letters weren't consecutive.
7348              * at least it didn't have to worry about non-C locales.  The
7349              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
7350              * arranged in order (although not consecutively) and that only
7351              * [A-Za-z] are accepted by isALPHA in the C locale.
7352              */
7353             if (*d != 'z' && *d != 'Z') {
7354                 do { ++*d; } while (!isALPHA(*d));
7355                 return;
7356             }
7357             *(d--) -= 'z' - 'a';
7358 #else
7359             ++*d;
7360             if (isALPHA(*d))
7361                 return;
7362             *(d--) -= 'z' - 'a' + 1;
7363 #endif
7364         }
7365     }
7366     /* oh,oh, the number grew */
7367     SvGROW(sv, SvCUR(sv) + 2);
7368     SvCUR_set(sv, SvCUR(sv) + 1);
7369     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
7370         *d = d[-1];
7371     if (isDIGIT(d[1]))
7372         *d = '1';
7373     else
7374         *d = d[1];
7375 }
7376
7377 /*
7378 =for apidoc sv_dec
7379
7380 Auto-decrement of the value in the SV, doing string to numeric conversion
7381 if necessary. Handles 'get' magic.
7382
7383 =cut
7384 */
7385
7386 void
7387 Perl_sv_dec(pTHX_ register SV *const sv)
7388 {
7389     dVAR;
7390     int flags;
7391
7392     if (!sv)
7393         return;
7394     SvGETMAGIC(sv);
7395     if (SvTHINKFIRST(sv)) {
7396         if (SvIsCOW(sv))
7397             sv_force_normal_flags(sv, 0);
7398         if (SvREADONLY(sv)) {
7399             if (IN_PERL_RUNTIME)
7400                 Perl_croak(aTHX_ "%s", PL_no_modify);
7401         }
7402         if (SvROK(sv)) {
7403             IV i;
7404             if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
7405                 return;
7406             i = PTR2IV(SvRV(sv));
7407             sv_unref(sv);
7408             sv_setiv(sv, i);
7409         }
7410     }
7411     /* Unlike sv_inc we don't have to worry about string-never-numbers
7412        and keeping them magic. But we mustn't warn on punting */
7413     flags = SvFLAGS(sv);
7414     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7415         /* It's publicly an integer, or privately an integer-not-float */
7416 #ifdef PERL_PRESERVE_IVUV
7417       oops_its_int:
7418 #endif
7419         if (SvIsUV(sv)) {
7420             if (SvUVX(sv) == 0) {
7421                 (void)SvIOK_only(sv);
7422                 SvIV_set(sv, -1);
7423             }
7424             else {
7425                 (void)SvIOK_only_UV(sv);
7426                 SvUV_set(sv, SvUVX(sv) - 1);
7427             }   
7428         } else {
7429             if (SvIVX(sv) == IV_MIN) {
7430                 sv_setnv(sv, (NV)IV_MIN);
7431                 goto oops_its_num;
7432             }
7433             else {
7434                 (void)SvIOK_only(sv);
7435                 SvIV_set(sv, SvIVX(sv) - 1);
7436             }   
7437         }
7438         return;
7439     }
7440     if (flags & SVp_NOK) {
7441     oops_its_num:
7442         {
7443             const NV was = SvNVX(sv);
7444             if (NV_OVERFLOWS_INTEGERS_AT &&
7445                 was <= -NV_OVERFLOWS_INTEGERS_AT && ckWARN(WARN_IMPRECISION)) {
7446                 Perl_warner(aTHX_ packWARN(WARN_IMPRECISION),
7447                             "Lost precision when decrementing %" NVff " by 1",
7448                             was);
7449             }
7450             (void)SvNOK_only(sv);
7451             SvNV_set(sv, was - 1.0);
7452             return;
7453         }
7454     }
7455     if (!(flags & SVp_POK)) {
7456         if ((flags & SVTYPEMASK) < SVt_PVIV)
7457             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
7458         SvIV_set(sv, -1);
7459         (void)SvIOK_only(sv);
7460         return;
7461     }
7462 #ifdef PERL_PRESERVE_IVUV
7463     {
7464         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7465         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7466             /* Need to try really hard to see if it's an integer.
7467                9.22337203685478e+18 is an integer.
7468                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7469                so $a="9.22337203685478e+18"; $a+0; $a--
7470                needs to be the same as $a="9.22337203685478e+18"; $a--
7471                or we go insane. */
7472         
7473             (void) sv_2iv(sv);
7474             if (SvIOK(sv))
7475                 goto oops_its_int;
7476
7477             /* sv_2iv *should* have made this an NV */
7478             if (flags & SVp_NOK) {
7479                 (void)SvNOK_only(sv);
7480                 SvNV_set(sv, SvNVX(sv) - 1.0);
7481                 return;
7482             }
7483             /* I don't think we can get here. Maybe I should assert this
7484                And if we do get here I suspect that sv_setnv will croak. NWC
7485                Fall through. */
7486 #if defined(USE_LONG_DOUBLE)
7487             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",
7488                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7489 #else
7490             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7491                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7492 #endif
7493         }
7494     }
7495 #endif /* PERL_PRESERVE_IVUV */
7496     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
7497 }
7498
7499 /*
7500 =for apidoc sv_mortalcopy
7501
7502 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
7503 The new SV is marked as mortal. It will be destroyed "soon", either by an
7504 explicit call to FREETMPS, or by an implicit call at places such as
7505 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
7506
7507 =cut
7508 */
7509
7510 /* Make a string that will exist for the duration of the expression
7511  * evaluation.  Actually, it may have to last longer than that, but
7512  * hopefully we won't free it until it has been assigned to a
7513  * permanent location. */
7514
7515 SV *
7516 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
7517 {
7518     dVAR;
7519     register SV *sv;
7520
7521     new_SV(sv);
7522     sv_setsv(sv,oldstr);
7523     EXTEND_MORTAL(1);
7524     PL_tmps_stack[++PL_tmps_ix] = sv;
7525     SvTEMP_on(sv);
7526     return sv;
7527 }
7528
7529 /*
7530 =for apidoc sv_newmortal
7531
7532 Creates a new null SV which is mortal.  The reference count of the SV is
7533 set to 1. It will be destroyed "soon", either by an explicit call to
7534 FREETMPS, or by an implicit call at places such as statement boundaries.
7535 See also C<sv_mortalcopy> and C<sv_2mortal>.
7536
7537 =cut
7538 */
7539
7540 SV *
7541 Perl_sv_newmortal(pTHX)
7542 {
7543     dVAR;
7544     register SV *sv;
7545
7546     new_SV(sv);
7547     SvFLAGS(sv) = SVs_TEMP;
7548     EXTEND_MORTAL(1);
7549     PL_tmps_stack[++PL_tmps_ix] = sv;
7550     return sv;
7551 }
7552
7553
7554 /*
7555 =for apidoc newSVpvn_flags
7556
7557 Creates a new SV and copies a string into it.  The reference count for the
7558 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7559 string.  You are responsible for ensuring that the source string is at least
7560 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7561 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
7562 If C<SVs_TEMP> is set, then C<sv2mortal()> is called on the result before
7563 returning. If C<SVf_UTF8> is set, then it will be set on the new SV.
7564 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
7565
7566     #define newSVpvn_utf8(s, len, u)                    \
7567         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
7568
7569 =cut
7570 */
7571
7572 SV *
7573 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
7574 {
7575     dVAR;
7576     register SV *sv;
7577
7578     /* All the flags we don't support must be zero.
7579        And we're new code so I'm going to assert this from the start.  */
7580     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
7581     new_SV(sv);
7582     sv_setpvn(sv,s,len);
7583     SvFLAGS(sv) |= (flags & SVf_UTF8);
7584     return (flags & SVs_TEMP) ? sv_2mortal(sv) : sv;
7585 }
7586
7587 /*
7588 =for apidoc sv_2mortal
7589
7590 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
7591 by an explicit call to FREETMPS, or by an implicit call at places such as
7592 statement boundaries.  SvTEMP() is turned on which means that the SV's
7593 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
7594 and C<sv_mortalcopy>.
7595
7596 =cut
7597 */
7598
7599 SV *
7600 Perl_sv_2mortal(pTHX_ register SV *const sv)
7601 {
7602     dVAR;
7603     if (!sv)
7604         return NULL;
7605     if (SvREADONLY(sv) && SvIMMORTAL(sv))
7606         return sv;
7607     EXTEND_MORTAL(1);
7608     PL_tmps_stack[++PL_tmps_ix] = sv;
7609     SvTEMP_on(sv);
7610     return sv;
7611 }
7612
7613 /*
7614 =for apidoc newSVpv
7615
7616 Creates a new SV and copies a string into it.  The reference count for the
7617 SV is set to 1.  If C<len> is zero, Perl will compute the length using
7618 strlen().  For efficiency, consider using C<newSVpvn> instead.
7619
7620 =cut
7621 */
7622
7623 SV *
7624 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
7625 {
7626     dVAR;
7627     register SV *sv;
7628
7629     new_SV(sv);
7630     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
7631     return sv;
7632 }
7633
7634 /*
7635 =for apidoc newSVpvn
7636
7637 Creates a new SV and copies a string into it.  The reference count for the
7638 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7639 string.  You are responsible for ensuring that the source string is at least
7640 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7641
7642 =cut
7643 */
7644
7645 SV *
7646 Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len)
7647 {
7648     dVAR;
7649     register SV *sv;
7650
7651     new_SV(sv);
7652     sv_setpvn(sv,s,len);
7653     return sv;
7654 }
7655
7656 /*
7657 =for apidoc newSVhek
7658
7659 Creates a new SV from the hash key structure.  It will generate scalars that
7660 point to the shared string table where possible. Returns a new (undefined)
7661 SV if the hek is NULL.
7662
7663 =cut
7664 */
7665
7666 SV *
7667 Perl_newSVhek(pTHX_ const HEK *const hek)
7668 {
7669     dVAR;
7670     if (!hek) {
7671         SV *sv;
7672
7673         new_SV(sv);
7674         return sv;
7675     }
7676
7677     if (HEK_LEN(hek) == HEf_SVKEY) {
7678         return newSVsv(*(SV**)HEK_KEY(hek));
7679     } else {
7680         const int flags = HEK_FLAGS(hek);
7681         if (flags & HVhek_WASUTF8) {
7682             /* Trouble :-)
7683                Andreas would like keys he put in as utf8 to come back as utf8
7684             */
7685             STRLEN utf8_len = HEK_LEN(hek);
7686             const U8 *as_utf8 = bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
7687             SV * const sv = newSVpvn ((const char*)as_utf8, utf8_len);
7688
7689             SvUTF8_on (sv);
7690             Safefree (as_utf8); /* bytes_to_utf8() allocates a new string */
7691             return sv;
7692         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
7693             /* We don't have a pointer to the hv, so we have to replicate the
7694                flag into every HEK. This hv is using custom a hasing
7695                algorithm. Hence we can't return a shared string scalar, as
7696                that would contain the (wrong) hash value, and might get passed
7697                into an hv routine with a regular hash.
7698                Similarly, a hash that isn't using shared hash keys has to have
7699                the flag in every key so that we know not to try to call
7700                share_hek_kek on it.  */
7701
7702             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
7703             if (HEK_UTF8(hek))
7704                 SvUTF8_on (sv);
7705             return sv;
7706         }
7707         /* This will be overwhelminly the most common case.  */
7708         {
7709             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
7710                more efficient than sharepvn().  */
7711             SV *sv;
7712
7713             new_SV(sv);
7714             sv_upgrade(sv, SVt_PV);
7715             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
7716             SvCUR_set(sv, HEK_LEN(hek));
7717             SvLEN_set(sv, 0);
7718             SvREADONLY_on(sv);
7719             SvFAKE_on(sv);
7720             SvPOK_on(sv);
7721             if (HEK_UTF8(hek))
7722                 SvUTF8_on(sv);
7723             return sv;
7724         }
7725     }
7726 }
7727
7728 /*
7729 =for apidoc newSVpvn_share
7730
7731 Creates a new SV with its SvPVX_const pointing to a shared string in the string
7732 table. If the string does not already exist in the table, it is created
7733 first.  Turns on READONLY and FAKE. If the C<hash> parameter is non-zero, that
7734 value is used; otherwise the hash is computed. The string's hash can be later
7735 be retrieved from the SV with the C<SvSHARED_HASH()> macro. The idea here is
7736 that as the string table is used for shared hash keys these strings will have
7737 SvPVX_const == HeKEY and hash lookup will avoid string compare.
7738
7739 =cut
7740 */
7741
7742 SV *
7743 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
7744 {
7745     dVAR;
7746     register SV *sv;
7747     bool is_utf8 = FALSE;
7748     const char *const orig_src = src;
7749
7750     if (len < 0) {
7751         STRLEN tmplen = -len;
7752         is_utf8 = TRUE;
7753         /* See the note in hv.c:hv_fetch() --jhi */
7754         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
7755         len = tmplen;
7756     }
7757     if (!hash)
7758         PERL_HASH(hash, src, len);
7759     new_SV(sv);
7760     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
7761        changes here, update it there too.  */
7762     sv_upgrade(sv, SVt_PV);
7763     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
7764     SvCUR_set(sv, len);
7765     SvLEN_set(sv, 0);
7766     SvREADONLY_on(sv);
7767     SvFAKE_on(sv);
7768     SvPOK_on(sv);
7769     if (is_utf8)
7770         SvUTF8_on(sv);
7771     if (src != orig_src)
7772         Safefree(src);
7773     return sv;
7774 }
7775
7776
7777 #if defined(PERL_IMPLICIT_CONTEXT)
7778
7779 /* pTHX_ magic can't cope with varargs, so this is a no-context
7780  * version of the main function, (which may itself be aliased to us).
7781  * Don't access this version directly.
7782  */
7783
7784 SV *
7785 Perl_newSVpvf_nocontext(const char *const pat, ...)
7786 {
7787     dTHX;
7788     register SV *sv;
7789     va_list args;
7790
7791     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
7792
7793     va_start(args, pat);
7794     sv = vnewSVpvf(pat, &args);
7795     va_end(args);
7796     return sv;
7797 }
7798 #endif
7799
7800 /*
7801 =for apidoc newSVpvf
7802
7803 Creates a new SV and initializes it with the string formatted like
7804 C<sprintf>.
7805
7806 =cut
7807 */
7808
7809 SV *
7810 Perl_newSVpvf(pTHX_ const char *const pat, ...)
7811 {
7812     register SV *sv;
7813     va_list args;
7814
7815     PERL_ARGS_ASSERT_NEWSVPVF;
7816
7817     va_start(args, pat);
7818     sv = vnewSVpvf(pat, &args);
7819     va_end(args);
7820     return sv;
7821 }
7822
7823 /* backend for newSVpvf() and newSVpvf_nocontext() */
7824
7825 SV *
7826 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
7827 {
7828     dVAR;
7829     register SV *sv;
7830
7831     PERL_ARGS_ASSERT_VNEWSVPVF;
7832
7833     new_SV(sv);
7834     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
7835     return sv;
7836 }
7837
7838 /*
7839 =for apidoc newSVnv
7840
7841 Creates a new SV and copies a floating point value into it.
7842 The reference count for the SV is set to 1.
7843
7844 =cut
7845 */
7846
7847 SV *
7848 Perl_newSVnv(pTHX_ const NV n)
7849 {
7850     dVAR;
7851     register SV *sv;
7852
7853     new_SV(sv);
7854     sv_setnv(sv,n);
7855     return sv;
7856 }
7857
7858 /*
7859 =for apidoc newSViv
7860
7861 Creates a new SV and copies an integer into it.  The reference count for the
7862 SV is set to 1.
7863
7864 =cut
7865 */
7866
7867 SV *
7868 Perl_newSViv(pTHX_ const IV i)
7869 {
7870     dVAR;
7871     register SV *sv;
7872
7873     new_SV(sv);
7874     sv_setiv(sv,i);
7875     return sv;
7876 }
7877
7878 /*
7879 =for apidoc newSVuv
7880
7881 Creates a new SV and copies an unsigned integer into it.
7882 The reference count for the SV is set to 1.
7883
7884 =cut
7885 */
7886
7887 SV *
7888 Perl_newSVuv(pTHX_ const UV u)
7889 {
7890     dVAR;
7891     register SV *sv;
7892
7893     new_SV(sv);
7894     sv_setuv(sv,u);
7895     return sv;
7896 }
7897
7898 /*
7899 =for apidoc newSV_type
7900
7901 Creates a new SV, of the type specified.  The reference count for the new SV
7902 is set to 1.
7903
7904 =cut
7905 */
7906
7907 SV *
7908 Perl_newSV_type(pTHX_ const svtype type)
7909 {
7910     register SV *sv;
7911
7912     new_SV(sv);
7913     sv_upgrade(sv, type);
7914     return sv;
7915 }
7916
7917 /*
7918 =for apidoc newRV_noinc
7919
7920 Creates an RV wrapper for an SV.  The reference count for the original
7921 SV is B<not> incremented.
7922
7923 =cut
7924 */
7925
7926 SV *
7927 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
7928 {
7929     dVAR;
7930     register SV *sv = newSV_type(SVt_IV);
7931
7932     PERL_ARGS_ASSERT_NEWRV_NOINC;
7933
7934     SvTEMP_off(tmpRef);
7935     SvRV_set(sv, tmpRef);
7936     SvROK_on(sv);
7937     return sv;
7938 }
7939
7940 /* newRV_inc is the official function name to use now.
7941  * newRV_inc is in fact #defined to newRV in sv.h
7942  */
7943
7944 SV *
7945 Perl_newRV(pTHX_ SV *const sv)
7946 {
7947     dVAR;
7948
7949     PERL_ARGS_ASSERT_NEWRV;
7950
7951     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
7952 }
7953
7954 /*
7955 =for apidoc newSVsv
7956
7957 Creates a new SV which is an exact duplicate of the original SV.
7958 (Uses C<sv_setsv>).
7959
7960 =cut
7961 */
7962
7963 SV *
7964 Perl_newSVsv(pTHX_ register SV *const old)
7965 {
7966     dVAR;
7967     register SV *sv;
7968
7969     if (!old)
7970         return NULL;
7971     if (SvTYPE(old) == SVTYPEMASK) {
7972         if (ckWARN_d(WARN_INTERNAL))
7973             Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
7974         return NULL;
7975     }
7976     new_SV(sv);
7977     /* SV_GMAGIC is the default for sv_setv()
7978        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
7979        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
7980     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
7981     return sv;
7982 }
7983
7984 /*
7985 =for apidoc sv_reset
7986
7987 Underlying implementation for the C<reset> Perl function.
7988 Note that the perl-level function is vaguely deprecated.
7989
7990 =cut
7991 */
7992
7993 void
7994 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
7995 {
7996     dVAR;
7997     char todo[PERL_UCHAR_MAX+1];
7998
7999     PERL_ARGS_ASSERT_SV_RESET;
8000
8001     if (!stash)
8002         return;
8003
8004     if (!*s) {          /* reset ?? searches */
8005         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
8006         if (mg) {
8007             const U32 count = mg->mg_len / sizeof(PMOP**);
8008             PMOP **pmp = (PMOP**) mg->mg_ptr;
8009             PMOP *const *const end = pmp + count;
8010
8011             while (pmp < end) {
8012 #ifdef USE_ITHREADS
8013                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
8014 #else
8015                 (*pmp)->op_pmflags &= ~PMf_USED;
8016 #endif
8017                 ++pmp;
8018             }
8019         }
8020         return;
8021     }
8022
8023     /* reset variables */
8024
8025     if (!HvARRAY(stash))
8026         return;
8027
8028     Zero(todo, 256, char);
8029     while (*s) {
8030         I32 max;
8031         I32 i = (unsigned char)*s;
8032         if (s[1] == '-') {
8033             s += 2;
8034         }
8035         max = (unsigned char)*s++;
8036         for ( ; i <= max; i++) {
8037             todo[i] = 1;
8038         }
8039         for (i = 0; i <= (I32) HvMAX(stash); i++) {
8040             HE *entry;
8041             for (entry = HvARRAY(stash)[i];
8042                  entry;
8043                  entry = HeNEXT(entry))
8044             {
8045                 register GV *gv;
8046                 register SV *sv;
8047
8048                 if (!todo[(U8)*HeKEY(entry)])
8049                     continue;
8050                 gv = MUTABLE_GV(HeVAL(entry));
8051                 sv = GvSV(gv);
8052                 if (sv) {
8053                     if (SvTHINKFIRST(sv)) {
8054                         if (!SvREADONLY(sv) && SvROK(sv))
8055                             sv_unref(sv);
8056                         /* XXX Is this continue a bug? Why should THINKFIRST
8057                            exempt us from resetting arrays and hashes?  */
8058                         continue;
8059                     }
8060                     SvOK_off(sv);
8061                     if (SvTYPE(sv) >= SVt_PV) {
8062                         SvCUR_set(sv, 0);
8063                         if (SvPVX_const(sv) != NULL)
8064                             *SvPVX(sv) = '\0';
8065                         SvTAINT(sv);
8066                     }
8067                 }
8068                 if (GvAV(gv)) {
8069                     av_clear(GvAV(gv));
8070                 }
8071                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
8072 #if defined(VMS)
8073                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
8074 #else /* ! VMS */
8075                     hv_clear(GvHV(gv));
8076 #  if defined(USE_ENVIRON_ARRAY)
8077                     if (gv == PL_envgv)
8078                         my_clearenv();
8079 #  endif /* USE_ENVIRON_ARRAY */
8080 #endif /* VMS */
8081                 }
8082             }
8083         }
8084     }
8085 }
8086
8087 /*
8088 =for apidoc sv_2io
8089
8090 Using various gambits, try to get an IO from an SV: the IO slot if its a
8091 GV; or the recursive result if we're an RV; or the IO slot of the symbol
8092 named after the PV if we're a string.
8093
8094 =cut
8095 */
8096
8097 IO*
8098 Perl_sv_2io(pTHX_ SV *const sv)
8099 {
8100     IO* io;
8101     GV* gv;
8102
8103     PERL_ARGS_ASSERT_SV_2IO;
8104
8105     switch (SvTYPE(sv)) {
8106     case SVt_PVIO:
8107         io = MUTABLE_IO(sv);
8108         break;
8109     case SVt_PVGV:
8110         if (isGV_with_GP(sv)) {
8111             gv = MUTABLE_GV(sv);
8112             io = GvIO(gv);
8113             if (!io)
8114                 Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
8115             break;
8116         }
8117         /* FALL THROUGH */
8118     default:
8119         if (!SvOK(sv))
8120             Perl_croak(aTHX_ PL_no_usym, "filehandle");
8121         if (SvROK(sv))
8122             return sv_2io(SvRV(sv));
8123         gv = gv_fetchsv(sv, 0, SVt_PVIO);
8124         if (gv)
8125             io = GvIO(gv);
8126         else
8127             io = 0;
8128         if (!io)
8129             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(sv));
8130         break;
8131     }
8132     return io;
8133 }
8134
8135 /*
8136 =for apidoc sv_2cv
8137
8138 Using various gambits, try to get a CV from an SV; in addition, try if
8139 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
8140 The flags in C<lref> are passed to sv_fetchsv.
8141
8142 =cut
8143 */
8144
8145 CV *
8146 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
8147 {
8148     dVAR;
8149     GV *gv = NULL;
8150     CV *cv = NULL;
8151
8152     PERL_ARGS_ASSERT_SV_2CV;
8153
8154     if (!sv) {
8155         *st = NULL;
8156         *gvp = NULL;
8157         return NULL;
8158     }
8159     switch (SvTYPE(sv)) {
8160     case SVt_PVCV:
8161         *st = CvSTASH(sv);
8162         *gvp = NULL;
8163         return MUTABLE_CV(sv);
8164     case SVt_PVHV:
8165     case SVt_PVAV:
8166         *st = NULL;
8167         *gvp = NULL;
8168         return NULL;
8169     case SVt_PVGV:
8170         if (isGV_with_GP(sv)) {
8171             gv = MUTABLE_GV(sv);
8172             *gvp = gv;
8173             *st = GvESTASH(gv);
8174             goto fix_gv;
8175         }
8176         /* FALL THROUGH */
8177
8178     default:
8179         if (SvROK(sv)) {
8180             SV * const *sp = &sv;       /* Used in tryAMAGICunDEREF macro. */
8181             SvGETMAGIC(sv);
8182             tryAMAGICunDEREF(to_cv);
8183
8184             sv = SvRV(sv);
8185             if (SvTYPE(sv) == SVt_PVCV) {
8186                 cv = MUTABLE_CV(sv);
8187                 *gvp = NULL;
8188                 *st = CvSTASH(cv);
8189                 return cv;
8190             }
8191             else if(isGV_with_GP(sv))
8192                 gv = MUTABLE_GV(sv);
8193             else
8194                 Perl_croak(aTHX_ "Not a subroutine reference");
8195         }
8196         else if (isGV_with_GP(sv)) {
8197             SvGETMAGIC(sv);
8198             gv = MUTABLE_GV(sv);
8199         }
8200         else
8201             gv = gv_fetchsv(sv, lref, SVt_PVCV); /* Calls get magic */
8202         *gvp = gv;
8203         if (!gv) {
8204             *st = NULL;
8205             return NULL;
8206         }
8207         /* Some flags to gv_fetchsv mean don't really create the GV  */
8208         if (!isGV_with_GP(gv)) {
8209             *st = NULL;
8210             return NULL;
8211         }
8212         *st = GvESTASH(gv);
8213     fix_gv:
8214         if (lref && !GvCVu(gv)) {
8215             SV *tmpsv;
8216             ENTER;
8217             tmpsv = newSV(0);
8218             gv_efullname3(tmpsv, gv, NULL);
8219             /* XXX this is probably not what they think they're getting.
8220              * It has the same effect as "sub name;", i.e. just a forward
8221              * declaration! */
8222             newSUB(start_subparse(FALSE, 0),
8223                    newSVOP(OP_CONST, 0, tmpsv),
8224                    NULL, NULL);
8225             LEAVE;
8226             if (!GvCVu(gv))
8227                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
8228                            SVfARG(SvOK(sv) ? sv : &PL_sv_no));
8229         }
8230         return GvCVu(gv);
8231     }
8232 }
8233
8234 /*
8235 =for apidoc sv_true
8236
8237 Returns true if the SV has a true value by Perl's rules.
8238 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
8239 instead use an in-line version.
8240
8241 =cut
8242 */
8243
8244 I32
8245 Perl_sv_true(pTHX_ register SV *const sv)
8246 {
8247     if (!sv)
8248         return 0;
8249     if (SvPOK(sv)) {
8250         register const XPV* const tXpv = (XPV*)SvANY(sv);
8251         if (tXpv &&
8252                 (tXpv->xpv_cur > 1 ||
8253                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
8254             return 1;
8255         else
8256             return 0;
8257     }
8258     else {
8259         if (SvIOK(sv))
8260             return SvIVX(sv) != 0;
8261         else {
8262             if (SvNOK(sv))
8263                 return SvNVX(sv) != 0.0;
8264             else
8265                 return sv_2bool(sv);
8266         }
8267     }
8268 }
8269
8270 /*
8271 =for apidoc sv_pvn_force
8272
8273 Get a sensible string out of the SV somehow.
8274 A private implementation of the C<SvPV_force> macro for compilers which
8275 can't cope with complex macro expressions. Always use the macro instead.
8276
8277 =for apidoc sv_pvn_force_flags
8278
8279 Get a sensible string out of the SV somehow.
8280 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
8281 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
8282 implemented in terms of this function.
8283 You normally want to use the various wrapper macros instead: see
8284 C<SvPV_force> and C<SvPV_force_nomg>
8285
8286 =cut
8287 */
8288
8289 char *
8290 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
8291 {
8292     dVAR;
8293
8294     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
8295
8296     if (SvTHINKFIRST(sv) && !SvROK(sv))
8297         sv_force_normal_flags(sv, 0);
8298
8299     if (SvPOK(sv)) {
8300         if (lp)
8301             *lp = SvCUR(sv);
8302     }
8303     else {
8304         char *s;
8305         STRLEN len;
8306  
8307         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
8308             const char * const ref = sv_reftype(sv,0);
8309             if (PL_op)
8310                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
8311                            ref, OP_NAME(PL_op));
8312             else
8313                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
8314         }
8315         if ((SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
8316             || isGV_with_GP(sv))
8317             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
8318                 OP_NAME(PL_op));
8319         s = sv_2pv_flags(sv, &len, flags);
8320         if (lp)
8321             *lp = len;
8322
8323         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
8324             if (SvROK(sv))
8325                 sv_unref(sv);
8326             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
8327             SvGROW(sv, len + 1);
8328             Move(s,SvPVX(sv),len,char);
8329             SvCUR_set(sv, len);
8330             SvPVX(sv)[len] = '\0';
8331         }
8332         if (!SvPOK(sv)) {
8333             SvPOK_on(sv);               /* validate pointer */
8334             SvTAINT(sv);
8335             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
8336                                   PTR2UV(sv),SvPVX_const(sv)));
8337         }
8338     }
8339     return SvPVX_mutable(sv);
8340 }
8341
8342 /*
8343 =for apidoc sv_pvbyten_force
8344
8345 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
8346
8347 =cut
8348 */
8349
8350 char *
8351 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
8352 {
8353     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
8354
8355     sv_pvn_force(sv,lp);
8356     sv_utf8_downgrade(sv,0);
8357     *lp = SvCUR(sv);
8358     return SvPVX(sv);
8359 }
8360
8361 /*
8362 =for apidoc sv_pvutf8n_force
8363
8364 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
8365
8366 =cut
8367 */
8368
8369 char *
8370 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
8371 {
8372     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
8373
8374     sv_pvn_force(sv,lp);
8375     sv_utf8_upgrade(sv);
8376     *lp = SvCUR(sv);
8377     return SvPVX(sv);
8378 }
8379
8380 /*
8381 =for apidoc sv_reftype
8382
8383 Returns a string describing what the SV is a reference to.
8384
8385 =cut
8386 */
8387
8388 const char *
8389 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
8390 {
8391     PERL_ARGS_ASSERT_SV_REFTYPE;
8392
8393     /* The fact that I don't need to downcast to char * everywhere, only in ?:
8394        inside return suggests a const propagation bug in g++.  */
8395     if (ob && SvOBJECT(sv)) {
8396         char * const name = HvNAME_get(SvSTASH(sv));
8397         return name ? name : (char *) "__ANON__";
8398     }
8399     else {
8400         switch (SvTYPE(sv)) {
8401         case SVt_NULL:
8402         case SVt_IV:
8403         case SVt_NV:
8404         case SVt_PV:
8405         case SVt_PVIV:
8406         case SVt_PVNV:
8407         case SVt_PVMG:
8408                                 if (SvVOK(sv))
8409                                     return "VSTRING";
8410                                 if (SvROK(sv))
8411                                     return "REF";
8412                                 else
8413                                     return "SCALAR";
8414
8415         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
8416                                 /* tied lvalues should appear to be
8417                                  * scalars for backwards compatitbility */
8418                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
8419                                     ? "SCALAR" : "LVALUE");
8420         case SVt_PVAV:          return "ARRAY";
8421         case SVt_PVHV:          return "HASH";
8422         case SVt_PVCV:          return "CODE";
8423         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
8424                                     ? "GLOB" : "SCALAR");
8425         case SVt_PVFM:          return "FORMAT";
8426         case SVt_PVIO:          return "IO";
8427         case SVt_BIND:          return "BIND";
8428         case SVt_REGEXP:        return "REGEXP"; 
8429         default:                return "UNKNOWN";
8430         }
8431     }
8432 }
8433
8434 /*
8435 =for apidoc sv_isobject
8436
8437 Returns a boolean indicating whether the SV is an RV pointing to a blessed
8438 object.  If the SV is not an RV, or if the object is not blessed, then this
8439 will return false.
8440
8441 =cut
8442 */
8443
8444 int
8445 Perl_sv_isobject(pTHX_ SV *sv)
8446 {
8447     if (!sv)
8448         return 0;
8449     SvGETMAGIC(sv);
8450     if (!SvROK(sv))
8451         return 0;
8452     sv = SvRV(sv);
8453     if (!SvOBJECT(sv))
8454         return 0;
8455     return 1;
8456 }
8457
8458 /*
8459 =for apidoc sv_isa
8460
8461 Returns a boolean indicating whether the SV is blessed into the specified
8462 class.  This does not check for subtypes; use C<sv_derived_from> to verify
8463 an inheritance relationship.
8464
8465 =cut
8466 */
8467
8468 int
8469 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
8470 {
8471     const char *hvname;
8472
8473     PERL_ARGS_ASSERT_SV_ISA;
8474
8475     if (!sv)
8476         return 0;
8477     SvGETMAGIC(sv);
8478     if (!SvROK(sv))
8479         return 0;
8480     sv = SvRV(sv);
8481     if (!SvOBJECT(sv))
8482         return 0;
8483     hvname = HvNAME_get(SvSTASH(sv));
8484     if (!hvname)
8485         return 0;
8486
8487     return strEQ(hvname, name);
8488 }
8489
8490 /*
8491 =for apidoc newSVrv
8492
8493 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
8494 it will be upgraded to one.  If C<classname> is non-null then the new SV will
8495 be blessed in the specified package.  The new SV is returned and its
8496 reference count is 1.
8497
8498 =cut
8499 */
8500
8501 SV*
8502 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
8503 {
8504     dVAR;
8505     SV *sv;
8506
8507     PERL_ARGS_ASSERT_NEWSVRV;
8508
8509     new_SV(sv);
8510
8511     SV_CHECK_THINKFIRST_COW_DROP(rv);
8512     (void)SvAMAGIC_off(rv);
8513
8514     if (SvTYPE(rv) >= SVt_PVMG) {
8515         const U32 refcnt = SvREFCNT(rv);
8516         SvREFCNT(rv) = 0;
8517         sv_clear(rv);
8518         SvFLAGS(rv) = 0;
8519         SvREFCNT(rv) = refcnt;
8520
8521         sv_upgrade(rv, SVt_IV);
8522     } else if (SvROK(rv)) {
8523         SvREFCNT_dec(SvRV(rv));
8524     } else {
8525         prepare_SV_for_RV(rv);
8526     }
8527
8528     SvOK_off(rv);
8529     SvRV_set(rv, sv);
8530     SvROK_on(rv);
8531
8532     if (classname) {
8533         HV* const stash = gv_stashpv(classname, GV_ADD);
8534         (void)sv_bless(rv, stash);
8535     }
8536     return sv;
8537 }
8538
8539 /*
8540 =for apidoc sv_setref_pv
8541
8542 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
8543 argument will be upgraded to an RV.  That RV will be modified to point to
8544 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
8545 into the SV.  The C<classname> argument indicates the package for the
8546 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8547 will have a reference count of 1, and the RV will be returned.
8548
8549 Do not use with other Perl types such as HV, AV, SV, CV, because those
8550 objects will become corrupted by the pointer copy process.
8551
8552 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
8553
8554 =cut
8555 */
8556
8557 SV*
8558 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
8559 {
8560     dVAR;
8561
8562     PERL_ARGS_ASSERT_SV_SETREF_PV;
8563
8564     if (!pv) {
8565         sv_setsv(rv, &PL_sv_undef);
8566         SvSETMAGIC(rv);
8567     }
8568     else
8569         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
8570     return rv;
8571 }
8572
8573 /*
8574 =for apidoc sv_setref_iv
8575
8576 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
8577 argument will be upgraded to an RV.  That RV will be modified to point to
8578 the new SV.  The C<classname> argument indicates the package for the
8579 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8580 will have a reference count of 1, and the RV will be returned.
8581
8582 =cut
8583 */
8584
8585 SV*
8586 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
8587 {
8588     PERL_ARGS_ASSERT_SV_SETREF_IV;
8589
8590     sv_setiv(newSVrv(rv,classname), iv);
8591     return rv;
8592 }
8593
8594 /*
8595 =for apidoc sv_setref_uv
8596
8597 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
8598 argument will be upgraded to an RV.  That RV will be modified to point to
8599 the new SV.  The C<classname> argument indicates the package for the
8600 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8601 will have a reference count of 1, and the RV will be returned.
8602
8603 =cut
8604 */
8605
8606 SV*
8607 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
8608 {
8609     PERL_ARGS_ASSERT_SV_SETREF_UV;
8610
8611     sv_setuv(newSVrv(rv,classname), uv);
8612     return rv;
8613 }
8614
8615 /*
8616 =for apidoc sv_setref_nv
8617
8618 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
8619 argument will be upgraded to an RV.  That RV will be modified to point to
8620 the new SV.  The C<classname> argument indicates the package for the
8621 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8622 will have a reference count of 1, and the RV will be returned.
8623
8624 =cut
8625 */
8626
8627 SV*
8628 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
8629 {
8630     PERL_ARGS_ASSERT_SV_SETREF_NV;
8631
8632     sv_setnv(newSVrv(rv,classname), nv);
8633     return rv;
8634 }
8635
8636 /*
8637 =for apidoc sv_setref_pvn
8638
8639 Copies a string into a new SV, optionally blessing the SV.  The length of the
8640 string must be specified with C<n>.  The C<rv> argument will be upgraded to
8641 an RV.  That RV will be modified to point to the new SV.  The C<classname>
8642 argument indicates the package for the blessing.  Set C<classname> to
8643 C<NULL> to avoid the blessing.  The new SV will have a reference count
8644 of 1, and the RV will be returned.
8645
8646 Note that C<sv_setref_pv> copies the pointer while this copies the string.
8647
8648 =cut
8649 */
8650
8651 SV*
8652 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
8653                    const char *const pv, const STRLEN n)
8654 {
8655     PERL_ARGS_ASSERT_SV_SETREF_PVN;
8656
8657     sv_setpvn(newSVrv(rv,classname), pv, n);
8658     return rv;
8659 }
8660
8661 /*
8662 =for apidoc sv_bless
8663
8664 Blesses an SV into a specified package.  The SV must be an RV.  The package
8665 must be designated by its stash (see C<gv_stashpv()>).  The reference count
8666 of the SV is unaffected.
8667
8668 =cut
8669 */
8670
8671 SV*
8672 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
8673 {
8674     dVAR;
8675     SV *tmpRef;
8676
8677     PERL_ARGS_ASSERT_SV_BLESS;
8678
8679     if (!SvROK(sv))
8680         Perl_croak(aTHX_ "Can't bless non-reference value");
8681     tmpRef = SvRV(sv);
8682     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
8683         if (SvIsCOW(tmpRef))
8684             sv_force_normal_flags(tmpRef, 0);
8685         if (SvREADONLY(tmpRef))
8686             Perl_croak(aTHX_ "%s", PL_no_modify);
8687         if (SvOBJECT(tmpRef)) {
8688             if (SvTYPE(tmpRef) != SVt_PVIO)
8689                 --PL_sv_objcount;
8690             SvREFCNT_dec(SvSTASH(tmpRef));
8691         }
8692     }
8693     SvOBJECT_on(tmpRef);
8694     if (SvTYPE(tmpRef) != SVt_PVIO)
8695         ++PL_sv_objcount;
8696     SvUPGRADE(tmpRef, SVt_PVMG);
8697     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
8698
8699     if (Gv_AMG(stash))
8700         SvAMAGIC_on(sv);
8701     else
8702         (void)SvAMAGIC_off(sv);
8703
8704     if(SvSMAGICAL(tmpRef))
8705         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
8706             mg_set(tmpRef);
8707
8708
8709
8710     return sv;
8711 }
8712
8713 /* Downgrades a PVGV to a PVMG.
8714  */
8715
8716 STATIC void
8717 S_sv_unglob(pTHX_ SV *const sv)
8718 {
8719     dVAR;
8720     void *xpvmg;
8721     HV *stash;
8722     SV * const temp = sv_newmortal();
8723
8724     PERL_ARGS_ASSERT_SV_UNGLOB;
8725
8726     assert(SvTYPE(sv) == SVt_PVGV);
8727     SvFAKE_off(sv);
8728     gv_efullname3(temp, MUTABLE_GV(sv), "*");
8729
8730     if (GvGP(sv)) {
8731         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
8732            && HvNAME_get(stash))
8733             mro_method_changed_in(stash);
8734         gp_free(MUTABLE_GV(sv));
8735     }
8736     if (GvSTASH(sv)) {
8737         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
8738         GvSTASH(sv) = NULL;
8739     }
8740     GvMULTI_off(sv);
8741     if (GvNAME_HEK(sv)) {
8742         unshare_hek(GvNAME_HEK(sv));
8743     }
8744     isGV_with_GP_off(sv);
8745
8746     /* need to keep SvANY(sv) in the right arena */
8747     xpvmg = new_XPVMG();
8748     StructCopy(SvANY(sv), xpvmg, XPVMG);
8749     del_XPVGV(SvANY(sv));
8750     SvANY(sv) = xpvmg;
8751
8752     SvFLAGS(sv) &= ~SVTYPEMASK;
8753     SvFLAGS(sv) |= SVt_PVMG;
8754
8755     /* Intentionally not calling any local SET magic, as this isn't so much a
8756        set operation as merely an internal storage change.  */
8757     sv_setsv_flags(sv, temp, 0);
8758 }
8759
8760 /*
8761 =for apidoc sv_unref_flags
8762
8763 Unsets the RV status of the SV, and decrements the reference count of
8764 whatever was being referenced by the RV.  This can almost be thought of
8765 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
8766 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
8767 (otherwise the decrementing is conditional on the reference count being
8768 different from one or the reference being a readonly SV).
8769 See C<SvROK_off>.
8770
8771 =cut
8772 */
8773
8774 void
8775 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
8776 {
8777     SV* const target = SvRV(ref);
8778
8779     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
8780
8781     if (SvWEAKREF(ref)) {
8782         sv_del_backref(target, ref);
8783         SvWEAKREF_off(ref);
8784         SvRV_set(ref, NULL);
8785         return;
8786     }
8787     SvRV_set(ref, NULL);
8788     SvROK_off(ref);
8789     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
8790        assigned to as BEGIN {$a = \"Foo"} will fail.  */
8791     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
8792         SvREFCNT_dec(target);
8793     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
8794         sv_2mortal(target);     /* Schedule for freeing later */
8795 }
8796
8797 /*
8798 =for apidoc sv_untaint
8799
8800 Untaint an SV. Use C<SvTAINTED_off> instead.
8801 =cut
8802 */
8803
8804 void
8805 Perl_sv_untaint(pTHX_ SV *const sv)
8806 {
8807     PERL_ARGS_ASSERT_SV_UNTAINT;
8808
8809     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
8810         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
8811         if (mg)
8812             mg->mg_len &= ~1;
8813     }
8814 }
8815
8816 /*
8817 =for apidoc sv_tainted
8818
8819 Test an SV for taintedness. Use C<SvTAINTED> instead.
8820 =cut
8821 */
8822
8823 bool
8824 Perl_sv_tainted(pTHX_ SV *const sv)
8825 {
8826     PERL_ARGS_ASSERT_SV_TAINTED;
8827
8828     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
8829         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
8830         if (mg && (mg->mg_len & 1) )
8831             return TRUE;
8832     }
8833     return FALSE;
8834 }
8835
8836 /*
8837 =for apidoc sv_setpviv
8838
8839 Copies an integer into the given SV, also updating its string value.
8840 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
8841
8842 =cut
8843 */
8844
8845 void
8846 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
8847 {
8848     char buf[TYPE_CHARS(UV)];
8849     char *ebuf;
8850     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
8851
8852     PERL_ARGS_ASSERT_SV_SETPVIV;
8853
8854     sv_setpvn(sv, ptr, ebuf - ptr);
8855 }
8856
8857 /*
8858 =for apidoc sv_setpviv_mg
8859
8860 Like C<sv_setpviv>, but also handles 'set' magic.
8861
8862 =cut
8863 */
8864
8865 void
8866 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
8867 {
8868     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
8869
8870     sv_setpviv(sv, iv);
8871     SvSETMAGIC(sv);
8872 }
8873
8874 #if defined(PERL_IMPLICIT_CONTEXT)
8875
8876 /* pTHX_ magic can't cope with varargs, so this is a no-context
8877  * version of the main function, (which may itself be aliased to us).
8878  * Don't access this version directly.
8879  */
8880
8881 void
8882 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
8883 {
8884     dTHX;
8885     va_list args;
8886
8887     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
8888
8889     va_start(args, pat);
8890     sv_vsetpvf(sv, pat, &args);
8891     va_end(args);
8892 }
8893
8894 /* pTHX_ magic can't cope with varargs, so this is a no-context
8895  * version of the main function, (which may itself be aliased to us).
8896  * Don't access this version directly.
8897  */
8898
8899 void
8900 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
8901 {
8902     dTHX;
8903     va_list args;
8904
8905     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
8906
8907     va_start(args, pat);
8908     sv_vsetpvf_mg(sv, pat, &args);
8909     va_end(args);
8910 }
8911 #endif
8912
8913 /*
8914 =for apidoc sv_setpvf
8915
8916 Works like C<sv_catpvf> but copies the text into the SV instead of
8917 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
8918
8919 =cut
8920 */
8921
8922 void
8923 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
8924 {
8925     va_list args;
8926
8927     PERL_ARGS_ASSERT_SV_SETPVF;
8928
8929     va_start(args, pat);
8930     sv_vsetpvf(sv, pat, &args);
8931     va_end(args);
8932 }
8933
8934 /*
8935 =for apidoc sv_vsetpvf
8936
8937 Works like C<sv_vcatpvf> but copies the text into the SV instead of
8938 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
8939
8940 Usually used via its frontend C<sv_setpvf>.
8941
8942 =cut
8943 */
8944
8945 void
8946 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
8947 {
8948     PERL_ARGS_ASSERT_SV_VSETPVF;
8949
8950     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8951 }
8952
8953 /*
8954 =for apidoc sv_setpvf_mg
8955
8956 Like C<sv_setpvf>, but also handles 'set' magic.
8957
8958 =cut
8959 */
8960
8961 void
8962 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
8963 {
8964     va_list args;
8965
8966     PERL_ARGS_ASSERT_SV_SETPVF_MG;
8967
8968     va_start(args, pat);
8969     sv_vsetpvf_mg(sv, pat, &args);
8970     va_end(args);
8971 }
8972
8973 /*
8974 =for apidoc sv_vsetpvf_mg
8975
8976 Like C<sv_vsetpvf>, but also handles 'set' magic.
8977
8978 Usually used via its frontend C<sv_setpvf_mg>.
8979
8980 =cut
8981 */
8982
8983 void
8984 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
8985 {
8986     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
8987
8988     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8989     SvSETMAGIC(sv);
8990 }
8991
8992 #if defined(PERL_IMPLICIT_CONTEXT)
8993
8994 /* pTHX_ magic can't cope with varargs, so this is a no-context
8995  * version of the main function, (which may itself be aliased to us).
8996  * Don't access this version directly.
8997  */
8998
8999 void
9000 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
9001 {
9002     dTHX;
9003     va_list args;
9004
9005     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
9006
9007     va_start(args, pat);
9008     sv_vcatpvf(sv, pat, &args);
9009     va_end(args);
9010 }
9011
9012 /* pTHX_ magic can't cope with varargs, so this is a no-context
9013  * version of the main function, (which may itself be aliased to us).
9014  * Don't access this version directly.
9015  */
9016
9017 void
9018 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9019 {
9020     dTHX;
9021     va_list args;
9022
9023     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
9024
9025     va_start(args, pat);
9026     sv_vcatpvf_mg(sv, pat, &args);
9027     va_end(args);
9028 }
9029 #endif
9030
9031 /*
9032 =for apidoc sv_catpvf
9033
9034 Processes its arguments like C<sprintf> and appends the formatted
9035 output to an SV.  If the appended data contains "wide" characters
9036 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
9037 and characters >255 formatted with %c), the original SV might get
9038 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
9039 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
9040 valid UTF-8; if the original SV was bytes, the pattern should be too.
9041
9042 =cut */
9043
9044 void
9045 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
9046 {
9047     va_list args;
9048
9049     PERL_ARGS_ASSERT_SV_CATPVF;
9050
9051     va_start(args, pat);
9052     sv_vcatpvf(sv, pat, &args);
9053     va_end(args);
9054 }
9055
9056 /*
9057 =for apidoc sv_vcatpvf
9058
9059 Processes its arguments like C<vsprintf> and appends the formatted output
9060 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
9061
9062 Usually used via its frontend C<sv_catpvf>.
9063
9064 =cut
9065 */
9066
9067 void
9068 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9069 {
9070     PERL_ARGS_ASSERT_SV_VCATPVF;
9071
9072     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9073 }
9074
9075 /*
9076 =for apidoc sv_catpvf_mg
9077
9078 Like C<sv_catpvf>, but also handles 'set' magic.
9079
9080 =cut
9081 */
9082
9083 void
9084 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9085 {
9086     va_list args;
9087
9088     PERL_ARGS_ASSERT_SV_CATPVF_MG;
9089
9090     va_start(args, pat);
9091     sv_vcatpvf_mg(sv, pat, &args);
9092     va_end(args);
9093 }
9094
9095 /*
9096 =for apidoc sv_vcatpvf_mg
9097
9098 Like C<sv_vcatpvf>, but also handles 'set' magic.
9099
9100 Usually used via its frontend C<sv_catpvf_mg>.
9101
9102 =cut
9103 */
9104
9105 void
9106 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9107 {
9108     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
9109
9110     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9111     SvSETMAGIC(sv);
9112 }
9113
9114 /*
9115 =for apidoc sv_vsetpvfn
9116
9117 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9118 appending it.
9119
9120 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9121
9122 =cut
9123 */
9124
9125 void
9126 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9127                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9128 {
9129     PERL_ARGS_ASSERT_SV_VSETPVFN;
9130
9131     sv_setpvs(sv, "");
9132     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
9133 }
9134
9135 STATIC I32
9136 S_expect_number(pTHX_ char **const pattern)
9137 {
9138     dVAR;
9139     I32 var = 0;
9140
9141     PERL_ARGS_ASSERT_EXPECT_NUMBER;
9142
9143     switch (**pattern) {
9144     case '1': case '2': case '3':
9145     case '4': case '5': case '6':
9146     case '7': case '8': case '9':
9147         var = *(*pattern)++ - '0';
9148         while (isDIGIT(**pattern)) {
9149             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
9150             if (tmp < var)
9151                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_NAME(PL_op) : "sv_vcatpvfn"));
9152             var = tmp;
9153         }
9154     }
9155     return var;
9156 }
9157
9158 STATIC char *
9159 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
9160 {
9161     const int neg = nv < 0;
9162     UV uv;
9163
9164     PERL_ARGS_ASSERT_F0CONVERT;
9165
9166     if (neg)
9167         nv = -nv;
9168     if (nv < UV_MAX) {
9169         char *p = endbuf;
9170         nv += 0.5;
9171         uv = (UV)nv;
9172         if (uv & 1 && uv == nv)
9173             uv--;                       /* Round to even */
9174         do {
9175             const unsigned dig = uv % 10;
9176             *--p = '0' + dig;
9177         } while (uv /= 10);
9178         if (neg)
9179             *--p = '-';
9180         *len = endbuf - p;
9181         return p;
9182     }
9183     return NULL;
9184 }
9185
9186
9187 /*
9188 =for apidoc sv_vcatpvfn
9189
9190 Processes its arguments like C<vsprintf> and appends the formatted output
9191 to an SV.  Uses an array of SVs if the C style variable argument list is
9192 missing (NULL).  When running with taint checks enabled, indicates via
9193 C<maybe_tainted> if results are untrustworthy (often due to the use of
9194 locales).
9195
9196 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
9197
9198 =cut
9199 */
9200
9201
9202 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
9203                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
9204                         vec_utf8 = DO_UTF8(vecsv);
9205
9206 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
9207
9208 void
9209 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9210                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9211 {
9212     dVAR;
9213     char *p;
9214     char *q;
9215     const char *patend;
9216     STRLEN origlen;
9217     I32 svix = 0;
9218     static const char nullstr[] = "(null)";
9219     SV *argsv = NULL;
9220     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
9221     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
9222     SV *nsv = NULL;
9223     /* Times 4: a decimal digit takes more than 3 binary digits.
9224      * NV_DIG: mantissa takes than many decimal digits.
9225      * Plus 32: Playing safe. */
9226     char ebuf[IV_DIG * 4 + NV_DIG + 32];
9227     /* large enough for "%#.#f" --chip */
9228     /* what about long double NVs? --jhi */
9229
9230     PERL_ARGS_ASSERT_SV_VCATPVFN;
9231     PERL_UNUSED_ARG(maybe_tainted);
9232
9233     /* no matter what, this is a string now */
9234     (void)SvPV_force(sv, origlen);
9235
9236     /* special-case "", "%s", and "%-p" (SVf - see below) */
9237     if (patlen == 0)
9238         return;
9239     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
9240         if (args) {
9241             const char * const s = va_arg(*args, char*);
9242             sv_catpv(sv, s ? s : nullstr);
9243         }
9244         else if (svix < svmax) {
9245             sv_catsv(sv, *svargs);
9246         }
9247         return;
9248     }
9249     if (args && patlen == 3 && pat[0] == '%' &&
9250                 pat[1] == '-' && pat[2] == 'p') {
9251         argsv = MUTABLE_SV(va_arg(*args, void*));
9252         sv_catsv(sv, argsv);
9253         return;
9254     }
9255
9256 #ifndef USE_LONG_DOUBLE
9257     /* special-case "%.<number>[gf]" */
9258     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
9259          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
9260         unsigned digits = 0;
9261         const char *pp;
9262
9263         pp = pat + 2;
9264         while (*pp >= '0' && *pp <= '9')
9265             digits = 10 * digits + (*pp++ - '0');
9266         if (pp - pat == (int)patlen - 1) {
9267             NV nv;
9268
9269             if (svix < svmax)
9270                 nv = SvNV(*svargs);
9271             else
9272                 return;
9273             if (*pp == 'g') {
9274                 /* Add check for digits != 0 because it seems that some
9275                    gconverts are buggy in this case, and we don't yet have
9276                    a Configure test for this.  */
9277                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
9278                      /* 0, point, slack */
9279                     Gconvert(nv, (int)digits, 0, ebuf);
9280                     sv_catpv(sv, ebuf);
9281                     if (*ebuf)  /* May return an empty string for digits==0 */
9282                         return;
9283                 }
9284             } else if (!digits) {
9285                 STRLEN l;
9286
9287                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
9288                     sv_catpvn(sv, p, l);
9289                     return;
9290                 }
9291             }
9292         }
9293     }
9294 #endif /* !USE_LONG_DOUBLE */
9295
9296     if (!args && svix < svmax && DO_UTF8(*svargs))
9297         has_utf8 = TRUE;
9298
9299     patend = (char*)pat + patlen;
9300     for (p = (char*)pat; p < patend; p = q) {
9301         bool alt = FALSE;
9302         bool left = FALSE;
9303         bool vectorize = FALSE;
9304         bool vectorarg = FALSE;
9305         bool vec_utf8 = FALSE;
9306         char fill = ' ';
9307         char plus = 0;
9308         char intsize = 0;
9309         STRLEN width = 0;
9310         STRLEN zeros = 0;
9311         bool has_precis = FALSE;
9312         STRLEN precis = 0;
9313         const I32 osvix = svix;
9314         bool is_utf8 = FALSE;  /* is this item utf8?   */
9315 #ifdef HAS_LDBL_SPRINTF_BUG
9316         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
9317            with sfio - Allen <allens@cpan.org> */
9318         bool fix_ldbl_sprintf_bug = FALSE;
9319 #endif
9320
9321         char esignbuf[4];
9322         U8 utf8buf[UTF8_MAXBYTES+1];
9323         STRLEN esignlen = 0;
9324
9325         const char *eptr = NULL;
9326         const char *fmtstart;
9327         STRLEN elen = 0;
9328         SV *vecsv = NULL;
9329         const U8 *vecstr = NULL;
9330         STRLEN veclen = 0;
9331         char c = 0;
9332         int i;
9333         unsigned base = 0;
9334         IV iv = 0;
9335         UV uv = 0;
9336         /* we need a long double target in case HAS_LONG_DOUBLE but
9337            not USE_LONG_DOUBLE
9338         */
9339 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
9340         long double nv;
9341 #else
9342         NV nv;
9343 #endif
9344         STRLEN have;
9345         STRLEN need;
9346         STRLEN gap;
9347         const char *dotstr = ".";
9348         STRLEN dotstrlen = 1;
9349         I32 efix = 0; /* explicit format parameter index */
9350         I32 ewix = 0; /* explicit width index */
9351         I32 epix = 0; /* explicit precision index */
9352         I32 evix = 0; /* explicit vector index */
9353         bool asterisk = FALSE;
9354
9355         /* echo everything up to the next format specification */
9356         for (q = p; q < patend && *q != '%'; ++q) ;
9357         if (q > p) {
9358             if (has_utf8 && !pat_utf8)
9359                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
9360             else
9361                 sv_catpvn(sv, p, q - p);
9362             p = q;
9363         }
9364         if (q++ >= patend)
9365             break;
9366
9367         fmtstart = q;
9368
9369 /*
9370     We allow format specification elements in this order:
9371         \d+\$              explicit format parameter index
9372         [-+ 0#]+           flags
9373         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
9374         0                  flag (as above): repeated to allow "v02"     
9375         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
9376         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
9377         [hlqLV]            size
9378     [%bcdefginopsuxDFOUX] format (mandatory)
9379 */
9380
9381         if (args) {
9382 /*  
9383         As of perl5.9.3, printf format checking is on by default.
9384         Internally, perl uses %p formats to provide an escape to
9385         some extended formatting.  This block deals with those
9386         extensions: if it does not match, (char*)q is reset and
9387         the normal format processing code is used.
9388
9389         Currently defined extensions are:
9390                 %p              include pointer address (standard)      
9391                 %-p     (SVf)   include an SV (previously %_)
9392                 %-<num>p        include an SV with precision <num>      
9393                 %<num>p         reserved for future extensions
9394
9395         Robin Barker 2005-07-14
9396
9397                 %1p     (VDf)   removed.  RMB 2007-10-19
9398 */
9399             char* r = q; 
9400             bool sv = FALSE;    
9401             STRLEN n = 0;
9402             if (*q == '-')
9403                 sv = *q++;
9404             n = expect_number(&q);
9405             if (*q++ == 'p') {
9406                 if (sv) {                       /* SVf */
9407                     if (n) {
9408                         precis = n;
9409                         has_precis = TRUE;
9410                     }
9411                     argsv = MUTABLE_SV(va_arg(*args, void*));
9412                     eptr = SvPV_const(argsv, elen);
9413                     if (DO_UTF8(argsv))
9414                         is_utf8 = TRUE;
9415                     goto string;
9416                 }
9417                 else if (n) {
9418                     if (ckWARN_d(WARN_INTERNAL))
9419                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
9420                         "internal %%<num>p might conflict with future printf extensions");
9421                 }
9422             }
9423             q = r; 
9424         }
9425
9426         if ( (width = expect_number(&q)) ) {
9427             if (*q == '$') {
9428                 ++q;
9429                 efix = width;
9430             } else {
9431                 goto gotwidth;
9432             }
9433         }
9434
9435         /* FLAGS */
9436
9437         while (*q) {
9438             switch (*q) {
9439             case ' ':
9440             case '+':
9441                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
9442                     q++;
9443                 else
9444                     plus = *q++;
9445                 continue;
9446
9447             case '-':
9448                 left = TRUE;
9449                 q++;
9450                 continue;
9451
9452             case '0':
9453                 fill = *q++;
9454                 continue;
9455
9456             case '#':
9457                 alt = TRUE;
9458                 q++;
9459                 continue;
9460
9461             default:
9462                 break;
9463             }
9464             break;
9465         }
9466
9467       tryasterisk:
9468         if (*q == '*') {
9469             q++;
9470             if ( (ewix = expect_number(&q)) )
9471                 if (*q++ != '$')
9472                     goto unknown;
9473             asterisk = TRUE;
9474         }
9475         if (*q == 'v') {
9476             q++;
9477             if (vectorize)
9478                 goto unknown;
9479             if ((vectorarg = asterisk)) {
9480                 evix = ewix;
9481                 ewix = 0;
9482                 asterisk = FALSE;
9483             }
9484             vectorize = TRUE;
9485             goto tryasterisk;
9486         }
9487
9488         if (!asterisk)
9489         {
9490             if( *q == '0' )
9491                 fill = *q++;
9492             width = expect_number(&q);
9493         }
9494
9495         if (vectorize) {
9496             if (vectorarg) {
9497                 if (args)
9498                     vecsv = va_arg(*args, SV*);
9499                 else if (evix) {
9500                     vecsv = (evix > 0 && evix <= svmax)
9501                         ? svargs[evix-1] : &PL_sv_undef;
9502                 } else {
9503                     vecsv = svix < svmax ? svargs[svix++] : &PL_sv_undef;
9504                 }
9505                 dotstr = SvPV_const(vecsv, dotstrlen);
9506                 /* Keep the DO_UTF8 test *after* the SvPV call, else things go
9507                    bad with tied or overloaded values that return UTF8.  */
9508                 if (DO_UTF8(vecsv))
9509                     is_utf8 = TRUE;
9510                 else if (has_utf8) {
9511                     vecsv = sv_mortalcopy(vecsv);
9512                     sv_utf8_upgrade(vecsv);
9513                     dotstr = SvPV_const(vecsv, dotstrlen);
9514                     is_utf8 = TRUE;
9515                 }                   
9516             }
9517             if (args) {
9518                 VECTORIZE_ARGS
9519             }
9520             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
9521                 vecsv = svargs[efix ? efix-1 : svix++];
9522                 vecstr = (U8*)SvPV_const(vecsv,veclen);
9523                 vec_utf8 = DO_UTF8(vecsv);
9524
9525                 /* if this is a version object, we need to convert
9526                  * back into v-string notation and then let the
9527                  * vectorize happen normally
9528                  */
9529                 if (sv_derived_from(vecsv, "version")) {
9530                     char *version = savesvpv(vecsv);
9531                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
9532                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
9533                         "vector argument not supported with alpha versions");
9534                         goto unknown;
9535                     }
9536                     vecsv = sv_newmortal();
9537                     scan_vstring(version, version + veclen, vecsv);
9538                     vecstr = (U8*)SvPV_const(vecsv, veclen);
9539                     vec_utf8 = DO_UTF8(vecsv);
9540                     Safefree(version);
9541                 }
9542             }
9543             else {
9544                 vecstr = (U8*)"";
9545                 veclen = 0;
9546             }
9547         }
9548
9549         if (asterisk) {
9550             if (args)
9551                 i = va_arg(*args, int);
9552             else
9553                 i = (ewix ? ewix <= svmax : svix < svmax) ?
9554                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9555             left |= (i < 0);
9556             width = (i < 0) ? -i : i;
9557         }
9558       gotwidth:
9559
9560         /* PRECISION */
9561
9562         if (*q == '.') {
9563             q++;
9564             if (*q == '*') {
9565                 q++;
9566                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
9567                     goto unknown;
9568                 /* XXX: todo, support specified precision parameter */
9569                 if (epix)
9570                     goto unknown;
9571                 if (args)
9572                     i = va_arg(*args, int);
9573                 else
9574                     i = (ewix ? ewix <= svmax : svix < svmax)
9575                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9576                 precis = i;
9577                 has_precis = !(i < 0);
9578             }
9579             else {
9580                 precis = 0;
9581                 while (isDIGIT(*q))
9582                     precis = precis * 10 + (*q++ - '0');
9583                 has_precis = TRUE;
9584             }
9585         }
9586
9587         /* SIZE */
9588
9589         switch (*q) {
9590 #ifdef WIN32
9591         case 'I':                       /* Ix, I32x, and I64x */
9592 #  ifdef WIN64
9593             if (q[1] == '6' && q[2] == '4') {
9594                 q += 3;
9595                 intsize = 'q';
9596                 break;
9597             }
9598 #  endif
9599             if (q[1] == '3' && q[2] == '2') {
9600                 q += 3;
9601                 break;
9602             }
9603 #  ifdef WIN64
9604             intsize = 'q';
9605 #  endif
9606             q++;
9607             break;
9608 #endif
9609 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9610         case 'L':                       /* Ld */
9611             /*FALLTHROUGH*/
9612 #ifdef HAS_QUAD
9613         case 'q':                       /* qd */
9614 #endif
9615             intsize = 'q';
9616             q++;
9617             break;
9618 #endif
9619         case 'l':
9620 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9621             if (*(q + 1) == 'l') {      /* lld, llf */
9622                 intsize = 'q';
9623                 q += 2;
9624                 break;
9625              }
9626 #endif
9627             /*FALLTHROUGH*/
9628         case 'h':
9629             /*FALLTHROUGH*/
9630         case 'V':
9631             intsize = *q++;
9632             break;
9633         }
9634
9635         /* CONVERSION */
9636
9637         if (*q == '%') {
9638             eptr = q++;
9639             elen = 1;
9640             if (vectorize) {
9641                 c = '%';
9642                 goto unknown;
9643             }
9644             goto string;
9645         }
9646
9647         if (!vectorize && !args) {
9648             if (efix) {
9649                 const I32 i = efix-1;
9650                 argsv = (i >= 0 && i < svmax) ? svargs[i] : &PL_sv_undef;
9651             } else {
9652                 argsv = (svix >= 0 && svix < svmax)
9653                     ? svargs[svix++] : &PL_sv_undef;
9654             }
9655         }
9656
9657         switch (c = *q++) {
9658
9659             /* STRINGS */
9660
9661         case 'c':
9662             if (vectorize)
9663                 goto unknown;
9664             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
9665             if ((uv > 255 ||
9666                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
9667                 && !IN_BYTES) {
9668                 eptr = (char*)utf8buf;
9669                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
9670                 is_utf8 = TRUE;
9671             }
9672             else {
9673                 c = (char)uv;
9674                 eptr = &c;
9675                 elen = 1;
9676             }
9677             goto string;
9678
9679         case 's':
9680             if (vectorize)
9681                 goto unknown;
9682             if (args) {
9683                 eptr = va_arg(*args, char*);
9684                 if (eptr)
9685 #ifdef MACOS_TRADITIONAL
9686                   /* On MacOS, %#s format is used for Pascal strings */
9687                   if (alt)
9688                     elen = *eptr++;
9689                   else
9690 #endif
9691                     elen = strlen(eptr);
9692                 else {
9693                     eptr = (char *)nullstr;
9694                     elen = sizeof nullstr - 1;
9695                 }
9696             }
9697             else {
9698                 eptr = SvPV_const(argsv, elen);
9699                 if (DO_UTF8(argsv)) {
9700                     I32 old_precis = precis;
9701                     if (has_precis && precis < elen) {
9702                         I32 p = precis;
9703                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
9704                         precis = p;
9705                     }
9706                     if (width) { /* fudge width (can't fudge elen) */
9707                         if (has_precis && precis < elen)
9708                             width += precis - old_precis;
9709                         else
9710                             width += elen - sv_len_utf8(argsv);
9711                     }
9712                     is_utf8 = TRUE;
9713                 }
9714             }
9715
9716         string:
9717             if (has_precis && elen > precis)
9718                 elen = precis;
9719             break;
9720
9721             /* INTEGERS */
9722
9723         case 'p':
9724             if (alt || vectorize)
9725                 goto unknown;
9726             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
9727             base = 16;
9728             goto integer;
9729
9730         case 'D':
9731 #ifdef IV_IS_QUAD
9732             intsize = 'q';
9733 #else
9734             intsize = 'l';
9735 #endif
9736             /*FALLTHROUGH*/
9737         case 'd':
9738         case 'i':
9739 #if vdNUMBER
9740         format_vd:
9741 #endif
9742             if (vectorize) {
9743                 STRLEN ulen;
9744                 if (!veclen)
9745                     continue;
9746                 if (vec_utf8)
9747                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9748                                         UTF8_ALLOW_ANYUV);
9749                 else {
9750                     uv = *vecstr;
9751                     ulen = 1;
9752                 }
9753                 vecstr += ulen;
9754                 veclen -= ulen;
9755                 if (plus)
9756                      esignbuf[esignlen++] = plus;
9757             }
9758             else if (args) {
9759                 switch (intsize) {
9760                 case 'h':       iv = (short)va_arg(*args, int); break;
9761                 case 'l':       iv = va_arg(*args, long); break;
9762                 case 'V':       iv = va_arg(*args, IV); break;
9763                 default:        iv = va_arg(*args, int); break;
9764                 case 'q':
9765 #ifdef HAS_QUAD
9766                                 iv = va_arg(*args, Quad_t); break;
9767 #else
9768                                 goto unknown;
9769 #endif
9770                 }
9771             }
9772             else {
9773                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
9774                 switch (intsize) {
9775                 case 'h':       iv = (short)tiv; break;
9776                 case 'l':       iv = (long)tiv; break;
9777                 case 'V':
9778                 default:        iv = tiv; break;
9779                 case 'q':
9780 #ifdef HAS_QUAD
9781                                 iv = (Quad_t)tiv; break;
9782 #else
9783                                 goto unknown;
9784 #endif
9785                 }
9786             }
9787             if ( !vectorize )   /* we already set uv above */
9788             {
9789                 if (iv >= 0) {
9790                     uv = iv;
9791                     if (plus)
9792                         esignbuf[esignlen++] = plus;
9793                 }
9794                 else {
9795                     uv = -iv;
9796                     esignbuf[esignlen++] = '-';
9797                 }
9798             }
9799             base = 10;
9800             goto integer;
9801
9802         case 'U':
9803 #ifdef IV_IS_QUAD
9804             intsize = 'q';
9805 #else
9806             intsize = 'l';
9807 #endif
9808             /*FALLTHROUGH*/
9809         case 'u':
9810             base = 10;
9811             goto uns_integer;
9812
9813         case 'B':
9814         case 'b':
9815             base = 2;
9816             goto uns_integer;
9817
9818         case 'O':
9819 #ifdef IV_IS_QUAD
9820             intsize = 'q';
9821 #else
9822             intsize = 'l';
9823 #endif
9824             /*FALLTHROUGH*/
9825         case 'o':
9826             base = 8;
9827             goto uns_integer;
9828
9829         case 'X':
9830         case 'x':
9831             base = 16;
9832
9833         uns_integer:
9834             if (vectorize) {
9835                 STRLEN ulen;
9836         vector:
9837                 if (!veclen)
9838                     continue;
9839                 if (vec_utf8)
9840                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
9841                                         UTF8_ALLOW_ANYUV);
9842                 else {
9843                     uv = *vecstr;
9844                     ulen = 1;
9845                 }
9846                 vecstr += ulen;
9847                 veclen -= ulen;
9848             }
9849             else if (args) {
9850                 switch (intsize) {
9851                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
9852                 case 'l':  uv = va_arg(*args, unsigned long); break;
9853                 case 'V':  uv = va_arg(*args, UV); break;
9854                 default:   uv = va_arg(*args, unsigned); break;
9855                 case 'q':
9856 #ifdef HAS_QUAD
9857                            uv = va_arg(*args, Uquad_t); break;
9858 #else
9859                            goto unknown;
9860 #endif
9861                 }
9862             }
9863             else {
9864                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
9865                 switch (intsize) {
9866                 case 'h':       uv = (unsigned short)tuv; break;
9867                 case 'l':       uv = (unsigned long)tuv; break;
9868                 case 'V':
9869                 default:        uv = tuv; break;
9870                 case 'q':
9871 #ifdef HAS_QUAD
9872                                 uv = (Uquad_t)tuv; break;
9873 #else
9874                                 goto unknown;
9875 #endif
9876                 }
9877             }
9878
9879         integer:
9880             {
9881                 char *ptr = ebuf + sizeof ebuf;
9882                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
9883                 zeros = 0;
9884
9885                 switch (base) {
9886                     unsigned dig;
9887                 case 16:
9888                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
9889                     do {
9890                         dig = uv & 15;
9891                         *--ptr = p[dig];
9892                     } while (uv >>= 4);
9893                     if (tempalt) {
9894                         esignbuf[esignlen++] = '0';
9895                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
9896                     }
9897                     break;
9898                 case 8:
9899                     do {
9900                         dig = uv & 7;
9901                         *--ptr = '0' + dig;
9902                     } while (uv >>= 3);
9903                     if (alt && *ptr != '0')
9904                         *--ptr = '0';
9905                     break;
9906                 case 2:
9907                     do {
9908                         dig = uv & 1;
9909                         *--ptr = '0' + dig;
9910                     } while (uv >>= 1);
9911                     if (tempalt) {
9912                         esignbuf[esignlen++] = '0';
9913                         esignbuf[esignlen++] = c;
9914                     }
9915                     break;
9916                 default:                /* it had better be ten or less */
9917                     do {
9918                         dig = uv % base;
9919                         *--ptr = '0' + dig;
9920                     } while (uv /= base);
9921                     break;
9922                 }
9923                 elen = (ebuf + sizeof ebuf) - ptr;
9924                 eptr = ptr;
9925                 if (has_precis) {
9926                     if (precis > elen)
9927                         zeros = precis - elen;
9928                     else if (precis == 0 && elen == 1 && *eptr == '0'
9929                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
9930                         elen = 0;
9931
9932                 /* a precision nullifies the 0 flag. */
9933                     if (fill == '0')
9934                         fill = ' ';
9935                 }
9936             }
9937             break;
9938
9939             /* FLOATING POINT */
9940
9941         case 'F':
9942             c = 'f';            /* maybe %F isn't supported here */
9943             /*FALLTHROUGH*/
9944         case 'e': case 'E':
9945         case 'f':
9946         case 'g': case 'G':
9947             if (vectorize)
9948                 goto unknown;
9949
9950             /* This is evil, but floating point is even more evil */
9951
9952             /* for SV-style calling, we can only get NV
9953                for C-style calling, we assume %f is double;
9954                for simplicity we allow any of %Lf, %llf, %qf for long double
9955             */
9956             switch (intsize) {
9957             case 'V':
9958 #if defined(USE_LONG_DOUBLE)
9959                 intsize = 'q';
9960 #endif
9961                 break;
9962 /* [perl #20339] - we should accept and ignore %lf rather than die */
9963             case 'l':
9964                 /*FALLTHROUGH*/
9965             default:
9966 #if defined(USE_LONG_DOUBLE)
9967                 intsize = args ? 0 : 'q';
9968 #endif
9969                 break;
9970             case 'q':
9971 #if defined(HAS_LONG_DOUBLE)
9972                 break;
9973 #else
9974                 /*FALLTHROUGH*/
9975 #endif
9976             case 'h':
9977                 goto unknown;
9978             }
9979
9980             /* now we need (long double) if intsize == 'q', else (double) */
9981             nv = (args) ?
9982 #if LONG_DOUBLESIZE > DOUBLESIZE
9983                 intsize == 'q' ?
9984                     va_arg(*args, long double) :
9985                     va_arg(*args, double)
9986 #else
9987                     va_arg(*args, double)
9988 #endif
9989                 : SvNV(argsv);
9990
9991             need = 0;
9992             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
9993                else. frexp() has some unspecified behaviour for those three */
9994             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
9995                 i = PERL_INT_MIN;
9996                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
9997                    will cast our (long double) to (double) */
9998                 (void)Perl_frexp(nv, &i);
9999                 if (i == PERL_INT_MIN)
10000                     Perl_die(aTHX_ "panic: frexp");
10001                 if (i > 0)
10002                     need = BIT_DIGITS(i);
10003             }
10004             need += has_precis ? precis : 6; /* known default */
10005
10006             if (need < width)
10007                 need = width;
10008
10009 #ifdef HAS_LDBL_SPRINTF_BUG
10010             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10011                with sfio - Allen <allens@cpan.org> */
10012
10013 #  ifdef DBL_MAX
10014 #    define MY_DBL_MAX DBL_MAX
10015 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
10016 #    if DOUBLESIZE >= 8
10017 #      define MY_DBL_MAX 1.7976931348623157E+308L
10018 #    else
10019 #      define MY_DBL_MAX 3.40282347E+38L
10020 #    endif
10021 #  endif
10022
10023 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
10024 #    define MY_DBL_MAX_BUG 1L
10025 #  else
10026 #    define MY_DBL_MAX_BUG MY_DBL_MAX
10027 #  endif
10028
10029 #  ifdef DBL_MIN
10030 #    define MY_DBL_MIN DBL_MIN
10031 #  else  /* XXX guessing! -Allen */
10032 #    if DOUBLESIZE >= 8
10033 #      define MY_DBL_MIN 2.2250738585072014E-308L
10034 #    else
10035 #      define MY_DBL_MIN 1.17549435E-38L
10036 #    endif
10037 #  endif
10038
10039             if ((intsize == 'q') && (c == 'f') &&
10040                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
10041                 (need < DBL_DIG)) {
10042                 /* it's going to be short enough that
10043                  * long double precision is not needed */
10044
10045                 if ((nv <= 0L) && (nv >= -0L))
10046                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
10047                 else {
10048                     /* would use Perl_fp_class as a double-check but not
10049                      * functional on IRIX - see perl.h comments */
10050
10051                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
10052                         /* It's within the range that a double can represent */
10053 #if defined(DBL_MAX) && !defined(DBL_MIN)
10054                         if ((nv >= ((long double)1/DBL_MAX)) ||
10055                             (nv <= (-(long double)1/DBL_MAX)))
10056 #endif
10057                         fix_ldbl_sprintf_bug = TRUE;
10058                     }
10059                 }
10060                 if (fix_ldbl_sprintf_bug == TRUE) {
10061                     double temp;
10062
10063                     intsize = 0;
10064                     temp = (double)nv;
10065                     nv = (NV)temp;
10066                 }
10067             }
10068
10069 #  undef MY_DBL_MAX
10070 #  undef MY_DBL_MAX_BUG
10071 #  undef MY_DBL_MIN
10072
10073 #endif /* HAS_LDBL_SPRINTF_BUG */
10074
10075             need += 20; /* fudge factor */
10076             if (PL_efloatsize < need) {
10077                 Safefree(PL_efloatbuf);
10078                 PL_efloatsize = need + 20; /* more fudge */
10079                 Newx(PL_efloatbuf, PL_efloatsize, char);
10080                 PL_efloatbuf[0] = '\0';
10081             }
10082
10083             if ( !(width || left || plus || alt) && fill != '0'
10084                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
10085                 /* See earlier comment about buggy Gconvert when digits,
10086                    aka precis is 0  */
10087                 if ( c == 'g' && precis) {
10088                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
10089                     /* May return an empty string for digits==0 */
10090                     if (*PL_efloatbuf) {
10091                         elen = strlen(PL_efloatbuf);
10092                         goto float_converted;
10093                     }
10094                 } else if ( c == 'f' && !precis) {
10095                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
10096                         break;
10097                 }
10098             }
10099             {
10100                 char *ptr = ebuf + sizeof ebuf;
10101                 *--ptr = '\0';
10102                 *--ptr = c;
10103                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
10104 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
10105                 if (intsize == 'q') {
10106                     /* Copy the one or more characters in a long double
10107                      * format before the 'base' ([efgEFG]) character to
10108                      * the format string. */
10109                     static char const prifldbl[] = PERL_PRIfldbl;
10110                     char const *p = prifldbl + sizeof(prifldbl) - 3;
10111                     while (p >= prifldbl) { *--ptr = *p--; }
10112                 }
10113 #endif
10114                 if (has_precis) {
10115                     base = precis;
10116                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10117                     *--ptr = '.';
10118                 }
10119                 if (width) {
10120                     base = width;
10121                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10122                 }
10123                 if (fill == '0')
10124                     *--ptr = fill;
10125                 if (left)
10126                     *--ptr = '-';
10127                 if (plus)
10128                     *--ptr = plus;
10129                 if (alt)
10130                     *--ptr = '#';
10131                 *--ptr = '%';
10132
10133                 /* No taint.  Otherwise we are in the strange situation
10134                  * where printf() taints but print($float) doesn't.
10135                  * --jhi */
10136 #if defined(HAS_LONG_DOUBLE)
10137                 elen = ((intsize == 'q')
10138                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
10139                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
10140 #else
10141                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
10142 #endif
10143             }
10144         float_converted:
10145             eptr = PL_efloatbuf;
10146             break;
10147
10148             /* SPECIAL */
10149
10150         case 'n':
10151             if (vectorize)
10152                 goto unknown;
10153             i = SvCUR(sv) - origlen;
10154             if (args) {
10155                 switch (intsize) {
10156                 case 'h':       *(va_arg(*args, short*)) = i; break;
10157                 default:        *(va_arg(*args, int*)) = i; break;
10158                 case 'l':       *(va_arg(*args, long*)) = i; break;
10159                 case 'V':       *(va_arg(*args, IV*)) = i; break;
10160                 case 'q':
10161 #ifdef HAS_QUAD
10162                                 *(va_arg(*args, Quad_t*)) = i; break;
10163 #else
10164                                 goto unknown;
10165 #endif
10166                 }
10167             }
10168             else
10169                 sv_setuv_mg(argsv, (UV)i);
10170             continue;   /* not "break" */
10171
10172             /* UNKNOWN */
10173
10174         default:
10175       unknown:
10176             if (!args
10177                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
10178                 && ckWARN(WARN_PRINTF))
10179             {
10180                 SV * const msg = sv_newmortal();
10181                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
10182                           (PL_op->op_type == OP_PRTF) ? "" : "s");
10183                 if (fmtstart < patend) {
10184                     const char * const fmtend = q < patend ? q : patend;
10185                     const char * f;
10186                     sv_catpvs(msg, "\"%");
10187                     for (f = fmtstart; f < fmtend; f++) {
10188                         if (isPRINT(*f)) {
10189                             sv_catpvn(msg, f, 1);
10190                         } else {
10191                             Perl_sv_catpvf(aTHX_ msg,
10192                                            "\\%03"UVof, (UV)*f & 0xFF);
10193                         }
10194                     }
10195                     sv_catpvs(msg, "\"");
10196                 } else {
10197                     sv_catpvs(msg, "end of string");
10198                 }
10199                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
10200             }
10201
10202             /* output mangled stuff ... */
10203             if (c == '\0')
10204                 --q;
10205             eptr = p;
10206             elen = q - p;
10207
10208             /* ... right here, because formatting flags should not apply */
10209             SvGROW(sv, SvCUR(sv) + elen + 1);
10210             p = SvEND(sv);
10211             Copy(eptr, p, elen, char);
10212             p += elen;
10213             *p = '\0';
10214             SvCUR_set(sv, p - SvPVX_const(sv));
10215             svix = osvix;
10216             continue;   /* not "break" */
10217         }
10218
10219         if (is_utf8 != has_utf8) {
10220             if (is_utf8) {
10221                 if (SvCUR(sv))
10222                     sv_utf8_upgrade(sv);
10223             }
10224             else {
10225                 const STRLEN old_elen = elen;
10226                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
10227                 sv_utf8_upgrade(nsv);
10228                 eptr = SvPVX_const(nsv);
10229                 elen = SvCUR(nsv);
10230
10231                 if (width) { /* fudge width (can't fudge elen) */
10232                     width += elen - old_elen;
10233                 }
10234                 is_utf8 = TRUE;
10235             }
10236         }
10237
10238         have = esignlen + zeros + elen;
10239         if (have < zeros)
10240             Perl_croak_nocontext("%s", PL_memory_wrap);
10241
10242         need = (have > width ? have : width);
10243         gap = need - have;
10244
10245         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
10246             Perl_croak_nocontext("%s", PL_memory_wrap);
10247         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
10248         p = SvEND(sv);
10249         if (esignlen && fill == '0') {
10250             int i;
10251             for (i = 0; i < (int)esignlen; i++)
10252                 *p++ = esignbuf[i];
10253         }
10254         if (gap && !left) {
10255             memset(p, fill, gap);
10256             p += gap;
10257         }
10258         if (esignlen && fill != '0') {
10259             int i;
10260             for (i = 0; i < (int)esignlen; i++)
10261                 *p++ = esignbuf[i];
10262         }
10263         if (zeros) {
10264             int i;
10265             for (i = zeros; i; i--)
10266                 *p++ = '0';
10267         }
10268         if (elen) {
10269             Copy(eptr, p, elen, char);
10270             p += elen;
10271         }
10272         if (gap && left) {
10273             memset(p, ' ', gap);
10274             p += gap;
10275         }
10276         if (vectorize) {
10277             if (veclen) {
10278                 Copy(dotstr, p, dotstrlen, char);
10279                 p += dotstrlen;
10280             }
10281             else
10282                 vectorize = FALSE;              /* done iterating over vecstr */
10283         }
10284         if (is_utf8)
10285             has_utf8 = TRUE;
10286         if (has_utf8)
10287             SvUTF8_on(sv);
10288         *p = '\0';
10289         SvCUR_set(sv, p - SvPVX_const(sv));
10290         if (vectorize) {
10291             esignlen = 0;
10292             goto vector;
10293         }
10294     }
10295 }
10296
10297 /* =========================================================================
10298
10299 =head1 Cloning an interpreter
10300
10301 All the macros and functions in this section are for the private use of
10302 the main function, perl_clone().
10303
10304 The foo_dup() functions make an exact copy of an existing foo thingy.
10305 During the course of a cloning, a hash table is used to map old addresses
10306 to new addresses. The table is created and manipulated with the
10307 ptr_table_* functions.
10308
10309 =cut
10310
10311  * =========================================================================*/
10312
10313
10314 #if defined(USE_ITHREADS)
10315
10316 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
10317 #ifndef GpREFCNT_inc
10318 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
10319 #endif
10320
10321
10322 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
10323    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
10324    If this changes, please unmerge ss_dup.  */
10325 #define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
10326 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup(s,t))
10327 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
10328 #define av_dup_inc(s,t) MUTABLE_AV(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10329 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
10330 #define hv_dup_inc(s,t) MUTABLE_HV(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10331 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
10332 #define cv_dup_inc(s,t) MUTABLE_CV(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10333 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
10334 #define io_dup_inc(s,t) MUTABLE_IO(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10335 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
10336 #define gv_dup_inc(s,t) MUTABLE_GV(SvREFCNT_inc(sv_dup((const SV *)s,t)))
10337 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
10338 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
10339
10340 /* clone a parser */
10341
10342 yy_parser *
10343 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
10344 {
10345     yy_parser *parser;
10346
10347     PERL_ARGS_ASSERT_PARSER_DUP;
10348
10349     if (!proto)
10350         return NULL;
10351
10352     /* look for it in the table first */
10353     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
10354     if (parser)
10355         return parser;
10356
10357     /* create anew and remember what it is */
10358     Newxz(parser, 1, yy_parser);
10359     ptr_table_store(PL_ptr_table, proto, parser);
10360
10361     parser->yyerrstatus = 0;
10362     parser->yychar = YYEMPTY;           /* Cause a token to be read.  */
10363
10364     /* XXX these not yet duped */
10365     parser->old_parser = NULL;
10366     parser->stack = NULL;
10367     parser->ps = NULL;
10368     parser->stack_size = 0;
10369     /* XXX parser->stack->state = 0; */
10370
10371     /* XXX eventually, just Copy() most of the parser struct ? */
10372
10373     parser->lex_brackets = proto->lex_brackets;
10374     parser->lex_casemods = proto->lex_casemods;
10375     parser->lex_brackstack = savepvn(proto->lex_brackstack,
10376                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
10377     parser->lex_casestack = savepvn(proto->lex_casestack,
10378                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
10379     parser->lex_defer   = proto->lex_defer;
10380     parser->lex_dojoin  = proto->lex_dojoin;
10381     parser->lex_expect  = proto->lex_expect;
10382     parser->lex_formbrack = proto->lex_formbrack;
10383     parser->lex_inpat   = proto->lex_inpat;
10384     parser->lex_inwhat  = proto->lex_inwhat;
10385     parser->lex_op      = proto->lex_op;
10386     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
10387     parser->lex_starts  = proto->lex_starts;
10388     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
10389     parser->multi_close = proto->multi_close;
10390     parser->multi_open  = proto->multi_open;
10391     parser->multi_start = proto->multi_start;
10392     parser->multi_end   = proto->multi_end;
10393     parser->pending_ident = proto->pending_ident;
10394     parser->preambled   = proto->preambled;
10395     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
10396     parser->linestr     = sv_dup_inc(proto->linestr, param);
10397     parser->expect      = proto->expect;
10398     parser->copline     = proto->copline;
10399     parser->last_lop_op = proto->last_lop_op;
10400     parser->lex_state   = proto->lex_state;
10401     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
10402     /* rsfp_filters entries have fake IoDIRP() */
10403     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
10404     parser->in_my       = proto->in_my;
10405     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
10406     parser->error_count = proto->error_count;
10407
10408
10409     parser->linestr     = sv_dup_inc(proto->linestr, param);
10410
10411     {
10412         char * const ols = SvPVX(proto->linestr);
10413         char * const ls  = SvPVX(parser->linestr);
10414
10415         parser->bufptr      = ls + (proto->bufptr >= ols ?
10416                                     proto->bufptr -  ols : 0);
10417         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
10418                                     proto->oldbufptr -  ols : 0);
10419         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
10420                                     proto->oldoldbufptr -  ols : 0);
10421         parser->linestart   = ls + (proto->linestart >= ols ?
10422                                     proto->linestart -  ols : 0);
10423         parser->last_uni    = ls + (proto->last_uni >= ols ?
10424                                     proto->last_uni -  ols : 0);
10425         parser->last_lop    = ls + (proto->last_lop >= ols ?
10426                                     proto->last_lop -  ols : 0);
10427
10428         parser->bufend      = ls + SvCUR(parser->linestr);
10429     }
10430
10431     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
10432
10433
10434 #ifdef PERL_MAD
10435     parser->endwhite    = proto->endwhite;
10436     parser->faketokens  = proto->faketokens;
10437     parser->lasttoke    = proto->lasttoke;
10438     parser->nextwhite   = proto->nextwhite;
10439     parser->realtokenstart = proto->realtokenstart;
10440     parser->skipwhite   = proto->skipwhite;
10441     parser->thisclose   = proto->thisclose;
10442     parser->thismad     = proto->thismad;
10443     parser->thisopen    = proto->thisopen;
10444     parser->thisstuff   = proto->thisstuff;
10445     parser->thistoken   = proto->thistoken;
10446     parser->thiswhite   = proto->thiswhite;
10447
10448     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
10449     parser->curforce    = proto->curforce;
10450 #else
10451     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
10452     Copy(proto->nexttype, parser->nexttype, 5,  I32);
10453     parser->nexttoke    = proto->nexttoke;
10454 #endif
10455     return parser;
10456 }
10457
10458
10459 /* duplicate a file handle */
10460
10461 PerlIO *
10462 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
10463 {
10464     PerlIO *ret;
10465
10466     PERL_ARGS_ASSERT_FP_DUP;
10467     PERL_UNUSED_ARG(type);
10468
10469     if (!fp)
10470         return (PerlIO*)NULL;
10471
10472     /* look for it in the table first */
10473     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
10474     if (ret)
10475         return ret;
10476
10477     /* create anew and remember what it is */
10478     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
10479     ptr_table_store(PL_ptr_table, fp, ret);
10480     return ret;
10481 }
10482
10483 /* duplicate a directory handle */
10484
10485 DIR *
10486 Perl_dirp_dup(pTHX_ DIR *const dp)
10487 {
10488     PERL_UNUSED_CONTEXT;
10489     if (!dp)
10490         return (DIR*)NULL;
10491     /* XXX TODO */
10492     return dp;
10493 }
10494
10495 /* duplicate a typeglob */
10496
10497 GP *
10498 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
10499 {
10500     GP *ret;
10501
10502     PERL_ARGS_ASSERT_GP_DUP;
10503
10504     if (!gp)
10505         return (GP*)NULL;
10506     /* look for it in the table first */
10507     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
10508     if (ret)
10509         return ret;
10510
10511     /* create anew and remember what it is */
10512     Newxz(ret, 1, GP);
10513     ptr_table_store(PL_ptr_table, gp, ret);
10514
10515     /* clone */
10516     ret->gp_refcnt      = 0;                    /* must be before any other dups! */
10517     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
10518     ret->gp_io          = io_dup_inc(gp->gp_io, param);
10519     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
10520     ret->gp_av          = av_dup_inc(gp->gp_av, param);
10521     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
10522     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
10523     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
10524     ret->gp_cvgen       = gp->gp_cvgen;
10525     ret->gp_line        = gp->gp_line;
10526     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
10527     return ret;
10528 }
10529
10530 /* duplicate a chain of magic */
10531
10532 MAGIC *
10533 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
10534 {
10535     MAGIC *mgprev = (MAGIC*)NULL;
10536     MAGIC *mgret;
10537
10538     PERL_ARGS_ASSERT_MG_DUP;
10539
10540     if (!mg)
10541         return (MAGIC*)NULL;
10542     /* look for it in the table first */
10543     mgret = (MAGIC*)ptr_table_fetch(PL_ptr_table, mg);
10544     if (mgret)
10545         return mgret;
10546
10547     for (; mg; mg = mg->mg_moremagic) {
10548         MAGIC *nmg;
10549         Newxz(nmg, 1, MAGIC);
10550         if (mgprev)
10551             mgprev->mg_moremagic = nmg;
10552         else
10553             mgret = nmg;
10554         nmg->mg_virtual = mg->mg_virtual;       /* XXX copy dynamic vtable? */
10555         nmg->mg_private = mg->mg_private;
10556         nmg->mg_type    = mg->mg_type;
10557         nmg->mg_flags   = mg->mg_flags;
10558         /* FIXME for plugins
10559         if (mg->mg_type == PERL_MAGIC_qr) {
10560             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)mg->mg_obj, param));
10561         }
10562         else
10563         */
10564         if(mg->mg_type == PERL_MAGIC_backref) {
10565             /* The backref AV has its reference count deliberately bumped by
10566                1.  */
10567             nmg->mg_obj
10568                 = SvREFCNT_inc(av_dup_inc((const AV *) mg->mg_obj, param));
10569         }
10570         else {
10571             nmg->mg_obj = (mg->mg_flags & MGf_REFCOUNTED)
10572                               ? sv_dup_inc(mg->mg_obj, param)
10573                               : sv_dup(mg->mg_obj, param);
10574         }
10575         nmg->mg_len     = mg->mg_len;
10576         nmg->mg_ptr     = mg->mg_ptr;   /* XXX random ptr? */
10577         if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
10578             if (mg->mg_len > 0) {
10579                 nmg->mg_ptr     = SAVEPVN(mg->mg_ptr, mg->mg_len);
10580                 if (mg->mg_type == PERL_MAGIC_overload_table &&
10581                         AMT_AMAGIC((AMT*)mg->mg_ptr))
10582                 {
10583                     const AMT * const amtp = (AMT*)mg->mg_ptr;
10584                     AMT * const namtp = (AMT*)nmg->mg_ptr;
10585                     I32 i;
10586                     for (i = 1; i < NofAMmeth; i++) {
10587                         namtp->table[i] = cv_dup_inc(amtp->table[i], param);
10588                     }
10589                 }
10590             }
10591             else if (mg->mg_len == HEf_SVKEY)
10592                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)mg->mg_ptr, param);
10593         }
10594         if ((mg->mg_flags & MGf_DUP) && mg->mg_virtual && mg->mg_virtual->svt_dup) {
10595             CALL_FPTR(nmg->mg_virtual->svt_dup)(aTHX_ nmg, param);
10596         }
10597         mgprev = nmg;
10598     }
10599     return mgret;
10600 }
10601
10602 #endif /* USE_ITHREADS */
10603
10604 /* create a new pointer-mapping table */
10605
10606 PTR_TBL_t *
10607 Perl_ptr_table_new(pTHX)
10608 {
10609     PTR_TBL_t *tbl;
10610     PERL_UNUSED_CONTEXT;
10611
10612     Newxz(tbl, 1, PTR_TBL_t);
10613     tbl->tbl_max        = 511;
10614     tbl->tbl_items      = 0;
10615     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
10616     return tbl;
10617 }
10618
10619 #define PTR_TABLE_HASH(ptr) \
10620   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
10621
10622 /* 
10623    we use the PTE_SVSLOT 'reservation' made above, both here (in the
10624    following define) and at call to new_body_inline made below in 
10625    Perl_ptr_table_store()
10626  */
10627
10628 #define del_pte(p)     del_body_type(p, PTE_SVSLOT)
10629
10630 /* map an existing pointer using a table */
10631
10632 STATIC PTR_TBL_ENT_t *
10633 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
10634 {
10635     PTR_TBL_ENT_t *tblent;
10636     const UV hash = PTR_TABLE_HASH(sv);
10637
10638     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
10639
10640     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
10641     for (; tblent; tblent = tblent->next) {
10642         if (tblent->oldval == sv)
10643             return tblent;
10644     }
10645     return NULL;
10646 }
10647
10648 void *
10649 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
10650 {
10651     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
10652
10653     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
10654     PERL_UNUSED_CONTEXT;
10655
10656     return tblent ? tblent->newval : NULL;
10657 }
10658
10659 /* add a new entry to a pointer-mapping table */
10660
10661 void
10662 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
10663 {
10664     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
10665
10666     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
10667     PERL_UNUSED_CONTEXT;
10668
10669     if (tblent) {
10670         tblent->newval = newsv;
10671     } else {
10672         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
10673
10674         new_body_inline(tblent, PTE_SVSLOT);
10675
10676         tblent->oldval = oldsv;
10677         tblent->newval = newsv;
10678         tblent->next = tbl->tbl_ary[entry];
10679         tbl->tbl_ary[entry] = tblent;
10680         tbl->tbl_items++;
10681         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
10682             ptr_table_split(tbl);
10683     }
10684 }
10685
10686 /* double the hash bucket size of an existing ptr table */
10687
10688 void
10689 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
10690 {
10691     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
10692     const UV oldsize = tbl->tbl_max + 1;
10693     UV newsize = oldsize * 2;
10694     UV i;
10695
10696     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
10697     PERL_UNUSED_CONTEXT;
10698
10699     Renew(ary, newsize, PTR_TBL_ENT_t*);
10700     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
10701     tbl->tbl_max = --newsize;
10702     tbl->tbl_ary = ary;
10703     for (i=0; i < oldsize; i++, ary++) {
10704         PTR_TBL_ENT_t **curentp, **entp, *ent;
10705         if (!*ary)
10706             continue;
10707         curentp = ary + oldsize;
10708         for (entp = ary, ent = *ary; ent; ent = *entp) {
10709             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
10710                 *entp = ent->next;
10711                 ent->next = *curentp;
10712                 *curentp = ent;
10713                 continue;
10714             }
10715             else
10716                 entp = &ent->next;
10717         }
10718     }
10719 }
10720
10721 /* remove all the entries from a ptr table */
10722
10723 void
10724 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
10725 {
10726     if (tbl && tbl->tbl_items) {
10727         register PTR_TBL_ENT_t * const * const array = tbl->tbl_ary;
10728         UV riter = tbl->tbl_max;
10729
10730         do {
10731             PTR_TBL_ENT_t *entry = array[riter];
10732
10733             while (entry) {
10734                 PTR_TBL_ENT_t * const oentry = entry;
10735                 entry = entry->next;
10736                 del_pte(oentry);
10737             }
10738         } while (riter--);
10739
10740         tbl->tbl_items = 0;
10741     }
10742 }
10743
10744 /* clear and free a ptr table */
10745
10746 void
10747 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
10748 {
10749     if (!tbl) {
10750         return;
10751     }
10752     ptr_table_clear(tbl);
10753     Safefree(tbl->tbl_ary);
10754     Safefree(tbl);
10755 }
10756
10757 #if defined(USE_ITHREADS)
10758
10759 void
10760 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
10761 {
10762     PERL_ARGS_ASSERT_RVPV_DUP;
10763
10764     if (SvROK(sstr)) {
10765         SvRV_set(dstr, SvWEAKREF(sstr)
10766                        ? sv_dup(SvRV_const(sstr), param)
10767                        : sv_dup_inc(SvRV_const(sstr), param));
10768
10769     }
10770     else if (SvPVX_const(sstr)) {
10771         /* Has something there */
10772         if (SvLEN(sstr)) {
10773             /* Normal PV - clone whole allocated space */
10774             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
10775             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
10776                 /* Not that normal - actually sstr is copy on write.
10777                    But we are a true, independant SV, so:  */
10778                 SvREADONLY_off(dstr);
10779                 SvFAKE_off(dstr);
10780             }
10781         }
10782         else {
10783             /* Special case - not normally malloced for some reason */
10784             if (isGV_with_GP(sstr)) {
10785                 /* Don't need to do anything here.  */
10786             }
10787             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
10788                 /* A "shared" PV - clone it as "shared" PV */
10789                 SvPV_set(dstr,
10790                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
10791                                          param)));
10792             }
10793             else {
10794                 /* Some other special case - random pointer */
10795                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
10796             }
10797         }
10798     }
10799     else {
10800         /* Copy the NULL */
10801         SvPV_set(dstr, NULL);
10802     }
10803 }
10804
10805 /* duplicate an SV of any type (including AV, HV etc) */
10806
10807 SV *
10808 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
10809 {
10810     dVAR;
10811     SV *dstr;
10812
10813     PERL_ARGS_ASSERT_SV_DUP;
10814
10815     if (!sstr)
10816         return NULL;
10817     if (SvTYPE(sstr) == SVTYPEMASK) {
10818 #ifdef DEBUG_LEAKING_SCALARS_ABORT
10819         abort();
10820 #endif
10821         return NULL;
10822     }
10823     /* look for it in the table first */
10824     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
10825     if (dstr)
10826         return dstr;
10827
10828     if(param->flags & CLONEf_JOIN_IN) {
10829         /** We are joining here so we don't want do clone
10830             something that is bad **/
10831         if (SvTYPE(sstr) == SVt_PVHV) {
10832             const HEK * const hvname = HvNAME_HEK(sstr);
10833             if (hvname)
10834                 /** don't clone stashes if they already exist **/
10835                 return MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname), 0));
10836         }
10837     }
10838
10839     /* create anew and remember what it is */
10840     new_SV(dstr);
10841
10842 #ifdef DEBUG_LEAKING_SCALARS
10843     dstr->sv_debug_optype = sstr->sv_debug_optype;
10844     dstr->sv_debug_line = sstr->sv_debug_line;
10845     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
10846     dstr->sv_debug_cloned = 1;
10847     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
10848 #endif
10849
10850     ptr_table_store(PL_ptr_table, sstr, dstr);
10851
10852     /* clone */
10853     SvFLAGS(dstr)       = SvFLAGS(sstr);
10854     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
10855     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
10856
10857 #ifdef DEBUGGING
10858     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
10859         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
10860                       (void*)PL_watch_pvx, SvPVX_const(sstr));
10861 #endif
10862
10863     /* don't clone objects whose class has asked us not to */
10864     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
10865         SvFLAGS(dstr) = 0;
10866         return dstr;
10867     }
10868
10869     switch (SvTYPE(sstr)) {
10870     case SVt_NULL:
10871         SvANY(dstr)     = NULL;
10872         break;
10873     case SVt_IV:
10874         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
10875         if(SvROK(sstr)) {
10876             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10877         } else {
10878             SvIV_set(dstr, SvIVX(sstr));
10879         }
10880         break;
10881     case SVt_NV:
10882         SvANY(dstr)     = new_XNV();
10883         SvNV_set(dstr, SvNVX(sstr));
10884         break;
10885         /* case SVt_BIND: */
10886     default:
10887         {
10888             /* These are all the types that need complex bodies allocating.  */
10889             void *new_body;
10890             const svtype sv_type = SvTYPE(sstr);
10891             const struct body_details *const sv_type_details
10892                 = bodies_by_type + sv_type;
10893
10894             switch (sv_type) {
10895             default:
10896                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
10897                 break;
10898
10899             case SVt_PVGV:
10900             case SVt_PVIO:
10901             case SVt_PVFM:
10902             case SVt_PVHV:
10903             case SVt_PVAV:
10904             case SVt_PVCV:
10905             case SVt_PVLV:
10906             case SVt_REGEXP:
10907             case SVt_PVMG:
10908             case SVt_PVNV:
10909             case SVt_PVIV:
10910             case SVt_PV:
10911                 assert(sv_type_details->body_size);
10912                 if (sv_type_details->arena) {
10913                     new_body_inline(new_body, sv_type);
10914                     new_body
10915                         = (void*)((char*)new_body - sv_type_details->offset);
10916                 } else {
10917                     new_body = new_NOARENA(sv_type_details);
10918                 }
10919             }
10920             assert(new_body);
10921             SvANY(dstr) = new_body;
10922
10923 #ifndef PURIFY
10924             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
10925                  ((char*)SvANY(dstr)) + sv_type_details->offset,
10926                  sv_type_details->copy, char);
10927 #else
10928             Copy(((char*)SvANY(sstr)),
10929                  ((char*)SvANY(dstr)),
10930                  sv_type_details->body_size + sv_type_details->offset, char);
10931 #endif
10932
10933             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
10934                 && !isGV_with_GP(dstr))
10935                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10936
10937             /* The Copy above means that all the source (unduplicated) pointers
10938                are now in the destination.  We can check the flags and the
10939                pointers in either, but it's possible that there's less cache
10940                missing by always going for the destination.
10941                FIXME - instrument and check that assumption  */
10942             if (sv_type >= SVt_PVMG) {
10943                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
10944                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
10945                 } else if (SvMAGIC(dstr))
10946                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
10947                 if (SvSTASH(dstr))
10948                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
10949             }
10950
10951             /* The cast silences a GCC warning about unhandled types.  */
10952             switch ((int)sv_type) {
10953             case SVt_PV:
10954                 break;
10955             case SVt_PVIV:
10956                 break;
10957             case SVt_PVNV:
10958                 break;
10959             case SVt_PVMG:
10960                 break;
10961             case SVt_REGEXP:
10962                 /* FIXME for plugins */
10963                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
10964                 break;
10965             case SVt_PVLV:
10966                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
10967                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
10968                     LvTARG(dstr) = dstr;
10969                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
10970                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
10971                 else
10972                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
10973             case SVt_PVGV:
10974                 if(isGV_with_GP(sstr)) {
10975                     if (GvNAME_HEK(dstr))
10976                         GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
10977                     /* Don't call sv_add_backref here as it's going to be
10978                        created as part of the magic cloning of the symbol
10979                        table.  */
10980                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
10981                        at the point of this comment.  */
10982                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
10983                     GvGP(dstr)  = gp_dup(GvGP(sstr), param);
10984                     (void)GpREFCNT_inc(GvGP(dstr));
10985                 } else
10986                     Perl_rvpv_dup(aTHX_ dstr, sstr, param);
10987                 break;
10988             case SVt_PVIO:
10989                 IoIFP(dstr)     = fp_dup(IoIFP(dstr), IoTYPE(dstr), param);
10990                 if (IoOFP(dstr) == IoIFP(sstr))
10991                     IoOFP(dstr) = IoIFP(dstr);
10992                 else
10993                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
10994                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
10995                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
10996                     /* I have no idea why fake dirp (rsfps)
10997                        should be treated differently but otherwise
10998                        we end up with leaks -- sky*/
10999                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
11000                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
11001                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
11002                 } else {
11003                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
11004                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
11005                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
11006                     if (IoDIRP(dstr)) {
11007                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr));
11008                     } else {
11009                         NOOP;
11010                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
11011                     }
11012                 }
11013                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
11014                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
11015                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
11016                 break;
11017             case SVt_PVAV:
11018                 /* avoid cloning an empty array */
11019                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
11020                     SV **dst_ary, **src_ary;
11021                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
11022
11023                     src_ary = AvARRAY((const AV *)sstr);
11024                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
11025                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
11026                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
11027                     AvALLOC((const AV *)dstr) = dst_ary;
11028                     if (AvREAL((const AV *)sstr)) {
11029                         while (items-- > 0)
11030                             *dst_ary++ = sv_dup_inc(*src_ary++, param);
11031                     }
11032                     else {
11033                         while (items-- > 0)
11034                             *dst_ary++ = sv_dup(*src_ary++, param);
11035                     }
11036                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
11037                     while (items-- > 0) {
11038                         *dst_ary++ = &PL_sv_undef;
11039                     }
11040                 }
11041                 else {
11042                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
11043                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
11044                     AvMAX(  (const AV *)dstr)   = -1;
11045                     AvFILLp((const AV *)dstr)   = -1;
11046                 }
11047                 break;
11048             case SVt_PVHV:
11049                 if (HvARRAY((const HV *)sstr)) {
11050                     STRLEN i = 0;
11051                     const bool sharekeys = !!HvSHAREKEYS(sstr);
11052                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
11053                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
11054                     char *darray;
11055                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
11056                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
11057                         char);
11058                     HvARRAY(dstr) = (HE**)darray;
11059                     while (i <= sxhv->xhv_max) {
11060                         const HE * const source = HvARRAY(sstr)[i];
11061                         HvARRAY(dstr)[i] = source
11062                             ? he_dup(source, sharekeys, param) : 0;
11063                         ++i;
11064                     }
11065                     if (SvOOK(sstr)) {
11066                         HEK *hvname;
11067                         const struct xpvhv_aux * const saux = HvAUX(sstr);
11068                         struct xpvhv_aux * const daux = HvAUX(dstr);
11069                         /* This flag isn't copied.  */
11070                         /* SvOOK_on(hv) attacks the IV flags.  */
11071                         SvFLAGS(dstr) |= SVf_OOK;
11072
11073                         hvname = saux->xhv_name;
11074                         daux->xhv_name = hvname ? hek_dup(hvname, param) : hvname;
11075
11076                         daux->xhv_riter = saux->xhv_riter;
11077                         daux->xhv_eiter = saux->xhv_eiter
11078                             ? he_dup(saux->xhv_eiter,
11079                                         (bool)!!HvSHAREKEYS(sstr), param) : 0;
11080                         /* backref array needs refcnt=2; see sv_add_backref */
11081                         daux->xhv_backreferences =
11082                             saux->xhv_backreferences
11083                             ? MUTABLE_AV(SvREFCNT_inc(
11084                                                       sv_dup_inc((const SV *)saux->xhv_backreferences, param)))
11085                                 : 0;
11086
11087                         daux->xhv_mro_meta = saux->xhv_mro_meta
11088                             ? mro_meta_dup(saux->xhv_mro_meta, param)
11089                             : 0;
11090
11091                         /* Record stashes for possible cloning in Perl_clone(). */
11092                         if (hvname)
11093                             av_push(param->stashes, dstr);
11094                     }
11095                 }
11096                 else
11097                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
11098                 break;
11099             case SVt_PVCV:
11100                 if (!(param->flags & CLONEf_COPY_STACKS)) {
11101                     CvDEPTH(dstr) = 0;
11102                 }
11103             case SVt_PVFM:
11104                 /* NOTE: not refcounted */
11105                 CvSTASH(dstr)   = hv_dup(CvSTASH(dstr), param);
11106                 OP_REFCNT_LOCK;
11107                 if (!CvISXSUB(dstr))
11108                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
11109                 OP_REFCNT_UNLOCK;
11110                 if (CvCONST(dstr) && CvISXSUB(dstr)) {
11111                     CvXSUBANY(dstr).any_ptr =
11112                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
11113                 }
11114                 /* don't dup if copying back - CvGV isn't refcounted, so the
11115                  * duped GV may never be freed. A bit of a hack! DAPM */
11116                 CvGV(dstr)      = (param->flags & CLONEf_JOIN_IN) ?
11117                     NULL : gv_dup(CvGV(dstr), param) ;
11118                 PAD_DUP(CvPADLIST(dstr), CvPADLIST(sstr), param);
11119                 CvOUTSIDE(dstr) =
11120                     CvWEAKOUTSIDE(sstr)
11121                     ? cv_dup(    CvOUTSIDE(dstr), param)
11122                     : cv_dup_inc(CvOUTSIDE(dstr), param);
11123                 if (!CvISXSUB(dstr))
11124                     CvFILE(dstr) = SAVEPV(CvFILE(dstr));
11125                 break;
11126             }
11127         }
11128     }
11129
11130     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
11131         ++PL_sv_objcount;
11132
11133     return dstr;
11134  }
11135
11136 /* duplicate a context */
11137
11138 PERL_CONTEXT *
11139 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
11140 {
11141     PERL_CONTEXT *ncxs;
11142
11143     PERL_ARGS_ASSERT_CX_DUP;
11144
11145     if (!cxs)
11146         return (PERL_CONTEXT*)NULL;
11147
11148     /* look for it in the table first */
11149     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
11150     if (ncxs)
11151         return ncxs;
11152
11153     /* create anew and remember what it is */
11154     Newx(ncxs, max + 1, PERL_CONTEXT);
11155     ptr_table_store(PL_ptr_table, cxs, ncxs);
11156     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
11157
11158     while (ix >= 0) {
11159         PERL_CONTEXT * const ncx = &ncxs[ix];
11160         if (CxTYPE(ncx) == CXt_SUBST) {
11161             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
11162         }
11163         else {
11164             switch (CxTYPE(ncx)) {
11165             case CXt_SUB:
11166                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
11167                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
11168                                            : cv_dup(ncx->blk_sub.cv,param));
11169                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
11170                                            ? av_dup_inc(ncx->blk_sub.argarray,
11171                                                         param)
11172                                            : NULL);
11173                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
11174                                                      param);
11175                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
11176                                            ncx->blk_sub.oldcomppad);
11177                 break;
11178             case CXt_EVAL:
11179                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
11180                                                       param);
11181                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
11182                 break;
11183             case CXt_LOOP_LAZYSV:
11184                 ncx->blk_loop.state_u.lazysv.end
11185                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
11186                 /* We are taking advantage of av_dup_inc and sv_dup_inc
11187                    actually being the same function, and order equivalance of
11188                    the two unions.
11189                    We can assert the later [but only at run time :-(]  */
11190                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
11191                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
11192             case CXt_LOOP_FOR:
11193                 ncx->blk_loop.state_u.ary.ary
11194                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
11195             case CXt_LOOP_LAZYIV:
11196             case CXt_LOOP_PLAIN:
11197                 if (CxPADLOOP(ncx)) {
11198                     ncx->blk_loop.oldcomppad
11199                         = (PAD*)ptr_table_fetch(PL_ptr_table,
11200                                                 ncx->blk_loop.oldcomppad);
11201                 } else {
11202                     ncx->blk_loop.oldcomppad
11203                         = (PAD*)gv_dup((const GV *)ncx->blk_loop.oldcomppad,
11204                                        param);
11205                 }
11206                 break;
11207             case CXt_FORMAT:
11208                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
11209                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
11210                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
11211                                                      param);
11212                 break;
11213             case CXt_BLOCK:
11214             case CXt_NULL:
11215                 break;
11216             }
11217         }
11218         --ix;
11219     }
11220     return ncxs;
11221 }
11222
11223 /* duplicate a stack info structure */
11224
11225 PERL_SI *
11226 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
11227 {
11228     PERL_SI *nsi;
11229
11230     PERL_ARGS_ASSERT_SI_DUP;
11231
11232     if (!si)
11233         return (PERL_SI*)NULL;
11234
11235     /* look for it in the table first */
11236     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
11237     if (nsi)
11238         return nsi;
11239
11240     /* create anew and remember what it is */
11241     Newxz(nsi, 1, PERL_SI);
11242     ptr_table_store(PL_ptr_table, si, nsi);
11243
11244     nsi->si_stack       = av_dup_inc(si->si_stack, param);
11245     nsi->si_cxix        = si->si_cxix;
11246     nsi->si_cxmax       = si->si_cxmax;
11247     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
11248     nsi->si_type        = si->si_type;
11249     nsi->si_prev        = si_dup(si->si_prev, param);
11250     nsi->si_next        = si_dup(si->si_next, param);
11251     nsi->si_markoff     = si->si_markoff;
11252
11253     return nsi;
11254 }
11255
11256 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
11257 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
11258 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
11259 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
11260 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
11261 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
11262 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
11263 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
11264 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
11265 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
11266 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
11267 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
11268 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
11269 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
11270
11271 /* XXXXX todo */
11272 #define pv_dup_inc(p)   SAVEPV(p)
11273 #define pv_dup(p)       SAVEPV(p)
11274 #define svp_dup_inc(p,pp)       any_dup(p,pp)
11275
11276 /* map any object to the new equivent - either something in the
11277  * ptr table, or something in the interpreter structure
11278  */
11279
11280 void *
11281 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
11282 {
11283     void *ret;
11284
11285     PERL_ARGS_ASSERT_ANY_DUP;
11286
11287     if (!v)
11288         return (void*)NULL;
11289
11290     /* look for it in the table first */
11291     ret = ptr_table_fetch(PL_ptr_table, v);
11292     if (ret)
11293         return ret;
11294
11295     /* see if it is part of the interpreter structure */
11296     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
11297         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
11298     else {
11299         ret = v;
11300     }
11301
11302     return ret;
11303 }
11304
11305 /* duplicate the save stack */
11306
11307 ANY *
11308 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
11309 {
11310     dVAR;
11311     ANY * const ss      = proto_perl->Isavestack;
11312     const I32 max       = proto_perl->Isavestack_max;
11313     I32 ix              = proto_perl->Isavestack_ix;
11314     ANY *nss;
11315     const SV *sv;
11316     const GV *gv;
11317     const AV *av;
11318     const HV *hv;
11319     void* ptr;
11320     int intval;
11321     long longval;
11322     GP *gp;
11323     IV iv;
11324     I32 i;
11325     char *c = NULL;
11326     void (*dptr) (void*);
11327     void (*dxptr) (pTHX_ void*);
11328
11329     PERL_ARGS_ASSERT_SS_DUP;
11330
11331     Newxz(nss, max, ANY);
11332
11333     while (ix > 0) {
11334         const I32 type = POPINT(ss,ix);
11335         TOPINT(nss,ix) = type;
11336         switch (type) {
11337         case SAVEt_HELEM:               /* hash element */
11338             sv = (const SV *)POPPTR(ss,ix);
11339             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11340             /* fall through */
11341         case SAVEt_ITEM:                        /* normal string */
11342         case SAVEt_SV:                          /* scalar reference */
11343             sv = (const SV *)POPPTR(ss,ix);
11344             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11345             /* fall through */
11346         case SAVEt_FREESV:
11347         case SAVEt_MORTALIZESV:
11348             sv = (const SV *)POPPTR(ss,ix);
11349             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11350             break;
11351         case SAVEt_SHARED_PVREF:                /* char* in shared space */
11352             c = (char*)POPPTR(ss,ix);
11353             TOPPTR(nss,ix) = savesharedpv(c);
11354             ptr = POPPTR(ss,ix);
11355             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11356             break;
11357         case SAVEt_GENERIC_SVREF:               /* generic sv */
11358         case SAVEt_SVREF:                       /* scalar reference */
11359             sv = (const SV *)POPPTR(ss,ix);
11360             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11361             ptr = POPPTR(ss,ix);
11362             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
11363             break;
11364         case SAVEt_HV:                          /* hash reference */
11365         case SAVEt_AV:                          /* array reference */
11366             sv = (const SV *) POPPTR(ss,ix);
11367             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11368             /* fall through */
11369         case SAVEt_COMPPAD:
11370         case SAVEt_NSTAB:
11371             sv = (const SV *) POPPTR(ss,ix);
11372             TOPPTR(nss,ix) = sv_dup(sv, param);
11373             break;
11374         case SAVEt_INT:                         /* int reference */
11375             ptr = POPPTR(ss,ix);
11376             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11377             intval = (int)POPINT(ss,ix);
11378             TOPINT(nss,ix) = intval;
11379             break;
11380         case SAVEt_LONG:                        /* long reference */
11381             ptr = POPPTR(ss,ix);
11382             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11383             /* fall through */
11384         case SAVEt_CLEARSV:
11385             longval = (long)POPLONG(ss,ix);
11386             TOPLONG(nss,ix) = longval;
11387             break;
11388         case SAVEt_I32:                         /* I32 reference */
11389         case SAVEt_I16:                         /* I16 reference */
11390         case SAVEt_I8:                          /* I8 reference */
11391         case SAVEt_COP_ARYBASE:                 /* call CopARYBASE_set */
11392             ptr = POPPTR(ss,ix);
11393             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11394             i = POPINT(ss,ix);
11395             TOPINT(nss,ix) = i;
11396             break;
11397         case SAVEt_IV:                          /* IV reference */
11398             ptr = POPPTR(ss,ix);
11399             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11400             iv = POPIV(ss,ix);
11401             TOPIV(nss,ix) = iv;
11402             break;
11403         case SAVEt_HPTR:                        /* HV* reference */
11404         case SAVEt_APTR:                        /* AV* reference */
11405         case SAVEt_SPTR:                        /* SV* reference */
11406             ptr = POPPTR(ss,ix);
11407             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11408             sv = (const SV *)POPPTR(ss,ix);
11409             TOPPTR(nss,ix) = sv_dup(sv, param);
11410             break;
11411         case SAVEt_VPTR:                        /* random* reference */
11412             ptr = POPPTR(ss,ix);
11413             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11414             ptr = POPPTR(ss,ix);
11415             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11416             break;
11417         case SAVEt_GENERIC_PVREF:               /* generic char* */
11418         case SAVEt_PPTR:                        /* char* reference */
11419             ptr = POPPTR(ss,ix);
11420             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11421             c = (char*)POPPTR(ss,ix);
11422             TOPPTR(nss,ix) = pv_dup(c);
11423             break;
11424         case SAVEt_GP:                          /* scalar reference */
11425             gp = (GP*)POPPTR(ss,ix);
11426             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
11427             (void)GpREFCNT_inc(gp);
11428             gv = (const GV *)POPPTR(ss,ix);
11429             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
11430             break;
11431         case SAVEt_FREEOP:
11432             ptr = POPPTR(ss,ix);
11433             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
11434                 /* these are assumed to be refcounted properly */
11435                 OP *o;
11436                 switch (((OP*)ptr)->op_type) {
11437                 case OP_LEAVESUB:
11438                 case OP_LEAVESUBLV:
11439                 case OP_LEAVEEVAL:
11440                 case OP_LEAVE:
11441                 case OP_SCOPE:
11442                 case OP_LEAVEWRITE:
11443                     TOPPTR(nss,ix) = ptr;
11444                     o = (OP*)ptr;
11445                     OP_REFCNT_LOCK;
11446                     (void) OpREFCNT_inc(o);
11447                     OP_REFCNT_UNLOCK;
11448                     break;
11449                 default:
11450                     TOPPTR(nss,ix) = NULL;
11451                     break;
11452                 }
11453             }
11454             else
11455                 TOPPTR(nss,ix) = NULL;
11456             break;
11457         case SAVEt_DELETE:
11458             hv = (const HV *)POPPTR(ss,ix);
11459             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11460             i = POPINT(ss,ix);
11461             TOPINT(nss,ix) = i;
11462             /* Fall through */
11463         case SAVEt_FREEPV:
11464             c = (char*)POPPTR(ss,ix);
11465             TOPPTR(nss,ix) = pv_dup_inc(c);
11466             break;
11467         case SAVEt_STACK_POS:           /* Position on Perl stack */
11468             i = POPINT(ss,ix);
11469             TOPINT(nss,ix) = i;
11470             break;
11471         case SAVEt_DESTRUCTOR:
11472             ptr = POPPTR(ss,ix);
11473             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11474             dptr = POPDPTR(ss,ix);
11475             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
11476                                         any_dup(FPTR2DPTR(void *, dptr),
11477                                                 proto_perl));
11478             break;
11479         case SAVEt_DESTRUCTOR_X:
11480             ptr = POPPTR(ss,ix);
11481             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11482             dxptr = POPDXPTR(ss,ix);
11483             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
11484                                          any_dup(FPTR2DPTR(void *, dxptr),
11485                                                  proto_perl));
11486             break;
11487         case SAVEt_REGCONTEXT:
11488         case SAVEt_ALLOC:
11489             i = POPINT(ss,ix);
11490             TOPINT(nss,ix) = i;
11491             ix -= i;
11492             break;
11493         case SAVEt_AELEM:               /* array element */
11494             sv = (const SV *)POPPTR(ss,ix);
11495             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11496             i = POPINT(ss,ix);
11497             TOPINT(nss,ix) = i;
11498             av = (const AV *)POPPTR(ss,ix);
11499             TOPPTR(nss,ix) = av_dup_inc(av, param);
11500             break;
11501         case SAVEt_OP:
11502             ptr = POPPTR(ss,ix);
11503             TOPPTR(nss,ix) = ptr;
11504             break;
11505         case SAVEt_HINTS:
11506             ptr = POPPTR(ss,ix);
11507             if (ptr) {
11508                 HINTS_REFCNT_LOCK;
11509                 ((struct refcounted_he *)ptr)->refcounted_he_refcnt++;
11510                 HINTS_REFCNT_UNLOCK;
11511             }
11512             TOPPTR(nss,ix) = ptr;
11513             i = POPINT(ss,ix);
11514             TOPINT(nss,ix) = i;
11515             if (i & HINT_LOCALIZE_HH) {
11516                 hv = (const HV *)POPPTR(ss,ix);
11517                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11518             }
11519             break;
11520         case SAVEt_PADSV_AND_MORTALIZE:
11521             longval = (long)POPLONG(ss,ix);
11522             TOPLONG(nss,ix) = longval;
11523             ptr = POPPTR(ss,ix);
11524             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11525             sv = (const SV *)POPPTR(ss,ix);
11526             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11527             break;
11528         case SAVEt_BOOL:
11529             ptr = POPPTR(ss,ix);
11530             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11531             longval = (long)POPBOOL(ss,ix);
11532             TOPBOOL(nss,ix) = (bool)longval;
11533             break;
11534         case SAVEt_SET_SVFLAGS:
11535             i = POPINT(ss,ix);
11536             TOPINT(nss,ix) = i;
11537             i = POPINT(ss,ix);
11538             TOPINT(nss,ix) = i;
11539             sv = (const SV *)POPPTR(ss,ix);
11540             TOPPTR(nss,ix) = sv_dup(sv, param);
11541             break;
11542         case SAVEt_RE_STATE:
11543             {
11544                 const struct re_save_state *const old_state
11545                     = (struct re_save_state *)
11546                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
11547                 struct re_save_state *const new_state
11548                     = (struct re_save_state *)
11549                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
11550
11551                 Copy(old_state, new_state, 1, struct re_save_state);
11552                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
11553
11554                 new_state->re_state_bostr
11555                     = pv_dup(old_state->re_state_bostr);
11556                 new_state->re_state_reginput
11557                     = pv_dup(old_state->re_state_reginput);
11558                 new_state->re_state_regeol
11559                     = pv_dup(old_state->re_state_regeol);
11560                 new_state->re_state_regoffs
11561                     = (regexp_paren_pair*)
11562                         any_dup(old_state->re_state_regoffs, proto_perl);
11563                 new_state->re_state_reglastparen
11564                     = (U32*) any_dup(old_state->re_state_reglastparen, 
11565                               proto_perl);
11566                 new_state->re_state_reglastcloseparen
11567                     = (U32*)any_dup(old_state->re_state_reglastcloseparen,
11568                               proto_perl);
11569                 /* XXX This just has to be broken. The old save_re_context
11570                    code did SAVEGENERICPV(PL_reg_start_tmp);
11571                    PL_reg_start_tmp is char **.
11572                    Look above to what the dup code does for
11573                    SAVEt_GENERIC_PVREF
11574                    It can never have worked.
11575                    So this is merely a faithful copy of the exiting bug:  */
11576                 new_state->re_state_reg_start_tmp
11577                     = (char **) pv_dup((char *)
11578                                       old_state->re_state_reg_start_tmp);
11579                 /* I assume that it only ever "worked" because no-one called
11580                    (pseudo)fork while the regexp engine had re-entered itself.
11581                 */
11582 #ifdef PERL_OLD_COPY_ON_WRITE
11583                 new_state->re_state_nrs
11584                     = sv_dup(old_state->re_state_nrs, param);
11585 #endif
11586                 new_state->re_state_reg_magic
11587                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
11588                                proto_perl);
11589                 new_state->re_state_reg_oldcurpm
11590                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
11591                               proto_perl);
11592                 new_state->re_state_reg_curpm
11593                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
11594                                proto_perl);
11595                 new_state->re_state_reg_oldsaved
11596                     = pv_dup(old_state->re_state_reg_oldsaved);
11597                 new_state->re_state_reg_poscache
11598                     = pv_dup(old_state->re_state_reg_poscache);
11599                 new_state->re_state_reg_starttry
11600                     = pv_dup(old_state->re_state_reg_starttry);
11601                 break;
11602             }
11603         case SAVEt_COMPILE_WARNINGS:
11604             ptr = POPPTR(ss,ix);
11605             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
11606             break;
11607         case SAVEt_PARSER:
11608             ptr = POPPTR(ss,ix);
11609             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
11610             break;
11611         default:
11612             Perl_croak(aTHX_
11613                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
11614         }
11615     }
11616
11617     return nss;
11618 }
11619
11620
11621 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
11622  * flag to the result. This is done for each stash before cloning starts,
11623  * so we know which stashes want their objects cloned */
11624
11625 static void
11626 do_mark_cloneable_stash(pTHX_ SV *const sv)
11627 {
11628     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
11629     if (hvname) {
11630         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
11631         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
11632         if (cloner && GvCV(cloner)) {
11633             dSP;
11634             UV status;
11635
11636             ENTER;
11637             SAVETMPS;
11638             PUSHMARK(SP);
11639             mXPUSHs(newSVhek(hvname));
11640             PUTBACK;
11641             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
11642             SPAGAIN;
11643             status = POPu;
11644             PUTBACK;
11645             FREETMPS;
11646             LEAVE;
11647             if (status)
11648                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
11649         }
11650     }
11651 }
11652
11653
11654
11655 /*
11656 =for apidoc perl_clone
11657
11658 Create and return a new interpreter by cloning the current one.
11659
11660 perl_clone takes these flags as parameters:
11661
11662 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
11663 without it we only clone the data and zero the stacks,
11664 with it we copy the stacks and the new perl interpreter is
11665 ready to run at the exact same point as the previous one.
11666 The pseudo-fork code uses COPY_STACKS while the
11667 threads->create doesn't.
11668
11669 CLONEf_KEEP_PTR_TABLE
11670 perl_clone keeps a ptr_table with the pointer of the old
11671 variable as a key and the new variable as a value,
11672 this allows it to check if something has been cloned and not
11673 clone it again but rather just use the value and increase the
11674 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
11675 the ptr_table using the function
11676 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
11677 reason to keep it around is if you want to dup some of your own
11678 variable who are outside the graph perl scans, example of this
11679 code is in threads.xs create
11680
11681 CLONEf_CLONE_HOST
11682 This is a win32 thing, it is ignored on unix, it tells perls
11683 win32host code (which is c++) to clone itself, this is needed on
11684 win32 if you want to run two threads at the same time,
11685 if you just want to do some stuff in a separate perl interpreter
11686 and then throw it away and return to the original one,
11687 you don't need to do anything.
11688
11689 =cut
11690 */
11691
11692 /* XXX the above needs expanding by someone who actually understands it ! */
11693 EXTERN_C PerlInterpreter *
11694 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
11695
11696 PerlInterpreter *
11697 perl_clone(PerlInterpreter *proto_perl, UV flags)
11698 {
11699    dVAR;
11700 #ifdef PERL_IMPLICIT_SYS
11701
11702     PERL_ARGS_ASSERT_PERL_CLONE;
11703
11704    /* perlhost.h so we need to call into it
11705    to clone the host, CPerlHost should have a c interface, sky */
11706
11707    if (flags & CLONEf_CLONE_HOST) {
11708        return perl_clone_host(proto_perl,flags);
11709    }
11710    return perl_clone_using(proto_perl, flags,
11711                             proto_perl->IMem,
11712                             proto_perl->IMemShared,
11713                             proto_perl->IMemParse,
11714                             proto_perl->IEnv,
11715                             proto_perl->IStdIO,
11716                             proto_perl->ILIO,
11717                             proto_perl->IDir,
11718                             proto_perl->ISock,
11719                             proto_perl->IProc);
11720 }
11721
11722 PerlInterpreter *
11723 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
11724                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
11725                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
11726                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
11727                  struct IPerlDir* ipD, struct IPerlSock* ipS,
11728                  struct IPerlProc* ipP)
11729 {
11730     /* XXX many of the string copies here can be optimized if they're
11731      * constants; they need to be allocated as common memory and just
11732      * their pointers copied. */
11733
11734     IV i;
11735     CLONE_PARAMS clone_params;
11736     CLONE_PARAMS* const param = &clone_params;
11737
11738     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
11739
11740     PERL_ARGS_ASSERT_PERL_CLONE_USING;
11741
11742     /* for each stash, determine whether its objects should be cloned */
11743     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
11744     PERL_SET_THX(my_perl);
11745
11746 #  ifdef DEBUGGING
11747     PoisonNew(my_perl, 1, PerlInterpreter);
11748     PL_op = NULL;
11749     PL_curcop = NULL;
11750     PL_markstack = 0;
11751     PL_scopestack = 0;
11752     PL_savestack = 0;
11753     PL_savestack_ix = 0;
11754     PL_savestack_max = -1;
11755     PL_sig_pending = 0;
11756     PL_parser = NULL;
11757     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
11758 #  else /* !DEBUGGING */
11759     Zero(my_perl, 1, PerlInterpreter);
11760 #  endif        /* DEBUGGING */
11761
11762     /* host pointers */
11763     PL_Mem              = ipM;
11764     PL_MemShared        = ipMS;
11765     PL_MemParse         = ipMP;
11766     PL_Env              = ipE;
11767     PL_StdIO            = ipStd;
11768     PL_LIO              = ipLIO;
11769     PL_Dir              = ipD;
11770     PL_Sock             = ipS;
11771     PL_Proc             = ipP;
11772 #else           /* !PERL_IMPLICIT_SYS */
11773     IV i;
11774     CLONE_PARAMS clone_params;
11775     CLONE_PARAMS* param = &clone_params;
11776     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
11777
11778     PERL_ARGS_ASSERT_PERL_CLONE;
11779
11780     /* for each stash, determine whether its objects should be cloned */
11781     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
11782     PERL_SET_THX(my_perl);
11783
11784 #    ifdef DEBUGGING
11785     PoisonNew(my_perl, 1, PerlInterpreter);
11786     PL_op = NULL;
11787     PL_curcop = NULL;
11788     PL_markstack = 0;
11789     PL_scopestack = 0;
11790     PL_savestack = 0;
11791     PL_savestack_ix = 0;
11792     PL_savestack_max = -1;
11793     PL_sig_pending = 0;
11794     PL_parser = NULL;
11795     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
11796 #    else       /* !DEBUGGING */
11797     Zero(my_perl, 1, PerlInterpreter);
11798 #    endif      /* DEBUGGING */
11799 #endif          /* PERL_IMPLICIT_SYS */
11800     param->flags = flags;
11801     param->proto_perl = proto_perl;
11802
11803     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
11804
11805     PL_body_arenas = NULL;
11806     Zero(&PL_body_roots, 1, PL_body_roots);
11807     
11808     PL_nice_chunk       = NULL;
11809     PL_nice_chunk_size  = 0;
11810     PL_sv_count         = 0;
11811     PL_sv_objcount      = 0;
11812     PL_sv_root          = NULL;
11813     PL_sv_arenaroot     = NULL;
11814
11815     PL_debug            = proto_perl->Idebug;
11816
11817     PL_hash_seed        = proto_perl->Ihash_seed;
11818     PL_rehash_seed      = proto_perl->Irehash_seed;
11819
11820 #ifdef USE_REENTRANT_API
11821     /* XXX: things like -Dm will segfault here in perlio, but doing
11822      *  PERL_SET_CONTEXT(proto_perl);
11823      * breaks too many other things
11824      */
11825     Perl_reentrant_init(aTHX);
11826 #endif
11827
11828     /* create SV map for pointer relocation */
11829     PL_ptr_table = ptr_table_new();
11830
11831     /* initialize these special pointers as early as possible */
11832     SvANY(&PL_sv_undef)         = NULL;
11833     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
11834     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
11835     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
11836
11837     SvANY(&PL_sv_no)            = new_XPVNV();
11838     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
11839     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11840                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
11841     SvPV_set(&PL_sv_no, savepvn(PL_No, 0));
11842     SvCUR_set(&PL_sv_no, 0);
11843     SvLEN_set(&PL_sv_no, 1);
11844     SvIV_set(&PL_sv_no, 0);
11845     SvNV_set(&PL_sv_no, 0);
11846     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
11847
11848     SvANY(&PL_sv_yes)           = new_XPVNV();
11849     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
11850     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
11851                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
11852     SvPV_set(&PL_sv_yes, savepvn(PL_Yes, 1));
11853     SvCUR_set(&PL_sv_yes, 1);
11854     SvLEN_set(&PL_sv_yes, 2);
11855     SvIV_set(&PL_sv_yes, 1);
11856     SvNV_set(&PL_sv_yes, 1);
11857     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
11858
11859     /* create (a non-shared!) shared string table */
11860     PL_strtab           = newHV();
11861     HvSHAREKEYS_off(PL_strtab);
11862     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
11863     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
11864
11865     PL_compiling = proto_perl->Icompiling;
11866
11867     /* These two PVs will be free'd special way so must set them same way op.c does */
11868     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
11869     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
11870
11871     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
11872     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
11873
11874     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
11875     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
11876     if (PL_compiling.cop_hints_hash) {
11877         HINTS_REFCNT_LOCK;
11878         PL_compiling.cop_hints_hash->refcounted_he_refcnt++;
11879         HINTS_REFCNT_UNLOCK;
11880     }
11881     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
11882 #ifdef PERL_DEBUG_READONLY_OPS
11883     PL_slabs = NULL;
11884     PL_slab_count = 0;
11885 #endif
11886
11887     /* pseudo environmental stuff */
11888     PL_origargc         = proto_perl->Iorigargc;
11889     PL_origargv         = proto_perl->Iorigargv;
11890
11891     param->stashes      = newAV();  /* Setup array of objects to call clone on */
11892
11893     /* Set tainting stuff before PerlIO_debug can possibly get called */
11894     PL_tainting         = proto_perl->Itainting;
11895     PL_taint_warn       = proto_perl->Itaint_warn;
11896
11897 #ifdef PERLIO_LAYERS
11898     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
11899     PerlIO_clone(aTHX_ proto_perl, param);
11900 #endif
11901
11902     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
11903     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
11904     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
11905     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
11906     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
11907     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
11908
11909     /* switches */
11910     PL_minus_c          = proto_perl->Iminus_c;
11911     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
11912     PL_localpatches     = proto_perl->Ilocalpatches;
11913     PL_splitstr         = proto_perl->Isplitstr;
11914     PL_minus_n          = proto_perl->Iminus_n;
11915     PL_minus_p          = proto_perl->Iminus_p;
11916     PL_minus_l          = proto_perl->Iminus_l;
11917     PL_minus_a          = proto_perl->Iminus_a;
11918     PL_minus_E          = proto_perl->Iminus_E;
11919     PL_minus_F          = proto_perl->Iminus_F;
11920     PL_doswitches       = proto_perl->Idoswitches;
11921     PL_dowarn           = proto_perl->Idowarn;
11922     PL_doextract        = proto_perl->Idoextract;
11923     PL_sawampersand     = proto_perl->Isawampersand;
11924     PL_unsafe           = proto_perl->Iunsafe;
11925     PL_inplace          = SAVEPV(proto_perl->Iinplace);
11926     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
11927     PL_perldb           = proto_perl->Iperldb;
11928     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
11929     PL_exit_flags       = proto_perl->Iexit_flags;
11930
11931     /* magical thingies */
11932     /* XXX time(&PL_basetime) when asked for? */
11933     PL_basetime         = proto_perl->Ibasetime;
11934     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
11935
11936     PL_maxsysfd         = proto_perl->Imaxsysfd;
11937     PL_statusvalue      = proto_perl->Istatusvalue;
11938 #ifdef VMS
11939     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
11940 #else
11941     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
11942 #endif
11943     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
11944
11945     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
11946     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
11947     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
11948
11949    
11950     /* RE engine related */
11951     Zero(&PL_reg_state, 1, struct re_save_state);
11952     PL_reginterp_cnt    = 0;
11953     PL_regmatch_slab    = NULL;
11954     
11955     /* Clone the regex array */
11956     /* ORANGE FIXME for plugins, probably in the SV dup code.
11957        newSViv(PTR2IV(CALLREGDUPE(
11958        INT2PTR(REGEXP *, SvIVX(regex)), param))))
11959     */
11960     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
11961     PL_regex_pad = AvARRAY(PL_regex_padav);
11962
11963     /* shortcuts to various I/O objects */
11964     PL_ofsgv            = gv_dup(proto_perl->Iofsgv, param);
11965     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
11966     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
11967     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
11968     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
11969     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
11970     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
11971
11972     /* shortcuts to regexp stuff */
11973     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
11974
11975     /* shortcuts to misc objects */
11976     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
11977
11978     /* shortcuts to debugging objects */
11979     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
11980     PL_DBline           = gv_dup(proto_perl->IDBline, param);
11981     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
11982     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
11983     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
11984     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
11985     PL_dbargs           = av_dup(proto_perl->Idbargs, param);
11986
11987     /* symbol tables */
11988     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
11989     PL_curstash         = hv_dup(proto_perl->Icurstash, param);
11990     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
11991     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
11992     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
11993
11994     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
11995     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
11996     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
11997     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
11998     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
11999     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
12000     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
12001     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
12002
12003     PL_sub_generation   = proto_perl->Isub_generation;
12004     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
12005
12006     /* funky return mechanisms */
12007     PL_forkprocess      = proto_perl->Iforkprocess;
12008
12009     /* subprocess state */
12010     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
12011
12012     /* internal state */
12013     PL_maxo             = proto_perl->Imaxo;
12014     if (proto_perl->Iop_mask)
12015         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
12016     else
12017         PL_op_mask      = NULL;
12018     /* PL_asserting        = proto_perl->Iasserting; */
12019
12020     /* current interpreter roots */
12021     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
12022     OP_REFCNT_LOCK;
12023     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
12024     OP_REFCNT_UNLOCK;
12025     PL_main_start       = proto_perl->Imain_start;
12026     PL_eval_root        = proto_perl->Ieval_root;
12027     PL_eval_start       = proto_perl->Ieval_start;
12028
12029     /* runtime control stuff */
12030     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
12031
12032     PL_filemode         = proto_perl->Ifilemode;
12033     PL_lastfd           = proto_perl->Ilastfd;
12034     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
12035     PL_Argv             = NULL;
12036     PL_Cmd              = NULL;
12037     PL_gensym           = proto_perl->Igensym;
12038     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
12039     PL_laststatval      = proto_perl->Ilaststatval;
12040     PL_laststype        = proto_perl->Ilaststype;
12041     PL_mess_sv          = NULL;
12042
12043     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
12044
12045     /* interpreter atexit processing */
12046     PL_exitlistlen      = proto_perl->Iexitlistlen;
12047     if (PL_exitlistlen) {
12048         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
12049         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
12050     }
12051     else
12052         PL_exitlist     = (PerlExitListEntry*)NULL;
12053
12054     PL_my_cxt_size = proto_perl->Imy_cxt_size;
12055     if (PL_my_cxt_size) {
12056         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
12057         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
12058 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
12059         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
12060         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
12061 #endif
12062     }
12063     else {
12064         PL_my_cxt_list  = (void**)NULL;
12065 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
12066         PL_my_cxt_keys  = (const char**)NULL;
12067 #endif
12068     }
12069     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
12070     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
12071     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
12072
12073     PL_profiledata      = NULL;
12074
12075     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
12076
12077     PAD_CLONE_VARS(proto_perl, param);
12078
12079 #ifdef HAVE_INTERP_INTERN
12080     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
12081 #endif
12082
12083     /* more statics moved here */
12084     PL_generation       = proto_perl->Igeneration;
12085     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
12086
12087     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
12088     PL_in_clean_all     = proto_perl->Iin_clean_all;
12089
12090     PL_uid              = proto_perl->Iuid;
12091     PL_euid             = proto_perl->Ieuid;
12092     PL_gid              = proto_perl->Igid;
12093     PL_egid             = proto_perl->Iegid;
12094     PL_nomemok          = proto_perl->Inomemok;
12095     PL_an               = proto_perl->Ian;
12096     PL_evalseq          = proto_perl->Ievalseq;
12097     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
12098     PL_origalen         = proto_perl->Iorigalen;
12099 #ifdef PERL_USES_PL_PIDSTATUS
12100     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
12101 #endif
12102     PL_osname           = SAVEPV(proto_perl->Iosname);
12103     PL_sighandlerp      = proto_perl->Isighandlerp;
12104
12105     PL_runops           = proto_perl->Irunops;
12106
12107     PL_parser           = parser_dup(proto_perl->Iparser, param);
12108
12109     PL_subline          = proto_perl->Isubline;
12110     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
12111
12112 #ifdef FCRYPT
12113     PL_cryptseen        = proto_perl->Icryptseen;
12114 #endif
12115
12116     PL_hints            = proto_perl->Ihints;
12117
12118     PL_amagic_generation        = proto_perl->Iamagic_generation;
12119
12120 #ifdef USE_LOCALE_COLLATE
12121     PL_collation_ix     = proto_perl->Icollation_ix;
12122     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
12123     PL_collation_standard       = proto_perl->Icollation_standard;
12124     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
12125     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
12126 #endif /* USE_LOCALE_COLLATE */
12127
12128 #ifdef USE_LOCALE_NUMERIC
12129     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
12130     PL_numeric_standard = proto_perl->Inumeric_standard;
12131     PL_numeric_local    = proto_perl->Inumeric_local;
12132     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
12133 #endif /* !USE_LOCALE_NUMERIC */
12134
12135     /* utf8 character classes */
12136     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
12137     PL_utf8_alnumc      = sv_dup_inc(proto_perl->Iutf8_alnumc, param);
12138     PL_utf8_ascii       = sv_dup_inc(proto_perl->Iutf8_ascii, param);
12139     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
12140     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
12141     PL_utf8_cntrl       = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
12142     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
12143     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
12144     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
12145     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
12146     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
12147     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
12148     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
12149     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
12150     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
12151     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
12152     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
12153     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
12154     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
12155     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
12156
12157     /* Did the locale setup indicate UTF-8? */
12158     PL_utf8locale       = proto_perl->Iutf8locale;
12159     /* Unicode features (see perlrun/-C) */
12160     PL_unicode          = proto_perl->Iunicode;
12161
12162     /* Pre-5.8 signals control */
12163     PL_signals          = proto_perl->Isignals;
12164
12165     /* times() ticks per second */
12166     PL_clocktick        = proto_perl->Iclocktick;
12167
12168     /* Recursion stopper for PerlIO_find_layer */
12169     PL_in_load_module   = proto_perl->Iin_load_module;
12170
12171     /* sort() routine */
12172     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
12173
12174     /* Not really needed/useful since the reenrant_retint is "volatile",
12175      * but do it for consistency's sake. */
12176     PL_reentrant_retint = proto_perl->Ireentrant_retint;
12177
12178     /* Hooks to shared SVs and locks. */
12179     PL_sharehook        = proto_perl->Isharehook;
12180     PL_lockhook         = proto_perl->Ilockhook;
12181     PL_unlockhook       = proto_perl->Iunlockhook;
12182     PL_threadhook       = proto_perl->Ithreadhook;
12183     PL_destroyhook      = proto_perl->Idestroyhook;
12184
12185 #ifdef THREADS_HAVE_PIDS
12186     PL_ppid             = proto_perl->Ippid;
12187 #endif
12188
12189     /* swatch cache */
12190     PL_last_swash_hv    = NULL; /* reinits on demand */
12191     PL_last_swash_klen  = 0;
12192     PL_last_swash_key[0]= '\0';
12193     PL_last_swash_tmps  = (U8*)NULL;
12194     PL_last_swash_slen  = 0;
12195
12196     PL_glob_index       = proto_perl->Iglob_index;
12197     PL_srand_called     = proto_perl->Isrand_called;
12198     PL_bitcount         = NULL; /* reinits on demand */
12199
12200     if (proto_perl->Ipsig_pend) {
12201         Newxz(PL_psig_pend, SIG_SIZE, int);
12202     }
12203     else {
12204         PL_psig_pend    = (int*)NULL;
12205     }
12206
12207     if (proto_perl->Ipsig_ptr) {
12208         Newxz(PL_psig_ptr,  SIG_SIZE, SV*);
12209         Newxz(PL_psig_name, SIG_SIZE, SV*);
12210         for (i = 1; i < SIG_SIZE; i++) {
12211             PL_psig_ptr[i]  = sv_dup_inc(proto_perl->Ipsig_ptr[i], param);
12212             PL_psig_name[i] = sv_dup_inc(proto_perl->Ipsig_name[i], param);
12213         }
12214     }
12215     else {
12216         PL_psig_ptr     = (SV**)NULL;
12217         PL_psig_name    = (SV**)NULL;
12218     }
12219
12220     /* intrpvar.h stuff */
12221
12222     if (flags & CLONEf_COPY_STACKS) {
12223         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
12224         PL_tmps_ix              = proto_perl->Itmps_ix;
12225         PL_tmps_max             = proto_perl->Itmps_max;
12226         PL_tmps_floor           = proto_perl->Itmps_floor;
12227         Newxz(PL_tmps_stack, PL_tmps_max, SV*);
12228         i = 0;
12229         while (i <= PL_tmps_ix) {
12230             PL_tmps_stack[i]    = sv_dup_inc(proto_perl->Itmps_stack[i], param);
12231             ++i;
12232         }
12233
12234         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
12235         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
12236         Newxz(PL_markstack, i, I32);
12237         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
12238                                                   - proto_perl->Imarkstack);
12239         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
12240                                                   - proto_perl->Imarkstack);
12241         Copy(proto_perl->Imarkstack, PL_markstack,
12242              PL_markstack_ptr - PL_markstack + 1, I32);
12243
12244         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
12245          * NOTE: unlike the others! */
12246         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
12247         PL_scopestack_max       = proto_perl->Iscopestack_max;
12248         Newxz(PL_scopestack, PL_scopestack_max, I32);
12249         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
12250
12251         /* NOTE: si_dup() looks at PL_markstack */
12252         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
12253
12254         /* PL_curstack          = PL_curstackinfo->si_stack; */
12255         PL_curstack             = av_dup(proto_perl->Icurstack, param);
12256         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
12257
12258         /* next PUSHs() etc. set *(PL_stack_sp+1) */
12259         PL_stack_base           = AvARRAY(PL_curstack);
12260         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
12261                                                    - proto_perl->Istack_base);
12262         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
12263
12264         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
12265          * NOTE: unlike the others! */
12266         PL_savestack_ix         = proto_perl->Isavestack_ix;
12267         PL_savestack_max        = proto_perl->Isavestack_max;
12268         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
12269         PL_savestack            = ss_dup(proto_perl, param);
12270     }
12271     else {
12272         init_stacks();
12273         ENTER;                  /* perl_destruct() wants to LEAVE; */
12274
12275         /* although we're not duplicating the tmps stack, we should still
12276          * add entries for any SVs on the tmps stack that got cloned by a
12277          * non-refcount means (eg a temp in @_); otherwise they will be
12278          * orphaned
12279          */
12280         for (i = 0; i<= proto_perl->Itmps_ix; i++) {
12281             SV * const nsv = MUTABLE_SV(ptr_table_fetch(PL_ptr_table,
12282                     proto_perl->Itmps_stack[i]));
12283             if (nsv && !SvREFCNT(nsv)) {
12284                 EXTEND_MORTAL(1);
12285                 PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple(nsv);
12286             }
12287         }
12288     }
12289
12290     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
12291     PL_top_env          = &PL_start_env;
12292
12293     PL_op               = proto_perl->Iop;
12294
12295     PL_Sv               = NULL;
12296     PL_Xpv              = (XPV*)NULL;
12297     my_perl->Ina        = proto_perl->Ina;
12298
12299     PL_statbuf          = proto_perl->Istatbuf;
12300     PL_statcache        = proto_perl->Istatcache;
12301     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
12302     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
12303 #ifdef HAS_TIMES
12304     PL_timesbuf         = proto_perl->Itimesbuf;
12305 #endif
12306
12307     PL_tainted          = proto_perl->Itainted;
12308     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
12309     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
12310     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
12311     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
12312     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
12313     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
12314     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
12315     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
12316
12317     PL_restartop        = proto_perl->Irestartop;
12318     PL_in_eval          = proto_perl->Iin_eval;
12319     PL_delaymagic       = proto_perl->Idelaymagic;
12320     PL_dirty            = proto_perl->Idirty;
12321     PL_localizing       = proto_perl->Ilocalizing;
12322
12323     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
12324     PL_hv_fetch_ent_mh  = NULL;
12325     PL_modcount         = proto_perl->Imodcount;
12326     PL_lastgotoprobe    = NULL;
12327     PL_dumpindent       = proto_perl->Idumpindent;
12328
12329     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
12330     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
12331     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
12332     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
12333     PL_efloatbuf        = NULL;         /* reinits on demand */
12334     PL_efloatsize       = 0;                    /* reinits on demand */
12335
12336     /* regex stuff */
12337
12338     PL_screamfirst      = NULL;
12339     PL_screamnext       = NULL;
12340     PL_maxscream        = -1;                   /* reinits on demand */
12341     PL_lastscream       = NULL;
12342
12343
12344     PL_regdummy         = proto_perl->Iregdummy;
12345     PL_colorset         = 0;            /* reinits PL_colors[] */
12346     /*PL_colors[6]      = {0,0,0,0,0,0};*/
12347
12348
12349
12350     /* Pluggable optimizer */
12351     PL_peepp            = proto_perl->Ipeepp;
12352
12353     PL_stashcache       = newHV();
12354
12355     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
12356                                             proto_perl->Iwatchaddr);
12357     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
12358     if (PL_debug && PL_watchaddr) {
12359         PerlIO_printf(Perl_debug_log,
12360           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
12361           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
12362           PTR2UV(PL_watchok));
12363     }
12364
12365     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
12366
12367     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
12368         ptr_table_free(PL_ptr_table);
12369         PL_ptr_table = NULL;
12370     }
12371
12372     /* Call the ->CLONE method, if it exists, for each of the stashes
12373        identified by sv_dup() above.
12374     */
12375     while(av_len(param->stashes) != -1) {
12376         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
12377         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
12378         if (cloner && GvCV(cloner)) {
12379             dSP;
12380             ENTER;
12381             SAVETMPS;
12382             PUSHMARK(SP);
12383             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
12384             PUTBACK;
12385             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
12386             FREETMPS;
12387             LEAVE;
12388         }
12389     }
12390
12391     SvREFCNT_dec(param->stashes);
12392
12393     /* orphaned? eg threads->new inside BEGIN or use */
12394     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
12395         SvREFCNT_inc_simple_void(PL_compcv);
12396         SAVEFREESV(PL_compcv);
12397     }
12398
12399     return my_perl;
12400 }
12401
12402 #endif /* USE_ITHREADS */
12403
12404 /*
12405 =head1 Unicode Support
12406
12407 =for apidoc sv_recode_to_utf8
12408
12409 The encoding is assumed to be an Encode object, on entry the PV
12410 of the sv is assumed to be octets in that encoding, and the sv
12411 will be converted into Unicode (and UTF-8).
12412
12413 If the sv already is UTF-8 (or if it is not POK), or if the encoding
12414 is not a reference, nothing is done to the sv.  If the encoding is not
12415 an C<Encode::XS> Encoding object, bad things will happen.
12416 (See F<lib/encoding.pm> and L<Encode>).
12417
12418 The PV of the sv is returned.
12419
12420 =cut */
12421
12422 char *
12423 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
12424 {
12425     dVAR;
12426
12427     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
12428
12429     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
12430         SV *uni;
12431         STRLEN len;
12432         const char *s;
12433         dSP;
12434         ENTER;
12435         SAVETMPS;
12436         save_re_context();
12437         PUSHMARK(sp);
12438         EXTEND(SP, 3);
12439         XPUSHs(encoding);
12440         XPUSHs(sv);
12441 /*
12442   NI-S 2002/07/09
12443   Passing sv_yes is wrong - it needs to be or'ed set of constants
12444   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
12445   remove converted chars from source.
12446
12447   Both will default the value - let them.
12448
12449         XPUSHs(&PL_sv_yes);
12450 */
12451         PUTBACK;
12452         call_method("decode", G_SCALAR);
12453         SPAGAIN;
12454         uni = POPs;
12455         PUTBACK;
12456         s = SvPV_const(uni, len);
12457         if (s != SvPVX_const(sv)) {
12458             SvGROW(sv, len + 1);
12459             Move(s, SvPVX(sv), len + 1, char);
12460             SvCUR_set(sv, len);
12461         }
12462         FREETMPS;
12463         LEAVE;
12464         SvUTF8_on(sv);
12465         return SvPVX(sv);
12466     }
12467     return SvPOKp(sv) ? SvPVX(sv) : NULL;
12468 }
12469
12470 /*
12471 =for apidoc sv_cat_decode
12472
12473 The encoding is assumed to be an Encode object, the PV of the ssv is
12474 assumed to be octets in that encoding and decoding the input starts
12475 from the position which (PV + *offset) pointed to.  The dsv will be
12476 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
12477 when the string tstr appears in decoding output or the input ends on
12478 the PV of the ssv. The value which the offset points will be modified
12479 to the last input position on the ssv.
12480
12481 Returns TRUE if the terminator was found, else returns FALSE.
12482
12483 =cut */
12484
12485 bool
12486 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
12487                    SV *ssv, int *offset, char *tstr, int tlen)
12488 {
12489     dVAR;
12490     bool ret = FALSE;
12491
12492     PERL_ARGS_ASSERT_SV_CAT_DECODE;
12493
12494     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
12495         SV *offsv;
12496         dSP;
12497         ENTER;
12498         SAVETMPS;
12499         save_re_context();
12500         PUSHMARK(sp);
12501         EXTEND(SP, 6);
12502         XPUSHs(encoding);
12503         XPUSHs(dsv);
12504         XPUSHs(ssv);
12505         offsv = newSViv(*offset);
12506         mXPUSHs(offsv);
12507         mXPUSHp(tstr, tlen);
12508         PUTBACK;
12509         call_method("cat_decode", G_SCALAR);
12510         SPAGAIN;
12511         ret = SvTRUE(TOPs);
12512         *offset = SvIV(offsv);
12513         PUTBACK;
12514         FREETMPS;
12515         LEAVE;
12516     }
12517     else
12518         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
12519     return ret;
12520
12521 }
12522
12523 /* ---------------------------------------------------------------------
12524  *
12525  * support functions for report_uninit()
12526  */
12527
12528 /* the maxiumum size of array or hash where we will scan looking
12529  * for the undefined element that triggered the warning */
12530
12531 #define FUV_MAX_SEARCH_SIZE 1000
12532
12533 /* Look for an entry in the hash whose value has the same SV as val;
12534  * If so, return a mortal copy of the key. */
12535
12536 STATIC SV*
12537 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
12538 {
12539     dVAR;
12540     register HE **array;
12541     I32 i;
12542
12543     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
12544
12545     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
12546                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
12547         return NULL;
12548
12549     array = HvARRAY(hv);
12550
12551     for (i=HvMAX(hv); i>0; i--) {
12552         register HE *entry;
12553         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
12554             if (HeVAL(entry) != val)
12555                 continue;
12556             if (    HeVAL(entry) == &PL_sv_undef ||
12557                     HeVAL(entry) == &PL_sv_placeholder)
12558                 continue;
12559             if (!HeKEY(entry))
12560                 return NULL;
12561             if (HeKLEN(entry) == HEf_SVKEY)
12562                 return sv_mortalcopy(HeKEY_sv(entry));
12563             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
12564         }
12565     }
12566     return NULL;
12567 }
12568
12569 /* Look for an entry in the array whose value has the same SV as val;
12570  * If so, return the index, otherwise return -1. */
12571
12572 STATIC I32
12573 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
12574 {
12575     dVAR;
12576
12577     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
12578
12579     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
12580                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
12581         return -1;
12582
12583     if (val != &PL_sv_undef) {
12584         SV ** const svp = AvARRAY(av);
12585         I32 i;
12586
12587         for (i=AvFILLp(av); i>=0; i--)
12588             if (svp[i] == val)
12589                 return i;
12590     }
12591     return -1;
12592 }
12593
12594 /* S_varname(): return the name of a variable, optionally with a subscript.
12595  * If gv is non-zero, use the name of that global, along with gvtype (one
12596  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
12597  * targ.  Depending on the value of the subscript_type flag, return:
12598  */
12599
12600 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
12601 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
12602 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
12603 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
12604
12605 STATIC SV*
12606 S_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
12607         const SV *const keyname, I32 aindex, int subscript_type)
12608 {
12609
12610     SV * const name = sv_newmortal();
12611     if (gv) {
12612         char buffer[2];
12613         buffer[0] = gvtype;
12614         buffer[1] = 0;
12615
12616         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
12617
12618         gv_fullname4(name, gv, buffer, 0);
12619
12620         if ((unsigned int)SvPVX(name)[1] <= 26) {
12621             buffer[0] = '^';
12622             buffer[1] = SvPVX(name)[1] + 'A' - 1;
12623
12624             /* Swap the 1 unprintable control character for the 2 byte pretty
12625                version - ie substr($name, 1, 1) = $buffer; */
12626             sv_insert(name, 1, 1, buffer, 2);
12627         }
12628     }
12629     else {
12630         CV * const cv = find_runcv(NULL);
12631         SV *sv;
12632         AV *av;
12633
12634         if (!cv || !CvPADLIST(cv))
12635             return NULL;
12636         av = MUTABLE_AV((*av_fetch(CvPADLIST(cv), 0, FALSE)));
12637         sv = *av_fetch(av, targ, FALSE);
12638         sv_setpvn(name, SvPV_nolen_const(sv), SvCUR(sv));
12639     }
12640
12641     if (subscript_type == FUV_SUBSCRIPT_HASH) {
12642         SV * const sv = newSV(0);
12643         *SvPVX(name) = '$';
12644         Perl_sv_catpvf(aTHX_ name, "{%s}",
12645             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
12646         SvREFCNT_dec(sv);
12647     }
12648     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
12649         *SvPVX(name) = '$';
12650         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
12651     }
12652     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
12653         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
12654         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
12655     }
12656
12657     return name;
12658 }
12659
12660
12661 /*
12662 =for apidoc find_uninit_var
12663
12664 Find the name of the undefined variable (if any) that caused the operator o
12665 to issue a "Use of uninitialized value" warning.
12666 If match is true, only return a name if it's value matches uninit_sv.
12667 So roughly speaking, if a unary operator (such as OP_COS) generates a
12668 warning, then following the direct child of the op may yield an
12669 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
12670 other hand, with OP_ADD there are two branches to follow, so we only print
12671 the variable name if we get an exact match.
12672
12673 The name is returned as a mortal SV.
12674
12675 Assumes that PL_op is the op that originally triggered the error, and that
12676 PL_comppad/PL_curpad points to the currently executing pad.
12677
12678 =cut
12679 */
12680
12681 STATIC SV *
12682 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
12683                   bool match)
12684 {
12685     dVAR;
12686     SV *sv;
12687     const GV *gv;
12688     const OP *o, *o2, *kid;
12689
12690     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
12691                             uninit_sv == &PL_sv_placeholder)))
12692         return NULL;
12693
12694     switch (obase->op_type) {
12695
12696     case OP_RV2AV:
12697     case OP_RV2HV:
12698     case OP_PADAV:
12699     case OP_PADHV:
12700       {
12701         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
12702         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
12703         I32 index = 0;
12704         SV *keysv = NULL;
12705         int subscript_type = FUV_SUBSCRIPT_WITHIN;
12706
12707         if (pad) { /* @lex, %lex */
12708             sv = PAD_SVl(obase->op_targ);
12709             gv = NULL;
12710         }
12711         else {
12712             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
12713             /* @global, %global */
12714                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
12715                 if (!gv)
12716                     break;
12717                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
12718             }
12719             else /* @{expr}, %{expr} */
12720                 return find_uninit_var(cUNOPx(obase)->op_first,
12721                                                     uninit_sv, match);
12722         }
12723
12724         /* attempt to find a match within the aggregate */
12725         if (hash) {
12726             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
12727             if (keysv)
12728                 subscript_type = FUV_SUBSCRIPT_HASH;
12729         }
12730         else {
12731             index = find_array_subscript((const AV *)sv, uninit_sv);
12732             if (index >= 0)
12733                 subscript_type = FUV_SUBSCRIPT_ARRAY;
12734         }
12735
12736         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
12737             break;
12738
12739         return varname(gv, hash ? '%' : '@', obase->op_targ,
12740                                     keysv, index, subscript_type);
12741       }
12742
12743     case OP_PADSV:
12744         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
12745             break;
12746         return varname(NULL, '$', obase->op_targ,
12747                                     NULL, 0, FUV_SUBSCRIPT_NONE);
12748
12749     case OP_GVSV:
12750         gv = cGVOPx_gv(obase);
12751         if (!gv || (match && GvSV(gv) != uninit_sv))
12752             break;
12753         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
12754
12755     case OP_AELEMFAST:
12756         if (obase->op_flags & OPf_SPECIAL) { /* lexical array */
12757             if (match) {
12758                 SV **svp;
12759                 AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
12760                 if (!av || SvRMAGICAL(av))
12761                     break;
12762                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
12763                 if (!svp || *svp != uninit_sv)
12764                     break;
12765             }
12766             return varname(NULL, '$', obase->op_targ,
12767                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
12768         }
12769         else {
12770             gv = cGVOPx_gv(obase);
12771             if (!gv)
12772                 break;
12773             if (match) {
12774                 SV **svp;
12775                 AV *const av = GvAV(gv);
12776                 if (!av || SvRMAGICAL(av))
12777                     break;
12778                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
12779                 if (!svp || *svp != uninit_sv)
12780                     break;
12781             }
12782             return varname(gv, '$', 0,
12783                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
12784         }
12785         break;
12786
12787     case OP_EXISTS:
12788         o = cUNOPx(obase)->op_first;
12789         if (!o || o->op_type != OP_NULL ||
12790                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
12791             break;
12792         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
12793
12794     case OP_AELEM:
12795     case OP_HELEM:
12796         if (PL_op == obase)
12797             /* $a[uninit_expr] or $h{uninit_expr} */
12798             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
12799
12800         gv = NULL;
12801         o = cBINOPx(obase)->op_first;
12802         kid = cBINOPx(obase)->op_last;
12803
12804         /* get the av or hv, and optionally the gv */
12805         sv = NULL;
12806         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
12807             sv = PAD_SV(o->op_targ);
12808         }
12809         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
12810                 && cUNOPo->op_first->op_type == OP_GV)
12811         {
12812             gv = cGVOPx_gv(cUNOPo->op_first);
12813             if (!gv)
12814                 break;
12815             sv = o->op_type
12816                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
12817         }
12818         if (!sv)
12819             break;
12820
12821         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
12822             /* index is constant */
12823             if (match) {
12824                 if (SvMAGICAL(sv))
12825                     break;
12826                 if (obase->op_type == OP_HELEM) {
12827                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), cSVOPx_sv(kid), 0, 0);
12828                     if (!he || HeVAL(he) != uninit_sv)
12829                         break;
12830                 }
12831                 else {
12832                     SV * const * const svp = av_fetch(MUTABLE_AV(sv), SvIV(cSVOPx_sv(kid)), FALSE);
12833                     if (!svp || *svp != uninit_sv)
12834                         break;
12835                 }
12836             }
12837             if (obase->op_type == OP_HELEM)
12838                 return varname(gv, '%', o->op_targ,
12839                             cSVOPx_sv(kid), 0, FUV_SUBSCRIPT_HASH);
12840             else
12841                 return varname(gv, '@', o->op_targ, NULL,
12842                             SvIV(cSVOPx_sv(kid)), FUV_SUBSCRIPT_ARRAY);
12843         }
12844         else  {
12845             /* index is an expression;
12846              * attempt to find a match within the aggregate */
12847             if (obase->op_type == OP_HELEM) {
12848                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
12849                 if (keysv)
12850                     return varname(gv, '%', o->op_targ,
12851                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
12852             }
12853             else {
12854                 const I32 index
12855                     = find_array_subscript((const AV *)sv, uninit_sv);
12856                 if (index >= 0)
12857                     return varname(gv, '@', o->op_targ,
12858                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
12859             }
12860             if (match)
12861                 break;
12862             return varname(gv,
12863                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
12864                 ? '@' : '%',
12865                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
12866         }
12867         break;
12868
12869     case OP_AASSIGN:
12870         /* only examine RHS */
12871         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
12872
12873     case OP_OPEN:
12874         o = cUNOPx(obase)->op_first;
12875         if (o->op_type == OP_PUSHMARK)
12876             o = o->op_sibling;
12877
12878         if (!o->op_sibling) {
12879             /* one-arg version of open is highly magical */
12880
12881             if (o->op_type == OP_GV) { /* open FOO; */
12882                 gv = cGVOPx_gv(o);
12883                 if (match && GvSV(gv) != uninit_sv)
12884                     break;
12885                 return varname(gv, '$', 0,
12886                             NULL, 0, FUV_SUBSCRIPT_NONE);
12887             }
12888             /* other possibilities not handled are:
12889              * open $x; or open my $x;  should return '${*$x}'
12890              * open expr;               should return '$'.expr ideally
12891              */
12892              break;
12893         }
12894         goto do_op;
12895
12896     /* ops where $_ may be an implicit arg */
12897     case OP_TRANS:
12898     case OP_SUBST:
12899     case OP_MATCH:
12900         if ( !(obase->op_flags & OPf_STACKED)) {
12901             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
12902                                  ? PAD_SVl(obase->op_targ)
12903                                  : DEFSV))
12904             {
12905                 sv = sv_newmortal();
12906                 sv_setpvs(sv, "$_");
12907                 return sv;
12908             }
12909         }
12910         goto do_op;
12911
12912     case OP_PRTF:
12913     case OP_PRINT:
12914     case OP_SAY:
12915         match = 1; /* print etc can return undef on defined args */
12916         /* skip filehandle as it can't produce 'undef' warning  */
12917         o = cUNOPx(obase)->op_first;
12918         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
12919             o = o->op_sibling->op_sibling;
12920         goto do_op2;
12921
12922
12923     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
12924     case OP_RV2SV:
12925     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
12926
12927         /* the following ops are capable of returning PL_sv_undef even for
12928          * defined arg(s) */
12929
12930     case OP_BACKTICK:
12931     case OP_PIPE_OP:
12932     case OP_FILENO:
12933     case OP_BINMODE:
12934     case OP_TIED:
12935     case OP_GETC:
12936     case OP_SYSREAD:
12937     case OP_SEND:
12938     case OP_IOCTL:
12939     case OP_SOCKET:
12940     case OP_SOCKPAIR:
12941     case OP_BIND:
12942     case OP_CONNECT:
12943     case OP_LISTEN:
12944     case OP_ACCEPT:
12945     case OP_SHUTDOWN:
12946     case OP_SSOCKOPT:
12947     case OP_GETPEERNAME:
12948     case OP_FTRREAD:
12949     case OP_FTRWRITE:
12950     case OP_FTREXEC:
12951     case OP_FTROWNED:
12952     case OP_FTEREAD:
12953     case OP_FTEWRITE:
12954     case OP_FTEEXEC:
12955     case OP_FTEOWNED:
12956     case OP_FTIS:
12957     case OP_FTZERO:
12958     case OP_FTSIZE:
12959     case OP_FTFILE:
12960     case OP_FTDIR:
12961     case OP_FTLINK:
12962     case OP_FTPIPE:
12963     case OP_FTSOCK:
12964     case OP_FTBLK:
12965     case OP_FTCHR:
12966     case OP_FTTTY:
12967     case OP_FTSUID:
12968     case OP_FTSGID:
12969     case OP_FTSVTX:
12970     case OP_FTTEXT:
12971     case OP_FTBINARY:
12972     case OP_FTMTIME:
12973     case OP_FTATIME:
12974     case OP_FTCTIME:
12975     case OP_READLINK:
12976     case OP_OPEN_DIR:
12977     case OP_READDIR:
12978     case OP_TELLDIR:
12979     case OP_SEEKDIR:
12980     case OP_REWINDDIR:
12981     case OP_CLOSEDIR:
12982     case OP_GMTIME:
12983     case OP_ALARM:
12984     case OP_SEMGET:
12985     case OP_GETLOGIN:
12986     case OP_UNDEF:
12987     case OP_SUBSTR:
12988     case OP_AEACH:
12989     case OP_EACH:
12990     case OP_SORT:
12991     case OP_CALLER:
12992     case OP_DOFILE:
12993     case OP_PROTOTYPE:
12994     case OP_NCMP:
12995     case OP_SMARTMATCH:
12996     case OP_UNPACK:
12997     case OP_SYSOPEN:
12998     case OP_SYSSEEK:
12999         match = 1;
13000         goto do_op;
13001
13002     case OP_ENTERSUB:
13003     case OP_GOTO:
13004         /* XXX tmp hack: these two may call an XS sub, and currently
13005           XS subs don't have a SUB entry on the context stack, so CV and
13006           pad determination goes wrong, and BAD things happen. So, just
13007           don't try to determine the value under those circumstances.
13008           Need a better fix at dome point. DAPM 11/2007 */
13009         break;
13010
13011
13012     case OP_POS:
13013         /* def-ness of rval pos() is independent of the def-ness of its arg */
13014         if ( !(obase->op_flags & OPf_MOD))
13015             break;
13016
13017     case OP_SCHOMP:
13018     case OP_CHOMP:
13019         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
13020             return newSVpvs_flags("${$/}", SVs_TEMP);
13021         /*FALLTHROUGH*/
13022
13023     default:
13024     do_op:
13025         if (!(obase->op_flags & OPf_KIDS))
13026             break;
13027         o = cUNOPx(obase)->op_first;
13028         
13029     do_op2:
13030         if (!o)
13031             break;
13032
13033         /* if all except one arg are constant, or have no side-effects,
13034          * or are optimized away, then it's unambiguous */
13035         o2 = NULL;
13036         for (kid=o; kid; kid = kid->op_sibling) {
13037             if (kid) {
13038                 const OPCODE type = kid->op_type;
13039                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
13040                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
13041                   || (type == OP_PUSHMARK)
13042                 )
13043                 continue;
13044             }
13045             if (o2) { /* more than one found */
13046                 o2 = NULL;
13047                 break;
13048             }
13049             o2 = kid;
13050         }
13051         if (o2)
13052             return find_uninit_var(o2, uninit_sv, match);
13053
13054         /* scan all args */
13055         while (o) {
13056             sv = find_uninit_var(o, uninit_sv, 1);
13057             if (sv)
13058                 return sv;
13059             o = o->op_sibling;
13060         }
13061         break;
13062     }
13063     return NULL;
13064 }
13065
13066
13067 /*
13068 =for apidoc report_uninit
13069
13070 Print appropriate "Use of uninitialized variable" warning
13071
13072 =cut
13073 */
13074
13075 void
13076 Perl_report_uninit(pTHX_ const SV *uninit_sv)
13077 {
13078     dVAR;
13079     if (PL_op) {
13080         SV* varname = NULL;
13081         if (uninit_sv) {
13082             varname = find_uninit_var(PL_op, uninit_sv,0);
13083             if (varname)
13084                 sv_insert(varname, 0, 0, " ", 1);
13085         }
13086         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
13087                 varname ? SvPV_nolen_const(varname) : "",
13088                 " in ", OP_DESC(PL_op));
13089     }
13090     else
13091         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
13092                     "", "", "");
13093 }
13094
13095 /*
13096  * Local variables:
13097  * c-indentation-style: bsd
13098  * c-basic-offset: 4
13099  * indent-tabs-mode: t
13100  * End:
13101  *
13102  * ex: set ts=8 sts=4 sw=4 noet:
13103  */