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