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