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