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