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