This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add summary list mode to git-deltatool
[perl5.git] / sv.c
1 /*    sv.c
2  *
3  *    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4  *    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by Larry Wall
5  *    and others
6  *
7  *    You may distribute under the terms of either the GNU General Public
8  *    License or the Artistic License, as specified in the README file.
9  *
10  */
11
12 /*
13  * 'I wonder what the Entish is for "yes" and "no",' he thought.
14  *                                                      --Pippin
15  *
16  *     [p.480 of _The Lord of the Rings_, III/iv: "Treebeard"]
17  */
18
19 /*
20  *
21  *
22  * This file contains the code that creates, manipulates and destroys
23  * scalar values (SVs). The other types (AV, HV, GV, etc.) reuse the
24  * structure of an SV, so their creation and destruction is handled
25  * here; higher-level functions are in av.c, hv.c, and so on. Opcode
26  * level functions (eg. substr, split, join) for each of the types are
27  * in the pp*.c files.
28  */
29
30 #include "EXTERN.h"
31 #define PERL_IN_SV_C
32 #include "perl.h"
33 #include "regcomp.h"
34
35 #define FCALL *f
36
37 #ifdef __Lynx__
38 /* Missing proto on LynxOS */
39   char *gconvert(double, int, int,  char *);
40 #endif
41
42 #ifdef PERL_UTF8_CACHE_ASSERT
43 /* if adding more checks watch out for the following tests:
44  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
45  *   lib/utf8.t lib/Unicode/Collate/t/index.t
46  * --jhi
47  */
48 #   define ASSERT_UTF8_CACHE(cache) \
49     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
50                               assert((cache)[2] <= (cache)[3]); \
51                               assert((cache)[3] <= (cache)[1]);} \
52                               } STMT_END
53 #else
54 #   define ASSERT_UTF8_CACHE(cache) NOOP
55 #endif
56
57 #ifdef PERL_OLD_COPY_ON_WRITE
58 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
59 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
60 /* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
61    on-write.  */
62 #endif
63
64 /* ============================================================================
65
66 =head1 Allocation and deallocation of SVs.
67
68 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
69 sv, av, hv...) contains type and reference count information, and for
70 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
71 contains fields specific to each type.  Some types store all they need
72 in the head, so don't have a body.
73
74 In all but the most memory-paranoid configuations (ex: PURIFY), heads
75 and bodies are allocated out of arenas, which by default are
76 approximately 4K chunks of memory parcelled up into N heads or bodies.
77 Sv-bodies are allocated by their sv-type, guaranteeing size
78 consistency needed to allocate safely from arrays.
79
80 For SV-heads, the first slot in each arena is reserved, and holds a
81 link to the next arena, some flags, and a note of the number of slots.
82 Snaked through each arena chain is a linked list of free items; when
83 this becomes empty, an extra arena is allocated and divided up into N
84 items which are threaded into the free list.
85
86 SV-bodies are similar, but they use arena-sets by default, which
87 separate the link and info from the arena itself, and reclaim the 1st
88 slot in the arena.  SV-bodies are further described later.
89
90 The following global variables are associated with arenas:
91
92     PL_sv_arenaroot     pointer to list of SV arenas
93     PL_sv_root          pointer to list of free SV structures
94
95     PL_body_arenas      head of linked-list of body arenas
96     PL_body_roots[]     array of pointers to list of free bodies of svtype
97                         arrays are indexed by the svtype needed
98
99 A few special SV heads are not allocated from an arena, but are
100 instead directly created in the interpreter structure, eg PL_sv_undef.
101 The size of arenas can be changed from the default by setting
102 PERL_ARENA_SIZE appropriately at compile time.
103
104 The SV arena serves the secondary purpose of allowing still-live SVs
105 to be located and destroyed during final cleanup.
106
107 At the lowest level, the macros new_SV() and del_SV() grab and free
108 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
109 to return the SV to the free list with error checking.) new_SV() calls
110 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
111 SVs in the free list have their SvTYPE field set to all ones.
112
113 At the time of very final cleanup, sv_free_arenas() is called from
114 perl_destruct() to physically free all the arenas allocated since the
115 start of the interpreter.
116
117 The function visit() scans the SV arenas list, and calls a specified
118 function for each SV it finds which is still live - ie which has an SvTYPE
119 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
120 following functions (specified as [function that calls visit()] / [function
121 called by visit() for each SV]):
122
123     sv_report_used() / do_report_used()
124                         dump all remaining SVs (debugging aid)
125
126     sv_clean_objs() / do_clean_objs(),do_clean_named_objs()
127                         Attempt to free all objects pointed to by RVs,
128                         and, unless DISABLE_DESTRUCTOR_KLUDGE is defined,
129                         try to do the same for all objects indirectly
130                         referenced by typeglobs too.  Called once from
131                         perl_destruct(), prior to calling sv_clean_all()
132                         below.
133
134     sv_clean_all() / do_clean_all()
135                         SvREFCNT_dec(sv) each remaining SV, possibly
136                         triggering an sv_free(). It also sets the
137                         SVf_BREAK flag on the SV to indicate that the
138                         refcnt has been artificially lowered, and thus
139                         stopping sv_free() from giving spurious warnings
140                         about SVs which unexpectedly have a refcnt
141                         of zero.  called repeatedly from perl_destruct()
142                         until there are no SVs left.
143
144 =head2 Arena allocator API Summary
145
146 Private API to rest of sv.c
147
148     new_SV(),  del_SV(),
149
150     new_XIV(), del_XIV(),
151     new_XNV(), del_XNV(),
152     etc
153
154 Public API:
155
156     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
157
158 =cut
159
160  * ========================================================================= */
161
162 /*
163  * "A time to plant, and a time to uproot what was planted..."
164  */
165
166 void
167 Perl_offer_nice_chunk(pTHX_ void *const chunk, const U32 chunk_size)
168 {
169     dVAR;
170     void *new_chunk;
171     U32 new_chunk_size;
172
173     PERL_ARGS_ASSERT_OFFER_NICE_CHUNK;
174
175     new_chunk = (void *)(chunk);
176     new_chunk_size = (chunk_size);
177     if (new_chunk_size > PL_nice_chunk_size) {
178         Safefree(PL_nice_chunk);
179         PL_nice_chunk = (char *) new_chunk;
180         PL_nice_chunk_size = new_chunk_size;
181     } else {
182         Safefree(chunk);
183     }
184 }
185
186 #ifdef PERL_MEM_LOG
187 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
188             Perl_mem_log_new_sv(sv, file, line, func)
189 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
190             Perl_mem_log_del_sv(sv, file, line, func)
191 #else
192 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
193 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
194 #endif
195
196 #ifdef DEBUG_LEAKING_SCALARS
197 #  define FREE_SV_DEBUG_FILE(sv) Safefree((sv)->sv_debug_file)
198 #  define DEBUG_SV_SERIAL(sv)                                               \
199     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
200             PTR2UV(sv), (long)(sv)->sv_debug_serial))
201 #else
202 #  define FREE_SV_DEBUG_FILE(sv)
203 #  define DEBUG_SV_SERIAL(sv)   NOOP
204 #endif
205
206 #ifdef PERL_POISON
207 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
208 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
209 /* Whilst I'd love to do this, it seems that things like to check on
210    unreferenced scalars
211 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
212 */
213 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
214                                 PoisonNew(&SvREFCNT(sv), 1, U32)
215 #else
216 #  define SvARENA_CHAIN(sv)     SvANY(sv)
217 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
218 #  define POSION_SV_HEAD(sv)
219 #endif
220
221 /* Mark an SV head as unused, and add to free list.
222  *
223  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
224  * its refcount artificially decremented during global destruction, so
225  * there may be dangling pointers to it. The last thing we want in that
226  * case is for it to be reused. */
227
228 #define plant_SV(p) \
229     STMT_START {                                        \
230         const U32 old_flags = SvFLAGS(p);                       \
231         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
232         DEBUG_SV_SERIAL(p);                             \
233         FREE_SV_DEBUG_FILE(p);                          \
234         POSION_SV_HEAD(p);                              \
235         SvFLAGS(p) = SVTYPEMASK;                        \
236         if (!(old_flags & SVf_BREAK)) {         \
237             SvARENA_CHAIN_SET(p, PL_sv_root);   \
238             PL_sv_root = (p);                           \
239         }                                               \
240         --PL_sv_count;                                  \
241     } STMT_END
242
243 #define uproot_SV(p) \
244     STMT_START {                                        \
245         (p) = PL_sv_root;                               \
246         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
247         ++PL_sv_count;                                  \
248     } STMT_END
249
250
251 /* make some more SVs by adding another arena */
252
253 STATIC SV*
254 S_more_sv(pTHX)
255 {
256     dVAR;
257     SV* sv;
258
259     if (PL_nice_chunk) {
260         sv_add_arena(PL_nice_chunk, PL_nice_chunk_size, 0);
261         PL_nice_chunk = NULL;
262         PL_nice_chunk_size = 0;
263     }
264     else {
265         char *chunk;                /* must use New here to match call to */
266         Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
267         sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
268     }
269     uproot_SV(sv);
270     return sv;
271 }
272
273 /* new_SV(): return a new, empty SV head */
274
275 #ifdef DEBUG_LEAKING_SCALARS
276 /* provide a real function for a debugger to play with */
277 STATIC SV*
278 S_new_SV(pTHX_ const char *file, int line, const char *func)
279 {
280     SV* sv;
281
282     if (PL_sv_root)
283         uproot_SV(sv);
284     else
285         sv = S_more_sv(aTHX);
286     SvANY(sv) = 0;
287     SvREFCNT(sv) = 1;
288     SvFLAGS(sv) = 0;
289     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
290     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
291                 ? PL_parser->copline
292                 :  PL_curcop
293                     ? CopLINE(PL_curcop)
294                     : 0
295             );
296     sv->sv_debug_inpad = 0;
297     sv->sv_debug_cloned = 0;
298     sv->sv_debug_file = PL_curcop ? savepv(CopFILE(PL_curcop)): NULL;
299
300     sv->sv_debug_serial = PL_sv_serial++;
301
302     MEM_LOG_NEW_SV(sv, file, line, func);
303     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
304             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
305
306     return sv;
307 }
308 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
309
310 #else
311 #  define new_SV(p) \
312     STMT_START {                                        \
313         if (PL_sv_root)                                 \
314             uproot_SV(p);                               \
315         else                                            \
316             (p) = S_more_sv(aTHX);                      \
317         SvANY(p) = 0;                                   \
318         SvREFCNT(p) = 1;                                \
319         SvFLAGS(p) = 0;                                 \
320         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
321     } STMT_END
322 #endif
323
324
325 /* del_SV(): return an empty SV head to the free list */
326
327 #ifdef DEBUGGING
328
329 #define del_SV(p) \
330     STMT_START {                                        \
331         if (DEBUG_D_TEST)                               \
332             del_sv(p);                                  \
333         else                                            \
334             plant_SV(p);                                \
335     } STMT_END
336
337 STATIC void
338 S_del_sv(pTHX_ SV *p)
339 {
340     dVAR;
341
342     PERL_ARGS_ASSERT_DEL_SV;
343
344     if (DEBUG_D_TEST) {
345         SV* sva;
346         bool ok = 0;
347         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
348             const SV * const sv = sva + 1;
349             const SV * const svend = &sva[SvREFCNT(sva)];
350             if (p >= sv && p < svend) {
351                 ok = 1;
352                 break;
353             }
354         }
355         if (!ok) {
356             Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
357                              "Attempt to free non-arena SV: 0x%"UVxf
358                              pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
359             return;
360         }
361     }
362     plant_SV(p);
363 }
364
365 #else /* ! DEBUGGING */
366
367 #define del_SV(p)   plant_SV(p)
368
369 #endif /* DEBUGGING */
370
371
372 /*
373 =head1 SV Manipulation Functions
374
375 =for apidoc sv_add_arena
376
377 Given a chunk of memory, link it to the head of the list of arenas,
378 and split it into a list of free SVs.
379
380 =cut
381 */
382
383 static void
384 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
385 {
386     dVAR;
387     SV *const sva = MUTABLE_SV(ptr);
388     register SV* sv;
389     register SV* svend;
390
391     PERL_ARGS_ASSERT_SV_ADD_ARENA;
392
393     /* The first SV in an arena isn't an SV. */
394     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
395     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
396     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
397
398     PL_sv_arenaroot = sva;
399     PL_sv_root = sva + 1;
400
401     svend = &sva[SvREFCNT(sva) - 1];
402     sv = sva + 1;
403     while (sv < svend) {
404         SvARENA_CHAIN_SET(sv, (sv + 1));
405 #ifdef DEBUGGING
406         SvREFCNT(sv) = 0;
407 #endif
408         /* Must always set typemask because it's always checked in on cleanup
409            when the arenas are walked looking for objects.  */
410         SvFLAGS(sv) = SVTYPEMASK;
411         sv++;
412     }
413     SvARENA_CHAIN_SET(sv, 0);
414 #ifdef DEBUGGING
415     SvREFCNT(sv) = 0;
416 #endif
417     SvFLAGS(sv) = SVTYPEMASK;
418 }
419
420 /* visit(): call the named function for each non-free SV in the arenas
421  * whose flags field matches the flags/mask args. */
422
423 STATIC I32
424 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
425 {
426     dVAR;
427     SV* sva;
428     I32 visited = 0;
429
430     PERL_ARGS_ASSERT_VISIT;
431
432     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
433         register const SV * const svend = &sva[SvREFCNT(sva)];
434         register SV* sv;
435         for (sv = sva + 1; sv < svend; ++sv) {
436             if (SvTYPE(sv) != SVTYPEMASK
437                     && (sv->sv_flags & mask) == flags
438                     && SvREFCNT(sv))
439             {
440                 (FCALL)(aTHX_ sv);
441                 ++visited;
442             }
443         }
444     }
445     return visited;
446 }
447
448 #ifdef DEBUGGING
449
450 /* called by sv_report_used() for each live SV */
451
452 static void
453 do_report_used(pTHX_ SV *const sv)
454 {
455     if (SvTYPE(sv) != SVTYPEMASK) {
456         PerlIO_printf(Perl_debug_log, "****\n");
457         sv_dump(sv);
458     }
459 }
460 #endif
461
462 /*
463 =for apidoc sv_report_used
464
465 Dump the contents of all SVs not yet freed. (Debugging aid).
466
467 =cut
468 */
469
470 void
471 Perl_sv_report_used(pTHX)
472 {
473 #ifdef DEBUGGING
474     visit(do_report_used, 0, 0);
475 #else
476     PERL_UNUSED_CONTEXT;
477 #endif
478 }
479
480 /* called by sv_clean_objs() for each live SV */
481
482 static void
483 do_clean_objs(pTHX_ SV *const ref)
484 {
485     dVAR;
486     assert (SvROK(ref));
487     {
488         SV * const target = SvRV(ref);
489         if (SvOBJECT(target)) {
490             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
491             if (SvWEAKREF(ref)) {
492                 sv_del_backref(target, ref);
493                 SvWEAKREF_off(ref);
494                 SvRV_set(ref, NULL);
495             } else {
496                 SvROK_off(ref);
497                 SvRV_set(ref, NULL);
498                 SvREFCNT_dec(target);
499             }
500         }
501     }
502
503     /* XXX Might want to check arrays, etc. */
504 }
505
506 /* called by sv_clean_objs() for each live SV */
507
508 #ifndef DISABLE_DESTRUCTOR_KLUDGE
509 static void
510 do_clean_named_objs(pTHX_ SV *const sv)
511 {
512     dVAR;
513     assert(SvTYPE(sv) == SVt_PVGV);
514     assert(isGV_with_GP(sv));
515     if (GvGP(sv)) {
516         if ((
517 #ifdef PERL_DONT_CREATE_GVSV
518              GvSV(sv) &&
519 #endif
520              SvOBJECT(GvSV(sv))) ||
521              (GvAV(sv) && SvOBJECT(GvAV(sv))) ||
522              (GvHV(sv) && SvOBJECT(GvHV(sv))) ||
523              /* In certain rare cases GvIOp(sv) can be NULL, which would make SvOBJECT(GvIO(sv)) dereference NULL. */
524              (GvIO(sv) ? (SvFLAGS(GvIOp(sv)) & SVs_OBJECT) : 0) ||
525              (GvCV(sv) && SvOBJECT(GvCV(sv))) )
526         {
527             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning named glob object:\n "), sv_dump(sv)));
528             SvFLAGS(sv) |= SVf_BREAK;
529             SvREFCNT_dec(sv);
530         }
531     }
532 }
533 #endif
534
535 /*
536 =for apidoc sv_clean_objs
537
538 Attempt to destroy all objects not yet freed
539
540 =cut
541 */
542
543 void
544 Perl_sv_clean_objs(pTHX)
545 {
546     dVAR;
547     PL_in_clean_objs = TRUE;
548     visit(do_clean_objs, SVf_ROK, SVf_ROK);
549 #ifndef DISABLE_DESTRUCTOR_KLUDGE
550     /* some barnacles may yet remain, clinging to typeglobs */
551     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
552 #endif
553     PL_in_clean_objs = FALSE;
554 }
555
556 /* called by sv_clean_all() for each live SV */
557
558 static void
559 do_clean_all(pTHX_ SV *const sv)
560 {
561     dVAR;
562     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
563         /* don't clean pid table and strtab */
564         return;
565     }
566     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
567     SvFLAGS(sv) |= SVf_BREAK;
568     SvREFCNT_dec(sv);
569 }
570
571 /*
572 =for apidoc sv_clean_all
573
574 Decrement the refcnt of each remaining SV, possibly triggering a
575 cleanup. This function may have to be called multiple times to free
576 SVs which are in complex self-referential hierarchies.
577
578 =cut
579 */
580
581 I32
582 Perl_sv_clean_all(pTHX)
583 {
584     dVAR;
585     I32 cleaned;
586     PL_in_clean_all = TRUE;
587     cleaned = visit(do_clean_all, 0,0);
588     PL_in_clean_all = FALSE;
589     return cleaned;
590 }
591
592 /*
593   ARENASETS: a meta-arena implementation which separates arena-info
594   into struct arena_set, which contains an array of struct
595   arena_descs, each holding info for a single arena.  By separating
596   the meta-info from the arena, we recover the 1st slot, formerly
597   borrowed for list management.  The arena_set is about the size of an
598   arena, avoiding the needless malloc overhead of a naive linked-list.
599
600   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
601   memory in the last arena-set (1/2 on average).  In trade, we get
602   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
603   smaller types).  The recovery of the wasted space allows use of
604   small arenas for large, rare body types, by changing array* fields
605   in body_details_by_type[] below.
606 */
607 struct arena_desc {
608     char       *arena;          /* the raw storage, allocated aligned */
609     size_t      size;           /* its size ~4k typ */
610     svtype      utype;          /* bodytype stored in arena */
611 };
612
613 struct arena_set;
614
615 /* Get the maximum number of elements in set[] such that struct arena_set
616    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
617    therefore likely to be 1 aligned memory page.  */
618
619 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
620                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
621
622 struct arena_set {
623     struct arena_set* next;
624     unsigned int   set_size;    /* ie ARENAS_PER_SET */
625     unsigned int   curr;        /* index of next available arena-desc */
626     struct arena_desc set[ARENAS_PER_SET];
627 };
628
629 /*
630 =for apidoc sv_free_arenas
631
632 Deallocate the memory used by all arenas. Note that all the individual SV
633 heads and bodies within the arenas must already have been freed.
634
635 =cut
636 */
637 void
638 Perl_sv_free_arenas(pTHX)
639 {
640     dVAR;
641     SV* sva;
642     SV* svanext;
643     unsigned int i;
644
645     /* Free arenas here, but be careful about fake ones.  (We assume
646        contiguity of the fake ones with the corresponding real ones.) */
647
648     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
649         svanext = MUTABLE_SV(SvANY(sva));
650         while (svanext && SvFAKE(svanext))
651             svanext = MUTABLE_SV(SvANY(svanext));
652
653         if (!SvFAKE(sva))
654             Safefree(sva);
655     }
656
657     {
658         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
659
660         while (aroot) {
661             struct arena_set *current = aroot;
662             i = aroot->curr;
663             while (i--) {
664                 assert(aroot->set[i].arena);
665                 Safefree(aroot->set[i].arena);
666             }
667             aroot = aroot->next;
668             Safefree(current);
669         }
670     }
671     PL_body_arenas = 0;
672
673     i = PERL_ARENA_ROOTS_SIZE;
674     while (i--)
675         PL_body_roots[i] = 0;
676
677     Safefree(PL_nice_chunk);
678     PL_nice_chunk = NULL;
679     PL_nice_chunk_size = 0;
680     PL_sv_arenaroot = 0;
681     PL_sv_root = 0;
682 }
683
684 /*
685   Here are mid-level routines that manage the allocation of bodies out
686   of the various arenas.  There are 5 kinds of arenas:
687
688   1. SV-head arenas, which are discussed and handled above
689   2. regular body arenas
690   3. arenas for reduced-size bodies
691   4. Hash-Entry arenas
692
693   Arena types 2 & 3 are chained by body-type off an array of
694   arena-root pointers, which is indexed by svtype.  Some of the
695   larger/less used body types are malloced singly, since a large
696   unused block of them is wasteful.  Also, several svtypes dont have
697   bodies; the data fits into the sv-head itself.  The arena-root
698   pointer thus has a few unused root-pointers (which may be hijacked
699   later for arena types 4,5)
700
701   3 differs from 2 as an optimization; some body types have several
702   unused fields in the front of the structure (which are kept in-place
703   for consistency).  These bodies can be allocated in smaller chunks,
704   because the leading fields arent accessed.  Pointers to such bodies
705   are decremented to point at the unused 'ghost' memory, knowing that
706   the pointers are used with offsets to the real memory.
707
708   HE, HEK arenas are managed separately, with separate code, but may
709   be merge-able later..
710 */
711
712 /* get_arena(size): this creates custom-sized arenas
713    TBD: export properly for hv.c: S_more_he().
714 */
715 void*
716 Perl_get_arena(pTHX_ const size_t arena_size, const svtype bodytype)
717 {
718     dVAR;
719     struct arena_desc* adesc;
720     struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
721     unsigned int curr;
722
723     /* shouldnt need this
724     if (!arena_size)    arena_size = PERL_ARENA_SIZE;
725     */
726
727     /* may need new arena-set to hold new arena */
728     if (!aroot || aroot->curr >= aroot->set_size) {
729         struct arena_set *newroot;
730         Newxz(newroot, 1, struct arena_set);
731         newroot->set_size = ARENAS_PER_SET;
732         newroot->next = aroot;
733         aroot = newroot;
734         PL_body_arenas = (void *) newroot;
735         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
736     }
737
738     /* ok, now have arena-set with at least 1 empty/available arena-desc */
739     curr = aroot->curr++;
740     adesc = &(aroot->set[curr]);
741     assert(!adesc->arena);
742     
743     Newx(adesc->arena, arena_size, char);
744     adesc->size = arena_size;
745     adesc->utype = bodytype;
746     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
747                           curr, (void*)adesc->arena, (UV)arena_size));
748
749     return adesc->arena;
750 }
751
752
753 /* return a thing to the free list */
754
755 #define del_body(thing, root)                   \
756     STMT_START {                                \
757         void ** const thing_copy = (void **)thing;\
758         *thing_copy = *root;                    \
759         *root = (void*)thing_copy;              \
760     } STMT_END
761
762 /* 
763
764 =head1 SV-Body Allocation
765
766 Allocation of SV-bodies is similar to SV-heads, differing as follows;
767 the allocation mechanism is used for many body types, so is somewhat
768 more complicated, it uses arena-sets, and has no need for still-live
769 SV detection.
770
771 At the outermost level, (new|del)_X*V macros return bodies of the
772 appropriate type.  These macros call either (new|del)_body_type or
773 (new|del)_body_allocated macro pairs, depending on specifics of the
774 type.  Most body types use the former pair, the latter pair is used to
775 allocate body types with "ghost fields".
776
777 "ghost fields" are fields that are unused in certain types, and
778 consequently don't need to actually exist.  They are declared because
779 they're part of a "base type", which allows use of functions as
780 methods.  The simplest examples are AVs and HVs, 2 aggregate types
781 which don't use the fields which support SCALAR semantics.
782
783 For these types, the arenas are carved up into appropriately sized
784 chunks, we thus avoid wasted memory for those unaccessed members.
785 When bodies are allocated, we adjust the pointer back in memory by the
786 size of the part not allocated, so it's as if we allocated the full
787 structure.  (But things will all go boom if you write to the part that
788 is "not there", because you'll be overwriting the last members of the
789 preceding structure in memory.)
790
791 We calculate the correction using the STRUCT_OFFSET macro on the first
792 member present. If the allocated structure is smaller (no initial NV
793 actually allocated) then the net effect is to subtract the size of the NV
794 from the pointer, to return a new pointer as if an initial NV were actually
795 allocated. (We were using structures named *_allocated for this, but
796 this turned out to be a subtle bug, because a structure without an NV
797 could have a lower alignment constraint, but the compiler is allowed to
798 optimised accesses based on the alignment constraint of the actual pointer
799 to the full structure, for example, using a single 64 bit load instruction
800 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
801
802 This is the same trick as was used for NV and IV bodies. Ironically it
803 doesn't need to be used for NV bodies any more, because NV is now at
804 the start of the structure. IV bodies don't need it either, because
805 they are no longer allocated.
806
807 In turn, the new_body_* allocators call S_new_body(), which invokes
808 new_body_inline macro, which takes a lock, and takes a body off the
809 linked list at PL_body_roots[sv_type], calling S_more_bodies() if
810 necessary to refresh an empty list.  Then the lock is released, and
811 the body is returned.
812
813 S_more_bodies calls get_arena(), and carves it up into an array of N
814 bodies, which it strings into a linked list.  It looks up arena-size
815 and body-size from the body_details table described below, thus
816 supporting the multiple body-types.
817
818 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
819 the (new|del)_X*V macros are mapped directly to malloc/free.
820
821 */
822
823 /* 
824
825 For each sv-type, struct body_details bodies_by_type[] carries
826 parameters which control these aspects of SV handling:
827
828 Arena_size determines whether arenas are used for this body type, and if
829 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
830 zero, forcing individual mallocs and frees.
831
832 Body_size determines how big a body is, and therefore how many fit into
833 each arena.  Offset carries the body-pointer adjustment needed for
834 "ghost fields", and is used in *_allocated macros.
835
836 But its main purpose is to parameterize info needed in
837 Perl_sv_upgrade().  The info here dramatically simplifies the function
838 vs the implementation in 5.8.8, making it table-driven.  All fields
839 are used for this, except for arena_size.
840
841 For the sv-types that have no bodies, arenas are not used, so those
842 PL_body_roots[sv_type] are unused, and can be overloaded.  In
843 something of a special case, SVt_NULL is borrowed for HE arenas;
844 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
845 bodies_by_type[SVt_NULL] slot is not used, as the table is not
846 available in hv.c.
847
848 */
849
850 struct body_details {
851     U8 body_size;       /* Size to allocate  */
852     U8 copy;            /* Size of structure to copy (may be shorter)  */
853     U8 offset;
854     unsigned int type : 4;          /* We have space for a sanity check.  */
855     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
856     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
857     unsigned int arena : 1;         /* Allocated from an arena */
858     size_t arena_size;              /* Size of arena to allocate */
859 };
860
861 #define HADNV FALSE
862 #define NONV TRUE
863
864
865 #ifdef PURIFY
866 /* With -DPURFIY we allocate everything directly, and don't use arenas.
867    This seems a rather elegant way to simplify some of the code below.  */
868 #define HASARENA FALSE
869 #else
870 #define HASARENA TRUE
871 #endif
872 #define NOARENA FALSE
873
874 /* Size the arenas to exactly fit a given number of bodies.  A count
875    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
876    simplifying the default.  If count > 0, the arena is sized to fit
877    only that many bodies, allowing arenas to be used for large, rare
878    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
879    limited by PERL_ARENA_SIZE, so we can safely oversize the
880    declarations.
881  */
882 #define FIT_ARENA0(body_size)                           \
883     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
884 #define FIT_ARENAn(count,body_size)                     \
885     ( count * body_size <= PERL_ARENA_SIZE)             \
886     ? count * body_size                                 \
887     : FIT_ARENA0 (body_size)
888 #define FIT_ARENA(count,body_size)                      \
889     count                                               \
890     ? FIT_ARENAn (count, body_size)                     \
891     : FIT_ARENA0 (body_size)
892
893 /* Calculate the length to copy. Specifically work out the length less any
894    final padding the compiler needed to add.  See the comment in sv_upgrade
895    for why copying the padding proved to be a bug.  */
896
897 #define copy_length(type, last_member) \
898         STRUCT_OFFSET(type, last_member) \
899         + sizeof (((type*)SvANY((const SV *)0))->last_member)
900
901 static const struct body_details bodies_by_type[] = {
902     { sizeof(HE), 0, 0, SVt_NULL,
903       FALSE, NONV, NOARENA, FIT_ARENA(0, sizeof(HE)) },
904
905     /* The bind placeholder pretends to be an RV for now.
906        Also it's marked as "can't upgrade" to stop anyone using it before it's
907        implemented.  */
908     { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
909
910     /* IVs are in the head, so the allocation size is 0.  */
911     { 0,
912       sizeof(IV), /* This is used to copy out the IV body.  */
913       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
914       NOARENA /* IVS don't need an arena  */, 0
915     },
916
917     /* 8 bytes on most ILP32 with IEEE doubles */
918     { sizeof(NV), sizeof(NV),
919       STRUCT_OFFSET(XPVNV, xnv_u),
920       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
921
922     /* 8 bytes on most ILP32 with IEEE doubles */
923     { sizeof(XPV),
924       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
925       + STRUCT_OFFSET(XPV, xpv_cur),
926       SVt_PV, FALSE, NONV, HASARENA,
927       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
928
929 #if 2 *PTRSIZE <= IVSIZE
930     /* 12 */
931     { sizeof(XPVIV),
932       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
933       + STRUCT_OFFSET(XPV, xpv_cur),
934       SVt_PVIV, FALSE, NONV, HASARENA,
935       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
936     /* 12 */
937 #else
938     { sizeof(XPVIV),
939       copy_length(XPVIV, xiv_u),
940       0,
941       SVt_PVIV, FALSE, NONV, HASARENA,
942       FIT_ARENA(0, sizeof(XPVIV)) },
943 #endif
944
945 #if (2 *PTRSIZE <= IVSIZE) && (2 *PTRSIZE <= NVSIZE)
946     /* 20 */
947     { sizeof(XPVNV),
948       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
949       + STRUCT_OFFSET(XPV, xpv_cur),
950       SVt_PVNV, FALSE, HADNV, HASARENA,
951       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
952 #else
953     /* 20 */
954     { sizeof(XPVNV), copy_length(XPVNV, xnv_u), 0, SVt_PVNV, FALSE, HADNV,
955       HASARENA, FIT_ARENA(0, sizeof(XPVNV)) },
956 #endif
957
958     /* 28 */
959     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
960       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
961
962     /* something big */
963     { sizeof(regexp),
964       sizeof(regexp),
965       0,
966       SVt_REGEXP, FALSE, NONV, HASARENA,
967       FIT_ARENA(0, sizeof(regexp) - STRUCT_OFFSET(regexp, xpv_cur))
968     },
969
970     /* 48 */
971     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
972       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
973     
974     /* 64 */
975     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
976       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
977
978     { sizeof(XPVAV),
979       copy_length(XPVAV, xav_alloc),
980       0,
981       SVt_PVAV, TRUE, NONV, HASARENA,
982       FIT_ARENA(0, sizeof(XPVAV)) },
983
984     { sizeof(XPVHV),
985       copy_length(XPVHV, xhv_max),
986       0,
987       SVt_PVHV, TRUE, NONV, HASARENA,
988       FIT_ARENA(0, sizeof(XPVHV)) },
989
990     /* 56 */
991     { sizeof(XPVCV),
992       sizeof(XPVCV),
993       0,
994       SVt_PVCV, TRUE, NONV, HASARENA,
995       FIT_ARENA(0, sizeof(XPVCV)) },
996
997     { sizeof(XPVFM),
998       sizeof(XPVFM),
999       0,
1000       SVt_PVFM, TRUE, NONV, NOARENA,
1001       FIT_ARENA(20, sizeof(XPVFM)) },
1002
1003     /* XPVIO is 84 bytes, fits 48x */
1004     { sizeof(XPVIO),
1005       sizeof(XPVIO),
1006       0,
1007       SVt_PVIO, TRUE, NONV, HASARENA,
1008       FIT_ARENA(24, sizeof(XPVIO)) },
1009 };
1010
1011 #define new_body_allocated(sv_type)             \
1012     (void *)((char *)S_new_body(aTHX_ sv_type)  \
1013              - bodies_by_type[sv_type].offset)
1014
1015 #define del_body_allocated(p, sv_type)          \
1016     del_body(p + bodies_by_type[sv_type].offset, &PL_body_roots[sv_type])
1017
1018
1019 #define my_safemalloc(s)        (void*)safemalloc(s)
1020 #define my_safecalloc(s)        (void*)safecalloc(s, 1)
1021 #define my_safefree(p)  safefree((char*)p)
1022
1023 #ifdef PURIFY
1024
1025 #define new_XNV()       my_safemalloc(sizeof(XPVNV))
1026 #define del_XNV(p)      my_safefree(p)
1027
1028 #define new_XPVNV()     my_safemalloc(sizeof(XPVNV))
1029 #define del_XPVNV(p)    my_safefree(p)
1030
1031 #define new_XPVAV()     my_safemalloc(sizeof(XPVAV))
1032 #define del_XPVAV(p)    my_safefree(p)
1033
1034 #define new_XPVHV()     my_safemalloc(sizeof(XPVHV))
1035 #define del_XPVHV(p)    my_safefree(p)
1036
1037 #define new_XPVMG()     my_safemalloc(sizeof(XPVMG))
1038 #define del_XPVMG(p)    my_safefree(p)
1039
1040 #define new_XPVGV()     my_safemalloc(sizeof(XPVGV))
1041 #define del_XPVGV(p)    my_safefree(p)
1042
1043 #else /* !PURIFY */
1044
1045 #define new_XNV()       new_body_allocated(SVt_NV)
1046 #define del_XNV(p)      del_body_allocated(p, SVt_NV)
1047
1048 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
1049 #define del_XPVNV(p)    del_body_allocated(p, SVt_PVNV)
1050
1051 #define new_XPVAV()     new_body_allocated(SVt_PVAV)
1052 #define del_XPVAV(p)    del_body_allocated(p, SVt_PVAV)
1053
1054 #define new_XPVHV()     new_body_allocated(SVt_PVHV)
1055 #define del_XPVHV(p)    del_body_allocated(p, SVt_PVHV)
1056
1057 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
1058 #define del_XPVMG(p)    del_body_allocated(p, SVt_PVMG)
1059
1060 #define new_XPVGV()     new_body_allocated(SVt_PVGV)
1061 #define del_XPVGV(p)    del_body_allocated(p, SVt_PVGV)
1062
1063 #endif /* PURIFY */
1064
1065 /* no arena for you! */
1066
1067 #define new_NOARENA(details) \
1068         my_safemalloc((details)->body_size + (details)->offset)
1069 #define new_NOARENAZ(details) \
1070         my_safecalloc((details)->body_size + (details)->offset)
1071
1072 STATIC void *
1073 S_more_bodies (pTHX_ const svtype sv_type)
1074 {
1075     dVAR;
1076     void ** const root = &PL_body_roots[sv_type];
1077     const struct body_details * const bdp = &bodies_by_type[sv_type];
1078     const size_t body_size = bdp->body_size;
1079     char *start;
1080     const char *end;
1081     const size_t arena_size = Perl_malloc_good_size(bdp->arena_size);
1082 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1083     static bool done_sanity_check;
1084
1085     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1086      * variables like done_sanity_check. */
1087     if (!done_sanity_check) {
1088         unsigned int i = SVt_LAST;
1089
1090         done_sanity_check = TRUE;
1091
1092         while (i--)
1093             assert (bodies_by_type[i].type == i);
1094     }
1095 #endif
1096
1097     assert(bdp->arena_size);
1098
1099     start = (char*) Perl_get_arena(aTHX_ arena_size, sv_type);
1100
1101     end = start + arena_size - 2 * body_size;
1102
1103     /* computed count doesnt reflect the 1st slot reservation */
1104 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1105     DEBUG_m(PerlIO_printf(Perl_debug_log,
1106                           "arena %p end %p arena-size %d (from %d) type %d "
1107                           "size %d ct %d\n",
1108                           (void*)start, (void*)end, (int)arena_size,
1109                           (int)bdp->arena_size, sv_type, (int)body_size,
1110                           (int)arena_size / (int)body_size));
1111 #else
1112     DEBUG_m(PerlIO_printf(Perl_debug_log,
1113                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1114                           (void*)start, (void*)end,
1115                           (int)bdp->arena_size, sv_type, (int)body_size,
1116                           (int)bdp->arena_size / (int)body_size));
1117 #endif
1118     *root = (void *)start;
1119
1120     while (start <= end) {
1121         char * const next = start + body_size;
1122         *(void**) start = (void *)next;
1123         start = next;
1124     }
1125     *(void **)start = 0;
1126
1127     return *root;
1128 }
1129
1130 /* grab a new thing from the free list, allocating more if necessary.
1131    The inline version is used for speed in hot routines, and the
1132    function using it serves the rest (unless PURIFY).
1133 */
1134 #define new_body_inline(xpv, sv_type) \
1135     STMT_START { \
1136         void ** const r3wt = &PL_body_roots[sv_type]; \
1137         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1138           ? *((void **)(r3wt)) : more_bodies(sv_type)); \
1139         *(r3wt) = *(void**)(xpv); \
1140     } STMT_END
1141
1142 #ifndef PURIFY
1143
1144 STATIC void *
1145 S_new_body(pTHX_ const svtype sv_type)
1146 {
1147     dVAR;
1148     void *xpv;
1149     new_body_inline(xpv, sv_type);
1150     return xpv;
1151 }
1152
1153 #endif
1154
1155 static const struct body_details fake_rv =
1156     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1157
1158 /*
1159 =for apidoc sv_upgrade
1160
1161 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1162 SV, then copies across as much information as possible from the old body.
1163 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1164
1165 =cut
1166 */
1167
1168 void
1169 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1170 {
1171     dVAR;
1172     void*       old_body;
1173     void*       new_body;
1174     const svtype old_type = SvTYPE(sv);
1175     const struct body_details *new_type_details;
1176     const struct body_details *old_type_details
1177         = bodies_by_type + old_type;
1178     SV *referant = NULL;
1179
1180     PERL_ARGS_ASSERT_SV_UPGRADE;
1181
1182     if (old_type == new_type)
1183         return;
1184
1185     /* This clause was purposefully added ahead of the early return above to
1186        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1187        inference by Nick I-S that it would fix other troublesome cases. See
1188        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1189
1190        Given that shared hash key scalars are no longer PVIV, but PV, there is
1191        no longer need to unshare so as to free up the IVX slot for its proper
1192        purpose. So it's safe to move the early return earlier.  */
1193
1194     if (new_type != SVt_PV && SvIsCOW(sv)) {
1195         sv_force_normal_flags(sv, 0);
1196     }
1197
1198     old_body = SvANY(sv);
1199
1200     /* Copying structures onto other structures that have been neatly zeroed
1201        has a subtle gotcha. Consider XPVMG
1202
1203        +------+------+------+------+------+-------+-------+
1204        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1205        +------+------+------+------+------+-------+-------+
1206        0      4      8     12     16     20      24      28
1207
1208        where NVs are aligned to 8 bytes, so that sizeof that structure is
1209        actually 32 bytes long, with 4 bytes of padding at the end:
1210
1211        +------+------+------+------+------+-------+-------+------+
1212        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1213        +------+------+------+------+------+-------+-------+------+
1214        0      4      8     12     16     20      24      28     32
1215
1216        so what happens if you allocate memory for this structure:
1217
1218        +------+------+------+------+------+-------+-------+------+------+...
1219        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1220        +------+------+------+------+------+-------+-------+------+------+...
1221        0      4      8     12     16     20      24      28     32     36
1222
1223        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1224        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1225        started out as zero once, but it's quite possible that it isn't. So now,
1226        rather than a nicely zeroed GP, you have it pointing somewhere random.
1227        Bugs ensue.
1228
1229        (In fact, GP ends up pointing at a previous GP structure, because the
1230        principle cause of the padding in XPVMG getting garbage is a copy of
1231        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1232        this happens to be moot because XPVGV has been re-ordered, with GP
1233        no longer after STASH)
1234
1235        So we are careful and work out the size of used parts of all the
1236        structures.  */
1237
1238     switch (old_type) {
1239     case SVt_NULL:
1240         break;
1241     case SVt_IV:
1242         if (SvROK(sv)) {
1243             referant = SvRV(sv);
1244             old_type_details = &fake_rv;
1245             if (new_type == SVt_NV)
1246                 new_type = SVt_PVNV;
1247         } else {
1248             if (new_type < SVt_PVIV) {
1249                 new_type = (new_type == SVt_NV)
1250                     ? SVt_PVNV : SVt_PVIV;
1251             }
1252         }
1253         break;
1254     case SVt_NV:
1255         if (new_type < SVt_PVNV) {
1256             new_type = SVt_PVNV;
1257         }
1258         break;
1259     case SVt_PV:
1260         assert(new_type > SVt_PV);
1261         assert(SVt_IV < SVt_PV);
1262         assert(SVt_NV < SVt_PV);
1263         break;
1264     case SVt_PVIV:
1265         break;
1266     case SVt_PVNV:
1267         break;
1268     case SVt_PVMG:
1269         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1270            there's no way that it can be safely upgraded, because perl.c
1271            expects to Safefree(SvANY(PL_mess_sv))  */
1272         assert(sv != PL_mess_sv);
1273         /* This flag bit is used to mean other things in other scalar types.
1274            Given that it only has meaning inside the pad, it shouldn't be set
1275            on anything that can get upgraded.  */
1276         assert(!SvPAD_TYPED(sv));
1277         break;
1278     default:
1279         if (old_type_details->cant_upgrade)
1280             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1281                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1282     }
1283
1284     if (old_type > new_type)
1285         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1286                 (int)old_type, (int)new_type);
1287
1288     new_type_details = bodies_by_type + new_type;
1289
1290     SvFLAGS(sv) &= ~SVTYPEMASK;
1291     SvFLAGS(sv) |= new_type;
1292
1293     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1294        the return statements above will have triggered.  */
1295     assert (new_type != SVt_NULL);
1296     switch (new_type) {
1297     case SVt_IV:
1298         assert(old_type == SVt_NULL);
1299         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1300         SvIV_set(sv, 0);
1301         return;
1302     case SVt_NV:
1303         assert(old_type == SVt_NULL);
1304         SvANY(sv) = new_XNV();
1305         SvNV_set(sv, 0);
1306         return;
1307     case SVt_PVHV:
1308     case SVt_PVAV:
1309         assert(new_type_details->body_size);
1310
1311 #ifndef PURIFY  
1312         assert(new_type_details->arena);
1313         assert(new_type_details->arena_size);
1314         /* This points to the start of the allocated area.  */
1315         new_body_inline(new_body, new_type);
1316         Zero(new_body, new_type_details->body_size, char);
1317         new_body = ((char *)new_body) - new_type_details->offset;
1318 #else
1319         /* We always allocated the full length item with PURIFY. To do this
1320            we fake things so that arena is false for all 16 types..  */
1321         new_body = new_NOARENAZ(new_type_details);
1322 #endif
1323         SvANY(sv) = new_body;
1324         if (new_type == SVt_PVAV) {
1325             AvMAX(sv)   = -1;
1326             AvFILLp(sv) = -1;
1327             AvREAL_only(sv);
1328             if (old_type_details->body_size) {
1329                 AvALLOC(sv) = 0;
1330             } else {
1331                 /* It will have been zeroed when the new body was allocated.
1332                    Lets not write to it, in case it confuses a write-back
1333                    cache.  */
1334             }
1335         } else {
1336             assert(!SvOK(sv));
1337             SvOK_off(sv);
1338 #ifndef NODEFAULT_SHAREKEYS
1339             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1340 #endif
1341             HvMAX(sv) = 7; /* (start with 8 buckets) */
1342         }
1343
1344         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1345            The target created by newSVrv also is, and it can have magic.
1346            However, it never has SvPVX set.
1347         */
1348         if (old_type == SVt_IV) {
1349             assert(!SvROK(sv));
1350         } else if (old_type >= SVt_PV) {
1351             assert(SvPVX_const(sv) == 0);
1352         }
1353
1354         if (old_type >= SVt_PVMG) {
1355             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1356             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1357         } else {
1358             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1359         }
1360         break;
1361
1362
1363     case SVt_REGEXP:
1364         /* This ensures that SvTHINKFIRST(sv) is true, and hence that
1365            sv_force_normal_flags(sv) is called.  */
1366         SvFAKE_on(sv);
1367     case SVt_PVIV:
1368         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1369            no route from NV to PVIV, NOK can never be true  */
1370         assert(!SvNOKp(sv));
1371         assert(!SvNOK(sv));
1372     case SVt_PVIO:
1373     case SVt_PVFM:
1374     case SVt_PVGV:
1375     case SVt_PVCV:
1376     case SVt_PVLV:
1377     case SVt_PVMG:
1378     case SVt_PVNV:
1379     case SVt_PV:
1380
1381         assert(new_type_details->body_size);
1382         /* We always allocated the full length item with PURIFY. To do this
1383            we fake things so that arena is false for all 16 types..  */
1384         if(new_type_details->arena) {
1385             /* This points to the start of the allocated area.  */
1386             new_body_inline(new_body, new_type);
1387             Zero(new_body, new_type_details->body_size, char);
1388             new_body = ((char *)new_body) - new_type_details->offset;
1389         } else {
1390             new_body = new_NOARENAZ(new_type_details);
1391         }
1392         SvANY(sv) = new_body;
1393
1394         if (old_type_details->copy) {
1395             /* There is now the potential for an upgrade from something without
1396                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1397             int offset = old_type_details->offset;
1398             int length = old_type_details->copy;
1399
1400             if (new_type_details->offset > old_type_details->offset) {
1401                 const int difference
1402                     = new_type_details->offset - old_type_details->offset;
1403                 offset += difference;
1404                 length -= difference;
1405             }
1406             assert (length >= 0);
1407                 
1408             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1409                  char);
1410         }
1411
1412 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1413         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1414          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1415          * NV slot, but the new one does, then we need to initialise the
1416          * freshly created NV slot with whatever the correct bit pattern is
1417          * for 0.0  */
1418         if (old_type_details->zero_nv && !new_type_details->zero_nv
1419             && !isGV_with_GP(sv))
1420             SvNV_set(sv, 0);
1421 #endif
1422
1423         if (new_type == SVt_PVIO) {
1424             IO * const io = MUTABLE_IO(sv);
1425             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1426
1427             SvOBJECT_on(io);
1428             /* Clear the stashcache because a new IO could overrule a package
1429                name */
1430             hv_clear(PL_stashcache);
1431
1432             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1433             IoPAGE_LEN(sv) = 60;
1434         }
1435         if (old_type < SVt_PV) {
1436             /* referant will be NULL unless the old type was SVt_IV emulating
1437                SVt_RV */
1438             sv->sv_u.svu_rv = referant;
1439         }
1440         break;
1441     default:
1442         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1443                    (unsigned long)new_type);
1444     }
1445
1446     if (old_type > SVt_IV) {
1447 #ifdef PURIFY
1448         my_safefree(old_body);
1449 #else
1450         /* Note that there is an assumption that all bodies of types that
1451            can be upgraded came from arenas. Only the more complex non-
1452            upgradable types are allowed to be directly malloc()ed.  */
1453         assert(old_type_details->arena);
1454         del_body((void*)((char*)old_body + old_type_details->offset),
1455                  &PL_body_roots[old_type]);
1456 #endif
1457     }
1458 }
1459
1460 /*
1461 =for apidoc sv_backoff
1462
1463 Remove any string offset. You should normally use the C<SvOOK_off> macro
1464 wrapper instead.
1465
1466 =cut
1467 */
1468
1469 int
1470 Perl_sv_backoff(pTHX_ register SV *const sv)
1471 {
1472     STRLEN delta;
1473     const char * const s = SvPVX_const(sv);
1474
1475     PERL_ARGS_ASSERT_SV_BACKOFF;
1476     PERL_UNUSED_CONTEXT;
1477
1478     assert(SvOOK(sv));
1479     assert(SvTYPE(sv) != SVt_PVHV);
1480     assert(SvTYPE(sv) != SVt_PVAV);
1481
1482     SvOOK_offset(sv, delta);
1483     
1484     SvLEN_set(sv, SvLEN(sv) + delta);
1485     SvPV_set(sv, SvPVX(sv) - delta);
1486     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1487     SvFLAGS(sv) &= ~SVf_OOK;
1488     return 0;
1489 }
1490
1491 /*
1492 =for apidoc sv_grow
1493
1494 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1495 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1496 Use the C<SvGROW> wrapper instead.
1497
1498 =cut
1499 */
1500
1501 char *
1502 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1503 {
1504     register char *s;
1505
1506     PERL_ARGS_ASSERT_SV_GROW;
1507
1508     if (PL_madskills && newlen >= 0x100000) {
1509         PerlIO_printf(Perl_debug_log,
1510                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1511     }
1512 #ifdef HAS_64K_LIMIT
1513     if (newlen >= 0x10000) {
1514         PerlIO_printf(Perl_debug_log,
1515                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1516         my_exit(1);
1517     }
1518 #endif /* HAS_64K_LIMIT */
1519     if (SvROK(sv))
1520         sv_unref(sv);
1521     if (SvTYPE(sv) < SVt_PV) {
1522         sv_upgrade(sv, SVt_PV);
1523         s = SvPVX_mutable(sv);
1524     }
1525     else if (SvOOK(sv)) {       /* pv is offset? */
1526         sv_backoff(sv);
1527         s = SvPVX_mutable(sv);
1528         if (newlen > SvLEN(sv))
1529             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1530 #ifdef HAS_64K_LIMIT
1531         if (newlen >= 0x10000)
1532             newlen = 0xFFFF;
1533 #endif
1534     }
1535     else
1536         s = SvPVX_mutable(sv);
1537
1538     if (newlen > SvLEN(sv)) {           /* need more room? */
1539 #ifndef Perl_safesysmalloc_size
1540         newlen = PERL_STRLEN_ROUNDUP(newlen);
1541 #endif
1542         if (SvLEN(sv) && s) {
1543             s = (char*)saferealloc(s, newlen);
1544         }
1545         else {
1546             s = (char*)safemalloc(newlen);
1547             if (SvPVX_const(sv) && SvCUR(sv)) {
1548                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1549             }
1550         }
1551         SvPV_set(sv, s);
1552 #ifdef Perl_safesysmalloc_size
1553         /* Do this here, do it once, do it right, and then we will never get
1554            called back into sv_grow() unless there really is some growing
1555            needed.  */
1556         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1557 #else
1558         SvLEN_set(sv, newlen);
1559 #endif
1560     }
1561     return s;
1562 }
1563
1564 /*
1565 =for apidoc sv_setiv
1566
1567 Copies an integer into the given SV, upgrading first if necessary.
1568 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1569
1570 =cut
1571 */
1572
1573 void
1574 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1575 {
1576     dVAR;
1577
1578     PERL_ARGS_ASSERT_SV_SETIV;
1579
1580     SV_CHECK_THINKFIRST_COW_DROP(sv);
1581     switch (SvTYPE(sv)) {
1582     case SVt_NULL:
1583     case SVt_NV:
1584         sv_upgrade(sv, SVt_IV);
1585         break;
1586     case SVt_PV:
1587         sv_upgrade(sv, SVt_PVIV);
1588         break;
1589
1590     case SVt_PVGV:
1591         if (!isGV_with_GP(sv))
1592             break;
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 integer in %s", sv_reftype(sv,0),
1599                    OP_DESC(PL_op));
1600     default: NOOP;
1601     }
1602     (void)SvIOK_only(sv);                       /* validate number */
1603     SvIV_set(sv, i);
1604     SvTAINT(sv);
1605 }
1606
1607 /*
1608 =for apidoc sv_setiv_mg
1609
1610 Like C<sv_setiv>, but also handles 'set' magic.
1611
1612 =cut
1613 */
1614
1615 void
1616 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1617 {
1618     PERL_ARGS_ASSERT_SV_SETIV_MG;
1619
1620     sv_setiv(sv,i);
1621     SvSETMAGIC(sv);
1622 }
1623
1624 /*
1625 =for apidoc sv_setuv
1626
1627 Copies an unsigned integer into the given SV, upgrading first if necessary.
1628 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1629
1630 =cut
1631 */
1632
1633 void
1634 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1635 {
1636     PERL_ARGS_ASSERT_SV_SETUV;
1637
1638     /* With these two if statements:
1639        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1640
1641        without
1642        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1643
1644        If you wish to remove them, please benchmark to see what the effect is
1645     */
1646     if (u <= (UV)IV_MAX) {
1647        sv_setiv(sv, (IV)u);
1648        return;
1649     }
1650     sv_setiv(sv, 0);
1651     SvIsUV_on(sv);
1652     SvUV_set(sv, u);
1653 }
1654
1655 /*
1656 =for apidoc sv_setuv_mg
1657
1658 Like C<sv_setuv>, but also handles 'set' magic.
1659
1660 =cut
1661 */
1662
1663 void
1664 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1665 {
1666     PERL_ARGS_ASSERT_SV_SETUV_MG;
1667
1668     sv_setuv(sv,u);
1669     SvSETMAGIC(sv);
1670 }
1671
1672 /*
1673 =for apidoc sv_setnv
1674
1675 Copies a double into the given SV, upgrading first if necessary.
1676 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1677
1678 =cut
1679 */
1680
1681 void
1682 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1683 {
1684     dVAR;
1685
1686     PERL_ARGS_ASSERT_SV_SETNV;
1687
1688     SV_CHECK_THINKFIRST_COW_DROP(sv);
1689     switch (SvTYPE(sv)) {
1690     case SVt_NULL:
1691     case SVt_IV:
1692         sv_upgrade(sv, SVt_NV);
1693         break;
1694     case SVt_PV:
1695     case SVt_PVIV:
1696         sv_upgrade(sv, SVt_PVNV);
1697         break;
1698
1699     case SVt_PVGV:
1700         if (!isGV_with_GP(sv))
1701             break;
1702     case SVt_PVAV:
1703     case SVt_PVHV:
1704     case SVt_PVCV:
1705     case SVt_PVFM:
1706     case SVt_PVIO:
1707         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1708                    OP_DESC(PL_op));
1709     default: NOOP;
1710     }
1711     SvNV_set(sv, num);
1712     (void)SvNOK_only(sv);                       /* validate number */
1713     SvTAINT(sv);
1714 }
1715
1716 /*
1717 =for apidoc sv_setnv_mg
1718
1719 Like C<sv_setnv>, but also handles 'set' magic.
1720
1721 =cut
1722 */
1723
1724 void
1725 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1726 {
1727     PERL_ARGS_ASSERT_SV_SETNV_MG;
1728
1729     sv_setnv(sv,num);
1730     SvSETMAGIC(sv);
1731 }
1732
1733 /* Print an "isn't numeric" warning, using a cleaned-up,
1734  * printable version of the offending string
1735  */
1736
1737 STATIC void
1738 S_not_a_number(pTHX_ SV *const sv)
1739 {
1740      dVAR;
1741      SV *dsv;
1742      char tmpbuf[64];
1743      const char *pv;
1744
1745      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1746
1747      if (DO_UTF8(sv)) {
1748           dsv = newSVpvs_flags("", SVs_TEMP);
1749           pv = sv_uni_display(dsv, sv, 10, 0);
1750      } else {
1751           char *d = tmpbuf;
1752           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1753           /* each *s can expand to 4 chars + "...\0",
1754              i.e. need room for 8 chars */
1755         
1756           const char *s = SvPVX_const(sv);
1757           const char * const end = s + SvCUR(sv);
1758           for ( ; s < end && d < limit; s++ ) {
1759                int ch = *s & 0xFF;
1760                if (ch & 128 && !isPRINT_LC(ch)) {
1761                     *d++ = 'M';
1762                     *d++ = '-';
1763                     ch &= 127;
1764                }
1765                if (ch == '\n') {
1766                     *d++ = '\\';
1767                     *d++ = 'n';
1768                }
1769                else if (ch == '\r') {
1770                     *d++ = '\\';
1771                     *d++ = 'r';
1772                }
1773                else if (ch == '\f') {
1774                     *d++ = '\\';
1775                     *d++ = 'f';
1776                }
1777                else if (ch == '\\') {
1778                     *d++ = '\\';
1779                     *d++ = '\\';
1780                }
1781                else if (ch == '\0') {
1782                     *d++ = '\\';
1783                     *d++ = '0';
1784                }
1785                else if (isPRINT_LC(ch))
1786                     *d++ = ch;
1787                else {
1788                     *d++ = '^';
1789                     *d++ = toCTRL(ch);
1790                }
1791           }
1792           if (s < end) {
1793                *d++ = '.';
1794                *d++ = '.';
1795                *d++ = '.';
1796           }
1797           *d = '\0';
1798           pv = tmpbuf;
1799     }
1800
1801     if (PL_op)
1802         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1803                     "Argument \"%s\" isn't numeric in %s", pv,
1804                     OP_DESC(PL_op));
1805     else
1806         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1807                     "Argument \"%s\" isn't numeric", pv);
1808 }
1809
1810 /*
1811 =for apidoc looks_like_number
1812
1813 Test if the content of an SV looks like a number (or is a number).
1814 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1815 non-numeric warning), even if your atof() doesn't grok them.
1816
1817 =cut
1818 */
1819
1820 I32
1821 Perl_looks_like_number(pTHX_ SV *const sv)
1822 {
1823     register const char *sbegin;
1824     STRLEN len;
1825
1826     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1827
1828     if (SvPOK(sv)) {
1829         sbegin = SvPVX_const(sv);
1830         len = SvCUR(sv);
1831     }
1832     else if (SvPOKp(sv))
1833         sbegin = SvPV_const(sv, len);
1834     else
1835         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1836     return grok_number(sbegin, len, NULL);
1837 }
1838
1839 STATIC bool
1840 S_glob_2number(pTHX_ GV * const gv)
1841 {
1842     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1843     SV *const buffer = sv_newmortal();
1844
1845     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1846
1847     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1848        is on.  */
1849     SvFAKE_off(gv);
1850     gv_efullname3(buffer, gv, "*");
1851     SvFLAGS(gv) |= wasfake;
1852
1853     /* We know that all GVs stringify to something that is not-a-number,
1854         so no need to test that.  */
1855     if (ckWARN(WARN_NUMERIC))
1856         not_a_number(buffer);
1857     /* We just want something true to return, so that S_sv_2iuv_common
1858         can tail call us and return true.  */
1859     return TRUE;
1860 }
1861
1862 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1863    until proven guilty, assume that things are not that bad... */
1864
1865 /*
1866    NV_PRESERVES_UV:
1867
1868    As 64 bit platforms often have an NV that doesn't preserve all bits of
1869    an IV (an assumption perl has been based on to date) it becomes necessary
1870    to remove the assumption that the NV always carries enough precision to
1871    recreate the IV whenever needed, and that the NV is the canonical form.
1872    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1873    precision as a side effect of conversion (which would lead to insanity
1874    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1875    1) to distinguish between IV/UV/NV slots that have cached a valid
1876       conversion where precision was lost and IV/UV/NV slots that have a
1877       valid conversion which has lost no precision
1878    2) to ensure that if a numeric conversion to one form is requested that
1879       would lose precision, the precise conversion (or differently
1880       imprecise conversion) is also performed and cached, to prevent
1881       requests for different numeric formats on the same SV causing
1882       lossy conversion chains. (lossless conversion chains are perfectly
1883       acceptable (still))
1884
1885
1886    flags are used:
1887    SvIOKp is true if the IV slot contains a valid value
1888    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1889    SvNOKp is true if the NV slot contains a valid value
1890    SvNOK  is true only if the NV value is accurate
1891
1892    so
1893    while converting from PV to NV, check to see if converting that NV to an
1894    IV(or UV) would lose accuracy over a direct conversion from PV to
1895    IV(or UV). If it would, cache both conversions, return NV, but mark
1896    SV as IOK NOKp (ie not NOK).
1897
1898    While converting from PV to IV, check to see if converting that IV to an
1899    NV would lose accuracy over a direct conversion from PV to NV. If it
1900    would, cache both conversions, flag similarly.
1901
1902    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1903    correctly because if IV & NV were set NV *always* overruled.
1904    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1905    changes - now IV and NV together means that the two are interchangeable:
1906    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1907
1908    The benefit of this is that operations such as pp_add know that if
1909    SvIOK is true for both left and right operands, then integer addition
1910    can be used instead of floating point (for cases where the result won't
1911    overflow). Before, floating point was always used, which could lead to
1912    loss of precision compared with integer addition.
1913
1914    * making IV and NV equal status should make maths accurate on 64 bit
1915      platforms
1916    * may speed up maths somewhat if pp_add and friends start to use
1917      integers when possible instead of fp. (Hopefully the overhead in
1918      looking for SvIOK and checking for overflow will not outweigh the
1919      fp to integer speedup)
1920    * will slow down integer operations (callers of SvIV) on "inaccurate"
1921      values, as the change from SvIOK to SvIOKp will cause a call into
1922      sv_2iv each time rather than a macro access direct to the IV slot
1923    * should speed up number->string conversion on integers as IV is
1924      favoured when IV and NV are equally accurate
1925
1926    ####################################################################
1927    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1928    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1929    On the other hand, SvUOK is true iff UV.
1930    ####################################################################
1931
1932    Your mileage will vary depending your CPU's relative fp to integer
1933    performance ratio.
1934 */
1935
1936 #ifndef NV_PRESERVES_UV
1937 #  define IS_NUMBER_UNDERFLOW_IV 1
1938 #  define IS_NUMBER_UNDERFLOW_UV 2
1939 #  define IS_NUMBER_IV_AND_UV    2
1940 #  define IS_NUMBER_OVERFLOW_IV  4
1941 #  define IS_NUMBER_OVERFLOW_UV  5
1942
1943 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1944
1945 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1946 STATIC int
1947 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1948 #  ifdef DEBUGGING
1949                        , I32 numtype
1950 #  endif
1951                        )
1952 {
1953     dVAR;
1954
1955     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1956
1957     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));
1958     if (SvNVX(sv) < (NV)IV_MIN) {
1959         (void)SvIOKp_on(sv);
1960         (void)SvNOK_on(sv);
1961         SvIV_set(sv, IV_MIN);
1962         return IS_NUMBER_UNDERFLOW_IV;
1963     }
1964     if (SvNVX(sv) > (NV)UV_MAX) {
1965         (void)SvIOKp_on(sv);
1966         (void)SvNOK_on(sv);
1967         SvIsUV_on(sv);
1968         SvUV_set(sv, UV_MAX);
1969         return IS_NUMBER_OVERFLOW_UV;
1970     }
1971     (void)SvIOKp_on(sv);
1972     (void)SvNOK_on(sv);
1973     /* Can't use strtol etc to convert this string.  (See truth table in
1974        sv_2iv  */
1975     if (SvNVX(sv) <= (UV)IV_MAX) {
1976         SvIV_set(sv, I_V(SvNVX(sv)));
1977         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1978             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1979         } else {
1980             /* Integer is imprecise. NOK, IOKp */
1981         }
1982         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1983     }
1984     SvIsUV_on(sv);
1985     SvUV_set(sv, U_V(SvNVX(sv)));
1986     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1987         if (SvUVX(sv) == UV_MAX) {
1988             /* As we know that NVs don't preserve UVs, UV_MAX cannot
1989                possibly be preserved by NV. Hence, it must be overflow.
1990                NOK, IOKp */
1991             return IS_NUMBER_OVERFLOW_UV;
1992         }
1993         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1994     } else {
1995         /* Integer is imprecise. NOK, IOKp */
1996     }
1997     return IS_NUMBER_OVERFLOW_IV;
1998 }
1999 #endif /* !NV_PRESERVES_UV*/
2000
2001 STATIC bool
2002 S_sv_2iuv_common(pTHX_ SV *const sv)
2003 {
2004     dVAR;
2005
2006     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
2007
2008     if (SvNOKp(sv)) {
2009         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2010          * without also getting a cached IV/UV from it at the same time
2011          * (ie PV->NV conversion should detect loss of accuracy and cache
2012          * IV or UV at same time to avoid this. */
2013         /* IV-over-UV optimisation - choose to cache IV if possible */
2014
2015         if (SvTYPE(sv) == SVt_NV)
2016             sv_upgrade(sv, SVt_PVNV);
2017
2018         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2019         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2020            certainly cast into the IV range at IV_MAX, whereas the correct
2021            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2022            cases go to UV */
2023 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2024         if (Perl_isnan(SvNVX(sv))) {
2025             SvUV_set(sv, 0);
2026             SvIsUV_on(sv);
2027             return FALSE;
2028         }
2029 #endif
2030         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2031             SvIV_set(sv, I_V(SvNVX(sv)));
2032             if (SvNVX(sv) == (NV) SvIVX(sv)
2033 #ifndef NV_PRESERVES_UV
2034                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2035                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2036                 /* Don't flag it as "accurately an integer" if the number
2037                    came from a (by definition imprecise) NV operation, and
2038                    we're outside the range of NV integer precision */
2039 #endif
2040                 ) {
2041                 if (SvNOK(sv))
2042                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2043                 else {
2044                     /* scalar has trailing garbage, eg "42a" */
2045                 }
2046                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2047                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2048                                       PTR2UV(sv),
2049                                       SvNVX(sv),
2050                                       SvIVX(sv)));
2051
2052             } else {
2053                 /* IV not precise.  No need to convert from PV, as NV
2054                    conversion would already have cached IV if it detected
2055                    that PV->IV would be better than PV->NV->IV
2056                    flags already correct - don't set public IOK.  */
2057                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2058                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2059                                       PTR2UV(sv),
2060                                       SvNVX(sv),
2061                                       SvIVX(sv)));
2062             }
2063             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2064                but the cast (NV)IV_MIN rounds to a the value less (more
2065                negative) than IV_MIN which happens to be equal to SvNVX ??
2066                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2067                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2068                (NV)UVX == NVX are both true, but the values differ. :-(
2069                Hopefully for 2s complement IV_MIN is something like
2070                0x8000000000000000 which will be exact. NWC */
2071         }
2072         else {
2073             SvUV_set(sv, U_V(SvNVX(sv)));
2074             if (
2075                 (SvNVX(sv) == (NV) SvUVX(sv))
2076 #ifndef  NV_PRESERVES_UV
2077                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2078                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2079                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2080                 /* Don't flag it as "accurately an integer" if the number
2081                    came from a (by definition imprecise) NV operation, and
2082                    we're outside the range of NV integer precision */
2083 #endif
2084                 && SvNOK(sv)
2085                 )
2086                 SvIOK_on(sv);
2087             SvIsUV_on(sv);
2088             DEBUG_c(PerlIO_printf(Perl_debug_log,
2089                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2090                                   PTR2UV(sv),
2091                                   SvUVX(sv),
2092                                   SvUVX(sv)));
2093         }
2094     }
2095     else if (SvPOKp(sv) && SvLEN(sv)) {
2096         UV value;
2097         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2098         /* We want to avoid a possible problem when we cache an IV/ a UV which
2099            may be later translated to an NV, and the resulting NV is not
2100            the same as the direct translation of the initial string
2101            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2102            be careful to ensure that the value with the .456 is around if the
2103            NV value is requested in the future).
2104         
2105            This means that if we cache such an IV/a UV, we need to cache the
2106            NV as well.  Moreover, we trade speed for space, and do not
2107            cache the NV if we are sure it's not needed.
2108          */
2109
2110         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2111         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2112              == IS_NUMBER_IN_UV) {
2113             /* It's definitely an integer, only upgrade to PVIV */
2114             if (SvTYPE(sv) < SVt_PVIV)
2115                 sv_upgrade(sv, SVt_PVIV);
2116             (void)SvIOK_on(sv);
2117         } else if (SvTYPE(sv) < SVt_PVNV)
2118             sv_upgrade(sv, SVt_PVNV);
2119
2120         /* If NVs preserve UVs then we only use the UV value if we know that
2121            we aren't going to call atof() below. If NVs don't preserve UVs
2122            then the value returned may have more precision than atof() will
2123            return, even though value isn't perfectly accurate.  */
2124         if ((numtype & (IS_NUMBER_IN_UV
2125 #ifdef NV_PRESERVES_UV
2126                         | IS_NUMBER_NOT_INT
2127 #endif
2128             )) == IS_NUMBER_IN_UV) {
2129             /* This won't turn off the public IOK flag if it was set above  */
2130             (void)SvIOKp_on(sv);
2131
2132             if (!(numtype & IS_NUMBER_NEG)) {
2133                 /* positive */;
2134                 if (value <= (UV)IV_MAX) {
2135                     SvIV_set(sv, (IV)value);
2136                 } else {
2137                     /* it didn't overflow, and it was positive. */
2138                     SvUV_set(sv, value);
2139                     SvIsUV_on(sv);
2140                 }
2141             } else {
2142                 /* 2s complement assumption  */
2143                 if (value <= (UV)IV_MIN) {
2144                     SvIV_set(sv, -(IV)value);
2145                 } else {
2146                     /* Too negative for an IV.  This is a double upgrade, but
2147                        I'm assuming it will be rare.  */
2148                     if (SvTYPE(sv) < SVt_PVNV)
2149                         sv_upgrade(sv, SVt_PVNV);
2150                     SvNOK_on(sv);
2151                     SvIOK_off(sv);
2152                     SvIOKp_on(sv);
2153                     SvNV_set(sv, -(NV)value);
2154                     SvIV_set(sv, IV_MIN);
2155                 }
2156             }
2157         }
2158         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2159            will be in the previous block to set the IV slot, and the next
2160            block to set the NV slot.  So no else here.  */
2161         
2162         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2163             != IS_NUMBER_IN_UV) {
2164             /* It wasn't an (integer that doesn't overflow the UV). */
2165             SvNV_set(sv, Atof(SvPVX_const(sv)));
2166
2167             if (! numtype && ckWARN(WARN_NUMERIC))
2168                 not_a_number(sv);
2169
2170 #if defined(USE_LONG_DOUBLE)
2171             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2172                                   PTR2UV(sv), SvNVX(sv)));
2173 #else
2174             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2175                                   PTR2UV(sv), SvNVX(sv)));
2176 #endif
2177
2178 #ifdef NV_PRESERVES_UV
2179             (void)SvIOKp_on(sv);
2180             (void)SvNOK_on(sv);
2181             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2182                 SvIV_set(sv, I_V(SvNVX(sv)));
2183                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2184                     SvIOK_on(sv);
2185                 } else {
2186                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2187                 }
2188                 /* UV will not work better than IV */
2189             } else {
2190                 if (SvNVX(sv) > (NV)UV_MAX) {
2191                     SvIsUV_on(sv);
2192                     /* Integer is inaccurate. NOK, IOKp, is UV */
2193                     SvUV_set(sv, UV_MAX);
2194                 } else {
2195                     SvUV_set(sv, U_V(SvNVX(sv)));
2196                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2197                        NV preservse UV so can do correct comparison.  */
2198                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2199                         SvIOK_on(sv);
2200                     } else {
2201                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2202                     }
2203                 }
2204                 SvIsUV_on(sv);
2205             }
2206 #else /* NV_PRESERVES_UV */
2207             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2208                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2209                 /* The IV/UV slot will have been set from value returned by
2210                    grok_number above.  The NV slot has just been set using
2211                    Atof.  */
2212                 SvNOK_on(sv);
2213                 assert (SvIOKp(sv));
2214             } else {
2215                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2216                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2217                     /* Small enough to preserve all bits. */
2218                     (void)SvIOKp_on(sv);
2219                     SvNOK_on(sv);
2220                     SvIV_set(sv, I_V(SvNVX(sv)));
2221                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2222                         SvIOK_on(sv);
2223                     /* Assumption: first non-preserved integer is < IV_MAX,
2224                        this NV is in the preserved range, therefore: */
2225                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2226                           < (UV)IV_MAX)) {
2227                         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);
2228                     }
2229                 } else {
2230                     /* IN_UV NOT_INT
2231                          0      0       already failed to read UV.
2232                          0      1       already failed to read UV.
2233                          1      0       you won't get here in this case. IV/UV
2234                                         slot set, public IOK, Atof() unneeded.
2235                          1      1       already read UV.
2236                        so there's no point in sv_2iuv_non_preserve() attempting
2237                        to use atol, strtol, strtoul etc.  */
2238 #  ifdef DEBUGGING
2239                     sv_2iuv_non_preserve (sv, numtype);
2240 #  else
2241                     sv_2iuv_non_preserve (sv);
2242 #  endif
2243                 }
2244             }
2245 #endif /* NV_PRESERVES_UV */
2246         /* It might be more code efficient to go through the entire logic above
2247            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2248            gets complex and potentially buggy, so more programmer efficient
2249            to do it this way, by turning off the public flags:  */
2250         if (!numtype)
2251             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2252         }
2253     }
2254     else  {
2255         if (isGV_with_GP(sv))
2256             return glob_2number(MUTABLE_GV(sv));
2257
2258         if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2259             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2260                 report_uninit(sv);
2261         }
2262         if (SvTYPE(sv) < SVt_IV)
2263             /* Typically the caller expects that sv_any is not NULL now.  */
2264             sv_upgrade(sv, SVt_IV);
2265         /* Return 0 from the caller.  */
2266         return TRUE;
2267     }
2268     return FALSE;
2269 }
2270
2271 /*
2272 =for apidoc sv_2iv_flags
2273
2274 Return the integer value of an SV, doing any necessary string
2275 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2276 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2277
2278 =cut
2279 */
2280
2281 IV
2282 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2283 {
2284     dVAR;
2285     if (!sv)
2286         return 0;
2287     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2288         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2289            cache IVs just in case. In practice it seems that they never
2290            actually anywhere accessible by user Perl code, let alone get used
2291            in anything other than a string context.  */
2292         if (flags & SV_GMAGIC)
2293             mg_get(sv);
2294         if (SvIOKp(sv))
2295             return SvIVX(sv);
2296         if (SvNOKp(sv)) {
2297             return I_V(SvNVX(sv));
2298         }
2299         if (SvPOKp(sv) && SvLEN(sv)) {
2300             UV value;
2301             const int numtype
2302                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2303
2304             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2305                 == IS_NUMBER_IN_UV) {
2306                 /* It's definitely an integer */
2307                 if (numtype & IS_NUMBER_NEG) {
2308                     if (value < (UV)IV_MIN)
2309                         return -(IV)value;
2310                 } else {
2311                     if (value < (UV)IV_MAX)
2312                         return (IV)value;
2313                 }
2314             }
2315             if (!numtype) {
2316                 if (ckWARN(WARN_NUMERIC))
2317                     not_a_number(sv);
2318             }
2319             return I_V(Atof(SvPVX_const(sv)));
2320         }
2321         if (SvROK(sv)) {
2322             goto return_rok;
2323         }
2324         assert(SvTYPE(sv) >= SVt_PVMG);
2325         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2326     } else if (SvTHINKFIRST(sv)) {
2327         if (SvROK(sv)) {
2328         return_rok:
2329             if (SvAMAGIC(sv)) {
2330                 SV * tmpstr;
2331                 if (flags & SV_SKIP_OVERLOAD)
2332                     return 0;
2333                 tmpstr=AMG_CALLun(sv,numer);
2334                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2335                     return SvIV(tmpstr);
2336                 }
2337             }
2338             return PTR2IV(SvRV(sv));
2339         }
2340         if (SvIsCOW(sv)) {
2341             sv_force_normal_flags(sv, 0);
2342         }
2343         if (SvREADONLY(sv) && !SvOK(sv)) {
2344             if (ckWARN(WARN_UNINITIALIZED))
2345                 report_uninit(sv);
2346             return 0;
2347         }
2348     }
2349     if (!SvIOKp(sv)) {
2350         if (S_sv_2iuv_common(aTHX_ sv))
2351             return 0;
2352     }
2353     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2354         PTR2UV(sv),SvIVX(sv)));
2355     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2356 }
2357
2358 /*
2359 =for apidoc sv_2uv_flags
2360
2361 Return the unsigned integer value of an SV, doing any necessary string
2362 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2363 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2364
2365 =cut
2366 */
2367
2368 UV
2369 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2370 {
2371     dVAR;
2372     if (!sv)
2373         return 0;
2374     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2375         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2376            cache IVs just in case.  */
2377         if (flags & SV_GMAGIC)
2378             mg_get(sv);
2379         if (SvIOKp(sv))
2380             return SvUVX(sv);
2381         if (SvNOKp(sv))
2382             return U_V(SvNVX(sv));
2383         if (SvPOKp(sv) && SvLEN(sv)) {
2384             UV value;
2385             const int numtype
2386                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2387
2388             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2389                 == IS_NUMBER_IN_UV) {
2390                 /* It's definitely an integer */
2391                 if (!(numtype & IS_NUMBER_NEG))
2392                     return value;
2393             }
2394             if (!numtype) {
2395                 if (ckWARN(WARN_NUMERIC))
2396                     not_a_number(sv);
2397             }
2398             return U_V(Atof(SvPVX_const(sv)));
2399         }
2400         if (SvROK(sv)) {
2401             goto return_rok;
2402         }
2403         assert(SvTYPE(sv) >= SVt_PVMG);
2404         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2405     } else if (SvTHINKFIRST(sv)) {
2406         if (SvROK(sv)) {
2407         return_rok:
2408             if (SvAMAGIC(sv)) {
2409                 SV *tmpstr;
2410                 if (flags & SV_SKIP_OVERLOAD)
2411                     return 0;
2412                 tmpstr = AMG_CALLun(sv,numer);
2413                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2414                     return SvUV(tmpstr);
2415                 }
2416             }
2417             return PTR2UV(SvRV(sv));
2418         }
2419         if (SvIsCOW(sv)) {
2420             sv_force_normal_flags(sv, 0);
2421         }
2422         if (SvREADONLY(sv) && !SvOK(sv)) {
2423             if (ckWARN(WARN_UNINITIALIZED))
2424                 report_uninit(sv);
2425             return 0;
2426         }
2427     }
2428     if (!SvIOKp(sv)) {
2429         if (S_sv_2iuv_common(aTHX_ sv))
2430             return 0;
2431     }
2432
2433     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2434                           PTR2UV(sv),SvUVX(sv)));
2435     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2436 }
2437
2438 /*
2439 =for apidoc sv_2nv_flags
2440
2441 Return the num value of an SV, doing any necessary string or integer
2442 conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2443 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2444
2445 =cut
2446 */
2447
2448 NV
2449 Perl_sv_2nv_flags(pTHX_ register SV *const sv, const I32 flags)
2450 {
2451     dVAR;
2452     if (!sv)
2453         return 0.0;
2454     if (SvGMAGICAL(sv) || (SvTYPE(sv) == SVt_PVGV && SvVALID(sv))) {
2455         /* FBMs use the same flag bit as SVf_IVisUV, so must let them
2456            cache IVs just in case.  */
2457         if (flags & SV_GMAGIC)
2458             mg_get(sv);
2459         if (SvNOKp(sv))
2460             return SvNVX(sv);
2461         if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
2462             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2463                 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
2464                 not_a_number(sv);
2465             return Atof(SvPVX_const(sv));
2466         }
2467         if (SvIOKp(sv)) {
2468             if (SvIsUV(sv))
2469                 return (NV)SvUVX(sv);
2470             else
2471                 return (NV)SvIVX(sv);
2472         }
2473         if (SvROK(sv)) {
2474             goto return_rok;
2475         }
2476         assert(SvTYPE(sv) >= SVt_PVMG);
2477         /* This falls through to the report_uninit near the end of the
2478            function. */
2479     } else if (SvTHINKFIRST(sv)) {
2480         if (SvROK(sv)) {
2481         return_rok:
2482             if (SvAMAGIC(sv)) {
2483                 SV *tmpstr;
2484                 if (flags & SV_SKIP_OVERLOAD)
2485                     return 0;
2486                 tmpstr = AMG_CALLun(sv,numer);
2487                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2488                     return SvNV(tmpstr);
2489                 }
2490             }
2491             return PTR2NV(SvRV(sv));
2492         }
2493         if (SvIsCOW(sv)) {
2494             sv_force_normal_flags(sv, 0);
2495         }
2496         if (SvREADONLY(sv) && !SvOK(sv)) {
2497             if (ckWARN(WARN_UNINITIALIZED))
2498                 report_uninit(sv);
2499             return 0.0;
2500         }
2501     }
2502     if (SvTYPE(sv) < SVt_NV) {
2503         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2504         sv_upgrade(sv, SVt_NV);
2505 #ifdef USE_LONG_DOUBLE
2506         DEBUG_c({
2507             STORE_NUMERIC_LOCAL_SET_STANDARD();
2508             PerlIO_printf(Perl_debug_log,
2509                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2510                           PTR2UV(sv), SvNVX(sv));
2511             RESTORE_NUMERIC_LOCAL();
2512         });
2513 #else
2514         DEBUG_c({
2515             STORE_NUMERIC_LOCAL_SET_STANDARD();
2516             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2517                           PTR2UV(sv), SvNVX(sv));
2518             RESTORE_NUMERIC_LOCAL();
2519         });
2520 #endif
2521     }
2522     else if (SvTYPE(sv) < SVt_PVNV)
2523         sv_upgrade(sv, SVt_PVNV);
2524     if (SvNOKp(sv)) {
2525         return SvNVX(sv);
2526     }
2527     if (SvIOKp(sv)) {
2528         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2529 #ifdef NV_PRESERVES_UV
2530         if (SvIOK(sv))
2531             SvNOK_on(sv);
2532         else
2533             SvNOKp_on(sv);
2534 #else
2535         /* Only set the public NV OK flag if this NV preserves the IV  */
2536         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2537         if (SvIOK(sv) &&
2538             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2539                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2540             SvNOK_on(sv);
2541         else
2542             SvNOKp_on(sv);
2543 #endif
2544     }
2545     else if (SvPOKp(sv) && SvLEN(sv)) {
2546         UV value;
2547         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2548         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2549             not_a_number(sv);
2550 #ifdef NV_PRESERVES_UV
2551         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2552             == IS_NUMBER_IN_UV) {
2553             /* It's definitely an integer */
2554             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2555         } else
2556             SvNV_set(sv, Atof(SvPVX_const(sv)));
2557         if (numtype)
2558             SvNOK_on(sv);
2559         else
2560             SvNOKp_on(sv);
2561 #else
2562         SvNV_set(sv, Atof(SvPVX_const(sv)));
2563         /* Only set the public NV OK flag if this NV preserves the value in
2564            the PV at least as well as an IV/UV would.
2565            Not sure how to do this 100% reliably. */
2566         /* if that shift count is out of range then Configure's test is
2567            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2568            UV_BITS */
2569         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2570             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2571             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2572         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2573             /* Can't use strtol etc to convert this string, so don't try.
2574                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2575             SvNOK_on(sv);
2576         } else {
2577             /* value has been set.  It may not be precise.  */
2578             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2579                 /* 2s complement assumption for (UV)IV_MIN  */
2580                 SvNOK_on(sv); /* Integer is too negative.  */
2581             } else {
2582                 SvNOKp_on(sv);
2583                 SvIOKp_on(sv);
2584
2585                 if (numtype & IS_NUMBER_NEG) {
2586                     SvIV_set(sv, -(IV)value);
2587                 } else if (value <= (UV)IV_MAX) {
2588                     SvIV_set(sv, (IV)value);
2589                 } else {
2590                     SvUV_set(sv, value);
2591                     SvIsUV_on(sv);
2592                 }
2593
2594                 if (numtype & IS_NUMBER_NOT_INT) {
2595                     /* I believe that even if the original PV had decimals,
2596                        they are lost beyond the limit of the FP precision.
2597                        However, neither is canonical, so both only get p
2598                        flags.  NWC, 2000/11/25 */
2599                     /* Both already have p flags, so do nothing */
2600                 } else {
2601                     const NV nv = SvNVX(sv);
2602                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2603                         if (SvIVX(sv) == I_V(nv)) {
2604                             SvNOK_on(sv);
2605                         } else {
2606                             /* It had no "." so it must be integer.  */
2607                         }
2608                         SvIOK_on(sv);
2609                     } else {
2610                         /* between IV_MAX and NV(UV_MAX).
2611                            Could be slightly > UV_MAX */
2612
2613                         if (numtype & IS_NUMBER_NOT_INT) {
2614                             /* UV and NV both imprecise.  */
2615                         } else {
2616                             const UV nv_as_uv = U_V(nv);
2617
2618                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2619                                 SvNOK_on(sv);
2620                             }
2621                             SvIOK_on(sv);
2622                         }
2623                     }
2624                 }
2625             }
2626         }
2627         /* It might be more code efficient to go through the entire logic above
2628            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2629            gets complex and potentially buggy, so more programmer efficient
2630            to do it this way, by turning off the public flags:  */
2631         if (!numtype)
2632             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2633 #endif /* NV_PRESERVES_UV */
2634     }
2635     else  {
2636         if (isGV_with_GP(sv)) {
2637             glob_2number(MUTABLE_GV(sv));
2638             return 0.0;
2639         }
2640
2641         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2642             report_uninit(sv);
2643         assert (SvTYPE(sv) >= SVt_NV);
2644         /* Typically the caller expects that sv_any is not NULL now.  */
2645         /* XXX Ilya implies that this is a bug in callers that assume this
2646            and ideally should be fixed.  */
2647         return 0.0;
2648     }
2649 #if defined(USE_LONG_DOUBLE)
2650     DEBUG_c({
2651         STORE_NUMERIC_LOCAL_SET_STANDARD();
2652         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2653                       PTR2UV(sv), SvNVX(sv));
2654         RESTORE_NUMERIC_LOCAL();
2655     });
2656 #else
2657     DEBUG_c({
2658         STORE_NUMERIC_LOCAL_SET_STANDARD();
2659         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2660                       PTR2UV(sv), SvNVX(sv));
2661         RESTORE_NUMERIC_LOCAL();
2662     });
2663 #endif
2664     return SvNVX(sv);
2665 }
2666
2667 /*
2668 =for apidoc sv_2num
2669
2670 Return an SV with the numeric value of the source SV, doing any necessary
2671 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2672 access this function.
2673
2674 =cut
2675 */
2676
2677 SV *
2678 Perl_sv_2num(pTHX_ register SV *const sv)
2679 {
2680     PERL_ARGS_ASSERT_SV_2NUM;
2681
2682     if (!SvROK(sv))
2683         return sv;
2684     if (SvAMAGIC(sv)) {
2685         SV * const tmpsv = AMG_CALLun(sv,numer);
2686         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2687         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2688             return sv_2num(tmpsv);
2689     }
2690     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2691 }
2692
2693 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2694  * UV as a string towards the end of buf, and return pointers to start and
2695  * end of it.
2696  *
2697  * We assume that buf is at least TYPE_CHARS(UV) long.
2698  */
2699
2700 static char *
2701 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2702 {
2703     char *ptr = buf + TYPE_CHARS(UV);
2704     char * const ebuf = ptr;
2705     int sign;
2706
2707     PERL_ARGS_ASSERT_UIV_2BUF;
2708
2709     if (is_uv)
2710         sign = 0;
2711     else if (iv >= 0) {
2712         uv = iv;
2713         sign = 0;
2714     } else {
2715         uv = -iv;
2716         sign = 1;
2717     }
2718     do {
2719         *--ptr = '0' + (char)(uv % 10);
2720     } while (uv /= 10);
2721     if (sign)
2722         *--ptr = '-';
2723     *peob = ebuf;
2724     return ptr;
2725 }
2726
2727 /*
2728 =for apidoc sv_2pv_flags
2729
2730 Returns a pointer to the string value of an SV, and sets *lp to its length.
2731 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2732 if necessary.
2733 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2734 usually end up here too.
2735
2736 =cut
2737 */
2738
2739 char *
2740 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2741 {
2742     dVAR;
2743     register char *s;
2744
2745     if (!sv) {
2746         if (lp)
2747             *lp = 0;
2748         return (char *)"";
2749     }
2750     if (SvGMAGICAL(sv)) {
2751         if (flags & SV_GMAGIC)
2752             mg_get(sv);
2753         if (SvPOKp(sv)) {
2754             if (lp)
2755                 *lp = SvCUR(sv);
2756             if (flags & SV_MUTABLE_RETURN)
2757                 return SvPVX_mutable(sv);
2758             if (flags & SV_CONST_RETURN)
2759                 return (char *)SvPVX_const(sv);
2760             return SvPVX(sv);
2761         }
2762         if (SvIOKp(sv) || SvNOKp(sv)) {
2763             char tbuf[64];  /* Must fit sprintf/Gconvert of longest IV/NV */
2764             STRLEN len;
2765
2766             if (SvIOKp(sv)) {
2767                 len = SvIsUV(sv)
2768                     ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2769                     : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
2770             } else {
2771                 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2772                 len = strlen(tbuf);
2773             }
2774             assert(!SvROK(sv));
2775             {
2776                 dVAR;
2777
2778 #ifdef FIXNEGATIVEZERO
2779                 if (len == 2 && tbuf[0] == '-' && tbuf[1] == '0') {
2780                     tbuf[0] = '0';
2781                     tbuf[1] = 0;
2782                     len = 1;
2783                 }
2784 #endif
2785                 SvUPGRADE(sv, SVt_PV);
2786                 if (lp)
2787                     *lp = len;
2788                 s = SvGROW_mutable(sv, len + 1);
2789                 SvCUR_set(sv, len);
2790                 SvPOKp_on(sv);
2791                 return (char*)memcpy(s, tbuf, len + 1);
2792             }
2793         }
2794         if (SvROK(sv)) {
2795             goto return_rok;
2796         }
2797         assert(SvTYPE(sv) >= SVt_PVMG);
2798         /* This falls through to the report_uninit near the end of the
2799            function. */
2800     } else if (SvTHINKFIRST(sv)) {
2801         if (SvROK(sv)) {
2802         return_rok:
2803             if (SvAMAGIC(sv)) {
2804                 SV *tmpstr;
2805                 if (flags & SV_SKIP_OVERLOAD)
2806                     return NULL;
2807                 tmpstr = AMG_CALLun(sv,string);
2808                 TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2809                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2810                     /* Unwrap this:  */
2811                     /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2812                      */
2813
2814                     char *pv;
2815                     if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2816                         if (flags & SV_CONST_RETURN) {
2817                             pv = (char *) SvPVX_const(tmpstr);
2818                         } else {
2819                             pv = (flags & SV_MUTABLE_RETURN)
2820                                 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2821                         }
2822                         if (lp)
2823                             *lp = SvCUR(tmpstr);
2824                     } else {
2825                         pv = sv_2pv_flags(tmpstr, lp, flags);
2826                     }
2827                     if (SvUTF8(tmpstr))
2828                         SvUTF8_on(sv);
2829                     else
2830                         SvUTF8_off(sv);
2831                     return pv;
2832                 }
2833             }
2834             {
2835                 STRLEN len;
2836                 char *retval;
2837                 char *buffer;
2838                 SV *const referent = SvRV(sv);
2839
2840                 if (!referent) {
2841                     len = 7;
2842                     retval = buffer = savepvn("NULLREF", len);
2843                 } else if (SvTYPE(referent) == SVt_REGEXP) {
2844                     REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2845                     I32 seen_evals = 0;
2846
2847                     assert(re);
2848                         
2849                     /* If the regex is UTF-8 we want the containing scalar to
2850                        have an UTF-8 flag too */
2851                     if (RX_UTF8(re))
2852                         SvUTF8_on(sv);
2853                     else
2854                         SvUTF8_off(sv); 
2855
2856                     if ((seen_evals = RX_SEEN_EVALS(re)))
2857                         PL_reginterp_cnt += seen_evals;
2858
2859                     if (lp)
2860                         *lp = RX_WRAPLEN(re);
2861  
2862                     return RX_WRAPPED(re);
2863                 } else {
2864                     const char *const typestr = sv_reftype(referent, 0);
2865                     const STRLEN typelen = strlen(typestr);
2866                     UV addr = PTR2UV(referent);
2867                     const char *stashname = NULL;
2868                     STRLEN stashnamelen = 0; /* hush, gcc */
2869                     const char *buffer_end;
2870
2871                     if (SvOBJECT(referent)) {
2872                         const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2873
2874                         if (name) {
2875                             stashname = HEK_KEY(name);
2876                             stashnamelen = HEK_LEN(name);
2877
2878                             if (HEK_UTF8(name)) {
2879                                 SvUTF8_on(sv);
2880                             } else {
2881                                 SvUTF8_off(sv);
2882                             }
2883                         } else {
2884                             stashname = "__ANON__";
2885                             stashnamelen = 8;
2886                         }
2887                         len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2888                             + 2 * sizeof(UV) + 2 /* )\0 */;
2889                     } else {
2890                         len = typelen + 3 /* (0x */
2891                             + 2 * sizeof(UV) + 2 /* )\0 */;
2892                     }
2893
2894                     Newx(buffer, len, char);
2895                     buffer_end = retval = buffer + len;
2896
2897                     /* Working backwards  */
2898                     *--retval = '\0';
2899                     *--retval = ')';
2900                     do {
2901                         *--retval = PL_hexdigit[addr & 15];
2902                     } while (addr >>= 4);
2903                     *--retval = 'x';
2904                     *--retval = '0';
2905                     *--retval = '(';
2906
2907                     retval -= typelen;
2908                     memcpy(retval, typestr, typelen);
2909
2910                     if (stashname) {
2911                         *--retval = '=';
2912                         retval -= stashnamelen;
2913                         memcpy(retval, stashname, stashnamelen);
2914                     }
2915                     /* retval may not neccesarily have reached the start of the
2916                        buffer here.  */
2917                     assert (retval >= buffer);
2918
2919                     len = buffer_end - retval - 1; /* -1 for that \0  */
2920                 }
2921                 if (lp)
2922                     *lp = len;
2923                 SAVEFREEPV(buffer);
2924                 return retval;
2925             }
2926         }
2927         if (SvREADONLY(sv) && !SvOK(sv)) {
2928             if (lp)
2929                 *lp = 0;
2930             if (flags & SV_UNDEF_RETURNS_NULL)
2931                 return NULL;
2932             if (ckWARN(WARN_UNINITIALIZED))
2933                 report_uninit(sv);
2934             return (char *)"";
2935         }
2936     }
2937     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2938         /* I'm assuming that if both IV and NV are equally valid then
2939            converting the IV is going to be more efficient */
2940         const U32 isUIOK = SvIsUV(sv);
2941         char buf[TYPE_CHARS(UV)];
2942         char *ebuf, *ptr;
2943         STRLEN len;
2944
2945         if (SvTYPE(sv) < SVt_PVIV)
2946             sv_upgrade(sv, SVt_PVIV);
2947         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2948         len = ebuf - ptr;
2949         /* inlined from sv_setpvn */
2950         s = SvGROW_mutable(sv, len + 1);
2951         Move(ptr, s, len, char);
2952         s += len;
2953         *s = '\0';
2954     }
2955     else if (SvNOKp(sv)) {
2956         dSAVE_ERRNO;
2957         if (SvTYPE(sv) < SVt_PVNV)
2958             sv_upgrade(sv, SVt_PVNV);
2959         /* The +20 is pure guesswork.  Configure test needed. --jhi */
2960         s = SvGROW_mutable(sv, NV_DIG + 20);
2961         /* some Xenix systems wipe out errno here */
2962 #ifdef apollo
2963         if (SvNVX(sv) == 0.0)
2964             my_strlcpy(s, "0", SvLEN(sv));
2965         else
2966 #endif /*apollo*/
2967         {
2968             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2969         }
2970         RESTORE_ERRNO;
2971 #ifdef FIXNEGATIVEZERO
2972         if (*s == '-' && s[1] == '0' && !s[2]) {
2973             s[0] = '0';
2974             s[1] = 0;
2975         }
2976 #endif
2977         while (*s) s++;
2978 #ifdef hcx
2979         if (s[-1] == '.')
2980             *--s = '\0';
2981 #endif
2982     }
2983     else {
2984         if (isGV_with_GP(sv)) {
2985             GV *const gv = MUTABLE_GV(sv);
2986             const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
2987             SV *const buffer = sv_newmortal();
2988
2989             /* FAKE globs can get coerced, so need to turn this off temporarily
2990                if it is on.  */
2991             SvFAKE_off(gv);
2992             gv_efullname3(buffer, gv, "*");
2993             SvFLAGS(gv) |= wasfake;
2994
2995             if (SvPOK(buffer)) {
2996                 if (lp) {
2997                     *lp = SvCUR(buffer);
2998                 }
2999                 return SvPVX(buffer);
3000             }
3001             else {
3002                 if (lp)
3003                     *lp = 0;
3004                 return (char *)"";
3005             }
3006         }
3007
3008         if (lp)
3009             *lp = 0;
3010         if (flags & SV_UNDEF_RETURNS_NULL)
3011             return NULL;
3012         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
3013             report_uninit(sv);
3014         if (SvTYPE(sv) < SVt_PV)
3015             /* Typically the caller expects that sv_any is not NULL now.  */
3016             sv_upgrade(sv, SVt_PV);
3017         return (char *)"";
3018     }
3019     {
3020         const STRLEN len = s - SvPVX_const(sv);
3021         if (lp) 
3022             *lp = len;
3023         SvCUR_set(sv, len);
3024     }
3025     SvPOK_on(sv);
3026     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3027                           PTR2UV(sv),SvPVX_const(sv)));
3028     if (flags & SV_CONST_RETURN)
3029         return (char *)SvPVX_const(sv);
3030     if (flags & SV_MUTABLE_RETURN)
3031         return SvPVX_mutable(sv);
3032     return SvPVX(sv);
3033 }
3034
3035 /*
3036 =for apidoc sv_copypv
3037
3038 Copies a stringified representation of the source SV into the
3039 destination SV.  Automatically performs any necessary mg_get and
3040 coercion of numeric values into strings.  Guaranteed to preserve
3041 UTF8 flag even from overloaded objects.  Similar in nature to
3042 sv_2pv[_flags] but operates directly on an SV instead of just the
3043 string.  Mostly uses sv_2pv_flags to do its work, except when that
3044 would lose the UTF-8'ness of the PV.
3045
3046 =cut
3047 */
3048
3049 void
3050 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
3051 {
3052     STRLEN len;
3053     const char * const s = SvPV_const(ssv,len);
3054
3055     PERL_ARGS_ASSERT_SV_COPYPV;
3056
3057     sv_setpvn(dsv,s,len);
3058     if (SvUTF8(ssv))
3059         SvUTF8_on(dsv);
3060     else
3061         SvUTF8_off(dsv);
3062 }
3063
3064 /*
3065 =for apidoc sv_2pvbyte
3066
3067 Return a pointer to the byte-encoded representation of the SV, and set *lp
3068 to its length.  May cause the SV to be downgraded from UTF-8 as a
3069 side-effect.
3070
3071 Usually accessed via the C<SvPVbyte> macro.
3072
3073 =cut
3074 */
3075
3076 char *
3077 Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
3078 {
3079     PERL_ARGS_ASSERT_SV_2PVBYTE;
3080
3081     sv_utf8_downgrade(sv,0);
3082     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3083 }
3084
3085 /*
3086 =for apidoc sv_2pvutf8
3087
3088 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3089 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3090
3091 Usually accessed via the C<SvPVutf8> macro.
3092
3093 =cut
3094 */
3095
3096 char *
3097 Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
3098 {
3099     PERL_ARGS_ASSERT_SV_2PVUTF8;
3100
3101     sv_utf8_upgrade(sv);
3102     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3103 }
3104
3105
3106 /*
3107 =for apidoc sv_2bool
3108
3109 This function is only called on magical items, and is only used by
3110 sv_true() or its macro equivalent.
3111
3112 =cut
3113 */
3114
3115 bool
3116 Perl_sv_2bool(pTHX_ register SV *const sv)
3117 {
3118     dVAR;
3119
3120     PERL_ARGS_ASSERT_SV_2BOOL;
3121
3122     SvGETMAGIC(sv);
3123
3124     if (!SvOK(sv))
3125         return 0;
3126     if (SvROK(sv)) {
3127         if (SvAMAGIC(sv)) {
3128             SV * const tmpsv = AMG_CALLun(sv,bool_);
3129             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3130                 return cBOOL(SvTRUE(tmpsv));
3131         }
3132         return SvRV(sv) != 0;
3133     }
3134     if (SvPOKp(sv)) {
3135         register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3136         if (Xpvtmp &&
3137                 (*sv->sv_u.svu_pv > '0' ||
3138                 Xpvtmp->xpv_cur > 1 ||
3139                 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
3140             return 1;
3141         else
3142             return 0;
3143     }
3144     else {
3145         if (SvIOKp(sv))
3146             return SvIVX(sv) != 0;
3147         else {
3148             if (SvNOKp(sv))
3149                 return SvNVX(sv) != 0.0;
3150             else {
3151                 if (isGV_with_GP(sv))
3152                     return TRUE;
3153                 else
3154                     return FALSE;
3155             }
3156         }
3157     }
3158 }
3159
3160 /*
3161 =for apidoc sv_utf8_upgrade
3162
3163 Converts the PV of an SV to its UTF-8-encoded form.
3164 Forces the SV to string form if it is not already.
3165 Will C<mg_get> on C<sv> if appropriate.
3166 Always sets the SvUTF8 flag to avoid future validity checks even
3167 if the whole string is the same in UTF-8 as not.
3168 Returns the number of bytes in the converted string
3169
3170 This is not as a general purpose byte encoding to Unicode interface:
3171 use the Encode extension for that.
3172
3173 =for apidoc sv_utf8_upgrade_nomg
3174
3175 Like sv_utf8_upgrade, but doesn't do magic on C<sv>
3176
3177 =for apidoc sv_utf8_upgrade_flags
3178
3179 Converts the PV of an SV to its UTF-8-encoded form.
3180 Forces the SV to string form if it is not already.
3181 Always sets the SvUTF8 flag to avoid future validity checks even
3182 if all the bytes are invariant in UTF-8. If C<flags> has C<SV_GMAGIC> bit set,
3183 will C<mg_get> on C<sv> if appropriate, else not.
3184 Returns the number of bytes in the converted string
3185 C<sv_utf8_upgrade> and
3186 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3187
3188 This is not as a general purpose byte encoding to Unicode interface:
3189 use the Encode extension for that.
3190
3191 =cut
3192
3193 The grow version is currently not externally documented.  It adds a parameter,
3194 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3195 have free after it upon return.  This allows the caller to reserve extra space
3196 that it intends to fill, to avoid extra grows.
3197
3198 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3199 which can be used to tell this function to not first check to see if there are
3200 any characters that are different in UTF-8 (variant characters) which would
3201 force it to allocate a new string to sv, but to assume there are.  Typically
3202 this flag is used by a routine that has already parsed the string to find that
3203 there are such characters, and passes this information on so that the work
3204 doesn't have to be repeated.
3205
3206 (One might think that the calling routine could pass in the position of the
3207 first such variant, so it wouldn't have to be found again.  But that is not the
3208 case, because typically when the caller is likely to use this flag, it won't be
3209 calling this routine unless it finds something that won't fit into a byte.
3210 Otherwise it tries to not upgrade and just use bytes.  But some things that
3211 do fit into a byte are variants in utf8, and the caller may not have been
3212 keeping track of these.)
3213
3214 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3215 isn't guaranteed due to having other routines do the work in some input cases,
3216 or if the input is already flagged as being in utf8.
3217
3218 The speed of this could perhaps be improved for many cases if someone wanted to
3219 write a fast function that counts the number of variant characters in a string,
3220 especially if it could return the position of the first one.
3221
3222 */
3223
3224 STRLEN
3225 Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
3226 {
3227     dVAR;
3228
3229     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3230
3231     if (sv == &PL_sv_undef)
3232         return 0;
3233     if (!SvPOK(sv)) {
3234         STRLEN len = 0;
3235         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3236             (void) sv_2pv_flags(sv,&len, flags);
3237             if (SvUTF8(sv)) {
3238                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3239                 return len;
3240             }
3241         } else {
3242             (void) SvPV_force(sv,len);
3243         }
3244     }
3245
3246     if (SvUTF8(sv)) {
3247         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3248         return SvCUR(sv);
3249     }
3250
3251     if (SvIsCOW(sv)) {
3252         sv_force_normal_flags(sv, 0);
3253     }
3254
3255     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3256         sv_recode_to_utf8(sv, PL_encoding);
3257         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3258         return SvCUR(sv);
3259     }
3260
3261     if (SvCUR(sv) == 0) {
3262         if (extra) SvGROW(sv, extra);
3263     } else { /* Assume Latin-1/EBCDIC */
3264         /* This function could be much more efficient if we
3265          * had a FLAG in SVs to signal if there are any variant
3266          * chars in the PV.  Given that there isn't such a flag
3267          * make the loop as fast as possible (although there are certainly ways
3268          * to speed this up, eg. through vectorization) */
3269         U8 * s = (U8 *) SvPVX_const(sv);
3270         U8 * e = (U8 *) SvEND(sv);
3271         U8 *t = s;
3272         STRLEN two_byte_count = 0;
3273         
3274         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3275
3276         /* See if really will need to convert to utf8.  We mustn't rely on our
3277          * incoming SV being well formed and having a trailing '\0', as certain
3278          * code in pp_formline can send us partially built SVs. */
3279
3280         while (t < e) {
3281             const U8 ch = *t++;
3282             if (NATIVE_IS_INVARIANT(ch)) continue;
3283
3284             t--;    /* t already incremented; re-point to first variant */
3285             two_byte_count = 1;
3286             goto must_be_utf8;
3287         }
3288
3289         /* utf8 conversion not needed because all are invariants.  Mark as
3290          * UTF-8 even if no variant - saves scanning loop */
3291         SvUTF8_on(sv);
3292         return SvCUR(sv);
3293
3294 must_be_utf8:
3295
3296         /* Here, the string should be converted to utf8, either because of an
3297          * input flag (two_byte_count = 0), or because a character that
3298          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3299          * the beginning of the string (if we didn't examine anything), or to
3300          * the first variant.  In either case, everything from s to t - 1 will
3301          * occupy only 1 byte each on output.
3302          *
3303          * There are two main ways to convert.  One is to create a new string
3304          * and go through the input starting from the beginning, appending each
3305          * converted value onto the new string as we go along.  It's probably
3306          * best to allocate enough space in the string for the worst possible
3307          * case rather than possibly running out of space and having to
3308          * reallocate and then copy what we've done so far.  Since everything
3309          * from s to t - 1 is invariant, the destination can be initialized
3310          * with these using a fast memory copy
3311          *
3312          * The other way is to figure out exactly how big the string should be
3313          * by parsing the entire input.  Then you don't have to make it big
3314          * enough to handle the worst possible case, and more importantly, if
3315          * the string you already have is large enough, you don't have to
3316          * allocate a new string, you can copy the last character in the input
3317          * string to the final position(s) that will be occupied by the
3318          * converted string and go backwards, stopping at t, since everything
3319          * before that is invariant.
3320          *
3321          * There are advantages and disadvantages to each method.
3322          *
3323          * In the first method, we can allocate a new string, do the memory
3324          * copy from the s to t - 1, and then proceed through the rest of the
3325          * string byte-by-byte.
3326          *
3327          * In the second method, we proceed through the rest of the input
3328          * string just calculating how big the converted string will be.  Then
3329          * there are two cases:
3330          *  1)  if the string has enough extra space to handle the converted
3331          *      value.  We go backwards through the string, converting until we
3332          *      get to the position we are at now, and then stop.  If this
3333          *      position is far enough along in the string, this method is
3334          *      faster than the other method.  If the memory copy were the same
3335          *      speed as the byte-by-byte loop, that position would be about
3336          *      half-way, as at the half-way mark, parsing to the end and back
3337          *      is one complete string's parse, the same amount as starting
3338          *      over and going all the way through.  Actually, it would be
3339          *      somewhat less than half-way, as it's faster to just count bytes
3340          *      than to also copy, and we don't have the overhead of allocating
3341          *      a new string, changing the scalar to use it, and freeing the
3342          *      existing one.  But if the memory copy is fast, the break-even
3343          *      point is somewhere after half way.  The counting loop could be
3344          *      sped up by vectorization, etc, to move the break-even point
3345          *      further towards the beginning.
3346          *  2)  if the string doesn't have enough space to handle the converted
3347          *      value.  A new string will have to be allocated, and one might
3348          *      as well, given that, start from the beginning doing the first
3349          *      method.  We've spent extra time parsing the string and in
3350          *      exchange all we've gotten is that we know precisely how big to
3351          *      make the new one.  Perl is more optimized for time than space,
3352          *      so this case is a loser.
3353          * So what I've decided to do is not use the 2nd method unless it is
3354          * guaranteed that a new string won't have to be allocated, assuming
3355          * the worst case.  I also decided not to put any more conditions on it
3356          * than this, for now.  It seems likely that, since the worst case is
3357          * twice as big as the unknown portion of the string (plus 1), we won't
3358          * be guaranteed enough space, causing us to go to the first method,
3359          * unless the string is short, or the first variant character is near
3360          * the end of it.  In either of these cases, it seems best to use the
3361          * 2nd method.  The only circumstance I can think of where this would
3362          * be really slower is if the string had once had much more data in it
3363          * than it does now, but there is still a substantial amount in it  */
3364
3365         {
3366             STRLEN invariant_head = t - s;
3367             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3368             if (SvLEN(sv) < size) {
3369
3370                 /* Here, have decided to allocate a new string */
3371
3372                 U8 *dst;
3373                 U8 *d;
3374
3375                 Newx(dst, size, U8);
3376
3377                 /* If no known invariants at the beginning of the input string,
3378                  * set so starts from there.  Otherwise, can use memory copy to
3379                  * get up to where we are now, and then start from here */
3380
3381                 if (invariant_head <= 0) {
3382                     d = dst;
3383                 } else {
3384                     Copy(s, dst, invariant_head, char);
3385                     d = dst + invariant_head;
3386                 }
3387
3388                 while (t < e) {
3389                     const UV uv = NATIVE8_TO_UNI(*t++);
3390                     if (UNI_IS_INVARIANT(uv))
3391                         *d++ = (U8)UNI_TO_NATIVE(uv);
3392                     else {
3393                         *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3394                         *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3395                     }
3396                 }
3397                 *d = '\0';
3398                 SvPV_free(sv); /* No longer using pre-existing string */
3399                 SvPV_set(sv, (char*)dst);
3400                 SvCUR_set(sv, d - dst);
3401                 SvLEN_set(sv, size);
3402             } else {
3403
3404                 /* Here, have decided to get the exact size of the string.
3405                  * Currently this happens only when we know that there is
3406                  * guaranteed enough space to fit the converted string, so
3407                  * don't have to worry about growing.  If two_byte_count is 0,
3408                  * then t points to the first byte of the string which hasn't
3409                  * been examined yet.  Otherwise two_byte_count is 1, and t
3410                  * points to the first byte in the string that will expand to
3411                  * two.  Depending on this, start examining at t or 1 after t.
3412                  * */
3413
3414                 U8 *d = t + two_byte_count;
3415
3416
3417                 /* Count up the remaining bytes that expand to two */
3418
3419                 while (d < e) {
3420                     const U8 chr = *d++;
3421                     if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3422                 }
3423
3424                 /* The string will expand by just the number of bytes that
3425                  * occupy two positions.  But we are one afterwards because of
3426                  * the increment just above.  This is the place to put the
3427                  * trailing NUL, and to set the length before we decrement */
3428
3429                 d += two_byte_count;
3430                 SvCUR_set(sv, d - s);
3431                 *d-- = '\0';
3432
3433
3434                 /* Having decremented d, it points to the position to put the
3435                  * very last byte of the expanded string.  Go backwards through
3436                  * the string, copying and expanding as we go, stopping when we
3437                  * get to the part that is invariant the rest of the way down */
3438
3439                 e--;
3440                 while (e >= t) {
3441                     const U8 ch = NATIVE8_TO_UNI(*e--);
3442                     if (UNI_IS_INVARIANT(ch)) {
3443                         *d-- = UNI_TO_NATIVE(ch);
3444                     } else {
3445                         *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3446                         *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3447                     }
3448                 }
3449             }
3450         }
3451     }
3452
3453     /* Mark as UTF-8 even if no variant - saves scanning loop */
3454     SvUTF8_on(sv);
3455     return SvCUR(sv);
3456 }
3457
3458 /*
3459 =for apidoc sv_utf8_downgrade
3460
3461 Attempts to convert the PV of an SV from characters to bytes.
3462 If the PV contains a character that cannot fit
3463 in a byte, this conversion will fail;
3464 in this case, either returns false or, if C<fail_ok> is not
3465 true, croaks.
3466
3467 This is not as a general purpose Unicode to byte encoding interface:
3468 use the Encode extension for that.
3469
3470 =cut
3471 */
3472
3473 bool
3474 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3475 {
3476     dVAR;
3477
3478     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3479
3480     if (SvPOKp(sv) && SvUTF8(sv)) {
3481         if (SvCUR(sv)) {
3482             U8 *s;
3483             STRLEN len;
3484
3485             if (SvIsCOW(sv)) {
3486                 sv_force_normal_flags(sv, 0);
3487             }
3488             s = (U8 *) SvPV(sv, len);
3489             if (!utf8_to_bytes(s, &len)) {
3490                 if (fail_ok)
3491                     return FALSE;
3492                 else {
3493                     if (PL_op)
3494                         Perl_croak(aTHX_ "Wide character in %s",
3495                                    OP_DESC(PL_op));
3496                     else
3497                         Perl_croak(aTHX_ "Wide character");
3498                 }
3499             }
3500             SvCUR_set(sv, len);
3501         }
3502     }
3503     SvUTF8_off(sv);
3504     return TRUE;
3505 }
3506
3507 /*
3508 =for apidoc sv_utf8_encode
3509
3510 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3511 flag off so that it looks like octets again.
3512
3513 =cut
3514 */
3515
3516 void
3517 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3518 {
3519     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3520
3521     if (SvIsCOW(sv)) {
3522         sv_force_normal_flags(sv, 0);
3523     }
3524     if (SvREADONLY(sv)) {
3525         Perl_croak_no_modify(aTHX);
3526     }
3527     (void) sv_utf8_upgrade(sv);
3528     SvUTF8_off(sv);
3529 }
3530
3531 /*
3532 =for apidoc sv_utf8_decode
3533
3534 If the PV of the SV is an octet sequence in UTF-8
3535 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3536 so that it looks like a character. If the PV contains only single-byte
3537 characters, the C<SvUTF8> flag stays being off.
3538 Scans PV for validity and returns false if the PV is invalid UTF-8.
3539
3540 =cut
3541 */
3542
3543 bool
3544 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3545 {
3546     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3547
3548     if (SvPOKp(sv)) {
3549         const U8 *c;
3550         const U8 *e;
3551
3552         /* The octets may have got themselves encoded - get them back as
3553          * bytes
3554          */
3555         if (!sv_utf8_downgrade(sv, TRUE))
3556             return FALSE;
3557
3558         /* it is actually just a matter of turning the utf8 flag on, but
3559          * we want to make sure everything inside is valid utf8 first.
3560          */
3561         c = (const U8 *) SvPVX_const(sv);
3562         if (!is_utf8_string(c, SvCUR(sv)+1))
3563             return FALSE;
3564         e = (const U8 *) SvEND(sv);
3565         while (c < e) {
3566             const U8 ch = *c++;
3567             if (!UTF8_IS_INVARIANT(ch)) {
3568                 SvUTF8_on(sv);
3569                 break;
3570             }
3571         }
3572     }
3573     return TRUE;
3574 }
3575
3576 /*
3577 =for apidoc sv_setsv
3578
3579 Copies the contents of the source SV C<ssv> into the destination SV
3580 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3581 function if the source SV needs to be reused. Does not handle 'set' magic.
3582 Loosely speaking, it performs a copy-by-value, obliterating any previous
3583 content of the destination.
3584
3585 You probably want to use one of the assortment of wrappers, such as
3586 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3587 C<SvSetMagicSV_nosteal>.
3588
3589 =for apidoc sv_setsv_flags
3590
3591 Copies the contents of the source SV C<ssv> into the destination SV
3592 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3593 function if the source SV needs to be reused. Does not handle 'set' magic.
3594 Loosely speaking, it performs a copy-by-value, obliterating any previous
3595 content of the destination.
3596 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3597 C<ssv> if appropriate, else not. If the C<flags> parameter has the
3598 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3599 and C<sv_setsv_nomg> are implemented in terms of this function.
3600
3601 You probably want to use one of the assortment of wrappers, such as
3602 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3603 C<SvSetMagicSV_nosteal>.
3604
3605 This is the primary function for copying scalars, and most other
3606 copy-ish functions and macros use this underneath.
3607
3608 =cut
3609 */
3610
3611 static void
3612 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3613 {
3614     I32 mro_changes = 0; /* 1 = method, 2 = isa */
3615
3616     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3617
3618     if (dtype != SVt_PVGV) {
3619         const char * const name = GvNAME(sstr);
3620         const STRLEN len = GvNAMELEN(sstr);
3621         {
3622             if (dtype >= SVt_PV) {
3623                 SvPV_free(dstr);
3624                 SvPV_set(dstr, 0);
3625                 SvLEN_set(dstr, 0);
3626                 SvCUR_set(dstr, 0);
3627             }
3628             SvUPGRADE(dstr, SVt_PVGV);
3629             (void)SvOK_off(dstr);
3630             /* FIXME - why are we doing this, then turning it off and on again
3631                below?  */
3632             isGV_with_GP_on(dstr);
3633         }
3634         GvSTASH(dstr) = GvSTASH(sstr);
3635         if (GvSTASH(dstr))
3636             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3637         gv_name_set(MUTABLE_GV(dstr), name, len, GV_ADD);
3638         SvFAKE_on(dstr);        /* can coerce to non-glob */
3639     }
3640
3641     if(GvGP(MUTABLE_GV(sstr))) {
3642         /* If source has method cache entry, clear it */
3643         if(GvCVGEN(sstr)) {
3644             SvREFCNT_dec(GvCV(sstr));
3645             GvCV(sstr) = NULL;
3646             GvCVGEN(sstr) = 0;
3647         }
3648         /* If source has a real method, then a method is
3649            going to change */
3650         else if(GvCV((const GV *)sstr)) {
3651             mro_changes = 1;
3652         }
3653     }
3654
3655     /* If dest already had a real method, that's a change as well */
3656     if(!mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)) {
3657         mro_changes = 1;
3658     }
3659
3660     if(strEQ(GvNAME((const GV *)dstr),"ISA"))
3661         mro_changes = 2;
3662
3663     gp_free(MUTABLE_GV(dstr));
3664     isGV_with_GP_off(dstr);
3665     (void)SvOK_off(dstr);
3666     isGV_with_GP_on(dstr);
3667     GvINTRO_off(dstr);          /* one-shot flag */
3668     GvGP(dstr) = gp_ref(GvGP(sstr));
3669     if (SvTAINTED(sstr))
3670         SvTAINT(dstr);
3671     if (GvIMPORTED(dstr) != GVf_IMPORTED
3672         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3673         {
3674             GvIMPORTED_on(dstr);
3675         }
3676     GvMULTI_on(dstr);
3677     if(mro_changes == 2) mro_isa_changed_in(GvSTASH(dstr));
3678     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3679     return;
3680 }
3681
3682 static void
3683 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3684 {
3685     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3686     SV *dref = NULL;
3687     const int intro = GvINTRO(dstr);
3688     SV **location;
3689     U8 import_flag = 0;
3690     const U32 stype = SvTYPE(sref);
3691
3692     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3693
3694     if (intro) {
3695         GvINTRO_off(dstr);      /* one-shot flag */
3696         GvLINE(dstr) = CopLINE(PL_curcop);
3697         GvEGV(dstr) = MUTABLE_GV(dstr);
3698     }
3699     GvMULTI_on(dstr);
3700     switch (stype) {
3701     case SVt_PVCV:
3702         location = (SV **) &GvCV(dstr);
3703         import_flag = GVf_IMPORTED_CV;
3704         goto common;
3705     case SVt_PVHV:
3706         location = (SV **) &GvHV(dstr);
3707         import_flag = GVf_IMPORTED_HV;
3708         goto common;
3709     case SVt_PVAV:
3710         location = (SV **) &GvAV(dstr);
3711         import_flag = GVf_IMPORTED_AV;
3712         goto common;
3713     case SVt_PVIO:
3714         location = (SV **) &GvIOp(dstr);
3715         goto common;
3716     case SVt_PVFM:
3717         location = (SV **) &GvFORM(dstr);
3718         goto common;
3719     default:
3720         location = &GvSV(dstr);
3721         import_flag = GVf_IMPORTED_SV;
3722     common:
3723         if (intro) {
3724             if (stype == SVt_PVCV) {
3725                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3726                 if (GvCVGEN(dstr)) {
3727                     SvREFCNT_dec(GvCV(dstr));
3728                     GvCV(dstr) = NULL;
3729                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3730                 }
3731             }
3732             SAVEGENERICSV(*location);
3733         }
3734         else
3735             dref = *location;
3736         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3737             CV* const cv = MUTABLE_CV(*location);
3738             if (cv) {
3739                 if (!GvCVGEN((const GV *)dstr) &&
3740                     (CvROOT(cv) || CvXSUB(cv)))
3741                     {
3742                         /* Redefining a sub - warning is mandatory if
3743                            it was a const and its value changed. */
3744                         if (CvCONST(cv) && CvCONST((const CV *)sref)
3745                             && cv_const_sv(cv)
3746                             == cv_const_sv((const CV *)sref)) {
3747                             NOOP;
3748                             /* They are 2 constant subroutines generated from
3749                                the same constant. This probably means that
3750                                they are really the "same" proxy subroutine
3751                                instantiated in 2 places. Most likely this is
3752                                when a constant is exported twice.  Don't warn.
3753                             */
3754                         }
3755                         else if (ckWARN(WARN_REDEFINE)
3756                                  || (CvCONST(cv)
3757                                      && (!CvCONST((const CV *)sref)
3758                                          || sv_cmp(cv_const_sv(cv),
3759                                                    cv_const_sv((const CV *)
3760                                                                sref))))) {
3761                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
3762                                         (const char *)
3763                                         (CvCONST(cv)
3764                                          ? "Constant subroutine %s::%s redefined"
3765                                          : "Subroutine %s::%s redefined"),
3766                                         HvNAME_get(GvSTASH((const GV *)dstr)),
3767                                         GvENAME(MUTABLE_GV(dstr)));
3768                         }
3769                     }
3770                 if (!intro)
3771                     cv_ckproto_len(cv, (const GV *)dstr,
3772                                    SvPOK(sref) ? SvPVX_const(sref) : NULL,
3773                                    SvPOK(sref) ? SvCUR(sref) : 0);
3774             }
3775             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3776             GvASSUMECV_on(dstr);
3777             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3778         }
3779         *location = sref;
3780         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3781             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3782             GvFLAGS(dstr) |= import_flag;
3783         }
3784         if (stype == SVt_PVAV && strEQ(GvNAME((GV*)dstr), "ISA")) {
3785             sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3786             mro_isa_changed_in(GvSTASH(dstr));
3787         }
3788         break;
3789     }
3790     SvREFCNT_dec(dref);
3791     if (SvTAINTED(sstr))
3792         SvTAINT(dstr);
3793     return;
3794 }
3795
3796 void
3797 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3798 {
3799     dVAR;
3800     register U32 sflags;
3801     register int dtype;
3802     register svtype stype;
3803
3804     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3805
3806     if (sstr == dstr)
3807         return;
3808
3809     if (SvIS_FREED(dstr)) {
3810         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3811                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3812     }
3813     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3814     if (!sstr)
3815         sstr = &PL_sv_undef;
3816     if (SvIS_FREED(sstr)) {
3817         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3818                    (void*)sstr, (void*)dstr);
3819     }
3820     stype = SvTYPE(sstr);
3821     dtype = SvTYPE(dstr);
3822
3823     (void)SvAMAGIC_off(dstr);
3824     if ( SvVOK(dstr) )
3825     {
3826         /* need to nuke the magic */
3827         mg_free(dstr);
3828     }
3829
3830     /* There's a lot of redundancy below but we're going for speed here */
3831
3832     switch (stype) {
3833     case SVt_NULL:
3834       undef_sstr:
3835         if (dtype != SVt_PVGV) {
3836             (void)SvOK_off(dstr);
3837             return;
3838         }
3839         break;
3840     case SVt_IV:
3841         if (SvIOK(sstr)) {
3842             switch (dtype) {
3843             case SVt_NULL:
3844                 sv_upgrade(dstr, SVt_IV);
3845                 break;
3846             case SVt_NV:
3847             case SVt_PV:
3848                 sv_upgrade(dstr, SVt_PVIV);
3849                 break;
3850             case SVt_PVGV:
3851                 goto end_of_first_switch;
3852             }
3853             (void)SvIOK_only(dstr);
3854             SvIV_set(dstr,  SvIVX(sstr));
3855             if (SvIsUV(sstr))
3856                 SvIsUV_on(dstr);
3857             /* SvTAINTED can only be true if the SV has taint magic, which in
3858                turn means that the SV type is PVMG (or greater). This is the
3859                case statement for SVt_IV, so this cannot be true (whatever gcov
3860                may say).  */
3861             assert(!SvTAINTED(sstr));
3862             return;
3863         }
3864         if (!SvROK(sstr))
3865             goto undef_sstr;
3866         if (dtype < SVt_PV && dtype != SVt_IV)
3867             sv_upgrade(dstr, SVt_IV);
3868         break;
3869
3870     case SVt_NV:
3871         if (SvNOK(sstr)) {
3872             switch (dtype) {
3873             case SVt_NULL:
3874             case SVt_IV:
3875                 sv_upgrade(dstr, SVt_NV);
3876                 break;
3877             case SVt_PV:
3878             case SVt_PVIV:
3879                 sv_upgrade(dstr, SVt_PVNV);
3880                 break;
3881             case SVt_PVGV:
3882                 goto end_of_first_switch;
3883             }
3884             SvNV_set(dstr, SvNVX(sstr));
3885             (void)SvNOK_only(dstr);
3886             /* SvTAINTED can only be true if the SV has taint magic, which in
3887                turn means that the SV type is PVMG (or greater). This is the
3888                case statement for SVt_NV, so this cannot be true (whatever gcov
3889                may say).  */
3890             assert(!SvTAINTED(sstr));
3891             return;
3892         }
3893         goto undef_sstr;
3894
3895     case SVt_PVFM:
3896 #ifdef PERL_OLD_COPY_ON_WRITE
3897         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
3898             if (dtype < SVt_PVIV)
3899                 sv_upgrade(dstr, SVt_PVIV);
3900             break;
3901         }
3902         /* Fall through */
3903 #endif
3904     case SVt_PV:
3905         if (dtype < SVt_PV)
3906             sv_upgrade(dstr, SVt_PV);
3907         break;
3908     case SVt_PVIV:
3909         if (dtype < SVt_PVIV)
3910             sv_upgrade(dstr, SVt_PVIV);
3911         break;
3912     case SVt_PVNV:
3913         if (dtype < SVt_PVNV)
3914             sv_upgrade(dstr, SVt_PVNV);
3915         break;
3916     default:
3917         {
3918         const char * const type = sv_reftype(sstr,0);
3919         if (PL_op)
3920             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
3921         else
3922             Perl_croak(aTHX_ "Bizarre copy of %s", type);
3923         }
3924         break;
3925
3926     case SVt_REGEXP:
3927         if (dtype < SVt_REGEXP)
3928             sv_upgrade(dstr, SVt_REGEXP);
3929         break;
3930
3931         /* case SVt_BIND: */
3932     case SVt_PVLV:
3933     case SVt_PVGV:
3934         if (isGV_with_GP(sstr) && dtype <= SVt_PVGV) {
3935             glob_assign_glob(dstr, sstr, dtype);
3936             return;
3937         }
3938         /* SvVALID means that this PVGV is playing at being an FBM.  */
3939         /*FALLTHROUGH*/
3940
3941     case SVt_PVMG:
3942         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
3943             mg_get(sstr);
3944             if (SvTYPE(sstr) != stype) {
3945                 stype = SvTYPE(sstr);
3946                 if (isGV_with_GP(sstr) && stype == SVt_PVGV && dtype <= SVt_PVGV) {
3947                     glob_assign_glob(dstr, sstr, dtype);
3948                     return;
3949                 }
3950             }
3951         }
3952         if (stype == SVt_PVLV)
3953             SvUPGRADE(dstr, SVt_PVNV);
3954         else
3955             SvUPGRADE(dstr, (svtype)stype);
3956     }
3957  end_of_first_switch:
3958
3959     /* dstr may have been upgraded.  */
3960     dtype = SvTYPE(dstr);
3961     sflags = SvFLAGS(sstr);
3962
3963     if (dtype == SVt_PVCV || dtype == SVt_PVFM) {
3964         /* Assigning to a subroutine sets the prototype.  */
3965         if (SvOK(sstr)) {
3966             STRLEN len;
3967             const char *const ptr = SvPV_const(sstr, len);
3968
3969             SvGROW(dstr, len + 1);
3970             Copy(ptr, SvPVX(dstr), len + 1, char);
3971             SvCUR_set(dstr, len);
3972             SvPOK_only(dstr);
3973             SvFLAGS(dstr) |= sflags & SVf_UTF8;
3974         } else {
3975             SvOK_off(dstr);
3976         }
3977     } else if (dtype == SVt_PVAV || dtype == SVt_PVHV) {
3978         const char * const type = sv_reftype(dstr,0);
3979         if (PL_op)
3980             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
3981         else
3982             Perl_croak(aTHX_ "Cannot copy to %s", type);
3983     } else if (sflags & SVf_ROK) {
3984         if (isGV_with_GP(dstr) && dtype == SVt_PVGV
3985             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
3986             sstr = SvRV(sstr);
3987             if (sstr == dstr) {
3988                 if (GvIMPORTED(dstr) != GVf_IMPORTED
3989                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3990                 {
3991                     GvIMPORTED_on(dstr);
3992                 }
3993                 GvMULTI_on(dstr);
3994                 return;
3995             }
3996             glob_assign_glob(dstr, sstr, dtype);
3997             return;
3998         }
3999
4000         if (dtype >= SVt_PV) {
4001             if (dtype == SVt_PVGV && isGV_with_GP(dstr)) {
4002                 glob_assign_ref(dstr, sstr);
4003                 return;
4004             }
4005             if (SvPVX_const(dstr)) {
4006                 SvPV_free(dstr);
4007                 SvLEN_set(dstr, 0);
4008                 SvCUR_set(dstr, 0);
4009             }
4010         }
4011         (void)SvOK_off(dstr);
4012         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4013         SvFLAGS(dstr) |= sflags & SVf_ROK;
4014         assert(!(sflags & SVp_NOK));
4015         assert(!(sflags & SVp_IOK));
4016         assert(!(sflags & SVf_NOK));
4017         assert(!(sflags & SVf_IOK));
4018     }
4019     else if (dtype == SVt_PVGV && isGV_with_GP(dstr)) {
4020         if (!(sflags & SVf_OK)) {
4021             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4022                            "Undefined value assigned to typeglob");
4023         }
4024         else {
4025             GV *gv = gv_fetchsv(sstr, GV_ADD, SVt_PVGV);
4026             if (dstr != (const SV *)gv) {
4027                 if (GvGP(dstr))
4028                     gp_free(MUTABLE_GV(dstr));
4029                 GvGP(dstr) = gp_ref(GvGP(gv));
4030             }
4031         }
4032     }
4033     else if (dtype == SVt_REGEXP && stype == SVt_REGEXP) {
4034         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4035     }
4036     else if (sflags & SVp_POK) {
4037         bool isSwipe = 0;
4038
4039         /*
4040          * Check to see if we can just swipe the string.  If so, it's a
4041          * possible small lose on short strings, but a big win on long ones.
4042          * It might even be a win on short strings if SvPVX_const(dstr)
4043          * has to be allocated and SvPVX_const(sstr) has to be freed.
4044          * Likewise if we can set up COW rather than doing an actual copy, we
4045          * drop to the else clause, as the swipe code and the COW setup code
4046          * have much in common.
4047          */
4048
4049         /* Whichever path we take through the next code, we want this true,
4050            and doing it now facilitates the COW check.  */
4051         (void)SvPOK_only(dstr);
4052
4053         if (
4054             /* If we're already COW then this clause is not true, and if COW
4055                is allowed then we drop down to the else and make dest COW 
4056                with us.  If caller hasn't said that we're allowed to COW
4057                shared hash keys then we don't do the COW setup, even if the
4058                source scalar is a shared hash key scalar.  */
4059             (((flags & SV_COW_SHARED_HASH_KEYS)
4060                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
4061                : 1 /* If making a COW copy is forbidden then the behaviour we
4062                        desire is as if the source SV isn't actually already
4063                        COW, even if it is.  So we act as if the source flags
4064                        are not COW, rather than actually testing them.  */
4065               )
4066 #ifndef PERL_OLD_COPY_ON_WRITE
4067              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4068                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4069                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4070                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4071                 but in turn, it's somewhat dead code, never expected to go
4072                 live, but more kept as a placeholder on how to do it better
4073                 in a newer implementation.  */
4074              /* If we are COW and dstr is a suitable target then we drop down
4075                 into the else and make dest a COW of us.  */
4076              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
4077 #endif
4078              )
4079             &&
4080             !(isSwipe =
4081                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4082                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4083                  (!(flags & SV_NOSTEAL)) &&
4084                                         /* and we're allowed to steal temps */
4085                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4086                  SvLEN(sstr))             /* and really is a string */
4087 #ifdef PERL_OLD_COPY_ON_WRITE
4088             && ((flags & SV_COW_SHARED_HASH_KEYS)
4089                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4090                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4091                      && SvTYPE(sstr) >= SVt_PVIV && SvTYPE(sstr) != SVt_PVFM))
4092                 : 1)
4093 #endif
4094             ) {
4095             /* Failed the swipe test, and it's not a shared hash key either.
4096                Have to copy the string.  */
4097             STRLEN len = SvCUR(sstr);
4098             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4099             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
4100             SvCUR_set(dstr, len);
4101             *SvEND(dstr) = '\0';
4102         } else {
4103             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4104                be true in here.  */
4105             /* Either it's a shared hash key, or it's suitable for
4106                copy-on-write or we can swipe the string.  */
4107             if (DEBUG_C_TEST) {
4108                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4109                 sv_dump(sstr);
4110                 sv_dump(dstr);
4111             }
4112 #ifdef PERL_OLD_COPY_ON_WRITE
4113             if (!isSwipe) {
4114                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4115                     != (SVf_FAKE | SVf_READONLY)) {
4116                     SvREADONLY_on(sstr);
4117                     SvFAKE_on(sstr);
4118                     /* Make the source SV into a loop of 1.
4119                        (about to become 2) */
4120                     SV_COW_NEXT_SV_SET(sstr, sstr);
4121                 }
4122             }
4123 #endif
4124             /* Initial code is common.  */
4125             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4126                 SvPV_free(dstr);
4127             }
4128
4129             if (!isSwipe) {
4130                 /* making another shared SV.  */
4131                 STRLEN cur = SvCUR(sstr);
4132                 STRLEN len = SvLEN(sstr);
4133 #ifdef PERL_OLD_COPY_ON_WRITE
4134                 if (len) {
4135                     assert (SvTYPE(dstr) >= SVt_PVIV);
4136                     /* SvIsCOW_normal */
4137                     /* splice us in between source and next-after-source.  */
4138                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4139                     SV_COW_NEXT_SV_SET(sstr, dstr);
4140                     SvPV_set(dstr, SvPVX_mutable(sstr));
4141                 } else
4142 #endif
4143                 {
4144                     /* SvIsCOW_shared_hash */
4145                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4146                                           "Copy on write: Sharing hash\n"));
4147
4148                     assert (SvTYPE(dstr) >= SVt_PV);
4149                     SvPV_set(dstr,
4150                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4151                 }
4152                 SvLEN_set(dstr, len);
4153                 SvCUR_set(dstr, cur);
4154                 SvREADONLY_on(dstr);
4155                 SvFAKE_on(dstr);
4156             }
4157             else
4158                 {       /* Passes the swipe test.  */
4159                 SvPV_set(dstr, SvPVX_mutable(sstr));
4160                 SvLEN_set(dstr, SvLEN(sstr));
4161                 SvCUR_set(dstr, SvCUR(sstr));
4162
4163                 SvTEMP_off(dstr);
4164                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4165                 SvPV_set(sstr, NULL);
4166                 SvLEN_set(sstr, 0);
4167                 SvCUR_set(sstr, 0);
4168                 SvTEMP_off(sstr);
4169             }
4170         }
4171         if (sflags & SVp_NOK) {
4172             SvNV_set(dstr, SvNVX(sstr));
4173         }
4174         if (sflags & SVp_IOK) {
4175             SvIV_set(dstr, SvIVX(sstr));
4176             /* Must do this otherwise some other overloaded use of 0x80000000
4177                gets confused. I guess SVpbm_VALID */
4178             if (sflags & SVf_IVisUV)
4179                 SvIsUV_on(dstr);
4180         }
4181         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4182         {
4183             const MAGIC * const smg = SvVSTRING_mg(sstr);
4184             if (smg) {
4185                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4186                          smg->mg_ptr, smg->mg_len);
4187                 SvRMAGICAL_on(dstr);
4188             }
4189         }
4190     }
4191     else if (sflags & (SVp_IOK|SVp_NOK)) {
4192         (void)SvOK_off(dstr);
4193         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4194         if (sflags & SVp_IOK) {
4195             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4196             SvIV_set(dstr, SvIVX(sstr));
4197         }
4198         if (sflags & SVp_NOK) {
4199             SvNV_set(dstr, SvNVX(sstr));
4200         }
4201     }
4202     else {
4203         if (isGV_with_GP(sstr)) {
4204             /* This stringification rule for globs is spread in 3 places.
4205                This feels bad. FIXME.  */
4206             const U32 wasfake = sflags & SVf_FAKE;
4207
4208             /* FAKE globs can get coerced, so need to turn this off
4209                temporarily if it is on.  */
4210             SvFAKE_off(sstr);
4211             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4212             SvFLAGS(sstr) |= wasfake;
4213         }
4214         else
4215             (void)SvOK_off(dstr);
4216     }
4217     if (SvTAINTED(sstr))
4218         SvTAINT(dstr);
4219 }
4220
4221 /*
4222 =for apidoc sv_setsv_mg
4223
4224 Like C<sv_setsv>, but also handles 'set' magic.
4225
4226 =cut
4227 */
4228
4229 void
4230 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
4231 {
4232     PERL_ARGS_ASSERT_SV_SETSV_MG;
4233
4234     sv_setsv(dstr,sstr);
4235     SvSETMAGIC(dstr);
4236 }
4237
4238 #ifdef PERL_OLD_COPY_ON_WRITE
4239 SV *
4240 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4241 {
4242     STRLEN cur = SvCUR(sstr);
4243     STRLEN len = SvLEN(sstr);
4244     register char *new_pv;
4245
4246     PERL_ARGS_ASSERT_SV_SETSV_COW;
4247
4248     if (DEBUG_C_TEST) {
4249         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4250                       (void*)sstr, (void*)dstr);
4251         sv_dump(sstr);
4252         if (dstr)
4253                     sv_dump(dstr);
4254     }
4255
4256     if (dstr) {
4257         if (SvTHINKFIRST(dstr))
4258             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4259         else if (SvPVX_const(dstr))
4260             Safefree(SvPVX_const(dstr));
4261     }
4262     else
4263         new_SV(dstr);
4264     SvUPGRADE(dstr, SVt_PVIV);
4265
4266     assert (SvPOK(sstr));
4267     assert (SvPOKp(sstr));
4268     assert (!SvIOK(sstr));
4269     assert (!SvIOKp(sstr));
4270     assert (!SvNOK(sstr));
4271     assert (!SvNOKp(sstr));
4272
4273     if (SvIsCOW(sstr)) {
4274
4275         if (SvLEN(sstr) == 0) {
4276             /* source is a COW shared hash key.  */
4277             DEBUG_C(PerlIO_printf(Perl_debug_log,
4278                                   "Fast copy on write: Sharing hash\n"));
4279             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4280             goto common_exit;
4281         }
4282         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4283     } else {
4284         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4285         SvUPGRADE(sstr, SVt_PVIV);
4286         SvREADONLY_on(sstr);
4287         SvFAKE_on(sstr);
4288         DEBUG_C(PerlIO_printf(Perl_debug_log,
4289                               "Fast copy on write: Converting sstr to COW\n"));
4290         SV_COW_NEXT_SV_SET(dstr, sstr);
4291     }
4292     SV_COW_NEXT_SV_SET(sstr, dstr);
4293     new_pv = SvPVX_mutable(sstr);
4294
4295   common_exit:
4296     SvPV_set(dstr, new_pv);
4297     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4298     if (SvUTF8(sstr))
4299         SvUTF8_on(dstr);
4300     SvLEN_set(dstr, len);
4301     SvCUR_set(dstr, cur);
4302     if (DEBUG_C_TEST) {
4303         sv_dump(dstr);
4304     }
4305     return dstr;
4306 }
4307 #endif
4308
4309 /*
4310 =for apidoc sv_setpvn
4311
4312 Copies a string into an SV.  The C<len> parameter indicates the number of
4313 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4314 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4315
4316 =cut
4317 */
4318
4319 void
4320 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4321 {
4322     dVAR;
4323     register char *dptr;
4324
4325     PERL_ARGS_ASSERT_SV_SETPVN;
4326
4327     SV_CHECK_THINKFIRST_COW_DROP(sv);
4328     if (!ptr) {
4329         (void)SvOK_off(sv);
4330         return;
4331     }
4332     else {
4333         /* len is STRLEN which is unsigned, need to copy to signed */
4334         const IV iv = len;
4335         if (iv < 0)
4336             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4337     }
4338     SvUPGRADE(sv, SVt_PV);
4339
4340     dptr = SvGROW(sv, len + 1);
4341     Move(ptr,dptr,len,char);
4342     dptr[len] = '\0';
4343     SvCUR_set(sv, len);
4344     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4345     SvTAINT(sv);
4346 }
4347
4348 /*
4349 =for apidoc sv_setpvn_mg
4350
4351 Like C<sv_setpvn>, but also handles 'set' magic.
4352
4353 =cut
4354 */
4355
4356 void
4357 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4358 {
4359     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4360
4361     sv_setpvn(sv,ptr,len);
4362     SvSETMAGIC(sv);
4363 }
4364
4365 /*
4366 =for apidoc sv_setpv
4367
4368 Copies a string into an SV.  The string must be null-terminated.  Does not
4369 handle 'set' magic.  See C<sv_setpv_mg>.
4370
4371 =cut
4372 */
4373
4374 void
4375 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4376 {
4377     dVAR;
4378     register STRLEN len;
4379
4380     PERL_ARGS_ASSERT_SV_SETPV;
4381
4382     SV_CHECK_THINKFIRST_COW_DROP(sv);
4383     if (!ptr) {
4384         (void)SvOK_off(sv);
4385         return;
4386     }
4387     len = strlen(ptr);
4388     SvUPGRADE(sv, SVt_PV);
4389
4390     SvGROW(sv, len + 1);
4391     Move(ptr,SvPVX(sv),len+1,char);
4392     SvCUR_set(sv, len);
4393     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4394     SvTAINT(sv);
4395 }
4396
4397 /*
4398 =for apidoc sv_setpv_mg
4399
4400 Like C<sv_setpv>, but also handles 'set' magic.
4401
4402 =cut
4403 */
4404
4405 void
4406 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4407 {
4408     PERL_ARGS_ASSERT_SV_SETPV_MG;
4409
4410     sv_setpv(sv,ptr);
4411     SvSETMAGIC(sv);
4412 }
4413
4414 /*
4415 =for apidoc sv_usepvn_flags
4416
4417 Tells an SV to use C<ptr> to find its string value.  Normally the
4418 string is stored inside the SV but sv_usepvn allows the SV to use an
4419 outside string.  The C<ptr> should point to memory that was allocated
4420 by C<malloc>.  The string length, C<len>, must be supplied.  By default
4421 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4422 so that pointer should not be freed or used by the programmer after
4423 giving it to sv_usepvn, and neither should any pointers from "behind"
4424 that pointer (e.g. ptr + 1) be used.
4425
4426 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
4427 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4428 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
4429 C<len>, and already meets the requirements for storing in C<SvPVX>)
4430
4431 =cut
4432 */
4433
4434 void
4435 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4436 {
4437     dVAR;
4438     STRLEN allocate;
4439
4440     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4441
4442     SV_CHECK_THINKFIRST_COW_DROP(sv);
4443     SvUPGRADE(sv, SVt_PV);
4444     if (!ptr) {
4445         (void)SvOK_off(sv);
4446         if (flags & SV_SMAGIC)
4447             SvSETMAGIC(sv);
4448         return;
4449     }
4450     if (SvPVX_const(sv))
4451         SvPV_free(sv);
4452
4453 #ifdef DEBUGGING
4454     if (flags & SV_HAS_TRAILING_NUL)
4455         assert(ptr[len] == '\0');
4456 #endif
4457
4458     allocate = (flags & SV_HAS_TRAILING_NUL)
4459         ? len + 1 :
4460 #ifdef Perl_safesysmalloc_size
4461         len + 1;
4462 #else 
4463         PERL_STRLEN_ROUNDUP(len + 1);
4464 #endif
4465     if (flags & SV_HAS_TRAILING_NUL) {
4466         /* It's long enough - do nothing.
4467            Specfically Perl_newCONSTSUB is relying on this.  */
4468     } else {
4469 #ifdef DEBUGGING
4470         /* Force a move to shake out bugs in callers.  */
4471         char *new_ptr = (char*)safemalloc(allocate);
4472         Copy(ptr, new_ptr, len, char);
4473         PoisonFree(ptr,len,char);
4474         Safefree(ptr);
4475         ptr = new_ptr;
4476 #else
4477         ptr = (char*) saferealloc (ptr, allocate);
4478 #endif
4479     }
4480 #ifdef Perl_safesysmalloc_size
4481     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4482 #else
4483     SvLEN_set(sv, allocate);
4484 #endif
4485     SvCUR_set(sv, len);
4486     SvPV_set(sv, ptr);
4487     if (!(flags & SV_HAS_TRAILING_NUL)) {
4488         ptr[len] = '\0';
4489     }
4490     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4491     SvTAINT(sv);
4492     if (flags & SV_SMAGIC)
4493         SvSETMAGIC(sv);
4494 }
4495
4496 #ifdef PERL_OLD_COPY_ON_WRITE
4497 /* Need to do this *after* making the SV normal, as we need the buffer
4498    pointer to remain valid until after we've copied it.  If we let go too early,
4499    another thread could invalidate it by unsharing last of the same hash key
4500    (which it can do by means other than releasing copy-on-write Svs)
4501    or by changing the other copy-on-write SVs in the loop.  */
4502 STATIC void
4503 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4504 {
4505     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4506
4507     { /* this SV was SvIsCOW_normal(sv) */
4508          /* we need to find the SV pointing to us.  */
4509         SV *current = SV_COW_NEXT_SV(after);
4510
4511         if (current == sv) {
4512             /* The SV we point to points back to us (there were only two of us
4513                in the loop.)
4514                Hence other SV is no longer copy on write either.  */
4515             SvFAKE_off(after);
4516             SvREADONLY_off(after);
4517         } else {
4518             /* We need to follow the pointers around the loop.  */
4519             SV *next;
4520             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4521                 assert (next);
4522                 current = next;
4523                  /* don't loop forever if the structure is bust, and we have
4524                     a pointer into a closed loop.  */
4525                 assert (current != after);
4526                 assert (SvPVX_const(current) == pvx);
4527             }
4528             /* Make the SV before us point to the SV after us.  */
4529             SV_COW_NEXT_SV_SET(current, after);
4530         }
4531     }
4532 }
4533 #endif
4534 /*
4535 =for apidoc sv_force_normal_flags
4536
4537 Undo various types of fakery on an SV: if the PV is a shared string, make
4538 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4539 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4540 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4541 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4542 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4543 set to some other value.) In addition, the C<flags> parameter gets passed to
4544 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
4545 with flags set to 0.
4546
4547 =cut
4548 */
4549
4550 void
4551 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4552 {
4553     dVAR;
4554
4555     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4556
4557 #ifdef PERL_OLD_COPY_ON_WRITE
4558     if (SvREADONLY(sv)) {
4559         if (SvFAKE(sv)) {
4560             const char * const pvx = SvPVX_const(sv);
4561             const STRLEN len = SvLEN(sv);
4562             const STRLEN cur = SvCUR(sv);
4563             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4564                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4565                we'll fail an assertion.  */
4566             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4567
4568             if (DEBUG_C_TEST) {
4569                 PerlIO_printf(Perl_debug_log,
4570                               "Copy on write: Force normal %ld\n",
4571                               (long) flags);
4572                 sv_dump(sv);
4573             }
4574             SvFAKE_off(sv);
4575             SvREADONLY_off(sv);
4576             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4577             SvPV_set(sv, NULL);
4578             SvLEN_set(sv, 0);
4579             if (flags & SV_COW_DROP_PV) {
4580                 /* OK, so we don't need to copy our buffer.  */
4581                 SvPOK_off(sv);
4582             } else {
4583                 SvGROW(sv, cur + 1);
4584                 Move(pvx,SvPVX(sv),cur,char);
4585                 SvCUR_set(sv, cur);
4586                 *SvEND(sv) = '\0';
4587             }
4588             if (len) {
4589                 sv_release_COW(sv, pvx, next);
4590             } else {
4591                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4592             }
4593             if (DEBUG_C_TEST) {
4594                 sv_dump(sv);
4595             }
4596         }
4597         else if (IN_PERL_RUNTIME)
4598             Perl_croak_no_modify(aTHX);
4599     }
4600 #else
4601     if (SvREADONLY(sv)) {
4602         if (SvFAKE(sv)) {
4603             const char * const pvx = SvPVX_const(sv);
4604             const STRLEN len = SvCUR(sv);
4605             SvFAKE_off(sv);
4606             SvREADONLY_off(sv);
4607             SvPV_set(sv, NULL);
4608             SvLEN_set(sv, 0);
4609             SvGROW(sv, len + 1);
4610             Move(pvx,SvPVX(sv),len,char);
4611             *SvEND(sv) = '\0';
4612             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4613         }
4614         else if (IN_PERL_RUNTIME)
4615             Perl_croak_no_modify(aTHX);
4616     }
4617 #endif
4618     if (SvROK(sv))
4619         sv_unref_flags(sv, flags);
4620     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_PVGV)
4621         sv_unglob(sv);
4622     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_REGEXP) {
4623         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analagous
4624            to sv_unglob. We only need it here, so inline it.  */
4625         const svtype new_type = SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
4626         SV *const temp = newSV_type(new_type);
4627         void *const temp_p = SvANY(sv);
4628
4629         if (new_type == SVt_PVMG) {
4630             SvMAGIC_set(temp, SvMAGIC(sv));
4631             SvMAGIC_set(sv, NULL);
4632             SvSTASH_set(temp, SvSTASH(sv));
4633             SvSTASH_set(sv, NULL);
4634         }
4635         SvCUR_set(temp, SvCUR(sv));
4636         /* Remember that SvPVX is in the head, not the body. */
4637         if (SvLEN(temp)) {
4638             SvLEN_set(temp, SvLEN(sv));
4639             /* This signals "buffer is owned by someone else" in sv_clear,
4640                which is the least effort way to stop it freeing the buffer.
4641             */
4642             SvLEN_set(sv, SvLEN(sv)+1);
4643         } else {
4644             /* Their buffer is already owned by someone else. */
4645             SvPVX(sv) = savepvn(SvPVX(sv), SvCUR(sv));
4646             SvLEN_set(temp, SvCUR(sv)+1);
4647         }
4648
4649         /* Now swap the rest of the bodies. */
4650
4651         SvFLAGS(sv) &= ~(SVf_FAKE|SVTYPEMASK);
4652         SvFLAGS(sv) |= new_type;
4653         SvANY(sv) = SvANY(temp);
4654
4655         SvFLAGS(temp) &= ~(SVTYPEMASK);
4656         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
4657         SvANY(temp) = temp_p;
4658
4659         SvREFCNT_dec(temp);
4660     }
4661 }
4662
4663 /*
4664 =for apidoc sv_chop
4665
4666 Efficient removal of characters from the beginning of the string buffer.
4667 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4668 the string buffer.  The C<ptr> becomes the first character of the adjusted
4669 string. Uses the "OOK hack".
4670 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4671 refer to the same chunk of data.
4672
4673 =cut
4674 */
4675
4676 void
4677 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4678 {
4679     STRLEN delta;
4680     STRLEN old_delta;
4681     U8 *p;
4682 #ifdef DEBUGGING
4683     const U8 *real_start;
4684 #endif
4685     STRLEN max_delta;
4686
4687     PERL_ARGS_ASSERT_SV_CHOP;
4688
4689     if (!ptr || !SvPOKp(sv))
4690         return;
4691     delta = ptr - SvPVX_const(sv);
4692     if (!delta) {
4693         /* Nothing to do.  */
4694         return;
4695     }
4696     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), but after this line,
4697        nothing uses the value of ptr any more.  */
4698     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4699     if (ptr <= SvPVX_const(sv))
4700         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4701                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4702     SV_CHECK_THINKFIRST(sv);
4703     if (delta > max_delta)
4704         Perl_croak(aTHX_ "panic: sv_chop ptr=%p (was %p), start=%p, end=%p",
4705                    SvPVX_const(sv) + delta, ptr, SvPVX_const(sv),
4706                    SvPVX_const(sv) + max_delta);
4707
4708     if (!SvOOK(sv)) {
4709         if (!SvLEN(sv)) { /* make copy of shared string */
4710             const char *pvx = SvPVX_const(sv);
4711             const STRLEN len = SvCUR(sv);
4712             SvGROW(sv, len + 1);
4713             Move(pvx,SvPVX(sv),len,char);
4714             *SvEND(sv) = '\0';
4715         }
4716         SvFLAGS(sv) |= SVf_OOK;
4717         old_delta = 0;
4718     } else {
4719         SvOOK_offset(sv, old_delta);
4720     }
4721     SvLEN_set(sv, SvLEN(sv) - delta);
4722     SvCUR_set(sv, SvCUR(sv) - delta);
4723     SvPV_set(sv, SvPVX(sv) + delta);
4724
4725     p = (U8 *)SvPVX_const(sv);
4726
4727     delta += old_delta;
4728
4729 #ifdef DEBUGGING
4730     real_start = p - delta;
4731 #endif
4732
4733     assert(delta);
4734     if (delta < 0x100) {
4735         *--p = (U8) delta;
4736     } else {
4737         *--p = 0;
4738         p -= sizeof(STRLEN);
4739         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4740     }
4741
4742 #ifdef DEBUGGING
4743     /* Fill the preceding buffer with sentinals to verify that no-one is
4744        using it.  */
4745     while (p > real_start) {
4746         --p;
4747         *p = (U8)PTR2UV(p);
4748     }
4749 #endif
4750 }
4751
4752 /*
4753 =for apidoc sv_catpvn
4754
4755 Concatenates the string onto the end of the string which is in the SV.  The
4756 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4757 status set, then the bytes appended should be valid UTF-8.
4758 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4759
4760 =for apidoc sv_catpvn_flags
4761
4762 Concatenates the string onto the end of the string which is in the SV.  The
4763 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4764 status set, then the bytes appended should be valid UTF-8.
4765 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4766 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4767 in terms of this function.
4768
4769 =cut
4770 */
4771
4772 void
4773 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
4774 {
4775     dVAR;
4776     STRLEN dlen;
4777     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4778
4779     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
4780
4781     SvGROW(dsv, dlen + slen + 1);
4782     if (sstr == dstr)
4783         sstr = SvPVX_const(dsv);
4784     Move(sstr, SvPVX(dsv) + dlen, slen, char);
4785     SvCUR_set(dsv, SvCUR(dsv) + slen);
4786     *SvEND(dsv) = '\0';
4787     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
4788     SvTAINT(dsv);
4789     if (flags & SV_SMAGIC)
4790         SvSETMAGIC(dsv);
4791 }
4792
4793 /*
4794 =for apidoc sv_catsv
4795
4796 Concatenates the string from SV C<ssv> onto the end of the string in
4797 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
4798 not 'set' magic.  See C<sv_catsv_mg>.
4799
4800 =for apidoc sv_catsv_flags
4801
4802 Concatenates the string from SV C<ssv> onto the end of the string in
4803 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
4804 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4805 and C<sv_catsv_nomg> are implemented in terms of this function.
4806
4807 =cut */
4808
4809 void
4810 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
4811 {
4812     dVAR;
4813  
4814     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
4815
4816    if (ssv) {
4817         STRLEN slen;
4818         const char *spv = SvPV_const(ssv, slen);
4819         if (spv) {
4820             /*  sutf8 and dutf8 were type bool, but under USE_ITHREADS,
4821                 gcc version 2.95.2 20000220 (Debian GNU/Linux) for
4822                 Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
4823                 get dutf8 = 0x20000000, (i.e.  SVf_UTF8) even though
4824                 dsv->sv_flags doesn't have that bit set.
4825                 Andy Dougherty  12 Oct 2001
4826             */
4827             const I32 sutf8 = DO_UTF8(ssv);
4828             I32 dutf8;
4829
4830             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
4831                 mg_get(dsv);
4832             dutf8 = DO_UTF8(dsv);
4833
4834             if (dutf8 != sutf8) {
4835                 if (dutf8) {
4836                     /* Not modifying source SV, so taking a temporary copy. */
4837                     SV* const csv = newSVpvn_flags(spv, slen, SVs_TEMP);
4838
4839                     sv_utf8_upgrade(csv);
4840                     spv = SvPV_const(csv, slen);
4841                 }
4842                 else
4843                     /* Leave enough space for the cat that's about to happen */
4844                     sv_utf8_upgrade_flags_grow(dsv, 0, slen);
4845             }
4846             sv_catpvn_nomg(dsv, spv, slen);
4847         }
4848     }
4849     if (flags & SV_SMAGIC)
4850         SvSETMAGIC(dsv);
4851 }
4852
4853 /*
4854 =for apidoc sv_catpv
4855
4856 Concatenates the string onto the end of the string which is in the SV.
4857 If the SV has the UTF-8 status set, then the bytes appended should be
4858 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
4859
4860 =cut */
4861
4862 void
4863 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
4864 {
4865     dVAR;
4866     register STRLEN len;
4867     STRLEN tlen;
4868     char *junk;
4869
4870     PERL_ARGS_ASSERT_SV_CATPV;
4871
4872     if (!ptr)
4873         return;
4874     junk = SvPV_force(sv, tlen);
4875     len = strlen(ptr);
4876     SvGROW(sv, tlen + len + 1);
4877     if (ptr == junk)
4878         ptr = SvPVX_const(sv);
4879     Move(ptr,SvPVX(sv)+tlen,len+1,char);
4880     SvCUR_set(sv, SvCUR(sv) + len);
4881     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4882     SvTAINT(sv);
4883 }
4884
4885 /*
4886 =for apidoc sv_catpv_mg
4887
4888 Like C<sv_catpv>, but also handles 'set' magic.
4889
4890 =cut
4891 */
4892
4893 void
4894 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4895 {
4896     PERL_ARGS_ASSERT_SV_CATPV_MG;
4897
4898     sv_catpv(sv,ptr);
4899     SvSETMAGIC(sv);
4900 }
4901
4902 /*
4903 =for apidoc newSV
4904
4905 Creates a new SV.  A non-zero C<len> parameter indicates the number of
4906 bytes of preallocated string space the SV should have.  An extra byte for a
4907 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
4908 space is allocated.)  The reference count for the new SV is set to 1.
4909
4910 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
4911 parameter, I<x>, a debug aid which allowed callers to identify themselves.
4912 This aid has been superseded by a new build option, PERL_MEM_LOG (see
4913 L<perlhack/PERL_MEM_LOG>).  The older API is still there for use in XS
4914 modules supporting older perls.
4915
4916 =cut
4917 */
4918
4919 SV *
4920 Perl_newSV(pTHX_ const STRLEN len)
4921 {
4922     dVAR;
4923     register SV *sv;
4924
4925     new_SV(sv);
4926     if (len) {
4927         sv_upgrade(sv, SVt_PV);
4928         SvGROW(sv, len + 1);
4929     }
4930     return sv;
4931 }
4932 /*
4933 =for apidoc sv_magicext
4934
4935 Adds magic to an SV, upgrading it if necessary. Applies the
4936 supplied vtable and returns a pointer to the magic added.
4937
4938 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
4939 In particular, you can add magic to SvREADONLY SVs, and add more than
4940 one instance of the same 'how'.
4941
4942 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
4943 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
4944 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
4945 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
4946
4947 (This is now used as a subroutine by C<sv_magic>.)
4948
4949 =cut
4950 */
4951 MAGIC * 
4952 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
4953                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
4954 {
4955     dVAR;
4956     MAGIC* mg;
4957
4958     PERL_ARGS_ASSERT_SV_MAGICEXT;
4959
4960     SvUPGRADE(sv, SVt_PVMG);
4961     Newxz(mg, 1, MAGIC);
4962     mg->mg_moremagic = SvMAGIC(sv);
4963     SvMAGIC_set(sv, mg);
4964
4965     /* Sometimes a magic contains a reference loop, where the sv and
4966        object refer to each other.  To prevent a reference loop that
4967        would prevent such objects being freed, we look for such loops
4968        and if we find one we avoid incrementing the object refcount.
4969
4970        Note we cannot do this to avoid self-tie loops as intervening RV must
4971        have its REFCNT incremented to keep it in existence.
4972
4973     */
4974     if (!obj || obj == sv ||
4975         how == PERL_MAGIC_arylen ||
4976         how == PERL_MAGIC_symtab ||
4977         (SvTYPE(obj) == SVt_PVGV &&
4978             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
4979              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
4980              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
4981     {
4982         mg->mg_obj = obj;
4983     }
4984     else {
4985         mg->mg_obj = SvREFCNT_inc_simple(obj);
4986         mg->mg_flags |= MGf_REFCOUNTED;
4987     }
4988
4989     /* Normal self-ties simply pass a null object, and instead of
4990        using mg_obj directly, use the SvTIED_obj macro to produce a
4991        new RV as needed.  For glob "self-ties", we are tieing the PVIO
4992        with an RV obj pointing to the glob containing the PVIO.  In
4993        this case, to avoid a reference loop, we need to weaken the
4994        reference.
4995     */
4996
4997     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
4998         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
4999     {
5000       sv_rvweaken(obj);
5001     }
5002
5003     mg->mg_type = how;
5004     mg->mg_len = namlen;
5005     if (name) {
5006         if (namlen > 0)
5007             mg->mg_ptr = savepvn(name, namlen);
5008         else if (namlen == HEf_SVKEY) {
5009             /* Yes, this is casting away const. This is only for the case of
5010                HEf_SVKEY. I think we need to document this abberation of the
5011                constness of the API, rather than making name non-const, as
5012                that change propagating outwards a long way.  */
5013             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5014         } else
5015             mg->mg_ptr = (char *) name;
5016     }
5017     mg->mg_virtual = (MGVTBL *) vtable;
5018
5019     mg_magical(sv);
5020     if (SvGMAGICAL(sv))
5021         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5022     return mg;
5023 }
5024
5025 /*
5026 =for apidoc sv_magic
5027
5028 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
5029 then adds a new magic item of type C<how> to the head of the magic list.
5030
5031 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5032 handling of the C<name> and C<namlen> arguments.
5033
5034 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5035 to add more than one instance of the same 'how'.
5036
5037 =cut
5038 */
5039
5040 void
5041 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
5042              const char *const name, const I32 namlen)
5043 {
5044     dVAR;
5045     const MGVTBL *vtable;
5046     MAGIC* mg;
5047
5048     PERL_ARGS_ASSERT_SV_MAGIC;
5049
5050 #ifdef PERL_OLD_COPY_ON_WRITE
5051     if (SvIsCOW(sv))
5052         sv_force_normal_flags(sv, 0);
5053 #endif
5054     if (SvREADONLY(sv)) {
5055         if (
5056             /* its okay to attach magic to shared strings; the subsequent
5057              * upgrade to PVMG will unshare the string */
5058             !(SvFAKE(sv) && SvTYPE(sv) < SVt_PVMG)
5059
5060             && IN_PERL_RUNTIME
5061             && how != PERL_MAGIC_regex_global
5062             && how != PERL_MAGIC_bm
5063             && how != PERL_MAGIC_fm
5064             && how != PERL_MAGIC_sv
5065             && how != PERL_MAGIC_backref
5066            )
5067         {
5068             Perl_croak_no_modify(aTHX);
5069         }
5070     }
5071     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5072         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5073             /* sv_magic() refuses to add a magic of the same 'how' as an
5074                existing one
5075              */
5076             if (how == PERL_MAGIC_taint) {
5077                 mg->mg_len |= 1;
5078                 /* Any scalar which already had taint magic on which someone
5079                    (erroneously?) did SvIOK_on() or similar will now be
5080                    incorrectly sporting public "OK" flags.  */
5081                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5082             }
5083             return;
5084         }
5085     }
5086
5087     switch (how) {
5088     case PERL_MAGIC_sv:
5089         vtable = &PL_vtbl_sv;
5090         break;
5091     case PERL_MAGIC_overload:
5092         vtable = &PL_vtbl_amagic;
5093         break;
5094     case PERL_MAGIC_overload_elem:
5095         vtable = &PL_vtbl_amagicelem;
5096         break;
5097     case PERL_MAGIC_overload_table:
5098         vtable = &PL_vtbl_ovrld;
5099         break;
5100     case PERL_MAGIC_bm:
5101         vtable = &PL_vtbl_bm;
5102         break;
5103     case PERL_MAGIC_regdata:
5104         vtable = &PL_vtbl_regdata;
5105         break;
5106     case PERL_MAGIC_regdatum:
5107         vtable = &PL_vtbl_regdatum;
5108         break;
5109     case PERL_MAGIC_env:
5110         vtable = &PL_vtbl_env;
5111         break;
5112     case PERL_MAGIC_fm:
5113         vtable = &PL_vtbl_fm;
5114         break;
5115     case PERL_MAGIC_envelem:
5116         vtable = &PL_vtbl_envelem;
5117         break;
5118     case PERL_MAGIC_regex_global:
5119         vtable = &PL_vtbl_mglob;
5120         break;
5121     case PERL_MAGIC_isa:
5122         vtable = &PL_vtbl_isa;
5123         break;
5124     case PERL_MAGIC_isaelem:
5125         vtable = &PL_vtbl_isaelem;
5126         break;
5127     case PERL_MAGIC_nkeys:
5128         vtable = &PL_vtbl_nkeys;
5129         break;
5130     case PERL_MAGIC_dbfile:
5131         vtable = NULL;
5132         break;
5133     case PERL_MAGIC_dbline:
5134         vtable = &PL_vtbl_dbline;
5135         break;
5136 #ifdef USE_LOCALE_COLLATE
5137     case PERL_MAGIC_collxfrm:
5138         vtable = &PL_vtbl_collxfrm;
5139         break;
5140 #endif /* USE_LOCALE_COLLATE */
5141     case PERL_MAGIC_tied:
5142         vtable = &PL_vtbl_pack;
5143         break;
5144     case PERL_MAGIC_tiedelem:
5145     case PERL_MAGIC_tiedscalar:
5146         vtable = &PL_vtbl_packelem;
5147         break;
5148     case PERL_MAGIC_qr:
5149         vtable = &PL_vtbl_regexp;
5150         break;
5151     case PERL_MAGIC_sig:
5152         vtable = &PL_vtbl_sig;
5153         break;
5154     case PERL_MAGIC_sigelem:
5155         vtable = &PL_vtbl_sigelem;
5156         break;
5157     case PERL_MAGIC_taint:
5158         vtable = &PL_vtbl_taint;
5159         break;
5160     case PERL_MAGIC_uvar:
5161         vtable = &PL_vtbl_uvar;
5162         break;
5163     case PERL_MAGIC_vec:
5164         vtable = &PL_vtbl_vec;
5165         break;
5166     case PERL_MAGIC_arylen_p:
5167     case PERL_MAGIC_rhash:
5168     case PERL_MAGIC_symtab:
5169     case PERL_MAGIC_vstring:
5170         vtable = NULL;
5171         break;
5172     case PERL_MAGIC_utf8:
5173         vtable = &PL_vtbl_utf8;
5174         break;
5175     case PERL_MAGIC_substr:
5176         vtable = &PL_vtbl_substr;
5177         break;
5178     case PERL_MAGIC_defelem:
5179         vtable = &PL_vtbl_defelem;
5180         break;
5181     case PERL_MAGIC_arylen:
5182         vtable = &PL_vtbl_arylen;
5183         break;
5184     case PERL_MAGIC_pos:
5185         vtable = &PL_vtbl_pos;
5186         break;
5187     case PERL_MAGIC_backref:
5188         vtable = &PL_vtbl_backref;
5189         break;
5190     case PERL_MAGIC_hintselem:
5191         vtable = &PL_vtbl_hintselem;
5192         break;
5193     case PERL_MAGIC_hints:
5194         vtable = &PL_vtbl_hints;
5195         break;
5196     case PERL_MAGIC_ext:
5197         /* Reserved for use by extensions not perl internals.           */
5198         /* Useful for attaching extension internal data to perl vars.   */
5199         /* Note that multiple extensions may clash if magical scalars   */
5200         /* etc holding private data from one are passed to another.     */
5201         vtable = NULL;
5202         break;
5203     default:
5204         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5205     }
5206
5207     /* Rest of work is done else where */
5208     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5209
5210     switch (how) {
5211     case PERL_MAGIC_taint:
5212         mg->mg_len = 1;
5213         break;
5214     case PERL_MAGIC_ext:
5215     case PERL_MAGIC_dbfile:
5216         SvRMAGICAL_on(sv);
5217         break;
5218     }
5219 }
5220
5221 /*
5222 =for apidoc sv_unmagic
5223
5224 Removes all magic of type C<type> from an SV.
5225
5226 =cut
5227 */
5228
5229 int
5230 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5231 {
5232     MAGIC* mg;
5233     MAGIC** mgp;
5234
5235     PERL_ARGS_ASSERT_SV_UNMAGIC;
5236
5237     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5238         return 0;
5239     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5240     for (mg = *mgp; mg; mg = *mgp) {
5241         if (mg->mg_type == type) {
5242             const MGVTBL* const vtbl = mg->mg_virtual;
5243             *mgp = mg->mg_moremagic;
5244             if (vtbl && vtbl->svt_free)
5245                 CALL_FPTR(vtbl->svt_free)(aTHX_ sv, mg);
5246             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5247                 if (mg->mg_len > 0)
5248                     Safefree(mg->mg_ptr);
5249                 else if (mg->mg_len == HEf_SVKEY)
5250                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5251                 else if (mg->mg_type == PERL_MAGIC_utf8)
5252                     Safefree(mg->mg_ptr);
5253             }
5254             if (mg->mg_flags & MGf_REFCOUNTED)
5255                 SvREFCNT_dec(mg->mg_obj);
5256             Safefree(mg);
5257         }
5258         else
5259             mgp = &mg->mg_moremagic;
5260     }
5261     if (SvMAGIC(sv)) {
5262         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5263             mg_magical(sv);     /*    else fix the flags now */
5264     }
5265     else {
5266         SvMAGICAL_off(sv);
5267         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5268     }
5269     return 0;
5270 }
5271
5272 /*
5273 =for apidoc sv_rvweaken
5274
5275 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5276 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5277 push a back-reference to this RV onto the array of backreferences
5278 associated with that magic. If the RV is magical, set magic will be
5279 called after the RV is cleared.
5280
5281 =cut
5282 */
5283
5284 SV *
5285 Perl_sv_rvweaken(pTHX_ SV *const sv)
5286 {
5287     SV *tsv;
5288
5289     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5290
5291     if (!SvOK(sv))  /* let undefs pass */
5292         return sv;
5293     if (!SvROK(sv))
5294         Perl_croak(aTHX_ "Can't weaken a nonreference");
5295     else if (SvWEAKREF(sv)) {
5296         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5297         return sv;
5298     }
5299     tsv = SvRV(sv);
5300     Perl_sv_add_backref(aTHX_ tsv, sv);
5301     SvWEAKREF_on(sv);
5302     SvREFCNT_dec(tsv);
5303     return sv;
5304 }
5305
5306 /* Give tsv backref magic if it hasn't already got it, then push a
5307  * back-reference to sv onto the array associated with the backref magic.
5308  */
5309
5310 /* A discussion about the backreferences array and its refcount:
5311  *
5312  * The AV holding the backreferences is pointed to either as the mg_obj of
5313  * PERL_MAGIC_backref, or in the specific case of a HV, from the
5314  * xhv_backreferences field of the HvAUX structure. The array is created
5315  * with a refcount of 2. This means that if during global destruction the
5316  * array gets picked on before its parent to have its refcount decremented
5317  * by the random zapper, it won't actually be freed, meaning it's still
5318  * there for when its parent gets freed.
5319  * When the parent SV is freed, in the case of magic, the magic is freed,
5320  * Perl_magic_killbackrefs is called which decrements one refcount, then
5321  * mg_obj is freed which kills the second count.
5322  * In the vase of a HV being freed, one ref is removed by S_hfreeentries,
5323  * the other by Perl_sv_kill_backrefs, which it calls.
5324  */
5325
5326 void
5327 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5328 {
5329     dVAR;
5330     AV *av;
5331
5332     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5333
5334     if (SvTYPE(tsv) == SVt_PVHV) {
5335         AV **const avp = Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5336
5337         av = *avp;
5338         if (!av) {
5339             av = newAV();
5340             AvREAL_off(av);
5341             SvREFCNT_inc_simple_void(av); /* see discussion above */
5342             *avp = av;
5343         }
5344     } else {
5345         const MAGIC *const mg
5346             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5347         if (mg)
5348             av = MUTABLE_AV(mg->mg_obj);
5349         else {
5350             av = newAV();
5351             AvREAL_off(av);
5352             sv_magic(tsv, MUTABLE_SV(av), PERL_MAGIC_backref, NULL, 0);
5353             /* av now has a refcnt of 2; see discussion above */
5354         }
5355     }
5356     if (AvFILLp(av) >= AvMAX(av)) {
5357         av_extend(av, AvFILLp(av)+1);
5358     }
5359     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5360 }
5361
5362 /* delete a back-reference to ourselves from the backref magic associated
5363  * with the SV we point to.
5364  */
5365
5366 void
5367 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5368 {
5369     dVAR;
5370     AV *av = NULL;
5371     SV **svp;
5372     I32 i;
5373
5374     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5375
5376     if (SvTYPE(tsv) == SVt_PVHV) {
5377         if (SvOOK(tsv)) {
5378             /* SvOOK: We must avoid creating the hv_aux structure if its
5379              * not already there, as that is stored in the main HvARRAY(),
5380              * and hfreentries assumes that no-one reallocates HvARRAY()
5381              * while it is running.  */
5382             av = *Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5383         }
5384     }
5385     else {
5386         const MAGIC *const mg
5387             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5388         if (mg)
5389             av = MUTABLE_AV(mg->mg_obj);
5390     }
5391
5392     if (!av)
5393         Perl_croak(aTHX_ "panic: del_backref");
5394
5395     assert(!SvIS_FREED(av));
5396
5397     svp = AvARRAY(av);
5398     /* We shouldn't be in here more than once, but for paranoia reasons lets
5399        not assume this.  */
5400     for (i = AvFILLp(av); i >= 0; i--) {
5401         if (svp[i] == sv) {
5402             const SSize_t fill = AvFILLp(av);
5403             if (i != fill) {
5404                 /* We weren't the last entry.
5405                    An unordered list has this property that you can take the
5406                    last element off the end to fill the hole, and it's still
5407                    an unordered list :-)
5408                 */
5409                 svp[i] = svp[fill];
5410             }
5411             svp[fill] = NULL;
5412             AvFILLp(av) = fill - 1;
5413         }
5414     }
5415 }
5416
5417 int
5418 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5419 {
5420     SV **svp = AvARRAY(av);
5421
5422     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5423
5424     if (svp) {
5425         SV *const *const last = svp + AvFILLp(av);
5426
5427         assert(!SvIS_FREED(av));
5428         while (svp <= last) {
5429             if (*svp) {
5430                 SV *const referrer = *svp;
5431                 if (SvWEAKREF(referrer)) {
5432                     /* XXX Should we check that it hasn't changed? */
5433                     assert(SvROK(referrer));
5434                     SvRV_set(referrer, 0);
5435                     SvOK_off(referrer);
5436                     SvWEAKREF_off(referrer);
5437                     SvSETMAGIC(referrer);
5438                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5439                            SvTYPE(referrer) == SVt_PVLV) {
5440                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
5441                     /* You lookin' at me?  */
5442                     assert(GvSTASH(referrer));
5443                     assert(GvSTASH(referrer) == (const HV *)sv);
5444                     GvSTASH(referrer) = 0;
5445                 } else if (SvTYPE(referrer) == SVt_PVCV ||
5446                            SvTYPE(referrer) == SVt_PVFM) {
5447                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
5448                         /* You lookin' at me?  */
5449                         assert(CvSTASH(referrer));
5450                         assert(CvSTASH(referrer) == (const HV *)sv);
5451                         CvSTASH(referrer) = 0;
5452                     }
5453                     else {
5454                         assert(SvTYPE(sv) == SVt_PVGV);
5455                         /* You lookin' at me?  */
5456                         assert(CvGV(referrer));
5457                         assert(CvGV(referrer) == (const GV *)sv);
5458                         anonymise_cv_maybe(MUTABLE_GV(sv),
5459                                                 MUTABLE_CV(referrer));
5460                     }
5461
5462                 } else {
5463                     Perl_croak(aTHX_
5464                                "panic: magic_killbackrefs (flags=%"UVxf")",
5465                                (UV)SvFLAGS(referrer));
5466                 }
5467
5468                 *svp = NULL;
5469             }
5470             svp++;
5471         }
5472         AvFILLp(av) = -1;
5473     }
5474     SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5475     return 0;
5476 }
5477
5478 /*
5479 =for apidoc sv_insert
5480
5481 Inserts a string at the specified offset/length within the SV. Similar to
5482 the Perl substr() function. Handles get magic.
5483
5484 =for apidoc sv_insert_flags
5485
5486 Same as C<sv_insert>, but the extra C<flags> are passed the C<SvPV_force_flags> that applies to C<bigstr>.
5487
5488 =cut
5489 */
5490
5491 void
5492 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5493 {
5494     dVAR;
5495     register char *big;
5496     register char *mid;
5497     register char *midend;
5498     register char *bigend;
5499     register I32 i;
5500     STRLEN curlen;
5501
5502     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5503
5504     if (!bigstr)
5505         Perl_croak(aTHX_ "Can't modify non-existent substring");
5506     SvPV_force_flags(bigstr, curlen, flags);
5507     (void)SvPOK_only_UTF8(bigstr);
5508     if (offset + len > curlen) {
5509         SvGROW(bigstr, offset+len+1);
5510         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5511         SvCUR_set(bigstr, offset+len);
5512     }
5513
5514     SvTAINT(bigstr);
5515     i = littlelen - len;
5516     if (i > 0) {                        /* string might grow */
5517         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5518         mid = big + offset + len;
5519         midend = bigend = big + SvCUR(bigstr);
5520         bigend += i;
5521         *bigend = '\0';
5522         while (midend > mid)            /* shove everything down */
5523             *--bigend = *--midend;
5524         Move(little,big+offset,littlelen,char);
5525         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5526         SvSETMAGIC(bigstr);
5527         return;
5528     }
5529     else if (i == 0) {
5530         Move(little,SvPVX(bigstr)+offset,len,char);
5531         SvSETMAGIC(bigstr);
5532         return;
5533     }
5534
5535     big = SvPVX(bigstr);
5536     mid = big + offset;
5537     midend = mid + len;
5538     bigend = big + SvCUR(bigstr);
5539
5540     if (midend > bigend)
5541         Perl_croak(aTHX_ "panic: sv_insert");
5542
5543     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5544         if (littlelen) {
5545             Move(little, mid, littlelen,char);
5546             mid += littlelen;
5547         }
5548         i = bigend - midend;
5549         if (i > 0) {
5550             Move(midend, mid, i,char);
5551             mid += i;
5552         }
5553         *mid = '\0';
5554         SvCUR_set(bigstr, mid - big);
5555     }
5556     else if ((i = mid - big)) { /* faster from front */
5557         midend -= littlelen;
5558         mid = midend;
5559         Move(big, midend - i, i, char);
5560         sv_chop(bigstr,midend-i);
5561         if (littlelen)
5562             Move(little, mid, littlelen,char);
5563     }
5564     else if (littlelen) {
5565         midend -= littlelen;
5566         sv_chop(bigstr,midend);
5567         Move(little,midend,littlelen,char);
5568     }
5569     else {
5570         sv_chop(bigstr,midend);
5571     }
5572     SvSETMAGIC(bigstr);
5573 }
5574
5575 /*
5576 =for apidoc sv_replace
5577
5578 Make the first argument a copy of the second, then delete the original.
5579 The target SV physically takes over ownership of the body of the source SV
5580 and inherits its flags; however, the target keeps any magic it owns,
5581 and any magic in the source is discarded.
5582 Note that this is a rather specialist SV copying operation; most of the
5583 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5584
5585 =cut
5586 */
5587
5588 void
5589 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5590 {
5591     dVAR;
5592     const U32 refcnt = SvREFCNT(sv);
5593
5594     PERL_ARGS_ASSERT_SV_REPLACE;
5595
5596     SV_CHECK_THINKFIRST_COW_DROP(sv);
5597     if (SvREFCNT(nsv) != 1) {
5598         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
5599                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
5600     }
5601     if (SvMAGICAL(sv)) {
5602         if (SvMAGICAL(nsv))
5603             mg_free(nsv);
5604         else
5605             sv_upgrade(nsv, SVt_PVMG);
5606         SvMAGIC_set(nsv, SvMAGIC(sv));
5607         SvFLAGS(nsv) |= SvMAGICAL(sv);
5608         SvMAGICAL_off(sv);
5609         SvMAGIC_set(sv, NULL);
5610     }
5611     SvREFCNT(sv) = 0;
5612     sv_clear(sv);
5613     assert(!SvREFCNT(sv));
5614 #ifdef DEBUG_LEAKING_SCALARS
5615     sv->sv_flags  = nsv->sv_flags;
5616     sv->sv_any    = nsv->sv_any;
5617     sv->sv_refcnt = nsv->sv_refcnt;
5618     sv->sv_u      = nsv->sv_u;
5619 #else
5620     StructCopy(nsv,sv,SV);
5621 #endif
5622     if(SvTYPE(sv) == SVt_IV) {
5623         SvANY(sv)
5624             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5625     }
5626         
5627
5628 #ifdef PERL_OLD_COPY_ON_WRITE
5629     if (SvIsCOW_normal(nsv)) {
5630         /* We need to follow the pointers around the loop to make the
5631            previous SV point to sv, rather than nsv.  */
5632         SV *next;
5633         SV *current = nsv;
5634         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5635             assert(next);
5636             current = next;
5637             assert(SvPVX_const(current) == SvPVX_const(nsv));
5638         }
5639         /* Make the SV before us point to the SV after us.  */
5640         if (DEBUG_C_TEST) {
5641             PerlIO_printf(Perl_debug_log, "previous is\n");
5642             sv_dump(current);
5643             PerlIO_printf(Perl_debug_log,
5644                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5645                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5646         }
5647         SV_COW_NEXT_SV_SET(current, sv);
5648     }
5649 #endif
5650     SvREFCNT(sv) = refcnt;
5651     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5652     SvREFCNT(nsv) = 0;
5653     del_SV(nsv);
5654 }
5655
5656 /* We're about to free a GV which has a CV that refers back to us.
5657  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
5658  * field) */
5659
5660 STATIC void
5661 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
5662 {
5663     char *stash;
5664     SV *gvname;
5665     GV *anongv;
5666
5667     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
5668
5669     /* be assertive! */
5670     assert(SvREFCNT(gv) == 0);
5671     assert(isGV(gv) && isGV_with_GP(gv));
5672     assert(GvGP(gv));
5673     assert(!CvANON(cv));
5674     assert(CvGV(cv) == gv);
5675
5676     /* will the CV shortly be freed by gp_free() ? */
5677     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
5678         CvGV(cv) = NULL;
5679         return;
5680     }
5681
5682     /* if not, anonymise: */
5683     stash  = GvSTASH(gv) ? HvNAME(GvSTASH(gv)) : NULL;
5684     gvname = Perl_newSVpvf(aTHX_ "%s::__ANON__",
5685                                         stash ? stash : "__ANON__");
5686     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
5687     SvREFCNT_dec(gvname);
5688
5689     CvANON_on(cv);
5690     CvGV(cv) = MUTABLE_GV(SvREFCNT_inc(anongv));
5691 }
5692
5693
5694 /*
5695 =for apidoc sv_clear
5696
5697 Clear an SV: call any destructors, free up any memory used by the body,
5698 and free the body itself. The SV's head is I<not> freed, although
5699 its type is set to all 1's so that it won't inadvertently be assumed
5700 to be live during global destruction etc.
5701 This function should only be called when REFCNT is zero. Most of the time
5702 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5703 instead.
5704
5705 =cut
5706 */
5707
5708 void
5709 Perl_sv_clear(pTHX_ register SV *const sv)
5710 {
5711     dVAR;
5712     const U32 type = SvTYPE(sv);
5713     const struct body_details *const sv_type_details
5714         = bodies_by_type + type;
5715     HV *stash;
5716
5717     PERL_ARGS_ASSERT_SV_CLEAR;
5718     assert(SvREFCNT(sv) == 0);
5719     assert(SvTYPE(sv) != SVTYPEMASK);
5720
5721     if (type <= SVt_IV) {
5722         /* See the comment in sv.h about the collusion between this early
5723            return and the overloading of the NULL slots in the size table.  */
5724         if (SvROK(sv))
5725             goto free_rv;
5726         SvFLAGS(sv) &= SVf_BREAK;
5727         SvFLAGS(sv) |= SVTYPEMASK;
5728         return;
5729     }
5730
5731     if (SvOBJECT(sv)) {
5732         if (PL_defstash &&      /* Still have a symbol table? */
5733             SvDESTROYABLE(sv))
5734         {
5735             dSP;
5736             HV* stash;
5737             do {        
5738                 CV* destructor;
5739                 stash = SvSTASH(sv);
5740                 destructor = StashHANDLER(stash,DESTROY);
5741                 if (destructor
5742                         /* A constant subroutine can have no side effects, so
5743                            don't bother calling it.  */
5744                         && !CvCONST(destructor)
5745                         /* Don't bother calling an empty destructor */
5746                         && (CvISXSUB(destructor)
5747                         || (CvSTART(destructor)
5748                             && (CvSTART(destructor)->op_next->op_type != OP_LEAVESUB))))
5749                 {
5750                     SV* const tmpref = newRV(sv);
5751                     SvREADONLY_on(tmpref);   /* DESTROY() could be naughty */
5752                     ENTER;
5753                     PUSHSTACKi(PERLSI_DESTROY);
5754                     EXTEND(SP, 2);
5755                     PUSHMARK(SP);
5756                     PUSHs(tmpref);
5757                     PUTBACK;
5758                     call_sv(MUTABLE_SV(destructor), G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
5759                 
5760                 
5761                     POPSTACK;
5762                     SPAGAIN;
5763                     LEAVE;
5764                     if(SvREFCNT(tmpref) < 2) {
5765                         /* tmpref is not kept alive! */
5766                         SvREFCNT(sv)--;
5767                         SvRV_set(tmpref, NULL);
5768                         SvROK_off(tmpref);
5769                     }
5770                     SvREFCNT_dec(tmpref);
5771                 }
5772             } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
5773
5774
5775             if (SvREFCNT(sv)) {
5776                 if (PL_in_clean_objs)
5777                     Perl_croak(aTHX_ "DESTROY created new reference to dead object '%s'",
5778                           HvNAME_get(stash));
5779                 /* DESTROY gave object new lease on life */
5780                 return;
5781             }
5782         }
5783
5784         if (SvOBJECT(sv)) {
5785             SvREFCNT_dec(SvSTASH(sv));  /* possibly of changed persuasion */
5786             SvOBJECT_off(sv);   /* Curse the object. */
5787             if (type != SVt_PVIO)
5788                 --PL_sv_objcount;       /* XXX Might want something more general */
5789         }
5790     }
5791     if (type >= SVt_PVMG) {
5792         if (type == SVt_PVMG && SvPAD_OUR(sv)) {
5793             SvREFCNT_dec(SvOURSTASH(sv));
5794         } else if (SvMAGIC(sv))
5795             mg_free(sv);
5796         if (type == SVt_PVMG && SvPAD_TYPED(sv))
5797             SvREFCNT_dec(SvSTASH(sv));
5798     }
5799     switch (type) {
5800         /* case SVt_BIND: */
5801     case SVt_PVIO:
5802         if (IoIFP(sv) &&
5803             IoIFP(sv) != PerlIO_stdin() &&
5804             IoIFP(sv) != PerlIO_stdout() &&
5805             IoIFP(sv) != PerlIO_stderr() &&
5806             !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5807         {
5808             io_close(MUTABLE_IO(sv), FALSE);
5809         }
5810         if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5811             PerlDir_close(IoDIRP(sv));
5812         IoDIRP(sv) = (DIR*)NULL;
5813         Safefree(IoTOP_NAME(sv));
5814         Safefree(IoFMT_NAME(sv));
5815         Safefree(IoBOTTOM_NAME(sv));
5816         goto freescalar;
5817     case SVt_REGEXP:
5818         /* FIXME for plugins */
5819         pregfree2((REGEXP*) sv);
5820         goto freescalar;
5821     case SVt_PVCV:
5822     case SVt_PVFM:
5823         cv_undef(MUTABLE_CV(sv));
5824         /* If we're in a stash, we don't own a reference to it. However it does
5825            have a back reference to us, which needs to be cleared.  */
5826         if ((stash = CvSTASH(sv)))
5827             sv_del_backref(MUTABLE_SV(stash), sv);
5828         goto freescalar;
5829     case SVt_PVHV:
5830         if (PL_last_swash_hv == (const HV *)sv) {
5831             PL_last_swash_hv = NULL;
5832         }
5833         hv_undef(MUTABLE_HV(sv));
5834         break;
5835     case SVt_PVAV:
5836         if (PL_comppad == MUTABLE_AV(sv)) {
5837             PL_comppad = NULL;
5838             PL_curpad = NULL;
5839         }
5840         av_undef(MUTABLE_AV(sv));
5841         break;
5842     case SVt_PVLV:
5843         if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
5844             SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
5845             HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
5846             PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
5847         }
5848         else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
5849             SvREFCNT_dec(LvTARG(sv));
5850     case SVt_PVGV:
5851         if (isGV_with_GP(sv)) {
5852             if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
5853                && HvNAME_get(stash))
5854                 mro_method_changed_in(stash);
5855             gp_free(MUTABLE_GV(sv));
5856             if (GvNAME_HEK(sv))
5857                 unshare_hek(GvNAME_HEK(sv));
5858             /* If we're in a stash, we don't own a reference to it. However it does
5859                have a back reference to us, which needs to be cleared.  */
5860             if (!SvVALID(sv) && (stash = GvSTASH(sv)))
5861                     sv_del_backref(MUTABLE_SV(stash), sv);
5862         }
5863         /* FIXME. There are probably more unreferenced pointers to SVs in the
5864            interpreter struct that we should check and tidy in a similar
5865            fashion to this:  */
5866         if ((const GV *)sv == PL_last_in_gv)
5867             PL_last_in_gv = NULL;
5868     case SVt_PVMG:
5869     case SVt_PVNV:
5870     case SVt_PVIV:
5871     case SVt_PV:
5872       freescalar:
5873         /* Don't bother with SvOOK_off(sv); as we're only going to free it.  */
5874         if (SvOOK(sv)) {
5875             STRLEN offset;
5876             SvOOK_offset(sv, offset);
5877             SvPV_set(sv, SvPVX_mutable(sv) - offset);
5878             /* Don't even bother with turning off the OOK flag.  */
5879         }
5880         if (SvROK(sv)) {
5881         free_rv:
5882             {
5883                 SV * const target = SvRV(sv);
5884                 if (SvWEAKREF(sv))
5885                     sv_del_backref(target, sv);
5886                 else
5887                     SvREFCNT_dec(target);
5888             }
5889         }
5890 #ifdef PERL_OLD_COPY_ON_WRITE
5891         else if (SvPVX_const(sv)
5892                  && !(SvTYPE(sv) == SVt_PVIO && !(IoFLAGS(sv) & IOf_FAKE_DIRP))) {
5893             if (SvIsCOW(sv)) {
5894                 if (DEBUG_C_TEST) {
5895                     PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
5896                     sv_dump(sv);
5897                 }
5898                 if (SvLEN(sv)) {
5899                     sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
5900                 } else {
5901                     unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5902                 }
5903
5904                 SvFAKE_off(sv);
5905             } else if (SvLEN(sv)) {
5906                 Safefree(SvPVX_const(sv));
5907             }
5908         }
5909 #else
5910         else if (SvPVX_const(sv) && SvLEN(sv)
5911                  && !(SvTYPE(sv) == SVt_PVIO && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
5912             Safefree(SvPVX_mutable(sv));
5913         else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
5914             unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
5915             SvFAKE_off(sv);
5916         }
5917 #endif
5918         break;
5919     case SVt_NV:
5920         break;
5921     }
5922
5923     SvFLAGS(sv) &= SVf_BREAK;
5924     SvFLAGS(sv) |= SVTYPEMASK;
5925
5926     if (sv_type_details->arena) {
5927         del_body(((char *)SvANY(sv) + sv_type_details->offset),
5928                  &PL_body_roots[type]);
5929     }
5930     else if (sv_type_details->body_size) {
5931         my_safefree(SvANY(sv));
5932     }
5933 }
5934
5935 /*
5936 =for apidoc sv_newref
5937
5938 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5939 instead.
5940
5941 =cut
5942 */
5943
5944 SV *
5945 Perl_sv_newref(pTHX_ SV *const sv)
5946 {
5947     PERL_UNUSED_CONTEXT;
5948     if (sv)
5949         (SvREFCNT(sv))++;
5950     return sv;
5951 }
5952
5953 /*
5954 =for apidoc sv_free
5955
5956 Decrement an SV's reference count, and if it drops to zero, call
5957 C<sv_clear> to invoke destructors and free up any memory used by
5958 the body; finally, deallocate the SV's head itself.
5959 Normally called via a wrapper macro C<SvREFCNT_dec>.
5960
5961 =cut
5962 */
5963
5964 void
5965 Perl_sv_free(pTHX_ SV *const sv)
5966 {
5967     dVAR;
5968     if (!sv)
5969         return;
5970     if (SvREFCNT(sv) == 0) {
5971         if (SvFLAGS(sv) & SVf_BREAK)
5972             /* this SV's refcnt has been artificially decremented to
5973              * trigger cleanup */
5974             return;
5975         if (PL_in_clean_all) /* All is fair */
5976             return;
5977         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
5978             /* make sure SvREFCNT(sv)==0 happens very seldom */
5979             SvREFCNT(sv) = (~(U32)0)/2;
5980             return;
5981         }
5982         if (ckWARN_d(WARN_INTERNAL)) {
5983 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
5984             Perl_dump_sv_child(aTHX_ sv);
5985 #else
5986   #ifdef DEBUG_LEAKING_SCALARS
5987             sv_dump(sv);
5988   #endif
5989 #ifdef DEBUG_LEAKING_SCALARS_ABORT
5990             if (PL_warnhook == PERL_WARNHOOK_FATAL
5991                 || ckDEAD(packWARN(WARN_INTERNAL))) {
5992                 /* Don't let Perl_warner cause us to escape our fate:  */
5993                 abort();
5994             }
5995 #endif
5996             /* This may not return:  */
5997             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
5998                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
5999                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6000 #endif
6001         }
6002 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6003         abort();
6004 #endif
6005         return;
6006     }
6007     if (--(SvREFCNT(sv)) > 0)
6008         return;
6009     Perl_sv_free2(aTHX_ sv);
6010 }
6011
6012 void
6013 Perl_sv_free2(pTHX_ SV *const sv)
6014 {
6015     dVAR;
6016
6017     PERL_ARGS_ASSERT_SV_FREE2;
6018
6019 #ifdef DEBUGGING
6020     if (SvTEMP(sv)) {
6021         Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6022                          "Attempt to free temp prematurely: SV 0x%"UVxf
6023                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6024         return;
6025     }
6026 #endif
6027     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6028         /* make sure SvREFCNT(sv)==0 happens very seldom */
6029         SvREFCNT(sv) = (~(U32)0)/2;
6030         return;
6031     }
6032     sv_clear(sv);
6033     if (! SvREFCNT(sv))
6034         del_SV(sv);
6035 }
6036
6037 /*
6038 =for apidoc sv_len
6039
6040 Returns the length of the string in the SV. Handles magic and type
6041 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
6042
6043 =cut
6044 */
6045
6046 STRLEN
6047 Perl_sv_len(pTHX_ register SV *const sv)
6048 {
6049     STRLEN len;
6050
6051     if (!sv)
6052         return 0;
6053
6054     if (SvGMAGICAL(sv))
6055         len = mg_length(sv);
6056     else
6057         (void)SvPV_const(sv, len);
6058     return len;
6059 }
6060
6061 /*
6062 =for apidoc sv_len_utf8
6063
6064 Returns the number of characters in the string in an SV, counting wide
6065 UTF-8 bytes as a single character. Handles magic and type coercion.
6066
6067 =cut
6068 */
6069
6070 /*
6071  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
6072  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
6073  * (Note that the mg_len is not the length of the mg_ptr field.
6074  * This allows the cache to store the character length of the string without
6075  * needing to malloc() extra storage to attach to the mg_ptr.)
6076  *
6077  */
6078
6079 STRLEN
6080 Perl_sv_len_utf8(pTHX_ register SV *const sv)
6081 {
6082     if (!sv)
6083         return 0;
6084
6085     if (SvGMAGICAL(sv))
6086         return mg_length(sv);
6087     else
6088     {
6089         STRLEN len;
6090         const U8 *s = (U8*)SvPV_const(sv, len);
6091
6092         if (PL_utf8cache) {
6093             STRLEN ulen;
6094             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
6095
6096             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
6097                 if (mg->mg_len != -1)
6098                     ulen = mg->mg_len;
6099                 else {
6100                     /* We can use the offset cache for a headstart.
6101                        The longer value is stored in the first pair.  */
6102                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
6103
6104                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
6105                                                        s + len);
6106                 }
6107                 
6108                 if (PL_utf8cache < 0) {
6109                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6110                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
6111                 }
6112             }
6113             else {
6114                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6115                 utf8_mg_len_cache_update(sv, &mg, ulen);
6116             }
6117             return ulen;
6118         }
6119         return Perl_utf8_length(aTHX_ s, s + len);
6120     }
6121 }
6122
6123 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6124    offset.  */
6125 static STRLEN
6126 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6127                       STRLEN *const uoffset_p, bool *const at_end)
6128 {
6129     const U8 *s = start;
6130     STRLEN uoffset = *uoffset_p;
6131
6132     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6133
6134     while (s < send && uoffset) {
6135         --uoffset;
6136         s += UTF8SKIP(s);
6137     }
6138     if (s == send) {
6139         *at_end = TRUE;
6140     }
6141     else if (s > send) {
6142         *at_end = TRUE;
6143         /* This is the existing behaviour. Possibly it should be a croak, as
6144            it's actually a bounds error  */
6145         s = send;
6146     }
6147     *uoffset_p -= uoffset;
6148     return s - start;
6149 }
6150
6151 /* Given the length of the string in both bytes and UTF-8 characters, decide
6152    whether to walk forwards or backwards to find the byte corresponding to
6153    the passed in UTF-8 offset.  */
6154 static STRLEN
6155 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6156                     STRLEN uoffset, const STRLEN uend)
6157 {
6158     STRLEN backw = uend - uoffset;
6159
6160     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6161
6162     if (uoffset < 2 * backw) {
6163         /* The assumption is that going forwards is twice the speed of going
6164            forward (that's where the 2 * backw comes from).
6165            (The real figure of course depends on the UTF-8 data.)  */
6166         const U8 *s = start;
6167
6168         while (s < send && uoffset--)
6169             s += UTF8SKIP(s);
6170         assert (s <= send);
6171         if (s > send)
6172             s = send;
6173         return s - start;
6174     }
6175
6176     while (backw--) {
6177         send--;
6178         while (UTF8_IS_CONTINUATION(*send))
6179             send--;
6180     }
6181     return send - start;
6182 }
6183
6184 /* For the string representation of the given scalar, find the byte
6185    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6186    give another position in the string, *before* the sought offset, which
6187    (which is always true, as 0, 0 is a valid pair of positions), which should
6188    help reduce the amount of linear searching.
6189    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6190    will be used to reduce the amount of linear searching. The cache will be
6191    created if necessary, and the found value offered to it for update.  */
6192 static STRLEN
6193 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6194                     const U8 *const send, STRLEN uoffset,
6195                     STRLEN uoffset0, STRLEN boffset0)
6196 {
6197     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6198     bool found = FALSE;
6199     bool at_end = FALSE;
6200
6201     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6202
6203     assert (uoffset >= uoffset0);
6204
6205     if (!uoffset)
6206         return 0;
6207
6208     if (!SvREADONLY(sv)
6209         && PL_utf8cache
6210         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
6211                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
6212         if ((*mgp)->mg_ptr) {
6213             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6214             if (cache[0] == uoffset) {
6215                 /* An exact match. */
6216                 return cache[1];
6217             }
6218             if (cache[2] == uoffset) {
6219                 /* An exact match. */
6220                 return cache[3];
6221             }
6222
6223             if (cache[0] < uoffset) {
6224                 /* The cache already knows part of the way.   */
6225                 if (cache[0] > uoffset0) {
6226                     /* The cache knows more than the passed in pair  */
6227                     uoffset0 = cache[0];
6228                     boffset0 = cache[1];
6229                 }
6230                 if ((*mgp)->mg_len != -1) {
6231                     /* And we know the end too.  */
6232                     boffset = boffset0
6233                         + sv_pos_u2b_midway(start + boffset0, send,
6234                                               uoffset - uoffset0,
6235                                               (*mgp)->mg_len - uoffset0);
6236                 } else {
6237                     uoffset -= uoffset0;
6238                     boffset = boffset0
6239                         + sv_pos_u2b_forwards(start + boffset0,
6240                                               send, &uoffset, &at_end);
6241                     uoffset += uoffset0;
6242                 }
6243             }
6244             else if (cache[2] < uoffset) {
6245                 /* We're between the two cache entries.  */
6246                 if (cache[2] > uoffset0) {
6247                     /* and the cache knows more than the passed in pair  */
6248                     uoffset0 = cache[2];
6249                     boffset0 = cache[3];
6250                 }
6251
6252                 boffset = boffset0
6253                     + sv_pos_u2b_midway(start + boffset0,
6254                                           start + cache[1],
6255                                           uoffset - uoffset0,
6256                                           cache[0] - uoffset0);
6257             } else {
6258                 boffset = boffset0
6259                     + sv_pos_u2b_midway(start + boffset0,
6260                                           start + cache[3],
6261                                           uoffset - uoffset0,
6262                                           cache[2] - uoffset0);
6263             }
6264             found = TRUE;
6265         }
6266         else if ((*mgp)->mg_len != -1) {
6267             /* If we can take advantage of a passed in offset, do so.  */
6268             /* In fact, offset0 is either 0, or less than offset, so don't
6269                need to worry about the other possibility.  */
6270             boffset = boffset0
6271                 + sv_pos_u2b_midway(start + boffset0, send,
6272                                       uoffset - uoffset0,
6273                                       (*mgp)->mg_len - uoffset0);
6274             found = TRUE;
6275         }
6276     }
6277
6278     if (!found || PL_utf8cache < 0) {
6279         STRLEN real_boffset;
6280         uoffset -= uoffset0;
6281         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
6282                                                       send, &uoffset, &at_end);
6283         uoffset += uoffset0;
6284
6285         if (found && PL_utf8cache < 0)
6286             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
6287                                        real_boffset, sv);
6288         boffset = real_boffset;
6289     }
6290
6291     if (PL_utf8cache) {
6292         if (at_end)
6293             utf8_mg_len_cache_update(sv, mgp, uoffset);
6294         else
6295             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
6296     }
6297     return boffset;
6298 }
6299
6300
6301 /*
6302 =for apidoc sv_pos_u2b_flags
6303
6304 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6305 the start of the string, to a count of the equivalent number of bytes; if
6306 lenp is non-zero, it does the same to lenp, but this time starting from
6307 the offset, rather than from the start of the string. Handles type coercion.
6308 I<flags> is passed to C<SvPV_flags>, and usually should be
6309 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
6310
6311 =cut
6312 */
6313
6314 /*
6315  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
6316  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6317  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6318  *
6319  */
6320
6321 STRLEN
6322 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
6323                       U32 flags)
6324 {
6325     const U8 *start;
6326     STRLEN len;
6327     STRLEN boffset;
6328
6329     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
6330
6331     start = (U8*)SvPV_flags(sv, len, flags);
6332     if (len) {
6333         const U8 * const send = start + len;
6334         MAGIC *mg = NULL;
6335         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
6336
6337         if (lenp
6338             && *lenp /* don't bother doing work for 0, as its bytes equivalent
6339                         is 0, and *lenp is already set to that.  */) {
6340             /* Convert the relative offset to absolute.  */
6341             const STRLEN uoffset2 = uoffset + *lenp;
6342             const STRLEN boffset2
6343                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
6344                                       uoffset, boffset) - boffset;
6345
6346             *lenp = boffset2;
6347         }
6348     } else {
6349         if (lenp)
6350             *lenp = 0;
6351         boffset = 0;
6352     }
6353
6354     return boffset;
6355 }
6356
6357 /*
6358 =for apidoc sv_pos_u2b
6359
6360 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6361 the start of the string, to a count of the equivalent number of bytes; if
6362 lenp is non-zero, it does the same to lenp, but this time starting from
6363 the offset, rather than from the start of the string. Handles magic and
6364 type coercion.
6365
6366 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
6367 than 2Gb.
6368
6369 =cut
6370 */
6371
6372 /*
6373  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6374  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6375  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6376  *
6377  */
6378
6379 /* This function is subject to size and sign problems */
6380
6381 void
6382 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
6383 {
6384     PERL_ARGS_ASSERT_SV_POS_U2B;
6385
6386     if (lenp) {
6387         STRLEN ulen = (STRLEN)*lenp;
6388         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
6389                                          SV_GMAGIC|SV_CONST_RETURN);
6390         *lenp = (I32)ulen;
6391     } else {
6392         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
6393                                          SV_GMAGIC|SV_CONST_RETURN);
6394     }
6395 }
6396
6397 static void
6398 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
6399                            const STRLEN ulen)
6400 {
6401     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
6402     if (SvREADONLY(sv))
6403         return;
6404
6405     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6406                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6407         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
6408     }
6409     assert(*mgp);
6410
6411     (*mgp)->mg_len = ulen;
6412     /* For now, treat "overflowed" as "still unknown". See RT #72924.  */
6413     if (ulen != (STRLEN) (*mgp)->mg_len)
6414         (*mgp)->mg_len = -1;
6415 }
6416
6417 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
6418    byte length pairing. The (byte) length of the total SV is passed in too,
6419    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
6420    may not have updated SvCUR, so we can't rely on reading it directly.
6421
6422    The proffered utf8/byte length pairing isn't used if the cache already has
6423    two pairs, and swapping either for the proffered pair would increase the
6424    RMS of the intervals between known byte offsets.
6425
6426    The cache itself consists of 4 STRLEN values
6427    0: larger UTF-8 offset
6428    1: corresponding byte offset
6429    2: smaller UTF-8 offset
6430    3: corresponding byte offset
6431
6432    Unused cache pairs have the value 0, 0.
6433    Keeping the cache "backwards" means that the invariant of
6434    cache[0] >= cache[2] is maintained even with empty slots, which means that
6435    the code that uses it doesn't need to worry if only 1 entry has actually
6436    been set to non-zero.  It also makes the "position beyond the end of the
6437    cache" logic much simpler, as the first slot is always the one to start
6438    from.   
6439 */
6440 static void
6441 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6442                            const STRLEN utf8, const STRLEN blen)
6443 {
6444     STRLEN *cache;
6445
6446     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6447
6448     if (SvREADONLY(sv))
6449         return;
6450
6451     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6452                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6453         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6454                            0);
6455         (*mgp)->mg_len = -1;
6456     }
6457     assert(*mgp);
6458
6459     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6460         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6461         (*mgp)->mg_ptr = (char *) cache;
6462     }
6463     assert(cache);
6464
6465     if (PL_utf8cache < 0 && SvPOKp(sv)) {
6466         /* SvPOKp() because it's possible that sv has string overloading, and
6467            therefore is a reference, hence SvPVX() is actually a pointer.
6468            This cures the (very real) symptoms of RT 69422, but I'm not actually
6469            sure whether we should even be caching the results of UTF-8
6470            operations on overloading, given that nothing stops overloading
6471            returning a different value every time it's called.  */
6472         const U8 *start = (const U8 *) SvPVX_const(sv);
6473         const STRLEN realutf8 = utf8_length(start, start + byte);
6474
6475         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
6476                                    sv);
6477     }
6478
6479     /* Cache is held with the later position first, to simplify the code
6480        that deals with unbounded ends.  */
6481        
6482     ASSERT_UTF8_CACHE(cache);
6483     if (cache[1] == 0) {
6484         /* Cache is totally empty  */
6485         cache[0] = utf8;
6486         cache[1] = byte;
6487     } else if (cache[3] == 0) {
6488         if (byte > cache[1]) {
6489             /* New one is larger, so goes first.  */
6490             cache[2] = cache[0];
6491             cache[3] = cache[1];
6492             cache[0] = utf8;
6493             cache[1] = byte;
6494         } else {
6495             cache[2] = utf8;
6496             cache[3] = byte;
6497         }
6498     } else {
6499 #define THREEWAY_SQUARE(a,b,c,d) \
6500             ((float)((d) - (c))) * ((float)((d) - (c))) \
6501             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6502                + ((float)((b) - (a))) * ((float)((b) - (a)))
6503
6504         /* Cache has 2 slots in use, and we know three potential pairs.
6505            Keep the two that give the lowest RMS distance. Do the
6506            calcualation in bytes simply because we always know the byte
6507            length.  squareroot has the same ordering as the positive value,
6508            so don't bother with the actual square root.  */
6509         const float existing = THREEWAY_SQUARE(0, cache[3], cache[1], blen);
6510         if (byte > cache[1]) {
6511             /* New position is after the existing pair of pairs.  */
6512             const float keep_earlier
6513                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6514             const float keep_later
6515                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6516
6517             if (keep_later < keep_earlier) {
6518                 if (keep_later < existing) {
6519                     cache[2] = cache[0];
6520                     cache[3] = cache[1];
6521                     cache[0] = utf8;
6522                     cache[1] = byte;
6523                 }
6524             }
6525             else {
6526                 if (keep_earlier < existing) {
6527                     cache[0] = utf8;
6528                     cache[1] = byte;
6529                 }
6530             }
6531         }
6532         else if (byte > cache[3]) {
6533             /* New position is between the existing pair of pairs.  */
6534             const float keep_earlier
6535                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6536             const float keep_later
6537                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6538
6539             if (keep_later < keep_earlier) {
6540                 if (keep_later < existing) {
6541                     cache[2] = utf8;
6542                     cache[3] = byte;
6543                 }
6544             }
6545             else {
6546                 if (keep_earlier < existing) {
6547                     cache[0] = utf8;
6548                     cache[1] = byte;
6549                 }
6550             }
6551         }
6552         else {
6553             /* New position is before the existing pair of pairs.  */
6554             const float keep_earlier
6555                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
6556             const float keep_later
6557                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6558
6559             if (keep_later < keep_earlier) {
6560                 if (keep_later < existing) {
6561                     cache[2] = utf8;
6562                     cache[3] = byte;
6563                 }
6564             }
6565             else {
6566                 if (keep_earlier < existing) {
6567                     cache[0] = cache[2];
6568                     cache[1] = cache[3];
6569                     cache[2] = utf8;
6570                     cache[3] = byte;
6571                 }
6572             }
6573         }
6574     }
6575     ASSERT_UTF8_CACHE(cache);
6576 }
6577
6578 /* We already know all of the way, now we may be able to walk back.  The same
6579    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
6580    backward is half the speed of walking forward. */
6581 static STRLEN
6582 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
6583                     const U8 *end, STRLEN endu)
6584 {
6585     const STRLEN forw = target - s;
6586     STRLEN backw = end - target;
6587
6588     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
6589
6590     if (forw < 2 * backw) {
6591         return utf8_length(s, target);
6592     }
6593
6594     while (end > target) {
6595         end--;
6596         while (UTF8_IS_CONTINUATION(*end)) {
6597             end--;
6598         }
6599         endu--;
6600     }
6601     return endu;
6602 }
6603
6604 /*
6605 =for apidoc sv_pos_b2u
6606
6607 Converts the value pointed to by offsetp from a count of bytes from the
6608 start of the string, to a count of the equivalent number of UTF-8 chars.
6609 Handles magic and type coercion.
6610
6611 =cut
6612 */
6613
6614 /*
6615  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
6616  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6617  * byte offsets.
6618  *
6619  */
6620 void
6621 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
6622 {
6623     const U8* s;
6624     const STRLEN byte = *offsetp;
6625     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
6626     STRLEN blen;
6627     MAGIC* mg = NULL;
6628     const U8* send;
6629     bool found = FALSE;
6630
6631     PERL_ARGS_ASSERT_SV_POS_B2U;
6632
6633     if (!sv)
6634         return;
6635
6636     s = (const U8*)SvPV_const(sv, blen);
6637
6638     if (blen < byte)
6639         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
6640
6641     send = s + byte;
6642
6643     if (!SvREADONLY(sv)
6644         && PL_utf8cache
6645         && SvTYPE(sv) >= SVt_PVMG
6646         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
6647     {
6648         if (mg->mg_ptr) {
6649             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
6650             if (cache[1] == byte) {
6651                 /* An exact match. */
6652                 *offsetp = cache[0];
6653                 return;
6654             }
6655             if (cache[3] == byte) {
6656                 /* An exact match. */
6657                 *offsetp = cache[2];
6658                 return;
6659             }
6660
6661             if (cache[1] < byte) {
6662                 /* We already know part of the way. */
6663                 if (mg->mg_len != -1) {
6664                     /* Actually, we know the end too.  */
6665                     len = cache[0]
6666                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
6667                                               s + blen, mg->mg_len - cache[0]);
6668                 } else {
6669                     len = cache[0] + utf8_length(s + cache[1], send);
6670                 }
6671             }
6672             else if (cache[3] < byte) {
6673                 /* We're between the two cached pairs, so we do the calculation
6674                    offset by the byte/utf-8 positions for the earlier pair,
6675                    then add the utf-8 characters from the string start to
6676                    there.  */
6677                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
6678                                           s + cache[1], cache[0] - cache[2])
6679                     + cache[2];
6680
6681             }
6682             else { /* cache[3] > byte */
6683                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
6684                                           cache[2]);
6685
6686             }
6687             ASSERT_UTF8_CACHE(cache);
6688             found = TRUE;
6689         } else if (mg->mg_len != -1) {
6690             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
6691             found = TRUE;
6692         }
6693     }
6694     if (!found || PL_utf8cache < 0) {
6695         const STRLEN real_len = utf8_length(s, send);
6696
6697         if (found && PL_utf8cache < 0)
6698             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
6699         len = real_len;
6700     }
6701     *offsetp = len;
6702
6703     if (PL_utf8cache) {
6704         if (blen == byte)
6705             utf8_mg_len_cache_update(sv, &mg, len);
6706         else
6707             utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
6708     }
6709 }
6710
6711 static void
6712 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
6713                              STRLEN real, SV *const sv)
6714 {
6715     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
6716
6717     /* As this is debugging only code, save space by keeping this test here,
6718        rather than inlining it in all the callers.  */
6719     if (from_cache == real)
6720         return;
6721
6722     /* Need to turn the assertions off otherwise we may recurse infinitely
6723        while printing error messages.  */
6724     SAVEI8(PL_utf8cache);
6725     PL_utf8cache = 0;
6726     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
6727                func, (UV) from_cache, (UV) real, SVfARG(sv));
6728 }
6729
6730 /*
6731 =for apidoc sv_eq
6732
6733 Returns a boolean indicating whether the strings in the two SVs are
6734 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6735 coerce its args to strings if necessary.
6736
6737 =cut
6738 */
6739
6740 I32
6741 Perl_sv_eq(pTHX_ register SV *sv1, register SV *sv2)
6742 {
6743     dVAR;
6744     const char *pv1;
6745     STRLEN cur1;
6746     const char *pv2;
6747     STRLEN cur2;
6748     I32  eq     = 0;
6749     char *tpv   = NULL;
6750     SV* svrecode = NULL;
6751
6752     if (!sv1) {
6753         pv1 = "";
6754         cur1 = 0;
6755     }
6756     else {
6757         /* if pv1 and pv2 are the same, second SvPV_const call may
6758          * invalidate pv1, so we may need to make a copy */
6759         if (sv1 == sv2 && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
6760             pv1 = SvPV_const(sv1, cur1);
6761             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
6762         }
6763         pv1 = SvPV_const(sv1, cur1);
6764     }
6765
6766     if (!sv2){
6767         pv2 = "";
6768         cur2 = 0;
6769     }
6770     else
6771         pv2 = SvPV_const(sv2, cur2);
6772
6773     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6774         /* Differing utf8ness.
6775          * Do not UTF8size the comparands as a side-effect. */
6776          if (PL_encoding) {
6777               if (SvUTF8(sv1)) {
6778                    svrecode = newSVpvn(pv2, cur2);
6779                    sv_recode_to_utf8(svrecode, PL_encoding);
6780                    pv2 = SvPV_const(svrecode, cur2);
6781               }
6782               else {
6783                    svrecode = newSVpvn(pv1, cur1);
6784                    sv_recode_to_utf8(svrecode, PL_encoding);
6785                    pv1 = SvPV_const(svrecode, cur1);
6786               }
6787               /* Now both are in UTF-8. */
6788               if (cur1 != cur2) {
6789                    SvREFCNT_dec(svrecode);
6790                    return FALSE;
6791               }
6792          }
6793          else {
6794               bool is_utf8 = TRUE;
6795
6796               if (SvUTF8(sv1)) {
6797                    /* sv1 is the UTF-8 one,
6798                     * if is equal it must be downgrade-able */
6799                    char * const pv = (char*)bytes_from_utf8((const U8*)pv1,
6800                                                      &cur1, &is_utf8);
6801                    if (pv != pv1)
6802                         pv1 = tpv = pv;
6803               }
6804               else {
6805                    /* sv2 is the UTF-8 one,
6806                     * if is equal it must be downgrade-able */
6807                    char * const pv = (char *)bytes_from_utf8((const U8*)pv2,
6808                                                       &cur2, &is_utf8);
6809                    if (pv != pv2)
6810                         pv2 = tpv = pv;
6811               }
6812               if (is_utf8) {
6813                    /* Downgrade not possible - cannot be eq */
6814                    assert (tpv == 0);
6815                    return FALSE;
6816               }
6817          }
6818     }
6819
6820     if (cur1 == cur2)
6821         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
6822         
6823     SvREFCNT_dec(svrecode);
6824     if (tpv)
6825         Safefree(tpv);
6826
6827     return eq;
6828 }
6829
6830 /*
6831 =for apidoc sv_cmp
6832
6833 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
6834 string in C<sv1> is less than, equal to, or greater than the string in
6835 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
6836 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
6837
6838 =cut
6839 */
6840
6841 I32
6842 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
6843 {
6844     dVAR;
6845     STRLEN cur1, cur2;
6846     const char *pv1, *pv2;
6847     char *tpv = NULL;
6848     I32  cmp;
6849     SV *svrecode = NULL;
6850
6851     if (!sv1) {
6852         pv1 = "";
6853         cur1 = 0;
6854     }
6855     else
6856         pv1 = SvPV_const(sv1, cur1);
6857
6858     if (!sv2) {
6859         pv2 = "";
6860         cur2 = 0;
6861     }
6862     else
6863         pv2 = SvPV_const(sv2, cur2);
6864
6865     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
6866         /* Differing utf8ness.
6867          * Do not UTF8size the comparands as a side-effect. */
6868         if (SvUTF8(sv1)) {
6869             if (PL_encoding) {
6870                  svrecode = newSVpvn(pv2, cur2);
6871                  sv_recode_to_utf8(svrecode, PL_encoding);
6872                  pv2 = SvPV_const(svrecode, cur2);
6873             }
6874             else {
6875                  pv2 = tpv = (char*)bytes_to_utf8((const U8*)pv2, &cur2);
6876             }
6877         }
6878         else {
6879             if (PL_encoding) {
6880                  svrecode = newSVpvn(pv1, cur1);
6881                  sv_recode_to_utf8(svrecode, PL_encoding);
6882                  pv1 = SvPV_const(svrecode, cur1);
6883             }
6884             else {
6885                  pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
6886             }
6887         }
6888     }
6889
6890     if (!cur1) {
6891         cmp = cur2 ? -1 : 0;
6892     } else if (!cur2) {
6893         cmp = 1;
6894     } else {
6895         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
6896
6897         if (retval) {
6898             cmp = retval < 0 ? -1 : 1;
6899         } else if (cur1 == cur2) {
6900             cmp = 0;
6901         } else {
6902             cmp = cur1 < cur2 ? -1 : 1;
6903         }
6904     }
6905
6906     SvREFCNT_dec(svrecode);
6907     if (tpv)
6908         Safefree(tpv);
6909
6910     return cmp;
6911 }
6912
6913 /*
6914 =for apidoc sv_cmp_locale
6915
6916 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
6917 'use bytes' aware, handles get magic, and will coerce its args to strings
6918 if necessary.  See also C<sv_cmp>.
6919
6920 =cut
6921 */
6922
6923 I32
6924 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
6925 {
6926     dVAR;
6927 #ifdef USE_LOCALE_COLLATE
6928
6929     char *pv1, *pv2;
6930     STRLEN len1, len2;
6931     I32 retval;
6932
6933     if (PL_collation_standard)
6934         goto raw_compare;
6935
6936     len1 = 0;
6937     pv1 = sv1 ? sv_collxfrm(sv1, &len1) : (char *) NULL;
6938     len2 = 0;
6939     pv2 = sv2 ? sv_collxfrm(sv2, &len2) : (char *) NULL;
6940
6941     if (!pv1 || !len1) {
6942         if (pv2 && len2)
6943             return -1;
6944         else
6945             goto raw_compare;
6946     }
6947     else {
6948         if (!pv2 || !len2)
6949             return 1;
6950     }
6951
6952     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
6953
6954     if (retval)
6955         return retval < 0 ? -1 : 1;
6956
6957     /*
6958      * When the result of collation is equality, that doesn't mean
6959      * that there are no differences -- some locales exclude some
6960      * characters from consideration.  So to avoid false equalities,
6961      * we use the raw string as a tiebreaker.
6962      */
6963
6964   raw_compare:
6965     /*FALLTHROUGH*/
6966
6967 #endif /* USE_LOCALE_COLLATE */
6968
6969     return sv_cmp(sv1, sv2);
6970 }
6971
6972
6973 #ifdef USE_LOCALE_COLLATE
6974
6975 /*
6976 =for apidoc sv_collxfrm
6977
6978 Add Collate Transform magic to an SV if it doesn't already have it.
6979
6980 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
6981 scalar data of the variable, but transformed to such a format that a normal
6982 memory comparison can be used to compare the data according to the locale
6983 settings.
6984
6985 =cut
6986 */
6987
6988 char *
6989 Perl_sv_collxfrm(pTHX_ SV *const sv, STRLEN *const nxp)
6990 {
6991     dVAR;
6992     MAGIC *mg;
6993
6994     PERL_ARGS_ASSERT_SV_COLLXFRM;
6995
6996     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
6997     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
6998         const char *s;
6999         char *xf;
7000         STRLEN len, xlen;
7001
7002         if (mg)
7003             Safefree(mg->mg_ptr);
7004         s = SvPV_const(sv, len);
7005         if ((xf = mem_collxfrm(s, len, &xlen))) {
7006             if (! mg) {
7007 #ifdef PERL_OLD_COPY_ON_WRITE
7008                 if (SvIsCOW(sv))
7009                     sv_force_normal_flags(sv, 0);
7010 #endif
7011                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7012                                  0, 0);
7013                 assert(mg);
7014             }
7015             mg->mg_ptr = xf;
7016             mg->mg_len = xlen;
7017         }
7018         else {
7019             if (mg) {
7020                 mg->mg_ptr = NULL;
7021                 mg->mg_len = -1;
7022             }
7023         }
7024     }
7025     if (mg && mg->mg_ptr) {
7026         *nxp = mg->mg_len;
7027         return mg->mg_ptr + sizeof(PL_collation_ix);
7028     }
7029     else {
7030         *nxp = 0;
7031         return NULL;
7032     }
7033 }
7034
7035 #endif /* USE_LOCALE_COLLATE */
7036
7037 /*
7038 =for apidoc sv_gets
7039
7040 Get a line from the filehandle and store it into the SV, optionally
7041 appending to the currently-stored string.
7042
7043 =cut
7044 */
7045
7046 char *
7047 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
7048 {
7049     dVAR;
7050     const char *rsptr;
7051     STRLEN rslen;
7052     register STDCHAR rslast;
7053     register STDCHAR *bp;
7054     register I32 cnt;
7055     I32 i = 0;
7056     I32 rspara = 0;
7057
7058     PERL_ARGS_ASSERT_SV_GETS;
7059
7060     if (SvTHINKFIRST(sv))
7061         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
7062     /* XXX. If you make this PVIV, then copy on write can copy scalars read
7063        from <>.
7064        However, perlbench says it's slower, because the existing swipe code
7065        is faster than copy on write.
7066        Swings and roundabouts.  */
7067     SvUPGRADE(sv, SVt_PV);
7068
7069     SvSCREAM_off(sv);
7070
7071     if (append) {
7072         if (PerlIO_isutf8(fp)) {
7073             if (!SvUTF8(sv)) {
7074                 sv_utf8_upgrade_nomg(sv);
7075                 sv_pos_u2b(sv,&append,0);
7076             }
7077         } else if (SvUTF8(sv)) {
7078             SV * const tsv = newSV(0);
7079             sv_gets(tsv, fp, 0);
7080             sv_utf8_upgrade_nomg(tsv);
7081             SvCUR_set(sv,append);
7082             sv_catsv(sv,tsv);
7083             sv_free(tsv);
7084             goto return_string_or_null;
7085         }
7086     }
7087
7088     SvPOK_only(sv);
7089     if (!append) {
7090         SvCUR_set(sv,0);
7091     }
7092     if (PerlIO_isutf8(fp))
7093         SvUTF8_on(sv);
7094
7095     if (IN_PERL_COMPILETIME) {
7096         /* we always read code in line mode */
7097         rsptr = "\n";
7098         rslen = 1;
7099     }
7100     else if (RsSNARF(PL_rs)) {
7101         /* If it is a regular disk file use size from stat() as estimate
7102            of amount we are going to read -- may result in mallocing
7103            more memory than we really need if the layers below reduce
7104            the size we read (e.g. CRLF or a gzip layer).
7105          */
7106         Stat_t st;
7107         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
7108             const Off_t offset = PerlIO_tell(fp);
7109             if (offset != (Off_t) -1 && st.st_size + append > offset) {
7110                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
7111             }
7112         }
7113         rsptr = NULL;
7114         rslen = 0;
7115     }
7116     else if (RsRECORD(PL_rs)) {
7117       I32 bytesread;
7118       char *buffer;
7119       U32 recsize;
7120 #ifdef VMS
7121       int fd;
7122 #endif
7123
7124       /* Grab the size of the record we're getting */
7125       recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
7126       buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
7127       /* Go yank in */
7128 #ifdef VMS
7129       /* VMS wants read instead of fread, because fread doesn't respect */
7130       /* RMS record boundaries. This is not necessarily a good thing to be */
7131       /* doing, but we've got no other real choice - except avoid stdio
7132          as implementation - perhaps write a :vms layer ?
7133        */
7134       fd = PerlIO_fileno(fp);
7135       if (fd == -1) { /* in-memory file from PerlIO::Scalar */
7136           bytesread = PerlIO_read(fp, buffer, recsize);
7137       }
7138       else {
7139           bytesread = PerlLIO_read(fd, buffer, recsize);
7140       }
7141 #else
7142       bytesread = PerlIO_read(fp, buffer, recsize);
7143 #endif
7144       if (bytesread < 0)
7145           bytesread = 0;
7146       SvCUR_set(sv, bytesread + append);
7147       buffer[bytesread] = '\0';
7148       goto return_string_or_null;
7149     }
7150     else if (RsPARA(PL_rs)) {
7151         rsptr = "\n\n";
7152         rslen = 2;
7153         rspara = 1;
7154     }
7155     else {
7156         /* Get $/ i.e. PL_rs into same encoding as stream wants */
7157         if (PerlIO_isutf8(fp)) {
7158             rsptr = SvPVutf8(PL_rs, rslen);
7159         }
7160         else {
7161             if (SvUTF8(PL_rs)) {
7162                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
7163                     Perl_croak(aTHX_ "Wide character in $/");
7164                 }
7165             }
7166             rsptr = SvPV_const(PL_rs, rslen);
7167         }
7168     }
7169
7170     rslast = rslen ? rsptr[rslen - 1] : '\0';
7171
7172     if (rspara) {               /* have to do this both before and after */
7173         do {                    /* to make sure file boundaries work right */
7174             if (PerlIO_eof(fp))
7175                 return 0;
7176             i = PerlIO_getc(fp);
7177             if (i != '\n') {
7178                 if (i == -1)
7179                     return 0;
7180                 PerlIO_ungetc(fp,i);
7181                 break;
7182             }
7183         } while (i != EOF);
7184     }
7185
7186     /* See if we know enough about I/O mechanism to cheat it ! */
7187
7188     /* This used to be #ifdef test - it is made run-time test for ease
7189        of abstracting out stdio interface. One call should be cheap
7190        enough here - and may even be a macro allowing compile
7191        time optimization.
7192      */
7193
7194     if (PerlIO_fast_gets(fp)) {
7195
7196     /*
7197      * We're going to steal some values from the stdio struct
7198      * and put EVERYTHING in the innermost loop into registers.
7199      */
7200     register STDCHAR *ptr;
7201     STRLEN bpx;
7202     I32 shortbuffered;
7203
7204 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7205     /* An ungetc()d char is handled separately from the regular
7206      * buffer, so we getc() it back out and stuff it in the buffer.
7207      */
7208     i = PerlIO_getc(fp);
7209     if (i == EOF) return 0;
7210     *(--((*fp)->_ptr)) = (unsigned char) i;
7211     (*fp)->_cnt++;
7212 #endif
7213
7214     /* Here is some breathtakingly efficient cheating */
7215
7216     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7217     /* make sure we have the room */
7218     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7219         /* Not room for all of it
7220            if we are looking for a separator and room for some
7221          */
7222         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7223             /* just process what we have room for */
7224             shortbuffered = cnt - SvLEN(sv) + append + 1;
7225             cnt -= shortbuffered;
7226         }
7227         else {
7228             shortbuffered = 0;
7229             /* remember that cnt can be negative */
7230             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7231         }
7232     }
7233     else
7234         shortbuffered = 0;
7235     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
7236     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7237     DEBUG_P(PerlIO_printf(Perl_debug_log,
7238         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7239     DEBUG_P(PerlIO_printf(Perl_debug_log,
7240         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7241                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7242                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7243     for (;;) {
7244       screamer:
7245         if (cnt > 0) {
7246             if (rslen) {
7247                 while (cnt > 0) {                    /* this     |  eat */
7248                     cnt--;
7249                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7250                         goto thats_all_folks;        /* screams  |  sed :-) */
7251                 }
7252             }
7253             else {
7254                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7255                 bp += cnt;                           /* screams  |  dust */
7256                 ptr += cnt;                          /* louder   |  sed :-) */
7257                 cnt = 0;
7258             }
7259         }
7260         
7261         if (shortbuffered) {            /* oh well, must extend */
7262             cnt = shortbuffered;
7263             shortbuffered = 0;
7264             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
7265             SvCUR_set(sv, bpx);
7266             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7267             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
7268             continue;
7269         }
7270
7271         DEBUG_P(PerlIO_printf(Perl_debug_log,
7272                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7273                               PTR2UV(ptr),(long)cnt));
7274         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7275 #if 0
7276         DEBUG_P(PerlIO_printf(Perl_debug_log,
7277             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7278             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7279             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7280 #endif
7281         /* This used to call 'filbuf' in stdio form, but as that behaves like
7282            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7283            another abstraction.  */
7284         i   = PerlIO_getc(fp);          /* get more characters */
7285 #if 0
7286         DEBUG_P(PerlIO_printf(Perl_debug_log,
7287             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7288             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7289             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7290 #endif
7291         cnt = PerlIO_get_cnt(fp);
7292         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7293         DEBUG_P(PerlIO_printf(Perl_debug_log,
7294             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7295
7296         if (i == EOF)                   /* all done for ever? */
7297             goto thats_really_all_folks;
7298
7299         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
7300         SvCUR_set(sv, bpx);
7301         SvGROW(sv, bpx + cnt + 2);
7302         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
7303
7304         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7305
7306         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7307             goto thats_all_folks;
7308     }
7309
7310 thats_all_folks:
7311     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
7312           memNE((char*)bp - rslen, rsptr, rslen))
7313         goto screamer;                          /* go back to the fray */
7314 thats_really_all_folks:
7315     if (shortbuffered)
7316         cnt += shortbuffered;
7317         DEBUG_P(PerlIO_printf(Perl_debug_log,
7318             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7319     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7320     DEBUG_P(PerlIO_printf(Perl_debug_log,
7321         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7322         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7323         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7324     *bp = '\0';
7325     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
7326     DEBUG_P(PerlIO_printf(Perl_debug_log,
7327         "Screamer: done, len=%ld, string=|%.*s|\n",
7328         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
7329     }
7330    else
7331     {
7332        /*The big, slow, and stupid way. */
7333 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7334         STDCHAR *buf = NULL;
7335         Newx(buf, 8192, STDCHAR);
7336         assert(buf);
7337 #else
7338         STDCHAR buf[8192];
7339 #endif
7340
7341 screamer2:
7342         if (rslen) {
7343             register const STDCHAR * const bpe = buf + sizeof(buf);
7344             bp = buf;
7345             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7346                 ; /* keep reading */
7347             cnt = bp - buf;
7348         }
7349         else {
7350             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7351             /* Accomodate broken VAXC compiler, which applies U8 cast to
7352              * both args of ?: operator, causing EOF to change into 255
7353              */
7354             if (cnt > 0)
7355                  i = (U8)buf[cnt - 1];
7356             else
7357                  i = EOF;
7358         }
7359
7360         if (cnt < 0)
7361             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7362         if (append)
7363              sv_catpvn(sv, (char *) buf, cnt);
7364         else
7365              sv_setpvn(sv, (char *) buf, cnt);
7366
7367         if (i != EOF &&                 /* joy */
7368             (!rslen ||
7369              SvCUR(sv) < rslen ||
7370              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7371         {
7372             append = -1;
7373             /*
7374              * If we're reading from a TTY and we get a short read,
7375              * indicating that the user hit his EOF character, we need
7376              * to notice it now, because if we try to read from the TTY
7377              * again, the EOF condition will disappear.
7378              *
7379              * The comparison of cnt to sizeof(buf) is an optimization
7380              * that prevents unnecessary calls to feof().
7381              *
7382              * - jik 9/25/96
7383              */
7384             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
7385                 goto screamer2;
7386         }
7387
7388 #ifdef USE_HEAP_INSTEAD_OF_STACK
7389         Safefree(buf);
7390 #endif
7391     }
7392
7393     if (rspara) {               /* have to do this both before and after */
7394         while (i != EOF) {      /* to make sure file boundaries work right */
7395             i = PerlIO_getc(fp);
7396             if (i != '\n') {
7397                 PerlIO_ungetc(fp,i);
7398                 break;
7399             }
7400         }
7401     }
7402
7403 return_string_or_null:
7404     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7405 }
7406
7407 /*
7408 =for apidoc sv_inc
7409
7410 Auto-increment of the value in the SV, doing string to numeric conversion
7411 if necessary. Handles 'get' magic and operator overloading.
7412
7413 =cut
7414 */
7415
7416 void
7417 Perl_sv_inc(pTHX_ register SV *const sv)
7418 {
7419     if (!sv)
7420         return;
7421     SvGETMAGIC(sv);
7422     sv_inc_nomg(sv);
7423 }
7424
7425 /*
7426 =for apidoc sv_inc_nomg
7427
7428 Auto-increment of the value in the SV, doing string to numeric conversion
7429 if necessary. Handles operator overloading. Skips handling 'get' magic.
7430
7431 =cut
7432 */
7433
7434 void
7435 Perl_sv_inc_nomg(pTHX_ register SV *const sv)
7436 {
7437     dVAR;
7438     register char *d;
7439     int flags;
7440
7441     if (!sv)
7442         return;
7443     if (SvTHINKFIRST(sv)) {
7444         if (SvIsCOW(sv))
7445             sv_force_normal_flags(sv, 0);
7446         if (SvREADONLY(sv)) {
7447             if (IN_PERL_RUNTIME)
7448                 Perl_croak_no_modify(aTHX);
7449         }
7450         if (SvROK(sv)) {
7451             IV i;
7452             if (SvAMAGIC(sv) && AMG_CALLun(sv,inc))
7453                 return;
7454             i = PTR2IV(SvRV(sv));
7455             sv_unref(sv);
7456             sv_setiv(sv, i);
7457         }
7458     }
7459     flags = SvFLAGS(sv);
7460     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7461         /* It's (privately or publicly) a float, but not tested as an
7462            integer, so test it to see. */
7463         (void) SvIV(sv);
7464         flags = SvFLAGS(sv);
7465     }
7466     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7467         /* It's publicly an integer, or privately an integer-not-float */
7468 #ifdef PERL_PRESERVE_IVUV
7469       oops_its_int:
7470 #endif
7471         if (SvIsUV(sv)) {
7472             if (SvUVX(sv) == UV_MAX)
7473                 sv_setnv(sv, UV_MAX_P1);
7474             else
7475                 (void)SvIOK_only_UV(sv);
7476                 SvUV_set(sv, SvUVX(sv) + 1);
7477         } else {
7478             if (SvIVX(sv) == IV_MAX)
7479                 sv_setuv(sv, (UV)IV_MAX + 1);
7480             else {
7481                 (void)SvIOK_only(sv);
7482                 SvIV_set(sv, SvIVX(sv) + 1);
7483             }   
7484         }
7485         return;
7486     }
7487     if (flags & SVp_NOK) {
7488         const NV was = SvNVX(sv);
7489         if (NV_OVERFLOWS_INTEGERS_AT &&
7490             was >= NV_OVERFLOWS_INTEGERS_AT) {
7491             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
7492                            "Lost precision when incrementing %" NVff " by 1",
7493                            was);
7494         }
7495         (void)SvNOK_only(sv);
7496         SvNV_set(sv, was + 1.0);
7497         return;
7498     }
7499
7500     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
7501         if ((flags & SVTYPEMASK) < SVt_PVIV)
7502             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
7503         (void)SvIOK_only(sv);
7504         SvIV_set(sv, 1);
7505         return;
7506     }
7507     d = SvPVX(sv);
7508     while (isALPHA(*d)) d++;
7509     while (isDIGIT(*d)) d++;
7510     if (d < SvEND(sv)) {
7511 #ifdef PERL_PRESERVE_IVUV
7512         /* Got to punt this as an integer if needs be, but we don't issue
7513            warnings. Probably ought to make the sv_iv_please() that does
7514            the conversion if possible, and silently.  */
7515         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7516         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7517             /* Need to try really hard to see if it's an integer.
7518                9.22337203685478e+18 is an integer.
7519                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7520                so $a="9.22337203685478e+18"; $a+0; $a++
7521                needs to be the same as $a="9.22337203685478e+18"; $a++
7522                or we go insane. */
7523         
7524             (void) sv_2iv(sv);
7525             if (SvIOK(sv))
7526                 goto oops_its_int;
7527
7528             /* sv_2iv *should* have made this an NV */
7529             if (flags & SVp_NOK) {
7530                 (void)SvNOK_only(sv);
7531                 SvNV_set(sv, SvNVX(sv) + 1.0);
7532                 return;
7533             }
7534             /* I don't think we can get here. Maybe I should assert this
7535                And if we do get here I suspect that sv_setnv will croak. NWC
7536                Fall through. */
7537 #if defined(USE_LONG_DOUBLE)
7538             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",
7539                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7540 #else
7541             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7542                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7543 #endif
7544         }
7545 #endif /* PERL_PRESERVE_IVUV */
7546         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
7547         return;
7548     }
7549     d--;
7550     while (d >= SvPVX_const(sv)) {
7551         if (isDIGIT(*d)) {
7552             if (++*d <= '9')
7553                 return;
7554             *(d--) = '0';
7555         }
7556         else {
7557 #ifdef EBCDIC
7558             /* MKS: The original code here died if letters weren't consecutive.
7559              * at least it didn't have to worry about non-C locales.  The
7560              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
7561              * arranged in order (although not consecutively) and that only
7562              * [A-Za-z] are accepted by isALPHA in the C locale.
7563              */
7564             if (*d != 'z' && *d != 'Z') {
7565                 do { ++*d; } while (!isALPHA(*d));
7566                 return;
7567             }
7568             *(d--) -= 'z' - 'a';
7569 #else
7570             ++*d;
7571             if (isALPHA(*d))
7572                 return;
7573             *(d--) -= 'z' - 'a' + 1;
7574 #endif
7575         }
7576     }
7577     /* oh,oh, the number grew */
7578     SvGROW(sv, SvCUR(sv) + 2);
7579     SvCUR_set(sv, SvCUR(sv) + 1);
7580     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
7581         *d = d[-1];
7582     if (isDIGIT(d[1]))
7583         *d = '1';
7584     else
7585         *d = d[1];
7586 }
7587
7588 /*
7589 =for apidoc sv_dec
7590
7591 Auto-decrement of the value in the SV, doing string to numeric conversion
7592 if necessary. Handles 'get' magic and operator overloading.
7593
7594 =cut
7595 */
7596
7597 void
7598 Perl_sv_dec(pTHX_ register SV *const sv)
7599 {
7600     dVAR;
7601     if (!sv)
7602         return;
7603     SvGETMAGIC(sv);
7604     sv_dec_nomg(sv);
7605 }
7606
7607 /*
7608 =for apidoc sv_dec_nomg
7609
7610 Auto-decrement of the value in the SV, doing string to numeric conversion
7611 if necessary. Handles operator overloading. Skips handling 'get' magic.
7612
7613 =cut
7614 */
7615
7616 void
7617 Perl_sv_dec_nomg(pTHX_ register SV *const sv)
7618 {
7619     dVAR;
7620     int flags;
7621
7622     if (!sv)
7623         return;
7624     if (SvTHINKFIRST(sv)) {
7625         if (SvIsCOW(sv))
7626             sv_force_normal_flags(sv, 0);
7627         if (SvREADONLY(sv)) {
7628             if (IN_PERL_RUNTIME)
7629                 Perl_croak_no_modify(aTHX);
7630         }
7631         if (SvROK(sv)) {
7632             IV i;
7633             if (SvAMAGIC(sv) && AMG_CALLun(sv,dec))
7634                 return;
7635             i = PTR2IV(SvRV(sv));
7636             sv_unref(sv);
7637             sv_setiv(sv, i);
7638         }
7639     }
7640     /* Unlike sv_inc we don't have to worry about string-never-numbers
7641        and keeping them magic. But we mustn't warn on punting */
7642     flags = SvFLAGS(sv);
7643     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7644         /* It's publicly an integer, or privately an integer-not-float */
7645 #ifdef PERL_PRESERVE_IVUV
7646       oops_its_int:
7647 #endif
7648         if (SvIsUV(sv)) {
7649             if (SvUVX(sv) == 0) {
7650                 (void)SvIOK_only(sv);
7651                 SvIV_set(sv, -1);
7652             }
7653             else {
7654                 (void)SvIOK_only_UV(sv);
7655                 SvUV_set(sv, SvUVX(sv) - 1);
7656             }   
7657         } else {
7658             if (SvIVX(sv) == IV_MIN) {
7659                 sv_setnv(sv, (NV)IV_MIN);
7660                 goto oops_its_num;
7661             }
7662             else {
7663                 (void)SvIOK_only(sv);
7664                 SvIV_set(sv, SvIVX(sv) - 1);
7665             }   
7666         }
7667         return;
7668     }
7669     if (flags & SVp_NOK) {
7670     oops_its_num:
7671         {
7672             const NV was = SvNVX(sv);
7673             if (NV_OVERFLOWS_INTEGERS_AT &&
7674                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
7675                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
7676                                "Lost precision when decrementing %" NVff " by 1",
7677                                was);
7678             }
7679             (void)SvNOK_only(sv);
7680             SvNV_set(sv, was - 1.0);
7681             return;
7682         }
7683     }
7684     if (!(flags & SVp_POK)) {
7685         if ((flags & SVTYPEMASK) < SVt_PVIV)
7686             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
7687         SvIV_set(sv, -1);
7688         (void)SvIOK_only(sv);
7689         return;
7690     }
7691 #ifdef PERL_PRESERVE_IVUV
7692     {
7693         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7694         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7695             /* Need to try really hard to see if it's an integer.
7696                9.22337203685478e+18 is an integer.
7697                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7698                so $a="9.22337203685478e+18"; $a+0; $a--
7699                needs to be the same as $a="9.22337203685478e+18"; $a--
7700                or we go insane. */
7701         
7702             (void) sv_2iv(sv);
7703             if (SvIOK(sv))
7704                 goto oops_its_int;
7705
7706             /* sv_2iv *should* have made this an NV */
7707             if (flags & SVp_NOK) {
7708                 (void)SvNOK_only(sv);
7709                 SvNV_set(sv, SvNVX(sv) - 1.0);
7710                 return;
7711             }
7712             /* I don't think we can get here. Maybe I should assert this
7713                And if we do get here I suspect that sv_setnv will croak. NWC
7714                Fall through. */
7715 #if defined(USE_LONG_DOUBLE)
7716             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",
7717                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7718 #else
7719             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7720                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7721 #endif
7722         }
7723     }
7724 #endif /* PERL_PRESERVE_IVUV */
7725     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
7726 }
7727
7728 /* this define is used to eliminate a chunk of duplicated but shared logic
7729  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
7730  * used anywhere but here - yves
7731  */
7732 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
7733     STMT_START {      \
7734         EXTEND_MORTAL(1); \
7735         PL_tmps_stack[++PL_tmps_ix] = (AnSv); \
7736     } STMT_END
7737
7738 /*
7739 =for apidoc sv_mortalcopy
7740
7741 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
7742 The new SV is marked as mortal. It will be destroyed "soon", either by an
7743 explicit call to FREETMPS, or by an implicit call at places such as
7744 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
7745
7746 =cut
7747 */
7748
7749 /* Make a string that will exist for the duration of the expression
7750  * evaluation.  Actually, it may have to last longer than that, but
7751  * hopefully we won't free it until it has been assigned to a
7752  * permanent location. */
7753
7754 SV *
7755 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
7756 {
7757     dVAR;
7758     register SV *sv;
7759
7760     new_SV(sv);
7761     sv_setsv(sv,oldstr);
7762     PUSH_EXTEND_MORTAL__SV_C(sv);
7763     SvTEMP_on(sv);
7764     return sv;
7765 }
7766
7767 /*
7768 =for apidoc sv_newmortal
7769
7770 Creates a new null SV which is mortal.  The reference count of the SV is
7771 set to 1. It will be destroyed "soon", either by an explicit call to
7772 FREETMPS, or by an implicit call at places such as statement boundaries.
7773 See also C<sv_mortalcopy> and C<sv_2mortal>.
7774
7775 =cut
7776 */
7777
7778 SV *
7779 Perl_sv_newmortal(pTHX)
7780 {
7781     dVAR;
7782     register SV *sv;
7783
7784     new_SV(sv);
7785     SvFLAGS(sv) = SVs_TEMP;
7786     PUSH_EXTEND_MORTAL__SV_C(sv);
7787     return sv;
7788 }
7789
7790
7791 /*
7792 =for apidoc newSVpvn_flags
7793
7794 Creates a new SV and copies a string into it.  The reference count for the
7795 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7796 string.  You are responsible for ensuring that the source string is at least
7797 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7798 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
7799 If C<SVs_TEMP> is set, then C<sv2mortal()> is called on the result before
7800 returning. If C<SVf_UTF8> is set, C<s> is considered to be in UTF-8 and the
7801 C<SVf_UTF8> flag will be set on the new SV.
7802 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
7803
7804     #define newSVpvn_utf8(s, len, u)                    \
7805         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
7806
7807 =cut
7808 */
7809
7810 SV *
7811 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
7812 {
7813     dVAR;
7814     register SV *sv;
7815
7816     /* All the flags we don't support must be zero.
7817        And we're new code so I'm going to assert this from the start.  */
7818     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
7819     new_SV(sv);
7820     sv_setpvn(sv,s,len);
7821
7822     /* This code used to a sv_2mortal(), however we now unroll the call to sv_2mortal()
7823      * and do what it does outselves here.
7824      * Since we have asserted that flags can only have the SVf_UTF8 and/or SVs_TEMP flags
7825      * set above we can use it to enable the sv flags directly (bypassing SvTEMP_on), which
7826      * in turn means we dont need to mask out the SVf_UTF8 flag below, which means that we
7827      * eleminate quite a few steps than it looks - Yves (explaining patch by gfx)
7828      */
7829
7830     SvFLAGS(sv) |= flags;
7831
7832     if(flags & SVs_TEMP){
7833         PUSH_EXTEND_MORTAL__SV_C(sv);
7834     }
7835
7836     return sv;
7837 }
7838
7839 /*
7840 =for apidoc sv_2mortal
7841
7842 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
7843 by an explicit call to FREETMPS, or by an implicit call at places such as
7844 statement boundaries.  SvTEMP() is turned on which means that the SV's
7845 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
7846 and C<sv_mortalcopy>.
7847
7848 =cut
7849 */
7850
7851 SV *
7852 Perl_sv_2mortal(pTHX_ register SV *const sv)
7853 {
7854     dVAR;
7855     if (!sv)
7856         return NULL;
7857     if (SvREADONLY(sv) && SvIMMORTAL(sv))
7858         return sv;
7859     PUSH_EXTEND_MORTAL__SV_C(sv);
7860     SvTEMP_on(sv);
7861     return sv;
7862 }
7863
7864 /*
7865 =for apidoc newSVpv
7866
7867 Creates a new SV and copies a string into it.  The reference count for the
7868 SV is set to 1.  If C<len> is zero, Perl will compute the length using
7869 strlen().  For efficiency, consider using C<newSVpvn> instead.
7870
7871 =cut
7872 */
7873
7874 SV *
7875 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
7876 {
7877     dVAR;
7878     register SV *sv;
7879
7880     new_SV(sv);
7881     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
7882     return sv;
7883 }
7884
7885 /*
7886 =for apidoc newSVpvn
7887
7888 Creates a new SV and copies a string into it.  The reference count for the
7889 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
7890 string.  You are responsible for ensuring that the source string is at least
7891 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
7892
7893 =cut
7894 */
7895
7896 SV *
7897 Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len)
7898 {
7899     dVAR;
7900     register SV *sv;
7901
7902     new_SV(sv);
7903     sv_setpvn(sv,s,len);
7904     return sv;
7905 }
7906
7907 /*
7908 =for apidoc newSVhek
7909
7910 Creates a new SV from the hash key structure.  It will generate scalars that
7911 point to the shared string table where possible. Returns a new (undefined)
7912 SV if the hek is NULL.
7913
7914 =cut
7915 */
7916
7917 SV *
7918 Perl_newSVhek(pTHX_ const HEK *const hek)
7919 {
7920     dVAR;
7921     if (!hek) {
7922         SV *sv;
7923
7924         new_SV(sv);
7925         return sv;
7926     }
7927
7928     if (HEK_LEN(hek) == HEf_SVKEY) {
7929         return newSVsv(*(SV**)HEK_KEY(hek));
7930     } else {
7931         const int flags = HEK_FLAGS(hek);
7932         if (flags & HVhek_WASUTF8) {
7933             /* Trouble :-)
7934                Andreas would like keys he put in as utf8 to come back as utf8
7935             */
7936             STRLEN utf8_len = HEK_LEN(hek);
7937             const U8 *as_utf8 = bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
7938             SV * const sv = newSVpvn ((const char*)as_utf8, utf8_len);
7939
7940             SvUTF8_on (sv);
7941             Safefree (as_utf8); /* bytes_to_utf8() allocates a new string */
7942             return sv;
7943         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
7944             /* We don't have a pointer to the hv, so we have to replicate the
7945                flag into every HEK. This hv is using custom a hasing
7946                algorithm. Hence we can't return a shared string scalar, as
7947                that would contain the (wrong) hash value, and might get passed
7948                into an hv routine with a regular hash.
7949                Similarly, a hash that isn't using shared hash keys has to have
7950                the flag in every key so that we know not to try to call
7951                share_hek_kek on it.  */
7952
7953             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
7954             if (HEK_UTF8(hek))
7955                 SvUTF8_on (sv);
7956             return sv;
7957         }
7958         /* This will be overwhelminly the most common case.  */
7959         {
7960             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
7961                more efficient than sharepvn().  */
7962             SV *sv;
7963
7964             new_SV(sv);
7965             sv_upgrade(sv, SVt_PV);
7966             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
7967             SvCUR_set(sv, HEK_LEN(hek));
7968             SvLEN_set(sv, 0);
7969             SvREADONLY_on(sv);
7970             SvFAKE_on(sv);
7971             SvPOK_on(sv);
7972             if (HEK_UTF8(hek))
7973                 SvUTF8_on(sv);
7974             return sv;
7975         }
7976     }
7977 }
7978
7979 /*
7980 =for apidoc newSVpvn_share
7981
7982 Creates a new SV with its SvPVX_const pointing to a shared string in the string
7983 table. If the string does not already exist in the table, it is created
7984 first.  Turns on READONLY and FAKE. If the C<hash> parameter is non-zero, that
7985 value is used; otherwise the hash is computed. The string's hash can be later
7986 be retrieved from the SV with the C<SvSHARED_HASH()> macro. The idea here is
7987 that as the string table is used for shared hash keys these strings will have
7988 SvPVX_const == HeKEY and hash lookup will avoid string compare.
7989
7990 =cut
7991 */
7992
7993 SV *
7994 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
7995 {
7996     dVAR;
7997     register SV *sv;
7998     bool is_utf8 = FALSE;
7999     const char *const orig_src = src;
8000
8001     if (len < 0) {
8002         STRLEN tmplen = -len;
8003         is_utf8 = TRUE;
8004         /* See the note in hv.c:hv_fetch() --jhi */
8005         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
8006         len = tmplen;
8007     }
8008     if (!hash)
8009         PERL_HASH(hash, src, len);
8010     new_SV(sv);
8011     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
8012        changes here, update it there too.  */
8013     sv_upgrade(sv, SVt_PV);
8014     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
8015     SvCUR_set(sv, len);
8016     SvLEN_set(sv, 0);
8017     SvREADONLY_on(sv);
8018     SvFAKE_on(sv);
8019     SvPOK_on(sv);
8020     if (is_utf8)
8021         SvUTF8_on(sv);
8022     if (src != orig_src)
8023         Safefree(src);
8024     return sv;
8025 }
8026
8027
8028 #if defined(PERL_IMPLICIT_CONTEXT)
8029
8030 /* pTHX_ magic can't cope with varargs, so this is a no-context
8031  * version of the main function, (which may itself be aliased to us).
8032  * Don't access this version directly.
8033  */
8034
8035 SV *
8036 Perl_newSVpvf_nocontext(const char *const pat, ...)
8037 {
8038     dTHX;
8039     register SV *sv;
8040     va_list args;
8041
8042     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
8043
8044     va_start(args, pat);
8045     sv = vnewSVpvf(pat, &args);
8046     va_end(args);
8047     return sv;
8048 }
8049 #endif
8050
8051 /*
8052 =for apidoc newSVpvf
8053
8054 Creates a new SV and initializes it with the string formatted like
8055 C<sprintf>.
8056
8057 =cut
8058 */
8059
8060 SV *
8061 Perl_newSVpvf(pTHX_ const char *const pat, ...)
8062 {
8063     register SV *sv;
8064     va_list args;
8065
8066     PERL_ARGS_ASSERT_NEWSVPVF;
8067
8068     va_start(args, pat);
8069     sv = vnewSVpvf(pat, &args);
8070     va_end(args);
8071     return sv;
8072 }
8073
8074 /* backend for newSVpvf() and newSVpvf_nocontext() */
8075
8076 SV *
8077 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
8078 {
8079     dVAR;
8080     register SV *sv;
8081
8082     PERL_ARGS_ASSERT_VNEWSVPVF;
8083
8084     new_SV(sv);
8085     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8086     return sv;
8087 }
8088
8089 /*
8090 =for apidoc newSVnv
8091
8092 Creates a new SV and copies a floating point value into it.
8093 The reference count for the SV is set to 1.
8094
8095 =cut
8096 */
8097
8098 SV *
8099 Perl_newSVnv(pTHX_ const NV n)
8100 {
8101     dVAR;
8102     register SV *sv;
8103
8104     new_SV(sv);
8105     sv_setnv(sv,n);
8106     return sv;
8107 }
8108
8109 /*
8110 =for apidoc newSViv
8111
8112 Creates a new SV and copies an integer into it.  The reference count for the
8113 SV is set to 1.
8114
8115 =cut
8116 */
8117
8118 SV *
8119 Perl_newSViv(pTHX_ const IV i)
8120 {
8121     dVAR;
8122     register SV *sv;
8123
8124     new_SV(sv);
8125     sv_setiv(sv,i);
8126     return sv;
8127 }
8128
8129 /*
8130 =for apidoc newSVuv
8131
8132 Creates a new SV and copies an unsigned integer into it.
8133 The reference count for the SV is set to 1.
8134
8135 =cut
8136 */
8137
8138 SV *
8139 Perl_newSVuv(pTHX_ const UV u)
8140 {
8141     dVAR;
8142     register SV *sv;
8143
8144     new_SV(sv);
8145     sv_setuv(sv,u);
8146     return sv;
8147 }
8148
8149 /*
8150 =for apidoc newSV_type
8151
8152 Creates a new SV, of the type specified.  The reference count for the new SV
8153 is set to 1.
8154
8155 =cut
8156 */
8157
8158 SV *
8159 Perl_newSV_type(pTHX_ const svtype type)
8160 {
8161     register SV *sv;
8162
8163     new_SV(sv);
8164     sv_upgrade(sv, type);
8165     return sv;
8166 }
8167
8168 /*
8169 =for apidoc newRV_noinc
8170
8171 Creates an RV wrapper for an SV.  The reference count for the original
8172 SV is B<not> incremented.
8173
8174 =cut
8175 */
8176
8177 SV *
8178 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
8179 {
8180     dVAR;
8181     register SV *sv = newSV_type(SVt_IV);
8182
8183     PERL_ARGS_ASSERT_NEWRV_NOINC;
8184
8185     SvTEMP_off(tmpRef);
8186     SvRV_set(sv, tmpRef);
8187     SvROK_on(sv);
8188     return sv;
8189 }
8190
8191 /* newRV_inc is the official function name to use now.
8192  * newRV_inc is in fact #defined to newRV in sv.h
8193  */
8194
8195 SV *
8196 Perl_newRV(pTHX_ SV *const sv)
8197 {
8198     dVAR;
8199
8200     PERL_ARGS_ASSERT_NEWRV;
8201
8202     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
8203 }
8204
8205 /*
8206 =for apidoc newSVsv
8207
8208 Creates a new SV which is an exact duplicate of the original SV.
8209 (Uses C<sv_setsv>).
8210
8211 =cut
8212 */
8213
8214 SV *
8215 Perl_newSVsv(pTHX_ register SV *const old)
8216 {
8217     dVAR;
8218     register SV *sv;
8219
8220     if (!old)
8221         return NULL;
8222     if (SvTYPE(old) == SVTYPEMASK) {
8223         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
8224         return NULL;
8225     }
8226     new_SV(sv);
8227     /* SV_GMAGIC is the default for sv_setv()
8228        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
8229        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
8230     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
8231     return sv;
8232 }
8233
8234 /*
8235 =for apidoc sv_reset
8236
8237 Underlying implementation for the C<reset> Perl function.
8238 Note that the perl-level function is vaguely deprecated.
8239
8240 =cut
8241 */
8242
8243 void
8244 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
8245 {
8246     dVAR;
8247     char todo[PERL_UCHAR_MAX+1];
8248
8249     PERL_ARGS_ASSERT_SV_RESET;
8250
8251     if (!stash)
8252         return;
8253
8254     if (!*s) {          /* reset ?? searches */
8255         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
8256         if (mg) {
8257             const U32 count = mg->mg_len / sizeof(PMOP**);
8258             PMOP **pmp = (PMOP**) mg->mg_ptr;
8259             PMOP *const *const end = pmp + count;
8260
8261             while (pmp < end) {
8262 #ifdef USE_ITHREADS
8263                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
8264 #else
8265                 (*pmp)->op_pmflags &= ~PMf_USED;
8266 #endif
8267                 ++pmp;
8268             }
8269         }
8270         return;
8271     }
8272
8273     /* reset variables */
8274
8275     if (!HvARRAY(stash))
8276         return;
8277
8278     Zero(todo, 256, char);
8279     while (*s) {
8280         I32 max;
8281         I32 i = (unsigned char)*s;
8282         if (s[1] == '-') {
8283             s += 2;
8284         }
8285         max = (unsigned char)*s++;
8286         for ( ; i <= max; i++) {
8287             todo[i] = 1;
8288         }
8289         for (i = 0; i <= (I32) HvMAX(stash); i++) {
8290             HE *entry;
8291             for (entry = HvARRAY(stash)[i];
8292                  entry;
8293                  entry = HeNEXT(entry))
8294             {
8295                 register GV *gv;
8296                 register SV *sv;
8297
8298                 if (!todo[(U8)*HeKEY(entry)])
8299                     continue;
8300                 gv = MUTABLE_GV(HeVAL(entry));
8301                 sv = GvSV(gv);
8302                 if (sv) {
8303                     if (SvTHINKFIRST(sv)) {
8304                         if (!SvREADONLY(sv) && SvROK(sv))
8305                             sv_unref(sv);
8306                         /* XXX Is this continue a bug? Why should THINKFIRST
8307                            exempt us from resetting arrays and hashes?  */
8308                         continue;
8309                     }
8310                     SvOK_off(sv);
8311                     if (SvTYPE(sv) >= SVt_PV) {
8312                         SvCUR_set(sv, 0);
8313                         if (SvPVX_const(sv) != NULL)
8314                             *SvPVX(sv) = '\0';
8315                         SvTAINT(sv);
8316                     }
8317                 }
8318                 if (GvAV(gv)) {
8319                     av_clear(GvAV(gv));
8320                 }
8321                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
8322 #if defined(VMS)
8323                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
8324 #else /* ! VMS */
8325                     hv_clear(GvHV(gv));
8326 #  if defined(USE_ENVIRON_ARRAY)
8327                     if (gv == PL_envgv)
8328                         my_clearenv();
8329 #  endif /* USE_ENVIRON_ARRAY */
8330 #endif /* VMS */
8331                 }
8332             }
8333         }
8334     }
8335 }
8336
8337 /*
8338 =for apidoc sv_2io
8339
8340 Using various gambits, try to get an IO from an SV: the IO slot if its a
8341 GV; or the recursive result if we're an RV; or the IO slot of the symbol
8342 named after the PV if we're a string.
8343
8344 =cut
8345 */
8346
8347 IO*
8348 Perl_sv_2io(pTHX_ SV *const sv)
8349 {
8350     IO* io;
8351     GV* gv;
8352
8353     PERL_ARGS_ASSERT_SV_2IO;
8354
8355     switch (SvTYPE(sv)) {
8356     case SVt_PVIO:
8357         io = MUTABLE_IO(sv);
8358         break;
8359     case SVt_PVGV:
8360         if (isGV_with_GP(sv)) {
8361             gv = MUTABLE_GV(sv);
8362             io = GvIO(gv);
8363             if (!io)
8364                 Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
8365             break;
8366         }
8367         /* FALL THROUGH */
8368     default:
8369         if (!SvOK(sv))
8370             Perl_croak(aTHX_ PL_no_usym, "filehandle");
8371         if (SvROK(sv))
8372             return sv_2io(SvRV(sv));
8373         gv = gv_fetchsv(sv, 0, SVt_PVIO);
8374         if (gv)
8375             io = GvIO(gv);
8376         else
8377             io = 0;
8378         if (!io)
8379             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(sv));
8380         break;
8381     }
8382     return io;
8383 }
8384
8385 /*
8386 =for apidoc sv_2cv
8387
8388 Using various gambits, try to get a CV from an SV; in addition, try if
8389 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
8390 The flags in C<lref> are passed to gv_fetchsv.
8391
8392 =cut
8393 */
8394
8395 CV *
8396 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
8397 {
8398     dVAR;
8399     GV *gv = NULL;
8400     CV *cv = NULL;
8401
8402     PERL_ARGS_ASSERT_SV_2CV;
8403
8404     if (!sv) {
8405         *st = NULL;
8406         *gvp = NULL;
8407         return NULL;
8408     }
8409     switch (SvTYPE(sv)) {
8410     case SVt_PVCV:
8411         *st = CvSTASH(sv);
8412         *gvp = NULL;
8413         return MUTABLE_CV(sv);
8414     case SVt_PVHV:
8415     case SVt_PVAV:
8416         *st = NULL;
8417         *gvp = NULL;
8418         return NULL;
8419     case SVt_PVGV:
8420         if (isGV_with_GP(sv)) {
8421             gv = MUTABLE_GV(sv);
8422             *gvp = gv;
8423             *st = GvESTASH(gv);
8424             goto fix_gv;
8425         }
8426         /* FALL THROUGH */
8427
8428     default:
8429         if (SvROK(sv)) {
8430             SV * const *sp = &sv;       /* Used in tryAMAGICunDEREF macro. */
8431             SvGETMAGIC(sv);
8432             tryAMAGICunDEREF(to_cv);
8433
8434             sv = SvRV(sv);
8435             if (SvTYPE(sv) == SVt_PVCV) {
8436                 cv = MUTABLE_CV(sv);
8437                 *gvp = NULL;
8438                 *st = CvSTASH(cv);
8439                 return cv;
8440             }
8441             else if(isGV_with_GP(sv))
8442                 gv = MUTABLE_GV(sv);
8443             else
8444                 Perl_croak(aTHX_ "Not a subroutine reference");
8445         }
8446         else if (isGV_with_GP(sv)) {
8447             SvGETMAGIC(sv);
8448             gv = MUTABLE_GV(sv);
8449         }
8450         else
8451             gv = gv_fetchsv(sv, lref, SVt_PVCV); /* Calls get magic */
8452         *gvp = gv;
8453         if (!gv) {
8454             *st = NULL;
8455             return NULL;
8456         }
8457         /* Some flags to gv_fetchsv mean don't really create the GV  */
8458         if (!isGV_with_GP(gv)) {
8459             *st = NULL;
8460             return NULL;
8461         }
8462         *st = GvESTASH(gv);
8463     fix_gv:
8464         if (lref && !GvCVu(gv)) {
8465             SV *tmpsv;
8466             ENTER;
8467             tmpsv = newSV(0);
8468             gv_efullname3(tmpsv, gv, NULL);
8469             /* XXX this is probably not what they think they're getting.
8470              * It has the same effect as "sub name;", i.e. just a forward
8471              * declaration! */
8472             newSUB(start_subparse(FALSE, 0),
8473                    newSVOP(OP_CONST, 0, tmpsv),
8474                    NULL, NULL);
8475             LEAVE;
8476             if (!GvCVu(gv))
8477                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
8478                            SVfARG(SvOK(sv) ? sv : &PL_sv_no));
8479         }
8480         return GvCVu(gv);
8481     }
8482 }
8483
8484 /*
8485 =for apidoc sv_true
8486
8487 Returns true if the SV has a true value by Perl's rules.
8488 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
8489 instead use an in-line version.
8490
8491 =cut
8492 */
8493
8494 I32
8495 Perl_sv_true(pTHX_ register SV *const sv)
8496 {
8497     if (!sv)
8498         return 0;
8499     if (SvPOK(sv)) {
8500         register const XPV* const tXpv = (XPV*)SvANY(sv);
8501         if (tXpv &&
8502                 (tXpv->xpv_cur > 1 ||
8503                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
8504             return 1;
8505         else
8506             return 0;
8507     }
8508     else {
8509         if (SvIOK(sv))
8510             return SvIVX(sv) != 0;
8511         else {
8512             if (SvNOK(sv))
8513                 return SvNVX(sv) != 0.0;
8514             else
8515                 return sv_2bool(sv);
8516         }
8517     }
8518 }
8519
8520 /*
8521 =for apidoc sv_pvn_force
8522
8523 Get a sensible string out of the SV somehow.
8524 A private implementation of the C<SvPV_force> macro for compilers which
8525 can't cope with complex macro expressions. Always use the macro instead.
8526
8527 =for apidoc sv_pvn_force_flags
8528
8529 Get a sensible string out of the SV somehow.
8530 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
8531 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
8532 implemented in terms of this function.
8533 You normally want to use the various wrapper macros instead: see
8534 C<SvPV_force> and C<SvPV_force_nomg>
8535
8536 =cut
8537 */
8538
8539 char *
8540 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
8541 {
8542     dVAR;
8543
8544     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
8545
8546     if (SvTHINKFIRST(sv) && !SvROK(sv))
8547         sv_force_normal_flags(sv, 0);
8548
8549     if (SvPOK(sv)) {
8550         if (lp)
8551             *lp = SvCUR(sv);
8552     }
8553     else {
8554         char *s;
8555         STRLEN len;
8556  
8557         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
8558             const char * const ref = sv_reftype(sv,0);
8559             if (PL_op)
8560                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
8561                            ref, OP_DESC(PL_op));
8562             else
8563                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
8564         }
8565         if ((SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
8566             || isGV_with_GP(sv))
8567             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
8568                 OP_DESC(PL_op));
8569         s = sv_2pv_flags(sv, &len, flags);
8570         if (lp)
8571             *lp = len;
8572
8573         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
8574             if (SvROK(sv))
8575                 sv_unref(sv);
8576             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
8577             SvGROW(sv, len + 1);
8578             Move(s,SvPVX(sv),len,char);
8579             SvCUR_set(sv, len);
8580             SvPVX(sv)[len] = '\0';
8581         }
8582         if (!SvPOK(sv)) {
8583             SvPOK_on(sv);               /* validate pointer */
8584             SvTAINT(sv);
8585             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
8586                                   PTR2UV(sv),SvPVX_const(sv)));
8587         }
8588     }
8589     return SvPVX_mutable(sv);
8590 }
8591
8592 /*
8593 =for apidoc sv_pvbyten_force
8594
8595 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
8596
8597 =cut
8598 */
8599
8600 char *
8601 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
8602 {
8603     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
8604
8605     sv_pvn_force(sv,lp);
8606     sv_utf8_downgrade(sv,0);
8607     *lp = SvCUR(sv);
8608     return SvPVX(sv);
8609 }
8610
8611 /*
8612 =for apidoc sv_pvutf8n_force
8613
8614 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
8615
8616 =cut
8617 */
8618
8619 char *
8620 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
8621 {
8622     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
8623
8624     sv_pvn_force(sv,lp);
8625     sv_utf8_upgrade(sv);
8626     *lp = SvCUR(sv);
8627     return SvPVX(sv);
8628 }
8629
8630 /*
8631 =for apidoc sv_reftype
8632
8633 Returns a string describing what the SV is a reference to.
8634
8635 =cut
8636 */
8637
8638 const char *
8639 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
8640 {
8641     PERL_ARGS_ASSERT_SV_REFTYPE;
8642
8643     /* The fact that I don't need to downcast to char * everywhere, only in ?:
8644        inside return suggests a const propagation bug in g++.  */
8645     if (ob && SvOBJECT(sv)) {
8646         char * const name = HvNAME_get(SvSTASH(sv));
8647         return name ? name : (char *) "__ANON__";
8648     }
8649     else {
8650         switch (SvTYPE(sv)) {
8651         case SVt_NULL:
8652         case SVt_IV:
8653         case SVt_NV:
8654         case SVt_PV:
8655         case SVt_PVIV:
8656         case SVt_PVNV:
8657         case SVt_PVMG:
8658                                 if (SvVOK(sv))
8659                                     return "VSTRING";
8660                                 if (SvROK(sv))
8661                                     return "REF";
8662                                 else
8663                                     return "SCALAR";
8664
8665         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
8666                                 /* tied lvalues should appear to be
8667                                  * scalars for backwards compatitbility */
8668                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
8669                                     ? "SCALAR" : "LVALUE");
8670         case SVt_PVAV:          return "ARRAY";
8671         case SVt_PVHV:          return "HASH";
8672         case SVt_PVCV:          return "CODE";
8673         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
8674                                     ? "GLOB" : "SCALAR");
8675         case SVt_PVFM:          return "FORMAT";
8676         case SVt_PVIO:          return "IO";
8677         case SVt_BIND:          return "BIND";
8678         case SVt_REGEXP:        return "REGEXP"; 
8679         default:                return "UNKNOWN";
8680         }
8681     }
8682 }
8683
8684 /*
8685 =for apidoc sv_isobject
8686
8687 Returns a boolean indicating whether the SV is an RV pointing to a blessed
8688 object.  If the SV is not an RV, or if the object is not blessed, then this
8689 will return false.
8690
8691 =cut
8692 */
8693
8694 int
8695 Perl_sv_isobject(pTHX_ SV *sv)
8696 {
8697     if (!sv)
8698         return 0;
8699     SvGETMAGIC(sv);
8700     if (!SvROK(sv))
8701         return 0;
8702     sv = SvRV(sv);
8703     if (!SvOBJECT(sv))
8704         return 0;
8705     return 1;
8706 }
8707
8708 /*
8709 =for apidoc sv_isa
8710
8711 Returns a boolean indicating whether the SV is blessed into the specified
8712 class.  This does not check for subtypes; use C<sv_derived_from> to verify
8713 an inheritance relationship.
8714
8715 =cut
8716 */
8717
8718 int
8719 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
8720 {
8721     const char *hvname;
8722
8723     PERL_ARGS_ASSERT_SV_ISA;
8724
8725     if (!sv)
8726         return 0;
8727     SvGETMAGIC(sv);
8728     if (!SvROK(sv))
8729         return 0;
8730     sv = SvRV(sv);
8731     if (!SvOBJECT(sv))
8732         return 0;
8733     hvname = HvNAME_get(SvSTASH(sv));
8734     if (!hvname)
8735         return 0;
8736
8737     return strEQ(hvname, name);
8738 }
8739
8740 /*
8741 =for apidoc newSVrv
8742
8743 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
8744 it will be upgraded to one.  If C<classname> is non-null then the new SV will
8745 be blessed in the specified package.  The new SV is returned and its
8746 reference count is 1.
8747
8748 =cut
8749 */
8750
8751 SV*
8752 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
8753 {
8754     dVAR;
8755     SV *sv;
8756
8757     PERL_ARGS_ASSERT_NEWSVRV;
8758
8759     new_SV(sv);
8760
8761     SV_CHECK_THINKFIRST_COW_DROP(rv);
8762     (void)SvAMAGIC_off(rv);
8763
8764     if (SvTYPE(rv) >= SVt_PVMG) {
8765         const U32 refcnt = SvREFCNT(rv);
8766         SvREFCNT(rv) = 0;
8767         sv_clear(rv);
8768         SvFLAGS(rv) = 0;
8769         SvREFCNT(rv) = refcnt;
8770
8771         sv_upgrade(rv, SVt_IV);
8772     } else if (SvROK(rv)) {
8773         SvREFCNT_dec(SvRV(rv));
8774     } else {
8775         prepare_SV_for_RV(rv);
8776     }
8777
8778     SvOK_off(rv);
8779     SvRV_set(rv, sv);
8780     SvROK_on(rv);
8781
8782     if (classname) {
8783         HV* const stash = gv_stashpv(classname, GV_ADD);
8784         (void)sv_bless(rv, stash);
8785     }
8786     return sv;
8787 }
8788
8789 /*
8790 =for apidoc sv_setref_pv
8791
8792 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
8793 argument will be upgraded to an RV.  That RV will be modified to point to
8794 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
8795 into the SV.  The C<classname> argument indicates the package for the
8796 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8797 will have a reference count of 1, and the RV will be returned.
8798
8799 Do not use with other Perl types such as HV, AV, SV, CV, because those
8800 objects will become corrupted by the pointer copy process.
8801
8802 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
8803
8804 =cut
8805 */
8806
8807 SV*
8808 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
8809 {
8810     dVAR;
8811
8812     PERL_ARGS_ASSERT_SV_SETREF_PV;
8813
8814     if (!pv) {
8815         sv_setsv(rv, &PL_sv_undef);
8816         SvSETMAGIC(rv);
8817     }
8818     else
8819         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
8820     return rv;
8821 }
8822
8823 /*
8824 =for apidoc sv_setref_iv
8825
8826 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
8827 argument will be upgraded to an RV.  That RV will be modified to point to
8828 the new SV.  The C<classname> argument indicates the package for the
8829 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8830 will have a reference count of 1, and the RV will be returned.
8831
8832 =cut
8833 */
8834
8835 SV*
8836 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
8837 {
8838     PERL_ARGS_ASSERT_SV_SETREF_IV;
8839
8840     sv_setiv(newSVrv(rv,classname), iv);
8841     return rv;
8842 }
8843
8844 /*
8845 =for apidoc sv_setref_uv
8846
8847 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
8848 argument will be upgraded to an RV.  That RV will be modified to point to
8849 the new SV.  The C<classname> argument indicates the package for the
8850 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8851 will have a reference count of 1, and the RV will be returned.
8852
8853 =cut
8854 */
8855
8856 SV*
8857 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
8858 {
8859     PERL_ARGS_ASSERT_SV_SETREF_UV;
8860
8861     sv_setuv(newSVrv(rv,classname), uv);
8862     return rv;
8863 }
8864
8865 /*
8866 =for apidoc sv_setref_nv
8867
8868 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
8869 argument will be upgraded to an RV.  That RV will be modified to point to
8870 the new SV.  The C<classname> argument indicates the package for the
8871 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
8872 will have a reference count of 1, and the RV will be returned.
8873
8874 =cut
8875 */
8876
8877 SV*
8878 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
8879 {
8880     PERL_ARGS_ASSERT_SV_SETREF_NV;
8881
8882     sv_setnv(newSVrv(rv,classname), nv);
8883     return rv;
8884 }
8885
8886 /*
8887 =for apidoc sv_setref_pvn
8888
8889 Copies a string into a new SV, optionally blessing the SV.  The length of the
8890 string must be specified with C<n>.  The C<rv> argument will be upgraded to
8891 an RV.  That RV will be modified to point to the new SV.  The C<classname>
8892 argument indicates the package for the blessing.  Set C<classname> to
8893 C<NULL> to avoid the blessing.  The new SV will have a reference count
8894 of 1, and the RV will be returned.
8895
8896 Note that C<sv_setref_pv> copies the pointer while this copies the string.
8897
8898 =cut
8899 */
8900
8901 SV*
8902 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
8903                    const char *const pv, const STRLEN n)
8904 {
8905     PERL_ARGS_ASSERT_SV_SETREF_PVN;
8906
8907     sv_setpvn(newSVrv(rv,classname), pv, n);
8908     return rv;
8909 }
8910
8911 /*
8912 =for apidoc sv_bless
8913
8914 Blesses an SV into a specified package.  The SV must be an RV.  The package
8915 must be designated by its stash (see C<gv_stashpv()>).  The reference count
8916 of the SV is unaffected.
8917
8918 =cut
8919 */
8920
8921 SV*
8922 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
8923 {
8924     dVAR;
8925     SV *tmpRef;
8926
8927     PERL_ARGS_ASSERT_SV_BLESS;
8928
8929     if (!SvROK(sv))
8930         Perl_croak(aTHX_ "Can't bless non-reference value");
8931     tmpRef = SvRV(sv);
8932     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
8933         if (SvIsCOW(tmpRef))
8934             sv_force_normal_flags(tmpRef, 0);
8935         if (SvREADONLY(tmpRef))
8936             Perl_croak_no_modify(aTHX);
8937         if (SvOBJECT(tmpRef)) {
8938             if (SvTYPE(tmpRef) != SVt_PVIO)
8939                 --PL_sv_objcount;
8940             SvREFCNT_dec(SvSTASH(tmpRef));
8941         }
8942     }
8943     SvOBJECT_on(tmpRef);
8944     if (SvTYPE(tmpRef) != SVt_PVIO)
8945         ++PL_sv_objcount;
8946     SvUPGRADE(tmpRef, SVt_PVMG);
8947     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
8948
8949     if (Gv_AMG(stash))
8950         SvAMAGIC_on(sv);
8951     else
8952         (void)SvAMAGIC_off(sv);
8953
8954     if(SvSMAGICAL(tmpRef))
8955         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
8956             mg_set(tmpRef);
8957
8958
8959
8960     return sv;
8961 }
8962
8963 /* Downgrades a PVGV to a PVMG.
8964  */
8965
8966 STATIC void
8967 S_sv_unglob(pTHX_ SV *const sv)
8968 {
8969     dVAR;
8970     void *xpvmg;
8971     HV *stash;
8972     SV * const temp = sv_newmortal();
8973
8974     PERL_ARGS_ASSERT_SV_UNGLOB;
8975
8976     assert(SvTYPE(sv) == SVt_PVGV);
8977     SvFAKE_off(sv);
8978     gv_efullname3(temp, MUTABLE_GV(sv), "*");
8979
8980     if (GvGP(sv)) {
8981         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
8982            && HvNAME_get(stash))
8983             mro_method_changed_in(stash);
8984         gp_free(MUTABLE_GV(sv));
8985     }
8986     if (GvSTASH(sv)) {
8987         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
8988         GvSTASH(sv) = NULL;
8989     }
8990     GvMULTI_off(sv);
8991     if (GvNAME_HEK(sv)) {
8992         unshare_hek(GvNAME_HEK(sv));
8993     }
8994     isGV_with_GP_off(sv);
8995
8996     /* need to keep SvANY(sv) in the right arena */
8997     xpvmg = new_XPVMG();
8998     StructCopy(SvANY(sv), xpvmg, XPVMG);
8999     del_XPVGV(SvANY(sv));
9000     SvANY(sv) = xpvmg;
9001
9002     SvFLAGS(sv) &= ~SVTYPEMASK;
9003     SvFLAGS(sv) |= SVt_PVMG;
9004
9005     /* Intentionally not calling any local SET magic, as this isn't so much a
9006        set operation as merely an internal storage change.  */
9007     sv_setsv_flags(sv, temp, 0);
9008 }
9009
9010 /*
9011 =for apidoc sv_unref_flags
9012
9013 Unsets the RV status of the SV, and decrements the reference count of
9014 whatever was being referenced by the RV.  This can almost be thought of
9015 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9016 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
9017 (otherwise the decrementing is conditional on the reference count being
9018 different from one or the reference being a readonly SV).
9019 See C<SvROK_off>.
9020
9021 =cut
9022 */
9023
9024 void
9025 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
9026 {
9027     SV* const target = SvRV(ref);
9028
9029     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
9030
9031     if (SvWEAKREF(ref)) {
9032         sv_del_backref(target, ref);
9033         SvWEAKREF_off(ref);
9034         SvRV_set(ref, NULL);
9035         return;
9036     }
9037     SvRV_set(ref, NULL);
9038     SvROK_off(ref);
9039     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
9040        assigned to as BEGIN {$a = \"Foo"} will fail.  */
9041     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
9042         SvREFCNT_dec(target);
9043     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
9044         sv_2mortal(target);     /* Schedule for freeing later */
9045 }
9046
9047 /*
9048 =for apidoc sv_untaint
9049
9050 Untaint an SV. Use C<SvTAINTED_off> instead.
9051 =cut
9052 */
9053
9054 void
9055 Perl_sv_untaint(pTHX_ SV *const sv)
9056 {
9057     PERL_ARGS_ASSERT_SV_UNTAINT;
9058
9059     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9060         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9061         if (mg)
9062             mg->mg_len &= ~1;
9063     }
9064 }
9065
9066 /*
9067 =for apidoc sv_tainted
9068
9069 Test an SV for taintedness. Use C<SvTAINTED> instead.
9070 =cut
9071 */
9072
9073 bool
9074 Perl_sv_tainted(pTHX_ SV *const sv)
9075 {
9076     PERL_ARGS_ASSERT_SV_TAINTED;
9077
9078     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9079         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9080         if (mg && (mg->mg_len & 1) )
9081             return TRUE;
9082     }
9083     return FALSE;
9084 }
9085
9086 /*
9087 =for apidoc sv_setpviv
9088
9089 Copies an integer into the given SV, also updating its string value.
9090 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
9091
9092 =cut
9093 */
9094
9095 void
9096 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
9097 {
9098     char buf[TYPE_CHARS(UV)];
9099     char *ebuf;
9100     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
9101
9102     PERL_ARGS_ASSERT_SV_SETPVIV;
9103
9104     sv_setpvn(sv, ptr, ebuf - ptr);
9105 }
9106
9107 /*
9108 =for apidoc sv_setpviv_mg
9109
9110 Like C<sv_setpviv>, but also handles 'set' magic.
9111
9112 =cut
9113 */
9114
9115 void
9116 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
9117 {
9118     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
9119
9120     sv_setpviv(sv, iv);
9121     SvSETMAGIC(sv);
9122 }
9123
9124 #if defined(PERL_IMPLICIT_CONTEXT)
9125
9126 /* pTHX_ magic can't cope with varargs, so this is a no-context
9127  * version of the main function, (which may itself be aliased to us).
9128  * Don't access this version directly.
9129  */
9130
9131 void
9132 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
9133 {
9134     dTHX;
9135     va_list args;
9136
9137     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
9138
9139     va_start(args, pat);
9140     sv_vsetpvf(sv, pat, &args);
9141     va_end(args);
9142 }
9143
9144 /* pTHX_ magic can't cope with varargs, so this is a no-context
9145  * version of the main function, (which may itself be aliased to us).
9146  * Don't access this version directly.
9147  */
9148
9149 void
9150 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9151 {
9152     dTHX;
9153     va_list args;
9154
9155     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
9156
9157     va_start(args, pat);
9158     sv_vsetpvf_mg(sv, pat, &args);
9159     va_end(args);
9160 }
9161 #endif
9162
9163 /*
9164 =for apidoc sv_setpvf
9165
9166 Works like C<sv_catpvf> but copies the text into the SV instead of
9167 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
9168
9169 =cut
9170 */
9171
9172 void
9173 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
9174 {
9175     va_list args;
9176
9177     PERL_ARGS_ASSERT_SV_SETPVF;
9178
9179     va_start(args, pat);
9180     sv_vsetpvf(sv, pat, &args);
9181     va_end(args);
9182 }
9183
9184 /*
9185 =for apidoc sv_vsetpvf
9186
9187 Works like C<sv_vcatpvf> but copies the text into the SV instead of
9188 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
9189
9190 Usually used via its frontend C<sv_setpvf>.
9191
9192 =cut
9193 */
9194
9195 void
9196 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9197 {
9198     PERL_ARGS_ASSERT_SV_VSETPVF;
9199
9200     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9201 }
9202
9203 /*
9204 =for apidoc sv_setpvf_mg
9205
9206 Like C<sv_setpvf>, but also handles 'set' magic.
9207
9208 =cut
9209 */
9210
9211 void
9212 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9213 {
9214     va_list args;
9215
9216     PERL_ARGS_ASSERT_SV_SETPVF_MG;
9217
9218     va_start(args, pat);
9219     sv_vsetpvf_mg(sv, pat, &args);
9220     va_end(args);
9221 }
9222
9223 /*
9224 =for apidoc sv_vsetpvf_mg
9225
9226 Like C<sv_vsetpvf>, but also handles 'set' magic.
9227
9228 Usually used via its frontend C<sv_setpvf_mg>.
9229
9230 =cut
9231 */
9232
9233 void
9234 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9235 {
9236     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
9237
9238     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9239     SvSETMAGIC(sv);
9240 }
9241
9242 #if defined(PERL_IMPLICIT_CONTEXT)
9243
9244 /* pTHX_ magic can't cope with varargs, so this is a no-context
9245  * version of the main function, (which may itself be aliased to us).
9246  * Don't access this version directly.
9247  */
9248
9249 void
9250 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
9251 {
9252     dTHX;
9253     va_list args;
9254
9255     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
9256
9257     va_start(args, pat);
9258     sv_vcatpvf(sv, pat, &args);
9259     va_end(args);
9260 }
9261
9262 /* pTHX_ magic can't cope with varargs, so this is a no-context
9263  * version of the main function, (which may itself be aliased to us).
9264  * Don't access this version directly.
9265  */
9266
9267 void
9268 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9269 {
9270     dTHX;
9271     va_list args;
9272
9273     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
9274
9275     va_start(args, pat);
9276     sv_vcatpvf_mg(sv, pat, &args);
9277     va_end(args);
9278 }
9279 #endif
9280
9281 /*
9282 =for apidoc sv_catpvf
9283
9284 Processes its arguments like C<sprintf> and appends the formatted
9285 output to an SV.  If the appended data contains "wide" characters
9286 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
9287 and characters >255 formatted with %c), the original SV might get
9288 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
9289 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
9290 valid UTF-8; if the original SV was bytes, the pattern should be too.
9291
9292 =cut */
9293
9294 void
9295 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
9296 {
9297     va_list args;
9298
9299     PERL_ARGS_ASSERT_SV_CATPVF;
9300
9301     va_start(args, pat);
9302     sv_vcatpvf(sv, pat, &args);
9303     va_end(args);
9304 }
9305
9306 /*
9307 =for apidoc sv_vcatpvf
9308
9309 Processes its arguments like C<vsprintf> and appends the formatted output
9310 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
9311
9312 Usually used via its frontend C<sv_catpvf>.
9313
9314 =cut
9315 */
9316
9317 void
9318 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9319 {
9320     PERL_ARGS_ASSERT_SV_VCATPVF;
9321
9322     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9323 }
9324
9325 /*
9326 =for apidoc sv_catpvf_mg
9327
9328 Like C<sv_catpvf>, but also handles 'set' magic.
9329
9330 =cut
9331 */
9332
9333 void
9334 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9335 {
9336     va_list args;
9337
9338     PERL_ARGS_ASSERT_SV_CATPVF_MG;
9339
9340     va_start(args, pat);
9341     sv_vcatpvf_mg(sv, pat, &args);
9342     va_end(args);
9343 }
9344
9345 /*
9346 =for apidoc sv_vcatpvf_mg
9347
9348 Like C<sv_vcatpvf>, but also handles 'set' magic.
9349
9350 Usually used via its frontend C<sv_catpvf_mg>.
9351
9352 =cut
9353 */
9354
9355 void
9356 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9357 {
9358     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
9359
9360     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9361     SvSETMAGIC(sv);
9362 }
9363
9364 /*
9365 =for apidoc sv_vsetpvfn
9366
9367 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9368 appending it.
9369
9370 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9371
9372 =cut
9373 */
9374
9375 void
9376 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9377                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9378 {
9379     PERL_ARGS_ASSERT_SV_VSETPVFN;
9380
9381     sv_setpvs(sv, "");
9382     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
9383 }
9384
9385
9386 /*
9387  * Warn of missing argument to sprintf, and then return a defined value
9388  * to avoid inappropriate "use of uninit" warnings [perl #71000].
9389  */
9390 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
9391 STATIC SV*
9392 S_vcatpvfn_missing_argument(pTHX) {
9393     if (ckWARN(WARN_MISSING)) {
9394         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
9395                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
9396     }
9397     return &PL_sv_no;
9398 }
9399
9400
9401 STATIC I32
9402 S_expect_number(pTHX_ char **const pattern)
9403 {
9404     dVAR;
9405     I32 var = 0;
9406
9407     PERL_ARGS_ASSERT_EXPECT_NUMBER;
9408
9409     switch (**pattern) {
9410     case '1': case '2': case '3':
9411     case '4': case '5': case '6':
9412     case '7': case '8': case '9':
9413         var = *(*pattern)++ - '0';
9414         while (isDIGIT(**pattern)) {
9415             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
9416             if (tmp < var)
9417                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
9418             var = tmp;
9419         }
9420     }
9421     return var;
9422 }
9423
9424 STATIC char *
9425 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
9426 {
9427     const int neg = nv < 0;
9428     UV uv;
9429
9430     PERL_ARGS_ASSERT_F0CONVERT;
9431
9432     if (neg)
9433         nv = -nv;
9434     if (nv < UV_MAX) {
9435         char *p = endbuf;
9436         nv += 0.5;
9437         uv = (UV)nv;
9438         if (uv & 1 && uv == nv)
9439             uv--;                       /* Round to even */
9440         do {
9441             const unsigned dig = uv % 10;
9442             *--p = '0' + dig;
9443         } while (uv /= 10);
9444         if (neg)
9445             *--p = '-';
9446         *len = endbuf - p;
9447         return p;
9448     }
9449     return NULL;
9450 }
9451
9452
9453 /*
9454 =for apidoc sv_vcatpvfn
9455
9456 Processes its arguments like C<vsprintf> and appends the formatted output
9457 to an SV.  Uses an array of SVs if the C style variable argument list is
9458 missing (NULL).  When running with taint checks enabled, indicates via
9459 C<maybe_tainted> if results are untrustworthy (often due to the use of
9460 locales).
9461
9462 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
9463
9464 =cut
9465 */
9466
9467
9468 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
9469                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
9470                         vec_utf8 = DO_UTF8(vecsv);
9471
9472 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
9473
9474 void
9475 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9476                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9477 {
9478     dVAR;
9479     char *p;
9480     char *q;
9481     const char *patend;
9482     STRLEN origlen;
9483     I32 svix = 0;
9484     static const char nullstr[] = "(null)";
9485     SV *argsv = NULL;
9486     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
9487     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
9488     SV *nsv = NULL;
9489     /* Times 4: a decimal digit takes more than 3 binary digits.
9490      * NV_DIG: mantissa takes than many decimal digits.
9491      * Plus 32: Playing safe. */
9492     char ebuf[IV_DIG * 4 + NV_DIG + 32];
9493     /* large enough for "%#.#f" --chip */
9494     /* what about long double NVs? --jhi */
9495
9496     PERL_ARGS_ASSERT_SV_VCATPVFN;
9497     PERL_UNUSED_ARG(maybe_tainted);
9498
9499     /* no matter what, this is a string now */
9500     (void)SvPV_force(sv, origlen);
9501
9502     /* special-case "", "%s", and "%-p" (SVf - see below) */
9503     if (patlen == 0)
9504         return;
9505     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
9506         if (args) {
9507             const char * const s = va_arg(*args, char*);
9508             sv_catpv(sv, s ? s : nullstr);
9509         }
9510         else if (svix < svmax) {
9511             sv_catsv(sv, *svargs);
9512         }
9513         else
9514             S_vcatpvfn_missing_argument(aTHX);
9515         return;
9516     }
9517     if (args && patlen == 3 && pat[0] == '%' &&
9518                 pat[1] == '-' && pat[2] == 'p') {
9519         argsv = MUTABLE_SV(va_arg(*args, void*));
9520         sv_catsv(sv, argsv);
9521         return;
9522     }
9523
9524 #ifndef USE_LONG_DOUBLE
9525     /* special-case "%.<number>[gf]" */
9526     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
9527          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
9528         unsigned digits = 0;
9529         const char *pp;
9530
9531         pp = pat + 2;
9532         while (*pp >= '0' && *pp <= '9')
9533             digits = 10 * digits + (*pp++ - '0');
9534         if (pp - pat == (int)patlen - 1 && svix < svmax) {
9535             const NV nv = SvNV(*svargs);
9536             if (*pp == 'g') {
9537                 /* Add check for digits != 0 because it seems that some
9538                    gconverts are buggy in this case, and we don't yet have
9539                    a Configure test for this.  */
9540                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
9541                      /* 0, point, slack */
9542                     Gconvert(nv, (int)digits, 0, ebuf);
9543                     sv_catpv(sv, ebuf);
9544                     if (*ebuf)  /* May return an empty string for digits==0 */
9545                         return;
9546                 }
9547             } else if (!digits) {
9548                 STRLEN l;
9549
9550                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
9551                     sv_catpvn(sv, p, l);
9552                     return;
9553                 }
9554             }
9555         }
9556     }
9557 #endif /* !USE_LONG_DOUBLE */
9558
9559     if (!args && svix < svmax && DO_UTF8(*svargs))
9560         has_utf8 = TRUE;
9561
9562     patend = (char*)pat + patlen;
9563     for (p = (char*)pat; p < patend; p = q) {
9564         bool alt = FALSE;
9565         bool left = FALSE;
9566         bool vectorize = FALSE;
9567         bool vectorarg = FALSE;
9568         bool vec_utf8 = FALSE;
9569         char fill = ' ';
9570         char plus = 0;
9571         char intsize = 0;
9572         STRLEN width = 0;
9573         STRLEN zeros = 0;
9574         bool has_precis = FALSE;
9575         STRLEN precis = 0;
9576         const I32 osvix = svix;
9577         bool is_utf8 = FALSE;  /* is this item utf8?   */
9578 #ifdef HAS_LDBL_SPRINTF_BUG
9579         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
9580            with sfio - Allen <allens@cpan.org> */
9581         bool fix_ldbl_sprintf_bug = FALSE;
9582 #endif
9583
9584         char esignbuf[4];
9585         U8 utf8buf[UTF8_MAXBYTES+1];
9586         STRLEN esignlen = 0;
9587
9588         const char *eptr = NULL;
9589         const char *fmtstart;
9590         STRLEN elen = 0;
9591         SV *vecsv = NULL;
9592         const U8 *vecstr = NULL;
9593         STRLEN veclen = 0;
9594         char c = 0;
9595         int i;
9596         unsigned base = 0;
9597         IV iv = 0;
9598         UV uv = 0;
9599         /* we need a long double target in case HAS_LONG_DOUBLE but
9600            not USE_LONG_DOUBLE
9601         */
9602 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
9603         long double nv;
9604 #else
9605         NV nv;
9606 #endif
9607         STRLEN have;
9608         STRLEN need;
9609         STRLEN gap;
9610         const char *dotstr = ".";
9611         STRLEN dotstrlen = 1;
9612         I32 efix = 0; /* explicit format parameter index */
9613         I32 ewix = 0; /* explicit width index */
9614         I32 epix = 0; /* explicit precision index */
9615         I32 evix = 0; /* explicit vector index */
9616         bool asterisk = FALSE;
9617
9618         /* echo everything up to the next format specification */
9619         for (q = p; q < patend && *q != '%'; ++q) ;
9620         if (q > p) {
9621             if (has_utf8 && !pat_utf8)
9622                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
9623             else
9624                 sv_catpvn(sv, p, q - p);
9625             p = q;
9626         }
9627         if (q++ >= patend)
9628             break;
9629
9630         fmtstart = q;
9631
9632 /*
9633     We allow format specification elements in this order:
9634         \d+\$              explicit format parameter index
9635         [-+ 0#]+           flags
9636         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
9637         0                  flag (as above): repeated to allow "v02"     
9638         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
9639         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
9640         [hlqLV]            size
9641     [%bcdefginopsuxDFOUX] format (mandatory)
9642 */
9643
9644         if (args) {
9645 /*  
9646         As of perl5.9.3, printf format checking is on by default.
9647         Internally, perl uses %p formats to provide an escape to
9648         some extended formatting.  This block deals with those
9649         extensions: if it does not match, (char*)q is reset and
9650         the normal format processing code is used.
9651
9652         Currently defined extensions are:
9653                 %p              include pointer address (standard)      
9654                 %-p     (SVf)   include an SV (previously %_)
9655                 %-<num>p        include an SV with precision <num>      
9656                 %<num>p         reserved for future extensions
9657
9658         Robin Barker 2005-07-14
9659
9660                 %1p     (VDf)   removed.  RMB 2007-10-19
9661 */
9662             char* r = q; 
9663             bool sv = FALSE;    
9664             STRLEN n = 0;
9665             if (*q == '-')
9666                 sv = *q++;
9667             n = expect_number(&q);
9668             if (*q++ == 'p') {
9669                 if (sv) {                       /* SVf */
9670                     if (n) {
9671                         precis = n;
9672                         has_precis = TRUE;
9673                     }
9674                     argsv = MUTABLE_SV(va_arg(*args, void*));
9675                     eptr = SvPV_const(argsv, elen);
9676                     if (DO_UTF8(argsv))
9677                         is_utf8 = TRUE;
9678                     goto string;
9679                 }
9680                 else if (n) {
9681                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
9682                                      "internal %%<num>p might conflict with future printf extensions");
9683                 }
9684             }
9685             q = r; 
9686         }
9687
9688         if ( (width = expect_number(&q)) ) {
9689             if (*q == '$') {
9690                 ++q;
9691                 efix = width;
9692             } else {
9693                 goto gotwidth;
9694             }
9695         }
9696
9697         /* FLAGS */
9698
9699         while (*q) {
9700             switch (*q) {
9701             case ' ':
9702             case '+':
9703                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
9704                     q++;
9705                 else
9706                     plus = *q++;
9707                 continue;
9708
9709             case '-':
9710                 left = TRUE;
9711                 q++;
9712                 continue;
9713
9714             case '0':
9715                 fill = *q++;
9716                 continue;
9717
9718             case '#':
9719                 alt = TRUE;
9720                 q++;
9721                 continue;
9722
9723             default:
9724                 break;
9725             }
9726             break;
9727         }
9728
9729       tryasterisk:
9730         if (*q == '*') {
9731             q++;
9732             if ( (ewix = expect_number(&q)) )
9733                 if (*q++ != '$')
9734                     goto unknown;
9735             asterisk = TRUE;
9736         }
9737         if (*q == 'v') {
9738             q++;
9739             if (vectorize)
9740                 goto unknown;
9741             if ((vectorarg = asterisk)) {
9742                 evix = ewix;
9743                 ewix = 0;
9744                 asterisk = FALSE;
9745             }
9746             vectorize = TRUE;
9747             goto tryasterisk;
9748         }
9749
9750         if (!asterisk)
9751         {
9752             if( *q == '0' )
9753                 fill = *q++;
9754             width = expect_number(&q);
9755         }
9756
9757         if (vectorize) {
9758             if (vectorarg) {
9759                 if (args)
9760                     vecsv = va_arg(*args, SV*);
9761                 else if (evix) {
9762                     vecsv = (evix > 0 && evix <= svmax)
9763                         ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
9764                 } else {
9765                     vecsv = svix < svmax
9766                         ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
9767                 }
9768                 dotstr = SvPV_const(vecsv, dotstrlen);
9769                 /* Keep the DO_UTF8 test *after* the SvPV call, else things go
9770                    bad with tied or overloaded values that return UTF8.  */
9771                 if (DO_UTF8(vecsv))
9772                     is_utf8 = TRUE;
9773                 else if (has_utf8) {
9774                     vecsv = sv_mortalcopy(vecsv);
9775                     sv_utf8_upgrade(vecsv);
9776                     dotstr = SvPV_const(vecsv, dotstrlen);
9777                     is_utf8 = TRUE;
9778                 }                   
9779             }
9780             if (args) {
9781                 VECTORIZE_ARGS
9782             }
9783             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
9784                 vecsv = svargs[efix ? efix-1 : svix++];
9785                 vecstr = (U8*)SvPV_const(vecsv,veclen);
9786                 vec_utf8 = DO_UTF8(vecsv);
9787
9788                 /* if this is a version object, we need to convert
9789                  * back into v-string notation and then let the
9790                  * vectorize happen normally
9791                  */
9792                 if (sv_derived_from(vecsv, "version")) {
9793                     char *version = savesvpv(vecsv);
9794                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
9795                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
9796                         "vector argument not supported with alpha versions");
9797                         goto unknown;
9798                     }
9799                     vecsv = sv_newmortal();
9800                     scan_vstring(version, version + veclen, vecsv);
9801                     vecstr = (U8*)SvPV_const(vecsv, veclen);
9802                     vec_utf8 = DO_UTF8(vecsv);
9803                     Safefree(version);
9804                 }
9805             }
9806             else {
9807                 vecstr = (U8*)"";
9808                 veclen = 0;
9809             }
9810         }
9811
9812         if (asterisk) {
9813             if (args)
9814                 i = va_arg(*args, int);
9815             else
9816                 i = (ewix ? ewix <= svmax : svix < svmax) ?
9817                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9818             left |= (i < 0);
9819             width = (i < 0) ? -i : i;
9820         }
9821       gotwidth:
9822
9823         /* PRECISION */
9824
9825         if (*q == '.') {
9826             q++;
9827             if (*q == '*') {
9828                 q++;
9829                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
9830                     goto unknown;
9831                 /* XXX: todo, support specified precision parameter */
9832                 if (epix)
9833                     goto unknown;
9834                 if (args)
9835                     i = va_arg(*args, int);
9836                 else
9837                     i = (ewix ? ewix <= svmax : svix < svmax)
9838                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
9839                 precis = i;
9840                 has_precis = !(i < 0);
9841             }
9842             else {
9843                 precis = 0;
9844                 while (isDIGIT(*q))
9845                     precis = precis * 10 + (*q++ - '0');
9846                 has_precis = TRUE;
9847             }
9848         }
9849
9850         /* SIZE */
9851
9852         switch (*q) {
9853 #ifdef WIN32
9854         case 'I':                       /* Ix, I32x, and I64x */
9855 #  ifdef WIN64
9856             if (q[1] == '6' && q[2] == '4') {
9857                 q += 3;
9858                 intsize = 'q';
9859                 break;
9860             }
9861 #  endif
9862             if (q[1] == '3' && q[2] == '2') {
9863                 q += 3;
9864                 break;
9865             }
9866 #  ifdef WIN64
9867             intsize = 'q';
9868 #  endif
9869             q++;
9870             break;
9871 #endif
9872 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9873         case 'L':                       /* Ld */
9874             /*FALLTHROUGH*/
9875 #ifdef HAS_QUAD
9876         case 'q':                       /* qd */
9877 #endif
9878             intsize = 'q';
9879             q++;
9880             break;
9881 #endif
9882         case 'l':
9883 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
9884             if (*(q + 1) == 'l') {      /* lld, llf */
9885                 intsize = 'q';
9886                 q += 2;
9887                 break;
9888              }
9889 #endif
9890             /*FALLTHROUGH*/
9891         case 'h':
9892             /*FALLTHROUGH*/
9893         case 'V':
9894             intsize = *q++;
9895             break;
9896         }
9897
9898         /* CONVERSION */
9899
9900         if (*q == '%') {
9901             eptr = q++;
9902             elen = 1;
9903             if (vectorize) {
9904                 c = '%';
9905                 goto unknown;
9906             }
9907             goto string;
9908         }
9909
9910         if (!vectorize && !args) {
9911             if (efix) {
9912                 const I32 i = efix-1;
9913                 argsv = (i >= 0 && i < svmax)
9914                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
9915             } else {
9916                 argsv = (svix >= 0 && svix < svmax)
9917                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
9918             }
9919         }
9920
9921         switch (c = *q++) {
9922
9923             /* STRINGS */
9924
9925         case 'c':
9926             if (vectorize)
9927                 goto unknown;
9928             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
9929             if ((uv > 255 ||
9930                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
9931                 && !IN_BYTES) {
9932                 eptr = (char*)utf8buf;
9933                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
9934                 is_utf8 = TRUE;
9935             }
9936             else {
9937                 c = (char)uv;
9938                 eptr = &c;
9939                 elen = 1;
9940             }
9941             goto string;
9942
9943         case 's':
9944             if (vectorize)
9945                 goto unknown;
9946             if (args) {
9947                 eptr = va_arg(*args, char*);
9948                 if (eptr)
9949                     elen = strlen(eptr);
9950                 else {
9951                     eptr = (char *)nullstr;
9952                     elen = sizeof nullstr - 1;
9953                 }
9954             }
9955             else {
9956                 eptr = SvPV_const(argsv, elen);
9957                 if (DO_UTF8(argsv)) {
9958                     STRLEN old_precis = precis;
9959                     if (has_precis && precis < elen) {
9960                         STRLEN ulen = sv_len_utf8(argsv);
9961                         I32 p = precis > ulen ? ulen : precis;
9962                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
9963                         precis = p;
9964                     }
9965                     if (width) { /* fudge width (can't fudge elen) */
9966                         if (has_precis && precis < elen)
9967                             width += precis - old_precis;
9968                         else
9969                             width += elen - sv_len_utf8(argsv);
9970                     }
9971                     is_utf8 = TRUE;
9972                 }
9973             }
9974
9975         string:
9976             if (has_precis && precis < elen)
9977                 elen = precis;
9978             break;
9979
9980             /* INTEGERS */
9981
9982         case 'p':
9983             if (alt || vectorize)
9984                 goto unknown;
9985             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
9986             base = 16;
9987             goto integer;
9988
9989         case 'D':
9990 #ifdef IV_IS_QUAD
9991             intsize = 'q';
9992 #else
9993             intsize = 'l';
9994 #endif
9995             /*FALLTHROUGH*/
9996         case 'd':
9997         case 'i':
9998 #if vdNUMBER
9999         format_vd:
10000 #endif
10001             if (vectorize) {
10002                 STRLEN ulen;
10003                 if (!veclen)
10004                     continue;
10005                 if (vec_utf8)
10006                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10007                                         UTF8_ALLOW_ANYUV);
10008                 else {
10009                     uv = *vecstr;
10010                     ulen = 1;
10011                 }
10012                 vecstr += ulen;
10013                 veclen -= ulen;
10014                 if (plus)
10015                      esignbuf[esignlen++] = plus;
10016             }
10017             else if (args) {
10018                 switch (intsize) {
10019                 case 'h':       iv = (short)va_arg(*args, int); break;
10020                 case 'l':       iv = va_arg(*args, long); break;
10021                 case 'V':       iv = va_arg(*args, IV); break;
10022                 default:        iv = va_arg(*args, int); break;
10023                 case 'q':
10024 #ifdef HAS_QUAD
10025                                 iv = va_arg(*args, Quad_t); break;
10026 #else
10027                                 goto unknown;
10028 #endif
10029                 }
10030             }
10031             else {
10032                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
10033                 switch (intsize) {
10034                 case 'h':       iv = (short)tiv; break;
10035                 case 'l':       iv = (long)tiv; break;
10036                 case 'V':
10037                 default:        iv = tiv; break;
10038                 case 'q':
10039 #ifdef HAS_QUAD
10040                                 iv = (Quad_t)tiv; break;
10041 #else
10042                                 goto unknown;
10043 #endif
10044                 }
10045             }
10046             if ( !vectorize )   /* we already set uv above */
10047             {
10048                 if (iv >= 0) {
10049                     uv = iv;
10050                     if (plus)
10051                         esignbuf[esignlen++] = plus;
10052                 }
10053                 else {
10054                     uv = -iv;
10055                     esignbuf[esignlen++] = '-';
10056                 }
10057             }
10058             base = 10;
10059             goto integer;
10060
10061         case 'U':
10062 #ifdef IV_IS_QUAD
10063             intsize = 'q';
10064 #else
10065             intsize = 'l';
10066 #endif
10067             /*FALLTHROUGH*/
10068         case 'u':
10069             base = 10;
10070             goto uns_integer;
10071
10072         case 'B':
10073         case 'b':
10074             base = 2;
10075             goto uns_integer;
10076
10077         case 'O':
10078 #ifdef IV_IS_QUAD
10079             intsize = 'q';
10080 #else
10081             intsize = 'l';
10082 #endif
10083             /*FALLTHROUGH*/
10084         case 'o':
10085             base = 8;
10086             goto uns_integer;
10087
10088         case 'X':
10089         case 'x':
10090             base = 16;
10091
10092         uns_integer:
10093             if (vectorize) {
10094                 STRLEN ulen;
10095         vector:
10096                 if (!veclen)
10097                     continue;
10098                 if (vec_utf8)
10099                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10100                                         UTF8_ALLOW_ANYUV);
10101                 else {
10102                     uv = *vecstr;
10103                     ulen = 1;
10104                 }
10105                 vecstr += ulen;
10106                 veclen -= ulen;
10107             }
10108             else if (args) {
10109                 switch (intsize) {
10110                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
10111                 case 'l':  uv = va_arg(*args, unsigned long); break;
10112                 case 'V':  uv = va_arg(*args, UV); break;
10113                 default:   uv = va_arg(*args, unsigned); break;
10114                 case 'q':
10115 #ifdef HAS_QUAD
10116                            uv = va_arg(*args, Uquad_t); break;
10117 #else
10118                            goto unknown;
10119 #endif
10120                 }
10121             }
10122             else {
10123                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
10124                 switch (intsize) {
10125                 case 'h':       uv = (unsigned short)tuv; break;
10126                 case 'l':       uv = (unsigned long)tuv; break;
10127                 case 'V':
10128                 default:        uv = tuv; break;
10129                 case 'q':
10130 #ifdef HAS_QUAD
10131                                 uv = (Uquad_t)tuv; break;
10132 #else
10133                                 goto unknown;
10134 #endif
10135                 }
10136             }
10137
10138         integer:
10139             {
10140                 char *ptr = ebuf + sizeof ebuf;
10141                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
10142                 zeros = 0;
10143
10144                 switch (base) {
10145                     unsigned dig;
10146                 case 16:
10147                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
10148                     do {
10149                         dig = uv & 15;
10150                         *--ptr = p[dig];
10151                     } while (uv >>= 4);
10152                     if (tempalt) {
10153                         esignbuf[esignlen++] = '0';
10154                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
10155                     }
10156                     break;
10157                 case 8:
10158                     do {
10159                         dig = uv & 7;
10160                         *--ptr = '0' + dig;
10161                     } while (uv >>= 3);
10162                     if (alt && *ptr != '0')
10163                         *--ptr = '0';
10164                     break;
10165                 case 2:
10166                     do {
10167                         dig = uv & 1;
10168                         *--ptr = '0' + dig;
10169                     } while (uv >>= 1);
10170                     if (tempalt) {
10171                         esignbuf[esignlen++] = '0';
10172                         esignbuf[esignlen++] = c;
10173                     }
10174                     break;
10175                 default:                /* it had better be ten or less */
10176                     do {
10177                         dig = uv % base;
10178                         *--ptr = '0' + dig;
10179                     } while (uv /= base);
10180                     break;
10181                 }
10182                 elen = (ebuf + sizeof ebuf) - ptr;
10183                 eptr = ptr;
10184                 if (has_precis) {
10185                     if (precis > elen)
10186                         zeros = precis - elen;
10187                     else if (precis == 0 && elen == 1 && *eptr == '0'
10188                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
10189                         elen = 0;
10190
10191                 /* a precision nullifies the 0 flag. */
10192                     if (fill == '0')
10193                         fill = ' ';
10194                 }
10195             }
10196             break;
10197
10198             /* FLOATING POINT */
10199
10200         case 'F':
10201             c = 'f';            /* maybe %F isn't supported here */
10202             /*FALLTHROUGH*/
10203         case 'e': case 'E':
10204         case 'f':
10205         case 'g': case 'G':
10206             if (vectorize)
10207                 goto unknown;
10208
10209             /* This is evil, but floating point is even more evil */
10210
10211             /* for SV-style calling, we can only get NV
10212                for C-style calling, we assume %f is double;
10213                for simplicity we allow any of %Lf, %llf, %qf for long double
10214             */
10215             switch (intsize) {
10216             case 'V':
10217 #if defined(USE_LONG_DOUBLE)
10218                 intsize = 'q';
10219 #endif
10220                 break;
10221 /* [perl #20339] - we should accept and ignore %lf rather than die */
10222             case 'l':
10223                 /*FALLTHROUGH*/
10224             default:
10225 #if defined(USE_LONG_DOUBLE)
10226                 intsize = args ? 0 : 'q';
10227 #endif
10228                 break;
10229             case 'q':
10230 #if defined(HAS_LONG_DOUBLE)
10231                 break;
10232 #else
10233                 /*FALLTHROUGH*/
10234 #endif
10235             case 'h':
10236                 goto unknown;
10237             }
10238
10239             /* now we need (long double) if intsize == 'q', else (double) */
10240             nv = (args) ?
10241 #if LONG_DOUBLESIZE > DOUBLESIZE
10242                 intsize == 'q' ?
10243                     va_arg(*args, long double) :
10244                     va_arg(*args, double)
10245 #else
10246                     va_arg(*args, double)
10247 #endif
10248                 : SvNV(argsv);
10249
10250             need = 0;
10251             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
10252                else. frexp() has some unspecified behaviour for those three */
10253             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
10254                 i = PERL_INT_MIN;
10255                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
10256                    will cast our (long double) to (double) */
10257                 (void)Perl_frexp(nv, &i);
10258                 if (i == PERL_INT_MIN)
10259                     Perl_die(aTHX_ "panic: frexp");
10260                 if (i > 0)
10261                     need = BIT_DIGITS(i);
10262             }
10263             need += has_precis ? precis : 6; /* known default */
10264
10265             if (need < width)
10266                 need = width;
10267
10268 #ifdef HAS_LDBL_SPRINTF_BUG
10269             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10270                with sfio - Allen <allens@cpan.org> */
10271
10272 #  ifdef DBL_MAX
10273 #    define MY_DBL_MAX DBL_MAX
10274 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
10275 #    if DOUBLESIZE >= 8
10276 #      define MY_DBL_MAX 1.7976931348623157E+308L
10277 #    else
10278 #      define MY_DBL_MAX 3.40282347E+38L
10279 #    endif
10280 #  endif
10281
10282 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
10283 #    define MY_DBL_MAX_BUG 1L
10284 #  else
10285 #    define MY_DBL_MAX_BUG MY_DBL_MAX
10286 #  endif
10287
10288 #  ifdef DBL_MIN
10289 #    define MY_DBL_MIN DBL_MIN
10290 #  else  /* XXX guessing! -Allen */
10291 #    if DOUBLESIZE >= 8
10292 #      define MY_DBL_MIN 2.2250738585072014E-308L
10293 #    else
10294 #      define MY_DBL_MIN 1.17549435E-38L
10295 #    endif
10296 #  endif
10297
10298             if ((intsize == 'q') && (c == 'f') &&
10299                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
10300                 (need < DBL_DIG)) {
10301                 /* it's going to be short enough that
10302                  * long double precision is not needed */
10303
10304                 if ((nv <= 0L) && (nv >= -0L))
10305                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
10306                 else {
10307                     /* would use Perl_fp_class as a double-check but not
10308                      * functional on IRIX - see perl.h comments */
10309
10310                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
10311                         /* It's within the range that a double can represent */
10312 #if defined(DBL_MAX) && !defined(DBL_MIN)
10313                         if ((nv >= ((long double)1/DBL_MAX)) ||
10314                             (nv <= (-(long double)1/DBL_MAX)))
10315 #endif
10316                         fix_ldbl_sprintf_bug = TRUE;
10317                     }
10318                 }
10319                 if (fix_ldbl_sprintf_bug == TRUE) {
10320                     double temp;
10321
10322                     intsize = 0;
10323                     temp = (double)nv;
10324                     nv = (NV)temp;
10325                 }
10326             }
10327
10328 #  undef MY_DBL_MAX
10329 #  undef MY_DBL_MAX_BUG
10330 #  undef MY_DBL_MIN
10331
10332 #endif /* HAS_LDBL_SPRINTF_BUG */
10333
10334             need += 20; /* fudge factor */
10335             if (PL_efloatsize < need) {
10336                 Safefree(PL_efloatbuf);
10337                 PL_efloatsize = need + 20; /* more fudge */
10338                 Newx(PL_efloatbuf, PL_efloatsize, char);
10339                 PL_efloatbuf[0] = '\0';
10340             }
10341
10342             if ( !(width || left || plus || alt) && fill != '0'
10343                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
10344                 /* See earlier comment about buggy Gconvert when digits,
10345                    aka precis is 0  */
10346                 if ( c == 'g' && precis) {
10347                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
10348                     /* May return an empty string for digits==0 */
10349                     if (*PL_efloatbuf) {
10350                         elen = strlen(PL_efloatbuf);
10351                         goto float_converted;
10352                     }
10353                 } else if ( c == 'f' && !precis) {
10354                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
10355                         break;
10356                 }
10357             }
10358             {
10359                 char *ptr = ebuf + sizeof ebuf;
10360                 *--ptr = '\0';
10361                 *--ptr = c;
10362                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
10363 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
10364                 if (intsize == 'q') {
10365                     /* Copy the one or more characters in a long double
10366                      * format before the 'base' ([efgEFG]) character to
10367                      * the format string. */
10368                     static char const prifldbl[] = PERL_PRIfldbl;
10369                     char const *p = prifldbl + sizeof(prifldbl) - 3;
10370                     while (p >= prifldbl) { *--ptr = *p--; }
10371                 }
10372 #endif
10373                 if (has_precis) {
10374                     base = precis;
10375                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10376                     *--ptr = '.';
10377                 }
10378                 if (width) {
10379                     base = width;
10380                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10381                 }
10382                 if (fill == '0')
10383                     *--ptr = fill;
10384                 if (left)
10385                     *--ptr = '-';
10386                 if (plus)
10387                     *--ptr = plus;
10388                 if (alt)
10389                     *--ptr = '#';
10390                 *--ptr = '%';
10391
10392                 /* No taint.  Otherwise we are in the strange situation
10393                  * where printf() taints but print($float) doesn't.
10394                  * --jhi */
10395 #if defined(HAS_LONG_DOUBLE)
10396                 elen = ((intsize == 'q')
10397                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
10398                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
10399 #else
10400                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
10401 #endif
10402             }
10403         float_converted:
10404             eptr = PL_efloatbuf;
10405             break;
10406
10407             /* SPECIAL */
10408
10409         case 'n':
10410             if (vectorize)
10411                 goto unknown;
10412             i = SvCUR(sv) - origlen;
10413             if (args) {
10414                 switch (intsize) {
10415                 case 'h':       *(va_arg(*args, short*)) = i; break;
10416                 default:        *(va_arg(*args, int*)) = i; break;
10417                 case 'l':       *(va_arg(*args, long*)) = i; break;
10418                 case 'V':       *(va_arg(*args, IV*)) = i; break;
10419                 case 'q':
10420 #ifdef HAS_QUAD
10421                                 *(va_arg(*args, Quad_t*)) = i; break;
10422 #else
10423                                 goto unknown;
10424 #endif
10425                 }
10426             }
10427             else
10428                 sv_setuv_mg(argsv, (UV)i);
10429             continue;   /* not "break" */
10430
10431             /* UNKNOWN */
10432
10433         default:
10434       unknown:
10435             if (!args
10436                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
10437                 && ckWARN(WARN_PRINTF))
10438             {
10439                 SV * const msg = sv_newmortal();
10440                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
10441                           (PL_op->op_type == OP_PRTF) ? "" : "s");
10442                 if (fmtstart < patend) {
10443                     const char * const fmtend = q < patend ? q : patend;
10444                     const char * f;
10445                     sv_catpvs(msg, "\"%");
10446                     for (f = fmtstart; f < fmtend; f++) {
10447                         if (isPRINT(*f)) {
10448                             sv_catpvn(msg, f, 1);
10449                         } else {
10450                             Perl_sv_catpvf(aTHX_ msg,
10451                                            "\\%03"UVof, (UV)*f & 0xFF);
10452                         }
10453                     }
10454                     sv_catpvs(msg, "\"");
10455                 } else {
10456                     sv_catpvs(msg, "end of string");
10457                 }
10458                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
10459             }
10460
10461             /* output mangled stuff ... */
10462             if (c == '\0')
10463                 --q;
10464             eptr = p;
10465             elen = q - p;
10466
10467             /* ... right here, because formatting flags should not apply */
10468             SvGROW(sv, SvCUR(sv) + elen + 1);
10469             p = SvEND(sv);
10470             Copy(eptr, p, elen, char);
10471             p += elen;
10472             *p = '\0';
10473             SvCUR_set(sv, p - SvPVX_const(sv));
10474             svix = osvix;
10475             continue;   /* not "break" */
10476         }
10477
10478         if (is_utf8 != has_utf8) {
10479             if (is_utf8) {
10480                 if (SvCUR(sv))
10481                     sv_utf8_upgrade(sv);
10482             }
10483             else {
10484                 const STRLEN old_elen = elen;
10485                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
10486                 sv_utf8_upgrade(nsv);
10487                 eptr = SvPVX_const(nsv);
10488                 elen = SvCUR(nsv);
10489
10490                 if (width) { /* fudge width (can't fudge elen) */
10491                     width += elen - old_elen;
10492                 }
10493                 is_utf8 = TRUE;
10494             }
10495         }
10496
10497         have = esignlen + zeros + elen;
10498         if (have < zeros)
10499             Perl_croak_nocontext("%s", PL_memory_wrap);
10500
10501         need = (have > width ? have : width);
10502         gap = need - have;
10503
10504         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
10505             Perl_croak_nocontext("%s", PL_memory_wrap);
10506         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
10507         p = SvEND(sv);
10508         if (esignlen && fill == '0') {
10509             int i;
10510             for (i = 0; i < (int)esignlen; i++)
10511                 *p++ = esignbuf[i];
10512         }
10513         if (gap && !left) {
10514             memset(p, fill, gap);
10515             p += gap;
10516         }
10517         if (esignlen && fill != '0') {
10518             int i;
10519             for (i = 0; i < (int)esignlen; i++)
10520                 *p++ = esignbuf[i];
10521         }
10522         if (zeros) {
10523             int i;
10524             for (i = zeros; i; i--)
10525                 *p++ = '0';
10526         }
10527         if (elen) {
10528             Copy(eptr, p, elen, char);
10529             p += elen;
10530         }
10531         if (gap && left) {
10532             memset(p, ' ', gap);
10533             p += gap;
10534         }
10535         if (vectorize) {
10536             if (veclen) {
10537                 Copy(dotstr, p, dotstrlen, char);
10538                 p += dotstrlen;
10539             }
10540             else
10541                 vectorize = FALSE;              /* done iterating over vecstr */
10542         }
10543         if (is_utf8)
10544             has_utf8 = TRUE;
10545         if (has_utf8)
10546             SvUTF8_on(sv);
10547         *p = '\0';
10548         SvCUR_set(sv, p - SvPVX_const(sv));
10549         if (vectorize) {
10550             esignlen = 0;
10551             goto vector;
10552         }
10553     }
10554     SvTAINT(sv);
10555 }
10556
10557 /* =========================================================================
10558
10559 =head1 Cloning an interpreter
10560
10561 All the macros and functions in this section are for the private use of
10562 the main function, perl_clone().
10563
10564 The foo_dup() functions make an exact copy of an existing foo thingy.
10565 During the course of a cloning, a hash table is used to map old addresses
10566 to new addresses. The table is created and manipulated with the
10567 ptr_table_* functions.
10568
10569 =cut
10570
10571  * =========================================================================*/
10572
10573
10574 #if defined(USE_ITHREADS)
10575
10576 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
10577 #ifndef GpREFCNT_inc
10578 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
10579 #endif
10580
10581
10582 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
10583    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
10584    If this changes, please unmerge ss_dup.
10585    Likewise, sv_dup_inc_multiple() relies on this fact.  */
10586 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
10587 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
10588 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
10589 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
10590 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
10591 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
10592 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
10593 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
10594 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
10595 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
10596 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
10597 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
10598 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
10599
10600 /* clone a parser */
10601
10602 yy_parser *
10603 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
10604 {
10605     yy_parser *parser;
10606
10607     PERL_ARGS_ASSERT_PARSER_DUP;
10608
10609     if (!proto)
10610         return NULL;
10611
10612     /* look for it in the table first */
10613     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
10614     if (parser)
10615         return parser;
10616
10617     /* create anew and remember what it is */
10618     Newxz(parser, 1, yy_parser);
10619     ptr_table_store(PL_ptr_table, proto, parser);
10620
10621     parser->yyerrstatus = 0;
10622     parser->yychar = YYEMPTY;           /* Cause a token to be read.  */
10623
10624     /* XXX these not yet duped */
10625     parser->old_parser = NULL;
10626     parser->stack = NULL;
10627     parser->ps = NULL;
10628     parser->stack_size = 0;
10629     /* XXX parser->stack->state = 0; */
10630
10631     /* XXX eventually, just Copy() most of the parser struct ? */
10632
10633     parser->lex_brackets = proto->lex_brackets;
10634     parser->lex_casemods = proto->lex_casemods;
10635     parser->lex_brackstack = savepvn(proto->lex_brackstack,
10636                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
10637     parser->lex_casestack = savepvn(proto->lex_casestack,
10638                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
10639     parser->lex_defer   = proto->lex_defer;
10640     parser->lex_dojoin  = proto->lex_dojoin;
10641     parser->lex_expect  = proto->lex_expect;
10642     parser->lex_formbrack = proto->lex_formbrack;
10643     parser->lex_inpat   = proto->lex_inpat;
10644     parser->lex_inwhat  = proto->lex_inwhat;
10645     parser->lex_op      = proto->lex_op;
10646     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
10647     parser->lex_starts  = proto->lex_starts;
10648     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
10649     parser->multi_close = proto->multi_close;
10650     parser->multi_open  = proto->multi_open;
10651     parser->multi_start = proto->multi_start;
10652     parser->multi_end   = proto->multi_end;
10653     parser->pending_ident = proto->pending_ident;
10654     parser->preambled   = proto->preambled;
10655     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
10656     parser->linestr     = sv_dup_inc(proto->linestr, param);
10657     parser->expect      = proto->expect;
10658     parser->copline     = proto->copline;
10659     parser->last_lop_op = proto->last_lop_op;
10660     parser->lex_state   = proto->lex_state;
10661     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
10662     /* rsfp_filters entries have fake IoDIRP() */
10663     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
10664     parser->in_my       = proto->in_my;
10665     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
10666     parser->error_count = proto->error_count;
10667
10668
10669     parser->linestr     = sv_dup_inc(proto->linestr, param);
10670
10671     {
10672         char * const ols = SvPVX(proto->linestr);
10673         char * const ls  = SvPVX(parser->linestr);
10674
10675         parser->bufptr      = ls + (proto->bufptr >= ols ?
10676                                     proto->bufptr -  ols : 0);
10677         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
10678                                     proto->oldbufptr -  ols : 0);
10679         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
10680                                     proto->oldoldbufptr -  ols : 0);
10681         parser->linestart   = ls + (proto->linestart >= ols ?
10682                                     proto->linestart -  ols : 0);
10683         parser->last_uni    = ls + (proto->last_uni >= ols ?
10684                                     proto->last_uni -  ols : 0);
10685         parser->last_lop    = ls + (proto->last_lop >= ols ?
10686                                     proto->last_lop -  ols : 0);
10687
10688         parser->bufend      = ls + SvCUR(parser->linestr);
10689     }
10690
10691     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
10692
10693
10694 #ifdef PERL_MAD
10695     parser->endwhite    = proto->endwhite;
10696     parser->faketokens  = proto->faketokens;
10697     parser->lasttoke    = proto->lasttoke;
10698     parser->nextwhite   = proto->nextwhite;
10699     parser->realtokenstart = proto->realtokenstart;
10700     parser->skipwhite   = proto->skipwhite;
10701     parser->thisclose   = proto->thisclose;
10702     parser->thismad     = proto->thismad;
10703     parser->thisopen    = proto->thisopen;
10704     parser->thisstuff   = proto->thisstuff;
10705     parser->thistoken   = proto->thistoken;
10706     parser->thiswhite   = proto->thiswhite;
10707
10708     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
10709     parser->curforce    = proto->curforce;
10710 #else
10711     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
10712     Copy(proto->nexttype, parser->nexttype, 5,  I32);
10713     parser->nexttoke    = proto->nexttoke;
10714 #endif
10715
10716     /* XXX should clone saved_curcop here, but we aren't passed
10717      * proto_perl; so do it in perl_clone_using instead */
10718
10719     return parser;
10720 }
10721
10722
10723 /* duplicate a file handle */
10724
10725 PerlIO *
10726 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
10727 {
10728     PerlIO *ret;
10729
10730     PERL_ARGS_ASSERT_FP_DUP;
10731     PERL_UNUSED_ARG(type);
10732
10733     if (!fp)
10734         return (PerlIO*)NULL;
10735
10736     /* look for it in the table first */
10737     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
10738     if (ret)
10739         return ret;
10740
10741     /* create anew and remember what it is */
10742     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
10743     ptr_table_store(PL_ptr_table, fp, ret);
10744     return ret;
10745 }
10746
10747 /* duplicate a directory handle */
10748
10749 DIR *
10750 Perl_dirp_dup(pTHX_ DIR *const dp)
10751 {
10752     PERL_UNUSED_CONTEXT;
10753     if (!dp)
10754         return (DIR*)NULL;
10755     /* XXX TODO */
10756     return dp;
10757 }
10758
10759 /* duplicate a typeglob */
10760
10761 GP *
10762 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
10763 {
10764     GP *ret;
10765
10766     PERL_ARGS_ASSERT_GP_DUP;
10767
10768     if (!gp)
10769         return (GP*)NULL;
10770     /* look for it in the table first */
10771     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
10772     if (ret)
10773         return ret;
10774
10775     /* create anew and remember what it is */
10776     Newxz(ret, 1, GP);
10777     ptr_table_store(PL_ptr_table, gp, ret);
10778
10779     /* clone */
10780     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
10781        on Newxz() to do this for us.  */
10782     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
10783     ret->gp_io          = io_dup_inc(gp->gp_io, param);
10784     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
10785     ret->gp_av          = av_dup_inc(gp->gp_av, param);
10786     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
10787     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
10788     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
10789     ret->gp_cvgen       = gp->gp_cvgen;
10790     ret->gp_line        = gp->gp_line;
10791     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
10792     return ret;
10793 }
10794
10795 /* duplicate a chain of magic */
10796
10797 MAGIC *
10798 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
10799 {
10800     MAGIC *mgret = NULL;
10801     MAGIC **mgprev_p = &mgret;
10802
10803     PERL_ARGS_ASSERT_MG_DUP;
10804
10805     for (; mg; mg = mg->mg_moremagic) {
10806         MAGIC *nmg;
10807
10808         if ((param->flags & CLONEf_JOIN_IN)
10809                 && mg->mg_type == PERL_MAGIC_backref)
10810             /* when joining, we let the individual SVs add themselves to
10811              * backref as needed. */
10812             continue;
10813
10814         Newx(nmg, 1, MAGIC);
10815         *mgprev_p = nmg;
10816         mgprev_p = &(nmg->mg_moremagic);
10817
10818         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
10819            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
10820            from the original commit adding Perl_mg_dup() - revision 4538.
10821            Similarly there is the annotation "XXX random ptr?" next to the
10822            assignment to nmg->mg_ptr.  */
10823         *nmg = *mg;
10824
10825         /* FIXME for plugins
10826         if (nmg->mg_type == PERL_MAGIC_qr) {
10827             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
10828         }
10829         else
10830         */
10831         if(nmg->mg_type == PERL_MAGIC_backref) {
10832             /* The backref AV has its reference count deliberately bumped by
10833                1.  */
10834             nmg->mg_obj
10835                 = SvREFCNT_inc(av_dup_inc((const AV *) nmg->mg_obj, param));
10836         }
10837         else {
10838             nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
10839                               ? sv_dup_inc(nmg->mg_obj, param)
10840                               : sv_dup(nmg->mg_obj, param);
10841         }
10842
10843         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
10844             if (nmg->mg_len > 0) {
10845                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
10846                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
10847                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
10848                 {
10849                     AMT * const namtp = (AMT*)nmg->mg_ptr;
10850                     sv_dup_inc_multiple((SV**)(namtp->table),
10851                                         (SV**)(namtp->table), NofAMmeth, param);
10852                 }
10853             }
10854             else if (nmg->mg_len == HEf_SVKEY)
10855                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
10856         }
10857         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
10858             CALL_FPTR(nmg->mg_virtual->svt_dup)(aTHX_ nmg, param);
10859         }
10860     }
10861     return mgret;
10862 }
10863
10864 #endif /* USE_ITHREADS */
10865
10866 struct ptr_tbl_arena {
10867     struct ptr_tbl_arena *next;
10868     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
10869 };
10870
10871 /* create a new pointer-mapping table */
10872
10873 PTR_TBL_t *
10874 Perl_ptr_table_new(pTHX)
10875 {
10876     PTR_TBL_t *tbl;
10877     PERL_UNUSED_CONTEXT;
10878
10879     Newx(tbl, 1, PTR_TBL_t);
10880     tbl->tbl_max        = 511;
10881     tbl->tbl_items      = 0;
10882     tbl->tbl_arena      = NULL;
10883     tbl->tbl_arena_next = NULL;
10884     tbl->tbl_arena_end  = NULL;
10885     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
10886     return tbl;
10887 }
10888
10889 #define PTR_TABLE_HASH(ptr) \
10890   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
10891
10892 /* map an existing pointer using a table */
10893
10894 STATIC PTR_TBL_ENT_t *
10895 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
10896 {
10897     PTR_TBL_ENT_t *tblent;
10898     const UV hash = PTR_TABLE_HASH(sv);
10899
10900     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
10901
10902     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
10903     for (; tblent; tblent = tblent->next) {
10904         if (tblent->oldval == sv)
10905             return tblent;
10906     }
10907     return NULL;
10908 }
10909
10910 void *
10911 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
10912 {
10913     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
10914
10915     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
10916     PERL_UNUSED_CONTEXT;
10917
10918     return tblent ? tblent->newval : NULL;
10919 }
10920
10921 /* add a new entry to a pointer-mapping table */
10922
10923 void
10924 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
10925 {
10926     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
10927
10928     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
10929     PERL_UNUSED_CONTEXT;
10930
10931     if (tblent) {
10932         tblent->newval = newsv;
10933     } else {
10934         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
10935
10936         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
10937             struct ptr_tbl_arena *new_arena;
10938
10939             Newx(new_arena, 1, struct ptr_tbl_arena);
10940             new_arena->next = tbl->tbl_arena;
10941             tbl->tbl_arena = new_arena;
10942             tbl->tbl_arena_next = new_arena->array;
10943             tbl->tbl_arena_end = new_arena->array
10944                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
10945         }
10946
10947         tblent = tbl->tbl_arena_next++;
10948
10949         tblent->oldval = oldsv;
10950         tblent->newval = newsv;
10951         tblent->next = tbl->tbl_ary[entry];
10952         tbl->tbl_ary[entry] = tblent;
10953         tbl->tbl_items++;
10954         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
10955             ptr_table_split(tbl);
10956     }
10957 }
10958
10959 /* double the hash bucket size of an existing ptr table */
10960
10961 void
10962 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
10963 {
10964     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
10965     const UV oldsize = tbl->tbl_max + 1;
10966     UV newsize = oldsize * 2;
10967     UV i;
10968
10969     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
10970     PERL_UNUSED_CONTEXT;
10971
10972     Renew(ary, newsize, PTR_TBL_ENT_t*);
10973     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
10974     tbl->tbl_max = --newsize;
10975     tbl->tbl_ary = ary;
10976     for (i=0; i < oldsize; i++, ary++) {
10977         PTR_TBL_ENT_t **entp = ary;
10978         PTR_TBL_ENT_t *ent = *ary;
10979         PTR_TBL_ENT_t **curentp;
10980         if (!ent)
10981             continue;
10982         curentp = ary + oldsize;
10983         do {
10984             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
10985                 *entp = ent->next;
10986                 ent->next = *curentp;
10987                 *curentp = ent;
10988             }
10989             else
10990                 entp = &ent->next;
10991             ent = *entp;
10992         } while (ent);
10993     }
10994 }
10995
10996 /* remove all the entries from a ptr table */
10997 /* Deprecated - will be removed post 5.14 */
10998
10999 void
11000 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
11001 {
11002     if (tbl && tbl->tbl_items) {
11003         struct ptr_tbl_arena *arena = tbl->tbl_arena;
11004
11005         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
11006
11007         while (arena) {
11008             struct ptr_tbl_arena *next = arena->next;
11009
11010             Safefree(arena);
11011             arena = next;
11012         };
11013
11014         tbl->tbl_items = 0;
11015         tbl->tbl_arena = NULL;
11016         tbl->tbl_arena_next = NULL;
11017         tbl->tbl_arena_end = NULL;
11018     }
11019 }
11020
11021 /* clear and free a ptr table */
11022
11023 void
11024 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
11025 {
11026     struct ptr_tbl_arena *arena;
11027
11028     if (!tbl) {
11029         return;
11030     }
11031
11032     arena = tbl->tbl_arena;
11033
11034     while (arena) {
11035         struct ptr_tbl_arena *next = arena->next;
11036
11037         Safefree(arena);
11038         arena = next;
11039     }
11040
11041     Safefree(tbl->tbl_ary);
11042     Safefree(tbl);
11043 }
11044
11045 #if defined(USE_ITHREADS)
11046
11047 void
11048 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
11049 {
11050     PERL_ARGS_ASSERT_RVPV_DUP;
11051
11052     if (SvROK(sstr)) {
11053         if (SvWEAKREF(sstr)) {
11054             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
11055             if (param->flags & CLONEf_JOIN_IN) {
11056                 /* if joining, we add any back references individually rather
11057                  * than copying the whole backref array */
11058                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
11059             }
11060         }
11061         else
11062             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
11063     }
11064     else if (SvPVX_const(sstr)) {
11065         /* Has something there */
11066         if (SvLEN(sstr)) {
11067             /* Normal PV - clone whole allocated space */
11068             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
11069             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
11070                 /* Not that normal - actually sstr is copy on write.
11071                    But we are a true, independant SV, so:  */
11072                 SvREADONLY_off(dstr);
11073                 SvFAKE_off(dstr);
11074             }
11075         }
11076         else {
11077             /* Special case - not normally malloced for some reason */
11078             if (isGV_with_GP(sstr)) {
11079                 /* Don't need to do anything here.  */
11080             }
11081             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
11082                 /* A "shared" PV - clone it as "shared" PV */
11083                 SvPV_set(dstr,
11084                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
11085                                          param)));
11086             }
11087             else {
11088                 /* Some other special case - random pointer */
11089                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
11090             }
11091         }
11092     }
11093     else {
11094         /* Copy the NULL */
11095         SvPV_set(dstr, NULL);
11096     }
11097 }
11098
11099 /* duplicate a list of SVs. source and dest may point to the same memory.  */
11100 static SV **
11101 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
11102                       SSize_t items, CLONE_PARAMS *const param)
11103 {
11104     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
11105
11106     while (items-- > 0) {
11107         *dest++ = sv_dup_inc(*source++, param);
11108     }
11109
11110     return dest;
11111 }
11112
11113 /* duplicate an SV of any type (including AV, HV etc) */
11114
11115 static SV *
11116 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11117 {
11118     dVAR;
11119     SV *dstr;
11120
11121     PERL_ARGS_ASSERT_SV_DUP_COMMON;
11122
11123     if (SvTYPE(sstr) == SVTYPEMASK) {
11124 #ifdef DEBUG_LEAKING_SCALARS_ABORT
11125         abort();
11126 #endif
11127         return NULL;
11128     }
11129     /* look for it in the table first */
11130     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
11131     if (dstr)
11132         return dstr;
11133
11134     if(param->flags & CLONEf_JOIN_IN) {
11135         /** We are joining here so we don't want do clone
11136             something that is bad **/
11137         if (SvTYPE(sstr) == SVt_PVHV) {
11138             const HEK * const hvname = HvNAME_HEK(sstr);
11139             if (hvname) {
11140                 /** don't clone stashes if they already exist **/
11141                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname), 0));
11142                 ptr_table_store(PL_ptr_table, sstr, dstr);
11143                 return dstr;
11144             }
11145         }
11146     }
11147
11148     /* create anew and remember what it is */
11149     new_SV(dstr);
11150
11151 #ifdef DEBUG_LEAKING_SCALARS
11152     dstr->sv_debug_optype = sstr->sv_debug_optype;
11153     dstr->sv_debug_line = sstr->sv_debug_line;
11154     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
11155     dstr->sv_debug_cloned = 1;
11156     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
11157 #endif
11158
11159     ptr_table_store(PL_ptr_table, sstr, dstr);
11160
11161     /* clone */
11162     SvFLAGS(dstr)       = SvFLAGS(sstr);
11163     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
11164     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
11165
11166 #ifdef DEBUGGING
11167     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
11168         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
11169                       (void*)PL_watch_pvx, SvPVX_const(sstr));
11170 #endif
11171
11172     /* don't clone objects whose class has asked us not to */
11173     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
11174         SvFLAGS(dstr) = 0;
11175         return dstr;
11176     }
11177
11178     switch (SvTYPE(sstr)) {
11179     case SVt_NULL:
11180         SvANY(dstr)     = NULL;
11181         break;
11182     case SVt_IV:
11183         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
11184         if(SvROK(sstr)) {
11185             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11186         } else {
11187             SvIV_set(dstr, SvIVX(sstr));
11188         }
11189         break;
11190     case SVt_NV:
11191         SvANY(dstr)     = new_XNV();
11192         SvNV_set(dstr, SvNVX(sstr));
11193         break;
11194         /* case SVt_BIND: */
11195     default:
11196         {
11197             /* These are all the types that need complex bodies allocating.  */
11198             void *new_body;
11199             const svtype sv_type = SvTYPE(sstr);
11200             const struct body_details *const sv_type_details
11201                 = bodies_by_type + sv_type;
11202
11203             switch (sv_type) {
11204             default:
11205                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
11206                 break;
11207
11208             case SVt_PVGV:
11209             case SVt_PVIO:
11210             case SVt_PVFM:
11211             case SVt_PVHV:
11212             case SVt_PVAV:
11213             case SVt_PVCV:
11214             case SVt_PVLV:
11215             case SVt_REGEXP:
11216             case SVt_PVMG:
11217             case SVt_PVNV:
11218             case SVt_PVIV:
11219             case SVt_PV:
11220                 assert(sv_type_details->body_size);
11221                 if (sv_type_details->arena) {
11222                     new_body_inline(new_body, sv_type);
11223                     new_body
11224                         = (void*)((char*)new_body - sv_type_details->offset);
11225                 } else {
11226                     new_body = new_NOARENA(sv_type_details);
11227                 }
11228             }
11229             assert(new_body);
11230             SvANY(dstr) = new_body;
11231
11232 #ifndef PURIFY
11233             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
11234                  ((char*)SvANY(dstr)) + sv_type_details->offset,
11235                  sv_type_details->copy, char);
11236 #else
11237             Copy(((char*)SvANY(sstr)),
11238                  ((char*)SvANY(dstr)),
11239                  sv_type_details->body_size + sv_type_details->offset, char);
11240 #endif
11241
11242             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
11243                 && !isGV_with_GP(dstr)
11244                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
11245                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11246
11247             /* The Copy above means that all the source (unduplicated) pointers
11248                are now in the destination.  We can check the flags and the
11249                pointers in either, but it's possible that there's less cache
11250                missing by always going for the destination.
11251                FIXME - instrument and check that assumption  */
11252             if (sv_type >= SVt_PVMG) {
11253                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
11254                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
11255                 } else if (SvMAGIC(dstr))
11256                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
11257                 if (SvSTASH(dstr))
11258                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
11259             }
11260
11261             /* The cast silences a GCC warning about unhandled types.  */
11262             switch ((int)sv_type) {
11263             case SVt_PV:
11264                 break;
11265             case SVt_PVIV:
11266                 break;
11267             case SVt_PVNV:
11268                 break;
11269             case SVt_PVMG:
11270                 break;
11271             case SVt_REGEXP:
11272                 /* FIXME for plugins */
11273                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
11274                 break;
11275             case SVt_PVLV:
11276                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
11277                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
11278                     LvTARG(dstr) = dstr;
11279                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
11280                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
11281                 else
11282                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
11283             case SVt_PVGV:
11284                 if(isGV_with_GP(sstr)) {
11285                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
11286                     /* Don't call sv_add_backref here as it's going to be
11287                        created as part of the magic cloning of the symbol
11288                        table--unless this is during a join and the stash
11289                        is not actually being cloned.  */
11290                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
11291                        at the point of this comment.  */
11292                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
11293                     if (param->flags & CLONEf_JOIN_IN)
11294                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
11295                     GvGP(dstr)  = gp_dup(GvGP(sstr), param);
11296                     (void)GpREFCNT_inc(GvGP(dstr));
11297                 } else
11298                     Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11299                 break;
11300             case SVt_PVIO:
11301                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
11302                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
11303                     /* I have no idea why fake dirp (rsfps)
11304                        should be treated differently but otherwise
11305                        we end up with leaks -- sky*/
11306                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
11307                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
11308                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
11309                 } else {
11310                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
11311                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
11312                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
11313                     if (IoDIRP(dstr)) {
11314                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr));
11315                     } else {
11316                         NOOP;
11317                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
11318                     }
11319                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
11320                 }
11321                 if (IoOFP(dstr) == IoIFP(sstr))
11322                     IoOFP(dstr) = IoIFP(dstr);
11323                 else
11324                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
11325                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
11326                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
11327                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
11328                 break;
11329             case SVt_PVAV:
11330                 /* avoid cloning an empty array */
11331                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
11332                     SV **dst_ary, **src_ary;
11333                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
11334
11335                     src_ary = AvARRAY((const AV *)sstr);
11336                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
11337                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
11338                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
11339                     AvALLOC((const AV *)dstr) = dst_ary;
11340                     if (AvREAL((const AV *)sstr)) {
11341                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
11342                                                       param);
11343                     }
11344                     else {
11345                         while (items-- > 0)
11346                             *dst_ary++ = sv_dup(*src_ary++, param);
11347                     }
11348                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
11349                     while (items-- > 0) {
11350                         *dst_ary++ = &PL_sv_undef;
11351                     }
11352                 }
11353                 else {
11354                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
11355                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
11356                     AvMAX(  (const AV *)dstr)   = -1;
11357                     AvFILLp((const AV *)dstr)   = -1;
11358                 }
11359                 break;
11360             case SVt_PVHV:
11361                 if (HvARRAY((const HV *)sstr)) {
11362                     STRLEN i = 0;
11363                     const bool sharekeys = !!HvSHAREKEYS(sstr);
11364                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
11365                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
11366                     char *darray;
11367                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
11368                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
11369                         char);
11370                     HvARRAY(dstr) = (HE**)darray;
11371                     while (i <= sxhv->xhv_max) {
11372                         const HE * const source = HvARRAY(sstr)[i];
11373                         HvARRAY(dstr)[i] = source
11374                             ? he_dup(source, sharekeys, param) : 0;
11375                         ++i;
11376                     }
11377                     if (SvOOK(sstr)) {
11378                         HEK *hvname;
11379                         const struct xpvhv_aux * const saux = HvAUX(sstr);
11380                         struct xpvhv_aux * const daux = HvAUX(dstr);
11381                         /* This flag isn't copied.  */
11382                         /* SvOOK_on(hv) attacks the IV flags.  */
11383                         SvFLAGS(dstr) |= SVf_OOK;
11384
11385                         hvname = saux->xhv_name;
11386                         daux->xhv_name = hek_dup(hvname, param);
11387
11388                         daux->xhv_riter = saux->xhv_riter;
11389                         daux->xhv_eiter = saux->xhv_eiter
11390                             ? he_dup(saux->xhv_eiter,
11391                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
11392                         /* backref array needs refcnt=2; see sv_add_backref */
11393                         daux->xhv_backreferences =
11394                             (param->flags & CLONEf_JOIN_IN)
11395                                 /* when joining, we let the individual GVs and
11396                                  * CVs add themselves to backref as
11397                                  * needed. This avoids pulling in stuff
11398                                  * that isn't required, and simplifies the
11399                                  * case where stashes aren't cloned back
11400                                  * if they already exist in the parent
11401                                  * thread */
11402                             ? NULL
11403                             : saux->xhv_backreferences
11404                             ? MUTABLE_AV(SvREFCNT_inc(
11405                                                       sv_dup_inc((const SV *)saux->xhv_backreferences, param)))
11406                                 : 0;
11407
11408                         daux->xhv_mro_meta = saux->xhv_mro_meta
11409                             ? mro_meta_dup(saux->xhv_mro_meta, param)
11410                             : 0;
11411
11412                         /* Record stashes for possible cloning in Perl_clone(). */
11413                         if (hvname)
11414                             av_push(param->stashes, dstr);
11415                     }
11416                 }
11417                 else
11418                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
11419                 break;
11420             case SVt_PVCV:
11421                 if (!(param->flags & CLONEf_COPY_STACKS)) {
11422                     CvDEPTH(dstr) = 0;
11423                 }
11424                 /*FALLTHROUGH*/
11425             case SVt_PVFM:
11426                 /* NOTE: not refcounted */
11427                 CvSTASH(dstr)   = hv_dup(CvSTASH(dstr), param);
11428                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
11429                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
11430                 OP_REFCNT_LOCK;
11431                 if (!CvISXSUB(dstr))
11432                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
11433                 OP_REFCNT_UNLOCK;
11434                 if (CvCONST(dstr) && CvISXSUB(dstr)) {
11435                     CvXSUBANY(dstr).any_ptr =
11436                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
11437                 }
11438                 /* don't dup if copying back - CvGV isn't refcounted, so the
11439                  * duped GV may never be freed. A bit of a hack! DAPM */
11440                 CvGV(dstr) =
11441                     CvANON(dstr)
11442                     ? gv_dup_inc(CvGV(sstr), param)
11443                     : (param->flags & CLONEf_JOIN_IN)
11444                         ? NULL
11445                         : gv_dup(CvGV(sstr), param);
11446
11447                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
11448                 CvOUTSIDE(dstr) =
11449                     CvWEAKOUTSIDE(sstr)
11450                     ? cv_dup(    CvOUTSIDE(dstr), param)
11451                     : cv_dup_inc(CvOUTSIDE(dstr), param);
11452                 if (!CvISXSUB(dstr))
11453                     CvFILE(dstr) = SAVEPV(CvFILE(dstr));
11454                 break;
11455             }
11456         }
11457     }
11458
11459     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
11460         ++PL_sv_objcount;
11461
11462     return dstr;
11463  }
11464
11465 SV *
11466 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11467 {
11468     PERL_ARGS_ASSERT_SV_DUP_INC;
11469     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
11470 }
11471
11472 SV *
11473 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11474 {
11475     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
11476     PERL_ARGS_ASSERT_SV_DUP;
11477
11478     /* Track every SV that (at least initially) had a reference count of 0.
11479        We need to do this by holding an actual reference to it in this array.
11480        If we attempt to cheat, turn AvREAL_off(), and store only pointers
11481        (akin to the stashes hash, and the perl stack), we come unstuck if
11482        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
11483        thread) is manipulated in a CLONE method, because CLONE runs before the
11484        unreferenced array is walked to find SVs still with SvREFCNT() == 0
11485        (and fix things up by giving each a reference via the temps stack).
11486        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
11487        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
11488        before the walk of unreferenced happens and a reference to that is SV
11489        added to the temps stack. At which point we have the same SV considered
11490        to be in use, and free to be re-used. Not good.
11491     */
11492     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
11493         assert(param->unreferenced);
11494         av_push(param->unreferenced, SvREFCNT_inc(dstr));
11495     }
11496
11497     return dstr;
11498 }
11499
11500 /* duplicate a context */
11501
11502 PERL_CONTEXT *
11503 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
11504 {
11505     PERL_CONTEXT *ncxs;
11506
11507     PERL_ARGS_ASSERT_CX_DUP;
11508
11509     if (!cxs)
11510         return (PERL_CONTEXT*)NULL;
11511
11512     /* look for it in the table first */
11513     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
11514     if (ncxs)
11515         return ncxs;
11516
11517     /* create anew and remember what it is */
11518     Newx(ncxs, max + 1, PERL_CONTEXT);
11519     ptr_table_store(PL_ptr_table, cxs, ncxs);
11520     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
11521
11522     while (ix >= 0) {
11523         PERL_CONTEXT * const ncx = &ncxs[ix];
11524         if (CxTYPE(ncx) == CXt_SUBST) {
11525             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
11526         }
11527         else {
11528             switch (CxTYPE(ncx)) {
11529             case CXt_SUB:
11530                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
11531                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
11532                                            : cv_dup(ncx->blk_sub.cv,param));
11533                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
11534                                            ? av_dup_inc(ncx->blk_sub.argarray,
11535                                                         param)
11536                                            : NULL);
11537                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
11538                                                      param);
11539                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
11540                                            ncx->blk_sub.oldcomppad);
11541                 break;
11542             case CXt_EVAL:
11543                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
11544                                                       param);
11545                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
11546                 break;
11547             case CXt_LOOP_LAZYSV:
11548                 ncx->blk_loop.state_u.lazysv.end
11549                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
11550                 /* We are taking advantage of av_dup_inc and sv_dup_inc
11551                    actually being the same function, and order equivalance of
11552                    the two unions.
11553                    We can assert the later [but only at run time :-(]  */
11554                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
11555                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
11556             case CXt_LOOP_FOR:
11557                 ncx->blk_loop.state_u.ary.ary
11558                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
11559             case CXt_LOOP_LAZYIV:
11560             case CXt_LOOP_PLAIN:
11561                 if (CxPADLOOP(ncx)) {
11562                     ncx->blk_loop.oldcomppad
11563                         = (PAD*)ptr_table_fetch(PL_ptr_table,
11564                                                 ncx->blk_loop.oldcomppad);
11565                 } else {
11566                     ncx->blk_loop.oldcomppad
11567                         = (PAD*)gv_dup((const GV *)ncx->blk_loop.oldcomppad,
11568                                        param);
11569                 }
11570                 break;
11571             case CXt_FORMAT:
11572                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
11573                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
11574                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
11575                                                      param);
11576                 break;
11577             case CXt_BLOCK:
11578             case CXt_NULL:
11579                 break;
11580             }
11581         }
11582         --ix;
11583     }
11584     return ncxs;
11585 }
11586
11587 /* duplicate a stack info structure */
11588
11589 PERL_SI *
11590 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
11591 {
11592     PERL_SI *nsi;
11593
11594     PERL_ARGS_ASSERT_SI_DUP;
11595
11596     if (!si)
11597         return (PERL_SI*)NULL;
11598
11599     /* look for it in the table first */
11600     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
11601     if (nsi)
11602         return nsi;
11603
11604     /* create anew and remember what it is */
11605     Newxz(nsi, 1, PERL_SI);
11606     ptr_table_store(PL_ptr_table, si, nsi);
11607
11608     nsi->si_stack       = av_dup_inc(si->si_stack, param);
11609     nsi->si_cxix        = si->si_cxix;
11610     nsi->si_cxmax       = si->si_cxmax;
11611     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
11612     nsi->si_type        = si->si_type;
11613     nsi->si_prev        = si_dup(si->si_prev, param);
11614     nsi->si_next        = si_dup(si->si_next, param);
11615     nsi->si_markoff     = si->si_markoff;
11616
11617     return nsi;
11618 }
11619
11620 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
11621 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
11622 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
11623 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
11624 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
11625 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
11626 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
11627 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
11628 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
11629 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
11630 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
11631 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
11632 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
11633 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
11634 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
11635 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
11636
11637 /* XXXXX todo */
11638 #define pv_dup_inc(p)   SAVEPV(p)
11639 #define pv_dup(p)       SAVEPV(p)
11640 #define svp_dup_inc(p,pp)       any_dup(p,pp)
11641
11642 /* map any object to the new equivent - either something in the
11643  * ptr table, or something in the interpreter structure
11644  */
11645
11646 void *
11647 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
11648 {
11649     void *ret;
11650
11651     PERL_ARGS_ASSERT_ANY_DUP;
11652
11653     if (!v)
11654         return (void*)NULL;
11655
11656     /* look for it in the table first */
11657     ret = ptr_table_fetch(PL_ptr_table, v);
11658     if (ret)
11659         return ret;
11660
11661     /* see if it is part of the interpreter structure */
11662     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
11663         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
11664     else {
11665         ret = v;
11666     }
11667
11668     return ret;
11669 }
11670
11671 /* duplicate the save stack */
11672
11673 ANY *
11674 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
11675 {
11676     dVAR;
11677     ANY * const ss      = proto_perl->Isavestack;
11678     const I32 max       = proto_perl->Isavestack_max;
11679     I32 ix              = proto_perl->Isavestack_ix;
11680     ANY *nss;
11681     const SV *sv;
11682     const GV *gv;
11683     const AV *av;
11684     const HV *hv;
11685     void* ptr;
11686     int intval;
11687     long longval;
11688     GP *gp;
11689     IV iv;
11690     I32 i;
11691     char *c = NULL;
11692     void (*dptr) (void*);
11693     void (*dxptr) (pTHX_ void*);
11694
11695     PERL_ARGS_ASSERT_SS_DUP;
11696
11697     Newxz(nss, max, ANY);
11698
11699     while (ix > 0) {
11700         const UV uv = POPUV(ss,ix);
11701         const U8 type = (U8)uv & SAVE_MASK;
11702
11703         TOPUV(nss,ix) = uv;
11704         switch (type) {
11705         case SAVEt_CLEARSV:
11706             break;
11707         case SAVEt_HELEM:               /* hash element */
11708             sv = (const SV *)POPPTR(ss,ix);
11709             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11710             /* fall through */
11711         case SAVEt_ITEM:                        /* normal string */
11712         case SAVEt_SV:                          /* scalar reference */
11713             sv = (const SV *)POPPTR(ss,ix);
11714             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11715             /* fall through */
11716         case SAVEt_FREESV:
11717         case SAVEt_MORTALIZESV:
11718             sv = (const SV *)POPPTR(ss,ix);
11719             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11720             break;
11721         case SAVEt_SHARED_PVREF:                /* char* in shared space */
11722             c = (char*)POPPTR(ss,ix);
11723             TOPPTR(nss,ix) = savesharedpv(c);
11724             ptr = POPPTR(ss,ix);
11725             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11726             break;
11727         case SAVEt_GENERIC_SVREF:               /* generic sv */
11728         case SAVEt_SVREF:                       /* scalar reference */
11729             sv = (const SV *)POPPTR(ss,ix);
11730             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11731             ptr = POPPTR(ss,ix);
11732             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
11733             break;
11734         case SAVEt_HV:                          /* hash reference */
11735         case SAVEt_AV:                          /* array reference */
11736             sv = (const SV *) POPPTR(ss,ix);
11737             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11738             /* fall through */
11739         case SAVEt_COMPPAD:
11740         case SAVEt_NSTAB:
11741             sv = (const SV *) POPPTR(ss,ix);
11742             TOPPTR(nss,ix) = sv_dup(sv, param);
11743             break;
11744         case SAVEt_INT:                         /* int reference */
11745             ptr = POPPTR(ss,ix);
11746             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11747             intval = (int)POPINT(ss,ix);
11748             TOPINT(nss,ix) = intval;
11749             break;
11750         case SAVEt_LONG:                        /* long reference */
11751             ptr = POPPTR(ss,ix);
11752             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11753             longval = (long)POPLONG(ss,ix);
11754             TOPLONG(nss,ix) = longval;
11755             break;
11756         case SAVEt_I32:                         /* I32 reference */
11757         case SAVEt_COP_ARYBASE:                 /* call CopARYBASE_set */
11758             ptr = POPPTR(ss,ix);
11759             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11760             i = POPINT(ss,ix);
11761             TOPINT(nss,ix) = i;
11762             break;
11763         case SAVEt_IV:                          /* IV reference */
11764             ptr = POPPTR(ss,ix);
11765             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11766             iv = POPIV(ss,ix);
11767             TOPIV(nss,ix) = iv;
11768             break;
11769         case SAVEt_HPTR:                        /* HV* reference */
11770         case SAVEt_APTR:                        /* AV* reference */
11771         case SAVEt_SPTR:                        /* SV* reference */
11772             ptr = POPPTR(ss,ix);
11773             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11774             sv = (const SV *)POPPTR(ss,ix);
11775             TOPPTR(nss,ix) = sv_dup(sv, param);
11776             break;
11777         case SAVEt_VPTR:                        /* random* reference */
11778             ptr = POPPTR(ss,ix);
11779             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11780             /* Fall through */
11781         case SAVEt_INT_SMALL:
11782         case SAVEt_I32_SMALL:
11783         case SAVEt_I16:                         /* I16 reference */
11784         case SAVEt_I8:                          /* I8 reference */
11785         case SAVEt_BOOL:
11786             ptr = POPPTR(ss,ix);
11787             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11788             break;
11789         case SAVEt_GENERIC_PVREF:               /* generic char* */
11790         case SAVEt_PPTR:                        /* char* reference */
11791             ptr = POPPTR(ss,ix);
11792             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11793             c = (char*)POPPTR(ss,ix);
11794             TOPPTR(nss,ix) = pv_dup(c);
11795             break;
11796         case SAVEt_GP:                          /* scalar reference */
11797             gv = (const GV *)POPPTR(ss,ix);
11798             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
11799             gp = (GP*)POPPTR(ss,ix);
11800             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
11801             (void)GpREFCNT_inc(gp);
11802             i = POPINT(ss,ix);
11803             TOPINT(nss,ix) = i;
11804             break;
11805         case SAVEt_FREEOP:
11806             ptr = POPPTR(ss,ix);
11807             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
11808                 /* these are assumed to be refcounted properly */
11809                 OP *o;
11810                 switch (((OP*)ptr)->op_type) {
11811                 case OP_LEAVESUB:
11812                 case OP_LEAVESUBLV:
11813                 case OP_LEAVEEVAL:
11814                 case OP_LEAVE:
11815                 case OP_SCOPE:
11816                 case OP_LEAVEWRITE:
11817                     TOPPTR(nss,ix) = ptr;
11818                     o = (OP*)ptr;
11819                     OP_REFCNT_LOCK;
11820                     (void) OpREFCNT_inc(o);
11821                     OP_REFCNT_UNLOCK;
11822                     break;
11823                 default:
11824                     TOPPTR(nss,ix) = NULL;
11825                     break;
11826                 }
11827             }
11828             else
11829                 TOPPTR(nss,ix) = NULL;
11830             break;
11831         case SAVEt_DELETE:
11832             hv = (const HV *)POPPTR(ss,ix);
11833             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11834             i = POPINT(ss,ix);
11835             TOPINT(nss,ix) = i;
11836             /* Fall through */
11837         case SAVEt_FREEPV:
11838             c = (char*)POPPTR(ss,ix);
11839             TOPPTR(nss,ix) = pv_dup_inc(c);
11840             break;
11841         case SAVEt_STACK_POS:           /* Position on Perl stack */
11842             i = POPINT(ss,ix);
11843             TOPINT(nss,ix) = i;
11844             break;
11845         case SAVEt_DESTRUCTOR:
11846             ptr = POPPTR(ss,ix);
11847             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11848             dptr = POPDPTR(ss,ix);
11849             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
11850                                         any_dup(FPTR2DPTR(void *, dptr),
11851                                                 proto_perl));
11852             break;
11853         case SAVEt_DESTRUCTOR_X:
11854             ptr = POPPTR(ss,ix);
11855             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
11856             dxptr = POPDXPTR(ss,ix);
11857             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
11858                                          any_dup(FPTR2DPTR(void *, dxptr),
11859                                                  proto_perl));
11860             break;
11861         case SAVEt_REGCONTEXT:
11862         case SAVEt_ALLOC:
11863             ix -= uv >> SAVE_TIGHT_SHIFT;
11864             break;
11865         case SAVEt_AELEM:               /* array element */
11866             sv = (const SV *)POPPTR(ss,ix);
11867             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11868             i = POPINT(ss,ix);
11869             TOPINT(nss,ix) = i;
11870             av = (const AV *)POPPTR(ss,ix);
11871             TOPPTR(nss,ix) = av_dup_inc(av, param);
11872             break;
11873         case SAVEt_OP:
11874             ptr = POPPTR(ss,ix);
11875             TOPPTR(nss,ix) = ptr;
11876             break;
11877         case SAVEt_HINTS:
11878             ptr = POPPTR(ss,ix);
11879             if (ptr) {
11880                 HINTS_REFCNT_LOCK;
11881                 ((struct refcounted_he *)ptr)->refcounted_he_refcnt++;
11882                 HINTS_REFCNT_UNLOCK;
11883             }
11884             TOPPTR(nss,ix) = ptr;
11885             i = POPINT(ss,ix);
11886             TOPINT(nss,ix) = i;
11887             if (i & HINT_LOCALIZE_HH) {
11888                 hv = (const HV *)POPPTR(ss,ix);
11889                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
11890             }
11891             break;
11892         case SAVEt_PADSV_AND_MORTALIZE:
11893             longval = (long)POPLONG(ss,ix);
11894             TOPLONG(nss,ix) = longval;
11895             ptr = POPPTR(ss,ix);
11896             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
11897             sv = (const SV *)POPPTR(ss,ix);
11898             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
11899             break;
11900         case SAVEt_SET_SVFLAGS:
11901             i = POPINT(ss,ix);
11902             TOPINT(nss,ix) = i;
11903             i = POPINT(ss,ix);
11904             TOPINT(nss,ix) = i;
11905             sv = (const SV *)POPPTR(ss,ix);
11906             TOPPTR(nss,ix) = sv_dup(sv, param);
11907             break;
11908         case SAVEt_RE_STATE:
11909             {
11910                 const struct re_save_state *const old_state
11911                     = (struct re_save_state *)
11912                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
11913                 struct re_save_state *const new_state
11914                     = (struct re_save_state *)
11915                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
11916
11917                 Copy(old_state, new_state, 1, struct re_save_state);
11918                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
11919
11920                 new_state->re_state_bostr
11921                     = pv_dup(old_state->re_state_bostr);
11922                 new_state->re_state_reginput
11923                     = pv_dup(old_state->re_state_reginput);
11924                 new_state->re_state_regeol
11925                     = pv_dup(old_state->re_state_regeol);
11926                 new_state->re_state_regoffs
11927                     = (regexp_paren_pair*)
11928                         any_dup(old_state->re_state_regoffs, proto_perl);
11929                 new_state->re_state_reglastparen
11930                     = (U32*) any_dup(old_state->re_state_reglastparen, 
11931                               proto_perl);
11932                 new_state->re_state_reglastcloseparen
11933                     = (U32*)any_dup(old_state->re_state_reglastcloseparen,
11934                               proto_perl);
11935                 /* XXX This just has to be broken. The old save_re_context
11936                    code did SAVEGENERICPV(PL_reg_start_tmp);
11937                    PL_reg_start_tmp is char **.
11938                    Look above to what the dup code does for
11939                    SAVEt_GENERIC_PVREF
11940                    It can never have worked.
11941                    So this is merely a faithful copy of the exiting bug:  */
11942                 new_state->re_state_reg_start_tmp
11943                     = (char **) pv_dup((char *)
11944                                       old_state->re_state_reg_start_tmp);
11945                 /* I assume that it only ever "worked" because no-one called
11946                    (pseudo)fork while the regexp engine had re-entered itself.
11947                 */
11948 #ifdef PERL_OLD_COPY_ON_WRITE
11949                 new_state->re_state_nrs
11950                     = sv_dup(old_state->re_state_nrs, param);
11951 #endif
11952                 new_state->re_state_reg_magic
11953                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
11954                                proto_perl);
11955                 new_state->re_state_reg_oldcurpm
11956                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
11957                               proto_perl);
11958                 new_state->re_state_reg_curpm
11959                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
11960                                proto_perl);
11961                 new_state->re_state_reg_oldsaved
11962                     = pv_dup(old_state->re_state_reg_oldsaved);
11963                 new_state->re_state_reg_poscache
11964                     = pv_dup(old_state->re_state_reg_poscache);
11965                 new_state->re_state_reg_starttry
11966                     = pv_dup(old_state->re_state_reg_starttry);
11967                 break;
11968             }
11969         case SAVEt_COMPILE_WARNINGS:
11970             ptr = POPPTR(ss,ix);
11971             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
11972             break;
11973         case SAVEt_PARSER:
11974             ptr = POPPTR(ss,ix);
11975             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
11976             break;
11977         default:
11978             Perl_croak(aTHX_
11979                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
11980         }
11981     }
11982
11983     return nss;
11984 }
11985
11986
11987 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
11988  * flag to the result. This is done for each stash before cloning starts,
11989  * so we know which stashes want their objects cloned */
11990
11991 static void
11992 do_mark_cloneable_stash(pTHX_ SV *const sv)
11993 {
11994     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
11995     if (hvname) {
11996         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
11997         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
11998         if (cloner && GvCV(cloner)) {
11999             dSP;
12000             UV status;
12001
12002             ENTER;
12003             SAVETMPS;
12004             PUSHMARK(SP);
12005             mXPUSHs(newSVhek(hvname));
12006             PUTBACK;
12007             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
12008             SPAGAIN;
12009             status = POPu;
12010             PUTBACK;
12011             FREETMPS;
12012             LEAVE;
12013             if (status)
12014                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
12015         }
12016     }
12017 }
12018
12019
12020
12021 /*
12022 =for apidoc perl_clone
12023
12024 Create and return a new interpreter by cloning the current one.
12025
12026 perl_clone takes these flags as parameters:
12027
12028 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
12029 without it we only clone the data and zero the stacks,
12030 with it we copy the stacks and the new perl interpreter is
12031 ready to run at the exact same point as the previous one.
12032 The pseudo-fork code uses COPY_STACKS while the
12033 threads->create doesn't.
12034
12035 CLONEf_KEEP_PTR_TABLE
12036 perl_clone keeps a ptr_table with the pointer of the old
12037 variable as a key and the new variable as a value,
12038 this allows it to check if something has been cloned and not
12039 clone it again but rather just use the value and increase the
12040 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
12041 the ptr_table using the function
12042 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
12043 reason to keep it around is if you want to dup some of your own
12044 variable who are outside the graph perl scans, example of this
12045 code is in threads.xs create
12046
12047 CLONEf_CLONE_HOST
12048 This is a win32 thing, it is ignored on unix, it tells perls
12049 win32host code (which is c++) to clone itself, this is needed on
12050 win32 if you want to run two threads at the same time,
12051 if you just want to do some stuff in a separate perl interpreter
12052 and then throw it away and return to the original one,
12053 you don't need to do anything.
12054
12055 =cut
12056 */
12057
12058 /* XXX the above needs expanding by someone who actually understands it ! */
12059 EXTERN_C PerlInterpreter *
12060 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
12061
12062 PerlInterpreter *
12063 perl_clone(PerlInterpreter *proto_perl, UV flags)
12064 {
12065    dVAR;
12066 #ifdef PERL_IMPLICIT_SYS
12067
12068     PERL_ARGS_ASSERT_PERL_CLONE;
12069
12070    /* perlhost.h so we need to call into it
12071    to clone the host, CPerlHost should have a c interface, sky */
12072
12073    if (flags & CLONEf_CLONE_HOST) {
12074        return perl_clone_host(proto_perl,flags);
12075    }
12076    return perl_clone_using(proto_perl, flags,
12077                             proto_perl->IMem,
12078                             proto_perl->IMemShared,
12079                             proto_perl->IMemParse,
12080                             proto_perl->IEnv,
12081                             proto_perl->IStdIO,
12082                             proto_perl->ILIO,
12083                             proto_perl->IDir,
12084                             proto_perl->ISock,
12085                             proto_perl->IProc);
12086 }
12087
12088 PerlInterpreter *
12089 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
12090                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
12091                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
12092                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
12093                  struct IPerlDir* ipD, struct IPerlSock* ipS,
12094                  struct IPerlProc* ipP)
12095 {
12096     /* XXX many of the string copies here can be optimized if they're
12097      * constants; they need to be allocated as common memory and just
12098      * their pointers copied. */
12099
12100     IV i;
12101     CLONE_PARAMS clone_params;
12102     CLONE_PARAMS* const param = &clone_params;
12103
12104     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
12105
12106     PERL_ARGS_ASSERT_PERL_CLONE_USING;
12107 #else           /* !PERL_IMPLICIT_SYS */
12108     IV i;
12109     CLONE_PARAMS clone_params;
12110     CLONE_PARAMS* param = &clone_params;
12111     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
12112
12113     PERL_ARGS_ASSERT_PERL_CLONE;
12114 #endif          /* PERL_IMPLICIT_SYS */
12115
12116     /* for each stash, determine whether its objects should be cloned */
12117     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
12118     PERL_SET_THX(my_perl);
12119
12120 #ifdef DEBUGGING
12121     PoisonNew(my_perl, 1, PerlInterpreter);
12122     PL_op = NULL;
12123     PL_curcop = NULL;
12124     PL_markstack = 0;
12125     PL_scopestack = 0;
12126     PL_scopestack_name = 0;
12127     PL_savestack = 0;
12128     PL_savestack_ix = 0;
12129     PL_savestack_max = -1;
12130     PL_sig_pending = 0;
12131     PL_parser = NULL;
12132     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
12133 #  ifdef DEBUG_LEAKING_SCALARS
12134     PL_sv_serial = (((U32)my_perl >> 2) & 0xfff) * 1000000;
12135 #  endif
12136 #else   /* !DEBUGGING */
12137     Zero(my_perl, 1, PerlInterpreter);
12138 #endif  /* DEBUGGING */
12139
12140 #ifdef PERL_IMPLICIT_SYS
12141     /* host pointers */
12142     PL_Mem              = ipM;
12143     PL_MemShared        = ipMS;
12144     PL_MemParse         = ipMP;
12145     PL_Env              = ipE;
12146     PL_StdIO            = ipStd;
12147     PL_LIO              = ipLIO;
12148     PL_Dir              = ipD;
12149     PL_Sock             = ipS;
12150     PL_Proc             = ipP;
12151 #endif          /* PERL_IMPLICIT_SYS */
12152
12153     param->flags = flags;
12154     /* Nothing in the core code uses this, but we make it available to
12155        extensions (using mg_dup).  */
12156     param->proto_perl = proto_perl;
12157     /* Likely nothing will use this, but it is initialised to be consistent
12158        with Perl_clone_params_new().  */
12159     param->proto_perl = my_perl;
12160     param->unreferenced = NULL;
12161
12162     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
12163
12164     PL_body_arenas = NULL;
12165     Zero(&PL_body_roots, 1, PL_body_roots);
12166     
12167     PL_nice_chunk       = NULL;
12168     PL_nice_chunk_size  = 0;
12169     PL_sv_count         = 0;
12170     PL_sv_objcount      = 0;
12171     PL_sv_root          = NULL;
12172     PL_sv_arenaroot     = NULL;
12173
12174     PL_debug            = proto_perl->Idebug;
12175
12176     PL_hash_seed        = proto_perl->Ihash_seed;
12177     PL_rehash_seed      = proto_perl->Irehash_seed;
12178
12179 #ifdef USE_REENTRANT_API
12180     /* XXX: things like -Dm will segfault here in perlio, but doing
12181      *  PERL_SET_CONTEXT(proto_perl);
12182      * breaks too many other things
12183      */
12184     Perl_reentrant_init(aTHX);
12185 #endif
12186
12187     /* create SV map for pointer relocation */
12188     PL_ptr_table = ptr_table_new();
12189
12190     /* initialize these special pointers as early as possible */
12191     SvANY(&PL_sv_undef)         = NULL;
12192     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
12193     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
12194     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
12195
12196     SvANY(&PL_sv_no)            = new_XPVNV();
12197     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
12198     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12199                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12200     SvPV_set(&PL_sv_no, savepvn(PL_No, 0));
12201     SvCUR_set(&PL_sv_no, 0);
12202     SvLEN_set(&PL_sv_no, 1);
12203     SvIV_set(&PL_sv_no, 0);
12204     SvNV_set(&PL_sv_no, 0);
12205     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
12206
12207     SvANY(&PL_sv_yes)           = new_XPVNV();
12208     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
12209     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12210                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12211     SvPV_set(&PL_sv_yes, savepvn(PL_Yes, 1));
12212     SvCUR_set(&PL_sv_yes, 1);
12213     SvLEN_set(&PL_sv_yes, 2);
12214     SvIV_set(&PL_sv_yes, 1);
12215     SvNV_set(&PL_sv_yes, 1);
12216     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
12217
12218     /* dbargs array probably holds garbage */
12219     PL_dbargs           = NULL;
12220
12221     /* create (a non-shared!) shared string table */
12222     PL_strtab           = newHV();
12223     HvSHAREKEYS_off(PL_strtab);
12224     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
12225     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
12226
12227     PL_compiling = proto_perl->Icompiling;
12228
12229     /* These two PVs will be free'd special way so must set them same way op.c does */
12230     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
12231     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
12232
12233     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
12234     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
12235
12236     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
12237     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
12238     if (PL_compiling.cop_hints_hash) {
12239         HINTS_REFCNT_LOCK;
12240         PL_compiling.cop_hints_hash->refcounted_he_refcnt++;
12241         HINTS_REFCNT_UNLOCK;
12242     }
12243     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
12244 #ifdef PERL_DEBUG_READONLY_OPS
12245     PL_slabs = NULL;
12246     PL_slab_count = 0;
12247 #endif
12248
12249     /* pseudo environmental stuff */
12250     PL_origargc         = proto_perl->Iorigargc;
12251     PL_origargv         = proto_perl->Iorigargv;
12252
12253     param->stashes      = newAV();  /* Setup array of objects to call clone on */
12254     /* This makes no difference to the implementation, as it always pushes
12255        and shifts pointers to other SVs without changing their reference
12256        count, with the array becoming empty before it is freed. However, it
12257        makes it conceptually clear what is going on, and will avoid some
12258        work inside av.c, filling slots between AvFILL() and AvMAX() with
12259        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
12260     AvREAL_off(param->stashes);
12261
12262     if (!(flags & CLONEf_COPY_STACKS)) {
12263         param->unreferenced = newAV();
12264     }
12265
12266     /* Set tainting stuff before PerlIO_debug can possibly get called */
12267     PL_tainting         = proto_perl->Itainting;
12268     PL_taint_warn       = proto_perl->Itaint_warn;
12269
12270 #ifdef PERLIO_LAYERS
12271     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
12272     PerlIO_clone(aTHX_ proto_perl, param);
12273 #endif
12274
12275     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
12276     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
12277     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
12278     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
12279     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
12280     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
12281
12282     /* switches */
12283     PL_minus_c          = proto_perl->Iminus_c;
12284     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
12285     PL_localpatches     = proto_perl->Ilocalpatches;
12286     PL_splitstr         = proto_perl->Isplitstr;
12287     PL_minus_n          = proto_perl->Iminus_n;
12288     PL_minus_p          = proto_perl->Iminus_p;
12289     PL_minus_l          = proto_perl->Iminus_l;
12290     PL_minus_a          = proto_perl->Iminus_a;
12291     PL_minus_E          = proto_perl->Iminus_E;
12292     PL_minus_F          = proto_perl->Iminus_F;
12293     PL_doswitches       = proto_perl->Idoswitches;
12294     PL_dowarn           = proto_perl->Idowarn;
12295     PL_doextract        = proto_perl->Idoextract;
12296     PL_sawampersand     = proto_perl->Isawampersand;
12297     PL_unsafe           = proto_perl->Iunsafe;
12298     PL_inplace          = SAVEPV(proto_perl->Iinplace);
12299     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
12300     PL_perldb           = proto_perl->Iperldb;
12301     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
12302     PL_exit_flags       = proto_perl->Iexit_flags;
12303
12304     /* magical thingies */
12305     /* XXX time(&PL_basetime) when asked for? */
12306     PL_basetime         = proto_perl->Ibasetime;
12307     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
12308
12309     PL_maxsysfd         = proto_perl->Imaxsysfd;
12310     PL_statusvalue      = proto_perl->Istatusvalue;
12311 #ifdef VMS
12312     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
12313 #else
12314     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
12315 #endif
12316     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
12317
12318     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
12319     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
12320     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
12321
12322    
12323     /* RE engine related */
12324     Zero(&PL_reg_state, 1, struct re_save_state);
12325     PL_reginterp_cnt    = 0;
12326     PL_regmatch_slab    = NULL;
12327     
12328     /* Clone the regex array */
12329     /* ORANGE FIXME for plugins, probably in the SV dup code.
12330        newSViv(PTR2IV(CALLREGDUPE(
12331        INT2PTR(REGEXP *, SvIVX(regex)), param))))
12332     */
12333     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
12334     PL_regex_pad = AvARRAY(PL_regex_padav);
12335
12336     /* shortcuts to various I/O objects */
12337     PL_ofsgv            = gv_dup(proto_perl->Iofsgv, param);
12338     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
12339     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
12340     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
12341     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
12342     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
12343     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
12344
12345     /* shortcuts to regexp stuff */
12346     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
12347
12348     /* shortcuts to misc objects */
12349     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
12350
12351     /* shortcuts to debugging objects */
12352     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
12353     PL_DBline           = gv_dup(proto_perl->IDBline, param);
12354     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
12355     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
12356     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
12357     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
12358
12359     /* symbol tables */
12360     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
12361     PL_curstash         = hv_dup(proto_perl->Icurstash, param);
12362     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
12363     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
12364     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
12365
12366     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
12367     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
12368     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
12369     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
12370     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
12371     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
12372     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
12373     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
12374
12375     PL_sub_generation   = proto_perl->Isub_generation;
12376     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
12377
12378     /* funky return mechanisms */
12379     PL_forkprocess      = proto_perl->Iforkprocess;
12380
12381     /* subprocess state */
12382     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
12383
12384     /* internal state */
12385     PL_maxo             = proto_perl->Imaxo;
12386     if (proto_perl->Iop_mask)
12387         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
12388     else
12389         PL_op_mask      = NULL;
12390     /* PL_asserting        = proto_perl->Iasserting; */
12391
12392     /* current interpreter roots */
12393     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
12394     OP_REFCNT_LOCK;
12395     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
12396     OP_REFCNT_UNLOCK;
12397     PL_main_start       = proto_perl->Imain_start;
12398     PL_eval_root        = proto_perl->Ieval_root;
12399     PL_eval_start       = proto_perl->Ieval_start;
12400
12401     /* runtime control stuff */
12402     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
12403
12404     PL_filemode         = proto_perl->Ifilemode;
12405     PL_lastfd           = proto_perl->Ilastfd;
12406     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
12407     PL_Argv             = NULL;
12408     PL_Cmd              = NULL;
12409     PL_gensym           = proto_perl->Igensym;
12410     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
12411     PL_laststatval      = proto_perl->Ilaststatval;
12412     PL_laststype        = proto_perl->Ilaststype;
12413     PL_mess_sv          = NULL;
12414
12415     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
12416
12417     /* interpreter atexit processing */
12418     PL_exitlistlen      = proto_perl->Iexitlistlen;
12419     if (PL_exitlistlen) {
12420         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
12421         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
12422     }
12423     else
12424         PL_exitlist     = (PerlExitListEntry*)NULL;
12425
12426     PL_my_cxt_size = proto_perl->Imy_cxt_size;
12427     if (PL_my_cxt_size) {
12428         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
12429         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
12430 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
12431         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
12432         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
12433 #endif
12434     }
12435     else {
12436         PL_my_cxt_list  = (void**)NULL;
12437 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
12438         PL_my_cxt_keys  = (const char**)NULL;
12439 #endif
12440     }
12441     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
12442     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
12443     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
12444
12445     PL_profiledata      = NULL;
12446
12447     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
12448
12449     PAD_CLONE_VARS(proto_perl, param);
12450
12451 #ifdef HAVE_INTERP_INTERN
12452     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
12453 #endif
12454
12455     /* more statics moved here */
12456     PL_generation       = proto_perl->Igeneration;
12457     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
12458
12459     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
12460     PL_in_clean_all     = proto_perl->Iin_clean_all;
12461
12462     PL_uid              = proto_perl->Iuid;
12463     PL_euid             = proto_perl->Ieuid;
12464     PL_gid              = proto_perl->Igid;
12465     PL_egid             = proto_perl->Iegid;
12466     PL_nomemok          = proto_perl->Inomemok;
12467     PL_an               = proto_perl->Ian;
12468     PL_evalseq          = proto_perl->Ievalseq;
12469     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
12470     PL_origalen         = proto_perl->Iorigalen;
12471 #ifdef PERL_USES_PL_PIDSTATUS
12472     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
12473 #endif
12474     PL_osname           = SAVEPV(proto_perl->Iosname);
12475     PL_sighandlerp      = proto_perl->Isighandlerp;
12476
12477     PL_runops           = proto_perl->Irunops;
12478
12479     PL_parser           = parser_dup(proto_perl->Iparser, param);
12480
12481     /* XXX this only works if the saved cop has already been cloned */
12482     if (proto_perl->Iparser) {
12483         PL_parser->saved_curcop = (COP*)any_dup(
12484                                     proto_perl->Iparser->saved_curcop,
12485                                     proto_perl);
12486     }
12487
12488     PL_subline          = proto_perl->Isubline;
12489     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
12490
12491 #ifdef FCRYPT
12492     PL_cryptseen        = proto_perl->Icryptseen;
12493 #endif
12494
12495     PL_hints            = proto_perl->Ihints;
12496
12497     PL_amagic_generation        = proto_perl->Iamagic_generation;
12498
12499 #ifdef USE_LOCALE_COLLATE
12500     PL_collation_ix     = proto_perl->Icollation_ix;
12501     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
12502     PL_collation_standard       = proto_perl->Icollation_standard;
12503     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
12504     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
12505 #endif /* USE_LOCALE_COLLATE */
12506
12507 #ifdef USE_LOCALE_NUMERIC
12508     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
12509     PL_numeric_standard = proto_perl->Inumeric_standard;
12510     PL_numeric_local    = proto_perl->Inumeric_local;
12511     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
12512 #endif /* !USE_LOCALE_NUMERIC */
12513
12514     /* utf8 character classes */
12515     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
12516     PL_utf8_ascii       = sv_dup_inc(proto_perl->Iutf8_ascii, param);
12517     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
12518     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
12519     PL_utf8_cntrl       = sv_dup_inc(proto_perl->Iutf8_cntrl, param);
12520     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
12521     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
12522     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
12523     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
12524     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
12525     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
12526     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
12527     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
12528     PL_utf8_X_begin     = sv_dup_inc(proto_perl->Iutf8_X_begin, param);
12529     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
12530     PL_utf8_X_prepend   = sv_dup_inc(proto_perl->Iutf8_X_prepend, param);
12531     PL_utf8_X_non_hangul        = sv_dup_inc(proto_perl->Iutf8_X_non_hangul, param);
12532     PL_utf8_X_L = sv_dup_inc(proto_perl->Iutf8_X_L, param);
12533     PL_utf8_X_LV        = sv_dup_inc(proto_perl->Iutf8_X_LV, param);
12534     PL_utf8_X_LVT       = sv_dup_inc(proto_perl->Iutf8_X_LVT, param);
12535     PL_utf8_X_T = sv_dup_inc(proto_perl->Iutf8_X_T, param);
12536     PL_utf8_X_V = sv_dup_inc(proto_perl->Iutf8_X_V, param);
12537     PL_utf8_X_LV_LVT_V  = sv_dup_inc(proto_perl->Iutf8_X_LV_LVT_V, param);
12538     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
12539     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
12540     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
12541     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
12542     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
12543     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
12544
12545     /* Did the locale setup indicate UTF-8? */
12546     PL_utf8locale       = proto_perl->Iutf8locale;
12547     /* Unicode features (see perlrun/-C) */
12548     PL_unicode          = proto_perl->Iunicode;
12549
12550     /* Pre-5.8 signals control */
12551     PL_signals          = proto_perl->Isignals;
12552
12553     /* times() ticks per second */
12554     PL_clocktick        = proto_perl->Iclocktick;
12555
12556     /* Recursion stopper for PerlIO_find_layer */
12557     PL_in_load_module   = proto_perl->Iin_load_module;
12558
12559     /* sort() routine */
12560     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
12561
12562     /* Not really needed/useful since the reenrant_retint is "volatile",
12563      * but do it for consistency's sake. */
12564     PL_reentrant_retint = proto_perl->Ireentrant_retint;
12565
12566     /* Hooks to shared SVs and locks. */
12567     PL_sharehook        = proto_perl->Isharehook;
12568     PL_lockhook         = proto_perl->Ilockhook;
12569     PL_unlockhook       = proto_perl->Iunlockhook;
12570     PL_threadhook       = proto_perl->Ithreadhook;
12571     PL_destroyhook      = proto_perl->Idestroyhook;
12572     PL_signalhook       = proto_perl->Isignalhook;
12573
12574 #ifdef THREADS_HAVE_PIDS
12575     PL_ppid             = proto_perl->Ippid;
12576 #endif
12577
12578     /* swatch cache */
12579     PL_last_swash_hv    = NULL; /* reinits on demand */
12580     PL_last_swash_klen  = 0;
12581     PL_last_swash_key[0]= '\0';
12582     PL_last_swash_tmps  = (U8*)NULL;
12583     PL_last_swash_slen  = 0;
12584
12585     PL_glob_index       = proto_perl->Iglob_index;
12586     PL_srand_called     = proto_perl->Isrand_called;
12587
12588     if (proto_perl->Ipsig_pend) {
12589         Newxz(PL_psig_pend, SIG_SIZE, int);
12590     }
12591     else {
12592         PL_psig_pend    = (int*)NULL;
12593     }
12594
12595     if (proto_perl->Ipsig_name) {
12596         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
12597         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
12598                             param);
12599         PL_psig_ptr = PL_psig_name + SIG_SIZE;
12600     }
12601     else {
12602         PL_psig_ptr     = (SV**)NULL;
12603         PL_psig_name    = (SV**)NULL;
12604     }
12605
12606     /* intrpvar.h stuff */
12607
12608     if (flags & CLONEf_COPY_STACKS) {
12609         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
12610         PL_tmps_ix              = proto_perl->Itmps_ix;
12611         PL_tmps_max             = proto_perl->Itmps_max;
12612         PL_tmps_floor           = proto_perl->Itmps_floor;
12613         Newx(PL_tmps_stack, PL_tmps_max, SV*);
12614         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
12615                             PL_tmps_ix+1, param);
12616
12617         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
12618         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
12619         Newxz(PL_markstack, i, I32);
12620         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
12621                                                   - proto_perl->Imarkstack);
12622         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
12623                                                   - proto_perl->Imarkstack);
12624         Copy(proto_perl->Imarkstack, PL_markstack,
12625              PL_markstack_ptr - PL_markstack + 1, I32);
12626
12627         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
12628          * NOTE: unlike the others! */
12629         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
12630         PL_scopestack_max       = proto_perl->Iscopestack_max;
12631         Newxz(PL_scopestack, PL_scopestack_max, I32);
12632         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
12633
12634 #ifdef DEBUGGING
12635         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
12636         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
12637 #endif
12638         /* NOTE: si_dup() looks at PL_markstack */
12639         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
12640
12641         /* PL_curstack          = PL_curstackinfo->si_stack; */
12642         PL_curstack             = av_dup(proto_perl->Icurstack, param);
12643         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
12644
12645         /* next PUSHs() etc. set *(PL_stack_sp+1) */
12646         PL_stack_base           = AvARRAY(PL_curstack);
12647         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
12648                                                    - proto_perl->Istack_base);
12649         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
12650
12651         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
12652          * NOTE: unlike the others! */
12653         PL_savestack_ix         = proto_perl->Isavestack_ix;
12654         PL_savestack_max        = proto_perl->Isavestack_max;
12655         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
12656         PL_savestack            = ss_dup(proto_perl, param);
12657     }
12658     else {
12659         init_stacks();
12660         ENTER;                  /* perl_destruct() wants to LEAVE; */
12661     }
12662
12663     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
12664     PL_top_env          = &PL_start_env;
12665
12666     PL_op               = proto_perl->Iop;
12667
12668     PL_Sv               = NULL;
12669     PL_Xpv              = (XPV*)NULL;
12670     my_perl->Ina        = proto_perl->Ina;
12671
12672     PL_statbuf          = proto_perl->Istatbuf;
12673     PL_statcache        = proto_perl->Istatcache;
12674     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
12675     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
12676 #ifdef HAS_TIMES
12677     PL_timesbuf         = proto_perl->Itimesbuf;
12678 #endif
12679
12680     PL_tainted          = proto_perl->Itainted;
12681     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
12682     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
12683     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
12684     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
12685     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
12686     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
12687     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
12688     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
12689
12690     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
12691     PL_restartop        = proto_perl->Irestartop;
12692     PL_in_eval          = proto_perl->Iin_eval;
12693     PL_delaymagic       = proto_perl->Idelaymagic;
12694     PL_dirty            = proto_perl->Idirty;
12695     PL_localizing       = proto_perl->Ilocalizing;
12696
12697     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
12698     PL_hv_fetch_ent_mh  = NULL;
12699     PL_modcount         = proto_perl->Imodcount;
12700     PL_lastgotoprobe    = NULL;
12701     PL_dumpindent       = proto_perl->Idumpindent;
12702
12703     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
12704     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
12705     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
12706     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
12707     PL_efloatbuf        = NULL;         /* reinits on demand */
12708     PL_efloatsize       = 0;                    /* reinits on demand */
12709
12710     /* regex stuff */
12711
12712     PL_screamfirst      = NULL;
12713     PL_screamnext       = NULL;
12714     PL_maxscream        = -1;                   /* reinits on demand */
12715     PL_lastscream       = NULL;
12716
12717
12718     PL_regdummy         = proto_perl->Iregdummy;
12719     PL_colorset         = 0;            /* reinits PL_colors[] */
12720     /*PL_colors[6]      = {0,0,0,0,0,0};*/
12721
12722
12723
12724     /* Pluggable optimizer */
12725     PL_peepp            = proto_perl->Ipeepp;
12726     /* op_free() hook */
12727     PL_opfreehook       = proto_perl->Iopfreehook;
12728
12729     PL_stashcache       = newHV();
12730
12731     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
12732                                             proto_perl->Iwatchaddr);
12733     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
12734     if (PL_debug && PL_watchaddr) {
12735         PerlIO_printf(Perl_debug_log,
12736           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
12737           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
12738           PTR2UV(PL_watchok));
12739     }
12740
12741     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
12742     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
12743
12744     /* Call the ->CLONE method, if it exists, for each of the stashes
12745        identified by sv_dup() above.
12746     */
12747     while(av_len(param->stashes) != -1) {
12748         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
12749         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
12750         if (cloner && GvCV(cloner)) {
12751             dSP;
12752             ENTER;
12753             SAVETMPS;
12754             PUSHMARK(SP);
12755             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
12756             PUTBACK;
12757             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
12758             FREETMPS;
12759             LEAVE;
12760         }
12761     }
12762
12763     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
12764         ptr_table_free(PL_ptr_table);
12765         PL_ptr_table = NULL;
12766     }
12767
12768     if (!(flags & CLONEf_COPY_STACKS)) {
12769         unreferenced_to_tmp_stack(param->unreferenced);
12770     }
12771
12772     SvREFCNT_dec(param->stashes);
12773
12774     /* orphaned? eg threads->new inside BEGIN or use */
12775     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
12776         SvREFCNT_inc_simple_void(PL_compcv);
12777         SAVEFREESV(PL_compcv);
12778     }
12779
12780     return my_perl;
12781 }
12782
12783 static void
12784 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
12785 {
12786     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
12787     
12788     if (AvFILLp(unreferenced) > -1) {
12789         SV **svp = AvARRAY(unreferenced);
12790         SV **const last = svp + AvFILLp(unreferenced);
12791         SSize_t count = 0;
12792
12793         do {
12794             if (SvREFCNT(*svp) == 1)
12795                 ++count;
12796         } while (++svp <= last);
12797
12798         EXTEND_MORTAL(count);
12799         svp = AvARRAY(unreferenced);
12800
12801         do {
12802             if (SvREFCNT(*svp) == 1) {
12803                 /* Our reference is the only one to this SV. This means that
12804                    in this thread, the scalar effectively has a 0 reference.
12805                    That doesn't work (cleanup never happens), so donate our
12806                    reference to it onto the save stack. */
12807                 PL_tmps_stack[++PL_tmps_ix] = *svp;
12808             } else {
12809                 /* As an optimisation, because we are already walking the
12810                    entire array, instead of above doing either
12811                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
12812                    release our reference to the scalar, so that at the end of
12813                    the array owns zero references to the scalars it happens to
12814                    point to. We are effectively converting the array from
12815                    AvREAL() on to AvREAL() off. This saves the av_clear()
12816                    (triggered by the SvREFCNT_dec(unreferenced) below) from
12817                    walking the array a second time.  */
12818                 SvREFCNT_dec(*svp);
12819             }
12820
12821         } while (++svp <= last);
12822         AvREAL_off(unreferenced);
12823     }
12824     SvREFCNT_dec(unreferenced);
12825 }
12826
12827 void
12828 Perl_clone_params_del(CLONE_PARAMS *param)
12829 {
12830     PerlInterpreter *const was = PERL_GET_THX;
12831     PerlInterpreter *const to = param->new_perl;
12832     dTHXa(to);
12833
12834     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
12835
12836     if (was != to) {
12837         PERL_SET_THX(to);
12838     }
12839
12840     SvREFCNT_dec(param->stashes);
12841     if (param->unreferenced)
12842         unreferenced_to_tmp_stack(param->unreferenced);
12843
12844     Safefree(param);
12845
12846     if (was != to) {
12847         PERL_SET_THX(was);
12848     }
12849 }
12850
12851 CLONE_PARAMS *
12852 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
12853 {
12854     /* Need to play this game, as newAV() can call safesysmalloc(), and that
12855        does a dTHX; to get the context from thread local storage.
12856        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
12857        a version that passes in my_perl.  */
12858     PerlInterpreter *const was = PERL_GET_THX;
12859     CLONE_PARAMS *param;
12860
12861     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
12862
12863     if (was != to) {
12864         PERL_SET_THX(to);
12865     }
12866
12867     /* Given that we've set the context, we can do this unshared.  */
12868     Newx(param, 1, CLONE_PARAMS);
12869
12870     param->flags = 0;
12871     param->proto_perl = from;
12872     param->new_perl = to;
12873     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
12874     AvREAL_off(param->stashes);
12875     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
12876
12877     if (was != to) {
12878         PERL_SET_THX(was);
12879     }
12880     return param;
12881 }
12882
12883 #endif /* USE_ITHREADS */
12884
12885 /*
12886 =head1 Unicode Support
12887
12888 =for apidoc sv_recode_to_utf8
12889
12890 The encoding is assumed to be an Encode object, on entry the PV
12891 of the sv is assumed to be octets in that encoding, and the sv
12892 will be converted into Unicode (and UTF-8).
12893
12894 If the sv already is UTF-8 (or if it is not POK), or if the encoding
12895 is not a reference, nothing is done to the sv.  If the encoding is not
12896 an C<Encode::XS> Encoding object, bad things will happen.
12897 (See F<lib/encoding.pm> and L<Encode>).
12898
12899 The PV of the sv is returned.
12900
12901 =cut */
12902
12903 char *
12904 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
12905 {
12906     dVAR;
12907
12908     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
12909
12910     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
12911         SV *uni;
12912         STRLEN len;
12913         const char *s;
12914         dSP;
12915         ENTER;
12916         SAVETMPS;
12917         save_re_context();
12918         PUSHMARK(sp);
12919         EXTEND(SP, 3);
12920         XPUSHs(encoding);
12921         XPUSHs(sv);
12922 /*
12923   NI-S 2002/07/09
12924   Passing sv_yes is wrong - it needs to be or'ed set of constants
12925   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
12926   remove converted chars from source.
12927
12928   Both will default the value - let them.
12929
12930         XPUSHs(&PL_sv_yes);
12931 */
12932         PUTBACK;
12933         call_method("decode", G_SCALAR);
12934         SPAGAIN;
12935         uni = POPs;
12936         PUTBACK;
12937         s = SvPV_const(uni, len);
12938         if (s != SvPVX_const(sv)) {
12939             SvGROW(sv, len + 1);
12940             Move(s, SvPVX(sv), len + 1, char);
12941             SvCUR_set(sv, len);
12942         }
12943         FREETMPS;
12944         LEAVE;
12945         SvUTF8_on(sv);
12946         return SvPVX(sv);
12947     }
12948     return SvPOKp(sv) ? SvPVX(sv) : NULL;
12949 }
12950
12951 /*
12952 =for apidoc sv_cat_decode
12953
12954 The encoding is assumed to be an Encode object, the PV of the ssv is
12955 assumed to be octets in that encoding and decoding the input starts
12956 from the position which (PV + *offset) pointed to.  The dsv will be
12957 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
12958 when the string tstr appears in decoding output or the input ends on
12959 the PV of the ssv. The value which the offset points will be modified
12960 to the last input position on the ssv.
12961
12962 Returns TRUE if the terminator was found, else returns FALSE.
12963
12964 =cut */
12965
12966 bool
12967 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
12968                    SV *ssv, int *offset, char *tstr, int tlen)
12969 {
12970     dVAR;
12971     bool ret = FALSE;
12972
12973     PERL_ARGS_ASSERT_SV_CAT_DECODE;
12974
12975     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
12976         SV *offsv;
12977         dSP;
12978         ENTER;
12979         SAVETMPS;
12980         save_re_context();
12981         PUSHMARK(sp);
12982         EXTEND(SP, 6);
12983         XPUSHs(encoding);
12984         XPUSHs(dsv);
12985         XPUSHs(ssv);
12986         offsv = newSViv(*offset);
12987         mXPUSHs(offsv);
12988         mXPUSHp(tstr, tlen);
12989         PUTBACK;
12990         call_method("cat_decode", G_SCALAR);
12991         SPAGAIN;
12992         ret = SvTRUE(TOPs);
12993         *offset = SvIV(offsv);
12994         PUTBACK;
12995         FREETMPS;
12996         LEAVE;
12997     }
12998     else
12999         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
13000     return ret;
13001
13002 }
13003
13004 /* ---------------------------------------------------------------------
13005  *
13006  * support functions for report_uninit()
13007  */
13008
13009 /* the maxiumum size of array or hash where we will scan looking
13010  * for the undefined element that triggered the warning */
13011
13012 #define FUV_MAX_SEARCH_SIZE 1000
13013
13014 /* Look for an entry in the hash whose value has the same SV as val;
13015  * If so, return a mortal copy of the key. */
13016
13017 STATIC SV*
13018 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
13019 {
13020     dVAR;
13021     register HE **array;
13022     I32 i;
13023
13024     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
13025
13026     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
13027                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
13028         return NULL;
13029
13030     array = HvARRAY(hv);
13031
13032     for (i=HvMAX(hv); i>0; i--) {
13033         register HE *entry;
13034         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
13035             if (HeVAL(entry) != val)
13036                 continue;
13037             if (    HeVAL(entry) == &PL_sv_undef ||
13038                     HeVAL(entry) == &PL_sv_placeholder)
13039                 continue;
13040             if (!HeKEY(entry))
13041                 return NULL;
13042             if (HeKLEN(entry) == HEf_SVKEY)
13043                 return sv_mortalcopy(HeKEY_sv(entry));
13044             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
13045         }
13046     }
13047     return NULL;
13048 }
13049
13050 /* Look for an entry in the array whose value has the same SV as val;
13051  * If so, return the index, otherwise return -1. */
13052
13053 STATIC I32
13054 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
13055 {
13056     dVAR;
13057
13058     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
13059
13060     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
13061                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
13062         return -1;
13063
13064     if (val != &PL_sv_undef) {
13065         SV ** const svp = AvARRAY(av);
13066         I32 i;
13067
13068         for (i=AvFILLp(av); i>=0; i--)
13069             if (svp[i] == val)
13070                 return i;
13071     }
13072     return -1;
13073 }
13074
13075 /* S_varname(): return the name of a variable, optionally with a subscript.
13076  * If gv is non-zero, use the name of that global, along with gvtype (one
13077  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
13078  * targ.  Depending on the value of the subscript_type flag, return:
13079  */
13080
13081 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
13082 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
13083 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
13084 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
13085
13086 STATIC SV*
13087 S_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
13088         const SV *const keyname, I32 aindex, int subscript_type)
13089 {
13090
13091     SV * const name = sv_newmortal();
13092     if (gv) {
13093         char buffer[2];
13094         buffer[0] = gvtype;
13095         buffer[1] = 0;
13096
13097         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
13098
13099         gv_fullname4(name, gv, buffer, 0);
13100
13101         if ((unsigned int)SvPVX(name)[1] <= 26) {
13102             buffer[0] = '^';
13103             buffer[1] = SvPVX(name)[1] + 'A' - 1;
13104
13105             /* Swap the 1 unprintable control character for the 2 byte pretty
13106                version - ie substr($name, 1, 1) = $buffer; */
13107             sv_insert(name, 1, 1, buffer, 2);
13108         }
13109     }
13110     else {
13111         CV * const cv = find_runcv(NULL);
13112         SV *sv;
13113         AV *av;
13114
13115         if (!cv || !CvPADLIST(cv))
13116             return NULL;
13117         av = MUTABLE_AV((*av_fetch(CvPADLIST(cv), 0, FALSE)));
13118         sv = *av_fetch(av, targ, FALSE);
13119         sv_setpvn(name, SvPV_nolen_const(sv), SvCUR(sv));
13120     }
13121
13122     if (subscript_type == FUV_SUBSCRIPT_HASH) {
13123         SV * const sv = newSV(0);
13124         *SvPVX(name) = '$';
13125         Perl_sv_catpvf(aTHX_ name, "{%s}",
13126             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
13127         SvREFCNT_dec(sv);
13128     }
13129     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
13130         *SvPVX(name) = '$';
13131         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
13132     }
13133     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
13134         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
13135         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
13136     }
13137
13138     return name;
13139 }
13140
13141
13142 /*
13143 =for apidoc find_uninit_var
13144
13145 Find the name of the undefined variable (if any) that caused the operator o
13146 to issue a "Use of uninitialized value" warning.
13147 If match is true, only return a name if it's value matches uninit_sv.
13148 So roughly speaking, if a unary operator (such as OP_COS) generates a
13149 warning, then following the direct child of the op may yield an
13150 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
13151 other hand, with OP_ADD there are two branches to follow, so we only print
13152 the variable name if we get an exact match.
13153
13154 The name is returned as a mortal SV.
13155
13156 Assumes that PL_op is the op that originally triggered the error, and that
13157 PL_comppad/PL_curpad points to the currently executing pad.
13158
13159 =cut
13160 */
13161
13162 STATIC SV *
13163 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
13164                   bool match)
13165 {
13166     dVAR;
13167     SV *sv;
13168     const GV *gv;
13169     const OP *o, *o2, *kid;
13170
13171     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
13172                             uninit_sv == &PL_sv_placeholder)))
13173         return NULL;
13174
13175     switch (obase->op_type) {
13176
13177     case OP_RV2AV:
13178     case OP_RV2HV:
13179     case OP_PADAV:
13180     case OP_PADHV:
13181       {
13182         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
13183         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
13184         I32 index = 0;
13185         SV *keysv = NULL;
13186         int subscript_type = FUV_SUBSCRIPT_WITHIN;
13187
13188         if (pad) { /* @lex, %lex */
13189             sv = PAD_SVl(obase->op_targ);
13190             gv = NULL;
13191         }
13192         else {
13193             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
13194             /* @global, %global */
13195                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
13196                 if (!gv)
13197                     break;
13198                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
13199             }
13200             else /* @{expr}, %{expr} */
13201                 return find_uninit_var(cUNOPx(obase)->op_first,
13202                                                     uninit_sv, match);
13203         }
13204
13205         /* attempt to find a match within the aggregate */
13206         if (hash) {
13207             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
13208             if (keysv)
13209                 subscript_type = FUV_SUBSCRIPT_HASH;
13210         }
13211         else {
13212             index = find_array_subscript((const AV *)sv, uninit_sv);
13213             if (index >= 0)
13214                 subscript_type = FUV_SUBSCRIPT_ARRAY;
13215         }
13216
13217         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
13218             break;
13219
13220         return varname(gv, hash ? '%' : '@', obase->op_targ,
13221                                     keysv, index, subscript_type);
13222       }
13223
13224     case OP_PADSV:
13225         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
13226             break;
13227         return varname(NULL, '$', obase->op_targ,
13228                                     NULL, 0, FUV_SUBSCRIPT_NONE);
13229
13230     case OP_GVSV:
13231         gv = cGVOPx_gv(obase);
13232         if (!gv || (match && GvSV(gv) != uninit_sv))
13233             break;
13234         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
13235
13236     case OP_AELEMFAST:
13237         if (obase->op_flags & OPf_SPECIAL) { /* lexical array */
13238             if (match) {
13239                 SV **svp;
13240                 AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
13241                 if (!av || SvRMAGICAL(av))
13242                     break;
13243                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
13244                 if (!svp || *svp != uninit_sv)
13245                     break;
13246             }
13247             return varname(NULL, '$', obase->op_targ,
13248                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13249         }
13250         else {
13251             gv = cGVOPx_gv(obase);
13252             if (!gv)
13253                 break;
13254             if (match) {
13255                 SV **svp;
13256                 AV *const av = GvAV(gv);
13257                 if (!av || SvRMAGICAL(av))
13258                     break;
13259                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
13260                 if (!svp || *svp != uninit_sv)
13261                     break;
13262             }
13263             return varname(gv, '$', 0,
13264                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13265         }
13266         break;
13267
13268     case OP_EXISTS:
13269         o = cUNOPx(obase)->op_first;
13270         if (!o || o->op_type != OP_NULL ||
13271                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
13272             break;
13273         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
13274
13275     case OP_AELEM:
13276     case OP_HELEM:
13277         if (PL_op == obase)
13278             /* $a[uninit_expr] or $h{uninit_expr} */
13279             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
13280
13281         gv = NULL;
13282         o = cBINOPx(obase)->op_first;
13283         kid = cBINOPx(obase)->op_last;
13284
13285         /* get the av or hv, and optionally the gv */
13286         sv = NULL;
13287         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
13288             sv = PAD_SV(o->op_targ);
13289         }
13290         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
13291                 && cUNOPo->op_first->op_type == OP_GV)
13292         {
13293             gv = cGVOPx_gv(cUNOPo->op_first);
13294             if (!gv)
13295                 break;
13296             sv = o->op_type
13297                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
13298         }
13299         if (!sv)
13300             break;
13301
13302         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
13303             /* index is constant */
13304             if (match) {
13305                 if (SvMAGICAL(sv))
13306                     break;
13307                 if (obase->op_type == OP_HELEM) {
13308                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), cSVOPx_sv(kid), 0, 0);
13309                     if (!he || HeVAL(he) != uninit_sv)
13310                         break;
13311                 }
13312                 else {
13313                     SV * const * const svp = av_fetch(MUTABLE_AV(sv), SvIV(cSVOPx_sv(kid)), FALSE);
13314                     if (!svp || *svp != uninit_sv)
13315                         break;
13316                 }
13317             }
13318             if (obase->op_type == OP_HELEM)
13319                 return varname(gv, '%', o->op_targ,
13320                             cSVOPx_sv(kid), 0, FUV_SUBSCRIPT_HASH);
13321             else
13322                 return varname(gv, '@', o->op_targ, NULL,
13323                             SvIV(cSVOPx_sv(kid)), FUV_SUBSCRIPT_ARRAY);
13324         }
13325         else  {
13326             /* index is an expression;
13327              * attempt to find a match within the aggregate */
13328             if (obase->op_type == OP_HELEM) {
13329                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
13330                 if (keysv)
13331                     return varname(gv, '%', o->op_targ,
13332                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
13333             }
13334             else {
13335                 const I32 index
13336                     = find_array_subscript((const AV *)sv, uninit_sv);
13337                 if (index >= 0)
13338                     return varname(gv, '@', o->op_targ,
13339                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
13340             }
13341             if (match)
13342                 break;
13343             return varname(gv,
13344                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
13345                 ? '@' : '%',
13346                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
13347         }
13348         break;
13349
13350     case OP_AASSIGN:
13351         /* only examine RHS */
13352         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
13353
13354     case OP_OPEN:
13355         o = cUNOPx(obase)->op_first;
13356         if (o->op_type == OP_PUSHMARK)
13357             o = o->op_sibling;
13358
13359         if (!o->op_sibling) {
13360             /* one-arg version of open is highly magical */
13361
13362             if (o->op_type == OP_GV) { /* open FOO; */
13363                 gv = cGVOPx_gv(o);
13364                 if (match && GvSV(gv) != uninit_sv)
13365                     break;
13366                 return varname(gv, '$', 0,
13367                             NULL, 0, FUV_SUBSCRIPT_NONE);
13368             }
13369             /* other possibilities not handled are:
13370              * open $x; or open my $x;  should return '${*$x}'
13371              * open expr;               should return '$'.expr ideally
13372              */
13373              break;
13374         }
13375         goto do_op;
13376
13377     /* ops where $_ may be an implicit arg */
13378     case OP_TRANS:
13379     case OP_SUBST:
13380     case OP_MATCH:
13381         if ( !(obase->op_flags & OPf_STACKED)) {
13382             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
13383                                  ? PAD_SVl(obase->op_targ)
13384                                  : DEFSV))
13385             {
13386                 sv = sv_newmortal();
13387                 sv_setpvs(sv, "$_");
13388                 return sv;
13389             }
13390         }
13391         goto do_op;
13392
13393     case OP_PRTF:
13394     case OP_PRINT:
13395     case OP_SAY:
13396         match = 1; /* print etc can return undef on defined args */
13397         /* skip filehandle as it can't produce 'undef' warning  */
13398         o = cUNOPx(obase)->op_first;
13399         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
13400             o = o->op_sibling->op_sibling;
13401         goto do_op2;
13402
13403
13404     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
13405     case OP_RV2SV:
13406     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
13407
13408         /* the following ops are capable of returning PL_sv_undef even for
13409          * defined arg(s) */
13410
13411     case OP_BACKTICK:
13412     case OP_PIPE_OP:
13413     case OP_FILENO:
13414     case OP_BINMODE:
13415     case OP_TIED:
13416     case OP_GETC:
13417     case OP_SYSREAD:
13418     case OP_SEND:
13419     case OP_IOCTL:
13420     case OP_SOCKET:
13421     case OP_SOCKPAIR:
13422     case OP_BIND:
13423     case OP_CONNECT:
13424     case OP_LISTEN:
13425     case OP_ACCEPT:
13426     case OP_SHUTDOWN:
13427     case OP_SSOCKOPT:
13428     case OP_GETPEERNAME:
13429     case OP_FTRREAD:
13430     case OP_FTRWRITE:
13431     case OP_FTREXEC:
13432     case OP_FTROWNED:
13433     case OP_FTEREAD:
13434     case OP_FTEWRITE:
13435     case OP_FTEEXEC:
13436     case OP_FTEOWNED:
13437     case OP_FTIS:
13438     case OP_FTZERO:
13439     case OP_FTSIZE:
13440     case OP_FTFILE:
13441     case OP_FTDIR:
13442     case OP_FTLINK:
13443     case OP_FTPIPE:
13444     case OP_FTSOCK:
13445     case OP_FTBLK:
13446     case OP_FTCHR:
13447     case OP_FTTTY:
13448     case OP_FTSUID:
13449     case OP_FTSGID:
13450     case OP_FTSVTX:
13451     case OP_FTTEXT:
13452     case OP_FTBINARY:
13453     case OP_FTMTIME:
13454     case OP_FTATIME:
13455     case OP_FTCTIME:
13456     case OP_READLINK:
13457     case OP_OPEN_DIR:
13458     case OP_READDIR:
13459     case OP_TELLDIR:
13460     case OP_SEEKDIR:
13461     case OP_REWINDDIR:
13462     case OP_CLOSEDIR:
13463     case OP_GMTIME:
13464     case OP_ALARM:
13465     case OP_SEMGET:
13466     case OP_GETLOGIN:
13467     case OP_UNDEF:
13468     case OP_SUBSTR:
13469     case OP_AEACH:
13470     case OP_EACH:
13471     case OP_SORT:
13472     case OP_CALLER:
13473     case OP_DOFILE:
13474     case OP_PROTOTYPE:
13475     case OP_NCMP:
13476     case OP_SMARTMATCH:
13477     case OP_UNPACK:
13478     case OP_SYSOPEN:
13479     case OP_SYSSEEK:
13480         match = 1;
13481         goto do_op;
13482
13483     case OP_ENTERSUB:
13484     case OP_GOTO:
13485         /* XXX tmp hack: these two may call an XS sub, and currently
13486           XS subs don't have a SUB entry on the context stack, so CV and
13487           pad determination goes wrong, and BAD things happen. So, just
13488           don't try to determine the value under those circumstances.
13489           Need a better fix at dome point. DAPM 11/2007 */
13490         break;
13491
13492     case OP_FLIP:
13493     case OP_FLOP:
13494     {
13495         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
13496         if (gv && GvSV(gv) == uninit_sv)
13497             return newSVpvs_flags("$.", SVs_TEMP);
13498         goto do_op;
13499     }
13500
13501     case OP_POS:
13502         /* def-ness of rval pos() is independent of the def-ness of its arg */
13503         if ( !(obase->op_flags & OPf_MOD))
13504             break;
13505
13506     case OP_SCHOMP:
13507     case OP_CHOMP:
13508         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
13509             return newSVpvs_flags("${$/}", SVs_TEMP);
13510         /*FALLTHROUGH*/
13511
13512     default:
13513     do_op:
13514         if (!(obase->op_flags & OPf_KIDS))
13515             break;
13516         o = cUNOPx(obase)->op_first;
13517         
13518     do_op2:
13519         if (!o)
13520             break;
13521
13522         /* if all except one arg are constant, or have no side-effects,
13523          * or are optimized away, then it's unambiguous */
13524         o2 = NULL;
13525         for (kid=o; kid; kid = kid->op_sibling) {
13526             if (kid) {
13527                 const OPCODE type = kid->op_type;
13528                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
13529                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
13530                   || (type == OP_PUSHMARK)
13531                 )
13532                 continue;
13533             }
13534             if (o2) { /* more than one found */
13535                 o2 = NULL;
13536                 break;
13537             }
13538             o2 = kid;
13539         }
13540         if (o2)
13541             return find_uninit_var(o2, uninit_sv, match);
13542
13543         /* scan all args */
13544         while (o) {
13545             sv = find_uninit_var(o, uninit_sv, 1);
13546             if (sv)
13547                 return sv;
13548             o = o->op_sibling;
13549         }
13550         break;
13551     }
13552     return NULL;
13553 }
13554
13555
13556 /*
13557 =for apidoc report_uninit
13558
13559 Print appropriate "Use of uninitialized variable" warning
13560
13561 =cut
13562 */
13563
13564 void
13565 Perl_report_uninit(pTHX_ const SV *uninit_sv)
13566 {
13567     dVAR;
13568     if (PL_op) {
13569         SV* varname = NULL;
13570         if (uninit_sv) {
13571             varname = find_uninit_var(PL_op, uninit_sv,0);
13572             if (varname)
13573                 sv_insert(varname, 0, 0, " ", 1);
13574         }
13575         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
13576                 varname ? SvPV_nolen_const(varname) : "",
13577                 " in ", OP_DESC(PL_op));
13578     }
13579     else
13580         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
13581                     "", "", "");
13582 }
13583
13584 /*
13585  * Local variables:
13586  * c-indentation-style: bsd
13587  * c-basic-offset: 4
13588  * indent-tabs-mode: t
13589  * End:
13590  *
13591  * ex: set ts=8 sts=4 sw=4 noet:
13592  */