a846af98aaff0ebb37aba51589ae6c560ba8df2e
[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         gv_name_set((GV *)dstr, name, len, GV_ADD);
3220         SvFAKE_on(dstr);        /* can coerce to non-glob */
3221     }
3222
3223 #ifdef GV_UNIQUE_CHECK
3224     if (GvUNIQUE((GV*)dstr)) {
3225         Perl_croak(aTHX_ PL_no_modify);
3226     }
3227 #endif
3228
3229     gp_free((GV*)dstr);
3230     SvSCREAM_off(dstr);
3231     (void)SvOK_off(dstr);
3232     SvSCREAM_on(dstr);
3233     GvINTRO_off(dstr);          /* one-shot flag */
3234     GvGP(dstr) = gp_ref(GvGP(sstr));
3235     if (SvTAINTED(sstr))
3236         SvTAINT(dstr);
3237     if (GvIMPORTED(dstr) != GVf_IMPORTED
3238         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3239         {
3240             GvIMPORTED_on(dstr);
3241         }
3242     GvMULTI_on(dstr);
3243     return;
3244 }
3245
3246 static void
3247 S_glob_assign_ref(pTHX_ SV *dstr, SV *sstr) {
3248     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3249     SV *dref = NULL;
3250     const int intro = GvINTRO(dstr);
3251     SV **location;
3252     U8 import_flag = 0;
3253     const U32 stype = SvTYPE(sref);
3254
3255
3256 #ifdef GV_UNIQUE_CHECK
3257     if (GvUNIQUE((GV*)dstr)) {
3258         Perl_croak(aTHX_ PL_no_modify);
3259     }
3260 #endif
3261
3262     if (intro) {
3263         GvINTRO_off(dstr);      /* one-shot flag */
3264         GvLINE(dstr) = CopLINE(PL_curcop);
3265         GvEGV(dstr) = (GV*)dstr;
3266     }
3267     GvMULTI_on(dstr);
3268     switch (stype) {
3269     case SVt_PVCV:
3270         location = (SV **) &GvCV(dstr);
3271         import_flag = GVf_IMPORTED_CV;
3272         goto common;
3273     case SVt_PVHV:
3274         location = (SV **) &GvHV(dstr);
3275         import_flag = GVf_IMPORTED_HV;
3276         goto common;
3277     case SVt_PVAV:
3278         location = (SV **) &GvAV(dstr);
3279         import_flag = GVf_IMPORTED_AV;
3280         goto common;
3281     case SVt_PVIO:
3282         location = (SV **) &GvIOp(dstr);
3283         goto common;
3284     case SVt_PVFM:
3285         location = (SV **) &GvFORM(dstr);
3286     default:
3287         location = &GvSV(dstr);
3288         import_flag = GVf_IMPORTED_SV;
3289     common:
3290         if (intro) {
3291             if (stype == SVt_PVCV) {
3292                 if (GvCVGEN(dstr) && GvCV(dstr) != (CV*)sref) {
3293                     SvREFCNT_dec(GvCV(dstr));
3294                     GvCV(dstr) = NULL;
3295                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3296                     PL_sub_generation++;
3297                 }
3298             }
3299             SAVEGENERICSV(*location);
3300         }
3301         else
3302             dref = *location;
3303         if (stype == SVt_PVCV && *location != sref) {
3304             CV* const cv = (CV*)*location;
3305             if (cv) {
3306                 if (!GvCVGEN((GV*)dstr) &&
3307                     (CvROOT(cv) || CvXSUB(cv)))
3308                     {
3309                         /* Redefining a sub - warning is mandatory if
3310                            it was a const and its value changed. */
3311                         if (CvCONST(cv) && CvCONST((CV*)sref)
3312                             && cv_const_sv(cv) == cv_const_sv((CV*)sref)) {
3313                             /*EMPTY*/
3314                             /* They are 2 constant subroutines generated from
3315                                the same constant. This probably means that
3316                                they are really the "same" proxy subroutine
3317                                instantiated in 2 places. Most likely this is
3318                                when a constant is exported twice.  Don't warn.
3319                             */
3320                         }
3321                         else if (ckWARN(WARN_REDEFINE)
3322                                  || (CvCONST(cv)
3323                                      && (!CvCONST((CV*)sref)
3324                                          || sv_cmp(cv_const_sv(cv),
3325                                                    cv_const_sv((CV*)sref))))) {
3326                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
3327                                         CvCONST(cv)
3328                                         ? "Constant subroutine %s::%s redefined"
3329                                         : "Subroutine %s::%s redefined",
3330                                         HvNAME_get(GvSTASH((GV*)dstr)),
3331                                         GvENAME((GV*)dstr));
3332                         }
3333                     }
3334                 if (!intro)
3335                     cv_ckproto(cv, (GV*)dstr,
3336                                SvPOK(sref) ? SvPVX_const(sref) : NULL);
3337             }
3338             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3339             GvASSUMECV_on(dstr);
3340             PL_sub_generation++;
3341         }
3342         *location = sref;
3343         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3344             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3345             GvFLAGS(dstr) |= import_flag;
3346         }
3347         break;
3348     }
3349     SvREFCNT_dec(dref);
3350     if (SvTAINTED(sstr))
3351         SvTAINT(dstr);
3352     return;
3353 }
3354
3355 void
3356 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV *sstr, I32 flags)
3357 {
3358     dVAR;
3359     register U32 sflags;
3360     register int dtype;
3361     register int stype;
3362
3363     if (sstr == dstr)
3364         return;
3365     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3366     if (!sstr)
3367         sstr = &PL_sv_undef;
3368     stype = SvTYPE(sstr);
3369     dtype = SvTYPE(dstr);
3370
3371     SvAMAGIC_off(dstr);
3372     if ( SvVOK(dstr) )
3373     {
3374         /* need to nuke the magic */
3375         mg_free(dstr);
3376         SvRMAGICAL_off(dstr);
3377     }
3378
3379     /* There's a lot of redundancy below but we're going for speed here */
3380
3381     switch (stype) {
3382     case SVt_NULL:
3383       undef_sstr:
3384         if (dtype != SVt_PVGV) {
3385             (void)SvOK_off(dstr);
3386             return;
3387         }
3388         break;
3389     case SVt_IV:
3390         if (SvIOK(sstr)) {
3391             switch (dtype) {
3392             case SVt_NULL:
3393                 sv_upgrade(dstr, SVt_IV);
3394                 break;
3395             case SVt_NV:
3396             case SVt_RV:
3397             case SVt_PV:
3398                 sv_upgrade(dstr, SVt_PVIV);
3399                 break;
3400             }
3401             (void)SvIOK_only(dstr);
3402             SvIV_set(dstr,  SvIVX(sstr));
3403             if (SvIsUV(sstr))
3404                 SvIsUV_on(dstr);
3405             /* SvTAINTED can only be true if the SV has taint magic, which in
3406                turn means that the SV type is PVMG (or greater). This is the
3407                case statement for SVt_IV, so this cannot be true (whatever gcov
3408                may say).  */
3409             assert(!SvTAINTED(sstr));
3410             return;
3411         }
3412         goto undef_sstr;
3413
3414     case SVt_NV:
3415         if (SvNOK(sstr)) {
3416             switch (dtype) {
3417             case SVt_NULL:
3418             case SVt_IV:
3419                 sv_upgrade(dstr, SVt_NV);
3420                 break;
3421             case SVt_RV:
3422             case SVt_PV:
3423             case SVt_PVIV:
3424                 sv_upgrade(dstr, SVt_PVNV);
3425                 break;
3426             }
3427             SvNV_set(dstr, SvNVX(sstr));
3428             (void)SvNOK_only(dstr);
3429             /* SvTAINTED can only be true if the SV has taint magic, which in
3430                turn means that the SV type is PVMG (or greater). This is the
3431                case statement for SVt_NV, so this cannot be true (whatever gcov
3432                may say).  */
3433             assert(!SvTAINTED(sstr));
3434             return;
3435         }
3436         goto undef_sstr;
3437
3438     case SVt_RV:
3439         if (dtype < SVt_RV)
3440             sv_upgrade(dstr, SVt_RV);
3441         break;
3442     case SVt_PVFM:
3443 #ifdef PERL_OLD_COPY_ON_WRITE
3444         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
3445             if (dtype < SVt_PVIV)
3446                 sv_upgrade(dstr, SVt_PVIV);
3447             break;
3448         }
3449         /* Fall through */
3450 #endif
3451     case SVt_PV:
3452         if (dtype < SVt_PV)
3453             sv_upgrade(dstr, SVt_PV);
3454         break;
3455     case SVt_PVIV:
3456         if (dtype < SVt_PVIV)
3457             sv_upgrade(dstr, SVt_PVIV);
3458         break;
3459     case SVt_PVNV:
3460         if (dtype < SVt_PVNV)
3461             sv_upgrade(dstr, SVt_PVNV);
3462         break;
3463     default:
3464         {
3465         const char * const type = sv_reftype(sstr,0);
3466         if (PL_op)
3467             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_NAME(PL_op));
3468         else
3469             Perl_croak(aTHX_ "Bizarre copy of %s", type);
3470         }
3471         break;
3472
3473     case SVt_PVGV:
3474         if (dtype <= SVt_PVGV) {
3475             S_glob_assign_glob(aTHX_ dstr, sstr, dtype);
3476             return;
3477         }
3478         /*FALLTHROUGH*/
3479
3480     case SVt_PVMG:
3481     case SVt_PVLV:
3482     case SVt_PVBM:
3483         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
3484             mg_get(sstr);
3485             if ((int)SvTYPE(sstr) != stype) {
3486                 stype = SvTYPE(sstr);
3487                 if (stype == SVt_PVGV && dtype <= SVt_PVGV) {
3488                     S_glob_assign_glob(aTHX_ dstr, sstr, dtype);
3489                     return;
3490                 }
3491             }
3492         }
3493         if (stype == SVt_PVLV)
3494             SvUPGRADE(dstr, SVt_PVNV);
3495         else
3496             SvUPGRADE(dstr, (U32)stype);
3497     }
3498
3499     /* dstr may have been upgraded.  */
3500     dtype = SvTYPE(dstr);
3501     sflags = SvFLAGS(sstr);
3502
3503     if (sflags & SVf_ROK) {
3504         if (dtype == SVt_PVGV &&
3505             SvROK(sstr) && SvTYPE(SvRV(sstr)) == SVt_PVGV) {
3506             sstr = SvRV(sstr);
3507             if (sstr == dstr) {
3508                 if (GvIMPORTED(dstr) != GVf_IMPORTED
3509                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3510                 {
3511                     GvIMPORTED_on(dstr);
3512                 }
3513                 GvMULTI_on(dstr);
3514                 return;
3515             }
3516             S_glob_assign_glob(aTHX_ dstr, sstr, dtype);
3517             return;
3518         }
3519
3520         if (dtype >= SVt_PV) {
3521             if (dtype == SVt_PVGV) {
3522                 S_glob_assign_ref(aTHX_ dstr, sstr);
3523                 return;
3524             }
3525             if (SvPVX_const(dstr)) {
3526                 SvPV_free(dstr);
3527                 SvLEN_set(dstr, 0);
3528                 SvCUR_set(dstr, 0);
3529             }
3530         }
3531         (void)SvOK_off(dstr);
3532         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
3533         SvFLAGS(dstr) |= sflags & (SVf_ROK|SVf_AMAGIC);
3534         assert(!(sflags & SVp_NOK));
3535         assert(!(sflags & SVp_IOK));
3536         assert(!(sflags & SVf_NOK));
3537         assert(!(sflags & SVf_IOK));
3538     }
3539     else if (dtype == SVt_PVGV) {
3540         if (!(sflags & SVf_OK)) {
3541             if (ckWARN(WARN_MISC))
3542                 Perl_warner(aTHX_ packWARN(WARN_MISC),
3543                             "Undefined value assigned to typeglob");
3544         }
3545         else {
3546             GV *gv = gv_fetchsv(sstr, GV_ADD, SVt_PVGV);
3547             if (dstr != (SV*)gv) {
3548                 if (GvGP(dstr))
3549                     gp_free((GV*)dstr);
3550                 GvGP(dstr) = gp_ref(GvGP(gv));
3551             }
3552         }
3553     }
3554     else if (sflags & SVp_POK) {
3555         bool isSwipe = 0;
3556
3557         /*
3558          * Check to see if we can just swipe the string.  If so, it's a
3559          * possible small lose on short strings, but a big win on long ones.
3560          * It might even be a win on short strings if SvPVX_const(dstr)
3561          * has to be allocated and SvPVX_const(sstr) has to be freed.
3562          */
3563
3564         /* Whichever path we take through the next code, we want this true,
3565            and doing it now facilitates the COW check.  */
3566         (void)SvPOK_only(dstr);
3567
3568         if (
3569             /* We're not already COW  */
3570             ((sflags & (SVf_FAKE | SVf_READONLY)) != (SVf_FAKE | SVf_READONLY)
3571 #ifndef PERL_OLD_COPY_ON_WRITE
3572              /* or we are, but dstr isn't a suitable target.  */
3573              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
3574 #endif
3575              )
3576             &&
3577             !(isSwipe =
3578                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
3579                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
3580                  (!(flags & SV_NOSTEAL)) &&
3581                                         /* and we're allowed to steal temps */
3582                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
3583                  SvLEN(sstr)    &&        /* and really is a string */
3584                                 /* and won't be needed again, potentially */
3585               !(PL_op && PL_op->op_type == OP_AASSIGN))
3586 #ifdef PERL_OLD_COPY_ON_WRITE
3587             && !((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
3588                  && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
3589                  && SvTYPE(sstr) >= SVt_PVIV)
3590 #endif
3591             ) {
3592             /* Failed the swipe test, and it's not a shared hash key either.
3593                Have to copy the string.  */
3594             STRLEN len = SvCUR(sstr);
3595             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
3596             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
3597             SvCUR_set(dstr, len);
3598             *SvEND(dstr) = '\0';
3599         } else {
3600             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
3601                be true in here.  */
3602             /* Either it's a shared hash key, or it's suitable for
3603                copy-on-write or we can swipe the string.  */
3604             if (DEBUG_C_TEST) {
3605                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
3606                 sv_dump(sstr);
3607                 sv_dump(dstr);
3608             }
3609 #ifdef PERL_OLD_COPY_ON_WRITE
3610             if (!isSwipe) {
3611                 /* I believe I should acquire a global SV mutex if
3612                    it's a COW sv (not a shared hash key) to stop
3613                    it going un copy-on-write.
3614                    If the source SV has gone un copy on write between up there
3615                    and down here, then (assert() that) it is of the correct
3616                    form to make it copy on write again */
3617                 if ((sflags & (SVf_FAKE | SVf_READONLY))
3618                     != (SVf_FAKE | SVf_READONLY)) {
3619                     SvREADONLY_on(sstr);
3620                     SvFAKE_on(sstr);
3621                     /* Make the source SV into a loop of 1.
3622                        (about to become 2) */
3623                     SV_COW_NEXT_SV_SET(sstr, sstr);
3624                 }
3625             }
3626 #endif
3627             /* Initial code is common.  */
3628             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
3629                 SvPV_free(dstr);
3630             }
3631
3632             if (!isSwipe) {
3633                 /* making another shared SV.  */
3634                 STRLEN cur = SvCUR(sstr);
3635                 STRLEN len = SvLEN(sstr);
3636 #ifdef PERL_OLD_COPY_ON_WRITE
3637                 if (len) {
3638                     assert (SvTYPE(dstr) >= SVt_PVIV);
3639                     /* SvIsCOW_normal */
3640                     /* splice us in between source and next-after-source.  */
3641                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
3642                     SV_COW_NEXT_SV_SET(sstr, dstr);
3643                     SvPV_set(dstr, SvPVX_mutable(sstr));
3644                 } else
3645 #endif
3646                 {
3647                     /* SvIsCOW_shared_hash */
3648                     DEBUG_C(PerlIO_printf(Perl_debug_log,
3649                                           "Copy on write: Sharing hash\n"));
3650
3651                     assert (SvTYPE(dstr) >= SVt_PV);
3652                     SvPV_set(dstr,
3653                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
3654                 }
3655                 SvLEN_set(dstr, len);
3656                 SvCUR_set(dstr, cur);
3657                 SvREADONLY_on(dstr);
3658                 SvFAKE_on(dstr);
3659                 /* Relesase a global SV mutex.  */
3660             }
3661             else
3662                 {       /* Passes the swipe test.  */
3663                 SvPV_set(dstr, SvPVX_mutable(sstr));
3664                 SvLEN_set(dstr, SvLEN(sstr));
3665                 SvCUR_set(dstr, SvCUR(sstr));
3666
3667                 SvTEMP_off(dstr);
3668                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
3669                 SvPV_set(sstr, NULL);
3670                 SvLEN_set(sstr, 0);
3671                 SvCUR_set(sstr, 0);
3672                 SvTEMP_off(sstr);
3673             }
3674         }
3675         if (sflags & SVp_NOK) {
3676             SvNV_set(dstr, SvNVX(sstr));
3677         }
3678         if (sflags & SVp_IOK) {
3679             SvRELEASE_IVX(dstr);
3680             SvIV_set(dstr, SvIVX(sstr));
3681             /* Must do this otherwise some other overloaded use of 0x80000000
3682                gets confused. I guess SVpbm_VALID */
3683             if (sflags & SVf_IVisUV)
3684                 SvIsUV_on(dstr);
3685         }
3686         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
3687         {
3688             const MAGIC * const smg = SvVOK(sstr);
3689             if (smg) {
3690                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
3691                          smg->mg_ptr, smg->mg_len);
3692                 SvRMAGICAL_on(dstr);
3693             }
3694         }
3695     }
3696     else if (sflags & (SVp_IOK|SVp_NOK)) {
3697         (void)SvOK_off(dstr);
3698         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
3699         if (sflags & SVp_IOK) {
3700             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
3701             SvIV_set(dstr, SvIVX(sstr));
3702         }
3703         if (sflags & SVp_NOK) {
3704             SvNV_set(dstr, SvNVX(sstr));
3705         }
3706     }
3707     else {
3708         if (isGV_with_GP(sstr)) {
3709             /* This stringification rule for globs is spread in 3 places.
3710                This feels bad. FIXME.  */
3711             const U32 wasfake = sflags & SVf_FAKE;
3712
3713             /* FAKE globs can get coerced, so need to turn this off
3714                temporarily if it is on.  */
3715             SvFAKE_off(sstr);
3716             gv_efullname3(dstr, (GV *)sstr, "*");
3717             SvFLAGS(sstr) |= wasfake;
3718         }
3719         else
3720             (void)SvOK_off(dstr);
3721     }
3722     if (SvTAINTED(sstr))
3723         SvTAINT(dstr);
3724 }
3725
3726 /*
3727 =for apidoc sv_setsv_mg
3728
3729 Like C<sv_setsv>, but also handles 'set' magic.
3730
3731 =cut
3732 */
3733
3734 void
3735 Perl_sv_setsv_mg(pTHX_ SV *dstr, register SV *sstr)
3736 {
3737     sv_setsv(dstr,sstr);
3738     SvSETMAGIC(dstr);
3739 }
3740
3741 #ifdef PERL_OLD_COPY_ON_WRITE
3742 SV *
3743 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
3744 {
3745     STRLEN cur = SvCUR(sstr);
3746     STRLEN len = SvLEN(sstr);
3747     register char *new_pv;
3748
3749     if (DEBUG_C_TEST) {
3750         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
3751                       sstr, dstr);
3752         sv_dump(sstr);
3753         if (dstr)
3754                     sv_dump(dstr);
3755     }
3756
3757     if (dstr) {
3758         if (SvTHINKFIRST(dstr))
3759             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
3760         else if (SvPVX_const(dstr))
3761             Safefree(SvPVX_const(dstr));
3762     }
3763     else
3764         new_SV(dstr);
3765     SvUPGRADE(dstr, SVt_PVIV);
3766
3767     assert (SvPOK(sstr));
3768     assert (SvPOKp(sstr));
3769     assert (!SvIOK(sstr));
3770     assert (!SvIOKp(sstr));
3771     assert (!SvNOK(sstr));
3772     assert (!SvNOKp(sstr));
3773
3774     if (SvIsCOW(sstr)) {
3775
3776         if (SvLEN(sstr) == 0) {
3777             /* source is a COW shared hash key.  */
3778             DEBUG_C(PerlIO_printf(Perl_debug_log,
3779                                   "Fast copy on write: Sharing hash\n"));
3780             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
3781             goto common_exit;
3782         }
3783         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
3784     } else {
3785         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
3786         SvUPGRADE(sstr, SVt_PVIV);
3787         SvREADONLY_on(sstr);
3788         SvFAKE_on(sstr);
3789         DEBUG_C(PerlIO_printf(Perl_debug_log,
3790                               "Fast copy on write: Converting sstr to COW\n"));
3791         SV_COW_NEXT_SV_SET(dstr, sstr);
3792     }
3793     SV_COW_NEXT_SV_SET(sstr, dstr);
3794     new_pv = SvPVX_mutable(sstr);
3795
3796   common_exit:
3797     SvPV_set(dstr, new_pv);
3798     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
3799     if (SvUTF8(sstr))
3800         SvUTF8_on(dstr);
3801     SvLEN_set(dstr, len);
3802     SvCUR_set(dstr, cur);
3803     if (DEBUG_C_TEST) {
3804         sv_dump(dstr);
3805     }
3806     return dstr;
3807 }
3808 #endif
3809
3810 /*
3811 =for apidoc sv_setpvn
3812
3813 Copies a string into an SV.  The C<len> parameter indicates the number of
3814 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
3815 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
3816
3817 =cut
3818 */
3819
3820 void
3821 Perl_sv_setpvn(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
3822 {
3823     dVAR;
3824     register char *dptr;
3825
3826     SV_CHECK_THINKFIRST_COW_DROP(sv);
3827     if (!ptr) {
3828         (void)SvOK_off(sv);
3829         return;
3830     }
3831     else {
3832         /* len is STRLEN which is unsigned, need to copy to signed */
3833         const IV iv = len;
3834         if (iv < 0)
3835             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
3836     }
3837     SvUPGRADE(sv, SVt_PV);
3838
3839     dptr = SvGROW(sv, len + 1);
3840     Move(ptr,dptr,len,char);
3841     dptr[len] = '\0';
3842     SvCUR_set(sv, len);
3843     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
3844     SvTAINT(sv);
3845 }
3846
3847 /*
3848 =for apidoc sv_setpvn_mg
3849
3850 Like C<sv_setpvn>, but also handles 'set' magic.
3851
3852 =cut
3853 */
3854
3855 void
3856 Perl_sv_setpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
3857 {
3858     sv_setpvn(sv,ptr,len);
3859     SvSETMAGIC(sv);
3860 }
3861
3862 /*
3863 =for apidoc sv_setpv
3864
3865 Copies a string into an SV.  The string must be null-terminated.  Does not
3866 handle 'set' magic.  See C<sv_setpv_mg>.
3867
3868 =cut
3869 */
3870
3871 void
3872 Perl_sv_setpv(pTHX_ register SV *sv, register const char *ptr)
3873 {
3874     dVAR;
3875     register STRLEN len;
3876
3877     SV_CHECK_THINKFIRST_COW_DROP(sv);
3878     if (!ptr) {
3879         (void)SvOK_off(sv);
3880         return;
3881     }
3882     len = strlen(ptr);
3883     SvUPGRADE(sv, SVt_PV);
3884
3885     SvGROW(sv, len + 1);
3886     Move(ptr,SvPVX(sv),len+1,char);
3887     SvCUR_set(sv, len);
3888     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
3889     SvTAINT(sv);
3890 }
3891
3892 /*
3893 =for apidoc sv_setpv_mg
3894
3895 Like C<sv_setpv>, but also handles 'set' magic.
3896
3897 =cut
3898 */
3899
3900 void
3901 Perl_sv_setpv_mg(pTHX_ register SV *sv, register const char *ptr)
3902 {
3903     sv_setpv(sv,ptr);
3904     SvSETMAGIC(sv);
3905 }
3906
3907 /*
3908 =for apidoc sv_usepvn
3909
3910 Tells an SV to use C<ptr> to find its string value.  Normally the string is
3911 stored inside the SV but sv_usepvn allows the SV to use an outside string.
3912 The C<ptr> should point to memory that was allocated by C<malloc>.  The
3913 string length, C<len>, must be supplied.  This function will realloc the
3914 memory pointed to by C<ptr>, so that pointer should not be freed or used by
3915 the programmer after giving it to sv_usepvn.  Does not handle 'set' magic.
3916 See C<sv_usepvn_mg>.
3917
3918 =cut
3919 */
3920
3921 void
3922 Perl_sv_usepvn(pTHX_ register SV *sv, register char *ptr, register STRLEN len)
3923 {
3924     dVAR;
3925     STRLEN allocate;
3926     SV_CHECK_THINKFIRST_COW_DROP(sv);
3927     SvUPGRADE(sv, SVt_PV);
3928     if (!ptr) {
3929         (void)SvOK_off(sv);
3930         return;
3931     }
3932     if (SvPVX_const(sv))
3933         SvPV_free(sv);
3934
3935     allocate = PERL_STRLEN_ROUNDUP(len + 1);
3936     ptr = saferealloc (ptr, allocate);
3937     SvPV_set(sv, ptr);
3938     SvCUR_set(sv, len);
3939     SvLEN_set(sv, allocate);
3940     *SvEND(sv) = '\0';
3941     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
3942     SvTAINT(sv);
3943 }
3944
3945 /*
3946 =for apidoc sv_usepvn_mg
3947
3948 Like C<sv_usepvn>, but also handles 'set' magic.
3949
3950 =cut
3951 */
3952
3953 void
3954 Perl_sv_usepvn_mg(pTHX_ register SV *sv, register char *ptr, register STRLEN len)
3955 {
3956     sv_usepvn(sv,ptr,len);
3957     SvSETMAGIC(sv);
3958 }
3959
3960 #ifdef PERL_OLD_COPY_ON_WRITE
3961 /* Need to do this *after* making the SV normal, as we need the buffer
3962    pointer to remain valid until after we've copied it.  If we let go too early,
3963    another thread could invalidate it by unsharing last of the same hash key
3964    (which it can do by means other than releasing copy-on-write Svs)
3965    or by changing the other copy-on-write SVs in the loop.  */
3966 STATIC void
3967 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, STRLEN len, SV *after)
3968 {
3969     if (len) { /* this SV was SvIsCOW_normal(sv) */
3970          /* we need to find the SV pointing to us.  */
3971         SV *current = SV_COW_NEXT_SV(after);
3972
3973         if (current == sv) {
3974             /* The SV we point to points back to us (there were only two of us
3975                in the loop.)
3976                Hence other SV is no longer copy on write either.  */
3977             SvFAKE_off(after);
3978             SvREADONLY_off(after);
3979         } else {
3980             /* We need to follow the pointers around the loop.  */
3981             SV *next;
3982             while ((next = SV_COW_NEXT_SV(current)) != sv) {
3983                 assert (next);
3984                 current = next;
3985                  /* don't loop forever if the structure is bust, and we have
3986                     a pointer into a closed loop.  */
3987                 assert (current != after);
3988                 assert (SvPVX_const(current) == pvx);
3989             }
3990             /* Make the SV before us point to the SV after us.  */
3991             SV_COW_NEXT_SV_SET(current, after);
3992         }
3993     } else {
3994         unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
3995     }
3996 }
3997
3998 int
3999 Perl_sv_release_IVX(pTHX_ register SV *sv)
4000 {
4001     if (SvIsCOW(sv))
4002         sv_force_normal_flags(sv, 0);
4003     SvOOK_off(sv);
4004     return 0;
4005 }
4006 #endif
4007 /*
4008 =for apidoc sv_force_normal_flags
4009
4010 Undo various types of fakery on an SV: if the PV is a shared string, make
4011 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4012 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4013 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4014 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4015 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4016 set to some other value.) In addition, the C<flags> parameter gets passed to
4017 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
4018 with flags set to 0.
4019
4020 =cut
4021 */
4022
4023 void
4024 Perl_sv_force_normal_flags(pTHX_ register SV *sv, U32 flags)
4025 {
4026     dVAR;
4027 #ifdef PERL_OLD_COPY_ON_WRITE
4028     if (SvREADONLY(sv)) {
4029         /* At this point I believe I should acquire a global SV mutex.  */
4030         if (SvFAKE(sv)) {
4031             const char * const pvx = SvPVX_const(sv);
4032             const STRLEN len = SvLEN(sv);
4033             const STRLEN cur = SvCUR(sv);
4034             SV * const next = SV_COW_NEXT_SV(sv);   /* next COW sv in the loop. */
4035             if (DEBUG_C_TEST) {
4036                 PerlIO_printf(Perl_debug_log,
4037                               "Copy on write: Force normal %ld\n",
4038                               (long) flags);
4039                 sv_dump(sv);
4040             }
4041             SvFAKE_off(sv);
4042             SvREADONLY_off(sv);
4043             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4044             SvPV_set(sv, NULL);
4045             SvLEN_set(sv, 0);
4046             if (flags & SV_COW_DROP_PV) {
4047                 /* OK, so we don't need to copy our buffer.  */
4048                 SvPOK_off(sv);
4049             } else {
4050                 SvGROW(sv, cur + 1);
4051                 Move(pvx,SvPVX(sv),cur,char);
4052                 SvCUR_set(sv, cur);
4053                 *SvEND(sv) = '\0';
4054             }
4055             sv_release_COW(sv, pvx, len, next);
4056             if (DEBUG_C_TEST) {
4057                 sv_dump(sv);
4058             }
4059         }
4060         else if (IN_PERL_RUNTIME)
4061             Perl_croak(aTHX_ PL_no_modify);
4062         /* At this point I believe that I can drop the global SV mutex.  */
4063     }
4064 #else
4065     if (SvREADONLY(sv)) {
4066         if (SvFAKE(sv)) {
4067             const char * const pvx = SvPVX_const(sv);
4068             const STRLEN len = SvCUR(sv);
4069             SvFAKE_off(sv);
4070             SvREADONLY_off(sv);
4071             SvPV_set(sv, NULL);
4072             SvLEN_set(sv, 0);
4073             SvGROW(sv, len + 1);
4074             Move(pvx,SvPVX(sv),len,char);
4075             *SvEND(sv) = '\0';
4076             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4077         }
4078         else if (IN_PERL_RUNTIME)
4079             Perl_croak(aTHX_ PL_no_modify);
4080     }
4081 #endif
4082     if (SvROK(sv))
4083         sv_unref_flags(sv, flags);
4084     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_PVGV)
4085         sv_unglob(sv);
4086 }
4087
4088 /*
4089 =for apidoc sv_chop
4090
4091 Efficient removal of characters from the beginning of the string buffer.
4092 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4093 the string buffer.  The C<ptr> becomes the first character of the adjusted
4094 string. Uses the "OOK hack".
4095 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4096 refer to the same chunk of data.
4097
4098 =cut
4099 */
4100
4101 void
4102 Perl_sv_chop(pTHX_ register SV *sv, register const char *ptr)
4103 {
4104     register STRLEN delta;
4105     if (!ptr || !SvPOKp(sv))
4106         return;
4107     delta = ptr - SvPVX_const(sv);
4108     SV_CHECK_THINKFIRST(sv);
4109     if (SvTYPE(sv) < SVt_PVIV)
4110         sv_upgrade(sv,SVt_PVIV);
4111
4112     if (!SvOOK(sv)) {
4113         if (!SvLEN(sv)) { /* make copy of shared string */
4114             const char *pvx = SvPVX_const(sv);
4115             const STRLEN len = SvCUR(sv);
4116             SvGROW(sv, len + 1);
4117             Move(pvx,SvPVX(sv),len,char);
4118             *SvEND(sv) = '\0';
4119         }
4120         SvIV_set(sv, 0);
4121         /* Same SvOOK_on but SvOOK_on does a SvIOK_off
4122            and we do that anyway inside the SvNIOK_off
4123         */
4124         SvFLAGS(sv) |= SVf_OOK;
4125     }
4126     SvNIOK_off(sv);
4127     SvLEN_set(sv, SvLEN(sv) - delta);
4128     SvCUR_set(sv, SvCUR(sv) - delta);
4129     SvPV_set(sv, SvPVX(sv) + delta);
4130     SvIV_set(sv, SvIVX(sv) + delta);
4131 }
4132
4133 /*
4134 =for apidoc sv_catpvn
4135
4136 Concatenates the string onto the end of the string which is in the SV.  The
4137 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4138 status set, then the bytes appended should be valid UTF-8.
4139 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4140
4141 =for apidoc sv_catpvn_flags
4142
4143 Concatenates the string onto the end of the string which is in the SV.  The
4144 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4145 status set, then the bytes appended should be valid UTF-8.
4146 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4147 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4148 in terms of this function.
4149
4150 =cut
4151 */
4152
4153 void
4154 Perl_sv_catpvn_flags(pTHX_ register SV *dsv, register const char *sstr, register STRLEN slen, I32 flags)
4155 {
4156     dVAR;
4157     STRLEN dlen;
4158     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4159
4160     SvGROW(dsv, dlen + slen + 1);
4161     if (sstr == dstr)
4162         sstr = SvPVX_const(dsv);
4163     Move(sstr, SvPVX(dsv) + dlen, slen, char);
4164     SvCUR_set(dsv, SvCUR(dsv) + slen);
4165     *SvEND(dsv) = '\0';
4166     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
4167     SvTAINT(dsv);
4168     if (flags & SV_SMAGIC)
4169         SvSETMAGIC(dsv);
4170 }
4171
4172 /*
4173 =for apidoc sv_catsv
4174
4175 Concatenates the string from SV C<ssv> onto the end of the string in
4176 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
4177 not 'set' magic.  See C<sv_catsv_mg>.
4178
4179 =for apidoc sv_catsv_flags
4180
4181 Concatenates the string from SV C<ssv> onto the end of the string in
4182 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
4183 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4184 and C<sv_catsv_nomg> are implemented in terms of this function.
4185
4186 =cut */
4187
4188 void
4189 Perl_sv_catsv_flags(pTHX_ SV *dsv, register SV *ssv, I32 flags)
4190 {
4191     dVAR;
4192     if (ssv) {
4193         STRLEN slen;
4194         const char *spv = SvPV_const(ssv, slen);
4195         if (spv) {
4196             /*  sutf8 and dutf8 were type bool, but under USE_ITHREADS,
4197                 gcc version 2.95.2 20000220 (Debian GNU/Linux) for
4198                 Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
4199                 get dutf8 = 0x20000000, (i.e.  SVf_UTF8) even though
4200                 dsv->sv_flags doesn't have that bit set.
4201                 Andy Dougherty  12 Oct 2001
4202             */
4203             const I32 sutf8 = DO_UTF8(ssv);
4204             I32 dutf8;
4205
4206             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
4207                 mg_get(dsv);
4208             dutf8 = DO_UTF8(dsv);
4209
4210             if (dutf8 != sutf8) {
4211                 if (dutf8) {
4212                     /* Not modifying source SV, so taking a temporary copy. */
4213                     SV* const csv = sv_2mortal(newSVpvn(spv, slen));
4214
4215                     sv_utf8_upgrade(csv);
4216                     spv = SvPV_const(csv, slen);
4217                 }
4218                 else
4219                     sv_utf8_upgrade_nomg(dsv);
4220             }
4221             sv_catpvn_nomg(dsv, spv, slen);
4222         }
4223     }
4224     if (flags & SV_SMAGIC)
4225         SvSETMAGIC(dsv);
4226 }
4227
4228 /*
4229 =for apidoc sv_catpv
4230
4231 Concatenates the string onto the end of the string which is in the SV.
4232 If the SV has the UTF-8 status set, then the bytes appended should be
4233 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
4234
4235 =cut */
4236
4237 void
4238 Perl_sv_catpv(pTHX_ register SV *sv, register const char *ptr)
4239 {
4240     dVAR;
4241     register STRLEN len;
4242     STRLEN tlen;
4243     char *junk;
4244
4245     if (!ptr)
4246         return;
4247     junk = SvPV_force(sv, tlen);
4248     len = strlen(ptr);
4249     SvGROW(sv, tlen + len + 1);
4250     if (ptr == junk)
4251         ptr = SvPVX_const(sv);
4252     Move(ptr,SvPVX(sv)+tlen,len+1,char);
4253     SvCUR_set(sv, SvCUR(sv) + len);
4254     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4255     SvTAINT(sv);
4256 }
4257
4258 /*
4259 =for apidoc sv_catpv_mg
4260
4261 Like C<sv_catpv>, but also handles 'set' magic.
4262
4263 =cut
4264 */
4265
4266 void
4267 Perl_sv_catpv_mg(pTHX_ register SV *sv, register const char *ptr)
4268 {
4269     sv_catpv(sv,ptr);
4270     SvSETMAGIC(sv);
4271 }
4272
4273 /*
4274 =for apidoc newSV
4275
4276 Creates a new SV.  A non-zero C<len> parameter indicates the number of
4277 bytes of preallocated string space the SV should have.  An extra byte for a
4278 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
4279 space is allocated.)  The reference count for the new SV is set to 1.
4280
4281 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
4282 parameter, I<x>, a debug aid which allowed callers to identify themselves.
4283 This aid has been superseded by a new build option, PERL_MEM_LOG (see
4284 L<perlhack/PERL_MEM_LOG>).  The older API is still there for use in XS
4285 modules supporting older perls.
4286
4287 =cut
4288 */
4289
4290 SV *
4291 Perl_newSV(pTHX_ STRLEN len)
4292 {
4293     dVAR;
4294     register SV *sv;
4295
4296     new_SV(sv);
4297     if (len) {
4298         sv_upgrade(sv, SVt_PV);
4299         SvGROW(sv, len + 1);
4300     }
4301     return sv;
4302 }
4303 /*
4304 =for apidoc sv_magicext
4305
4306 Adds magic to an SV, upgrading it if necessary. Applies the
4307 supplied vtable and returns a pointer to the magic added.
4308
4309 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
4310 In particular, you can add magic to SvREADONLY SVs, and add more than
4311 one instance of the same 'how'.
4312
4313 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
4314 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
4315 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
4316 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
4317
4318 (This is now used as a subroutine by C<sv_magic>.)
4319
4320 =cut
4321 */
4322 MAGIC * 
4323 Perl_sv_magicext(pTHX_ SV* sv, SV* obj, int how, MGVTBL *vtable,
4324                  const char* name, I32 namlen)
4325 {
4326     dVAR;
4327     MAGIC* mg;
4328
4329     if (SvTYPE(sv) < SVt_PVMG) {
4330         SvUPGRADE(sv, SVt_PVMG);
4331     }
4332     Newxz(mg, 1, MAGIC);
4333     mg->mg_moremagic = SvMAGIC(sv);
4334     SvMAGIC_set(sv, mg);
4335
4336     /* Sometimes a magic contains a reference loop, where the sv and
4337        object refer to each other.  To prevent a reference loop that
4338        would prevent such objects being freed, we look for such loops
4339        and if we find one we avoid incrementing the object refcount.
4340
4341        Note we cannot do this to avoid self-tie loops as intervening RV must
4342        have its REFCNT incremented to keep it in existence.
4343
4344     */
4345     if (!obj || obj == sv ||
4346         how == PERL_MAGIC_arylen ||
4347         how == PERL_MAGIC_qr ||
4348         how == PERL_MAGIC_symtab ||
4349         (SvTYPE(obj) == SVt_PVGV &&
4350             (GvSV(obj) == sv || GvHV(obj) == (HV*)sv || GvAV(obj) == (AV*)sv ||
4351             GvCV(obj) == (CV*)sv || GvIOp(obj) == (IO*)sv ||
4352             GvFORM(obj) == (CV*)sv)))
4353     {
4354         mg->mg_obj = obj;
4355     }
4356     else {
4357         mg->mg_obj = SvREFCNT_inc_simple(obj);
4358         mg->mg_flags |= MGf_REFCOUNTED;
4359     }
4360
4361     /* Normal self-ties simply pass a null object, and instead of
4362        using mg_obj directly, use the SvTIED_obj macro to produce a
4363        new RV as needed.  For glob "self-ties", we are tieing the PVIO
4364        with an RV obj pointing to the glob containing the PVIO.  In
4365        this case, to avoid a reference loop, we need to weaken the
4366        reference.
4367     */
4368
4369     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
4370         obj && SvROK(obj) && GvIO(SvRV(obj)) == (IO*)sv)
4371     {
4372       sv_rvweaken(obj);
4373     }
4374
4375     mg->mg_type = how;
4376     mg->mg_len = namlen;
4377     if (name) {
4378         if (namlen > 0)
4379             mg->mg_ptr = savepvn(name, namlen);
4380         else if (namlen == HEf_SVKEY)
4381             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV*)name);
4382         else
4383             mg->mg_ptr = (char *) name;
4384     }
4385     mg->mg_virtual = vtable;
4386
4387     mg_magical(sv);
4388     if (SvGMAGICAL(sv))
4389         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
4390     return mg;
4391 }
4392
4393 /*
4394 =for apidoc sv_magic
4395
4396 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
4397 then adds a new magic item of type C<how> to the head of the magic list.
4398
4399 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
4400 handling of the C<name> and C<namlen> arguments.
4401
4402 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
4403 to add more than one instance of the same 'how'.
4404
4405 =cut
4406 */
4407
4408 void
4409 Perl_sv_magic(pTHX_ register SV *sv, SV *obj, int how, const char *name, I32 namlen)
4410 {
4411     dVAR;
4412     MGVTBL *vtable;
4413     MAGIC* mg;
4414
4415 #ifdef PERL_OLD_COPY_ON_WRITE
4416     if (SvIsCOW(sv))
4417         sv_force_normal_flags(sv, 0);
4418 #endif
4419     if (SvREADONLY(sv)) {
4420         if (
4421             /* its okay to attach magic to shared strings; the subsequent
4422              * upgrade to PVMG will unshare the string */
4423             !(SvFAKE(sv) && SvTYPE(sv) < SVt_PVMG)
4424
4425             && IN_PERL_RUNTIME
4426             && how != PERL_MAGIC_regex_global
4427             && how != PERL_MAGIC_bm
4428             && how != PERL_MAGIC_fm
4429             && how != PERL_MAGIC_sv
4430             && how != PERL_MAGIC_backref
4431            )
4432         {
4433             Perl_croak(aTHX_ PL_no_modify);
4434         }
4435     }
4436     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
4437         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
4438             /* sv_magic() refuses to add a magic of the same 'how' as an
4439                existing one
4440              */
4441             if (how == PERL_MAGIC_taint) {
4442                 mg->mg_len |= 1;
4443                 /* Any scalar which already had taint magic on which someone
4444                    (erroneously?) did SvIOK_on() or similar will now be
4445                    incorrectly sporting public "OK" flags.  */
4446                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
4447             }
4448             return;
4449         }
4450     }
4451
4452     switch (how) {
4453     case PERL_MAGIC_sv:
4454         vtable = &PL_vtbl_sv;
4455         break;
4456     case PERL_MAGIC_overload:
4457         vtable = &PL_vtbl_amagic;
4458         break;
4459     case PERL_MAGIC_overload_elem:
4460         vtable = &PL_vtbl_amagicelem;
4461         break;
4462     case PERL_MAGIC_overload_table:
4463         vtable = &PL_vtbl_ovrld;
4464         break;
4465     case PERL_MAGIC_bm:
4466         vtable = &PL_vtbl_bm;
4467         break;
4468     case PERL_MAGIC_regdata:
4469         vtable = &PL_vtbl_regdata;
4470         break;
4471     case PERL_MAGIC_regdatum:
4472         vtable = &PL_vtbl_regdatum;
4473         break;
4474     case PERL_MAGIC_env:
4475         vtable = &PL_vtbl_env;
4476         break;
4477     case PERL_MAGIC_fm:
4478         vtable = &PL_vtbl_fm;
4479         break;
4480     case PERL_MAGIC_envelem:
4481         vtable = &PL_vtbl_envelem;
4482         break;
4483     case PERL_MAGIC_regex_global:
4484         vtable = &PL_vtbl_mglob;
4485         break;
4486     case PERL_MAGIC_isa:
4487         vtable = &PL_vtbl_isa;
4488         break;
4489     case PERL_MAGIC_isaelem:
4490         vtable = &PL_vtbl_isaelem;
4491         break;
4492     case PERL_MAGIC_nkeys:
4493         vtable = &PL_vtbl_nkeys;
4494         break;
4495     case PERL_MAGIC_dbfile:
4496         vtable = NULL;
4497         break;
4498     case PERL_MAGIC_dbline:
4499         vtable = &PL_vtbl_dbline;
4500         break;
4501 #ifdef USE_LOCALE_COLLATE
4502     case PERL_MAGIC_collxfrm:
4503         vtable = &PL_vtbl_collxfrm;
4504         break;
4505 #endif /* USE_LOCALE_COLLATE */
4506     case PERL_MAGIC_tied:
4507         vtable = &PL_vtbl_pack;
4508         break;
4509     case PERL_MAGIC_tiedelem:
4510     case PERL_MAGIC_tiedscalar:
4511         vtable = &PL_vtbl_packelem;
4512         break;
4513     case PERL_MAGIC_qr:
4514         vtable = &PL_vtbl_regexp;
4515         break;
4516     case PERL_MAGIC_sig:
4517         vtable = &PL_vtbl_sig;
4518         break;
4519     case PERL_MAGIC_sigelem:
4520         vtable = &PL_vtbl_sigelem;
4521         break;
4522     case PERL_MAGIC_taint:
4523         vtable = &PL_vtbl_taint;
4524         break;
4525     case PERL_MAGIC_uvar:
4526         vtable = &PL_vtbl_uvar;
4527         break;
4528     case PERL_MAGIC_vec:
4529         vtable = &PL_vtbl_vec;
4530         break;
4531     case PERL_MAGIC_arylen_p:
4532     case PERL_MAGIC_rhash:
4533     case PERL_MAGIC_symtab:
4534     case PERL_MAGIC_vstring:
4535         vtable = NULL;
4536         break;
4537     case PERL_MAGIC_utf8:
4538         vtable = &PL_vtbl_utf8;
4539         break;
4540     case PERL_MAGIC_substr:
4541         vtable = &PL_vtbl_substr;
4542         break;
4543     case PERL_MAGIC_defelem:
4544         vtable = &PL_vtbl_defelem;
4545         break;
4546     case PERL_MAGIC_arylen:
4547         vtable = &PL_vtbl_arylen;
4548         break;
4549     case PERL_MAGIC_pos:
4550         vtable = &PL_vtbl_pos;
4551         break;
4552     case PERL_MAGIC_backref:
4553         vtable = &PL_vtbl_backref;
4554         break;
4555     case PERL_MAGIC_ext:
4556         /* Reserved for use by extensions not perl internals.           */
4557         /* Useful for attaching extension internal data to perl vars.   */
4558         /* Note that multiple extensions may clash if magical scalars   */
4559         /* etc holding private data from one are passed to another.     */
4560         vtable = NULL;
4561         break;
4562     default:
4563         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
4564     }
4565
4566     /* Rest of work is done else where */
4567     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
4568
4569     switch (how) {
4570     case PERL_MAGIC_taint:
4571         mg->mg_len = 1;
4572         break;
4573     case PERL_MAGIC_ext:
4574     case PERL_MAGIC_dbfile:
4575         SvRMAGICAL_on(sv);
4576         break;
4577     }
4578 }
4579
4580 /*
4581 =for apidoc sv_unmagic
4582
4583 Removes all magic of type C<type> from an SV.
4584
4585 =cut
4586 */
4587
4588 int
4589 Perl_sv_unmagic(pTHX_ SV *sv, int type)
4590 {
4591     MAGIC* mg;
4592     MAGIC** mgp;
4593     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
4594         return 0;
4595     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
4596     for (mg = *mgp; mg; mg = *mgp) {
4597         if (mg->mg_type == type) {
4598             const MGVTBL* const vtbl = mg->mg_virtual;
4599             *mgp = mg->mg_moremagic;
4600             if (vtbl && vtbl->svt_free)
4601                 CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg);
4602             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
4603                 if (mg->mg_len > 0)
4604                     Safefree(mg->mg_ptr);
4605                 else if (mg->mg_len == HEf_SVKEY)
4606                     SvREFCNT_dec((SV*)mg->mg_ptr);
4607                 else if (mg->mg_type == PERL_MAGIC_utf8 && mg->mg_ptr)
4608                     Safefree(mg->mg_ptr);
4609             }
4610             if (mg->mg_flags & MGf_REFCOUNTED)
4611                 SvREFCNT_dec(mg->mg_obj);
4612             Safefree(mg);
4613         }
4614         else
4615             mgp = &mg->mg_moremagic;
4616     }
4617     if (!SvMAGIC(sv)) {
4618         SvMAGICAL_off(sv);
4619         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
4620         SvMAGIC_set(sv, NULL);
4621     }
4622
4623     return 0;
4624 }
4625
4626 /*
4627 =for apidoc sv_rvweaken
4628
4629 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
4630 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
4631 push a back-reference to this RV onto the array of backreferences
4632 associated with that magic.
4633
4634 =cut
4635 */
4636
4637 SV *
4638 Perl_sv_rvweaken(pTHX_ SV *sv)
4639 {
4640     SV *tsv;
4641     if (!SvOK(sv))  /* let undefs pass */
4642         return sv;
4643     if (!SvROK(sv))
4644         Perl_croak(aTHX_ "Can't weaken a nonreference");
4645     else if (SvWEAKREF(sv)) {
4646         if (ckWARN(WARN_MISC))
4647             Perl_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
4648         return sv;
4649     }
4650     tsv = SvRV(sv);
4651     Perl_sv_add_backref(aTHX_ tsv, sv);
4652     SvWEAKREF_on(sv);
4653     SvREFCNT_dec(tsv);
4654     return sv;
4655 }
4656
4657 /* Give tsv backref magic if it hasn't already got it, then push a
4658  * back-reference to sv onto the array associated with the backref magic.
4659  */
4660
4661 void
4662 Perl_sv_add_backref(pTHX_ SV *tsv, SV *sv)
4663 {
4664     dVAR;
4665     AV *av;
4666
4667     if (SvTYPE(tsv) == SVt_PVHV) {
4668         AV **const avp = Perl_hv_backreferences_p(aTHX_ (HV*)tsv);
4669
4670         av = *avp;
4671         if (!av) {
4672             /* There is no AV in the offical place - try a fixup.  */
4673             MAGIC *const mg = mg_find(tsv, PERL_MAGIC_backref);
4674
4675             if (mg) {
4676                 /* Aha. They've got it stowed in magic.  Bring it back.  */
4677                 av = (AV*)mg->mg_obj;
4678                 /* Stop mg_free decreasing the refernce count.  */
4679                 mg->mg_obj = NULL;
4680                 /* Stop mg_free even calling the destructor, given that
4681                    there's no AV to free up.  */
4682                 mg->mg_virtual = 0;
4683                 sv_unmagic(tsv, PERL_MAGIC_backref);
4684             } else {
4685                 av = newAV();
4686                 AvREAL_off(av);
4687                 SvREFCNT_inc_simple_void(av);
4688             }
4689             *avp = av;
4690         }
4691     } else {
4692         const MAGIC *const mg
4693             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
4694         if (mg)
4695             av = (AV*)mg->mg_obj;
4696         else {
4697             av = newAV();
4698             AvREAL_off(av);
4699             sv_magic(tsv, (SV*)av, PERL_MAGIC_backref, NULL, 0);
4700             /* av now has a refcnt of 2, which avoids it getting freed
4701              * before us during global cleanup. The extra ref is removed
4702              * by magic_killbackrefs() when tsv is being freed */
4703         }
4704     }
4705     if (AvFILLp(av) >= AvMAX(av)) {
4706         av_extend(av, AvFILLp(av)+1);
4707     }
4708     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
4709 }
4710
4711 /* delete a back-reference to ourselves from the backref magic associated
4712  * with the SV we point to.
4713  */
4714
4715 STATIC void
4716 S_sv_del_backref(pTHX_ SV *tsv, SV *sv)
4717 {
4718     dVAR;
4719     AV *av = NULL;
4720     SV **svp;
4721     I32 i;
4722
4723     if (SvTYPE(tsv) == SVt_PVHV && SvOOK(tsv)) {
4724         av = *Perl_hv_backreferences_p(aTHX_ (HV*)tsv);
4725         /* We mustn't attempt to "fix up" the hash here by moving the
4726            backreference array back to the hv_aux structure, as that is stored
4727            in the main HvARRAY(), and hfreentries assumes that no-one
4728            reallocates HvARRAY() while it is running.  */
4729     }
4730     if (!av) {
4731         const MAGIC *const mg
4732             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
4733         if (mg)
4734             av = (AV *)mg->mg_obj;
4735     }
4736     if (!av) {
4737         if (PL_in_clean_all)
4738             return;
4739         Perl_croak(aTHX_ "panic: del_backref");
4740     }
4741
4742     if (SvIS_FREED(av))
4743         return;
4744
4745     svp = AvARRAY(av);
4746     /* We shouldn't be in here more than once, but for paranoia reasons lets
4747        not assume this.  */
4748     for (i = AvFILLp(av); i >= 0; i--) {
4749         if (svp[i] == sv) {
4750             const SSize_t fill = AvFILLp(av);
4751             if (i != fill) {
4752                 /* We weren't the last entry.
4753                    An unordered list has this property that you can take the
4754                    last element off the end to fill the hole, and it's still
4755                    an unordered list :-)
4756                 */
4757                 svp[i] = svp[fill];
4758             }
4759             svp[fill] = NULL;
4760             AvFILLp(av) = fill - 1;
4761         }
4762     }
4763 }
4764
4765 int
4766 Perl_sv_kill_backrefs(pTHX_ SV *sv, AV *av)
4767 {
4768     SV **svp = AvARRAY(av);
4769
4770     PERL_UNUSED_ARG(sv);
4771
4772     /* Not sure why the av can get freed ahead of its sv, but somehow it does
4773        in ext/B/t/bytecode.t test 15 (involving print <DATA>)  */
4774     if (svp && !SvIS_FREED(av)) {
4775         SV *const *const last = svp + AvFILLp(av);
4776
4777         while (svp <= last) {
4778             if (*svp) {
4779                 SV *const referrer = *svp;
4780                 if (SvWEAKREF(referrer)) {
4781                     /* XXX Should we check that it hasn't changed? */
4782                     SvRV_set(referrer, 0);
4783                     SvOK_off(referrer);
4784                     SvWEAKREF_off(referrer);
4785                 } else if (SvTYPE(referrer) == SVt_PVGV ||
4786                            SvTYPE(referrer) == SVt_PVLV) {
4787                     /* You lookin' at me?  */
4788                     assert(GvSTASH(referrer));
4789                     assert(GvSTASH(referrer) == (HV*)sv);
4790                     GvSTASH(referrer) = 0;
4791                 } else {
4792                     Perl_croak(aTHX_
4793                                "panic: magic_killbackrefs (flags=%"UVxf")",
4794                                (UV)SvFLAGS(referrer));
4795                 }
4796
4797                 *svp = NULL;
4798             }
4799             svp++;
4800         }
4801     }
4802     SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
4803     return 0;
4804 }
4805
4806 /*
4807 =for apidoc sv_insert
4808
4809 Inserts a string at the specified offset/length within the SV. Similar to
4810 the Perl substr() function.
4811
4812 =cut
4813 */
4814
4815 void
4816 Perl_sv_insert(pTHX_ SV *bigstr, STRLEN offset, STRLEN len, const char *little, STRLEN littlelen)
4817 {
4818     dVAR;
4819     register char *big;
4820     register char *mid;
4821     register char *midend;
4822     register char *bigend;
4823     register I32 i;
4824     STRLEN curlen;
4825
4826
4827     if (!bigstr)
4828         Perl_croak(aTHX_ "Can't modify non-existent substring");
4829     SvPV_force(bigstr, curlen);
4830     (void)SvPOK_only_UTF8(bigstr);
4831     if (offset + len > curlen) {
4832         SvGROW(bigstr, offset+len+1);
4833         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
4834         SvCUR_set(bigstr, offset+len);
4835     }
4836
4837     SvTAINT(bigstr);
4838     i = littlelen - len;
4839     if (i > 0) {                        /* string might grow */
4840         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
4841         mid = big + offset + len;
4842         midend = bigend = big + SvCUR(bigstr);
4843         bigend += i;
4844         *bigend = '\0';
4845         while (midend > mid)            /* shove everything down */
4846             *--bigend = *--midend;
4847         Move(little,big+offset,littlelen,char);
4848         SvCUR_set(bigstr, SvCUR(bigstr) + i);
4849         SvSETMAGIC(bigstr);
4850         return;
4851     }
4852     else if (i == 0) {
4853         Move(little,SvPVX(bigstr)+offset,len,char);
4854         SvSETMAGIC(bigstr);
4855         return;
4856     }
4857
4858     big = SvPVX(bigstr);
4859     mid = big + offset;
4860     midend = mid + len;
4861     bigend = big + SvCUR(bigstr);
4862
4863     if (midend > bigend)
4864         Perl_croak(aTHX_ "panic: sv_insert");
4865
4866     if (mid - big > bigend - midend) {  /* faster to shorten from end */
4867         if (littlelen) {
4868             Move(little, mid, littlelen,char);
4869             mid += littlelen;
4870         }
4871         i = bigend - midend;
4872         if (i > 0) {
4873             Move(midend, mid, i,char);
4874             mid += i;
4875         }
4876         *mid = '\0';
4877         SvCUR_set(bigstr, mid - big);
4878     }
4879     else if ((i = mid - big)) { /* faster from front */
4880         midend -= littlelen;
4881         mid = midend;
4882         sv_chop(bigstr,midend-i);
4883         big += i;
4884         while (i--)
4885             *--midend = *--big;
4886         if (littlelen)
4887             Move(little, mid, littlelen,char);
4888     }
4889     else if (littlelen) {
4890         midend -= littlelen;
4891         sv_chop(bigstr,midend);
4892         Move(little,midend,littlelen,char);
4893     }
4894     else {
4895         sv_chop(bigstr,midend);
4896     }
4897     SvSETMAGIC(bigstr);
4898 }
4899
4900 /*
4901 =for apidoc sv_replace
4902
4903 Make the first argument a copy of the second, then delete the original.
4904 The target SV physically takes over ownership of the body of the source SV
4905 and inherits its flags; however, the target keeps any magic it owns,
4906 and any magic in the source is discarded.
4907 Note that this is a rather specialist SV copying operation; most of the
4908 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
4909
4910 =cut
4911 */
4912
4913 void
4914 Perl_sv_replace(pTHX_ register SV *sv, register SV *nsv)
4915 {
4916     dVAR;
4917     const U32 refcnt = SvREFCNT(sv);
4918     SV_CHECK_THINKFIRST_COW_DROP(sv);
4919     if (SvREFCNT(nsv) != 1) {
4920         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace() (%"
4921                    UVuf " != 1)", (UV) SvREFCNT(nsv));
4922     }
4923     if (SvMAGICAL(sv)) {
4924         if (SvMAGICAL(nsv))
4925             mg_free(nsv);
4926         else
4927             sv_upgrade(nsv, SVt_PVMG);
4928         SvMAGIC_set(nsv, SvMAGIC(sv));
4929         SvFLAGS(nsv) |= SvMAGICAL(sv);
4930         SvMAGICAL_off(sv);
4931         SvMAGIC_set(sv, NULL);
4932     }
4933     SvREFCNT(sv) = 0;
4934     sv_clear(sv);
4935     assert(!SvREFCNT(sv));
4936 #ifdef DEBUG_LEAKING_SCALARS
4937     sv->sv_flags  = nsv->sv_flags;
4938     sv->sv_any    = nsv->sv_any;
4939     sv->sv_refcnt = nsv->sv_refcnt;
4940     sv->sv_u      = nsv->sv_u;
4941 #else
4942     StructCopy(nsv,sv,SV);
4943 #endif
4944     /* Currently could join these into one piece of pointer arithmetic, but
4945        it would be unclear.  */
4946     if(SvTYPE(sv) == SVt_IV)
4947         SvANY(sv)
4948             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
4949     else if (SvTYPE(sv) == SVt_RV) {
4950         SvANY(sv) = &sv->sv_u.svu_rv;
4951     }
4952         
4953
4954 #ifdef PERL_OLD_COPY_ON_WRITE
4955     if (SvIsCOW_normal(nsv)) {
4956         /* We need to follow the pointers around the loop to make the
4957            previous SV point to sv, rather than nsv.  */
4958         SV *next;
4959         SV *current = nsv;
4960         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
4961             assert(next);
4962             current = next;
4963             assert(SvPVX_const(current) == SvPVX_const(nsv));
4964         }
4965         /* Make the SV before us point to the SV after us.  */
4966         if (DEBUG_C_TEST) {
4967             PerlIO_printf(Perl_debug_log, "previous is\n");
4968             sv_dump(current);
4969             PerlIO_printf(Perl_debug_log,
4970                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
4971                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
4972         }
4973         SV_COW_NEXT_SV_SET(current, sv);
4974     }
4975 #endif
4976     SvREFCNT(sv) = refcnt;
4977     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
4978     SvREFCNT(nsv) = 0;
4979     del_SV(nsv);
4980 }
4981
4982 /*
4983 =for apidoc sv_clear
4984
4985 Clear an SV: call any destructors, free up any memory used by the body,
4986 and free the body itself. The SV's head is I<not> freed, although
4987 its type is set to all 1's so that it won't inadvertently be assumed
4988 to be live during global destruction etc.
4989 This function should only be called when REFCNT is zero. Most of the time
4990 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
4991 instead.
4992
4993 =cut
4994 */
4995
4996 void
4997 Perl_sv_clear(pTHX_ register SV *sv)
4998 {
4999     dVAR;
5000     const U32 type = SvTYPE(sv);
5001     const struct body_details *const sv_type_details
5002         = bodies_by_type + type;
5003
5004     assert(sv);
5005     assert(SvREFCNT(sv) == 0);
5006
5007     if (type <= SVt_IV) {
5008         /* See the comment in sv.h about the collusion between this early
5009            return and the overloading of the NULL and IV slots in the size
5010            table.  */
5011         return;
5012     }
5013
5014     if (SvOBJECT(sv)) {
5015         if (PL_defstash) {              /* Still have a symbol table? */
5016             dSP;
5017             HV* stash;
5018             do {        
5019                 CV* destructor;
5020                 stash = SvSTASH(sv);
5021                 destructor = StashHANDLER(stash,DESTROY);
5022                 if (destructor) {
5023                     SV* const tmpref = newRV(sv);
5024                     SvREADONLY_on(tmpref);   /* DESTROY() could be naughty */
5025                     ENTER;
5026                     PUSHSTACKi(PERLSI_DESTROY);
5027                     EXTEND(SP, 2);
5028                     PUSHMARK(SP);
5029                     PUSHs(tmpref);
5030                     PUTBACK;
5031                     call_sv((SV*)destructor, G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
5032                 
5033                 
5034                     POPSTACK;
5035                     SPAGAIN;
5036                     LEAVE;
5037                     if(SvREFCNT(tmpref) < 2) {
5038                         /* tmpref is not kept alive! */
5039                         SvREFCNT(sv)--;
5040                         SvRV_set(tmpref, NULL);
5041                         SvROK_off(tmpref);
5042                     }
5043                     SvREFCNT_dec(tmpref);
5044                 }
5045             } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
5046
5047
5048             if (SvREFCNT(sv)) {
5049                 if (PL_in_clean_objs)
5050                     Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
5051                           HvNAME_get(stash));
5052                 /* DESTROY gave object new lease on life */
5053                 return;
5054             }
5055         }
5056
5057         if (SvOBJECT(sv)) {
5058             SvREFCNT_dec(SvSTASH(sv));  /* possibly of changed persuasion */
5059             SvOBJECT_off(sv);   /* Curse the object. */
5060             if (type != SVt_PVIO)
5061                 --PL_sv_objcount;       /* XXX Might want something more general */
5062         }
5063     }
5064     if (type >= SVt_PVMG) {
5065         HV *ourstash;
5066         if ((type == SVt_PVMG || type == SVt_PVGV) &&
5067             (ourstash = OURSTASH(sv))) {
5068             SvREFCNT_dec(ourstash);
5069         } else if (SvMAGIC(sv))
5070             mg_free(sv);
5071         if (type == SVt_PVMG && SvPAD_TYPED(sv))
5072             SvREFCNT_dec(SvSTASH(sv));
5073     }
5074     switch (type) {
5075     case SVt_PVIO:
5076         if (IoIFP(sv) &&
5077             IoIFP(sv) != PerlIO_stdin() &&
5078             IoIFP(sv) != PerlIO_stdout() &&
5079             IoIFP(sv) != PerlIO_stderr())
5080         {
5081             io_close((IO*)sv, FALSE);
5082         }
5083         if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5084             PerlDir_close(IoDIRP(sv));
5085         IoDIRP(sv) = (DIR*)NULL;
5086         Safefree(IoTOP_NAME(sv));
5087         Safefree(IoFMT_NAME(sv));
5088         Safefree(IoBOTTOM_NAME(sv));
5089         goto freescalar;
5090     case SVt_PVBM:
5091         goto freescalar;
5092     case SVt_PVCV:
5093     case SVt_PVFM:
5094         cv_undef((CV*)sv);
5095         goto freescalar;
5096     case SVt_PVHV:
5097         Perl_hv_kill_backrefs(aTHX_ (HV*)sv);
5098         hv_undef((HV*)sv);
5099         break;
5100     case SVt_PVAV:
5101         av_undef((AV*)sv);
5102         break;
5103     case SVt_PVLV:
5104         if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
5105             SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
5106             HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
5107             PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
5108         }
5109         else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
5110             SvREFCNT_dec(LvTARG(sv));
5111         goto freescalar;
5112     case SVt_PVGV:
5113         gp_free((GV*)sv);
5114         if (GvNAME_HEK(sv)) {
5115             unshare_hek(GvNAME_HEK(sv));
5116         }
5117         /* If we're in a stash, we don't own a reference to it. However it does
5118            have a back reference to us, which needs to be cleared.  */
5119         if (GvSTASH(sv))
5120             sv_del_backref((SV*)GvSTASH(sv), sv);
5121     case SVt_PVMG:
5122     case SVt_PVNV:
5123     case SVt_PVIV:
5124       freescalar:
5125         /* Don't bother with SvOOK_off(sv); as we're only going to free it.  */
5126         if (SvOOK(sv)) {
5127             SvPV_set(sv, SvPVX_mutable(sv) - SvIVX(sv));
5128             /* Don't even bother with turning off the OOK flag.  */
5129         }
5130     case SVt_PV:
5131     case SVt_RV:
5132         if (SvROK(sv)) {
5133             SV * const target = SvRV(sv);
5134             if (SvWEAKREF(sv))
5135                 sv_del_backref(target, sv);
5136             else
5137                 SvREFCNT_dec(target);
5138         }
5139 #ifdef PERL_OLD_COPY_ON_WRITE
5140         else if (SvPVX_const(sv)) {
5141             if (SvIsCOW(sv)) {
5142                 /* I believe I need to grab the global SV mutex here and
5143                    then recheck the COW status.  */
5144                 if (DEBUG_C_TEST) {
5145                     PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
5146                     sv_dump(sv);
5147                 }
5148                 sv_release_COW(sv, SvPVX_const(sv), SvLEN(sv),
5149                                SV_COW_NEXT_SV(sv));
5150                 /* And drop it here.  */
5151                 SvFAKE_off(sv);
5152             } else if (SvLEN(sv)) {
5153                 Safefree(SvPVX_const(sv));
5154             }
5155         }
5156 #else
5157         else if (SvPVX_const(sv) && SvLEN(sv))
5158             Safefree(SvPVX_mutable(sv));
5159         else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
5160             unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5161             SvFAKE_off(sv);
5162         }
5163 #endif
5164         break;
5165     case SVt_NV:
5166         break;
5167     }
5168
5169     SvFLAGS(sv) &= SVf_BREAK;
5170     SvFLAGS(sv) |= SVTYPEMASK;
5171
5172     if (sv_type_details->arena) {
5173         del_body(((char *)SvANY(sv) + sv_type_details->offset),
5174                  &PL_body_roots[type]);
5175     }
5176     else if (sv_type_details->body_size) {
5177         my_safefree(SvANY(sv));
5178     }
5179 }
5180
5181 /*
5182 =for apidoc sv_newref
5183
5184 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5185 instead.
5186
5187 =cut
5188 */
5189
5190 SV *
5191 Perl_sv_newref(pTHX_ SV *sv)
5192 {
5193     PERL_UNUSED_CONTEXT;
5194     if (sv)
5195         (SvREFCNT(sv))++;
5196     return sv;
5197 }
5198
5199 /*
5200 =for apidoc sv_free
5201
5202 Decrement an SV's reference count, and if it drops to zero, call
5203 C<sv_clear> to invoke destructors and free up any memory used by
5204 the body; finally, deallocate the SV's head itself.
5205 Normally called via a wrapper macro C<SvREFCNT_dec>.
5206
5207 =cut
5208 */
5209
5210 void
5211 Perl_sv_free(pTHX_ SV *sv)
5212 {
5213     dVAR;
5214     if (!sv)
5215         return;
5216     if (SvREFCNT(sv) == 0) {
5217         if (SvFLAGS(sv) & SVf_BREAK)
5218             /* this SV's refcnt has been artificially decremented to
5219              * trigger cleanup */
5220             return;
5221         if (PL_in_clean_all) /* All is fair */
5222             return;
5223         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5224             /* make sure SvREFCNT(sv)==0 happens very seldom */
5225             SvREFCNT(sv) = (~(U32)0)/2;
5226             return;
5227         }
5228         if (ckWARN_d(WARN_INTERNAL)) {
5229             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
5230                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
5231                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
5232 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
5233             Perl_dump_sv_child(aTHX_ sv);
5234 #endif
5235         }
5236         return;
5237     }
5238     if (--(SvREFCNT(sv)) > 0)
5239         return;
5240     Perl_sv_free2(aTHX_ sv);
5241 }
5242
5243 void
5244 Perl_sv_free2(pTHX_ SV *sv)
5245 {
5246     dVAR;
5247 #ifdef DEBUGGING
5248     if (SvTEMP(sv)) {
5249         if (ckWARN_d(WARN_DEBUGGING))
5250             Perl_warner(aTHX_ packWARN(WARN_DEBUGGING),
5251                         "Attempt to free temp prematurely: SV 0x%"UVxf
5252                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
5253         return;
5254     }
5255 #endif
5256     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5257         /* make sure SvREFCNT(sv)==0 happens very seldom */
5258         SvREFCNT(sv) = (~(U32)0)/2;
5259         return;
5260     }
5261     sv_clear(sv);
5262     if (! SvREFCNT(sv))
5263         del_SV(sv);
5264 }
5265
5266 /*
5267 =for apidoc sv_len
5268
5269 Returns the length of the string in the SV. Handles magic and type
5270 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
5271
5272 =cut
5273 */
5274
5275 STRLEN
5276 Perl_sv_len(pTHX_ register SV *sv)
5277 {
5278     STRLEN len;
5279
5280     if (!sv)
5281         return 0;
5282
5283     if (SvGMAGICAL(sv))
5284         len = mg_length(sv);
5285     else
5286         (void)SvPV_const(sv, len);
5287     return len;
5288 }
5289
5290 /*
5291 =for apidoc sv_len_utf8
5292
5293 Returns the number of characters in the string in an SV, counting wide
5294 UTF-8 bytes as a single character. Handles magic and type coercion.
5295
5296 =cut
5297 */
5298
5299 /*
5300  * The length is cached in PERL_UTF8_magic, in the mg_len field.  Also the
5301  * mg_ptr is used, by sv_pos_u2b(), see the comments of S_utf8_mg_pos_init().
5302  * (Note that the mg_len is not the length of the mg_ptr field.)
5303  *
5304  */
5305
5306 STRLEN
5307 Perl_sv_len_utf8(pTHX_ register SV *sv)
5308 {
5309     if (!sv)
5310         return 0;
5311
5312     if (SvGMAGICAL(sv))
5313         return mg_length(sv);
5314     else
5315     {
5316         STRLEN len, ulen;
5317         const U8 *s = (U8*)SvPV_const(sv, len);
5318         MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : 0;
5319
5320         if (mg && mg->mg_len != -1 && (mg->mg_len > 0 || len == 0)) {
5321             ulen = mg->mg_len;
5322 #ifdef PERL_UTF8_CACHE_ASSERT
5323             assert(ulen == Perl_utf8_length(aTHX_ s, s + len));
5324 #endif
5325         }
5326         else {
5327             ulen = Perl_utf8_length(aTHX_ s, s + len);
5328             if (!mg && !SvREADONLY(sv)) {
5329                 sv_magic(sv, 0, PERL_MAGIC_utf8, 0, 0);
5330                 mg = mg_find(sv, PERL_MAGIC_utf8);
5331                 assert(mg);
5332             }
5333             if (mg)
5334                 mg->mg_len = ulen;
5335         }
5336         return ulen;
5337     }
5338 }
5339
5340 /* S_utf8_mg_pos_init() is used to initialize the mg_ptr field of
5341  * a PERL_UTF8_magic.  The mg_ptr is used to store the mapping
5342  * between UTF-8 and byte offsets.  There are two (substr offset and substr
5343  * length, the i offset, PERL_MAGIC_UTF8_CACHESIZE) times two (UTF-8 offset
5344  * and byte offset) cache positions.
5345  *
5346  * The mg_len field is used by sv_len_utf8(), see its comments.
5347  * Note that the mg_len is not the length of the mg_ptr field.
5348  *
5349  */
5350 STATIC bool
5351 S_utf8_mg_pos_init(pTHX_ SV *sv, MAGIC **mgp, STRLEN **cachep, I32 i,
5352                    I32 offsetp, const U8 *s, const U8 *start)
5353 {
5354     bool found = FALSE;
5355
5356     if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
5357         if (!*mgp)
5358             *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0, 0);
5359         assert(*mgp);
5360
5361         if ((*mgp)->mg_ptr)
5362             *cachep = (STRLEN *) (*mgp)->mg_ptr;
5363         else {
5364             Newxz(*cachep, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
5365             (*mgp)->mg_ptr = (char *) *cachep;
5366         }
5367         assert(*cachep);
5368
5369         (*cachep)[i]   = offsetp;
5370         (*cachep)[i+1] = s - start;
5371         found = TRUE;
5372     }
5373
5374     return found;
5375 }
5376
5377 /*
5378  * S_utf8_mg_pos() is used to query and update mg_ptr field of
5379  * a PERL_UTF8_magic.  The mg_ptr is used to store the mapping
5380  * between UTF-8 and byte offsets.  See also the comments of
5381  * S_utf8_mg_pos_init().
5382  *
5383  */
5384 STATIC bool
5385 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)
5386 {
5387     bool found = FALSE;
5388
5389     if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
5390         if (!*mgp)
5391             *mgp = mg_find(sv, PERL_MAGIC_utf8);
5392         if (*mgp && (*mgp)->mg_ptr) {
5393             *cachep = (STRLEN *) (*mgp)->mg_ptr;
5394             ASSERT_UTF8_CACHE(*cachep);
5395             if ((*cachep)[i] == (STRLEN)uoff)   /* An exact match. */
5396                  found = TRUE;
5397             else {                      /* We will skip to the right spot. */
5398                  STRLEN forw  = 0;
5399                  STRLEN backw = 0;
5400                  const U8* p = NULL;
5401
5402                  /* The assumption is that going backward is half
5403                   * the speed of going forward (that's where the
5404                   * 2 * backw in the below comes from).  (The real
5405                   * figure of course depends on the UTF-8 data.) */
5406
5407                  if ((*cachep)[i] > (STRLEN)uoff) {
5408                       forw  = uoff;
5409                       backw = (*cachep)[i] - (STRLEN)uoff;
5410
5411                       if (forw < 2 * backw)
5412                            p = start;
5413                       else
5414                            p = start + (*cachep)[i+1];
5415                  }
5416                  /* Try this only for the substr offset (i == 0),
5417                   * not for the substr length (i == 2). */
5418                  else if (i == 0) { /* (*cachep)[i] < uoff */
5419                       const STRLEN ulen = sv_len_utf8(sv);
5420
5421                       if ((STRLEN)uoff < ulen) {
5422                            forw  = (STRLEN)uoff - (*cachep)[i];
5423                            backw = ulen - (STRLEN)uoff;
5424
5425                            if (forw < 2 * backw)
5426                                 p = start + (*cachep)[i+1];
5427                            else
5428                                 p = send;
5429                       }
5430
5431                       /* If the string is not long enough for uoff,
5432                        * we could extend it, but not at this low a level. */
5433                  }
5434
5435                  if (p) {
5436                       if (forw < 2 * backw) {
5437                            while (forw--)
5438                                 p += UTF8SKIP(p);
5439                       }
5440                       else {
5441                            while (backw--) {
5442                                 p--;
5443                                 while (UTF8_IS_CONTINUATION(*p))
5444                                      p--;
5445                            }
5446                       }
5447
5448                       /* Update the cache. */
5449                       (*cachep)[i]   = (STRLEN)uoff;
5450                       (*cachep)[i+1] = p - start;
5451
5452                       /* Drop the stale "length" cache */
5453                       if (i == 0) {
5454                           (*cachep)[2] = 0;
5455                           (*cachep)[3] = 0;
5456                       }
5457
5458                       found = TRUE;
5459                  }
5460             }
5461             if (found) {        /* Setup the return values. */
5462                  *offsetp = (*cachep)[i+1];
5463                  *sp = start + *offsetp;
5464                  if (*sp >= send) {
5465                       *sp = send;
5466                       *offsetp = send - start;
5467                  }
5468                  else if (*sp < start) {
5469                       *sp = start;
5470                       *offsetp = 0;
5471                  }
5472             }
5473         }
5474 #ifdef PERL_UTF8_CACHE_ASSERT
5475         if (found) {
5476              U8 *s = start;
5477              I32 n = uoff;
5478
5479              while (n-- && s < send)
5480                   s += UTF8SKIP(s);
5481
5482              if (i == 0) {
5483                   assert(*offsetp == s - start);
5484                   assert((*cachep)[0] == (STRLEN)uoff);
5485                   assert((*cachep)[1] == *offsetp);
5486              }
5487              ASSERT_UTF8_CACHE(*cachep);
5488         }
5489 #endif
5490     }
5491
5492     return found;
5493 }
5494
5495 /*
5496 =for apidoc sv_pos_u2b
5497
5498 Converts the value pointed to by offsetp from a count of UTF-8 chars from
5499 the start of the string, to a count of the equivalent number of bytes; if
5500 lenp is non-zero, it does the same to lenp, but this time starting from
5501 the offset, rather than from the start of the string. Handles magic and
5502 type coercion.
5503
5504 =cut
5505 */
5506
5507 /*
5508  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
5509  * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
5510  * byte offsets.  See also the comments of S_utf8_mg_pos().
5511  *
5512  */
5513
5514 void
5515 Perl_sv_pos_u2b(pTHX_ register SV *sv, I32* offsetp, I32* lenp)
5516 {
5517     const U8 *start;
5518     STRLEN len;
5519
5520     if (!sv)
5521         return;
5522
5523     start = (U8*)SvPV_const(sv, len);
5524     if (len) {
5525         STRLEN boffset = 0;
5526         STRLEN *cache = NULL;
5527         const U8 *s = start;
5528         I32 uoffset = *offsetp;
5529         const U8 * const send = s + len;
5530         MAGIC *mg = NULL;
5531         bool found = utf8_mg_pos(sv, &mg, &cache, 0, offsetp, *offsetp, &s, start, send);
5532
5533          if (!found && uoffset > 0) {
5534               while (s < send && uoffset--)
5535                    s += UTF8SKIP(s);
5536               if (s >= send)
5537                    s = send;
5538               if (utf8_mg_pos_init(sv, &mg, &cache, 0, *offsetp, s, start))
5539                   boffset = cache[1];
5540               *offsetp = s - start;
5541          }
5542          if (lenp) {
5543               found = FALSE;
5544               start = s;
5545               if (utf8_mg_pos(sv, &mg, &cache, 2, lenp, *lenp, &s, start, send)) {
5546                   *lenp -= boffset;
5547                   found = TRUE;
5548               }
5549               if (!found && *lenp > 0) {
5550                    I32 ulen = *lenp;
5551                    if (ulen > 0)
5552                         while (s < send && ulen--)
5553                              s += UTF8SKIP(s);
5554                    if (s >= send)
5555                         s = send;
5556                    utf8_mg_pos_init(sv, &mg, &cache, 2, *lenp, s, start);
5557               }
5558               *lenp = s - start;
5559          }
5560          ASSERT_UTF8_CACHE(cache);
5561     }
5562     else {
5563          *offsetp = 0;
5564          if (lenp)
5565               *lenp = 0;
5566     }
5567
5568     return;
5569 }
5570
5571 /*
5572 =for apidoc sv_pos_b2u
5573
5574 Converts the value pointed to by offsetp from a count of bytes from the
5575 start of the string, to a count of the equivalent number of UTF-8 chars.
5576 Handles magic and type coercion.
5577
5578 =cut
5579 */
5580
5581 /*
5582  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
5583  * PERL_UTF8_magic of the sv to store the mapping between UTF-8 and
5584  * byte offsets.  See also the comments of S_utf8_mg_pos().
5585  *
5586  */
5587
5588 void
5589 Perl_sv_pos_b2u(pTHX_ register SV* sv, I32* offsetp)
5590 {
5591     const U8* s;
5592     STRLEN len;
5593
5594     if (!sv)
5595         return;
5596
5597     s = (const U8*)SvPV_const(sv, len);
5598     if ((I32)len < *offsetp)
5599         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
5600     else {
5601         const U8* send = s + *offsetp;
5602         MAGIC* mg = NULL;
5603         STRLEN *cache = NULL;
5604
5605         len = 0;
5606
5607         if (SvMAGICAL(sv) && !SvREADONLY(sv)) {
5608             mg = mg_find(sv, PERL_MAGIC_utf8);
5609             if (mg && mg->mg_ptr) {
5610                 cache = (STRLEN *) mg->mg_ptr;
5611                 if (cache[1] == (STRLEN)*offsetp) {
5612                     /* An exact match. */
5613                     *offsetp = cache[0];
5614
5615                     return;
5616                 }
5617                 else if (cache[1] < (STRLEN)*offsetp) {
5618                     /* We already know part of the way. */
5619                     len = cache[0];
5620                     s  += cache[1];
5621                     /* Let the below loop do the rest. */
5622                 }
5623                 else { /* cache[1] > *offsetp */
5624                     /* We already know all of the way, now we may
5625                      * be able to walk back.  The same assumption
5626                      * is made as in S_utf8_mg_pos(), namely that
5627                      * walking backward is twice slower than
5628                      * walking forward. */
5629                     const STRLEN forw  = *offsetp;
5630                     STRLEN backw = cache[1] - *offsetp;
5631
5632                     if (!(forw < 2 * backw)) {
5633                         const U8 *p = s + cache[1];
5634                         STRLEN ubackw = 0;
5635                         
5636                         cache[1] -= backw;
5637
5638                         while (backw--) {
5639                             p--;
5640                             while (UTF8_IS_CONTINUATION(*p)) {
5641                                 p--;
5642                                 backw--;
5643                             }
5644                             ubackw++;
5645                         }
5646
5647                         cache[0] -= ubackw;
5648                         *offsetp = cache[0];
5649
5650                         /* Drop the stale "length" cache */
5651                         cache[2] = 0;
5652                         cache[3] = 0;
5653
5654                         return;
5655                     }
5656                 }
5657             }
5658             ASSERT_UTF8_CACHE(cache);
5659         }
5660
5661         while (s < send) {
5662             STRLEN n = 1;
5663
5664             /* Call utf8n_to_uvchr() to validate the sequence
5665              * (unless a simple non-UTF character) */
5666             if (!UTF8_IS_INVARIANT(*s))
5667                 utf8n_to_uvchr(s, UTF8SKIP(s), &n, 0);
5668             if (n > 0) {
5669                 s += n;
5670                 len++;
5671             }
5672             else
5673                 break;
5674         }
5675
5676         if (!SvREADONLY(sv)) {
5677             if (!mg) {
5678                 sv_magic(sv, 0, PERL_MAGIC_utf8, 0, 0);
5679                 mg = mg_find(sv, PERL_MAGIC_utf8);
5680             }
5681             assert(mg);
5682
5683             if (!mg->mg_ptr) {
5684                 Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
5685                 mg->mg_ptr = (char *) cache;
5686             }
5687             assert(cache);
5688
5689             cache[0] = len;
5690             cache[1] = *offsetp;
5691             /* Drop the stale "length" cache */
5692             cache[2] = 0;
5693             cache[3] = 0;
5694         }
5695
5696         *offsetp = len;
5697     }
5698     return;
5699 }
5700
5701 /*
5702 =for apidoc sv_eq
5703
5704 Returns a boolean indicating whether the strings in the two SVs are
5705 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5706 coerce its args to strings if necessary.
5707
5708 =cut
5709 */
5710
5711 I32
5712 Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2)
5713 {
5714     dVAR;
5715     const char *pv1;
5716     STRLEN cur1;
5717     const char *pv2;
5718     STRLEN cur2;
5719     I32  eq     = 0;
5720     char *tpv   = NULL;
5721     SV* svrecode = NULL;
5722
5723     if (!sv1) {
5724         pv1 = "";
5725         cur1 = 0;
5726     }
5727     else
5728         pv1 = SvPV_const(sv1, cur1);
5729
5730     if (!sv2){
5731         pv2 = "";
5732         cur2 = 0;
5733     }
5734     else
5735         pv2 = SvPV_const(sv2, cur2);
5736
5737     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
5738         /* Differing utf8ness.
5739          * Do not UTF8size the comparands as a side-effect. */
5740          if (PL_encoding) {
5741               if (SvUTF8(sv1)) {
5742                    svrecode = newSVpvn(pv2, cur2);
5743                    sv_recode_to_utf8(svrecode, PL_encoding);
5744                    pv2 = SvPV_const(svrecode, cur2);
5745               }
5746               else {
5747                    svrecode = newSVpvn(pv1, cur1);
5748                    sv_recode_to_utf8(svrecode, PL_encoding);
5749                    pv1 = SvPV_const(svrecode, cur1);
5750               }
5751               /* Now both are in UTF-8. */
5752               if (cur1 != cur2) {
5753                    SvREFCNT_dec(svrecode);
5754                    return FALSE;
5755               }
5756          }
5757          else {
5758               bool is_utf8 = TRUE;
5759
5760               if (SvUTF8(sv1)) {
5761                    /* sv1 is the UTF-8 one,
5762                     * if is equal it must be downgrade-able */
5763                    char * const pv = (char*)bytes_from_utf8((const U8*)pv1,
5764                                                      &cur1, &is_utf8);
5765                    if (pv != pv1)
5766                         pv1 = tpv = pv;
5767               }
5768               else {
5769                    /* sv2 is the UTF-8 one,
5770                     * if is equal it must be downgrade-able */
5771                    char * const pv = (char *)bytes_from_utf8((const U8*)pv2,
5772                                                       &cur2, &is_utf8);
5773                    if (pv != pv2)
5774                         pv2 = tpv = pv;
5775               }
5776               if (is_utf8) {
5777                    /* Downgrade not possible - cannot be eq */
5778                    assert (tpv == 0);
5779                    return FALSE;
5780               }
5781          }
5782     }
5783
5784     if (cur1 == cur2)
5785         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
5786         
5787     SvREFCNT_dec(svrecode);
5788     if (tpv)
5789         Safefree(tpv);
5790
5791     return eq;
5792 }
5793
5794 /*
5795 =for apidoc sv_cmp
5796
5797 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
5798 string in C<sv1> is less than, equal to, or greater than the string in
5799 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5800 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
5801
5802 =cut
5803 */
5804
5805 I32
5806 Perl_sv_cmp(pTHX_ register SV *sv1, register SV *sv2)
5807 {
5808     dVAR;
5809     STRLEN cur1, cur2;
5810     const char *pv1, *pv2;
5811     char *tpv = NULL;
5812     I32  cmp;
5813     SV *svrecode = NULL;
5814
5815     if (!sv1) {
5816         pv1 = "";
5817         cur1 = 0;
5818     }
5819     else
5820         pv1 = SvPV_const(sv1, cur1);
5821
5822     if (!sv2) {
5823         pv2 = "";
5824         cur2 = 0;
5825     }
5826     else
5827         pv2 = SvPV_const(sv2, cur2);
5828
5829     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
5830         /* Differing utf8ness.
5831          * Do not UTF8size the comparands as a side-effect. */
5832         if (SvUTF8(sv1)) {
5833             if (PL_encoding) {
5834                  svrecode = newSVpvn(pv2, cur2);
5835                  sv_recode_to_utf8(svrecode, PL_encoding);
5836                  pv2 = SvPV_const(svrecode, cur2);
5837             }
5838             else {
5839                  pv2 = tpv = (char*)bytes_to_utf8((const U8*)pv2, &cur2);
5840             }
5841         }
5842         else {
5843             if (PL_encoding) {
5844                  svrecode = newSVpvn(pv1, cur1);
5845                  sv_recode_to_utf8(svrecode, PL_encoding);
5846                  pv1 = SvPV_const(svrecode, cur1);
5847             }
5848             else {
5849                  pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
5850             }
5851         }
5852     }
5853
5854     if (!cur1) {
5855         cmp = cur2 ? -1 : 0;
5856     } else if (!cur2) {
5857         cmp = 1;
5858     } else {
5859         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
5860
5861         if (retval) {
5862             cmp = retval < 0 ? -1 : 1;
5863         } else if (cur1 == cur2) {
5864             cmp = 0;
5865         } else {
5866             cmp = cur1 < cur2 ? -1 : 1;
5867         }
5868     }
5869
5870     SvREFCNT_dec(svrecode);
5871     if (tpv)
5872         Safefree(tpv);
5873
5874     return cmp;
5875 }
5876
5877 /*
5878 =for apidoc sv_cmp_locale
5879
5880 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
5881 'use bytes' aware, handles get magic, and will coerce its args to strings
5882 if necessary.  See also C<sv_cmp_locale>.  See also C<sv_cmp>.
5883
5884 =cut
5885 */
5886
5887 I32
5888 Perl_sv_cmp_locale(pTHX_ register SV *sv1, register SV *sv2)
5889 {
5890     dVAR;
5891 #ifdef USE_LOCALE_COLLATE
5892
5893     char *pv1, *pv2;
5894     STRLEN len1, len2;
5895     I32 retval;
5896
5897     if (PL_collation_standard)
5898         goto raw_compare;
5899
5900     len1 = 0;
5901     pv1 = sv1 ? sv_collxfrm(sv1, &len1) : (char *) NULL;
5902     len2 = 0;
5903     pv2 = sv2 ? sv_collxfrm(sv2, &len2) : (char *) NULL;
5904
5905     if (!pv1 || !len1) {
5906         if (pv2 && len2)
5907             return -1;
5908         else
5909             goto raw_compare;
5910     }
5911     else {
5912         if (!pv2 || !len2)
5913             return 1;
5914     }
5915
5916     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
5917
5918     if (retval)
5919         return retval < 0 ? -1 : 1;
5920
5921     /*
5922      * When the result of collation is equality, that doesn't mean
5923      * that there are no differences -- some locales exclude some
5924      * characters from consideration.  So to avoid false equalities,
5925      * we use the raw string as a tiebreaker.
5926      */
5927
5928   raw_compare:
5929     /*FALLTHROUGH*/
5930
5931 #endif /* USE_LOCALE_COLLATE */
5932
5933     return sv_cmp(sv1, sv2);
5934 }
5935
5936
5937 #ifdef USE_LOCALE_COLLATE
5938
5939 /*
5940 =for apidoc sv_collxfrm
5941
5942 Add Collate Transform magic to an SV if it doesn't already have it.
5943
5944 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
5945 scalar data of the variable, but transformed to such a format that a normal
5946 memory comparison can be used to compare the data according to the locale
5947 settings.
5948
5949 =cut
5950 */
5951
5952 char *
5953 Perl_sv_collxfrm(pTHX_ SV *sv, STRLEN *nxp)
5954 {
5955     dVAR;
5956     MAGIC *mg;
5957
5958     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
5959     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
5960         const char *s;
5961         char *xf;
5962         STRLEN len, xlen;
5963
5964         if (mg)
5965             Safefree(mg->mg_ptr);
5966         s = SvPV_const(sv, len);
5967         if ((xf = mem_collxfrm(s, len, &xlen))) {
5968             if (SvREADONLY(sv)) {
5969                 SAVEFREEPV(xf);
5970                 *nxp = xlen;
5971                 return xf + sizeof(PL_collation_ix);
5972             }
5973             if (! mg) {
5974                 sv_magic(sv, 0, PERL_MAGIC_collxfrm, 0, 0);
5975                 mg = mg_find(sv, PERL_MAGIC_collxfrm);
5976                 assert(mg);
5977             }
5978             mg->mg_ptr = xf;
5979             mg->mg_len = xlen;
5980         }
5981         else {
5982             if (mg) {
5983                 mg->mg_ptr = NULL;
5984                 mg->mg_len = -1;
5985             }
5986         }
5987     }
5988     if (mg && mg->mg_ptr) {
5989         *nxp = mg->mg_len;
5990         return mg->mg_ptr + sizeof(PL_collation_ix);
5991     }
5992     else {
5993         *nxp = 0;
5994         return NULL;
5995     }
5996 }
5997
5998 #endif /* USE_LOCALE_COLLATE */
5999
6000 /*
6001 =for apidoc sv_gets
6002
6003 Get a line from the filehandle and store it into the SV, optionally
6004 appending to the currently-stored string.
6005
6006 =cut
6007 */
6008
6009 char *
6010 Perl_sv_gets(pTHX_ register SV *sv, register PerlIO *fp, I32 append)
6011 {
6012     dVAR;
6013     const char *rsptr;
6014     STRLEN rslen;
6015     register STDCHAR rslast;
6016     register STDCHAR *bp;
6017     register I32 cnt;
6018     I32 i = 0;
6019     I32 rspara = 0;
6020     I32 recsize;
6021
6022     if (SvTHINKFIRST(sv))
6023         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
6024     /* XXX. If you make this PVIV, then copy on write can copy scalars read
6025        from <>.
6026        However, perlbench says it's slower, because the existing swipe code
6027        is faster than copy on write.
6028        Swings and roundabouts.  */
6029     SvUPGRADE(sv, SVt_PV);
6030
6031     SvSCREAM_off(sv);
6032
6033     if (append) {
6034         if (PerlIO_isutf8(fp)) {
6035             if (!SvUTF8(sv)) {
6036                 sv_utf8_upgrade_nomg(sv);
6037                 sv_pos_u2b(sv,&append,0);
6038             }
6039         } else if (SvUTF8(sv)) {
6040             SV * const tsv = newSV(0);
6041             sv_gets(tsv, fp, 0);
6042             sv_utf8_upgrade_nomg(tsv);
6043             SvCUR_set(sv,append);
6044             sv_catsv(sv,tsv);
6045             sv_free(tsv);
6046             goto return_string_or_null;
6047         }
6048     }
6049
6050     SvPOK_only(sv);
6051     if (PerlIO_isutf8(fp))
6052         SvUTF8_on(sv);
6053
6054     if (IN_PERL_COMPILETIME) {
6055         /* we always read code in line mode */
6056         rsptr = "\n";
6057         rslen = 1;
6058     }
6059     else if (RsSNARF(PL_rs)) {
6060         /* If it is a regular disk file use size from stat() as estimate
6061            of amount we are going to read - may result in malloc-ing
6062            more memory than we realy need if layers bellow reduce
6063            size we read (e.g. CRLF or a gzip layer)
6064          */
6065         Stat_t st;
6066         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
6067             const Off_t offset = PerlIO_tell(fp);
6068             if (offset != (Off_t) -1 && st.st_size + append > offset) {
6069                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
6070             }
6071         }
6072         rsptr = NULL;
6073         rslen = 0;
6074     }
6075     else if (RsRECORD(PL_rs)) {
6076       I32 bytesread;
6077       char *buffer;
6078
6079       /* Grab the size of the record we're getting */
6080       recsize = SvIV(SvRV(PL_rs));
6081       buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
6082       /* Go yank in */
6083 #ifdef VMS
6084       /* VMS wants read instead of fread, because fread doesn't respect */
6085       /* RMS record boundaries. This is not necessarily a good thing to be */
6086       /* doing, but we've got no other real choice - except avoid stdio
6087          as implementation - perhaps write a :vms layer ?
6088        */
6089       bytesread = PerlLIO_read(PerlIO_fileno(fp), buffer, recsize);
6090 #else
6091       bytesread = PerlIO_read(fp, buffer, recsize);
6092 #endif
6093       if (bytesread < 0)
6094           bytesread = 0;
6095       SvCUR_set(sv, bytesread += append);
6096       buffer[bytesread] = '\0';
6097       goto return_string_or_null;
6098     }
6099     else if (RsPARA(PL_rs)) {
6100         rsptr = "\n\n";
6101         rslen = 2;
6102         rspara = 1;
6103     }
6104     else {
6105         /* Get $/ i.e. PL_rs into same encoding as stream wants */
6106         if (PerlIO_isutf8(fp)) {
6107             rsptr = SvPVutf8(PL_rs, rslen);
6108         }
6109         else {
6110             if (SvUTF8(PL_rs)) {
6111                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
6112                     Perl_croak(aTHX_ "Wide character in $/");
6113                 }
6114             }
6115             rsptr = SvPV_const(PL_rs, rslen);
6116         }
6117     }
6118
6119     rslast = rslen ? rsptr[rslen - 1] : '\0';
6120
6121     if (rspara) {               /* have to do this both before and after */
6122         do {                    /* to make sure file boundaries work right */
6123             if (PerlIO_eof(fp))
6124                 return 0;
6125             i = PerlIO_getc(fp);
6126             if (i != '\n') {
6127                 if (i == -1)
6128                     return 0;
6129                 PerlIO_ungetc(fp,i);
6130                 break;
6131             }
6132         } while (i != EOF);
6133     }
6134
6135     /* See if we know enough about I/O mechanism to cheat it ! */
6136
6137     /* This used to be #ifdef test - it is made run-time test for ease
6138        of abstracting out stdio interface. One call should be cheap
6139        enough here - and may even be a macro allowing compile
6140        time optimization.
6141      */
6142
6143     if (PerlIO_fast_gets(fp)) {
6144
6145     /*
6146      * We're going to steal some values from the stdio struct
6147      * and put EVERYTHING in the innermost loop into registers.
6148      */
6149     register STDCHAR *ptr;
6150     STRLEN bpx;
6151     I32 shortbuffered;
6152
6153 #if defined(VMS) && defined(PERLIO_IS_STDIO)
6154     /* An ungetc()d char is handled separately from the regular
6155      * buffer, so we getc() it back out and stuff it in the buffer.
6156      */
6157     i = PerlIO_getc(fp);
6158     if (i == EOF) return 0;
6159     *(--((*fp)->_ptr)) = (unsigned char) i;
6160     (*fp)->_cnt++;
6161 #endif
6162
6163     /* Here is some breathtakingly efficient cheating */
6164
6165     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
6166     /* make sure we have the room */
6167     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
6168         /* Not room for all of it
6169            if we are looking for a separator and room for some
6170          */
6171         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
6172             /* just process what we have room for */
6173             shortbuffered = cnt - SvLEN(sv) + append + 1;
6174             cnt -= shortbuffered;
6175         }
6176         else {
6177             shortbuffered = 0;
6178             /* remember that cnt can be negative */
6179             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
6180         }
6181     }
6182     else
6183         shortbuffered = 0;
6184     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
6185     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
6186     DEBUG_P(PerlIO_printf(Perl_debug_log,
6187         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
6188     DEBUG_P(PerlIO_printf(Perl_debug_log,
6189         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
6190                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
6191                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
6192     for (;;) {
6193       screamer:
6194         if (cnt > 0) {
6195             if (rslen) {
6196                 while (cnt > 0) {                    /* this     |  eat */
6197                     cnt--;
6198                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
6199                         goto thats_all_folks;        /* screams  |  sed :-) */
6200                 }
6201             }
6202             else {
6203                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
6204                 bp += cnt;                           /* screams  |  dust */
6205                 ptr += cnt;                          /* louder   |  sed :-) */
6206                 cnt = 0;
6207             }
6208         }
6209         
6210         if (shortbuffered) {            /* oh well, must extend */
6211             cnt = shortbuffered;
6212             shortbuffered = 0;
6213             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
6214             SvCUR_set(sv, bpx);
6215             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
6216             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
6217             continue;
6218         }
6219
6220         DEBUG_P(PerlIO_printf(Perl_debug_log,
6221                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
6222                               PTR2UV(ptr),(long)cnt));
6223         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
6224 #if 0
6225         DEBUG_P(PerlIO_printf(Perl_debug_log,
6226             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
6227             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
6228             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
6229 #endif
6230         /* This used to call 'filbuf' in stdio form, but as that behaves like
6231            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
6232            another abstraction.  */
6233         i   = PerlIO_getc(fp);          /* get more characters */
6234 #if 0
6235         DEBUG_P(PerlIO_printf(Perl_debug_log,
6236             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
6237             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
6238             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
6239 #endif
6240         cnt = PerlIO_get_cnt(fp);
6241         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
6242         DEBUG_P(PerlIO_printf(Perl_debug_log,
6243             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
6244
6245         if (i == EOF)                   /* all done for ever? */
6246             goto thats_really_all_folks;
6247
6248         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
6249         SvCUR_set(sv, bpx);
6250         SvGROW(sv, bpx + cnt + 2);
6251         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
6252
6253         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
6254
6255         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
6256             goto thats_all_folks;
6257     }
6258
6259 thats_all_folks:
6260     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
6261           memNE((char*)bp - rslen, rsptr, rslen))
6262         goto screamer;                          /* go back to the fray */
6263 thats_really_all_folks:
6264     if (shortbuffered)
6265         cnt += shortbuffered;
6266         DEBUG_P(PerlIO_printf(Perl_debug_log,
6267             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
6268     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
6269     DEBUG_P(PerlIO_printf(Perl_debug_log,
6270         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
6271         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
6272         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
6273     *bp = '\0';
6274     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
6275     DEBUG_P(PerlIO_printf(Perl_debug_log,
6276         "Screamer: done, len=%ld, string=|%.*s|\n",
6277         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
6278     }
6279    else
6280     {
6281        /*The big, slow, and stupid way. */
6282 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
6283         STDCHAR *buf = NULL;
6284         Newx(buf, 8192, STDCHAR);
6285         assert(buf);
6286 #else
6287         STDCHAR buf[8192];
6288 #endif
6289
6290 screamer2:
6291         if (rslen) {
6292             register const STDCHAR * const bpe = buf + sizeof(buf);
6293             bp = buf;
6294             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
6295                 ; /* keep reading */
6296             cnt = bp - buf;
6297         }
6298         else {
6299             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
6300             /* Accomodate broken VAXC compiler, which applies U8 cast to
6301              * both args of ?: operator, causing EOF to change into 255
6302              */
6303             if (cnt > 0)
6304                  i = (U8)buf[cnt - 1];
6305             else
6306                  i = EOF;
6307         }
6308
6309         if (cnt < 0)
6310             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
6311         if (append)
6312              sv_catpvn(sv, (char *) buf, cnt);
6313         else
6314              sv_setpvn(sv, (char *) buf, cnt);
6315
6316         if (i != EOF &&                 /* joy */
6317             (!rslen ||
6318              SvCUR(sv) < rslen ||
6319              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
6320         {
6321             append = -1;
6322             /*
6323              * If we're reading from a TTY and we get a short read,
6324              * indicating that the user hit his EOF character, we need
6325              * to notice it now, because if we try to read from the TTY
6326              * again, the EOF condition will disappear.
6327              *
6328              * The comparison of cnt to sizeof(buf) is an optimization
6329              * that prevents unnecessary calls to feof().
6330              *
6331              * - jik 9/25/96
6332              */
6333             if (!(cnt < sizeof(buf) && PerlIO_eof(fp)))
6334                 goto screamer2;
6335         }
6336
6337 #ifdef USE_HEAP_INSTEAD_OF_STACK
6338         Safefree(buf);
6339 #endif
6340     }
6341
6342     if (rspara) {               /* have to do this both before and after */
6343         while (i != EOF) {      /* to make sure file boundaries work right */
6344             i = PerlIO_getc(fp);
6345             if (i != '\n') {
6346                 PerlIO_ungetc(fp,i);
6347                 break;
6348             }
6349         }
6350     }
6351
6352 return_string_or_null:
6353     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
6354 }
6355
6356 /*
6357 =for apidoc sv_inc
6358
6359 Auto-increment of the value in the SV, doing string to numeric conversion
6360 if necessary. Handles 'get' magic.
6361
6362 =cut
6363 */
6364
6365 void
6366 Perl_sv_inc(pTHX_ register SV *sv)
6367 {
6368     dVAR;
6369     register char *d;
6370     int flags;
6371
6372     if (!sv)
6373         return;
6374     SvGETMAGIC(sv);
6375     if (SvTHINKFIRST(sv)) {
6376         if (SvIsCOW(sv))
6377             sv_force_normal_flags(sv, 0);
6378         if (SvREADONLY(sv)) {
6379             if (IN_PERL_RUNTIME)
6380                 Perl_croak(aTHX_ PL_no_modify);
6381         }
6382         if (SvROK(sv)) {
6383             IV i;
6384             if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
6385                 return;
6386             i = PTR2IV(SvRV(sv));
6387             sv_unref(sv);
6388             sv_setiv(sv, i);
6389         }
6390     }
6391     flags = SvFLAGS(sv);
6392     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
6393         /* It's (privately or publicly) a float, but not tested as an
6394            integer, so test it to see. */
6395         (void) SvIV(sv);
6396         flags = SvFLAGS(sv);
6397     }
6398     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
6399         /* It's publicly an integer, or privately an integer-not-float */
6400 #ifdef PERL_PRESERVE_IVUV
6401       oops_its_int:
6402 #endif
6403         if (SvIsUV(sv)) {
6404             if (SvUVX(sv) == UV_MAX)
6405                 sv_setnv(sv, UV_MAX_P1);
6406             else
6407                 (void)SvIOK_only_UV(sv);
6408                 SvUV_set(sv, SvUVX(sv) + 1);
6409         } else {
6410             if (SvIVX(sv) == IV_MAX)
6411                 sv_setuv(sv, (UV)IV_MAX + 1);
6412             else {
6413                 (void)SvIOK_only(sv);
6414                 SvIV_set(sv, SvIVX(sv) + 1);
6415             }   
6416         }
6417         return;
6418     }
6419     if (flags & SVp_NOK) {
6420         (void)SvNOK_only(sv);
6421         SvNV_set(sv, SvNVX(sv) + 1.0);
6422         return;
6423     }
6424
6425     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
6426         if ((flags & SVTYPEMASK) < SVt_PVIV)
6427             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
6428         (void)SvIOK_only(sv);
6429         SvIV_set(sv, 1);
6430         return;
6431     }
6432     d = SvPVX(sv);
6433     while (isALPHA(*d)) d++;
6434     while (isDIGIT(*d)) d++;
6435     if (*d) {
6436 #ifdef PERL_PRESERVE_IVUV
6437         /* Got to punt this as an integer if needs be, but we don't issue
6438            warnings. Probably ought to make the sv_iv_please() that does
6439            the conversion if possible, and silently.  */
6440         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
6441         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
6442             /* Need to try really hard to see if it's an integer.
6443                9.22337203685478e+18 is an integer.
6444                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
6445                so $a="9.22337203685478e+18"; $a+0; $a++
6446                needs to be the same as $a="9.22337203685478e+18"; $a++
6447                or we go insane. */
6448         
6449             (void) sv_2iv(sv);
6450             if (SvIOK(sv))
6451                 goto oops_its_int;
6452
6453             /* sv_2iv *should* have made this an NV */
6454             if (flags & SVp_NOK) {
6455                 (void)SvNOK_only(sv);
6456                 SvNV_set(sv, SvNVX(sv) + 1.0);
6457                 return;
6458             }
6459             /* I don't think we can get here. Maybe I should assert this
6460                And if we do get here I suspect that sv_setnv will croak. NWC
6461                Fall through. */
6462 #if defined(USE_LONG_DOUBLE)
6463             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",
6464                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
6465 #else
6466             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
6467                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
6468 #endif
6469         }
6470 #endif /* PERL_PRESERVE_IVUV */
6471         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
6472         return;
6473     }
6474     d--;
6475     while (d >= SvPVX_const(sv)) {
6476         if (isDIGIT(*d)) {
6477             if (++*d <= '9')
6478                 return;
6479             *(d--) = '0';
6480         }
6481         else {
6482 #ifdef EBCDIC
6483             /* MKS: The original code here died if letters weren't consecutive.
6484              * at least it didn't have to worry about non-C locales.  The
6485              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
6486              * arranged in order (although not consecutively) and that only
6487              * [A-Za-z] are accepted by isALPHA in the C locale.
6488              */
6489             if (*d != 'z' && *d != 'Z') {
6490                 do { ++*d; } while (!isALPHA(*d));
6491                 return;
6492             }
6493             *(d--) -= 'z' - 'a';
6494 #else
6495             ++*d;
6496             if (isALPHA(*d))
6497                 return;
6498             *(d--) -= 'z' - 'a' + 1;
6499 #endif
6500         }
6501     }
6502     /* oh,oh, the number grew */
6503     SvGROW(sv, SvCUR(sv) + 2);
6504     SvCUR_set(sv, SvCUR(sv) + 1);
6505     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
6506         *d = d[-1];
6507     if (isDIGIT(d[1]))
6508         *d = '1';
6509     else
6510         *d = d[1];
6511 }
6512
6513 /*
6514 =for apidoc sv_dec
6515
6516 Auto-decrement of the value in the SV, doing string to numeric conversion
6517 if necessary. Handles 'get' magic.
6518
6519 =cut
6520 */
6521
6522 void
6523 Perl_sv_dec(pTHX_ register SV *sv)
6524 {
6525     dVAR;
6526     int flags;
6527
6528     if (!sv)
6529         return;
6530     SvGETMAGIC(sv);
6531     if (SvTHINKFIRST(sv)) {
6532         if (SvIsCOW(sv))
6533             sv_force_normal_flags(sv, 0);
6534         if (SvREADONLY(sv)) {
6535             if (IN_PERL_RUNTIME)
6536                 Perl_croak(aTHX_ PL_no_modify);
6537         }
6538         if (SvROK(sv)) {
6539             IV i;
6540             if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
6541                 return;
6542             i = PTR2IV(SvRV(sv));
6543             sv_unref(sv);
6544             sv_setiv(sv, i);
6545         }
6546     }
6547     /* Unlike sv_inc we don't have to worry about string-never-numbers
6548        and keeping them magic. But we mustn't warn on punting */
6549     flags = SvFLAGS(sv);
6550     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
6551         /* It's publicly an integer, or privately an integer-not-float */
6552 #ifdef PERL_PRESERVE_IVUV
6553       oops_its_int:
6554 #endif
6555         if (SvIsUV(sv)) {
6556             if (SvUVX(sv) == 0) {
6557                 (void)SvIOK_only(sv);
6558                 SvIV_set(sv, -1);
6559             }
6560             else {
6561                 (void)SvIOK_only_UV(sv);
6562                 SvUV_set(sv, SvUVX(sv) - 1);
6563             }   
6564         } else {
6565             if (SvIVX(sv) == IV_MIN)
6566                 sv_setnv(sv, (NV)IV_MIN - 1.0);
6567             else {
6568                 (void)SvIOK_only(sv);
6569                 SvIV_set(sv, SvIVX(sv) - 1);
6570             }   
6571         }
6572         return;
6573     }
6574     if (flags & SVp_NOK) {
6575         SvNV_set(sv, SvNVX(sv) - 1.0);
6576         (void)SvNOK_only(sv);
6577         return;
6578     }
6579     if (!(flags & SVp_POK)) {
6580         if ((flags & SVTYPEMASK) < SVt_PVIV)
6581             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
6582         SvIV_set(sv, -1);
6583         (void)SvIOK_only(sv);
6584         return;
6585     }
6586 #ifdef PERL_PRESERVE_IVUV
6587     {
6588         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
6589         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
6590             /* Need to try really hard to see if it's an integer.
6591                9.22337203685478e+18 is an integer.
6592                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
6593                so $a="9.22337203685478e+18"; $a+0; $a--
6594                needs to be the same as $a="9.22337203685478e+18"; $a--
6595                or we go insane. */
6596         
6597             (void) sv_2iv(sv);
6598             if (SvIOK(sv))
6599                 goto oops_its_int;
6600
6601             /* sv_2iv *should* have made this an NV */
6602             if (flags & SVp_NOK) {
6603                 (void)SvNOK_only(sv);
6604                 SvNV_set(sv, SvNVX(sv) - 1.0);
6605                 return;
6606             }
6607             /* I don't think we can get here. Maybe I should assert this
6608                And if we do get here I suspect that sv_setnv will croak. NWC
6609                Fall through. */
6610 #if defined(USE_LONG_DOUBLE)
6611             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",
6612                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
6613 #else
6614             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
6615                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
6616 #endif
6617         }
6618     }
6619 #endif /* PERL_PRESERVE_IVUV */
6620     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
6621 }
6622
6623 /*
6624 =for apidoc sv_mortalcopy
6625
6626 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
6627 The new SV is marked as mortal. It will be destroyed "soon", either by an
6628 explicit call to FREETMPS, or by an implicit call at places such as
6629 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
6630
6631 =cut
6632 */
6633
6634 /* Make a string that will exist for the duration of the expression
6635  * evaluation.  Actually, it may have to last longer than that, but
6636  * hopefully we won't free it until it has been assigned to a
6637  * permanent location. */
6638
6639 SV *
6640 Perl_sv_mortalcopy(pTHX_ SV *oldstr)
6641 {
6642     dVAR;
6643     register SV *sv;
6644
6645     new_SV(sv);
6646     sv_setsv(sv,oldstr);
6647     EXTEND_MORTAL(1);
6648     PL_tmps_stack[++PL_tmps_ix] = sv;
6649     SvTEMP_on(sv);
6650     return sv;
6651 }
6652
6653 /*
6654 =for apidoc sv_newmortal
6655
6656 Creates a new null SV which is mortal.  The reference count of the SV is
6657 set to 1. It will be destroyed "soon", either by an explicit call to
6658 FREETMPS, or by an implicit call at places such as statement boundaries.
6659 See also C<sv_mortalcopy> and C<sv_2mortal>.
6660
6661 =cut
6662 */
6663
6664 SV *
6665 Perl_sv_newmortal(pTHX)
6666 {
6667     dVAR;
6668     register SV *sv;
6669
6670     new_SV(sv);
6671     SvFLAGS(sv) = SVs_TEMP;
6672     EXTEND_MORTAL(1);
6673     PL_tmps_stack[++PL_tmps_ix] = sv;
6674     return sv;
6675 }
6676
6677 /*
6678 =for apidoc sv_2mortal
6679
6680 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
6681 by an explicit call to FREETMPS, or by an implicit call at places such as
6682 statement boundaries.  SvTEMP() is turned on which means that the SV's
6683 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
6684 and C<sv_mortalcopy>.
6685
6686 =cut
6687 */
6688
6689 SV *
6690 Perl_sv_2mortal(pTHX_ register SV *sv)
6691 {
6692     dVAR;
6693     if (!sv)
6694         return NULL;
6695     if (SvREADONLY(sv) && SvIMMORTAL(sv))
6696         return sv;
6697     EXTEND_MORTAL(1);
6698     PL_tmps_stack[++PL_tmps_ix] = sv;
6699     SvTEMP_on(sv);
6700     return sv;
6701 }
6702
6703 /*
6704 =for apidoc newSVpv
6705
6706 Creates a new SV and copies a string into it.  The reference count for the
6707 SV is set to 1.  If C<len> is zero, Perl will compute the length using
6708 strlen().  For efficiency, consider using C<newSVpvn> instead.
6709
6710 =cut
6711 */
6712
6713 SV *
6714 Perl_newSVpv(pTHX_ const char *s, STRLEN len)
6715 {
6716     dVAR;
6717     register SV *sv;
6718
6719     new_SV(sv);
6720     sv_setpvn(sv,s,len ? len : strlen(s));
6721     return sv;
6722 }
6723
6724 /*
6725 =for apidoc newSVpvn
6726
6727 Creates a new SV and copies a string into it.  The reference count for the
6728 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
6729 string.  You are responsible for ensuring that the source string is at least
6730 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
6731
6732 =cut
6733 */
6734
6735 SV *
6736 Perl_newSVpvn(pTHX_ const char *s, STRLEN len)
6737 {
6738     dVAR;
6739     register SV *sv;
6740
6741     new_SV(sv);
6742     sv_setpvn(sv,s,len);
6743     return sv;
6744 }
6745
6746
6747 /*
6748 =for apidoc newSVhek
6749
6750 Creates a new SV from the hash key structure.  It will generate scalars that
6751 point to the shared string table where possible. Returns a new (undefined)
6752 SV if the hek is NULL.
6753
6754 =cut
6755 */
6756
6757 SV *
6758 Perl_newSVhek(pTHX_ const HEK *hek)
6759 {
6760     dVAR;
6761     if (!hek) {
6762         SV *sv;
6763
6764         new_SV(sv);
6765         return sv;
6766     }
6767
6768     if (HEK_LEN(hek) == HEf_SVKEY) {
6769         return newSVsv(*(SV**)HEK_KEY(hek));
6770     } else {
6771         const int flags = HEK_FLAGS(hek);
6772         if (flags & HVhek_WASUTF8) {
6773             /* Trouble :-)
6774                Andreas would like keys he put in as utf8 to come back as utf8
6775             */
6776             STRLEN utf8_len = HEK_LEN(hek);
6777             const U8 *as_utf8 = bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
6778             SV * const sv = newSVpvn ((const char*)as_utf8, utf8_len);
6779
6780             SvUTF8_on (sv);
6781             Safefree (as_utf8); /* bytes_to_utf8() allocates a new string */
6782             return sv;
6783         } else if (flags & HVhek_REHASH) {
6784             /* We don't have a pointer to the hv, so we have to replicate the
6785                flag into every HEK. This hv is using custom a hasing
6786                algorithm. Hence we can't return a shared string scalar, as
6787                that would contain the (wrong) hash value, and might get passed
6788                into an hv routine with a regular hash  */
6789
6790             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
6791             if (HEK_UTF8(hek))
6792                 SvUTF8_on (sv);
6793             return sv;
6794         }
6795         /* This will be overwhelminly the most common case.  */
6796         return newSVpvn_share(HEK_KEY(hek),
6797                               (HEK_UTF8(hek) ? -HEK_LEN(hek) : HEK_LEN(hek)),
6798                               HEK_HASH(hek));
6799     }
6800 }
6801
6802 /*
6803 =for apidoc newSVpvn_share
6804
6805 Creates a new SV with its SvPVX_const pointing to a shared string in the string
6806 table. If the string does not already exist in the table, it is created
6807 first.  Turns on READONLY and FAKE.  The string's hash is stored in the UV
6808 slot of the SV; if the C<hash> parameter is non-zero, that value is used;
6809 otherwise the hash is computed.  The idea here is that as the string table
6810 is used for shared hash keys these strings will have SvPVX_const == HeKEY and
6811 hash lookup will avoid string compare.
6812
6813 =cut
6814 */
6815
6816 SV *
6817 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
6818 {
6819     dVAR;
6820     register SV *sv;
6821     bool is_utf8 = FALSE;
6822     if (len < 0) {
6823         STRLEN tmplen = -len;
6824         is_utf8 = TRUE;
6825         /* See the note in hv.c:hv_fetch() --jhi */
6826         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
6827         len = tmplen;
6828     }
6829     if (!hash)
6830         PERL_HASH(hash, src, len);
6831     new_SV(sv);
6832     sv_upgrade(sv, SVt_PV);
6833     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
6834     SvCUR_set(sv, len);
6835     SvLEN_set(sv, 0);
6836     SvREADONLY_on(sv);
6837     SvFAKE_on(sv);
6838     SvPOK_on(sv);
6839     if (is_utf8)
6840         SvUTF8_on(sv);
6841     return sv;
6842 }
6843
6844
6845 #if defined(PERL_IMPLICIT_CONTEXT)
6846
6847 /* pTHX_ magic can't cope with varargs, so this is a no-context
6848  * version of the main function, (which may itself be aliased to us).
6849  * Don't access this version directly.
6850  */
6851
6852 SV *
6853 Perl_newSVpvf_nocontext(const char* pat, ...)
6854 {
6855     dTHX;
6856     register SV *sv;
6857     va_list args;
6858     va_start(args, pat);
6859     sv = vnewSVpvf(pat, &args);
6860     va_end(args);
6861     return sv;
6862 }
6863 #endif
6864
6865 /*
6866 =for apidoc newSVpvf
6867
6868 Creates a new SV and initializes it with the string formatted like
6869 C<sprintf>.
6870
6871 =cut
6872 */
6873
6874 SV *
6875 Perl_newSVpvf(pTHX_ const char* pat, ...)
6876 {
6877     register SV *sv;
6878     va_list args;
6879     va_start(args, pat);
6880     sv = vnewSVpvf(pat, &args);
6881     va_end(args);
6882     return sv;
6883 }
6884
6885 /* backend for newSVpvf() and newSVpvf_nocontext() */
6886
6887 SV *
6888 Perl_vnewSVpvf(pTHX_ const char* pat, va_list* args)
6889 {
6890     dVAR;
6891     register SV *sv;
6892     new_SV(sv);
6893     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
6894     return sv;
6895 }
6896
6897 /*
6898 =for apidoc newSVnv
6899
6900 Creates a new SV and copies a floating point value into it.
6901 The reference count for the SV is set to 1.
6902
6903 =cut
6904 */
6905
6906 SV *
6907 Perl_newSVnv(pTHX_ NV n)
6908 {
6909     dVAR;
6910     register SV *sv;
6911
6912     new_SV(sv);
6913     sv_setnv(sv,n);
6914     return sv;
6915 }
6916
6917 /*
6918 =for apidoc newSViv
6919
6920 Creates a new SV and copies an integer into it.  The reference count for the
6921 SV is set to 1.
6922
6923 =cut
6924 */
6925
6926 SV *
6927 Perl_newSViv(pTHX_ IV i)
6928 {
6929     dVAR;
6930     register SV *sv;
6931
6932     new_SV(sv);
6933     sv_setiv(sv,i);
6934     return sv;
6935 }
6936
6937 /*
6938 =for apidoc newSVuv
6939
6940 Creates a new SV and copies an unsigned integer into it.
6941 The reference count for the SV is set to 1.
6942
6943 =cut
6944 */
6945
6946 SV *
6947 Perl_newSVuv(pTHX_ UV u)
6948 {
6949     dVAR;
6950     register SV *sv;
6951
6952     new_SV(sv);
6953     sv_setuv(sv,u);
6954     return sv;
6955 }
6956
6957 /*
6958 =for apidoc newRV_noinc
6959
6960 Creates an RV wrapper for an SV.  The reference count for the original
6961 SV is B<not> incremented.
6962
6963 =cut
6964 */
6965
6966 SV *
6967 Perl_newRV_noinc(pTHX_ SV *tmpRef)
6968 {
6969     dVAR;
6970     register SV *sv;
6971
6972     new_SV(sv);
6973     sv_upgrade(sv, SVt_RV);
6974     SvTEMP_off(tmpRef);
6975     SvRV_set(sv, tmpRef);
6976     SvROK_on(sv);
6977     return sv;
6978 }
6979
6980 /* newRV_inc is the official function name to use now.
6981  * newRV_inc is in fact #defined to newRV in sv.h
6982  */
6983
6984 SV *
6985 Perl_newRV(pTHX_ SV *sv)
6986 {
6987     dVAR;
6988     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
6989 }
6990
6991 /*
6992 =for apidoc newSVsv
6993
6994 Creates a new SV which is an exact duplicate of the original SV.
6995 (Uses C<sv_setsv>).
6996
6997 =cut
6998 */
6999
7000 SV *
7001 Perl_newSVsv(pTHX_ register SV *old)
7002 {
7003     dVAR;
7004     register SV *sv;
7005
7006     if (!old)
7007         return NULL;
7008     if (SvTYPE(old) == SVTYPEMASK) {
7009         if (ckWARN_d(WARN_INTERNAL))
7010             Perl_warner(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
7011         return NULL;
7012     }
7013     new_SV(sv);
7014     /* SV_GMAGIC is the default for sv_setv()
7015        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
7016        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
7017     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
7018     return sv;
7019 }
7020
7021 /*
7022 =for apidoc sv_reset
7023
7024 Underlying implementation for the C<reset> Perl function.
7025 Note that the perl-level function is vaguely deprecated.
7026
7027 =cut
7028 */
7029
7030 void
7031 Perl_sv_reset(pTHX_ register const char *s, HV *stash)
7032 {
7033     dVAR;
7034     char todo[PERL_UCHAR_MAX+1];
7035
7036     if (!stash)
7037         return;
7038
7039     if (!*s) {          /* reset ?? searches */
7040         MAGIC * const mg = mg_find((SV *)stash, PERL_MAGIC_symtab);
7041         if (mg) {
7042             PMOP *pm = (PMOP *) mg->mg_obj;
7043             while (pm) {
7044                 pm->op_pmdynflags &= ~PMdf_USED;
7045                 pm = pm->op_pmnext;
7046             }
7047         }
7048         return;
7049     }
7050
7051     /* reset variables */
7052
7053     if (!HvARRAY(stash))
7054         return;
7055
7056     Zero(todo, 256, char);
7057     while (*s) {
7058         I32 max;
7059         I32 i = (unsigned char)*s;
7060         if (s[1] == '-') {
7061             s += 2;
7062         }
7063         max = (unsigned char)*s++;
7064         for ( ; i <= max; i++) {
7065             todo[i] = 1;
7066         }
7067         for (i = 0; i <= (I32) HvMAX(stash); i++) {
7068             HE *entry;
7069             for (entry = HvARRAY(stash)[i];
7070                  entry;
7071                  entry = HeNEXT(entry))
7072             {
7073                 register GV *gv;
7074                 register SV *sv;
7075
7076                 if (!todo[(U8)*HeKEY(entry)])
7077                     continue;
7078                 gv = (GV*)HeVAL(entry);
7079                 sv = GvSV(gv);
7080                 if (sv) {
7081                     if (SvTHINKFIRST(sv)) {
7082                         if (!SvREADONLY(sv) && SvROK(sv))
7083                             sv_unref(sv);
7084                         /* XXX Is this continue a bug? Why should THINKFIRST
7085                            exempt us from resetting arrays and hashes?  */
7086                         continue;
7087                     }
7088                     SvOK_off(sv);
7089                     if (SvTYPE(sv) >= SVt_PV) {
7090                         SvCUR_set(sv, 0);
7091                         if (SvPVX_const(sv) != NULL)
7092                             *SvPVX(sv) = '\0';
7093                         SvTAINT(sv);
7094                     }
7095                 }
7096                 if (GvAV(gv)) {
7097                     av_clear(GvAV(gv));
7098                 }
7099                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
7100 #if defined(VMS)
7101                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
7102 #else /* ! VMS */
7103                     hv_clear(GvHV(gv));
7104 #  if defined(USE_ENVIRON_ARRAY)
7105                     if (gv == PL_envgv)
7106                         my_clearenv();
7107 #  endif /* USE_ENVIRON_ARRAY */
7108 #endif /* VMS */
7109                 }
7110             }
7111         }
7112     }
7113 }
7114
7115 /*
7116 =for apidoc sv_2io
7117
7118 Using various gambits, try to get an IO from an SV: the IO slot if its a
7119 GV; or the recursive result if we're an RV; or the IO slot of the symbol
7120 named after the PV if we're a string.
7121
7122 =cut
7123 */
7124
7125 IO*
7126 Perl_sv_2io(pTHX_ SV *sv)
7127 {
7128     IO* io;
7129     GV* gv;
7130
7131     switch (SvTYPE(sv)) {
7132     case SVt_PVIO:
7133         io = (IO*)sv;
7134         break;
7135     case SVt_PVGV:
7136         gv = (GV*)sv;
7137         io = GvIO(gv);
7138         if (!io)
7139             Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
7140         break;
7141     default:
7142         if (!SvOK(sv))
7143             Perl_croak(aTHX_ PL_no_usym, "filehandle");
7144         if (SvROK(sv))
7145             return sv_2io(SvRV(sv));
7146         gv = gv_fetchsv(sv, 0, SVt_PVIO);
7147         if (gv)
7148             io = GvIO(gv);
7149         else
7150             io = 0;
7151         if (!io)
7152             Perl_croak(aTHX_ "Bad filehandle: %"SVf, sv);
7153         break;
7154     }
7155     return io;
7156 }
7157
7158 /*
7159 =for apidoc sv_2cv
7160
7161 Using various gambits, try to get a CV from an SV; in addition, try if
7162 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
7163 The flags in C<lref> are passed to sv_fetchsv.
7164
7165 =cut
7166 */
7167
7168 CV *
7169 Perl_sv_2cv(pTHX_ SV *sv, HV **st, GV **gvp, I32 lref)
7170 {
7171     dVAR;
7172     GV *gv = NULL;
7173     CV *cv = NULL;
7174
7175     if (!sv) {
7176         *st = NULL;
7177         *gvp = NULL;
7178         return NULL;
7179     }
7180     switch (SvTYPE(sv)) {
7181     case SVt_PVCV:
7182         *st = CvSTASH(sv);
7183         *gvp = NULL;
7184         return (CV*)sv;
7185     case SVt_PVHV:
7186     case SVt_PVAV:
7187         *st = NULL;
7188         *gvp = NULL;
7189         return NULL;
7190     case SVt_PVGV:
7191         gv = (GV*)sv;
7192         *gvp = gv;
7193         *st = GvESTASH(gv);
7194         goto fix_gv;
7195
7196     default:
7197         SvGETMAGIC(sv);
7198         if (SvROK(sv)) {
7199             SV * const *sp = &sv;       /* Used in tryAMAGICunDEREF macro. */
7200             tryAMAGICunDEREF(to_cv);
7201
7202             sv = SvRV(sv);
7203             if (SvTYPE(sv) == SVt_PVCV) {
7204                 cv = (CV*)sv;
7205                 *gvp = NULL;
7206                 *st = CvSTASH(cv);
7207                 return cv;
7208             }
7209             else if(isGV(sv))
7210                 gv = (GV*)sv;
7211             else
7212                 Perl_croak(aTHX_ "Not a subroutine reference");
7213         }
7214         else if (isGV(sv))
7215             gv = (GV*)sv;
7216         else
7217             gv = gv_fetchsv(sv, lref, SVt_PVCV);
7218         *gvp = gv;
7219         if (!gv) {
7220             *st = NULL;
7221             return NULL;
7222         }
7223         /* Some flags to gv_fetchsv mean don't really create the GV  */
7224         if (SvTYPE(gv) != SVt_PVGV) {
7225             *st = NULL;
7226             return NULL;
7227         }
7228         *st = GvESTASH(gv);
7229     fix_gv:
7230         if (lref && !GvCVu(gv)) {
7231             SV *tmpsv;
7232             ENTER;
7233             tmpsv = newSV(0);
7234             gv_efullname3(tmpsv, gv, NULL);
7235             /* XXX this is probably not what they think they're getting.
7236              * It has the same effect as "sub name;", i.e. just a forward
7237              * declaration! */
7238             newSUB(start_subparse(FALSE, 0),
7239                    newSVOP(OP_CONST, 0, tmpsv),
7240                    NULL, NULL);
7241             LEAVE;
7242             if (!GvCVu(gv))
7243                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
7244                            sv);
7245         }
7246         return GvCVu(gv);
7247     }
7248 }
7249
7250 /*
7251 =for apidoc sv_true
7252
7253 Returns true if the SV has a true value by Perl's rules.
7254 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
7255 instead use an in-line version.
7256
7257 =cut
7258 */
7259
7260 I32
7261 Perl_sv_true(pTHX_ register SV *sv)
7262 {
7263     if (!sv)
7264         return 0;
7265     if (SvPOK(sv)) {
7266         register const XPV* const tXpv = (XPV*)SvANY(sv);
7267         if (tXpv &&
7268                 (tXpv->xpv_cur > 1 ||
7269                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
7270             return 1;
7271         else
7272             return 0;
7273     }
7274     else {
7275         if (SvIOK(sv))
7276             return SvIVX(sv) != 0;
7277         else {
7278             if (SvNOK(sv))
7279                 return SvNVX(sv) != 0.0;
7280             else
7281                 return sv_2bool(sv);
7282         }
7283     }
7284 }
7285
7286 /*
7287 =for apidoc sv_pvn_force
7288
7289 Get a sensible string out of the SV somehow.
7290 A private implementation of the C<SvPV_force> macro for compilers which
7291 can't cope with complex macro expressions. Always use the macro instead.
7292
7293 =for apidoc sv_pvn_force_flags
7294
7295 Get a sensible string out of the SV somehow.
7296 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
7297 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
7298 implemented in terms of this function.
7299 You normally want to use the various wrapper macros instead: see
7300 C<SvPV_force> and C<SvPV_force_nomg>
7301
7302 =cut
7303 */
7304
7305 char *
7306 Perl_sv_pvn_force_flags(pTHX_ SV *sv, STRLEN *lp, I32 flags)
7307 {
7308     dVAR;
7309     if (SvTHINKFIRST(sv) && !SvROK(sv))
7310         sv_force_normal_flags(sv, 0);
7311
7312     if (SvPOK(sv)) {
7313         if (lp)
7314             *lp = SvCUR(sv);
7315     }
7316     else {
7317         char *s;
7318         STRLEN len;
7319  
7320         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
7321             const char * const ref = sv_reftype(sv,0);
7322             if (PL_op)
7323                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
7324                            ref, OP_NAME(PL_op));
7325             else
7326                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
7327         }
7328         if (SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
7329             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
7330                 OP_NAME(PL_op));
7331         s = sv_2pv_flags(sv, &len, flags);
7332         if (lp)
7333             *lp = len;
7334
7335         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
7336             if (SvROK(sv))
7337                 sv_unref(sv);
7338             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
7339             SvGROW(sv, len + 1);
7340             Move(s,SvPVX(sv),len,char);
7341             SvCUR_set(sv, len);
7342             *SvEND(sv) = '\0';
7343         }
7344         if (!SvPOK(sv)) {
7345             SvPOK_on(sv);               /* validate pointer */
7346             SvTAINT(sv);
7347             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
7348                                   PTR2UV(sv),SvPVX_const(sv)));
7349         }
7350     }
7351     return SvPVX_mutable(sv);
7352 }
7353
7354 /*
7355 =for apidoc sv_pvbyten_force
7356
7357 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
7358
7359 =cut
7360 */
7361
7362 char *
7363 Perl_sv_pvbyten_force(pTHX_ SV *sv, STRLEN *lp)
7364 {
7365     sv_pvn_force(sv,lp);
7366     sv_utf8_downgrade(sv,0);
7367     *lp = SvCUR(sv);
7368     return SvPVX(sv);
7369 }
7370
7371 /*
7372 =for apidoc sv_pvutf8n_force
7373
7374 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
7375
7376 =cut
7377 */
7378
7379 char *
7380 Perl_sv_pvutf8n_force(pTHX_ SV *sv, STRLEN *lp)
7381 {
7382     sv_pvn_force(sv,lp);
7383     sv_utf8_upgrade(sv);
7384     *lp = SvCUR(sv);
7385     return SvPVX(sv);
7386 }
7387
7388 /*
7389 =for apidoc sv_reftype
7390
7391 Returns a string describing what the SV is a reference to.
7392
7393 =cut
7394 */
7395
7396 char *
7397 Perl_sv_reftype(pTHX_ const SV *sv, int ob)
7398 {
7399     /* The fact that I don't need to downcast to char * everywhere, only in ?:
7400        inside return suggests a const propagation bug in g++.  */
7401     if (ob && SvOBJECT(sv)) {
7402         char * const name = HvNAME_get(SvSTASH(sv));
7403         return name ? name : (char *) "__ANON__";
7404     }
7405     else {
7406         switch (SvTYPE(sv)) {
7407         case SVt_NULL:
7408         case SVt_IV:
7409         case SVt_NV:
7410         case SVt_RV:
7411         case SVt_PV:
7412         case SVt_PVIV:
7413         case SVt_PVNV:
7414         case SVt_PVMG:
7415         case SVt_PVBM:
7416                                 if (SvVOK(sv))
7417                                     return "VSTRING";
7418                                 if (SvROK(sv))
7419                                     return "REF";
7420                                 else
7421                                     return "SCALAR";
7422
7423         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
7424                                 /* tied lvalues should appear to be
7425                                  * scalars for backwards compatitbility */
7426                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
7427                                     ? "SCALAR" : "LVALUE");
7428         case SVt_PVAV:          return "ARRAY";
7429         case SVt_PVHV:          return "HASH";
7430         case SVt_PVCV:          return "CODE";
7431         case SVt_PVGV:          return "GLOB";
7432         case SVt_PVFM:          return "FORMAT";
7433         case SVt_PVIO:          return "IO";
7434         default:                return "UNKNOWN";
7435         }
7436     }
7437 }
7438
7439 /*
7440 =for apidoc sv_isobject
7441
7442 Returns a boolean indicating whether the SV is an RV pointing to a blessed
7443 object.  If the SV is not an RV, or if the object is not blessed, then this
7444 will return false.
7445
7446 =cut
7447 */
7448
7449 int
7450 Perl_sv_isobject(pTHX_ SV *sv)
7451 {
7452     if (!sv)
7453         return 0;
7454     SvGETMAGIC(sv);
7455     if (!SvROK(sv))
7456         return 0;
7457     sv = (SV*)SvRV(sv);
7458     if (!SvOBJECT(sv))
7459         return 0;
7460     return 1;
7461 }
7462
7463 /*
7464 =for apidoc sv_isa
7465
7466 Returns a boolean indicating whether the SV is blessed into the specified
7467 class.  This does not check for subtypes; use C<sv_derived_from> to verify
7468 an inheritance relationship.
7469
7470 =cut
7471 */
7472
7473 int
7474 Perl_sv_isa(pTHX_ SV *sv, const char *name)
7475 {
7476     const char *hvname;
7477     if (!sv)
7478         return 0;
7479     SvGETMAGIC(sv);
7480     if (!SvROK(sv))
7481         return 0;
7482     sv = (SV*)SvRV(sv);
7483     if (!SvOBJECT(sv))
7484         return 0;
7485     hvname = HvNAME_get(SvSTASH(sv));
7486     if (!hvname)
7487         return 0;
7488
7489     return strEQ(hvname, name);
7490 }
7491
7492 /*
7493 =for apidoc newSVrv
7494
7495 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
7496 it will be upgraded to one.  If C<classname> is non-null then the new SV will
7497 be blessed in the specified package.  The new SV is returned and its
7498 reference count is 1.
7499
7500 =cut
7501 */
7502
7503 SV*
7504 Perl_newSVrv(pTHX_ SV *rv, const char *classname)
7505 {
7506     dVAR;
7507     SV *sv;
7508
7509     new_SV(sv);
7510
7511     SV_CHECK_THINKFIRST_COW_DROP(rv);
7512     SvAMAGIC_off(rv);
7513
7514     if (SvTYPE(rv) >= SVt_PVMG) {
7515         const U32 refcnt = SvREFCNT(rv);
7516         SvREFCNT(rv) = 0;
7517         sv_clear(rv);
7518         SvFLAGS(rv) = 0;
7519         SvREFCNT(rv) = refcnt;
7520     }
7521
7522     if (SvTYPE(rv) < SVt_RV)
7523         sv_upgrade(rv, SVt_RV);
7524     else if (SvTYPE(rv) > SVt_RV) {
7525         SvPV_free(rv);
7526         SvCUR_set(rv, 0);
7527         SvLEN_set(rv, 0);
7528     }
7529
7530     SvOK_off(rv);
7531     SvRV_set(rv, sv);
7532     SvROK_on(rv);
7533
7534     if (classname) {
7535         HV* const stash = gv_stashpv(classname, TRUE);
7536         (void)sv_bless(rv, stash);
7537     }
7538     return sv;
7539 }
7540
7541 /*
7542 =for apidoc sv_setref_pv
7543
7544 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
7545 argument will be upgraded to an RV.  That RV will be modified to point to
7546 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
7547 into the SV.  The C<classname> argument indicates the package for the
7548 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
7549 will have a reference count of 1, and the RV will be returned.
7550
7551 Do not use with other Perl types such as HV, AV, SV, CV, because those
7552 objects will become corrupted by the pointer copy process.
7553
7554 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
7555
7556 =cut
7557 */
7558
7559 SV*
7560 Perl_sv_setref_pv(pTHX_ SV *rv, const char *classname, void *pv)
7561 {
7562     dVAR;
7563     if (!pv) {
7564         sv_setsv(rv, &PL_sv_undef);
7565         SvSETMAGIC(rv);
7566     }
7567     else
7568         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
7569     return rv;
7570 }
7571
7572 /*
7573 =for apidoc sv_setref_iv
7574
7575 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
7576 argument will be upgraded to an RV.  That RV will be modified to point to
7577 the new SV.  The C<classname> argument indicates the package for the
7578 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
7579 will have a reference count of 1, and the RV will be returned.
7580
7581 =cut
7582 */
7583
7584 SV*
7585 Perl_sv_setref_iv(pTHX_ SV *rv, const char *classname, IV iv)
7586 {
7587     sv_setiv(newSVrv(rv,classname), iv);
7588     return rv;
7589 }
7590
7591 /*
7592 =for apidoc sv_setref_uv
7593
7594 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
7595 argument will be upgraded to an RV.  That RV will be modified to point to
7596 the new SV.  The C<classname> argument indicates the package for the
7597 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
7598 will have a reference count of 1, and the RV will be returned.
7599
7600 =cut
7601 */
7602
7603 SV*
7604 Perl_sv_setref_uv(pTHX_ SV *rv, const char *classname, UV uv)
7605 {
7606     sv_setuv(newSVrv(rv,classname), uv);
7607     return rv;
7608 }
7609
7610 /*
7611 =for apidoc sv_setref_nv
7612
7613 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
7614 argument will be upgraded to an RV.  That RV will be modified to point to
7615 the new SV.  The C<classname> argument indicates the package for the
7616 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
7617 will have a reference count of 1, and the RV will be returned.
7618
7619 =cut
7620 */
7621
7622 SV*
7623 Perl_sv_setref_nv(pTHX_ SV *rv, const char *classname, NV nv)
7624 {
7625     sv_setnv(newSVrv(rv,classname), nv);
7626     return rv;
7627 }
7628
7629 /*
7630 =for apidoc sv_setref_pvn
7631
7632 Copies a string into a new SV, optionally blessing the SV.  The length of the
7633 string must be specified with C<n>.  The C<rv> argument will be upgraded to
7634 an RV.  That RV will be modified to point to the new SV.  The C<classname>
7635 argument indicates the package for the blessing.  Set C<classname> to
7636 C<NULL> to avoid the blessing.  The new SV will have a reference count
7637 of 1, and the RV will be returned.
7638
7639 Note that C<sv_setref_pv> copies the pointer while this copies the string.
7640
7641 =cut
7642 */
7643
7644 SV*
7645 Perl_sv_setref_pvn(pTHX_ SV *rv, const char *classname, const char *pv, STRLEN n)
7646 {
7647     sv_setpvn(newSVrv(rv,classname), pv, n);
7648     return rv;
7649 }
7650
7651 /*
7652 =for apidoc sv_bless
7653
7654 Blesses an SV into a specified package.  The SV must be an RV.  The package
7655 must be designated by its stash (see C<gv_stashpv()>).  The reference count
7656 of the SV is unaffected.
7657
7658 =cut
7659 */
7660
7661 SV*
7662 Perl_sv_bless(pTHX_ SV *sv, HV *stash)
7663 {
7664     dVAR;
7665     SV *tmpRef;
7666     if (!SvROK(sv))
7667         Perl_croak(aTHX_ "Can't bless non-reference value");
7668     tmpRef = SvRV(sv);
7669     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
7670         if (SvREADONLY(tmpRef))
7671             Perl_croak(aTHX_ PL_no_modify);
7672         if (SvOBJECT(tmpRef)) {
7673             if (SvTYPE(tmpRef) != SVt_PVIO)
7674                 --PL_sv_objcount;
7675             SvREFCNT_dec(SvSTASH(tmpRef));
7676         }
7677     }
7678     SvOBJECT_on(tmpRef);
7679     if (SvTYPE(tmpRef) != SVt_PVIO)
7680         ++PL_sv_objcount;
7681     SvUPGRADE(tmpRef, SVt_PVMG);
7682     SvSTASH_set(tmpRef, (HV*)SvREFCNT_inc_simple(stash));
7683
7684     if (Gv_AMG(stash))
7685         SvAMAGIC_on(sv);
7686     else
7687         SvAMAGIC_off(sv);
7688
7689     if(SvSMAGICAL(tmpRef))
7690         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
7691             mg_set(tmpRef);
7692
7693
7694
7695     return sv;
7696 }
7697
7698 /* Downgrades a PVGV to a PVMG.
7699  */
7700
7701 STATIC void
7702 S_sv_unglob(pTHX_ SV *sv)
7703 {
7704     dVAR;
7705     void *xpvmg;
7706     SV * const temp = sv_newmortal();
7707
7708     assert(SvTYPE(sv) == SVt_PVGV);
7709     SvFAKE_off(sv);
7710     gv_efullname3(temp, (GV *) sv, "*");
7711
7712     if (GvGP(sv)) {
7713         gp_free((GV*)sv);
7714     }
7715     if (GvSTASH(sv)) {
7716         sv_del_backref((SV*)GvSTASH(sv), sv);
7717         GvSTASH(sv) = NULL;
7718     }
7719     GvMULTI_off(sv);
7720     if (GvNAME_HEK(sv)) {
7721         unshare_hek(GvNAME_HEK(sv));
7722     }
7723     SvSCREAM_off(sv);
7724
7725     /* need to keep SvANY(sv) in the right arena */
7726     xpvmg = new_XPVMG();
7727     StructCopy(SvANY(sv), xpvmg, XPVMG);
7728     del_XPVGV(SvANY(sv));
7729     SvANY(sv) = xpvmg;
7730
7731     SvFLAGS(sv) &= ~SVTYPEMASK;
7732     SvFLAGS(sv) |= SVt_PVMG;
7733
7734     /* Intentionally not calling any local SET magic, as this isn't so much a
7735        set operation as merely an internal storage change.  */
7736     sv_setsv_flags(sv, temp, 0);
7737 }
7738
7739 /*
7740 =for apidoc sv_unref_flags
7741
7742 Unsets the RV status of the SV, and decrements the reference count of
7743 whatever was being referenced by the RV.  This can almost be thought of
7744 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
7745 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
7746 (otherwise the decrementing is conditional on the reference count being
7747 different from one or the reference being a readonly SV).
7748 See C<SvROK_off>.
7749
7750 =cut
7751 */
7752
7753 void
7754 Perl_sv_unref_flags(pTHX_ SV *ref, U32 flags)
7755 {
7756     SV* const target = SvRV(ref);
7757
7758     if (SvWEAKREF(ref)) {
7759         sv_del_backref(target, ref);
7760         SvWEAKREF_off(ref);
7761         SvRV_set(ref, NULL);
7762         return;
7763     }
7764     SvRV_set(ref, NULL);
7765     SvROK_off(ref);
7766     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
7767        assigned to as BEGIN {$a = \"Foo"} will fail.  */
7768     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
7769         SvREFCNT_dec(target);
7770     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
7771         sv_2mortal(target);     /* Schedule for freeing later */
7772 }
7773
7774 /*
7775 =for apidoc sv_untaint
7776
7777 Untaint an SV. Use C<SvTAINTED_off> instead.
7778 =cut
7779 */
7780
7781 void
7782 Perl_sv_untaint(pTHX_ SV *sv)
7783 {
7784     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
7785         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
7786         if (mg)
7787             mg->mg_len &= ~1;
7788     }
7789 }
7790
7791 /*
7792 =for apidoc sv_tainted
7793
7794 Test an SV for taintedness. Use C<SvTAINTED> instead.
7795 =cut
7796 */
7797
7798 bool
7799 Perl_sv_tainted(pTHX_ SV *sv)
7800 {
7801     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
7802         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
7803         if (mg && (mg->mg_len & 1) )
7804             return TRUE;
7805     }
7806     return FALSE;
7807 }
7808
7809 /*
7810 =for apidoc sv_setpviv
7811
7812 Copies an integer into the given SV, also updating its string value.
7813 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
7814
7815 =cut
7816 */
7817
7818 void
7819 Perl_sv_setpviv(pTHX_ SV *sv, IV iv)
7820 {
7821     char buf[TYPE_CHARS(UV)];
7822     char *ebuf;
7823     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
7824
7825     sv_setpvn(sv, ptr, ebuf - ptr);
7826 }
7827
7828 /*
7829 =for apidoc sv_setpviv_mg
7830
7831 Like C<sv_setpviv>, but also handles 'set' magic.
7832
7833 =cut
7834 */
7835
7836 void
7837 Perl_sv_setpviv_mg(pTHX_ SV *sv, IV iv)
7838 {
7839     sv_setpviv(sv, iv);
7840     SvSETMAGIC(sv);
7841 }
7842
7843 #if defined(PERL_IMPLICIT_CONTEXT)
7844
7845 /* pTHX_ magic can't cope with varargs, so this is a no-context
7846  * version of the main function, (which may itself be aliased to us).
7847  * Don't access this version directly.
7848  */
7849
7850 void
7851 Perl_sv_setpvf_nocontext(SV *sv, const char* pat, ...)
7852 {
7853     dTHX;
7854     va_list args;
7855     va_start(args, pat);
7856     sv_vsetpvf(sv, pat, &args);
7857     va_end(args);
7858 }
7859
7860 /* pTHX_ magic can't cope with varargs, so this is a no-context
7861  * version of the main function, (which may itself be aliased to us).
7862  * Don't access this version directly.
7863  */
7864
7865 void
7866 Perl_sv_setpvf_mg_nocontext(SV *sv, const char* pat, ...)
7867 {
7868     dTHX;
7869     va_list args;
7870     va_start(args, pat);
7871     sv_vsetpvf_mg(sv, pat, &args);
7872     va_end(args);
7873 }
7874 #endif
7875
7876 /*
7877 =for apidoc sv_setpvf
7878
7879 Works like C<sv_catpvf> but copies the text into the SV instead of
7880 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
7881
7882 =cut
7883 */
7884
7885 void
7886 Perl_sv_setpvf(pTHX_ SV *sv, const char* pat, ...)
7887 {
7888     va_list args;
7889     va_start(args, pat);
7890     sv_vsetpvf(sv, pat, &args);
7891     va_end(args);
7892 }
7893
7894 /*
7895 =for apidoc sv_vsetpvf
7896
7897 Works like C<sv_vcatpvf> but copies the text into the SV instead of
7898 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
7899
7900 Usually used via its frontend C<sv_setpvf>.
7901
7902 =cut
7903 */
7904
7905 void
7906 Perl_sv_vsetpvf(pTHX_ SV *sv, const char* pat, va_list* args)
7907 {
7908     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
7909 }
7910
7911 /*
7912 =for apidoc sv_setpvf_mg
7913
7914 Like C<sv_setpvf>, but also handles 'set' magic.
7915
7916 =cut
7917 */
7918
7919 void
7920 Perl_sv_setpvf_mg(pTHX_ SV *sv, const char* pat, ...)
7921 {
7922     va_list args;
7923     va_start(args, pat);
7924     sv_vsetpvf_mg(sv, pat, &args);
7925     va_end(args);
7926 }
7927
7928 /*
7929 =for apidoc sv_vsetpvf_mg
7930
7931 Like C<sv_vsetpvf>, but also handles 'set' magic.
7932
7933 Usually used via its frontend C<sv_setpvf_mg>.
7934
7935 =cut
7936 */
7937
7938 void
7939 Perl_sv_vsetpvf_mg(pTHX_ SV *sv, const char* pat, va_list* args)
7940 {
7941     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
7942     SvSETMAGIC(sv);
7943 }
7944
7945 #if defined(PERL_IMPLICIT_CONTEXT)
7946
7947 /* pTHX_ magic can't cope with varargs, so this is a no-context
7948  * version of the main function, (which may itself be aliased to us).
7949  * Don't access this version directly.
7950  */
7951
7952 void
7953 Perl_sv_catpvf_nocontext(SV *sv, const char* pat, ...)
7954 {
7955     dTHX;
7956     va_list args;
7957     va_start(args, pat);
7958     sv_vcatpvf(sv, pat, &args);
7959     va_end(args);
7960 }
7961
7962 /* pTHX_ magic can't cope with varargs, so this is a no-context
7963  * version of the main function, (which may itself be aliased to us).
7964  * Don't access this version directly.
7965  */
7966
7967 void
7968 Perl_sv_catpvf_mg_nocontext(SV *sv, const char* pat, ...)
7969 {
7970     dTHX;
7971     va_list args;
7972     va_start(args, pat);
7973     sv_vcatpvf_mg(sv, pat, &args);
7974     va_end(args);
7975 }
7976 #endif
7977
7978 /*
7979 =for apidoc sv_catpvf
7980
7981 Processes its arguments like C<sprintf> and appends the formatted
7982 output to an SV.  If the appended data contains "wide" characters
7983 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
7984 and characters >255 formatted with %c), the original SV might get
7985 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
7986 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
7987 valid UTF-8; if the original SV was bytes, the pattern should be too.
7988
7989 =cut */
7990
7991 void
7992 Perl_sv_catpvf(pTHX_ SV *sv, const char* pat, ...)
7993 {
7994     va_list args;
7995     va_start(args, pat);
7996     sv_vcatpvf(sv, pat, &args);
7997     va_end(args);
7998 }
7999
8000 /*
8001 =for apidoc sv_vcatpvf
8002
8003 Processes its arguments like C<vsprintf> and appends the formatted output
8004 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
8005
8006 Usually used via its frontend C<sv_catpvf>.
8007
8008 =cut
8009 */
8010
8011 void
8012 Perl_sv_vcatpvf(pTHX_ SV *sv, const char* pat, va_list* args)
8013 {
8014     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8015 }
8016
8017 /*
8018 =for apidoc sv_catpvf_mg
8019
8020 Like C<sv_catpvf>, but also handles 'set' magic.
8021
8022 =cut
8023 */
8024
8025 void
8026 Perl_sv_catpvf_mg(pTHX_ SV *sv, const char* pat, ...)
8027 {
8028     va_list args;
8029     va_start(args, pat);
8030     sv_vcatpvf_mg(sv, pat, &args);
8031     va_end(args);
8032 }
8033
8034 /*
8035 =for apidoc sv_vcatpvf_mg
8036
8037 Like C<sv_vcatpvf>, but also handles 'set' magic.
8038
8039 Usually used via its frontend C<sv_catpvf_mg>.
8040
8041 =cut
8042 */
8043
8044 void
8045 Perl_sv_vcatpvf_mg(pTHX_ SV *sv, const char* pat, va_list* args)
8046 {
8047     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8048     SvSETMAGIC(sv);
8049 }
8050
8051 /*
8052 =for apidoc sv_vsetpvfn
8053
8054 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
8055 appending it.
8056
8057 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
8058
8059 =cut
8060 */
8061
8062 void
8063 Perl_sv_vsetpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *maybe_tainted)
8064 {
8065     sv_setpvn(sv, "", 0);
8066     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
8067 }
8068
8069 STATIC I32
8070 S_expect_number(pTHX_ char** pattern)
8071 {
8072     dVAR;
8073     I32 var = 0;
8074     switch (**pattern) {
8075     case '1': case '2': case '3':
8076     case '4': case '5': case '6':
8077     case '7': case '8': case '9':
8078         var = *(*pattern)++ - '0';
8079         while (isDIGIT(**pattern)) {
8080             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
8081             if (tmp < var)
8082                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_NAME(PL_op) : "sv_vcatpvfn"));
8083             var = tmp;
8084         }
8085     }
8086     return var;
8087 }
8088
8089 STATIC char *
8090 S_F0convert(NV nv, char *endbuf, STRLEN *len)
8091 {
8092     const int neg = nv < 0;
8093     UV uv;
8094
8095     if (neg)
8096         nv = -nv;
8097     if (nv < UV_MAX) {
8098         char *p = endbuf;
8099         nv += 0.5;
8100         uv = (UV)nv;
8101         if (uv & 1 && uv == nv)
8102             uv--;                       /* Round to even */
8103         do {
8104             const unsigned dig = uv % 10;
8105             *--p = '0' + dig;
8106         } while (uv /= 10);
8107         if (neg)
8108             *--p = '-';
8109         *len = endbuf - p;
8110         return p;
8111     }
8112     return NULL;
8113 }
8114
8115
8116 /*
8117 =for apidoc sv_vcatpvfn
8118
8119 Processes its arguments like C<vsprintf> and appends the formatted output
8120 to an SV.  Uses an array of SVs if the C style variable argument list is
8121 missing (NULL).  When running with taint checks enabled, indicates via
8122 C<maybe_tainted> if results are untrustworthy (often due to the use of
8123 locales).
8124
8125 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
8126
8127 =cut
8128 */
8129
8130
8131 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
8132                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
8133                         vec_utf8 = DO_UTF8(vecsv);
8134
8135 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
8136
8137 void
8138 Perl_sv_vcatpvfn(pTHX_ SV *sv, const char *pat, STRLEN patlen, va_list *args, SV **svargs, I32 svmax, bool *maybe_tainted)
8139 {
8140     dVAR;
8141     char *p;
8142     char *q;
8143     const char *patend;
8144     STRLEN origlen;
8145     I32 svix = 0;
8146     static const char nullstr[] = "(null)";
8147     SV *argsv = NULL;
8148     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
8149     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
8150     SV *nsv = NULL;
8151     /* Times 4: a decimal digit takes more than 3 binary digits.
8152      * NV_DIG: mantissa takes than many decimal digits.
8153      * Plus 32: Playing safe. */
8154     char ebuf[IV_DIG * 4 + NV_DIG + 32];
8155     /* large enough for "%#.#f" --chip */
8156     /* what about long double NVs? --jhi */
8157
8158     PERL_UNUSED_ARG(maybe_tainted);
8159
8160     /* no matter what, this is a string now */
8161     (void)SvPV_force(sv, origlen);
8162
8163     /* special-case "", "%s", and "%-p" (SVf - see below) */
8164     if (patlen == 0)
8165         return;
8166     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
8167         if (args) {
8168             const char * const s = va_arg(*args, char*);
8169             sv_catpv(sv, s ? s : nullstr);
8170         }
8171         else if (svix < svmax) {
8172             sv_catsv(sv, *svargs);
8173         }
8174         return;
8175     }
8176     if (args && patlen == 3 && pat[0] == '%' &&
8177                 pat[1] == '-' && pat[2] == 'p') {
8178         argsv = va_arg(*args, SV*);
8179         sv_catsv(sv, argsv);
8180         return;
8181     }
8182
8183 #ifndef USE_LONG_DOUBLE
8184     /* special-case "%.<number>[gf]" */
8185     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
8186          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
8187         unsigned digits = 0;
8188         const char *pp;
8189
8190         pp = pat + 2;
8191         while (*pp >= '0' && *pp <= '9')
8192             digits = 10 * digits + (*pp++ - '0');
8193         if (pp - pat == (int)patlen - 1) {
8194             NV nv;
8195
8196             if (svix < svmax)
8197                 nv = SvNV(*svargs);
8198             else
8199                 return;
8200             if (*pp == 'g') {
8201                 /* Add check for digits != 0 because it seems that some
8202                    gconverts are buggy in this case, and we don't yet have
8203                    a Configure test for this.  */
8204                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
8205                      /* 0, point, slack */
8206                     Gconvert(nv, (int)digits, 0, ebuf);
8207                     sv_catpv(sv, ebuf);
8208                     if (*ebuf)  /* May return an empty string for digits==0 */
8209                         return;
8210                 }
8211             } else if (!digits) {
8212                 STRLEN l;
8213
8214                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
8215                     sv_catpvn(sv, p, l);
8216                     return;
8217                 }
8218             }
8219         }
8220     }
8221 #endif /* !USE_LONG_DOUBLE */
8222
8223     if (!args && svix < svmax && DO_UTF8(*svargs))
8224         has_utf8 = TRUE;
8225
8226     patend = (char*)pat + patlen;
8227     for (p = (char*)pat; p < patend; p = q) {
8228         bool alt = FALSE;
8229         bool left = FALSE;
8230         bool vectorize = FALSE;
8231         bool vectorarg = FALSE;
8232         bool vec_utf8 = FALSE;
8233         char fill = ' ';
8234         char plus = 0;
8235         char intsize = 0;
8236         STRLEN width = 0;
8237         STRLEN zeros = 0;
8238         bool has_precis = FALSE;
8239         STRLEN precis = 0;
8240         const I32 osvix = svix;
8241         bool is_utf8 = FALSE;  /* is this item utf8?   */
8242 #ifdef HAS_LDBL_SPRINTF_BUG
8243         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
8244            with sfio - Allen <allens@cpan.org> */
8245         bool fix_ldbl_sprintf_bug = FALSE;
8246 #endif
8247
8248         char esignbuf[4];
8249         U8 utf8buf[UTF8_MAXBYTES+1];
8250         STRLEN esignlen = 0;
8251
8252         const char *eptr = NULL;
8253         STRLEN elen = 0;
8254         SV *vecsv = NULL;
8255         const U8 *vecstr = NULL;
8256         STRLEN veclen = 0;
8257         char c = 0;
8258         int i;
8259         unsigned base = 0;
8260         IV iv = 0;
8261         UV uv = 0;
8262         /* we need a long double target in case HAS_LONG_DOUBLE but
8263            not USE_LONG_DOUBLE
8264         */
8265 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
8266         long double nv;
8267 #else
8268         NV nv;
8269 #endif
8270         STRLEN have;
8271         STRLEN need;
8272         STRLEN gap;
8273         const char *dotstr = ".";
8274         STRLEN dotstrlen = 1;
8275         I32 efix = 0; /* explicit format parameter index */
8276         I32 ewix = 0; /* explicit width index */
8277         I32 epix = 0; /* explicit precision index */
8278         I32 evix = 0; /* explicit vector index */
8279         bool asterisk = FALSE;
8280
8281         /* echo everything up to the next format specification */
8282         for (q = p; q < patend && *q != '%'; ++q) ;
8283         if (q > p) {
8284             if (has_utf8 && !pat_utf8)
8285                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
8286             else
8287                 sv_catpvn(sv, p, q - p);
8288             p = q;
8289         }
8290         if (q++ >= patend)
8291             break;
8292
8293 /*
8294     We allow format specification elements in this order:
8295         \d+\$              explicit format parameter index
8296         [-+ 0#]+           flags
8297         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
8298         0                  flag (as above): repeated to allow "v02"     
8299         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
8300         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
8301         [hlqLV]            size
8302     [%bcdefginopsuxDFOUX] format (mandatory)
8303 */
8304
8305         if (args) {
8306 /*  
8307         As of perl5.9.3, printf format checking is on by default.
8308         Internally, perl uses %p formats to provide an escape to
8309         some extended formatting.  This block deals with those
8310         extensions: if it does not match, (char*)q is reset and
8311         the normal format processing code is used.
8312
8313         Currently defined extensions are:
8314                 %p              include pointer address (standard)      
8315                 %-p     (SVf)   include an SV (previously %_)
8316                 %-<num>p        include an SV with precision <num>      
8317                 %1p     (VDf)   include a v-string (as %vd)
8318                 %<num>p         reserved for future extensions
8319
8320         Robin Barker 2005-07-14
8321 */
8322             char* r = q; 
8323             bool sv = FALSE;    
8324             STRLEN n = 0;
8325             if (*q == '-')
8326                 sv = *q++;
8327             n = expect_number(&q);
8328             if (*q++ == 'p') {
8329                 if (sv) {                       /* SVf */
8330                     if (n) {
8331                         precis = n;
8332                         has_precis = TRUE;
8333                     }
8334                     argsv = va_arg(*args, SV*);
8335                     eptr = SvPVx_const(argsv, elen);
8336                     if (DO_UTF8(argsv))
8337                         is_utf8 = TRUE;
8338                     goto string;
8339                 }
8340 #if vdNUMBER
8341                 else if (n == vdNUMBER) {       /* VDf */
8342                     vectorize = TRUE;
8343                     VECTORIZE_ARGS
8344                     goto format_vd;
8345                 }
8346 #endif
8347                 else if (n) {
8348                     if (ckWARN_d(WARN_INTERNAL))
8349                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
8350                         "internal %%<num>p might conflict with future printf extensions");
8351                 }
8352             }
8353             q = r; 
8354         }
8355
8356         if ( (width = expect_number(&q)) ) {
8357             if (*q == '$') {
8358                 ++q;
8359                 efix = width;
8360             } else {
8361                 goto gotwidth;
8362             }
8363         }
8364
8365         /* FLAGS */
8366
8367         while (*q) {
8368             switch (*q) {
8369             case ' ':
8370             case '+':
8371                 plus = *q++;
8372                 continue;
8373
8374             case '-':
8375                 left = TRUE;
8376                 q++;
8377                 continue;
8378
8379             case '0':
8380                 fill = *q++;
8381                 continue;
8382
8383             case '#':
8384                 alt = TRUE;
8385                 q++;
8386                 continue;
8387
8388             default:
8389                 break;
8390             }
8391             break;
8392         }
8393
8394       tryasterisk:
8395         if (*q == '*') {
8396             q++;
8397             if ( (ewix = expect_number(&q)) )
8398                 if (*q++ != '$')
8399                     goto unknown;
8400             asterisk = TRUE;
8401         }
8402         if (*q == 'v') {
8403             q++;
8404             if (vectorize)
8405                 goto unknown;
8406             if ((vectorarg = asterisk)) {
8407                 evix = ewix;
8408                 ewix = 0;
8409                 asterisk = FALSE;
8410             }
8411             vectorize = TRUE;
8412             goto tryasterisk;
8413         }
8414
8415         if (!asterisk)
8416         {
8417             if( *q == '0' )
8418                 fill = *q++;
8419             width = expect_number(&q);
8420         }
8421
8422         if (vectorize) {
8423             if (vectorarg) {
8424                 if (args)
8425                     vecsv = va_arg(*args, SV*);
8426                 else if (evix) {
8427                     vecsv = (evix > 0 && evix <= svmax)
8428                         ? svargs[evix-1] : &PL_sv_undef;
8429                 } else {
8430                     vecsv = svix < svmax ? svargs[svix++] : &PL_sv_undef;
8431                 }
8432                 dotstr = SvPV_const(vecsv, dotstrlen);
8433                 /* Keep the DO_UTF8 test *after* the SvPV call, else things go
8434                    bad with tied or overloaded values that return UTF8.  */
8435                 if (DO_UTF8(vecsv))
8436                     is_utf8 = TRUE;
8437                 else if (has_utf8) {
8438                     vecsv = sv_mortalcopy(vecsv);
8439                     sv_utf8_upgrade(vecsv);
8440                     dotstr = SvPV_const(vecsv, dotstrlen);
8441                     is_utf8 = TRUE;
8442                 }                   
8443             }
8444             if (args) {
8445                 VECTORIZE_ARGS
8446             }
8447             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
8448                 vecsv = svargs[efix ? efix-1 : svix++];
8449                 vecstr = (U8*)SvPV_const(vecsv,veclen);
8450                 vec_utf8 = DO_UTF8(vecsv);
8451
8452                 /* if this is a version object, we need to convert
8453                  * back into v-string notation and then let the
8454                  * vectorize happen normally
8455                  */
8456                 if (sv_derived_from(vecsv, "version")) {
8457                     char *version = savesvpv(vecsv);
8458                     if ( hv_exists((HV*)SvRV(vecsv), "alpha", 5 ) ) {
8459                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
8460                         "vector argument not supported with alpha versions");
8461                         goto unknown;
8462                     }
8463                     vecsv = sv_newmortal();
8464                     /* scan_vstring is expected to be called during
8465                      * tokenization, so we need to fake up the end
8466                      * of the buffer for it
8467                      */
8468                     PL_bufend = version + veclen;
8469                     scan_vstring(version, vecsv);
8470                     vecstr = (U8*)SvPV_const(vecsv, veclen);
8471                     vec_utf8 = DO_UTF8(vecsv);
8472                     Safefree(version);
8473                 }
8474             }
8475             else {
8476                 vecstr = (U8*)"";
8477                 veclen = 0;
8478             }
8479         }
8480
8481         if (asterisk) {
8482             if (args)
8483                 i = va_arg(*args, int);
8484             else
8485                 i = (ewix ? ewix <= svmax : svix < svmax) ?
8486                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
8487             left |= (i < 0);
8488             width = (i < 0) ? -i : i;
8489         }
8490       gotwidth:
8491
8492         /* PRECISION */
8493
8494         if (*q == '.') {
8495             q++;
8496             if (*q == '*') {
8497                 q++;
8498                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
8499                     goto unknown;
8500                 /* XXX: todo, support specified precision parameter */
8501                 if (epix)
8502                     goto unknown;
8503                 if (args)
8504                     i = va_arg(*args, int);
8505                 else
8506                     i = (ewix ? ewix <= svmax : svix < svmax)
8507                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
8508                 precis = (i < 0) ? 0 : i;
8509             }
8510             else {
8511                 precis = 0;
8512                 while (isDIGIT(*q))
8513                     precis = precis * 10 + (*q++ - '0');
8514             }
8515             has_precis = TRUE;
8516         }
8517
8518         /* SIZE */
8519
8520         switch (*q) {
8521 #ifdef WIN32
8522         case 'I':                       /* Ix, I32x, and I64x */
8523 #  ifdef WIN64
8524             if (q[1] == '6' && q[2] == '4') {
8525                 q += 3;
8526                 intsize = 'q';
8527                 break;
8528             }
8529 #  endif
8530             if (q[1] == '3' && q[2] == '2') {
8531                 q += 3;
8532                 break;
8533             }
8534 #  ifdef WIN64
8535             intsize = 'q';
8536 #  endif
8537             q++;
8538             break;
8539 #endif
8540 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
8541         case 'L':                       /* Ld */
8542             /*FALLTHROUGH*/
8543 #ifdef HAS_QUAD
8544         case 'q':                       /* qd */
8545 #endif
8546             intsize = 'q';
8547             q++;
8548             break;
8549 #endif
8550         case 'l':
8551 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
8552             if (*(q + 1) == 'l') {      /* lld, llf */
8553                 intsize = 'q';
8554                 q += 2;
8555                 break;
8556              }
8557 #endif
8558             /*FALLTHROUGH*/
8559         case 'h':
8560             /*FALLTHROUGH*/
8561         case 'V':
8562             intsize = *q++;
8563             break;
8564         }
8565
8566         /* CONVERSION */
8567
8568         if (*q == '%') {
8569             eptr = q++;
8570             elen = 1;
8571             if (vectorize) {
8572                 c = '%';
8573                 goto unknown;
8574             }
8575             goto string;
8576         }
8577
8578         if (!vectorize && !args) {
8579             if (efix) {
8580                 const I32 i = efix-1;
8581                 argsv = (i >= 0 && i < svmax) ? svargs[i] : &PL_sv_undef;
8582             } else {
8583                 argsv = (svix >= 0 && svix < svmax)
8584                     ? svargs[svix++] : &PL_sv_undef;
8585             }
8586         }
8587
8588         switch (c = *q++) {
8589
8590             /* STRINGS */
8591
8592         case 'c':
8593             if (vectorize)
8594                 goto unknown;
8595             uv = (args) ? va_arg(*args, int) : SvIVx(argsv);
8596             if ((uv > 255 ||
8597                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
8598                 && !IN_BYTES) {
8599                 eptr = (char*)utf8buf;
8600                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
8601                 is_utf8 = TRUE;
8602             }
8603             else {
8604                 c = (char)uv;
8605                 eptr = &c;
8606                 elen = 1;
8607             }
8608             goto string;
8609
8610         case 's':
8611             if (vectorize)
8612                 goto unknown;
8613             if (args) {
8614                 eptr = va_arg(*args, char*);
8615                 if (eptr)
8616 #ifdef MACOS_TRADITIONAL
8617                   /* On MacOS, %#s format is used for Pascal strings */
8618                   if (alt)
8619                     elen = *eptr++;
8620                   else
8621 #endif
8622                     elen = strlen(eptr);
8623                 else {
8624                     eptr = (char *)nullstr;
8625                     elen = sizeof nullstr - 1;
8626                 }
8627             }
8628             else {
8629                 eptr = SvPVx_const(argsv, elen);
8630                 if (DO_UTF8(argsv)) {
8631                     if (has_precis && precis < elen) {
8632                         I32 p = precis;
8633                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
8634                         precis = p;
8635                     }
8636                     if (width) { /* fudge width (can't fudge elen) */
8637                         width += elen - sv_len_utf8(argsv);
8638                     }
8639                     is_utf8 = TRUE;
8640                 }
8641             }
8642
8643         string:
8644             if (has_precis && elen > precis)
8645                 elen = precis;
8646             break;
8647
8648             /* INTEGERS */
8649
8650         case 'p':
8651             if (alt || vectorize)
8652                 goto unknown;
8653             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
8654             base = 16;
8655             goto integer;
8656
8657         case 'D':
8658 #ifdef IV_IS_QUAD
8659             intsize = 'q';
8660 #else
8661             intsize = 'l';
8662 #endif
8663             /*FALLTHROUGH*/
8664         case 'd':
8665         case 'i':
8666 #if vdNUMBER
8667         format_vd:
8668 #endif
8669             if (vectorize) {
8670                 STRLEN ulen;
8671                 if (!veclen)
8672                     continue;
8673                 if (vec_utf8)
8674                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
8675                                         UTF8_ALLOW_ANYUV);
8676                 else {
8677                     uv = *vecstr;
8678                     ulen = 1;
8679                 }
8680                 vecstr += ulen;
8681                 veclen -= ulen;
8682                 if (plus)
8683                      esignbuf[esignlen++] = plus;
8684             }
8685             else if (args) {
8686                 switch (intsize) {
8687                 case 'h':       iv = (short)va_arg(*args, int); break;
8688                 case 'l':       iv = va_arg(*args, long); break;
8689                 case 'V':       iv = va_arg(*args, IV); break;
8690                 default:        iv = va_arg(*args, int); break;
8691 #ifdef HAS_QUAD
8692                 case 'q':       iv = va_arg(*args, Quad_t); break;
8693 #endif
8694                 }
8695             }
8696             else {
8697                 IV tiv = SvIVx(argsv); /* work around GCC bug #13488 */
8698                 switch (intsize) {
8699                 case 'h':       iv = (short)tiv; break;
8700                 case 'l':       iv = (long)tiv; break;
8701                 case 'V':
8702                 default:        iv = tiv; break;
8703 #ifdef HAS_QUAD
8704                 case 'q':       iv = (Quad_t)tiv; break;
8705 #endif
8706                 }
8707             }
8708             if ( !vectorize )   /* we already set uv above */
8709             {
8710                 if (iv >= 0) {
8711                     uv = iv;
8712                     if (plus)
8713                         esignbuf[esignlen++] = plus;
8714                 }
8715                 else {
8716                     uv = -iv;
8717                     esignbuf[esignlen++] = '-';
8718                 }
8719             }
8720             base = 10;
8721             goto integer;
8722
8723         case 'U':
8724 #ifdef IV_IS_QUAD
8725             intsize = 'q';
8726 #else
8727             intsize = 'l';
8728 #endif
8729             /*FALLTHROUGH*/
8730         case 'u':
8731             base = 10;
8732             goto uns_integer;
8733
8734         case 'b':
8735             base = 2;
8736             goto uns_integer;
8737
8738         case 'O':
8739 #ifdef IV_IS_QUAD
8740             intsize = 'q';
8741 #else
8742             intsize = 'l';
8743 #endif
8744             /*FALLTHROUGH*/
8745         case 'o':
8746             base = 8;
8747             goto uns_integer;
8748
8749         case 'X':
8750         case 'x':
8751             base = 16;
8752
8753         uns_integer:
8754             if (vectorize) {
8755                 STRLEN ulen;
8756         vector:
8757                 if (!veclen)
8758                     continue;
8759                 if (vec_utf8)
8760                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
8761                                         UTF8_ALLOW_ANYUV);
8762                 else {
8763                     uv = *vecstr;
8764                     ulen = 1;
8765                 }
8766                 vecstr += ulen;
8767                 veclen -= ulen;
8768             }
8769             else if (args) {
8770                 switch (intsize) {
8771                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
8772                 case 'l':  uv = va_arg(*args, unsigned long); break;
8773                 case 'V':  uv = va_arg(*args, UV); break;
8774                 default:   uv = va_arg(*args, unsigned); break;
8775 #ifdef HAS_QUAD
8776                 case 'q':  uv = va_arg(*args, Uquad_t); break;
8777 #endif
8778                 }
8779             }
8780             else {
8781                 UV tuv = SvUVx(argsv); /* work around GCC bug #13488 */
8782                 switch (intsize) {
8783                 case 'h':       uv = (unsigned short)tuv; break;
8784                 case 'l':       uv = (unsigned long)tuv; break;
8785                 case 'V':
8786                 default:        uv = tuv; break;
8787 #ifdef HAS_QUAD
8788                 case 'q':       uv = (Uquad_t)tuv; break;
8789 #endif
8790                 }
8791             }
8792
8793         integer:
8794             {
8795                 char *ptr = ebuf + sizeof ebuf;
8796                 switch (base) {
8797                     unsigned dig;
8798                 case 16:
8799                     if (!uv)
8800                         alt = FALSE;
8801                     p = (char*)((c == 'X')
8802                                 ? "0123456789ABCDEF" : "0123456789abcdef");
8803                     do {
8804                         dig = uv & 15;
8805                         *--ptr = p[dig];
8806                     } while (uv >>= 4);
8807                     if (alt) {
8808                         esignbuf[esignlen++] = '0';
8809                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
8810                     }
8811                     break;
8812                 case 8:
8813                     do {
8814                         dig = uv & 7;
8815                         *--ptr = '0' + dig;
8816                     } while (uv >>= 3);
8817                     if (alt && *ptr != '0')
8818                         *--ptr = '0';
8819                     break;
8820                 case 2:
8821                     if (!uv)
8822                         alt = FALSE;
8823                     do {
8824                         dig = uv & 1;
8825                         *--ptr = '0' + dig;
8826                     } while (uv >>= 1);
8827                     if (alt) {
8828                         esignbuf[esignlen++] = '0';
8829                         esignbuf[esignlen++] = 'b';
8830                     }
8831                     break;
8832                 default:                /* it had better be ten or less */
8833                     do {
8834                         dig = uv % base;
8835                         *--ptr = '0' + dig;
8836                     } while (uv /= base);
8837                     break;
8838                 }
8839                 elen = (ebuf + sizeof ebuf) - ptr;
8840                 eptr = ptr;
8841                 if (has_precis) {
8842                     if (precis > elen)
8843                         zeros = precis - elen;
8844                     else if (precis == 0 && elen == 1 && *eptr == '0')
8845                         elen = 0;
8846                 }
8847             }
8848             break;
8849
8850             /* FLOATING POINT */
8851
8852         case 'F':
8853             c = 'f';            /* maybe %F isn't supported here */
8854             /*FALLTHROUGH*/
8855         case 'e': case 'E':
8856         case 'f':
8857         case 'g': case 'G':
8858             if (vectorize)
8859                 goto unknown;
8860
8861             /* This is evil, but floating point is even more evil */
8862
8863             /* for SV-style calling, we can only get NV
8864                for C-style calling, we assume %f is double;
8865                for simplicity we allow any of %Lf, %llf, %qf for long double
8866             */
8867             switch (intsize) {
8868             case 'V':
8869 #if defined(USE_LONG_DOUBLE)
8870                 intsize = 'q';
8871 #endif
8872                 break;
8873 /* [perl #20339] - we should accept and ignore %lf rather than die */
8874             case 'l':
8875                 /*FALLTHROUGH*/
8876             default:
8877 #if defined(USE_LONG_DOUBLE)
8878                 intsize = args ? 0 : 'q';
8879 #endif
8880                 break;
8881             case 'q':
8882 #if defined(HAS_LONG_DOUBLE)
8883                 break;
8884 #else
8885                 /*FALLTHROUGH*/
8886 #endif
8887             case 'h':
8888                 goto unknown;
8889             }
8890
8891             /* now we need (long double) if intsize == 'q', else (double) */
8892             nv = (args) ?
8893 #if LONG_DOUBLESIZE > DOUBLESIZE
8894                 intsize == 'q' ?
8895                     va_arg(*args, long double) :
8896                     va_arg(*args, double)
8897 #else
8898                     va_arg(*args, double)
8899 #endif
8900                 : SvNVx(argsv);
8901
8902             need = 0;
8903             if (c != 'e' && c != 'E') {
8904                 i = PERL_INT_MIN;
8905                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
8906                    will cast our (long double) to (double) */
8907                 (void)Perl_frexp(nv, &i);
8908                 if (i == PERL_INT_MIN)
8909                     Perl_die(aTHX_ "panic: frexp");
8910                 if (i > 0)
8911                     need = BIT_DIGITS(i);
8912             }
8913             need += has_precis ? precis : 6; /* known default */
8914
8915             if (need < width)
8916                 need = width;
8917
8918 #ifdef HAS_LDBL_SPRINTF_BUG
8919             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
8920                with sfio - Allen <allens@cpan.org> */
8921
8922 #  ifdef DBL_MAX
8923 #    define MY_DBL_MAX DBL_MAX
8924 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
8925 #    if DOUBLESIZE >= 8
8926 #      define MY_DBL_MAX 1.7976931348623157E+308L
8927 #    else
8928 #      define MY_DBL_MAX 3.40282347E+38L
8929 #    endif
8930 #  endif
8931
8932 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
8933 #    define MY_DBL_MAX_BUG 1L
8934 #  else
8935 #    define MY_DBL_MAX_BUG MY_DBL_MAX
8936 #  endif
8937
8938 #  ifdef DBL_MIN
8939 #    define MY_DBL_MIN DBL_MIN
8940 #  else  /* XXX guessing! -Allen */
8941 #    if DOUBLESIZE >= 8
8942 #      define MY_DBL_MIN 2.2250738585072014E-308L
8943 #    else
8944 #      define MY_DBL_MIN 1.17549435E-38L
8945 #    endif
8946 #  endif
8947
8948             if ((intsize == 'q') && (c == 'f') &&
8949                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
8950                 (need < DBL_DIG)) {
8951                 /* it's going to be short enough that
8952                  * long double precision is not needed */
8953
8954                 if ((nv <= 0L) && (nv >= -0L))
8955                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
8956                 else {
8957                     /* would use Perl_fp_class as a double-check but not
8958                      * functional on IRIX - see perl.h comments */
8959
8960                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
8961                         /* It's within the range that a double can represent */
8962 #if defined(DBL_MAX) && !defined(DBL_MIN)
8963                         if ((nv >= ((long double)1/DBL_MAX)) ||
8964                             (nv <= (-(long double)1/DBL_MAX)))
8965 #endif
8966                         fix_ldbl_sprintf_bug = TRUE;
8967                     }
8968                 }
8969                 if (fix_ldbl_sprintf_bug == TRUE) {
8970                     double temp;
8971
8972                     intsize = 0;
8973                     temp = (double)nv;
8974                     nv = (NV)temp;
8975                 }
8976             }
8977
8978 #  undef MY_DBL_MAX
8979 #  undef MY_DBL_MAX_BUG
8980 #  undef MY_DBL_MIN
8981
8982 #endif /* HAS_LDBL_SPRINTF_BUG */
8983
8984             need += 20; /* fudge factor */
8985             if (PL_efloatsize < need) {
8986                 Safefree(PL_efloatbuf);
8987                 PL_efloatsize = need + 20; /* more fudge */
8988                 Newx(PL_efloatbuf, PL_efloatsize, char);
8989                 PL_efloatbuf[0] = '\0';
8990             }
8991
8992             if ( !(width || left || plus || alt) && fill != '0'
8993                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
8994                 /* See earlier comment about buggy Gconvert when digits,
8995                    aka precis is 0  */
8996                 if ( c == 'g' && precis) {
8997                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
8998                     /* May return an empty string for digits==0 */
8999                     if (*PL_efloatbuf) {
9000                         elen = strlen(PL_efloatbuf);
9001                         goto float_converted;
9002                     }
9003                 } else if ( c == 'f' && !precis) {
9004                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
9005                         break;
9006                 }
9007             }
9008             {
9009                 char *ptr = ebuf + sizeof ebuf;
9010                 *--ptr = '\0';
9011                 *--ptr = c;
9012                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
9013 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
9014                 if (intsize == 'q') {
9015                     /* Copy the one or more characters in a long double
9016                      * format before the 'base' ([efgEFG]) character to
9017                      * the format string. */
9018                     static char const prifldbl[] = PERL_PRIfldbl;
9019                     char const *p = prifldbl + sizeof(prifldbl) - 3;
9020                     while (p >= prifldbl) { *--ptr = *p--; }
9021                 }
9022 #endif
9023                 if (has_precis) {
9024                     base = precis;
9025                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
9026                     *--ptr = '.';
9027                 }
9028                 if (width) {
9029                     base = width;
9030                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
9031                 }
9032                 if (fill == '0')
9033                     *--ptr = fill;
9034                 if (left)
9035                     *--ptr = '-';
9036                 if (plus)
9037                     *--ptr = plus;
9038                 if (alt)
9039                     *--ptr = '#';
9040                 *--ptr = '%';
9041
9042                 /* No taint.  Otherwise we are in the strange situation
9043                  * where printf() taints but print($float) doesn't.
9044                  * --jhi */
9045 #if defined(HAS_LONG_DOUBLE)
9046                 elen = ((intsize == 'q')
9047                         ? my_sprintf(PL_efloatbuf, ptr, nv)
9048                         : my_sprintf(PL_efloatbuf, ptr, (double)nv));
9049 #else
9050                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
9051 #endif
9052             }
9053         float_converted:
9054             eptr = PL_efloatbuf;
9055             break;
9056
9057             /* SPECIAL */
9058
9059         case 'n':
9060             if (vectorize)
9061                 goto unknown;
9062             i = SvCUR(sv) - origlen;
9063             if (args) {
9064                 switch (intsize) {
9065                 case 'h':       *(va_arg(*args, short*)) = i; break;
9066                 default:        *(va_arg(*args, int*)) = i; break;
9067                 case 'l':       *(va_arg(*args, long*)) = i; break;
9068                 case 'V':       *(va_arg(*args, IV*)) = i; break;
9069 #ifdef HAS_QUAD
9070                 case 'q':       *(va_arg(*args, Quad_t*)) = i; break;
9071 #endif
9072                 }
9073             }
9074             else
9075                 sv_setuv_mg(argsv, (UV)i);
9076             continue;   /* not "break" */
9077
9078             /* UNKNOWN */
9079
9080         default:
9081       unknown:
9082             if (!args
9083                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
9084                 && ckWARN(WARN_PRINTF))
9085             {
9086                 SV * const msg = sv_newmortal();
9087                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
9088                           (PL_op->op_type == OP_PRTF) ? "" : "s");
9089                 if (c) {
9090                     if (isPRINT(c))
9091                         Perl_sv_catpvf(aTHX_ msg,
9092                                        "\"%%%c\"", c & 0xFF);
9093                     else
9094                         Perl_sv_catpvf(aTHX_ msg,
9095                                        "\"%%\\%03"UVof"\"",
9096                                        (UV)c & 0xFF);
9097                 } else
9098                     sv_catpvs(msg, "end of string");
9099                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, msg); /* yes, this is reentrant */
9100             }
9101
9102             /* output mangled stuff ... */
9103             if (c == '\0')
9104                 --q;
9105             eptr = p;
9106             elen = q - p;
9107
9108             /* ... right here, because formatting flags should not apply */
9109             SvGROW(sv, SvCUR(sv) + elen + 1);
9110             p = SvEND(sv);
9111             Copy(eptr, p, elen, char);
9112             p += elen;
9113             *p = '\0';
9114             SvCUR_set(sv, p - SvPVX_const(sv));
9115             svix = osvix;
9116             continue;   /* not "break" */
9117         }
9118
9119         /* calculate width before utf8_upgrade changes it */
9120         have = esignlen + zeros + elen;
9121         if (have < zeros)
9122             Perl_croak_nocontext(PL_memory_wrap);
9123
9124         if (is_utf8 != has_utf8) {
9125              if (is_utf8) {
9126                   if (SvCUR(sv))
9127                        sv_utf8_upgrade(sv);
9128              }
9129              else {
9130                   SV * const nsv = sv_2mortal(newSVpvn(eptr, elen));
9131                   sv_utf8_upgrade(nsv);
9132                   eptr = SvPVX_const(nsv);
9133                   elen = SvCUR(nsv);
9134              }
9135              SvGROW(sv, SvCUR(sv) + elen + 1);
9136              p = SvEND(sv);
9137              *p = '\0';
9138         }
9139
9140         need = (have > width ? have : width);
9141         gap = need - have;
9142
9143         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
9144             Perl_croak_nocontext(PL_memory_wrap);
9145         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
9146         p = SvEND(sv);
9147         if (esignlen && fill == '0') {
9148             int i;
9149             for (i = 0; i < (int)esignlen; i++)
9150                 *p++ = esignbuf[i];
9151         }
9152         if (gap && !left) {
9153             memset(p, fill, gap);
9154             p += gap;
9155         }
9156         if (esignlen && fill != '0') {
9157             int i;
9158             for (i = 0; i < (int)esignlen; i++)
9159                 *p++ = esignbuf[i];
9160         }
9161         if (zeros) {
9162             int i;
9163             for (i = zeros; i; i--)
9164                 *p++ = '0';
9165         }
9166         if (elen) {
9167             Copy(eptr, p, elen, char);
9168             p += elen;
9169         }
9170         if (gap && left) {
9171             memset(p, ' ', gap);
9172             p += gap;
9173         }
9174         if (vectorize) {
9175             if (veclen) {
9176                 Copy(dotstr, p, dotstrlen, char);
9177                 p += dotstrlen;
9178             }
9179             else
9180                 vectorize = FALSE;              /* done iterating over vecstr */
9181         }
9182         if (is_utf8)
9183             has_utf8 = TRUE;
9184         if (has_utf8)
9185             SvUTF8_on(sv);
9186         *p = '\0';
9187         SvCUR_set(sv, p - SvPVX_const(sv));
9188         if (vectorize) {
9189             esignlen = 0;
9190             goto vector;
9191         }
9192     }
9193 }
9194
9195 /* =========================================================================
9196
9197 =head1 Cloning an interpreter
9198
9199 All the macros and functions in this section are for the private use of
9200 the main function, perl_clone().
9201
9202 The foo_dup() functions make an exact copy of an existing foo thinngy.
9203 During the course of a cloning, a hash table is used to map old addresses
9204 to new addresses. The table is created and manipulated with the
9205 ptr_table_* functions.
9206
9207 =cut
9208
9209 ============================================================================*/
9210
9211
9212 #if defined(USE_ITHREADS)
9213
9214 #ifndef GpREFCNT_inc
9215 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
9216 #endif
9217
9218
9219 #define sv_dup_inc(s,t) SvREFCNT_inc(sv_dup(s,t))
9220 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup(s,t))
9221 #define av_dup(s,t)     (AV*)sv_dup((SV*)s,t)
9222 #define av_dup_inc(s,t) (AV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9223 #define hv_dup(s,t)     (HV*)sv_dup((SV*)s,t)
9224 #define hv_dup_inc(s,t) (HV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9225 #define cv_dup(s,t)     (CV*)sv_dup((SV*)s,t)
9226 #define cv_dup_inc(s,t) (CV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9227 #define io_dup(s,t)     (IO*)sv_dup((SV*)s,t)
9228 #define io_dup_inc(s,t) (IO*)SvREFCNT_inc(sv_dup((SV*)s,t))
9229 #define gv_dup(s,t)     (GV*)sv_dup((SV*)s,t)
9230 #define gv_dup_inc(s,t) (GV*)SvREFCNT_inc(sv_dup((SV*)s,t))
9231 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
9232 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
9233
9234
9235 /* Duplicate a regexp. Required reading: pregcomp() and pregfree() in
9236    regcomp.c. AMS 20010712 */
9237
9238 REGEXP *
9239 Perl_re_dup(pTHX_ const REGEXP *r, CLONE_PARAMS *param)
9240 {
9241     dVAR;
9242     REGEXP *ret;
9243     int i, len, npar;
9244     struct reg_substr_datum *s;
9245
9246     if (!r)
9247         return (REGEXP *)NULL;
9248
9249     if ((ret = (REGEXP *)ptr_table_fetch(PL_ptr_table, r)))
9250         return ret;
9251
9252     len = r->offsets[0];
9253     npar = r->nparens+1;
9254
9255     Newxc(ret, sizeof(regexp) + (len+1)*sizeof(regnode), char, regexp);
9256     Copy(r->program, ret->program, len+1, regnode);
9257
9258     Newx(ret->startp, npar, I32);
9259     Copy(r->startp, ret->startp, npar, I32);
9260     Newx(ret->endp, npar, I32);
9261     Copy(r->startp, ret->startp, npar, I32);
9262
9263     Newx(ret->substrs, 1, struct reg_substr_data);
9264     for (s = ret->substrs->data, i = 0; i < 3; i++, s++) {
9265         s->min_offset = r->substrs->data[i].min_offset;
9266         s->max_offset = r->substrs->data[i].max_offset;
9267         s->substr     = sv_dup_inc(r->substrs->data[i].substr, param);
9268         s->utf8_substr = sv_dup_inc(r->substrs->data[i].utf8_substr, param);
9269     }
9270
9271     ret->regstclass = NULL;
9272     if (r->data) {
9273         struct reg_data *d;
9274         const int count = r->data->count;
9275         int i;
9276
9277         Newxc(d, sizeof(struct reg_data) + count*sizeof(void *),
9278                 char, struct reg_data);
9279         Newx(d->what, count, U8);
9280
9281         d->count = count;
9282         for (i = 0; i < count; i++) {
9283             d->what[i] = r->data->what[i];
9284             switch (d->what[i]) {
9285                 /* legal options are one of: sfpont
9286                    see also regcomp.h and pregfree() */
9287             case 's':
9288                 d->data[i] = sv_dup_inc((SV *)r->data->data[i], param);
9289                 break;
9290             case 'p':
9291                 d->data[i] = av_dup_inc((AV *)r->data->data[i], param);
9292                 break;
9293             case 'f':
9294                 /* This is cheating. */
9295                 Newx(d->data[i], 1, struct regnode_charclass_class);
9296                 StructCopy(r->data->data[i], d->data[i],
9297                             struct regnode_charclass_class);
9298                 ret->regstclass = (regnode*)d->data[i];
9299                 break;
9300             case 'o':
9301                 /* Compiled op trees are readonly, and can thus be
9302                    shared without duplication. */
9303                 OP_REFCNT_LOCK;
9304                 d->data[i] = (void*)OpREFCNT_inc((OP*)r->data->data[i]);
9305                 OP_REFCNT_UNLOCK;
9306                 break;
9307             case 'n':
9308                 d->data[i] = r->data->data[i];
9309                 break;
9310             case 't':
9311                 d->data[i] = r->data->data[i];
9312                 OP_REFCNT_LOCK;
9313                 ((reg_trie_data*)d->data[i])->refcount++;
9314                 OP_REFCNT_UNLOCK;
9315                 break;
9316             default:
9317                 Perl_croak(aTHX_ "panic: re_dup unknown data code '%c'", r->data->what[i]);
9318             }
9319         }
9320
9321         ret->data = d;
9322     }
9323     else
9324         ret->data = NULL;
9325
9326     Newx(ret->offsets, 2*len+1, U32);
9327     Copy(r->offsets, ret->offsets, 2*len+1, U32);
9328
9329     ret->precomp        = SAVEPVN(r->precomp, r->prelen);
9330     ret->refcnt         = r->refcnt;
9331     ret->minlen         = r->minlen;
9332     ret->prelen         = r->prelen;
9333     ret->nparens        = r->nparens;
9334     ret->lastparen      = r->lastparen;
9335     ret->lastcloseparen = r->lastcloseparen;
9336     ret->reganch        = r->reganch;
9337
9338     ret->sublen         = r->sublen;
9339
9340     if (RX_MATCH_COPIED(ret))
9341         ret->subbeg  = SAVEPVN(r->subbeg, r->sublen);
9342     else
9343         ret->subbeg = NULL;
9344 #ifdef PERL_OLD_COPY_ON_WRITE
9345     ret->saved_copy = NULL;
9346 #endif
9347
9348     ptr_table_store(PL_ptr_table, r, ret);
9349     return ret;
9350 }
9351
9352 /* duplicate a file handle */
9353
9354 PerlIO *
9355 Perl_fp_dup(pTHX_ PerlIO *fp, char type, CLONE_PARAMS *param)
9356 {
9357     PerlIO *ret;
9358
9359     PERL_UNUSED_ARG(type);
9360
9361     if (!fp)
9362         return (PerlIO*)NULL;
9363
9364     /* look for it in the table first */
9365     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
9366     if (ret)
9367         return ret;
9368
9369     /* create anew and remember what it is */
9370     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
9371     ptr_table_store(PL_ptr_table, fp, ret);
9372     return ret;
9373 }
9374
9375 /* duplicate a directory handle */
9376
9377 DIR *
9378 Perl_dirp_dup(pTHX_ DIR *dp)
9379 {
9380     PERL_UNUSED_CONTEXT;
9381     if (!dp)
9382         return (DIR*)NULL;
9383     /* XXX TODO */
9384     return dp;
9385 }
9386
9387 /* duplicate a typeglob */
9388
9389 GP *
9390 Perl_gp_dup(pTHX_ GP *gp, CLONE_PARAMS* param)
9391 {
9392     GP *ret;
9393
9394     if (!gp)
9395         return (GP*)NULL;
9396     /* look for it in the table first */
9397     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
9398     if (ret)
9399         return ret;
9400
9401     /* create anew and remember what it is */
9402     Newxz(ret, 1, GP);
9403     ptr_table_store(PL_ptr_table, gp, ret);
9404
9405     /* clone */
9406     ret->gp_refcnt      = 0;                    /* must be before any other dups! */
9407     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
9408     ret->gp_io          = io_dup_inc(gp->gp_io, param);
9409     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
9410     ret->gp_av          = av_dup_inc(gp->gp_av, param);
9411     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
9412     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
9413     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
9414     ret->gp_cvgen       = gp->gp_cvgen;
9415     ret->gp_line        = gp->gp_line;
9416     ret->gp_file        = gp->gp_file;          /* points to COP.cop_file */
9417     return ret;
9418 }
9419
9420 /* duplicate a chain of magic */
9421
9422 MAGIC *
9423 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS* param)
9424 {
9425     MAGIC *mgprev = (MAGIC*)NULL;
9426     MAGIC *mgret;
9427     if (!mg)
9428         return (MAGIC*)NULL;
9429     /* look for it in the table first */
9430     mgret = (MAGIC*)ptr_table_fetch(PL_ptr_table, mg);
9431     if (mgret)
9432         return mgret;
9433
9434     for (; mg; mg = mg->mg_moremagic) {
9435         MAGIC *nmg;
9436         Newxz(nmg, 1, MAGIC);
9437         if (mgprev)
9438             mgprev->mg_moremagic = nmg;
9439         else
9440             mgret = nmg;
9441         nmg->mg_virtual = mg->mg_virtual;       /* XXX copy dynamic vtable? */
9442         nmg->mg_private = mg->mg_private;
9443         nmg->mg_type    = mg->mg_type;
9444         nmg->mg_flags   = mg->mg_flags;
9445         if (mg->mg_type == PERL_MAGIC_qr) {
9446             nmg->mg_obj = (SV*)re_dup((REGEXP*)mg->mg_obj, param);
9447         }
9448         else if(mg->mg_type == PERL_MAGIC_backref) {
9449             /* The backref AV has its reference count deliberately bumped by
9450                1.  */
9451             nmg->mg_obj = SvREFCNT_inc(av_dup_inc((AV*) mg->mg_obj, param));
9452         }
9453         else if (mg->mg_type == PERL_MAGIC_symtab) {
9454             nmg->mg_obj = mg->mg_obj;
9455         }
9456         else {
9457             nmg->mg_obj = (mg->mg_flags & MGf_REFCOUNTED)
9458                               ? sv_dup_inc(mg->mg_obj, param)
9459                               : sv_dup(mg->mg_obj, param);
9460         }
9461         nmg->mg_len     = mg->mg_len;
9462         nmg->mg_ptr     = mg->mg_ptr;   /* XXX random ptr? */
9463         if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
9464             if (mg->mg_len > 0) {
9465                 nmg->mg_ptr     = SAVEPVN(mg->mg_ptr, mg->mg_len);
9466                 if (mg->mg_type == PERL_MAGIC_overload_table &&
9467                         AMT_AMAGIC((AMT*)mg->mg_ptr))
9468                 {
9469                     const AMT * const amtp = (AMT*)mg->mg_ptr;
9470                     AMT * const namtp = (AMT*)nmg->mg_ptr;
9471                     I32 i;
9472                     for (i = 1; i < NofAMmeth; i++) {
9473                         namtp->table[i] = cv_dup_inc(amtp->table[i], param);
9474                     }
9475                 }
9476             }
9477             else if (mg->mg_len == HEf_SVKEY)
9478                 nmg->mg_ptr     = (char*)sv_dup_inc((SV*)mg->mg_ptr, param);
9479         }
9480         if ((mg->mg_flags & MGf_DUP) && mg->mg_virtual && mg->mg_virtual->svt_dup) {
9481             CALL_FPTR(nmg->mg_virtual->svt_dup)(aTHX_ nmg, param);
9482         }
9483         mgprev = nmg;
9484     }
9485     return mgret;
9486 }
9487
9488 /* create a new pointer-mapping table */
9489
9490 PTR_TBL_t *
9491 Perl_ptr_table_new(pTHX)
9492 {
9493     PTR_TBL_t *tbl;
9494     PERL_UNUSED_CONTEXT;
9495
9496     Newxz(tbl, 1, PTR_TBL_t);
9497     tbl->tbl_max        = 511;
9498     tbl->tbl_items      = 0;
9499     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
9500     return tbl;
9501 }
9502
9503 #define PTR_TABLE_HASH(ptr) \
9504   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
9505
9506 /* 
9507    we use the PTE_SVSLOT 'reservation' made above, both here (in the
9508    following define) and at call to new_body_inline made below in 
9509    Perl_ptr_table_store()
9510  */
9511
9512 #define del_pte(p)     del_body_type(p, PTE_SVSLOT)
9513
9514 /* map an existing pointer using a table */
9515
9516 STATIC PTR_TBL_ENT_t *
9517 S_ptr_table_find(PTR_TBL_t *tbl, const void *sv) {
9518     PTR_TBL_ENT_t *tblent;
9519     const UV hash = PTR_TABLE_HASH(sv);
9520     assert(tbl);
9521     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
9522     for (; tblent; tblent = tblent->next) {
9523         if (tblent->oldval == sv)
9524             return tblent;
9525     }
9526     return 0;
9527 }
9528
9529 void *
9530 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *tbl, const void *sv)
9531 {
9532     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
9533     PERL_UNUSED_CONTEXT;
9534     return tblent ? tblent->newval : (void *) 0;
9535 }
9536
9537 /* add a new entry to a pointer-mapping table */
9538
9539 void
9540 Perl_ptr_table_store(pTHX_ PTR_TBL_t *tbl, const void *oldsv, void *newsv)
9541 {
9542     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
9543     PERL_UNUSED_CONTEXT;
9544
9545     if (tblent) {
9546         tblent->newval = newsv;
9547     } else {
9548         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
9549
9550         new_body_inline(tblent, PTE_SVSLOT);
9551
9552         tblent->oldval = oldsv;
9553         tblent->newval = newsv;
9554         tblent->next = tbl->tbl_ary[entry];
9555         tbl->tbl_ary[entry] = tblent;
9556         tbl->tbl_items++;
9557         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
9558             ptr_table_split(tbl);
9559     }
9560 }
9561
9562 /* double the hash bucket size of an existing ptr table */
9563
9564 void
9565 Perl_ptr_table_split(pTHX_ PTR_TBL_t *tbl)
9566 {
9567     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
9568     const UV oldsize = tbl->tbl_max + 1;
9569     UV newsize = oldsize * 2;
9570     UV i;
9571     PERL_UNUSED_CONTEXT;
9572
9573     Renew(ary, newsize, PTR_TBL_ENT_t*);
9574     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
9575     tbl->tbl_max = --newsize;
9576     tbl->tbl_ary = ary;
9577     for (i=0; i < oldsize; i++, ary++) {
9578         PTR_TBL_ENT_t **curentp, **entp, *ent;
9579         if (!*ary)
9580             continue;
9581         curentp = ary + oldsize;
9582         for (entp = ary, ent = *ary; ent; ent = *entp) {
9583             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
9584                 *entp = ent->next;
9585                 ent->next = *curentp;
9586                 *curentp = ent;
9587                 continue;
9588             }
9589             else
9590                 entp = &ent->next;
9591         }
9592     }
9593 }
9594
9595 /* remove all the entries from a ptr table */
9596
9597 void
9598 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *tbl)
9599 {
9600     if (tbl && tbl->tbl_items) {
9601         register PTR_TBL_ENT_t * const * const array = tbl->tbl_ary;
9602         UV riter = tbl->tbl_max;
9603
9604         do {
9605             PTR_TBL_ENT_t *entry = array[riter];
9606
9607             while (entry) {
9608                 PTR_TBL_ENT_t * const oentry = entry;
9609                 entry = entry->next;
9610                 del_pte(oentry);
9611             }
9612         } while (riter--);
9613
9614         tbl->tbl_items = 0;
9615     }
9616 }
9617
9618 /* clear and free a ptr table */
9619
9620 void
9621 Perl_ptr_table_free(pTHX_ PTR_TBL_t *tbl)
9622 {
9623     if (!tbl) {
9624         return;
9625     }
9626     ptr_table_clear(tbl);
9627     Safefree(tbl->tbl_ary);
9628     Safefree(tbl);
9629 }
9630
9631
9632 void
9633 Perl_rvpv_dup(pTHX_ SV *dstr, const SV *sstr, CLONE_PARAMS* param)
9634 {
9635     if (SvROK(sstr)) {
9636         SvRV_set(dstr, SvWEAKREF(sstr)
9637                        ? sv_dup(SvRV(sstr), param)
9638                        : sv_dup_inc(SvRV(sstr), param));
9639
9640     }
9641     else if (SvPVX_const(sstr)) {
9642         /* Has something there */
9643         if (SvLEN(sstr)) {
9644             /* Normal PV - clone whole allocated space */
9645             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
9646             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
9647                 /* Not that normal - actually sstr is copy on write.
9648                    But we are a true, independant SV, so:  */
9649                 SvREADONLY_off(dstr);
9650                 SvFAKE_off(dstr);
9651             }
9652         }
9653         else {
9654             /* Special case - not normally malloced for some reason */
9655             if (isGV_with_GP(sstr)) {
9656                 /* Don't need to do anything here.  */
9657             }
9658             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
9659                 /* A "shared" PV - clone it as "shared" PV */
9660                 SvPV_set(dstr,
9661                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
9662                                          param)));
9663             }
9664             else {
9665                 /* Some other special case - random pointer */
9666                 SvPV_set(dstr, SvPVX(sstr));            
9667             }
9668         }
9669     }
9670     else {
9671         /* Copy the NULL */
9672         if (SvTYPE(dstr) == SVt_RV)
9673             SvRV_set(dstr, NULL);
9674         else
9675             SvPV_set(dstr, NULL);
9676     }
9677 }
9678
9679 /* duplicate an SV of any type (including AV, HV etc) */
9680
9681 SV *
9682 Perl_sv_dup(pTHX_ const SV *sstr, CLONE_PARAMS* param)
9683 {
9684     dVAR;
9685     SV *dstr;
9686
9687     if (!sstr || SvTYPE(sstr) == SVTYPEMASK)
9688         return NULL;
9689     /* look for it in the table first */
9690     dstr = (SV*)ptr_table_fetch(PL_ptr_table, sstr);
9691     if (dstr)
9692         return dstr;
9693
9694     if(param->flags & CLONEf_JOIN_IN) {
9695         /** We are joining here so we don't want do clone
9696             something that is bad **/
9697         if (SvTYPE(sstr) == SVt_PVHV) {
9698             const char * const hvname = HvNAME_get(sstr);
9699             if (hvname)
9700                 /** don't clone stashes if they already exist **/
9701                 return (SV*)gv_stashpv(hvname,0);
9702         }
9703     }
9704
9705     /* create anew and remember what it is */
9706     new_SV(dstr);
9707
9708 #ifdef DEBUG_LEAKING_SCALARS
9709     dstr->sv_debug_optype = sstr->sv_debug_optype;
9710     dstr->sv_debug_line = sstr->sv_debug_line;
9711     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
9712     dstr->sv_debug_cloned = 1;
9713     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
9714 #endif
9715
9716     ptr_table_store(PL_ptr_table, sstr, dstr);
9717
9718     /* clone */
9719     SvFLAGS(dstr)       = SvFLAGS(sstr);
9720     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
9721     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
9722
9723 #ifdef DEBUGGING
9724     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
9725         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
9726                       PL_watch_pvx, SvPVX_const(sstr));
9727 #endif
9728
9729     /* don't clone objects whose class has asked us not to */
9730     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
9731         SvFLAGS(dstr) &= ~SVTYPEMASK;
9732         SvOBJECT_off(dstr);
9733         return dstr;
9734     }
9735
9736     switch (SvTYPE(sstr)) {
9737     case SVt_NULL:
9738         SvANY(dstr)     = NULL;
9739         break;
9740     case SVt_IV:
9741         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
9742         SvIV_set(dstr, SvIVX(sstr));
9743         break;
9744     case SVt_NV:
9745         SvANY(dstr)     = new_XNV();
9746         SvNV_set(dstr, SvNVX(sstr));
9747         break;
9748     case SVt_RV:
9749         SvANY(dstr)     = &(dstr->sv_u.svu_rv);
9750         Perl_rvpv_dup(aTHX_ dstr, sstr, param);
9751         break;
9752     default:
9753         {
9754             /* These are all the types that need complex bodies allocating.  */
9755             void *new_body;
9756             const svtype sv_type = SvTYPE(sstr);
9757             const struct body_details *const sv_type_details
9758                 = bodies_by_type + sv_type;
9759
9760             switch (sv_type) {
9761             default:
9762                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
9763                 break;
9764
9765             case SVt_PVGV:
9766                 if (GvUNIQUE((GV*)sstr)) {
9767                     /*EMPTY*/;   /* Do sharing here, and fall through */
9768                 }
9769             case SVt_PVIO:
9770             case SVt_PVFM:
9771             case SVt_PVHV:
9772             case SVt_PVAV:
9773             case SVt_PVBM:
9774             case SVt_PVCV:
9775             case SVt_PVLV:
9776             case SVt_PVMG:
9777             case SVt_PVNV:
9778             case SVt_PVIV:
9779             case SVt_PV:
9780                 assert(sv_type_details->body_size);
9781                 if (sv_type_details->arena) {
9782                     new_body_inline(new_body, sv_type);
9783                     new_body
9784                         = (void*)((char*)new_body - sv_type_details->offset);
9785                 } else {
9786                     new_body = new_NOARENA(sv_type_details);
9787                 }
9788             }
9789             assert(new_body);
9790             SvANY(dstr) = new_body;
9791
9792 #ifndef PURIFY
9793             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
9794                  ((char*)SvANY(dstr)) + sv_type_details->offset,
9795                  sv_type_details->copy, char);
9796 #else
9797             Copy(((char*)SvANY(sstr)),
9798                  ((char*)SvANY(dstr)),
9799                  sv_type_details->body_size + sv_type_details->offset, char);
9800 #endif
9801
9802             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
9803                 && !isGV_with_GP(dstr))
9804                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
9805
9806             /* The Copy above means that all the source (unduplicated) pointers
9807                are now in the destination.  We can check the flags and the
9808                pointers in either, but it's possible that there's less cache
9809                missing by always going for the destination.
9810                FIXME - instrument and check that assumption  */
9811             if (sv_type >= SVt_PVMG) {
9812                 HV *ourstash;
9813                 if ((sv_type == SVt_PVMG) && (ourstash = OURSTASH(dstr))) {
9814                     OURSTASH_set(dstr, hv_dup_inc(ourstash, param));
9815                 } else if (SvMAGIC(dstr))
9816                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
9817                 if (SvSTASH(dstr))
9818                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
9819             }
9820
9821             /* The cast silences a GCC warning about unhandled types.  */
9822             switch ((int)sv_type) {
9823             case SVt_PV:
9824                 break;
9825             case SVt_PVIV:
9826                 break;
9827             case SVt_PVNV:
9828                 break;
9829             case SVt_PVMG:
9830                 break;
9831             case SVt_PVBM:
9832                 break;
9833             case SVt_PVLV:
9834                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
9835                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
9836                     LvTARG(dstr) = dstr;
9837                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
9838                     LvTARG(dstr) = (SV*)he_dup((HE*)LvTARG(dstr), 0, param);
9839                 else
9840                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
9841                 break;
9842             case SVt_PVGV:
9843                 if (GvNAME_HEK(dstr))
9844                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
9845
9846                 /* Don't call sv_add_backref here as it's going to be created
9847                    as part of the magic cloning of the symbol table.  */
9848                 GvSTASH(dstr)   = hv_dup(GvSTASH(dstr), param);
9849                 if(isGV_with_GP(sstr)) {
9850                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
9851                        at the point of this comment.  */
9852                     GvGP(dstr)  = gp_dup(GvGP(sstr), param);
9853                     (void)GpREFCNT_inc(GvGP(dstr));
9854                 } else
9855                     Perl_rvpv_dup(aTHX_ dstr, sstr, param);
9856                 break;
9857             case SVt_PVIO:
9858                 IoIFP(dstr)     = fp_dup(IoIFP(dstr), IoTYPE(dstr), param);
9859                 if (IoOFP(dstr) == IoIFP(sstr))
9860                     IoOFP(dstr) = IoIFP(dstr);
9861                 else
9862                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
9863                 /* PL_rsfp_filters entries have fake IoDIRP() */
9864                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
9865                     /* I have no idea why fake dirp (rsfps)
9866                        should be treated differently but otherwise
9867                        we end up with leaks -- sky*/
9868                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
9869                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
9870                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
9871                 } else {
9872                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
9873                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
9874                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
9875                     if (IoDIRP(dstr)) {
9876                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr));
9877                     } else {
9878                         /*EMPTY*/;
9879                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
9880                     }
9881                 }
9882                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
9883                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
9884                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
9885                 break;
9886             case SVt_PVAV:
9887                 if (AvARRAY((AV*)sstr)) {
9888                     SV **dst_ary, **src_ary;
9889                     SSize_t items = AvFILLp((AV*)sstr) + 1;
9890
9891                     src_ary = AvARRAY((AV*)sstr);
9892                     Newxz(dst_ary, AvMAX((AV*)sstr)+1, SV*);
9893                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
9894                     SvPV_set(dstr, (char*)dst_ary);
9895                     AvALLOC((AV*)dstr) = dst_ary;
9896                     if (AvREAL((AV*)sstr)) {
9897                         while (items-- > 0)
9898                             *dst_ary++ = sv_dup_inc(*src_ary++, param);
9899                     }
9900                     else {
9901                         while (items-- > 0)
9902                             *dst_ary++ = sv_dup(*src_ary++, param);
9903                     }
9904                     items = AvMAX((AV*)sstr) - AvFILLp((AV*)sstr);
9905                     while (items-- > 0) {
9906                         *dst_ary++ = &PL_sv_undef;
9907                     }
9908                 }
9909                 else {
9910                     SvPV_set(dstr, NULL);
9911                     AvALLOC((AV*)dstr)  = (SV**)NULL;
9912                 }
9913                 break;
9914             case SVt_PVHV:
9915                 {
9916                     HEK *hvname = NULL;
9917
9918                     if (HvARRAY((HV*)sstr)) {
9919                         STRLEN i = 0;
9920                         const bool sharekeys = !!HvSHAREKEYS(sstr);
9921                         XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
9922                         XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
9923                         char *darray;
9924                         Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
9925                             + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
9926                             char);
9927                         HvARRAY(dstr) = (HE**)darray;
9928                         while (i <= sxhv->xhv_max) {
9929                             const HE *source = HvARRAY(sstr)[i];
9930                             HvARRAY(dstr)[i] = source
9931                                 ? he_dup(source, sharekeys, param) : 0;
9932                             ++i;
9933                         }
9934                         if (SvOOK(sstr)) {
9935                             struct xpvhv_aux * const saux = HvAUX(sstr);
9936                             struct xpvhv_aux * const daux = HvAUX(dstr);
9937                             /* This flag isn't copied.  */
9938                             /* SvOOK_on(hv) attacks the IV flags.  */
9939                             SvFLAGS(dstr) |= SVf_OOK;
9940
9941                             hvname = saux->xhv_name;
9942                             daux->xhv_name
9943                                 = hvname ? hek_dup(hvname, param) : hvname;
9944
9945                             daux->xhv_riter = saux->xhv_riter;
9946                             daux->xhv_eiter = saux->xhv_eiter
9947                                 ? he_dup(saux->xhv_eiter,
9948                                          (bool)!!HvSHAREKEYS(sstr), param) : 0;
9949                             daux->xhv_backreferences = saux->xhv_backreferences
9950                                 ? (AV*) SvREFCNT_inc(
9951                                                      sv_dup((SV*)saux->
9952                                                             xhv_backreferences,
9953                                                             param))
9954                                 : 0;
9955                         }
9956                     }
9957                     else {
9958                         SvPV_set(dstr, NULL);
9959                     }
9960                     /* Record stashes for possible cloning in Perl_clone(). */
9961                     if(hvname)
9962                         av_push(param->stashes, dstr);
9963                 }
9964                 break;
9965             case SVt_PVCV:
9966                 if (!(param->flags & CLONEf_COPY_STACKS)) {
9967                     CvDEPTH(dstr) = 0;
9968                 }
9969             case SVt_PVFM:
9970                 /* NOTE: not refcounted */
9971                 CvSTASH(dstr)   = hv_dup(CvSTASH(dstr), param);
9972                 OP_REFCNT_LOCK;
9973                 if (!CvISXSUB(dstr))
9974                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
9975                 OP_REFCNT_UNLOCK;
9976                 if (CvCONST(dstr) && CvISXSUB(dstr)) {
9977                     CvXSUBANY(dstr).any_ptr = GvUNIQUE(CvGV(dstr)) ?
9978                         SvREFCNT_inc(CvXSUBANY(dstr).any_ptr) :
9979                         sv_dup_inc((SV *)CvXSUBANY(dstr).any_ptr, param);
9980                 }
9981                 /* don't dup if copying back - CvGV isn't refcounted, so the
9982                  * duped GV may never be freed. A bit of a hack! DAPM */
9983                 CvGV(dstr)      = (param->flags & CLONEf_JOIN_IN) ?
9984                     NULL : gv_dup(CvGV(dstr), param) ;
9985                 PAD_DUP(CvPADLIST(dstr), CvPADLIST(sstr), param);
9986                 CvOUTSIDE(dstr) =
9987                     CvWEAKOUTSIDE(sstr)
9988                     ? cv_dup(    CvOUTSIDE(dstr), param)
9989                     : cv_dup_inc(CvOUTSIDE(dstr), param);
9990                 if (!CvISXSUB(dstr))
9991                     CvFILE(dstr) = SAVEPV(CvFILE(dstr));
9992                 break;
9993             }
9994         }
9995     }
9996
9997     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
9998         ++PL_sv_objcount;
9999
10000     return dstr;
10001  }
10002
10003 /* duplicate a context */
10004
10005 PERL_CONTEXT *
10006 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
10007 {
10008     PERL_CONTEXT *ncxs;
10009
10010     if (!cxs)
10011         return (PERL_CONTEXT*)NULL;
10012
10013     /* look for it in the table first */
10014     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
10015     if (ncxs)
10016         return ncxs;
10017
10018     /* create anew and remember what it is */
10019     Newxz(ncxs, max + 1, PERL_CONTEXT);
10020     ptr_table_store(PL_ptr_table, cxs, ncxs);
10021
10022     while (ix >= 0) {
10023         PERL_CONTEXT * const cx = &cxs[ix];
10024         PERL_CONTEXT * const ncx = &ncxs[ix];
10025         ncx->cx_type    = cx->cx_type;
10026         if (CxTYPE(cx) == CXt_SUBST) {
10027             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
10028         }
10029         else {
10030             ncx->blk_oldsp      = cx->blk_oldsp;
10031             ncx->blk_oldcop     = cx->blk_oldcop;
10032             ncx->blk_oldmarksp  = cx->blk_oldmarksp;
10033             ncx->blk_oldscopesp = cx->blk_oldscopesp;
10034             ncx->blk_oldpm      = cx->blk_oldpm;
10035             ncx->blk_gimme      = cx->blk_gimme;
10036             switch (CxTYPE(cx)) {
10037             case CXt_SUB:
10038                 ncx->blk_sub.cv         = (cx->blk_sub.olddepth == 0
10039                                            ? cv_dup_inc(cx->blk_sub.cv, param)
10040                                            : cv_dup(cx->blk_sub.cv,param));
10041                 ncx->blk_sub.argarray   = (cx->blk_sub.hasargs
10042                                            ? av_dup_inc(cx->blk_sub.argarray, param)
10043                                            : NULL);
10044                 ncx->blk_sub.savearray  = av_dup_inc(cx->blk_sub.savearray, param);
10045                 ncx->blk_sub.olddepth   = cx->blk_sub.olddepth;
10046                 ncx->blk_sub.hasargs    = cx->blk_sub.hasargs;
10047                 ncx->blk_sub.lval       = cx->blk_sub.lval;
10048                 ncx->blk_sub.retop      = cx->blk_sub.retop;
10049                 break;
10050             case CXt_EVAL:
10051                 ncx->blk_eval.old_in_eval = cx->blk_eval.old_in_eval;
10052                 ncx->blk_eval.old_op_type = cx->blk_eval.old_op_type;
10053                 ncx->blk_eval.old_namesv = sv_dup_inc(cx->blk_eval.old_namesv, param);
10054                 ncx->blk_eval.old_eval_root = cx->blk_eval.old_eval_root;
10055                 ncx->blk_eval.cur_text  = sv_dup(cx->blk_eval.cur_text, param);
10056                 ncx->blk_eval.retop = cx->blk_eval.retop;
10057                 break;
10058             case CXt_LOOP:
10059                 ncx->blk_loop.label     = cx->blk_loop.label;
10060                 ncx->blk_loop.resetsp   = cx->blk_loop.resetsp;
10061                 ncx->blk_loop.redo_op   = cx->blk_loop.redo_op;
10062                 ncx->blk_loop.next_op   = cx->blk_loop.next_op;
10063                 ncx->blk_loop.last_op   = cx->blk_loop.last_op;
10064                 ncx->blk_loop.iterdata  = (CxPADLOOP(cx)
10065                                            ? cx->blk_loop.iterdata
10066                                            : gv_dup((GV*)cx->blk_loop.iterdata, param));
10067                 ncx->blk_loop.oldcomppad
10068                     = (PAD*)ptr_table_fetch(PL_ptr_table,
10069                                             cx->blk_loop.oldcomppad);
10070                 ncx->blk_loop.itersave  = sv_dup_inc(cx->blk_loop.itersave, param);
10071                 ncx->blk_loop.iterlval  = sv_dup_inc(cx->blk_loop.iterlval, param);
10072                 ncx->blk_loop.iterary   = av_dup_inc(cx->blk_loop.iterary, param);
10073                 ncx->blk_loop.iterix    = cx->blk_loop.iterix;
10074                 ncx->blk_loop.itermax   = cx->blk_loop.itermax;
10075                 break;
10076             case CXt_FORMAT:
10077                 ncx->blk_sub.cv         = cv_dup(cx->blk_sub.cv, param);
10078                 ncx->blk_sub.gv         = gv_dup(cx->blk_sub.gv, param);
10079                 ncx->blk_sub.dfoutgv    = gv_dup_inc(cx->blk_sub.dfoutgv, param);
10080                 ncx->blk_sub.hasargs    = cx->blk_sub.hasargs;
10081                 ncx->blk_sub.retop      = cx->blk_sub.retop;
10082                 break;
10083             case CXt_BLOCK:
10084             case CXt_NULL:
10085                 break;
10086             }
10087         }
10088         --ix;
10089     }
10090     return ncxs;
10091 }
10092
10093 /* duplicate a stack info structure */
10094
10095 PERL_SI *
10096 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
10097 {
10098     PERL_SI *nsi;
10099
10100     if (!si)
10101         return (PERL_SI*)NULL;
10102
10103     /* look for it in the table first */
10104     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
10105     if (nsi)
10106         return nsi;
10107
10108     /* create anew and remember what it is */
10109     Newxz(nsi, 1, PERL_SI);
10110     ptr_table_store(PL_ptr_table, si, nsi);
10111
10112     nsi->si_stack       = av_dup_inc(si->si_stack, param);
10113     nsi->si_cxix        = si->si_cxix;
10114     nsi->si_cxmax       = si->si_cxmax;
10115     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
10116     nsi->si_type        = si->si_type;
10117     nsi->si_prev        = si_dup(si->si_prev, param);
10118     nsi->si_next        = si_dup(si->si_next, param);
10119     nsi->si_markoff     = si->si_markoff;
10120
10121     return nsi;
10122 }
10123
10124 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
10125 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
10126 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
10127 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
10128 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
10129 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
10130 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
10131 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
10132 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
10133 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
10134 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
10135 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
10136 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
10137 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
10138
10139 /* XXXXX todo */
10140 #define pv_dup_inc(p)   SAVEPV(p)
10141 #define pv_dup(p)       SAVEPV(p)
10142 #define svp_dup_inc(p,pp)       any_dup(p,pp)
10143
10144 /* map any object to the new equivent - either something in the
10145  * ptr table, or something in the interpreter structure
10146  */
10147
10148 void *
10149 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
10150 {
10151     void *ret;
10152
10153     if (!v)
10154         return (void*)NULL;
10155
10156     /* look for it in the table first */
10157     ret = ptr_table_fetch(PL_ptr_table, v);
10158     if (ret)
10159         return ret;
10160
10161     /* see if it is part of the interpreter structure */
10162     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
10163         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
10164     else {
10165         ret = v;
10166     }
10167
10168     return ret;
10169 }
10170
10171 /* duplicate the save stack */
10172
10173 ANY *
10174 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
10175 {
10176     ANY * const ss      = proto_perl->Tsavestack;
10177     const I32 max       = proto_perl->Tsavestack_max;
10178     I32 ix              = proto_perl->Tsavestack_ix;
10179     ANY *nss;
10180     SV *sv;
10181     GV *gv;
10182     AV *av;
10183     HV *hv;
10184     void* ptr;
10185     int intval;
10186     long longval;
10187     GP *gp;
10188     IV iv;
10189     char *c = NULL;
10190     void (*dptr) (void*);
10191     void (*dxptr) (pTHX_ void*);
10192
10193     Newxz(nss, max, ANY);
10194
10195     while (ix > 0) {
10196         I32 i = POPINT(ss,ix);
10197         TOPINT(nss,ix) = i;
10198         switch (i) {
10199         case SAVEt_ITEM:                        /* normal string */
10200             sv = (SV*)POPPTR(ss,ix);
10201             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
10202             sv = (SV*)POPPTR(ss,ix);
10203             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
10204             break;
10205         case SAVEt_SV:                          /* scalar reference */
10206             sv = (SV*)POPPTR(ss,ix);
10207             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
10208             gv = (GV*)POPPTR(ss,ix);
10209             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
10210             break;
10211         case SAVEt_GENERIC_PVREF:               /* generic char* */
10212             c = (char*)POPPTR(ss,ix);
10213             TOPPTR(nss,ix) = pv_dup(c);
10214             ptr = POPPTR(ss,ix);
10215             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10216             break;
10217         case SAVEt_SHARED_PVREF:                /* char* in shared space */
10218             c = (char*)POPPTR(ss,ix);
10219             TOPPTR(nss,ix) = savesharedpv(c);
10220             ptr = POPPTR(ss,ix);
10221             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10222             break;
10223         case SAVEt_GENERIC_SVREF:               /* generic sv */
10224         case SAVEt_SVREF:                       /* scalar reference */
10225             sv = (SV*)POPPTR(ss,ix);
10226             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
10227             ptr = POPPTR(ss,ix);
10228             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
10229             break;
10230         case SAVEt_AV:                          /* array reference */
10231             av = (AV*)POPPTR(ss,ix);
10232             TOPPTR(nss,ix) = av_dup_inc(av, param);
10233             gv = (GV*)POPPTR(ss,ix);
10234             TOPPTR(nss,ix) = gv_dup(gv, param);
10235             break;
10236         case SAVEt_HV:                          /* hash reference */
10237             hv = (HV*)POPPTR(ss,ix);
10238             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
10239             gv = (GV*)POPPTR(ss,ix);
10240             TOPPTR(nss,ix) = gv_dup(gv, param);
10241             break;
10242         case SAVEt_INT:                         /* int reference */
10243             ptr = POPPTR(ss,ix);
10244             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10245             intval = (int)POPINT(ss,ix);
10246             TOPINT(nss,ix) = intval;
10247             break;
10248         case SAVEt_LONG:                        /* long reference */
10249             ptr = POPPTR(ss,ix);
10250             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10251             longval = (long)POPLONG(ss,ix);
10252             TOPLONG(nss,ix) = longval;
10253             break;
10254         case SAVEt_I32:                         /* I32 reference */
10255         case SAVEt_I16:                         /* I16 reference */
10256         case SAVEt_I8:                          /* I8 reference */
10257             ptr = POPPTR(ss,ix);
10258             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10259             i = POPINT(ss,ix);
10260             TOPINT(nss,ix) = i;
10261             break;
10262         case SAVEt_IV:                          /* IV reference */
10263             ptr = POPPTR(ss,ix);
10264             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10265             iv = POPIV(ss,ix);
10266             TOPIV(nss,ix) = iv;
10267             break;
10268         case SAVEt_SPTR:                        /* SV* reference */
10269             ptr = POPPTR(ss,ix);
10270             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10271             sv = (SV*)POPPTR(ss,ix);
10272             TOPPTR(nss,ix) = sv_dup(sv, param);
10273             break;
10274         case SAVEt_VPTR:                        /* random* reference */
10275             ptr = POPPTR(ss,ix);
10276             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10277             ptr = POPPTR(ss,ix);
10278             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10279             break;
10280         case SAVEt_PPTR:                        /* char* reference */
10281             ptr = POPPTR(ss,ix);
10282             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10283             c = (char*)POPPTR(ss,ix);
10284             TOPPTR(nss,ix) = pv_dup(c);
10285             break;
10286         case SAVEt_HPTR:                        /* HV* reference */
10287             ptr = POPPTR(ss,ix);
10288             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10289             hv = (HV*)POPPTR(ss,ix);
10290             TOPPTR(nss,ix) = hv_dup(hv, param);
10291             break;
10292         case SAVEt_APTR:                        /* AV* reference */
10293             ptr = POPPTR(ss,ix);
10294             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10295             av = (AV*)POPPTR(ss,ix);
10296             TOPPTR(nss,ix) = av_dup(av, param);
10297             break;
10298         case SAVEt_NSTAB:
10299             gv = (GV*)POPPTR(ss,ix);
10300             TOPPTR(nss,ix) = gv_dup(gv, param);
10301             break;
10302         case SAVEt_GP:                          /* scalar reference */
10303             gp = (GP*)POPPTR(ss,ix);
10304             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
10305             (void)GpREFCNT_inc(gp);
10306             gv = (GV*)POPPTR(ss,ix);
10307             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
10308             c = (char*)POPPTR(ss,ix);
10309             TOPPTR(nss,ix) = pv_dup(c);
10310             iv = POPIV(ss,ix);
10311             TOPIV(nss,ix) = iv;
10312             iv = POPIV(ss,ix);
10313             TOPIV(nss,ix) = iv;
10314             break;
10315         case SAVEt_FREESV:
10316         case SAVEt_MORTALIZESV:
10317             sv = (SV*)POPPTR(ss,ix);
10318             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
10319             break;
10320         case SAVEt_FREEOP:
10321             ptr = POPPTR(ss,ix);
10322             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
10323                 /* these are assumed to be refcounted properly */
10324                 OP *o;
10325                 switch (((OP*)ptr)->op_type) {
10326                 case OP_LEAVESUB:
10327                 case OP_LEAVESUBLV:
10328                 case OP_LEAVEEVAL:
10329                 case OP_LEAVE:
10330                 case OP_SCOPE:
10331                 case OP_LEAVEWRITE:
10332                     TOPPTR(nss,ix) = ptr;
10333                     o = (OP*)ptr;
10334                     OpREFCNT_inc(o);
10335                     break;
10336                 default:
10337                     TOPPTR(nss,ix) = NULL;
10338                     break;
10339                 }
10340             }
10341             else
10342                 TOPPTR(nss,ix) = NULL;
10343             break;
10344         case SAVEt_FREEPV:
10345             c = (char*)POPPTR(ss,ix);
10346             TOPPTR(nss,ix) = pv_dup_inc(c);
10347             break;
10348         case SAVEt_CLEARSV:
10349             longval = POPLONG(ss,ix);
10350             TOPLONG(nss,ix) = longval;
10351             break;
10352         case SAVEt_DELETE:
10353             hv = (HV*)POPPTR(ss,ix);
10354             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
10355             c = (char*)POPPTR(ss,ix);
10356             TOPPTR(nss,ix) = pv_dup_inc(c);
10357             i = POPINT(ss,ix);
10358             TOPINT(nss,ix) = i;
10359             break;
10360         case SAVEt_DESTRUCTOR:
10361             ptr = POPPTR(ss,ix);
10362             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
10363             dptr = POPDPTR(ss,ix);
10364             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
10365                                         any_dup(FPTR2DPTR(void *, dptr),
10366                                                 proto_perl));
10367             break;
10368         case SAVEt_DESTRUCTOR_X:
10369             ptr = POPPTR(ss,ix);
10370             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
10371             dxptr = POPDXPTR(ss,ix);
10372             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
10373                                          any_dup(FPTR2DPTR(void *, dxptr),
10374                                                  proto_perl));
10375             break;
10376         case SAVEt_REGCONTEXT:
10377         case SAVEt_ALLOC:
10378             i = POPINT(ss,ix);
10379             TOPINT(nss,ix) = i;
10380             ix -= i;
10381             break;
10382         case SAVEt_STACK_POS:           /* Position on Perl stack */
10383             i = POPINT(ss,ix);
10384             TOPINT(nss,ix) = i;
10385             break;
10386         case SAVEt_AELEM:               /* array element */
10387             sv = (SV*)POPPTR(ss,ix);
10388             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
10389             i = POPINT(ss,ix);
10390             TOPINT(nss,ix) = i;
10391             av = (AV*)POPPTR(ss,ix);
10392             TOPPTR(nss,ix) = av_dup_inc(av, param);
10393             break;
10394         case SAVEt_HELEM:               /* hash element */
10395             sv = (SV*)POPPTR(ss,ix);
10396             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
10397             sv = (SV*)POPPTR(ss,ix);
10398             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
10399             hv = (HV*)POPPTR(ss,ix);
10400             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
10401             break;
10402         case SAVEt_OP:
10403             ptr = POPPTR(ss,ix);
10404             TOPPTR(nss,ix) = ptr;
10405             break;
10406         case SAVEt_HINTS:
10407             i = POPINT(ss,ix);
10408             TOPINT(nss,ix) = i;
10409             break;
10410         case SAVEt_COMPPAD:
10411             av = (AV*)POPPTR(ss,ix);
10412             TOPPTR(nss,ix) = av_dup(av, param);
10413             break;
10414         case SAVEt_PADSV:
10415             longval = (long)POPLONG(ss,ix);
10416             TOPLONG(nss,ix) = longval;
10417             ptr = POPPTR(ss,ix);
10418             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10419             sv = (SV*)POPPTR(ss,ix);
10420             TOPPTR(nss,ix) = sv_dup(sv, param);
10421             break;
10422         case SAVEt_BOOL:
10423             ptr = POPPTR(ss,ix);
10424             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
10425             longval = (long)POPBOOL(ss,ix);
10426             TOPBOOL(nss,ix) = (bool)longval;
10427             break;
10428         case SAVEt_SET_SVFLAGS:
10429             i = POPINT(ss,ix);
10430             TOPINT(nss,ix) = i;
10431             i = POPINT(ss,ix);
10432             TOPINT(nss,ix) = i;
10433             sv = (SV*)POPPTR(ss,ix);
10434             TOPPTR(nss,ix) = sv_dup(sv, param);
10435             break;
10436         default:
10437             Perl_croak(aTHX_ "panic: ss_dup inconsistency");
10438         }
10439     }
10440
10441     return nss;
10442 }
10443
10444
10445 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
10446  * flag to the result. This is done for each stash before cloning starts,
10447  * so we know which stashes want their objects cloned */
10448
10449 static void
10450 do_mark_cloneable_stash(pTHX_ SV *sv)
10451 {
10452     const HEK * const hvname = HvNAME_HEK((HV*)sv);
10453     if (hvname) {
10454         GV* const cloner = gv_fetchmethod_autoload((HV*)sv, "CLONE_SKIP", 0);
10455         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
10456         if (cloner && GvCV(cloner)) {
10457             dSP;
10458             UV status;
10459
10460             ENTER;
10461             SAVETMPS;
10462             PUSHMARK(SP);
10463             XPUSHs(sv_2mortal(newSVhek(hvname)));
10464             PUTBACK;
10465             call_sv((SV*)GvCV(cloner), G_SCALAR);
10466             SPAGAIN;
10467             status = POPu;
10468             PUTBACK;
10469             FREETMPS;
10470             LEAVE;
10471             if (status)
10472                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
10473         }
10474     }
10475 }
10476
10477
10478
10479 /*
10480 =for apidoc perl_clone
10481
10482 Create and return a new interpreter by cloning the current one.
10483
10484 perl_clone takes these flags as parameters:
10485
10486 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
10487 without it we only clone the data and zero the stacks,
10488 with it we copy the stacks and the new perl interpreter is
10489 ready to run at the exact same point as the previous one.
10490 The pseudo-fork code uses COPY_STACKS while the
10491 threads->new doesn't.
10492
10493 CLONEf_KEEP_PTR_TABLE
10494 perl_clone keeps a ptr_table with the pointer of the old
10495 variable as a key and the new variable as a value,
10496 this allows it to check if something has been cloned and not
10497 clone it again but rather just use the value and increase the
10498 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
10499 the ptr_table using the function
10500 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
10501 reason to keep it around is if you want to dup some of your own
10502 variable who are outside the graph perl scans, example of this
10503 code is in threads.xs create
10504
10505 CLONEf_CLONE_HOST
10506 This is a win32 thing, it is ignored on unix, it tells perls
10507 win32host code (which is c++) to clone itself, this is needed on
10508 win32 if you want to run two threads at the same time,
10509 if you just want to do some stuff in a separate perl interpreter
10510 and then throw it away and return to the original one,
10511 you don't need to do anything.
10512
10513 =cut
10514 */
10515
10516 /* XXX the above needs expanding by someone who actually understands it ! */
10517 EXTERN_C PerlInterpreter *
10518 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
10519
10520 PerlInterpreter *
10521 perl_clone(PerlInterpreter *proto_perl, UV flags)
10522 {
10523    dVAR;
10524 #ifdef PERL_IMPLICIT_SYS
10525
10526    /* perlhost.h so we need to call into it
10527    to clone the host, CPerlHost should have a c interface, sky */
10528
10529    if (flags & CLONEf_CLONE_HOST) {
10530        return perl_clone_host(proto_perl,flags);
10531    }
10532    return perl_clone_using(proto_perl, flags,
10533                             proto_perl->IMem,
10534                             proto_perl->IMemShared,
10535                             proto_perl->IMemParse,
10536                             proto_perl->IEnv,
10537                             proto_perl->IStdIO,
10538                             proto_perl->ILIO,
10539                             proto_perl->IDir,
10540                             proto_perl->ISock,
10541                             proto_perl->IProc);
10542 }
10543
10544 PerlInterpreter *
10545 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
10546                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
10547                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
10548                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
10549                  struct IPerlDir* ipD, struct IPerlSock* ipS,
10550                  struct IPerlProc* ipP)
10551 {
10552     /* XXX many of the string copies here can be optimized if they're
10553      * constants; they need to be allocated as common memory and just
10554      * their pointers copied. */
10555
10556     IV i;
10557     CLONE_PARAMS clone_params;
10558     CLONE_PARAMS* const param = &clone_params;
10559
10560     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
10561     /* for each stash, determine whether its objects should be cloned */
10562     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
10563     PERL_SET_THX(my_perl);
10564
10565 #  ifdef DEBUGGING
10566     Poison(my_perl, 1, PerlInterpreter);
10567     PL_op = NULL;
10568     PL_curcop = NULL;
10569     PL_markstack = 0;
10570     PL_scopestack = 0;
10571     PL_savestack = 0;
10572     PL_savestack_ix = 0;
10573     PL_savestack_max = -1;
10574     PL_sig_pending = 0;
10575     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
10576 #  else /* !DEBUGGING */
10577     Zero(my_perl, 1, PerlInterpreter);
10578 #  endif        /* DEBUGGING */
10579
10580     /* host pointers */
10581     PL_Mem              = ipM;
10582     PL_MemShared        = ipMS;
10583     PL_MemParse         = ipMP;
10584     PL_Env              = ipE;
10585     PL_StdIO            = ipStd;
10586     PL_LIO              = ipLIO;
10587     PL_Dir              = ipD;
10588     PL_Sock             = ipS;
10589     PL_Proc             = ipP;
10590 #else           /* !PERL_IMPLICIT_SYS */
10591     IV i;
10592     CLONE_PARAMS clone_params;
10593     CLONE_PARAMS* param = &clone_params;
10594     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
10595     /* for each stash, determine whether its objects should be cloned */
10596     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
10597     PERL_SET_THX(my_perl);
10598
10599 #    ifdef DEBUGGING
10600     Poison(my_perl, 1, PerlInterpreter);
10601     PL_op = NULL;
10602     PL_curcop = NULL;
10603     PL_markstack = 0;
10604     PL_scopestack = 0;
10605     PL_savestack = 0;
10606     PL_savestack_ix = 0;
10607     PL_savestack_max = -1;
10608     PL_sig_pending = 0;
10609     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
10610 #    else       /* !DEBUGGING */
10611     Zero(my_perl, 1, PerlInterpreter);
10612 #    endif      /* DEBUGGING */
10613 #endif          /* PERL_IMPLICIT_SYS */
10614     param->flags = flags;
10615     param->proto_perl = proto_perl;
10616
10617     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
10618
10619     PL_body_arenas = NULL;
10620     Zero(&PL_body_roots, 1, PL_body_roots);
10621     
10622     PL_nice_chunk       = NULL;
10623     PL_nice_chunk_size  = 0;
10624     PL_sv_count         = 0;
10625     PL_sv_objcount      = 0;
10626     PL_sv_root          = NULL;
10627     PL_sv_arenaroot     = NULL;
10628
10629     PL_debug            = proto_perl->Idebug;
10630
10631     PL_hash_seed        = proto_perl->Ihash_seed;
10632     PL_rehash_seed      = proto_perl->Irehash_seed;
10633
10634 #ifdef USE_REENTRANT_API
10635     /* XXX: things like -Dm will segfault here in perlio, but doing
10636      *  PERL_SET_CONTEXT(proto_perl);
10637      * breaks too many other things
10638      */
10639     Perl_reentrant_init(aTHX);
10640 #endif
10641
10642     /* create SV map for pointer relocation */
10643     PL_ptr_table = ptr_table_new();
10644
10645     /* initialize these special pointers as early as possible */
10646     SvANY(&PL_sv_undef)         = NULL;
10647     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
10648     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
10649     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
10650
10651     SvANY(&PL_sv_no)            = new_XPVNV();
10652     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
10653     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
10654                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
10655     SvPV_set(&PL_sv_no, SAVEPVN(PL_No, 0));
10656     SvCUR_set(&PL_sv_no, 0);
10657     SvLEN_set(&PL_sv_no, 1);
10658     SvIV_set(&PL_sv_no, 0);
10659     SvNV_set(&PL_sv_no, 0);
10660     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
10661
10662     SvANY(&PL_sv_yes)           = new_XPVNV();
10663     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
10664     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
10665                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
10666     SvPV_set(&PL_sv_yes, SAVEPVN(PL_Yes, 1));
10667     SvCUR_set(&PL_sv_yes, 1);
10668     SvLEN_set(&PL_sv_yes, 2);
10669     SvIV_set(&PL_sv_yes, 1);
10670     SvNV_set(&PL_sv_yes, 1);
10671     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
10672
10673     /* create (a non-shared!) shared string table */
10674     PL_strtab           = newHV();
10675     HvSHAREKEYS_off(PL_strtab);
10676     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
10677     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
10678
10679     PL_compiling = proto_perl->Icompiling;
10680
10681     /* These two PVs will be free'd special way so must set them same way op.c does */
10682     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
10683     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
10684
10685     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
10686     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
10687
10688     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
10689     if (!specialWARN(PL_compiling.cop_warnings))
10690         PL_compiling.cop_warnings = sv_dup_inc(PL_compiling.cop_warnings, param);
10691     if (!specialCopIO(PL_compiling.cop_io))
10692         PL_compiling.cop_io = sv_dup_inc(PL_compiling.cop_io, param);
10693     PL_curcop           = (COP*)any_dup(proto_perl->Tcurcop, proto_perl);
10694
10695     /* pseudo environmental stuff */
10696     PL_origargc         = proto_perl->Iorigargc;
10697     PL_origargv         = proto_perl->Iorigargv;
10698
10699     param->stashes      = newAV();  /* Setup array of objects to call clone on */
10700
10701     /* Set tainting stuff before PerlIO_debug can possibly get called */
10702     PL_tainting         = proto_perl->Itainting;
10703     PL_taint_warn       = proto_perl->Itaint_warn;
10704
10705 #ifdef PERLIO_LAYERS
10706     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
10707     PerlIO_clone(aTHX_ proto_perl, param);
10708 #endif
10709
10710     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
10711     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
10712     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
10713     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
10714     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
10715     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
10716
10717     /* switches */
10718     PL_minus_c          = proto_perl->Iminus_c;
10719     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
10720     PL_localpatches     = proto_perl->Ilocalpatches;
10721     PL_splitstr         = proto_perl->Isplitstr;
10722     PL_preprocess       = proto_perl->Ipreprocess;
10723     PL_minus_n          = proto_perl->Iminus_n;
10724     PL_minus_p          = proto_perl->Iminus_p;
10725     PL_minus_l          = proto_perl->Iminus_l;
10726     PL_minus_a          = proto_perl->Iminus_a;
10727     PL_minus_E          = proto_perl->Iminus_E;
10728     PL_minus_F          = proto_perl->Iminus_F;
10729     PL_doswitches       = proto_perl->Idoswitches;
10730     PL_dowarn           = proto_perl->Idowarn;
10731     PL_doextract        = proto_perl->Idoextract;
10732     PL_sawampersand     = proto_perl->Isawampersand;
10733     PL_unsafe           = proto_perl->Iunsafe;
10734     PL_inplace          = SAVEPV(proto_perl->Iinplace);
10735     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
10736     PL_perldb           = proto_perl->Iperldb;
10737     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
10738     PL_exit_flags       = proto_perl->Iexit_flags;
10739
10740     /* magical thingies */
10741     /* XXX time(&PL_basetime) when asked for? */
10742     PL_basetime         = proto_perl->Ibasetime;
10743     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
10744
10745     PL_maxsysfd         = proto_perl->Imaxsysfd;
10746     PL_multiline        = proto_perl->Imultiline;
10747     PL_statusvalue      = proto_perl->Istatusvalue;
10748 #ifdef VMS
10749     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
10750 #else
10751     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
10752 #endif
10753     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
10754
10755     sv_setpvn(PERL_DEBUG_PAD(0), "", 0);        /* For regex debugging. */
10756     sv_setpvn(PERL_DEBUG_PAD(1), "", 0);        /* ext/re needs these */
10757     sv_setpvn(PERL_DEBUG_PAD(2), "", 0);        /* even without DEBUGGING. */
10758
10759     /* Clone the regex array */
10760     PL_regex_padav = newAV();
10761     {
10762         const I32 len = av_len((AV*)proto_perl->Iregex_padav);
10763         SV* const * const regexen = AvARRAY((AV*)proto_perl->Iregex_padav);
10764         IV i;
10765         av_push(PL_regex_padav, sv_dup_inc_NN(regexen[0],param));
10766         for(i = 1; i <= len; i++) {
10767             const SV * const regex = regexen[i];
10768             SV * const sv =
10769                 SvREPADTMP(regex)
10770                     ? sv_dup_inc(regex, param)
10771                     : SvREFCNT_inc(
10772                         newSViv(PTR2IV(re_dup(
10773                                 INT2PTR(REGEXP *, SvIVX(regex)), param))))
10774                 ;
10775             av_push(PL_regex_padav, sv);
10776         }
10777     }
10778     PL_regex_pad = AvARRAY(PL_regex_padav);
10779
10780     /* shortcuts to various I/O objects */
10781     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
10782     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
10783     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
10784     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
10785     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
10786     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
10787
10788     /* shortcuts to regexp stuff */
10789     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
10790
10791     /* shortcuts to misc objects */
10792     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
10793
10794     /* shortcuts to debugging objects */
10795     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
10796     PL_DBline           = gv_dup(proto_perl->IDBline, param);
10797     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
10798     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
10799     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
10800     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
10801     PL_DBassertion      = sv_dup(proto_perl->IDBassertion, param);
10802     PL_lineary          = av_dup(proto_perl->Ilineary, param);
10803     PL_dbargs           = av_dup(proto_perl->Idbargs, param);
10804
10805     /* symbol tables */
10806     PL_defstash         = hv_dup_inc(proto_perl->Tdefstash, param);
10807     PL_curstash         = hv_dup(proto_perl->Tcurstash, param);
10808     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
10809     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
10810     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
10811
10812     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
10813     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
10814     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
10815     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
10816     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
10817     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
10818
10819     PL_sub_generation   = proto_perl->Isub_generation;
10820
10821     /* funky return mechanisms */
10822     PL_forkprocess      = proto_perl->Iforkprocess;
10823
10824     /* subprocess state */
10825     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
10826
10827     /* internal state */
10828     PL_maxo             = proto_perl->Imaxo;
10829     if (proto_perl->Iop_mask)
10830         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
10831     else
10832         PL_op_mask      = NULL;
10833     /* PL_asserting        = proto_perl->Iasserting; */
10834
10835     /* current interpreter roots */
10836     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
10837     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
10838     PL_main_start       = proto_perl->Imain_start;
10839     PL_eval_root        = proto_perl->Ieval_root;
10840     PL_eval_start       = proto_perl->Ieval_start;
10841
10842     /* runtime control stuff */
10843     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
10844     PL_copline          = proto_perl->Icopline;
10845
10846     PL_filemode         = proto_perl->Ifilemode;
10847     PL_lastfd           = proto_perl->Ilastfd;
10848     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
10849     PL_Argv             = NULL;
10850     PL_Cmd              = NULL;
10851     PL_gensym           = proto_perl->Igensym;
10852     PL_preambled        = proto_perl->Ipreambled;
10853     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
10854     PL_laststatval      = proto_perl->Ilaststatval;
10855     PL_laststype        = proto_perl->Ilaststype;
10856     PL_mess_sv          = NULL;
10857
10858     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
10859
10860     /* interpreter atexit processing */
10861     PL_exitlistlen      = proto_perl->Iexitlistlen;
10862     if (PL_exitlistlen) {
10863         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
10864         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
10865     }
10866     else
10867         PL_exitlist     = (PerlExitListEntry*)NULL;
10868
10869     PL_my_cxt_size = proto_perl->Imy_cxt_size;
10870     if (PL_my_cxt_size) {
10871         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
10872         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
10873     }
10874     else
10875         PL_my_cxt_list  = (void**)NULL;
10876     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
10877     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
10878     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
10879
10880     PL_profiledata      = NULL;
10881     PL_rsfp             = fp_dup(proto_perl->Irsfp, '<', param);
10882     /* PL_rsfp_filters entries have fake IoDIRP() */
10883     PL_rsfp_filters     = av_dup_inc(proto_perl->Irsfp_filters, param);
10884
10885     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
10886
10887     PAD_CLONE_VARS(proto_perl, param);
10888
10889 #ifdef HAVE_INTERP_INTERN
10890     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
10891 #endif
10892
10893     /* more statics moved here */
10894     PL_generation       = proto_perl->Igeneration;
10895     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
10896
10897     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
10898     PL_in_clean_all     = proto_perl->Iin_clean_all;
10899
10900     PL_uid              = proto_perl->Iuid;
10901     PL_euid             = proto_perl->Ieuid;
10902     PL_gid              = proto_perl->Igid;
10903     PL_egid             = proto_perl->Iegid;
10904     PL_nomemok          = proto_perl->Inomemok;
10905     PL_an               = proto_perl->Ian;
10906     PL_evalseq          = proto_perl->Ievalseq;
10907     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
10908     PL_origalen         = proto_perl->Iorigalen;
10909 #ifdef PERL_USES_PL_PIDSTATUS
10910     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
10911 #endif
10912     PL_osname           = SAVEPV(proto_perl->Iosname);
10913     PL_sighandlerp      = proto_perl->Isighandlerp;
10914
10915     PL_runops           = proto_perl->Irunops;
10916
10917     Copy(proto_perl->Itokenbuf, PL_tokenbuf, 256, char);
10918
10919 #ifdef CSH
10920     PL_cshlen           = proto_perl->Icshlen;
10921     PL_cshname          = proto_perl->Icshname; /* XXX never deallocated */
10922 #endif
10923
10924     PL_lex_state        = proto_perl->Ilex_state;
10925     PL_lex_defer        = proto_perl->Ilex_defer;
10926     PL_lex_expect       = proto_perl->Ilex_expect;
10927     PL_lex_formbrack    = proto_perl->Ilex_formbrack;
10928     PL_lex_dojoin       = proto_perl->Ilex_dojoin;
10929     PL_lex_starts       = proto_perl->Ilex_starts;
10930     PL_lex_stuff        = sv_dup_inc(proto_perl->Ilex_stuff, param);
10931     PL_lex_repl         = sv_dup_inc(proto_perl->Ilex_repl, param);
10932     PL_lex_op           = proto_perl->Ilex_op;
10933     PL_lex_inpat        = proto_perl->Ilex_inpat;
10934     PL_lex_inwhat       = proto_perl->Ilex_inwhat;
10935     PL_lex_brackets     = proto_perl->Ilex_brackets;
10936     i = (PL_lex_brackets < 120 ? 120 : PL_lex_brackets);
10937     PL_lex_brackstack   = SAVEPVN(proto_perl->Ilex_brackstack,i);
10938     PL_lex_casemods     = proto_perl->Ilex_casemods;
10939     i = (PL_lex_casemods < 12 ? 12 : PL_lex_casemods);
10940     PL_lex_casestack    = SAVEPVN(proto_perl->Ilex_casestack,i);
10941
10942     Copy(proto_perl->Inextval, PL_nextval, 5, YYSTYPE);
10943     Copy(proto_perl->Inexttype, PL_nexttype, 5, I32);
10944     PL_nexttoke         = proto_perl->Inexttoke;
10945
10946     /* XXX This is probably masking the deeper issue of why
10947      * SvANY(proto_perl->Ilinestr) can be NULL at this point. For test case:
10948      * http://archive.develooper.com/perl5-porters%40perl.org/msg83298.html
10949      * (A little debugging with a watchpoint on it may help.)
10950      */
10951     if (SvANY(proto_perl->Ilinestr)) {
10952         PL_linestr              = sv_dup_inc(proto_perl->Ilinestr, param);
10953         i = proto_perl->Ibufptr - SvPVX_const(proto_perl->Ilinestr);
10954         PL_bufptr               = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
10955         i = proto_perl->Ioldbufptr - SvPVX_const(proto_perl->Ilinestr);
10956         PL_oldbufptr    = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
10957         i = proto_perl->Ioldoldbufptr - SvPVX_const(proto_perl->Ilinestr);
10958         PL_oldoldbufptr = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
10959         i = proto_perl->Ilinestart - SvPVX_const(proto_perl->Ilinestr);
10960         PL_linestart    = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
10961     }
10962     else {
10963         PL_linestr = newSV(79);
10964         sv_upgrade(PL_linestr,SVt_PVIV);
10965         sv_setpvn(PL_linestr,"",0);
10966         PL_bufptr = PL_oldbufptr = PL_oldoldbufptr = PL_linestart = SvPVX(PL_linestr);
10967     }
10968     PL_bufend           = SvPVX(PL_linestr) + SvCUR(PL_linestr);
10969     PL_pending_ident    = proto_perl->Ipending_ident;
10970     PL_sublex_info      = proto_perl->Isublex_info;     /* XXX not quite right */
10971
10972     PL_expect           = proto_perl->Iexpect;
10973
10974     PL_multi_start      = proto_perl->Imulti_start;
10975     PL_multi_end        = proto_perl->Imulti_end;
10976     PL_multi_open       = proto_perl->Imulti_open;
10977     PL_multi_close      = proto_perl->Imulti_close;
10978
10979     PL_error_count      = proto_perl->Ierror_count;
10980     PL_subline          = proto_perl->Isubline;
10981     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
10982
10983     /* XXX See comment on SvANY(proto_perl->Ilinestr) above */
10984     if (SvANY(proto_perl->Ilinestr)) {
10985         i = proto_perl->Ilast_uni - SvPVX_const(proto_perl->Ilinestr);
10986         PL_last_uni             = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
10987         i = proto_perl->Ilast_lop - SvPVX_const(proto_perl->Ilinestr);
10988         PL_last_lop             = SvPVX(PL_linestr) + (i < 0 ? 0 : i);
10989         PL_last_lop_op  = proto_perl->Ilast_lop_op;
10990     }
10991     else {
10992         PL_last_uni     = SvPVX(PL_linestr);
10993         PL_last_lop     = SvPVX(PL_linestr);
10994         PL_last_lop_op  = 0;
10995     }
10996     PL_in_my            = proto_perl->Iin_my;
10997     PL_in_my_stash      = hv_dup(proto_perl->Iin_my_stash, param);
10998 #ifdef FCRYPT
10999     PL_cryptseen        = proto_perl->Icryptseen;
11000 #endif
11001
11002     PL_hints            = proto_perl->Ihints;
11003
11004     PL_amagic_generation        = proto_perl->Iamagic_generation;
11005
11006 #ifdef USE_LOCALE_COLLATE
11007     PL_collation_ix     = proto_perl->Icollation_ix;
11008     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
11009     PL_collation_standard       = proto_perl->Icollation_standard;
11010     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
11011     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
11012 #endif /* USE_LOCALE_COLLATE */
11013
11014 #ifdef USE_LOCALE_NUMERIC
11015     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
11016     PL_numeric_standard = proto_perl->Inumeric_standard;
11017     PL_numeric_local    = proto_perl->Inumeric_local;
11018     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
11019 #endif /* !USE_LOCALE_NUMERIC */
11020
11021     /* utf8 character classes */
11022     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
11023     PL_utf8_alnumc      = sv_dup_inc(proto_perl->Iutf8_alnumc, param);
11024     PL_utf8_ascii       = sv_dup_inc(proto_perl->Iutf8_ascii, param);
11025     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
11026     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
11027     PL_utf8_cntrl       = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
11028     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
11029     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
11030     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
11031     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
11032     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
11033     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
11034     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
11035     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
11036     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
11037     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
11038     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
11039     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
11040     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
11041     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
11042
11043     /* Did the locale setup indicate UTF-8? */
11044     PL_utf8locale       = proto_perl->Iutf8locale;
11045     /* Unicode features (see perlrun/-C) */
11046     PL_unicode          = proto_perl->Iunicode;
11047
11048     /* Pre-5.8 signals control */
11049     PL_signals          = proto_perl->Isignals;
11050
11051     /* times() ticks per second */
11052     PL_clocktick        = proto_perl->Iclocktick;
11053
11054     /* Recursion stopper for PerlIO_find_layer */
11055     PL_in_load_module   = proto_perl->Iin_load_module;
11056
11057     /* sort() routine */
11058     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
11059
11060     /* Not really needed/useful since the reenrant_retint is "volatile",
11061      * but do it for consistency's sake. */
11062     PL_reentrant_retint = proto_perl->Ireentrant_retint;
11063
11064     /* Hooks to shared SVs and locks. */
11065     PL_sharehook        = proto_perl->Isharehook;
11066     PL_lockhook         = proto_perl->Ilockhook;
11067     PL_unlockhook       = proto_perl->Iunlockhook;
11068     PL_threadhook       = proto_perl->Ithreadhook;
11069
11070     PL_runops_std       = proto_perl->Irunops_std;
11071     PL_runops_dbg       = proto_perl->Irunops_dbg;
11072
11073 #ifdef THREADS_HAVE_PIDS
11074     PL_ppid             = proto_perl->Ippid;
11075 #endif
11076
11077     /* swatch cache */
11078     PL_last_swash_hv    = NULL; /* reinits on demand */
11079     PL_last_swash_klen  = 0;
11080     PL_last_swash_key[0]= '\0';
11081     PL_last_swash_tmps  = (U8*)NULL;
11082     PL_last_swash_slen  = 0;
11083
11084     PL_glob_index       = proto_perl->Iglob_index;
11085     PL_srand_called     = proto_perl->Isrand_called;
11086     PL_uudmap['M']      = 0;            /* reinits on demand */
11087     PL_bitcount         = NULL; /* reinits on demand */
11088
11089     if (proto_perl->Ipsig_pend) {
11090         Newxz(PL_psig_pend, SIG_SIZE, int);
11091     }
11092     else {
11093         PL_psig_pend    = (int*)NULL;
11094     }
11095
11096     if (proto_perl->Ipsig_ptr) {
11097         Newxz(PL_psig_ptr,  SIG_SIZE, SV*);
11098         Newxz(PL_psig_name, SIG_SIZE, SV*);
11099         for (i = 1; i < SIG_SIZE; i++) {
11100             PL_psig_ptr[i]  = sv_dup_inc(proto_perl->Ipsig_ptr[i], param);
11101             PL_psig_name[i] = sv_dup_inc(proto_perl->Ipsig_name[i], param);
11102         }
11103     }
11104     else {
11105         PL_psig_ptr     = (SV**)NULL;
11106         PL_psig_name    = (SV**)NULL;
11107     }
11108
11109     /* thrdvar.h stuff */
11110
11111     if (flags & CLONEf_COPY_STACKS) {
11112         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
11113         PL_tmps_ix              = proto_perl->Ttmps_ix;
11114         PL_tmps_max             = proto_perl->Ttmps_max;
11115         PL_tmps_floor           = proto_perl->Ttmps_floor;
11116         Newxz(PL_tmps_stack, PL_tmps_max, SV*);
11117         i = 0;
11118         while (i <= PL_tmps_ix) {
11119             PL_tmps_stack[i]    = sv_dup_inc(proto_perl->Ttmps_stack[i], param);
11120             ++i;
11121         }
11122
11123         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
11124         i = proto_perl->Tmarkstack_max - proto_perl->Tmarkstack;
11125         Newxz(PL_markstack, i, I32);
11126         PL_markstack_max        = PL_markstack + (proto_perl->Tmarkstack_max
11127                                                   - proto_perl->Tmarkstack);
11128         PL_markstack_ptr        = PL_markstack + (proto_perl->Tmarkstack_ptr
11129                                                   - proto_perl->Tmarkstack);
11130         Copy(proto_perl->Tmarkstack, PL_markstack,
11131              PL_markstack_ptr - PL_markstack + 1, I32);
11132
11133         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
11134          * NOTE: unlike the others! */
11135         PL_scopestack_ix        = proto_perl->Tscopestack_ix;
11136         PL_scopestack_max       = proto_perl->Tscopestack_max;
11137         Newxz(PL_scopestack, PL_scopestack_max, I32);
11138         Copy(proto_perl->Tscopestack, PL_scopestack, PL_scopestack_ix, I32);
11139
11140         /* NOTE: si_dup() looks at PL_markstack */
11141         PL_curstackinfo         = si_dup(proto_perl->Tcurstackinfo, param);
11142
11143         /* PL_curstack          = PL_curstackinfo->si_stack; */
11144         PL_curstack             = av_dup(proto_perl->Tcurstack, param);
11145         PL_mainstack            = av_dup(proto_perl->Tmainstack, param);
11146
11147         /* next PUSHs() etc. set *(PL_stack_sp+1) */
11148         PL_stack_base           = AvARRAY(PL_curstack);
11149         PL_stack_sp             = PL_stack_base + (proto_perl->Tstack_sp
11150                                                    - proto_perl->Tstack_base);
11151         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
11152
11153         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
11154          * NOTE: unlike the others! */
11155         PL_savestack_ix         = proto_perl->Tsavestack_ix;
11156         PL_savestack_max        = proto_perl->Tsavestack_max;
11157         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
11158         PL_savestack            = ss_dup(proto_perl, param);
11159     }
11160     else {
11161         init_stacks();
11162         ENTER;                  /* perl_destruct() wants to LEAVE; */
11163
11164         /* although we're not duplicating the tmps stack, we should still
11165          * add entries for any SVs on the tmps stack that got cloned by a
11166          * non-refcount means (eg a temp in @_); otherwise they will be
11167          * orphaned
11168          */
11169         for (i = 0; i<= proto_perl->Ttmps_ix; i++) {
11170             SV * const nsv = (SV*)ptr_table_fetch(PL_ptr_table,
11171                     proto_perl->Ttmps_stack[i]);
11172             if (nsv && !SvREFCNT(nsv)) {
11173                 EXTEND_MORTAL(1);
11174                 PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple(nsv);
11175             }
11176         }
11177     }
11178
11179     PL_start_env        = proto_perl->Tstart_env;       /* XXXXXX */
11180     PL_top_env          = &PL_start_env;
11181
11182     PL_op               = proto_perl->Top;
11183
11184     PL_Sv               = NULL;
11185     PL_Xpv              = (XPV*)NULL;
11186     PL_na               = proto_perl->Tna;
11187
11188     PL_statbuf          = proto_perl->Tstatbuf;
11189     PL_statcache        = proto_perl->Tstatcache;
11190     PL_statgv           = gv_dup(proto_perl->Tstatgv, param);
11191     PL_statname         = sv_dup_inc(proto_perl->Tstatname, param);
11192 #ifdef HAS_TIMES
11193     PL_timesbuf         = proto_perl->Ttimesbuf;
11194 #endif
11195
11196     PL_tainted          = proto_perl->Ttainted;
11197     PL_curpm            = proto_perl->Tcurpm;   /* XXX No PMOP ref count */
11198     PL_rs               = sv_dup_inc(proto_perl->Trs, param);
11199     PL_last_in_gv       = gv_dup(proto_perl->Tlast_in_gv, param);
11200     PL_ofs_sv           = sv_dup_inc(proto_perl->Tofs_sv, param);
11201     PL_defoutgv         = gv_dup_inc(proto_perl->Tdefoutgv, param);
11202     PL_chopset          = proto_perl->Tchopset; /* XXX never deallocated */
11203     PL_toptarget        = sv_dup_inc(proto_perl->Ttoptarget, param);
11204     PL_bodytarget       = sv_dup_inc(proto_perl->Tbodytarget, param);
11205     PL_formtarget       = sv_dup(proto_perl->Tformtarget, param);
11206
11207     PL_restartop        = proto_perl->Trestartop;
11208     PL_in_eval          = proto_perl->Tin_eval;
11209     PL_delaymagic       = proto_perl->Tdelaymagic;
11210     PL_dirty            = proto_perl->Tdirty;
11211     PL_localizing       = proto_perl->Tlocalizing;
11212
11213     PL_errors           = sv_dup_inc(proto_perl->Terrors, param);
11214     PL_hv_fetch_ent_mh  = NULL;
11215     PL_modcount         = proto_perl->Tmodcount;
11216     PL_lastgotoprobe    = NULL;
11217     PL_dumpindent       = proto_perl->Tdumpindent;
11218
11219     PL_sortcop          = (OP*)any_dup(proto_perl->Tsortcop, proto_perl);
11220     PL_sortstash        = hv_dup(proto_perl->Tsortstash, param);
11221     PL_firstgv          = gv_dup(proto_perl->Tfirstgv, param);
11222     PL_secondgv         = gv_dup(proto_perl->Tsecondgv, param);
11223     PL_efloatbuf        = NULL;         /* reinits on demand */
11224     PL_efloatsize       = 0;                    /* reinits on demand */
11225
11226     /* regex stuff */
11227
11228     PL_screamfirst      = NULL;
11229     PL_screamnext       = NULL;
11230     PL_maxscream        = -1;                   /* reinits on demand */
11231     PL_lastscream       = NULL;
11232
11233     PL_watchaddr        = NULL;
11234     PL_watchok          = NULL;
11235
11236     PL_regdummy         = proto_perl->Tregdummy;
11237     PL_regprecomp       = NULL;
11238     PL_regnpar          = 0;
11239     PL_regsize          = 0;
11240     PL_colorset         = 0;            /* reinits PL_colors[] */
11241     /*PL_colors[6]      = {0,0,0,0,0,0};*/
11242     PL_reginput         = NULL;
11243     PL_regbol           = NULL;
11244     PL_regeol           = NULL;
11245     PL_regstartp        = (I32*)NULL;
11246     PL_regendp          = (I32*)NULL;
11247     PL_reglastparen     = (U32*)NULL;
11248     PL_reglastcloseparen        = (U32*)NULL;
11249     PL_regtill          = NULL;
11250     PL_reg_start_tmp    = (char**)NULL;
11251     PL_reg_start_tmpl   = 0;
11252     PL_regdata          = (struct reg_data*)NULL;
11253     PL_bostr            = NULL;
11254     PL_reg_flags        = 0;
11255     PL_reg_eval_set     = 0;
11256     PL_regnarrate       = 0;
11257     PL_regprogram       = (regnode*)NULL;
11258     PL_regindent        = 0;
11259     PL_regcc            = (CURCUR*)NULL;
11260     PL_reg_call_cc      = (struct re_cc_state*)NULL;
11261     PL_reg_re           = (regexp*)NULL;
11262     PL_reg_ganch        = NULL;
11263     PL_reg_sv           = NULL;
11264     PL_reg_match_utf8   = FALSE;
11265     PL_reg_magic        = (MAGIC*)NULL;
11266     PL_reg_oldpos       = 0;
11267     PL_reg_oldcurpm     = (PMOP*)NULL;
11268     PL_reg_curpm        = (PMOP*)NULL;
11269     PL_reg_oldsaved     = NULL;
11270     PL_reg_oldsavedlen  = 0;
11271 #ifdef PERL_OLD_COPY_ON_WRITE
11272     PL_nrs              = NULL;
11273 #endif
11274     PL_reg_maxiter      = 0;
11275     PL_reg_leftiter     = 0;
11276     PL_reg_poscache     = NULL;
11277     PL_reg_poscache_size= 0;
11278
11279     /* RE engine - function pointers */
11280     PL_regcompp         = proto_perl->Tregcompp;
11281     PL_regexecp         = proto_perl->Tregexecp;
11282     PL_regint_start     = proto_perl->Tregint_start;
11283     PL_regint_string    = proto_perl->Tregint_string;
11284     PL_regfree          = proto_perl->Tregfree;
11285
11286     PL_reginterp_cnt    = 0;
11287     PL_reg_starttry     = 0;
11288
11289     /* Pluggable optimizer */
11290     PL_peepp            = proto_perl->Tpeepp;
11291
11292     PL_stashcache       = newHV();
11293
11294     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
11295         ptr_table_free(PL_ptr_table);
11296         PL_ptr_table = NULL;
11297     }
11298
11299     /* Call the ->CLONE method, if it exists, for each of the stashes
11300        identified by sv_dup() above.
11301     */
11302     while(av_len(param->stashes) != -1) {
11303         HV* const stash = (HV*) av_shift(param->stashes);
11304         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
11305         if (cloner && GvCV(cloner)) {
11306             dSP;
11307             ENTER;
11308             SAVETMPS;
11309             PUSHMARK(SP);
11310             XPUSHs(sv_2mortal(newSVhek(HvNAME_HEK(stash))));
11311             PUTBACK;
11312             call_sv((SV*)GvCV(cloner), G_DISCARD);
11313             FREETMPS;
11314             LEAVE;
11315         }
11316     }
11317
11318     SvREFCNT_dec(param->stashes);
11319
11320     /* orphaned? eg threads->new inside BEGIN or use */
11321     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
11322         SvREFCNT_inc_simple_void(PL_compcv);
11323         SAVEFREESV(PL_compcv);
11324     }
11325
11326     return my_perl;
11327 }
11328
11329 #endif /* USE_ITHREADS */
11330
11331 /*
11332 =head1 Unicode Support
11333
11334 =for apidoc sv_recode_to_utf8
11335
11336 The encoding is assumed to be an Encode object, on entry the PV
11337 of the sv is assumed to be octets in that encoding, and the sv
11338 will be converted into Unicode (and UTF-8).
11339
11340 If the sv already is UTF-8 (or if it is not POK), or if the encoding
11341 is not a reference, nothing is done to the sv.  If the encoding is not
11342 an C<Encode::XS> Encoding object, bad things will happen.
11343 (See F<lib/encoding.pm> and L<Encode>).
11344
11345 The PV of the sv is returned.
11346
11347 =cut */
11348
11349 char *
11350 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
11351 {
11352     dVAR;
11353     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
11354         SV *uni;
11355         STRLEN len;
11356         const char *s;
11357         dSP;
11358         ENTER;
11359         SAVETMPS;
11360         save_re_context();
11361         PUSHMARK(sp);
11362         EXTEND(SP, 3);
11363         XPUSHs(encoding);
11364         XPUSHs(sv);
11365 /*
11366   NI-S 2002/07/09
11367   Passing sv_yes is wrong - it needs to be or'ed set of constants
11368   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
11369   remove converted chars from source.
11370
11371   Both will default the value - let them.
11372
11373         XPUSHs(&PL_sv_yes);
11374 */
11375         PUTBACK;
11376         call_method("decode", G_SCALAR);
11377         SPAGAIN;
11378         uni = POPs;
11379         PUTBACK;
11380         s = SvPV_const(uni, len);
11381         if (s != SvPVX_const(sv)) {
11382             SvGROW(sv, len + 1);
11383             Move(s, SvPVX(sv), len + 1, char);
11384             SvCUR_set(sv, len);
11385         }
11386         FREETMPS;
11387         LEAVE;
11388         SvUTF8_on(sv);
11389         return SvPVX(sv);
11390     }
11391     return SvPOKp(sv) ? SvPVX(sv) : NULL;
11392 }
11393
11394 /*
11395 =for apidoc sv_cat_decode
11396
11397 The encoding is assumed to be an Encode object, the PV of the ssv is
11398 assumed to be octets in that encoding and decoding the input starts
11399 from the position which (PV + *offset) pointed to.  The dsv will be
11400 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
11401 when the string tstr appears in decoding output or the input ends on
11402 the PV of the ssv. The value which the offset points will be modified
11403 to the last input position on the ssv.
11404
11405 Returns TRUE if the terminator was found, else returns FALSE.
11406
11407 =cut */
11408
11409 bool
11410 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
11411                    SV *ssv, int *offset, char *tstr, int tlen)
11412 {
11413     dVAR;
11414     bool ret = FALSE;
11415     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
11416         SV *offsv;
11417         dSP;
11418         ENTER;
11419         SAVETMPS;
11420         save_re_context();
11421         PUSHMARK(sp);
11422         EXTEND(SP, 6);
11423         XPUSHs(encoding);
11424         XPUSHs(dsv);
11425         XPUSHs(ssv);
11426         XPUSHs(offsv = sv_2mortal(newSViv(*offset)));
11427         XPUSHs(sv_2mortal(newSVpvn(tstr, tlen)));
11428         PUTBACK;
11429         call_method("cat_decode", G_SCALAR);
11430         SPAGAIN;
11431         ret = SvTRUE(TOPs);
11432         *offset = SvIV(offsv);
11433         PUTBACK;
11434         FREETMPS;
11435         LEAVE;
11436     }
11437     else
11438         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
11439     return ret;
11440
11441 }
11442
11443 /* ---------------------------------------------------------------------
11444  *
11445  * support functions for report_uninit()
11446  */
11447
11448 /* the maxiumum size of array or hash where we will scan looking
11449  * for the undefined element that triggered the warning */
11450
11451 #define FUV_MAX_SEARCH_SIZE 1000
11452
11453 /* Look for an entry in the hash whose value has the same SV as val;
11454  * If so, return a mortal copy of the key. */
11455
11456 STATIC SV*
11457 S_find_hash_subscript(pTHX_ HV *hv, SV* val)
11458 {
11459     dVAR;
11460     register HE **array;
11461     I32 i;
11462
11463     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
11464                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
11465         return NULL;
11466
11467     array = HvARRAY(hv);
11468
11469     for (i=HvMAX(hv); i>0; i--) {
11470         register HE *entry;
11471         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
11472             if (HeVAL(entry) != val)
11473                 continue;
11474             if (    HeVAL(entry) == &PL_sv_undef ||
11475                     HeVAL(entry) == &PL_sv_placeholder)
11476                 continue;
11477             if (!HeKEY(entry))
11478                 return NULL;
11479             if (HeKLEN(entry) == HEf_SVKEY)
11480                 return sv_mortalcopy(HeKEY_sv(entry));
11481             return sv_2mortal(newSVpvn(HeKEY(entry), HeKLEN(entry)));
11482         }
11483     }
11484     return NULL;
11485 }
11486
11487 /* Look for an entry in the array whose value has the same SV as val;
11488  * If so, return the index, otherwise return -1. */
11489
11490 STATIC I32
11491 S_find_array_subscript(pTHX_ AV *av, SV* val)
11492 {
11493     dVAR;
11494     SV** svp;
11495     I32 i;
11496     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
11497                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
11498         return -1;
11499
11500     svp = AvARRAY(av);
11501     for (i=AvFILLp(av); i>=0; i--) {
11502         if (svp[i] == val && svp[i] != &PL_sv_undef)
11503             return i;
11504     }
11505     return -1;
11506 }
11507
11508 /* S_varname(): return the name of a variable, optionally with a subscript.
11509  * If gv is non-zero, use the name of that global, along with gvtype (one
11510  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
11511  * targ.  Depending on the value of the subscript_type flag, return:
11512  */
11513
11514 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
11515 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
11516 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
11517 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
11518
11519 STATIC SV*
11520 S_varname(pTHX_ GV *gv, const char gvtype, PADOFFSET targ,
11521         SV* keyname, I32 aindex, int subscript_type)
11522 {
11523
11524     SV * const name = sv_newmortal();
11525     if (gv) {
11526         char buffer[2];
11527         buffer[0] = gvtype;
11528         buffer[1] = 0;
11529
11530         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
11531
11532         gv_fullname4(name, gv, buffer, 0);
11533
11534         if ((unsigned int)SvPVX(name)[1] <= 26) {
11535             buffer[0] = '^';
11536             buffer[1] = SvPVX(name)[1] + 'A' - 1;
11537
11538             /* Swap the 1 unprintable control character for the 2 byte pretty
11539                version - ie substr($name, 1, 1) = $buffer; */
11540             sv_insert(name, 1, 1, buffer, 2);
11541         }
11542     }
11543     else {
11544         U32 unused;
11545         CV * const cv = find_runcv(&unused);
11546         SV *sv;
11547         AV *av;
11548
11549         if (!cv || !CvPADLIST(cv))
11550             return NULL;
11551         av = (AV*)(*av_fetch(CvPADLIST(cv), 0, FALSE));
11552         sv = *av_fetch(av, targ, FALSE);
11553         /* SvLEN in a pad name is not to be trusted */
11554         sv_setpv(name, SvPV_nolen_const(sv));
11555     }
11556
11557     if (subscript_type == FUV_SUBSCRIPT_HASH) {
11558         SV * const sv = newSV(0);
11559         *SvPVX(name) = '$';
11560         Perl_sv_catpvf(aTHX_ name, "{%s}",
11561             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
11562         SvREFCNT_dec(sv);
11563     }
11564     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
11565         *SvPVX(name) = '$';
11566         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
11567     }
11568     else if (subscript_type == FUV_SUBSCRIPT_WITHIN)
11569         Perl_sv_insert(aTHX_ name, 0, 0,  STR_WITH_LEN("within "));
11570
11571     return name;
11572 }
11573
11574
11575 /*
11576 =for apidoc find_uninit_var
11577
11578 Find the name of the undefined variable (if any) that caused the operator o
11579 to issue a "Use of uninitialized value" warning.
11580 If match is true, only return a name if it's value matches uninit_sv.
11581 So roughly speaking, if a unary operator (such as OP_COS) generates a
11582 warning, then following the direct child of the op may yield an
11583 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
11584 other hand, with OP_ADD there are two branches to follow, so we only print
11585 the variable name if we get an exact match.
11586
11587 The name is returned as a mortal SV.
11588
11589 Assumes that PL_op is the op that originally triggered the error, and that
11590 PL_comppad/PL_curpad points to the currently executing pad.
11591
11592 =cut
11593 */
11594
11595 STATIC SV *
11596 S_find_uninit_var(pTHX_ OP* obase, SV* uninit_sv, bool match)
11597 {
11598     dVAR;
11599     SV *sv;
11600     AV *av;
11601     GV *gv;
11602     OP *o, *o2, *kid;
11603
11604     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
11605                             uninit_sv == &PL_sv_placeholder)))
11606         return NULL;
11607
11608     switch (obase->op_type) {
11609
11610     case OP_RV2AV:
11611     case OP_RV2HV:
11612     case OP_PADAV:
11613     case OP_PADHV:
11614       {
11615         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
11616         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
11617         I32 index = 0;
11618         SV *keysv = NULL;
11619         int subscript_type = FUV_SUBSCRIPT_WITHIN;
11620
11621         if (pad) { /* @lex, %lex */
11622             sv = PAD_SVl(obase->op_targ);
11623             gv = NULL;
11624         }
11625         else {
11626             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
11627             /* @global, %global */
11628                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
11629                 if (!gv)
11630                     break;
11631                 sv = hash ? (SV*)GvHV(gv): (SV*)GvAV(gv);
11632             }
11633             else /* @{expr}, %{expr} */
11634                 return find_uninit_var(cUNOPx(obase)->op_first,
11635                                                     uninit_sv, match);
11636         }
11637
11638         /* attempt to find a match within the aggregate */
11639         if (hash) {
11640             keysv = S_find_hash_subscript(aTHX_ (HV*)sv, uninit_sv);
11641             if (keysv)
11642                 subscript_type = FUV_SUBSCRIPT_HASH;
11643         }
11644         else {
11645             index = S_find_array_subscript(aTHX_ (AV*)sv, uninit_sv);
11646             if (index >= 0)
11647                 subscript_type = FUV_SUBSCRIPT_ARRAY;
11648         }
11649
11650         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
11651             break;
11652
11653         return varname(gv, hash ? '%' : '@', obase->op_targ,
11654                                     keysv, index, subscript_type);
11655       }
11656
11657     case OP_PADSV:
11658         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
11659             break;
11660         return varname(NULL, '$', obase->op_targ,
11661                                     NULL, 0, FUV_SUBSCRIPT_NONE);
11662
11663     case OP_GVSV:
11664         gv = cGVOPx_gv(obase);
11665         if (!gv || (match && GvSV(gv) != uninit_sv))
11666             break;
11667         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
11668
11669     case OP_AELEMFAST:
11670         if (obase->op_flags & OPf_SPECIAL) { /* lexical array */
11671             if (match) {
11672                 SV **svp;
11673                 av = (AV*)PAD_SV(obase->op_targ);
11674                 if (!av || SvRMAGICAL(av))
11675                     break;
11676                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
11677                 if (!svp || *svp != uninit_sv)
11678                     break;
11679             }
11680             return varname(NULL, '$', obase->op_targ,
11681                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
11682         }
11683         else {
11684             gv = cGVOPx_gv(obase);
11685             if (!gv)
11686                 break;
11687             if (match) {
11688                 SV **svp;
11689                 av = GvAV(gv);
11690                 if (!av || SvRMAGICAL(av))
11691                     break;
11692                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
11693                 if (!svp || *svp != uninit_sv)
11694                     break;
11695             }
11696             return varname(gv, '$', 0,
11697                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
11698         }
11699         break;
11700
11701     case OP_EXISTS:
11702         o = cUNOPx(obase)->op_first;
11703         if (!o || o->op_type != OP_NULL ||
11704                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
11705             break;
11706         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
11707
11708     case OP_AELEM:
11709     case OP_HELEM:
11710         if (PL_op == obase)
11711             /* $a[uninit_expr] or $h{uninit_expr} */
11712             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
11713
11714         gv = NULL;
11715         o = cBINOPx(obase)->op_first;
11716         kid = cBINOPx(obase)->op_last;
11717
11718         /* get the av or hv, and optionally the gv */
11719         sv = NULL;
11720         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
11721             sv = PAD_SV(o->op_targ);
11722         }
11723         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
11724                 && cUNOPo->op_first->op_type == OP_GV)
11725         {
11726             gv = cGVOPx_gv(cUNOPo->op_first);
11727             if (!gv)
11728                 break;
11729             sv = o->op_type == OP_RV2HV ? (SV*)GvHV(gv) : (SV*)GvAV(gv);
11730         }
11731         if (!sv)
11732             break;
11733
11734         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
11735             /* index is constant */
11736             if (match) {
11737                 if (SvMAGICAL(sv))
11738                     break;
11739                 if (obase->op_type == OP_HELEM) {
11740                     HE* he = hv_fetch_ent((HV*)sv, cSVOPx_sv(kid), 0, 0);
11741                     if (!he || HeVAL(he) != uninit_sv)
11742                         break;
11743                 }
11744                 else {
11745                     SV * const * const svp = av_fetch((AV*)sv, SvIV(cSVOPx_sv(kid)), FALSE);
11746                     if (!svp || *svp != uninit_sv)
11747                         break;
11748                 }
11749             }
11750             if (obase->op_type == OP_HELEM)
11751                 return varname(gv, '%', o->op_targ,
11752                             cSVOPx_sv(kid), 0, FUV_SUBSCRIPT_HASH);
11753             else
11754                 return varname(gv, '@', o->op_targ, NULL,
11755                             SvIV(cSVOPx_sv(kid)), FUV_SUBSCRIPT_ARRAY);
11756         }
11757         else  {
11758             /* index is an expression;
11759              * attempt to find a match within the aggregate */
11760             if (obase->op_type == OP_HELEM) {
11761                 SV * const keysv = S_find_hash_subscript(aTHX_ (HV*)sv, uninit_sv);
11762                 if (keysv)
11763                     return varname(gv, '%', o->op_targ,
11764                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
11765             }
11766             else {
11767                 const I32 index = S_find_array_subscript(aTHX_ (AV*)sv, uninit_sv);
11768                 if (index >= 0)
11769                     return varname(gv, '@', o->op_targ,
11770                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
11771             }
11772             if (match)
11773                 break;
11774             return varname(gv,
11775                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
11776                 ? '@' : '%',
11777                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
11778         }
11779         break;
11780
11781     case OP_AASSIGN:
11782         /* only examine RHS */
11783         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
11784
11785     case OP_OPEN:
11786         o = cUNOPx(obase)->op_first;
11787         if (o->op_type == OP_PUSHMARK)
11788             o = o->op_sibling;
11789
11790         if (!o->op_sibling) {
11791             /* one-arg version of open is highly magical */
11792
11793             if (o->op_type == OP_GV) { /* open FOO; */
11794                 gv = cGVOPx_gv(o);
11795                 if (match && GvSV(gv) != uninit_sv)
11796                     break;
11797                 return varname(gv, '$', 0,
11798                             NULL, 0, FUV_SUBSCRIPT_NONE);
11799             }
11800             /* other possibilities not handled are:
11801              * open $x; or open my $x;  should return '${*$x}'
11802              * open expr;               should return '$'.expr ideally
11803              */
11804              break;
11805         }
11806         goto do_op;
11807
11808     /* ops where $_ may be an implicit arg */
11809     case OP_TRANS:
11810     case OP_SUBST:
11811     case OP_MATCH:
11812         if ( !(obase->op_flags & OPf_STACKED)) {
11813             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
11814                                  ? PAD_SVl(obase->op_targ)
11815                                  : DEFSV))
11816             {
11817                 sv = sv_newmortal();
11818                 sv_setpvn(sv, "$_", 2);
11819                 return sv;
11820             }
11821         }
11822         goto do_op;
11823
11824     case OP_PRTF:
11825     case OP_PRINT:
11826         /* skip filehandle as it can't produce 'undef' warning  */
11827         o = cUNOPx(obase)->op_first;
11828         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
11829             o = o->op_sibling->op_sibling;
11830         goto do_op2;
11831
11832
11833     case OP_RV2SV:
11834     case OP_CUSTOM:
11835     case OP_ENTERSUB:
11836         match = 1; /* XS or custom code could trigger random warnings */
11837         goto do_op;
11838
11839     case OP_SCHOMP:
11840     case OP_CHOMP:
11841         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
11842             return sv_2mortal(newSVpvs("${$/}"));
11843         /*FALLTHROUGH*/
11844
11845     default:
11846     do_op:
11847         if (!(obase->op_flags & OPf_KIDS))
11848             break;
11849         o = cUNOPx(obase)->op_first;
11850         
11851     do_op2:
11852         if (!o)
11853             break;
11854
11855         /* if all except one arg are constant, or have no side-effects,
11856          * or are optimized away, then it's unambiguous */
11857         o2 = NULL;
11858         for (kid=o; kid; kid = kid->op_sibling) {
11859             if (kid &&
11860                 (    (kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid)))
11861                   || (kid->op_type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
11862                   || (kid->op_type == OP_PUSHMARK)
11863                 )
11864             )
11865                 continue;
11866             if (o2) { /* more than one found */
11867                 o2 = NULL;
11868                 break;
11869             }
11870             o2 = kid;
11871         }
11872         if (o2)
11873             return find_uninit_var(o2, uninit_sv, match);
11874
11875         /* scan all args */
11876         while (o) {
11877             sv = find_uninit_var(o, uninit_sv, 1);
11878             if (sv)
11879                 return sv;
11880             o = o->op_sibling;
11881         }
11882         break;
11883     }
11884     return NULL;
11885 }
11886
11887
11888 /*
11889 =for apidoc report_uninit
11890
11891 Print appropriate "Use of uninitialized variable" warning
11892
11893 =cut
11894 */
11895
11896 void
11897 Perl_report_uninit(pTHX_ SV* uninit_sv)
11898 {
11899     dVAR;
11900     if (PL_op) {
11901         SV* varname = NULL;
11902         if (uninit_sv) {
11903             varname = find_uninit_var(PL_op, uninit_sv,0);
11904             if (varname)
11905                 sv_insert(varname, 0, 0, " ", 1);
11906         }
11907         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
11908                 varname ? SvPV_nolen_const(varname) : "",
11909                 " in ", OP_DESC(PL_op));
11910     }
11911     else
11912         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
11913                     "", "", "");
11914 }
11915
11916 /*
11917  * Local variables:
11918  * c-indentation-style: bsd
11919  * c-basic-offset: 4
11920  * indent-tabs-mode: t
11921  * End:
11922  *
11923  * ex: set ts=8 sts=4 sw=4 noet:
11924  */