This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Module-Build to CPAN version 0.4201
[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 #ifndef HAS_C99
36 # if __STDC_VERSION__ >= 199901L && !defined(VMS)
37 #  define HAS_C99 1
38 # endif
39 #endif
40 #if HAS_C99
41 # include <stdint.h>
42 #endif
43
44 #ifdef __Lynx__
45 /* Missing proto on LynxOS */
46   char *gconvert(double, int, int,  char *);
47 #endif
48
49 #ifdef PERL_UTF8_CACHE_ASSERT
50 /* if adding more checks watch out for the following tests:
51  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
52  *   lib/utf8.t lib/Unicode/Collate/t/index.t
53  * --jhi
54  */
55 #   define ASSERT_UTF8_CACHE(cache) \
56     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
57                               assert((cache)[2] <= (cache)[3]); \
58                               assert((cache)[3] <= (cache)[1]);} \
59                               } STMT_END
60 #else
61 #   define ASSERT_UTF8_CACHE(cache) NOOP
62 #endif
63
64 #ifdef PERL_OLD_COPY_ON_WRITE
65 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
66 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
67 #endif
68
69 /* ============================================================================
70
71 =head1 Allocation and deallocation of SVs.
72
73 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
74 sv, av, hv...) contains type and reference count information, and for
75 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
76 contains fields specific to each type.  Some types store all they need
77 in the head, so don't have a body.
78
79 In all but the most memory-paranoid configurations (ex: PURIFY), heads
80 and bodies are allocated out of arenas, which by default are
81 approximately 4K chunks of memory parcelled up into N heads or bodies.
82 Sv-bodies are allocated by their sv-type, guaranteeing size
83 consistency needed to allocate safely from arrays.
84
85 For SV-heads, the first slot in each arena is reserved, and holds a
86 link to the next arena, some flags, and a note of the number of slots.
87 Snaked through each arena chain is a linked list of free items; when
88 this becomes empty, an extra arena is allocated and divided up into N
89 items which are threaded into the free list.
90
91 SV-bodies are similar, but they use arena-sets by default, which
92 separate the link and info from the arena itself, and reclaim the 1st
93 slot in the arena.  SV-bodies are further described later.
94
95 The following global variables are associated with arenas:
96
97     PL_sv_arenaroot     pointer to list of SV arenas
98     PL_sv_root          pointer to list of free SV structures
99
100     PL_body_arenas      head of linked-list of body arenas
101     PL_body_roots[]     array of pointers to list of free bodies of svtype
102                         arrays are indexed by the svtype needed
103
104 A few special SV heads are not allocated from an arena, but are
105 instead directly created in the interpreter structure, eg PL_sv_undef.
106 The size of arenas can be changed from the default by setting
107 PERL_ARENA_SIZE appropriately at compile time.
108
109 The SV arena serves the secondary purpose of allowing still-live SVs
110 to be located and destroyed during final cleanup.
111
112 At the lowest level, the macros new_SV() and del_SV() grab and free
113 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
114 to return the SV to the free list with error checking.) new_SV() calls
115 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
116 SVs in the free list have their SvTYPE field set to all ones.
117
118 At the time of very final cleanup, sv_free_arenas() is called from
119 perl_destruct() to physically free all the arenas allocated since the
120 start of the interpreter.
121
122 The function visit() scans the SV arenas list, and calls a specified
123 function for each SV it finds which is still live - ie which has an SvTYPE
124 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
125 following functions (specified as [function that calls visit()] / [function
126 called by visit() for each SV]):
127
128     sv_report_used() / do_report_used()
129                         dump all remaining SVs (debugging aid)
130
131     sv_clean_objs() / do_clean_objs(),do_clean_named_objs(),
132                       do_clean_named_io_objs(),do_curse()
133                         Attempt to free all objects pointed to by RVs,
134                         try to do the same for all objects indir-
135                         ectly referenced by typeglobs too, and
136                         then do a final sweep, cursing any
137                         objects that remain.  Called once from
138                         perl_destruct(), prior to calling sv_clean_all()
139                         below.
140
141     sv_clean_all() / do_clean_all()
142                         SvREFCNT_dec(sv) each remaining SV, possibly
143                         triggering an sv_free(). It also sets the
144                         SVf_BREAK flag on the SV to indicate that the
145                         refcnt has been artificially lowered, and thus
146                         stopping sv_free() from giving spurious warnings
147                         about SVs which unexpectedly have a refcnt
148                         of zero.  called repeatedly from perl_destruct()
149                         until there are no SVs left.
150
151 =head2 Arena allocator API Summary
152
153 Private API to rest of sv.c
154
155     new_SV(),  del_SV(),
156
157     new_XPVNV(), del_XPVGV(),
158     etc
159
160 Public API:
161
162     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
163
164 =cut
165
166  * ========================================================================= */
167
168 /*
169  * "A time to plant, and a time to uproot what was planted..."
170  */
171
172 #ifdef PERL_MEM_LOG
173 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
174             Perl_mem_log_new_sv(sv, file, line, func)
175 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
176             Perl_mem_log_del_sv(sv, file, line, func)
177 #else
178 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
179 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
180 #endif
181
182 #ifdef DEBUG_LEAKING_SCALARS
183 #  define FREE_SV_DEBUG_FILE(sv) STMT_START { \
184         if ((sv)->sv_debug_file) PerlMemShared_free((sv)->sv_debug_file); \
185     } STMT_END
186 #  define DEBUG_SV_SERIAL(sv)                                               \
187     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
188             PTR2UV(sv), (long)(sv)->sv_debug_serial))
189 #else
190 #  define FREE_SV_DEBUG_FILE(sv)
191 #  define DEBUG_SV_SERIAL(sv)   NOOP
192 #endif
193
194 #ifdef PERL_POISON
195 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
196 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
197 /* Whilst I'd love to do this, it seems that things like to check on
198    unreferenced scalars
199 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
200 */
201 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
202                                 PoisonNew(&SvREFCNT(sv), 1, U32)
203 #else
204 #  define SvARENA_CHAIN(sv)     SvANY(sv)
205 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
206 #  define POSION_SV_HEAD(sv)
207 #endif
208
209 /* Mark an SV head as unused, and add to free list.
210  *
211  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
212  * its refcount artificially decremented during global destruction, so
213  * there may be dangling pointers to it. The last thing we want in that
214  * case is for it to be reused. */
215
216 #define plant_SV(p) \
217     STMT_START {                                        \
218         const U32 old_flags = SvFLAGS(p);                       \
219         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
220         DEBUG_SV_SERIAL(p);                             \
221         FREE_SV_DEBUG_FILE(p);                          \
222         POSION_SV_HEAD(p);                              \
223         SvFLAGS(p) = SVTYPEMASK;                        \
224         if (!(old_flags & SVf_BREAK)) {         \
225             SvARENA_CHAIN_SET(p, PL_sv_root);   \
226             PL_sv_root = (p);                           \
227         }                                               \
228         --PL_sv_count;                                  \
229     } STMT_END
230
231 #define uproot_SV(p) \
232     STMT_START {                                        \
233         (p) = PL_sv_root;                               \
234         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
235         ++PL_sv_count;                                  \
236     } STMT_END
237
238
239 /* make some more SVs by adding another arena */
240
241 STATIC SV*
242 S_more_sv(pTHX)
243 {
244     dVAR;
245     SV* sv;
246     char *chunk;                /* must use New here to match call to */
247     Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
248     sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
249     uproot_SV(sv);
250     return sv;
251 }
252
253 /* new_SV(): return a new, empty SV head */
254
255 #ifdef DEBUG_LEAKING_SCALARS
256 /* provide a real function for a debugger to play with */
257 STATIC SV*
258 S_new_SV(pTHX_ const char *file, int line, const char *func)
259 {
260     SV* sv;
261
262     if (PL_sv_root)
263         uproot_SV(sv);
264     else
265         sv = S_more_sv(aTHX);
266     SvANY(sv) = 0;
267     SvREFCNT(sv) = 1;
268     SvFLAGS(sv) = 0;
269     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
270     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
271                 ? PL_parser->copline
272                 :  PL_curcop
273                     ? CopLINE(PL_curcop)
274                     : 0
275             );
276     sv->sv_debug_inpad = 0;
277     sv->sv_debug_parent = NULL;
278     sv->sv_debug_file = PL_curcop ? savesharedpv(CopFILE(PL_curcop)): NULL;
279
280     sv->sv_debug_serial = PL_sv_serial++;
281
282     MEM_LOG_NEW_SV(sv, file, line, func);
283     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
284             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
285
286     return sv;
287 }
288 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
289
290 #else
291 #  define new_SV(p) \
292     STMT_START {                                        \
293         if (PL_sv_root)                                 \
294             uproot_SV(p);                               \
295         else                                            \
296             (p) = S_more_sv(aTHX);                      \
297         SvANY(p) = 0;                                   \
298         SvREFCNT(p) = 1;                                \
299         SvFLAGS(p) = 0;                                 \
300         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
301     } STMT_END
302 #endif
303
304
305 /* del_SV(): return an empty SV head to the free list */
306
307 #ifdef DEBUGGING
308
309 #define del_SV(p) \
310     STMT_START {                                        \
311         if (DEBUG_D_TEST)                               \
312             del_sv(p);                                  \
313         else                                            \
314             plant_SV(p);                                \
315     } STMT_END
316
317 STATIC void
318 S_del_sv(pTHX_ SV *p)
319 {
320     dVAR;
321
322     PERL_ARGS_ASSERT_DEL_SV;
323
324     if (DEBUG_D_TEST) {
325         SV* sva;
326         bool ok = 0;
327         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
328             const SV * const sv = sva + 1;
329             const SV * const svend = &sva[SvREFCNT(sva)];
330             if (p >= sv && p < svend) {
331                 ok = 1;
332                 break;
333             }
334         }
335         if (!ok) {
336             Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
337                              "Attempt to free non-arena SV: 0x%"UVxf
338                              pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
339             return;
340         }
341     }
342     plant_SV(p);
343 }
344
345 #else /* ! DEBUGGING */
346
347 #define del_SV(p)   plant_SV(p)
348
349 #endif /* DEBUGGING */
350
351
352 /*
353 =head1 SV Manipulation Functions
354
355 =for apidoc sv_add_arena
356
357 Given a chunk of memory, link it to the head of the list of arenas,
358 and split it into a list of free SVs.
359
360 =cut
361 */
362
363 static void
364 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
365 {
366     dVAR;
367     SV *const sva = MUTABLE_SV(ptr);
368     SV* sv;
369     SV* svend;
370
371     PERL_ARGS_ASSERT_SV_ADD_ARENA;
372
373     /* The first SV in an arena isn't an SV. */
374     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
375     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
376     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
377
378     PL_sv_arenaroot = sva;
379     PL_sv_root = sva + 1;
380
381     svend = &sva[SvREFCNT(sva) - 1];
382     sv = sva + 1;
383     while (sv < svend) {
384         SvARENA_CHAIN_SET(sv, (sv + 1));
385 #ifdef DEBUGGING
386         SvREFCNT(sv) = 0;
387 #endif
388         /* Must always set typemask because it's always checked in on cleanup
389            when the arenas are walked looking for objects.  */
390         SvFLAGS(sv) = SVTYPEMASK;
391         sv++;
392     }
393     SvARENA_CHAIN_SET(sv, 0);
394 #ifdef DEBUGGING
395     SvREFCNT(sv) = 0;
396 #endif
397     SvFLAGS(sv) = SVTYPEMASK;
398 }
399
400 /* visit(): call the named function for each non-free SV in the arenas
401  * whose flags field matches the flags/mask args. */
402
403 STATIC I32
404 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
405 {
406     dVAR;
407     SV* sva;
408     I32 visited = 0;
409
410     PERL_ARGS_ASSERT_VISIT;
411
412     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
413         const SV * const svend = &sva[SvREFCNT(sva)];
414         SV* sv;
415         for (sv = sva + 1; sv < svend; ++sv) {
416             if (SvTYPE(sv) != (svtype)SVTYPEMASK
417                     && (sv->sv_flags & mask) == flags
418                     && SvREFCNT(sv))
419             {
420                 (*f)(aTHX_ sv);
421                 ++visited;
422             }
423         }
424     }
425     return visited;
426 }
427
428 #ifdef DEBUGGING
429
430 /* called by sv_report_used() for each live SV */
431
432 static void
433 do_report_used(pTHX_ SV *const sv)
434 {
435     if (SvTYPE(sv) != (svtype)SVTYPEMASK) {
436         PerlIO_printf(Perl_debug_log, "****\n");
437         sv_dump(sv);
438     }
439 }
440 #endif
441
442 /*
443 =for apidoc sv_report_used
444
445 Dump the contents of all SVs not yet freed (debugging aid).
446
447 =cut
448 */
449
450 void
451 Perl_sv_report_used(pTHX)
452 {
453 #ifdef DEBUGGING
454     visit(do_report_used, 0, 0);
455 #else
456     PERL_UNUSED_CONTEXT;
457 #endif
458 }
459
460 /* called by sv_clean_objs() for each live SV */
461
462 static void
463 do_clean_objs(pTHX_ SV *const ref)
464 {
465     dVAR;
466     assert (SvROK(ref));
467     {
468         SV * const target = SvRV(ref);
469         if (SvOBJECT(target)) {
470             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
471             if (SvWEAKREF(ref)) {
472                 sv_del_backref(target, ref);
473                 SvWEAKREF_off(ref);
474                 SvRV_set(ref, NULL);
475             } else {
476                 SvROK_off(ref);
477                 SvRV_set(ref, NULL);
478                 SvREFCNT_dec_NN(target);
479             }
480         }
481     }
482 }
483
484
485 /* clear any slots in a GV which hold objects - except IO;
486  * called by sv_clean_objs() for each live GV */
487
488 static void
489 do_clean_named_objs(pTHX_ SV *const sv)
490 {
491     dVAR;
492     SV *obj;
493     assert(SvTYPE(sv) == SVt_PVGV);
494     assert(isGV_with_GP(sv));
495     if (!GvGP(sv))
496         return;
497
498     /* freeing GP entries may indirectly free the current GV;
499      * hold onto it while we mess with the GP slots */
500     SvREFCNT_inc(sv);
501
502     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
503         DEBUG_D((PerlIO_printf(Perl_debug_log,
504                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
505         GvSV(sv) = NULL;
506         SvREFCNT_dec_NN(obj);
507     }
508     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
509         DEBUG_D((PerlIO_printf(Perl_debug_log,
510                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
511         GvAV(sv) = NULL;
512         SvREFCNT_dec_NN(obj);
513     }
514     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
515         DEBUG_D((PerlIO_printf(Perl_debug_log,
516                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
517         GvHV(sv) = NULL;
518         SvREFCNT_dec_NN(obj);
519     }
520     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
521         DEBUG_D((PerlIO_printf(Perl_debug_log,
522                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
523         GvCV_set(sv, NULL);
524         SvREFCNT_dec_NN(obj);
525     }
526     SvREFCNT_dec_NN(sv); /* undo the inc above */
527 }
528
529 /* clear any IO slots in a GV which hold objects (except stderr, defout);
530  * called by sv_clean_objs() for each live GV */
531
532 static void
533 do_clean_named_io_objs(pTHX_ SV *const sv)
534 {
535     dVAR;
536     SV *obj;
537     assert(SvTYPE(sv) == SVt_PVGV);
538     assert(isGV_with_GP(sv));
539     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
540         return;
541
542     SvREFCNT_inc(sv);
543     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
544         DEBUG_D((PerlIO_printf(Perl_debug_log,
545                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
546         GvIOp(sv) = NULL;
547         SvREFCNT_dec_NN(obj);
548     }
549     SvREFCNT_dec_NN(sv); /* undo the inc above */
550 }
551
552 /* Void wrapper to pass to visit() */
553 static void
554 do_curse(pTHX_ SV * const sv) {
555     if ((PL_stderrgv && GvGP(PL_stderrgv) && (SV*)GvIO(PL_stderrgv) == sv)
556      || (PL_defoutgv && GvGP(PL_defoutgv) && (SV*)GvIO(PL_defoutgv) == sv))
557         return;
558     (void)curse(sv, 0);
559 }
560
561 /*
562 =for apidoc sv_clean_objs
563
564 Attempt to destroy all objects not yet freed.
565
566 =cut
567 */
568
569 void
570 Perl_sv_clean_objs(pTHX)
571 {
572     dVAR;
573     GV *olddef, *olderr;
574     PL_in_clean_objs = TRUE;
575     visit(do_clean_objs, SVf_ROK, SVf_ROK);
576     /* Some barnacles may yet remain, clinging to typeglobs.
577      * Run the non-IO destructors first: they may want to output
578      * error messages, close files etc */
579     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
580     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
581     /* And if there are some very tenacious barnacles clinging to arrays,
582        closures, or what have you.... */
583     visit(do_curse, SVs_OBJECT, SVs_OBJECT);
584     olddef = PL_defoutgv;
585     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
586     if (olddef && isGV_with_GP(olddef))
587         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
588     olderr = PL_stderrgv;
589     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
590     if (olderr && isGV_with_GP(olderr))
591         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
592     SvREFCNT_dec(olddef);
593     PL_in_clean_objs = FALSE;
594 }
595
596 /* called by sv_clean_all() for each live SV */
597
598 static void
599 do_clean_all(pTHX_ SV *const sv)
600 {
601     dVAR;
602     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
603         /* don't clean pid table and strtab */
604         return;
605     }
606     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
607     SvFLAGS(sv) |= SVf_BREAK;
608     SvREFCNT_dec_NN(sv);
609 }
610
611 /*
612 =for apidoc sv_clean_all
613
614 Decrement the refcnt of each remaining SV, possibly triggering a
615 cleanup.  This function may have to be called multiple times to free
616 SVs which are in complex self-referential hierarchies.
617
618 =cut
619 */
620
621 I32
622 Perl_sv_clean_all(pTHX)
623 {
624     dVAR;
625     I32 cleaned;
626     PL_in_clean_all = TRUE;
627     cleaned = visit(do_clean_all, 0,0);
628     return cleaned;
629 }
630
631 /*
632   ARENASETS: a meta-arena implementation which separates arena-info
633   into struct arena_set, which contains an array of struct
634   arena_descs, each holding info for a single arena.  By separating
635   the meta-info from the arena, we recover the 1st slot, formerly
636   borrowed for list management.  The arena_set is about the size of an
637   arena, avoiding the needless malloc overhead of a naive linked-list.
638
639   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
640   memory in the last arena-set (1/2 on average).  In trade, we get
641   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
642   smaller types).  The recovery of the wasted space allows use of
643   small arenas for large, rare body types, by changing array* fields
644   in body_details_by_type[] below.
645 */
646 struct arena_desc {
647     char       *arena;          /* the raw storage, allocated aligned */
648     size_t      size;           /* its size ~4k typ */
649     svtype      utype;          /* bodytype stored in arena */
650 };
651
652 struct arena_set;
653
654 /* Get the maximum number of elements in set[] such that struct arena_set
655    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
656    therefore likely to be 1 aligned memory page.  */
657
658 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
659                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
660
661 struct arena_set {
662     struct arena_set* next;
663     unsigned int   set_size;    /* ie ARENAS_PER_SET */
664     unsigned int   curr;        /* index of next available arena-desc */
665     struct arena_desc set[ARENAS_PER_SET];
666 };
667
668 /*
669 =for apidoc sv_free_arenas
670
671 Deallocate the memory used by all arenas.  Note that all the individual SV
672 heads and bodies within the arenas must already have been freed.
673
674 =cut
675 */
676 void
677 Perl_sv_free_arenas(pTHX)
678 {
679     dVAR;
680     SV* sva;
681     SV* svanext;
682     unsigned int i;
683
684     /* Free arenas here, but be careful about fake ones.  (We assume
685        contiguity of the fake ones with the corresponding real ones.) */
686
687     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
688         svanext = MUTABLE_SV(SvANY(sva));
689         while (svanext && SvFAKE(svanext))
690             svanext = MUTABLE_SV(SvANY(svanext));
691
692         if (!SvFAKE(sva))
693             Safefree(sva);
694     }
695
696     {
697         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
698
699         while (aroot) {
700             struct arena_set *current = aroot;
701             i = aroot->curr;
702             while (i--) {
703                 assert(aroot->set[i].arena);
704                 Safefree(aroot->set[i].arena);
705             }
706             aroot = aroot->next;
707             Safefree(current);
708         }
709     }
710     PL_body_arenas = 0;
711
712     i = PERL_ARENA_ROOTS_SIZE;
713     while (i--)
714         PL_body_roots[i] = 0;
715
716     PL_sv_arenaroot = 0;
717     PL_sv_root = 0;
718 }
719
720 /*
721   Here are mid-level routines that manage the allocation of bodies out
722   of the various arenas.  There are 5 kinds of arenas:
723
724   1. SV-head arenas, which are discussed and handled above
725   2. regular body arenas
726   3. arenas for reduced-size bodies
727   4. Hash-Entry arenas
728
729   Arena types 2 & 3 are chained by body-type off an array of
730   arena-root pointers, which is indexed by svtype.  Some of the
731   larger/less used body types are malloced singly, since a large
732   unused block of them is wasteful.  Also, several svtypes dont have
733   bodies; the data fits into the sv-head itself.  The arena-root
734   pointer thus has a few unused root-pointers (which may be hijacked
735   later for arena types 4,5)
736
737   3 differs from 2 as an optimization; some body types have several
738   unused fields in the front of the structure (which are kept in-place
739   for consistency).  These bodies can be allocated in smaller chunks,
740   because the leading fields arent accessed.  Pointers to such bodies
741   are decremented to point at the unused 'ghost' memory, knowing that
742   the pointers are used with offsets to the real memory.
743
744
745 =head1 SV-Body Allocation
746
747 Allocation of SV-bodies is similar to SV-heads, differing as follows;
748 the allocation mechanism is used for many body types, so is somewhat
749 more complicated, it uses arena-sets, and has no need for still-live
750 SV detection.
751
752 At the outermost level, (new|del)_X*V macros return bodies of the
753 appropriate type.  These macros call either (new|del)_body_type or
754 (new|del)_body_allocated macro pairs, depending on specifics of the
755 type.  Most body types use the former pair, the latter pair is used to
756 allocate body types with "ghost fields".
757
758 "ghost fields" are fields that are unused in certain types, and
759 consequently don't need to actually exist.  They are declared because
760 they're part of a "base type", which allows use of functions as
761 methods.  The simplest examples are AVs and HVs, 2 aggregate types
762 which don't use the fields which support SCALAR semantics.
763
764 For these types, the arenas are carved up into appropriately sized
765 chunks, we thus avoid wasted memory for those unaccessed members.
766 When bodies are allocated, we adjust the pointer back in memory by the
767 size of the part not allocated, so it's as if we allocated the full
768 structure.  (But things will all go boom if you write to the part that
769 is "not there", because you'll be overwriting the last members of the
770 preceding structure in memory.)
771
772 We calculate the correction using the STRUCT_OFFSET macro on the first
773 member present.  If the allocated structure is smaller (no initial NV
774 actually allocated) then the net effect is to subtract the size of the NV
775 from the pointer, to return a new pointer as if an initial NV were actually
776 allocated.  (We were using structures named *_allocated for this, but
777 this turned out to be a subtle bug, because a structure without an NV
778 could have a lower alignment constraint, but the compiler is allowed to
779 optimised accesses based on the alignment constraint of the actual pointer
780 to the full structure, for example, using a single 64 bit load instruction
781 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
782
783 This is the same trick as was used for NV and IV bodies.  Ironically it
784 doesn't need to be used for NV bodies any more, because NV is now at
785 the start of the structure.  IV bodies don't need it either, because
786 they are no longer allocated.
787
788 In turn, the new_body_* allocators call S_new_body(), which invokes
789 new_body_inline macro, which takes a lock, and takes a body off the
790 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
791 necessary to refresh an empty list.  Then the lock is released, and
792 the body is returned.
793
794 Perl_more_bodies allocates a new arena, and carves it up into an array of N
795 bodies, which it strings into a linked list.  It looks up arena-size
796 and body-size from the body_details table described below, thus
797 supporting the multiple body-types.
798
799 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
800 the (new|del)_X*V macros are mapped directly to malloc/free.
801
802 For each sv-type, struct body_details bodies_by_type[] carries
803 parameters which control these aspects of SV handling:
804
805 Arena_size determines whether arenas are used for this body type, and if
806 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
807 zero, forcing individual mallocs and frees.
808
809 Body_size determines how big a body is, and therefore how many fit into
810 each arena.  Offset carries the body-pointer adjustment needed for
811 "ghost fields", and is used in *_allocated macros.
812
813 But its main purpose is to parameterize info needed in
814 Perl_sv_upgrade().  The info here dramatically simplifies the function
815 vs the implementation in 5.8.8, making it table-driven.  All fields
816 are used for this, except for arena_size.
817
818 For the sv-types that have no bodies, arenas are not used, so those
819 PL_body_roots[sv_type] are unused, and can be overloaded.  In
820 something of a special case, SVt_NULL is borrowed for HE arenas;
821 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
822 bodies_by_type[SVt_NULL] slot is not used, as the table is not
823 available in hv.c.
824
825 */
826
827 struct body_details {
828     U8 body_size;       /* Size to allocate  */
829     U8 copy;            /* Size of structure to copy (may be shorter)  */
830     U8 offset;
831     unsigned int type : 4;          /* We have space for a sanity check.  */
832     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
833     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
834     unsigned int arena : 1;         /* Allocated from an arena */
835     size_t arena_size;              /* Size of arena to allocate */
836 };
837
838 #define HADNV FALSE
839 #define NONV TRUE
840
841
842 #ifdef PURIFY
843 /* With -DPURFIY we allocate everything directly, and don't use arenas.
844    This seems a rather elegant way to simplify some of the code below.  */
845 #define HASARENA FALSE
846 #else
847 #define HASARENA TRUE
848 #endif
849 #define NOARENA FALSE
850
851 /* Size the arenas to exactly fit a given number of bodies.  A count
852    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
853    simplifying the default.  If count > 0, the arena is sized to fit
854    only that many bodies, allowing arenas to be used for large, rare
855    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
856    limited by PERL_ARENA_SIZE, so we can safely oversize the
857    declarations.
858  */
859 #define FIT_ARENA0(body_size)                           \
860     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
861 #define FIT_ARENAn(count,body_size)                     \
862     ( count * body_size <= PERL_ARENA_SIZE)             \
863     ? count * body_size                                 \
864     : FIT_ARENA0 (body_size)
865 #define FIT_ARENA(count,body_size)                      \
866     count                                               \
867     ? FIT_ARENAn (count, body_size)                     \
868     : FIT_ARENA0 (body_size)
869
870 /* Calculate the length to copy. Specifically work out the length less any
871    final padding the compiler needed to add.  See the comment in sv_upgrade
872    for why copying the padding proved to be a bug.  */
873
874 #define copy_length(type, last_member) \
875         STRUCT_OFFSET(type, last_member) \
876         + sizeof (((type*)SvANY((const SV *)0))->last_member)
877
878 static const struct body_details bodies_by_type[] = {
879     /* HEs use this offset for their arena.  */
880     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
881
882     /* IVs are in the head, so the allocation size is 0.  */
883     { 0,
884       sizeof(IV), /* This is used to copy out the IV body.  */
885       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
886       NOARENA /* IVS don't need an arena  */, 0
887     },
888
889     { sizeof(NV), sizeof(NV),
890       STRUCT_OFFSET(XPVNV, xnv_u),
891       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
892
893     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
894       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
895       + STRUCT_OFFSET(XPV, xpv_cur),
896       SVt_PV, FALSE, NONV, HASARENA,
897       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
898
899     { sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur),
900       copy_length(XINVLIST, is_offset) - STRUCT_OFFSET(XPV, xpv_cur),
901       + STRUCT_OFFSET(XPV, xpv_cur),
902       SVt_INVLIST, TRUE, NONV, HASARENA,
903       FIT_ARENA(0, sizeof(XINVLIST) - STRUCT_OFFSET(XPV, xpv_cur)) },
904
905     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
906       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
907       + STRUCT_OFFSET(XPV, xpv_cur),
908       SVt_PVIV, FALSE, NONV, HASARENA,
909       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
910
911     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
912       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
913       + STRUCT_OFFSET(XPV, xpv_cur),
914       SVt_PVNV, FALSE, HADNV, HASARENA,
915       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
916
917     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
918       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
919
920     { sizeof(regexp),
921       sizeof(regexp),
922       0,
923       SVt_REGEXP, TRUE, NONV, HASARENA,
924       FIT_ARENA(0, sizeof(regexp))
925     },
926
927     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
928       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
929     
930     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
931       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
932
933     { sizeof(XPVAV),
934       copy_length(XPVAV, xav_alloc),
935       0,
936       SVt_PVAV, TRUE, NONV, HASARENA,
937       FIT_ARENA(0, sizeof(XPVAV)) },
938
939     { sizeof(XPVHV),
940       copy_length(XPVHV, xhv_max),
941       0,
942       SVt_PVHV, TRUE, NONV, HASARENA,
943       FIT_ARENA(0, sizeof(XPVHV)) },
944
945     { sizeof(XPVCV),
946       sizeof(XPVCV),
947       0,
948       SVt_PVCV, TRUE, NONV, HASARENA,
949       FIT_ARENA(0, sizeof(XPVCV)) },
950
951     { sizeof(XPVFM),
952       sizeof(XPVFM),
953       0,
954       SVt_PVFM, TRUE, NONV, NOARENA,
955       FIT_ARENA(20, sizeof(XPVFM)) },
956
957     { sizeof(XPVIO),
958       sizeof(XPVIO),
959       0,
960       SVt_PVIO, TRUE, NONV, HASARENA,
961       FIT_ARENA(24, sizeof(XPVIO)) },
962 };
963
964 #define new_body_allocated(sv_type)             \
965     (void *)((char *)S_new_body(aTHX_ sv_type)  \
966              - bodies_by_type[sv_type].offset)
967
968 /* return a thing to the free list */
969
970 #define del_body(thing, root)                           \
971     STMT_START {                                        \
972         void ** const thing_copy = (void **)thing;      \
973         *thing_copy = *root;                            \
974         *root = (void*)thing_copy;                      \
975     } STMT_END
976
977 #ifdef PURIFY
978
979 #define new_XNV()       safemalloc(sizeof(XPVNV))
980 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
981 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
982
983 #define del_XPVGV(p)    safefree(p)
984
985 #else /* !PURIFY */
986
987 #define new_XNV()       new_body_allocated(SVt_NV)
988 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
989 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
990
991 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
992                                  &PL_body_roots[SVt_PVGV])
993
994 #endif /* PURIFY */
995
996 /* no arena for you! */
997
998 #define new_NOARENA(details) \
999         safemalloc((details)->body_size + (details)->offset)
1000 #define new_NOARENAZ(details) \
1001         safecalloc((details)->body_size + (details)->offset, 1)
1002
1003 void *
1004 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1005                   const size_t arena_size)
1006 {
1007     dVAR;
1008     void ** const root = &PL_body_roots[sv_type];
1009     struct arena_desc *adesc;
1010     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1011     unsigned int curr;
1012     char *start;
1013     const char *end;
1014     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1015 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1016     static bool done_sanity_check;
1017
1018     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1019      * variables like done_sanity_check. */
1020     if (!done_sanity_check) {
1021         unsigned int i = SVt_LAST;
1022
1023         done_sanity_check = TRUE;
1024
1025         while (i--)
1026             assert (bodies_by_type[i].type == i);
1027     }
1028 #endif
1029
1030     assert(arena_size);
1031
1032     /* may need new arena-set to hold new arena */
1033     if (!aroot || aroot->curr >= aroot->set_size) {
1034         struct arena_set *newroot;
1035         Newxz(newroot, 1, struct arena_set);
1036         newroot->set_size = ARENAS_PER_SET;
1037         newroot->next = aroot;
1038         aroot = newroot;
1039         PL_body_arenas = (void *) newroot;
1040         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1041     }
1042
1043     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1044     curr = aroot->curr++;
1045     adesc = &(aroot->set[curr]);
1046     assert(!adesc->arena);
1047     
1048     Newx(adesc->arena, good_arena_size, char);
1049     adesc->size = good_arena_size;
1050     adesc->utype = sv_type;
1051     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
1052                           curr, (void*)adesc->arena, (UV)good_arena_size));
1053
1054     start = (char *) adesc->arena;
1055
1056     /* Get the address of the byte after the end of the last body we can fit.
1057        Remember, this is integer division:  */
1058     end = start + good_arena_size / body_size * body_size;
1059
1060     /* computed count doesn't reflect the 1st slot reservation */
1061 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1062     DEBUG_m(PerlIO_printf(Perl_debug_log,
1063                           "arena %p end %p arena-size %d (from %d) type %d "
1064                           "size %d ct %d\n",
1065                           (void*)start, (void*)end, (int)good_arena_size,
1066                           (int)arena_size, sv_type, (int)body_size,
1067                           (int)good_arena_size / (int)body_size));
1068 #else
1069     DEBUG_m(PerlIO_printf(Perl_debug_log,
1070                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1071                           (void*)start, (void*)end,
1072                           (int)arena_size, sv_type, (int)body_size,
1073                           (int)good_arena_size / (int)body_size));
1074 #endif
1075     *root = (void *)start;
1076
1077     while (1) {
1078         /* Where the next body would start:  */
1079         char * const next = start + body_size;
1080
1081         if (next >= end) {
1082             /* This is the last body:  */
1083             assert(next == end);
1084
1085             *(void **)start = 0;
1086             return *root;
1087         }
1088
1089         *(void**) start = (void *)next;
1090         start = next;
1091     }
1092 }
1093
1094 /* grab a new thing from the free list, allocating more if necessary.
1095    The inline version is used for speed in hot routines, and the
1096    function using it serves the rest (unless PURIFY).
1097 */
1098 #define new_body_inline(xpv, sv_type) \
1099     STMT_START { \
1100         void ** const r3wt = &PL_body_roots[sv_type]; \
1101         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1102           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1103                                              bodies_by_type[sv_type].body_size,\
1104                                              bodies_by_type[sv_type].arena_size)); \
1105         *(r3wt) = *(void**)(xpv); \
1106     } STMT_END
1107
1108 #ifndef PURIFY
1109
1110 STATIC void *
1111 S_new_body(pTHX_ const svtype sv_type)
1112 {
1113     dVAR;
1114     void *xpv;
1115     new_body_inline(xpv, sv_type);
1116     return xpv;
1117 }
1118
1119 #endif
1120
1121 static const struct body_details fake_rv =
1122     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1123
1124 /*
1125 =for apidoc sv_upgrade
1126
1127 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1128 SV, then copies across as much information as possible from the old body.
1129 It croaks if the SV is already in a more complex form than requested.  You
1130 generally want to use the C<SvUPGRADE> macro wrapper, which checks the type
1131 before calling C<sv_upgrade>, and hence does not croak.  See also
1132 C<svtype>.
1133
1134 =cut
1135 */
1136
1137 void
1138 Perl_sv_upgrade(pTHX_ SV *const sv, svtype new_type)
1139 {
1140     dVAR;
1141     void*       old_body;
1142     void*       new_body;
1143     const svtype old_type = SvTYPE(sv);
1144     const struct body_details *new_type_details;
1145     const struct body_details *old_type_details
1146         = bodies_by_type + old_type;
1147     SV *referant = NULL;
1148
1149     PERL_ARGS_ASSERT_SV_UPGRADE;
1150
1151     if (old_type == new_type)
1152         return;
1153
1154     /* This clause was purposefully added ahead of the early return above to
1155        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1156        inference by Nick I-S that it would fix other troublesome cases. See
1157        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1158
1159        Given that shared hash key scalars are no longer PVIV, but PV, there is
1160        no longer need to unshare so as to free up the IVX slot for its proper
1161        purpose. So it's safe to move the early return earlier.  */
1162
1163     if (new_type > SVt_PVMG && SvIsCOW(sv)) {
1164         sv_force_normal_flags(sv, 0);
1165     }
1166
1167     old_body = SvANY(sv);
1168
1169     /* Copying structures onto other structures that have been neatly zeroed
1170        has a subtle gotcha. Consider XPVMG
1171
1172        +------+------+------+------+------+-------+-------+
1173        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1174        +------+------+------+------+------+-------+-------+
1175        0      4      8     12     16     20      24      28
1176
1177        where NVs are aligned to 8 bytes, so that sizeof that structure is
1178        actually 32 bytes long, with 4 bytes of padding at the end:
1179
1180        +------+------+------+------+------+-------+-------+------+
1181        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1182        +------+------+------+------+------+-------+-------+------+
1183        0      4      8     12     16     20      24      28     32
1184
1185        so what happens if you allocate memory for this structure:
1186
1187        +------+------+------+------+------+-------+-------+------+------+...
1188        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1189        +------+------+------+------+------+-------+-------+------+------+...
1190        0      4      8     12     16     20      24      28     32     36
1191
1192        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1193        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1194        started out as zero once, but it's quite possible that it isn't. So now,
1195        rather than a nicely zeroed GP, you have it pointing somewhere random.
1196        Bugs ensue.
1197
1198        (In fact, GP ends up pointing at a previous GP structure, because the
1199        principle cause of the padding in XPVMG getting garbage is a copy of
1200        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1201        this happens to be moot because XPVGV has been re-ordered, with GP
1202        no longer after STASH)
1203
1204        So we are careful and work out the size of used parts of all the
1205        structures.  */
1206
1207     switch (old_type) {
1208     case SVt_NULL:
1209         break;
1210     case SVt_IV:
1211         if (SvROK(sv)) {
1212             referant = SvRV(sv);
1213             old_type_details = &fake_rv;
1214             if (new_type == SVt_NV)
1215                 new_type = SVt_PVNV;
1216         } else {
1217             if (new_type < SVt_PVIV) {
1218                 new_type = (new_type == SVt_NV)
1219                     ? SVt_PVNV : SVt_PVIV;
1220             }
1221         }
1222         break;
1223     case SVt_NV:
1224         if (new_type < SVt_PVNV) {
1225             new_type = SVt_PVNV;
1226         }
1227         break;
1228     case SVt_PV:
1229         assert(new_type > SVt_PV);
1230         assert(SVt_IV < SVt_PV);
1231         assert(SVt_NV < SVt_PV);
1232         break;
1233     case SVt_PVIV:
1234         break;
1235     case SVt_PVNV:
1236         break;
1237     case SVt_PVMG:
1238         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1239            there's no way that it can be safely upgraded, because perl.c
1240            expects to Safefree(SvANY(PL_mess_sv))  */
1241         assert(sv != PL_mess_sv);
1242         /* This flag bit is used to mean other things in other scalar types.
1243            Given that it only has meaning inside the pad, it shouldn't be set
1244            on anything that can get upgraded.  */
1245         assert(!SvPAD_TYPED(sv));
1246         break;
1247     default:
1248         if (UNLIKELY(old_type_details->cant_upgrade))
1249             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1250                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1251     }
1252
1253     if (UNLIKELY(old_type > new_type))
1254         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1255                 (int)old_type, (int)new_type);
1256
1257     new_type_details = bodies_by_type + new_type;
1258
1259     SvFLAGS(sv) &= ~SVTYPEMASK;
1260     SvFLAGS(sv) |= new_type;
1261
1262     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1263        the return statements above will have triggered.  */
1264     assert (new_type != SVt_NULL);
1265     switch (new_type) {
1266     case SVt_IV:
1267         assert(old_type == SVt_NULL);
1268         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1269         SvIV_set(sv, 0);
1270         return;
1271     case SVt_NV:
1272         assert(old_type == SVt_NULL);
1273         SvANY(sv) = new_XNV();
1274         SvNV_set(sv, 0);
1275         return;
1276     case SVt_PVHV:
1277     case SVt_PVAV:
1278         assert(new_type_details->body_size);
1279
1280 #ifndef PURIFY  
1281         assert(new_type_details->arena);
1282         assert(new_type_details->arena_size);
1283         /* This points to the start of the allocated area.  */
1284         new_body_inline(new_body, new_type);
1285         Zero(new_body, new_type_details->body_size, char);
1286         new_body = ((char *)new_body) - new_type_details->offset;
1287 #else
1288         /* We always allocated the full length item with PURIFY. To do this
1289            we fake things so that arena is false for all 16 types..  */
1290         new_body = new_NOARENAZ(new_type_details);
1291 #endif
1292         SvANY(sv) = new_body;
1293         if (new_type == SVt_PVAV) {
1294             AvMAX(sv)   = -1;
1295             AvFILLp(sv) = -1;
1296             AvREAL_only(sv);
1297             if (old_type_details->body_size) {
1298                 AvALLOC(sv) = 0;
1299             } else {
1300                 /* It will have been zeroed when the new body was allocated.
1301                    Lets not write to it, in case it confuses a write-back
1302                    cache.  */
1303             }
1304         } else {
1305             assert(!SvOK(sv));
1306             SvOK_off(sv);
1307 #ifndef NODEFAULT_SHAREKEYS
1308             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1309 #endif
1310             /* start with PERL_HASH_DEFAULT_HvMAX+1 buckets: */
1311             HvMAX(sv) = PERL_HASH_DEFAULT_HvMAX;
1312         }
1313
1314         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1315            The target created by newSVrv also is, and it can have magic.
1316            However, it never has SvPVX set.
1317         */
1318         if (old_type == SVt_IV) {
1319             assert(!SvROK(sv));
1320         } else if (old_type >= SVt_PV) {
1321             assert(SvPVX_const(sv) == 0);
1322         }
1323
1324         if (old_type >= SVt_PVMG) {
1325             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1326             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1327         } else {
1328             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1329         }
1330         break;
1331
1332     case SVt_PVIV:
1333         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1334            no route from NV to PVIV, NOK can never be true  */
1335         assert(!SvNOKp(sv));
1336         assert(!SvNOK(sv));
1337     case SVt_PVIO:
1338     case SVt_PVFM:
1339     case SVt_PVGV:
1340     case SVt_PVCV:
1341     case SVt_PVLV:
1342     case SVt_INVLIST:
1343     case SVt_REGEXP:
1344     case SVt_PVMG:
1345     case SVt_PVNV:
1346     case SVt_PV:
1347
1348         assert(new_type_details->body_size);
1349         /* We always allocated the full length item with PURIFY. To do this
1350            we fake things so that arena is false for all 16 types..  */
1351         if(new_type_details->arena) {
1352             /* This points to the start of the allocated area.  */
1353             new_body_inline(new_body, new_type);
1354             Zero(new_body, new_type_details->body_size, char);
1355             new_body = ((char *)new_body) - new_type_details->offset;
1356         } else {
1357             new_body = new_NOARENAZ(new_type_details);
1358         }
1359         SvANY(sv) = new_body;
1360
1361         if (old_type_details->copy) {
1362             /* There is now the potential for an upgrade from something without
1363                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1364             int offset = old_type_details->offset;
1365             int length = old_type_details->copy;
1366
1367             if (new_type_details->offset > old_type_details->offset) {
1368                 const int difference
1369                     = new_type_details->offset - old_type_details->offset;
1370                 offset += difference;
1371                 length -= difference;
1372             }
1373             assert (length >= 0);
1374                 
1375             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1376                  char);
1377         }
1378
1379 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1380         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1381          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1382          * NV slot, but the new one does, then we need to initialise the
1383          * freshly created NV slot with whatever the correct bit pattern is
1384          * for 0.0  */
1385         if (old_type_details->zero_nv && !new_type_details->zero_nv
1386             && !isGV_with_GP(sv))
1387             SvNV_set(sv, 0);
1388 #endif
1389
1390         if (UNLIKELY(new_type == SVt_PVIO)) {
1391             IO * const io = MUTABLE_IO(sv);
1392             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1393
1394             SvOBJECT_on(io);
1395             /* Clear the stashcache because a new IO could overrule a package
1396                name */
1397             DEBUG_o(Perl_deb(aTHX_ "sv_upgrade clearing PL_stashcache\n"));
1398             hv_clear(PL_stashcache);
1399
1400             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1401             IoPAGE_LEN(sv) = 60;
1402         }
1403         if (UNLIKELY(new_type == SVt_REGEXP))
1404             sv->sv_u.svu_rx = (regexp *)new_body;
1405         else if (old_type < SVt_PV) {
1406             /* referant will be NULL unless the old type was SVt_IV emulating
1407                SVt_RV */
1408             sv->sv_u.svu_rv = referant;
1409         }
1410         break;
1411     default:
1412         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1413                    (unsigned long)new_type);
1414     }
1415
1416     if (old_type > SVt_IV) {
1417 #ifdef PURIFY
1418         safefree(old_body);
1419 #else
1420         /* Note that there is an assumption that all bodies of types that
1421            can be upgraded came from arenas. Only the more complex non-
1422            upgradable types are allowed to be directly malloc()ed.  */
1423         assert(old_type_details->arena);
1424         del_body((void*)((char*)old_body + old_type_details->offset),
1425                  &PL_body_roots[old_type]);
1426 #endif
1427     }
1428 }
1429
1430 /*
1431 =for apidoc sv_backoff
1432
1433 Remove any string offset.  You should normally use the C<SvOOK_off> macro
1434 wrapper instead.
1435
1436 =cut
1437 */
1438
1439 int
1440 Perl_sv_backoff(pTHX_ SV *const sv)
1441 {
1442     STRLEN delta;
1443     const char * const s = SvPVX_const(sv);
1444
1445     PERL_ARGS_ASSERT_SV_BACKOFF;
1446     PERL_UNUSED_CONTEXT;
1447
1448     assert(SvOOK(sv));
1449     assert(SvTYPE(sv) != SVt_PVHV);
1450     assert(SvTYPE(sv) != SVt_PVAV);
1451
1452     SvOOK_offset(sv, delta);
1453     
1454     SvLEN_set(sv, SvLEN(sv) + delta);
1455     SvPV_set(sv, SvPVX(sv) - delta);
1456     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1457     SvFLAGS(sv) &= ~SVf_OOK;
1458     return 0;
1459 }
1460
1461 /*
1462 =for apidoc sv_grow
1463
1464 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1465 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1466 Use the C<SvGROW> wrapper instead.
1467
1468 =cut
1469 */
1470
1471 static void S_sv_uncow(pTHX_ SV * const sv, const U32 flags);
1472
1473 char *
1474 Perl_sv_grow(pTHX_ SV *const sv, STRLEN newlen)
1475 {
1476     char *s;
1477
1478     PERL_ARGS_ASSERT_SV_GROW;
1479
1480     if (SvROK(sv))
1481         sv_unref(sv);
1482     if (SvTYPE(sv) < SVt_PV) {
1483         sv_upgrade(sv, SVt_PV);
1484         s = SvPVX_mutable(sv);
1485     }
1486     else if (SvOOK(sv)) {       /* pv is offset? */
1487         sv_backoff(sv);
1488         s = SvPVX_mutable(sv);
1489         if (newlen > SvLEN(sv))
1490             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1491     }
1492     else
1493     {
1494         if (SvIsCOW(sv)) S_sv_uncow(aTHX_ sv, 0);
1495         s = SvPVX_mutable(sv);
1496     }
1497
1498 #ifdef PERL_NEW_COPY_ON_WRITE
1499     /* the new COW scheme uses SvPVX(sv)[SvLEN(sv)-1] (if spare)
1500      * to store the COW count. So in general, allocate one more byte than
1501      * asked for, to make it likely this byte is always spare: and thus
1502      * make more strings COW-able.
1503      * If the new size is a big power of two, don't bother: we assume the
1504      * caller wanted a nice 2^N sized block and will be annoyed at getting
1505      * 2^N+1 */
1506     if (newlen & 0xff)
1507         newlen++;
1508 #endif
1509
1510     if (newlen > SvLEN(sv)) {           /* need more room? */
1511         STRLEN minlen = SvCUR(sv);
1512         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1513         if (newlen < minlen)
1514             newlen = minlen;
1515 #ifndef Perl_safesysmalloc_size
1516         newlen = PERL_STRLEN_ROUNDUP(newlen);
1517 #endif
1518         if (SvLEN(sv) && s) {
1519             s = (char*)saferealloc(s, newlen);
1520         }
1521         else {
1522             s = (char*)safemalloc(newlen);
1523             if (SvPVX_const(sv) && SvCUR(sv)) {
1524                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1525             }
1526         }
1527         SvPV_set(sv, s);
1528 #ifdef Perl_safesysmalloc_size
1529         /* Do this here, do it once, do it right, and then we will never get
1530            called back into sv_grow() unless there really is some growing
1531            needed.  */
1532         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1533 #else
1534         SvLEN_set(sv, newlen);
1535 #endif
1536     }
1537     return s;
1538 }
1539
1540 /*
1541 =for apidoc sv_setiv
1542
1543 Copies an integer into the given SV, upgrading first if necessary.
1544 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1545
1546 =cut
1547 */
1548
1549 void
1550 Perl_sv_setiv(pTHX_ SV *const sv, const IV i)
1551 {
1552     dVAR;
1553
1554     PERL_ARGS_ASSERT_SV_SETIV;
1555
1556     SV_CHECK_THINKFIRST_COW_DROP(sv);
1557     switch (SvTYPE(sv)) {
1558     case SVt_NULL:
1559     case SVt_NV:
1560         sv_upgrade(sv, SVt_IV);
1561         break;
1562     case SVt_PV:
1563         sv_upgrade(sv, SVt_PVIV);
1564         break;
1565
1566     case SVt_PVGV:
1567         if (!isGV_with_GP(sv))
1568             break;
1569     case SVt_PVAV:
1570     case SVt_PVHV:
1571     case SVt_PVCV:
1572     case SVt_PVFM:
1573     case SVt_PVIO:
1574         /* diag_listed_as: Can't coerce %s to %s in %s */
1575         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1576                    OP_DESC(PL_op));
1577     default: NOOP;
1578     }
1579     (void)SvIOK_only(sv);                       /* validate number */
1580     SvIV_set(sv, i);
1581     SvTAINT(sv);
1582 }
1583
1584 /*
1585 =for apidoc sv_setiv_mg
1586
1587 Like C<sv_setiv>, but also handles 'set' magic.
1588
1589 =cut
1590 */
1591
1592 void
1593 Perl_sv_setiv_mg(pTHX_ SV *const sv, const IV i)
1594 {
1595     PERL_ARGS_ASSERT_SV_SETIV_MG;
1596
1597     sv_setiv(sv,i);
1598     SvSETMAGIC(sv);
1599 }
1600
1601 /*
1602 =for apidoc sv_setuv
1603
1604 Copies an unsigned integer into the given SV, upgrading first if necessary.
1605 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1606
1607 =cut
1608 */
1609
1610 void
1611 Perl_sv_setuv(pTHX_ SV *const sv, const UV u)
1612 {
1613     PERL_ARGS_ASSERT_SV_SETUV;
1614
1615     /* With the if statement to ensure that integers are stored as IVs whenever
1616        possible:
1617        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1618
1619        without
1620        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1621
1622        If you wish to remove the following if statement, so that this routine
1623        (and its callers) always return UVs, please benchmark to see what the
1624        effect is. Modern CPUs may be different. Or may not :-)
1625     */
1626     if (u <= (UV)IV_MAX) {
1627        sv_setiv(sv, (IV)u);
1628        return;
1629     }
1630     sv_setiv(sv, 0);
1631     SvIsUV_on(sv);
1632     SvUV_set(sv, u);
1633 }
1634
1635 /*
1636 =for apidoc sv_setuv_mg
1637
1638 Like C<sv_setuv>, but also handles 'set' magic.
1639
1640 =cut
1641 */
1642
1643 void
1644 Perl_sv_setuv_mg(pTHX_ SV *const sv, const UV u)
1645 {
1646     PERL_ARGS_ASSERT_SV_SETUV_MG;
1647
1648     sv_setuv(sv,u);
1649     SvSETMAGIC(sv);
1650 }
1651
1652 /*
1653 =for apidoc sv_setnv
1654
1655 Copies a double into the given SV, upgrading first if necessary.
1656 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1657
1658 =cut
1659 */
1660
1661 void
1662 Perl_sv_setnv(pTHX_ SV *const sv, const NV num)
1663 {
1664     dVAR;
1665
1666     PERL_ARGS_ASSERT_SV_SETNV;
1667
1668     SV_CHECK_THINKFIRST_COW_DROP(sv);
1669     switch (SvTYPE(sv)) {
1670     case SVt_NULL:
1671     case SVt_IV:
1672         sv_upgrade(sv, SVt_NV);
1673         break;
1674     case SVt_PV:
1675     case SVt_PVIV:
1676         sv_upgrade(sv, SVt_PVNV);
1677         break;
1678
1679     case SVt_PVGV:
1680         if (!isGV_with_GP(sv))
1681             break;
1682     case SVt_PVAV:
1683     case SVt_PVHV:
1684     case SVt_PVCV:
1685     case SVt_PVFM:
1686     case SVt_PVIO:
1687         /* diag_listed_as: Can't coerce %s to %s in %s */
1688         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1689                    OP_DESC(PL_op));
1690     default: NOOP;
1691     }
1692     SvNV_set(sv, num);
1693     (void)SvNOK_only(sv);                       /* validate number */
1694     SvTAINT(sv);
1695 }
1696
1697 /*
1698 =for apidoc sv_setnv_mg
1699
1700 Like C<sv_setnv>, but also handles 'set' magic.
1701
1702 =cut
1703 */
1704
1705 void
1706 Perl_sv_setnv_mg(pTHX_ SV *const sv, const NV num)
1707 {
1708     PERL_ARGS_ASSERT_SV_SETNV_MG;
1709
1710     sv_setnv(sv,num);
1711     SvSETMAGIC(sv);
1712 }
1713
1714 /* Return a cleaned-up, printable version of sv, for non-numeric, or
1715  * not incrementable warning display.
1716  * Originally part of S_not_a_number().
1717  * The return value may be != tmpbuf.
1718  */
1719
1720 STATIC const char *
1721 S_sv_display(pTHX_ SV *const sv, char *tmpbuf, STRLEN tmpbuf_size) {
1722     const char *pv;
1723
1724      PERL_ARGS_ASSERT_SV_DISPLAY;
1725
1726      if (DO_UTF8(sv)) {
1727           SV *dsv = newSVpvs_flags("", SVs_TEMP);
1728           pv = sv_uni_display(dsv, sv, 10, UNI_DISPLAY_ISPRINT);
1729      } else {
1730           char *d = tmpbuf;
1731           const char * const limit = tmpbuf + tmpbuf_size - 8;
1732           /* each *s can expand to 4 chars + "...\0",
1733              i.e. need room for 8 chars */
1734         
1735           const char *s = SvPVX_const(sv);
1736           const char * const end = s + SvCUR(sv);
1737           for ( ; s < end && d < limit; s++ ) {
1738                int ch = *s & 0xFF;
1739                if (! isASCII(ch) && !isPRINT_LC(ch)) {
1740                     *d++ = 'M';
1741                     *d++ = '-';
1742
1743                     /* Map to ASCII "equivalent" of Latin1 */
1744                     ch = LATIN1_TO_NATIVE(NATIVE_TO_LATIN1(ch) & 127);
1745                }
1746                if (ch == '\n') {
1747                     *d++ = '\\';
1748                     *d++ = 'n';
1749                }
1750                else if (ch == '\r') {
1751                     *d++ = '\\';
1752                     *d++ = 'r';
1753                }
1754                else if (ch == '\f') {
1755                     *d++ = '\\';
1756                     *d++ = 'f';
1757                }
1758                else if (ch == '\\') {
1759                     *d++ = '\\';
1760                     *d++ = '\\';
1761                }
1762                else if (ch == '\0') {
1763                     *d++ = '\\';
1764                     *d++ = '0';
1765                }
1766                else if (isPRINT_LC(ch))
1767                     *d++ = ch;
1768                else {
1769                     *d++ = '^';
1770                     *d++ = toCTRL(ch);
1771                }
1772           }
1773           if (s < end) {
1774                *d++ = '.';
1775                *d++ = '.';
1776                *d++ = '.';
1777           }
1778           *d = '\0';
1779           pv = tmpbuf;
1780     }
1781
1782     return pv;
1783 }
1784
1785 /* Print an "isn't numeric" warning, using a cleaned-up,
1786  * printable version of the offending string
1787  */
1788
1789 STATIC void
1790 S_not_a_number(pTHX_ SV *const sv)
1791 {
1792      dVAR;
1793      char tmpbuf[64];
1794      const char *pv;
1795
1796      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1797
1798      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1799
1800     if (PL_op)
1801         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1802                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1803                     "Argument \"%s\" isn't numeric in %s", pv,
1804                     OP_DESC(PL_op));
1805     else
1806         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1807                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1808                     "Argument \"%s\" isn't numeric", pv);
1809 }
1810
1811 STATIC void
1812 S_not_incrementable(pTHX_ SV *const sv) {
1813      dVAR;
1814      char tmpbuf[64];
1815      const char *pv;
1816
1817      PERL_ARGS_ASSERT_NOT_INCREMENTABLE;
1818
1819      pv = sv_display(sv, tmpbuf, sizeof(tmpbuf));
1820
1821      Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1822                  "Argument \"%s\" treated as 0 in increment (++)", pv);
1823 }
1824
1825 /*
1826 =for apidoc looks_like_number
1827
1828 Test if the content of an SV looks like a number (or is a number).
1829 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1830 non-numeric warning), even if your atof() doesn't grok them.  Get-magic is
1831 ignored.
1832
1833 =cut
1834 */
1835
1836 I32
1837 Perl_looks_like_number(pTHX_ SV *const sv)
1838 {
1839     const char *sbegin;
1840     STRLEN len;
1841
1842     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1843
1844     if (SvPOK(sv) || SvPOKp(sv)) {
1845         sbegin = SvPV_nomg_const(sv, len);
1846     }
1847     else
1848         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1849     return grok_number(sbegin, len, NULL);
1850 }
1851
1852 STATIC bool
1853 S_glob_2number(pTHX_ GV * const gv)
1854 {
1855     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1856
1857     /* We know that all GVs stringify to something that is not-a-number,
1858         so no need to test that.  */
1859     if (ckWARN(WARN_NUMERIC))
1860     {
1861         SV *const buffer = sv_newmortal();
1862         gv_efullname3(buffer, gv, "*");
1863         not_a_number(buffer);
1864     }
1865     /* We just want something true to return, so that S_sv_2iuv_common
1866         can tail call us and return true.  */
1867     return TRUE;
1868 }
1869
1870 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1871    until proven guilty, assume that things are not that bad... */
1872
1873 /*
1874    NV_PRESERVES_UV:
1875
1876    As 64 bit platforms often have an NV that doesn't preserve all bits of
1877    an IV (an assumption perl has been based on to date) it becomes necessary
1878    to remove the assumption that the NV always carries enough precision to
1879    recreate the IV whenever needed, and that the NV is the canonical form.
1880    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1881    precision as a side effect of conversion (which would lead to insanity
1882    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1883    1) to distinguish between IV/UV/NV slots that have cached a valid
1884       conversion where precision was lost and IV/UV/NV slots that have a
1885       valid conversion which has lost no precision
1886    2) to ensure that if a numeric conversion to one form is requested that
1887       would lose precision, the precise conversion (or differently
1888       imprecise conversion) is also performed and cached, to prevent
1889       requests for different numeric formats on the same SV causing
1890       lossy conversion chains. (lossless conversion chains are perfectly
1891       acceptable (still))
1892
1893
1894    flags are used:
1895    SvIOKp is true if the IV slot contains a valid value
1896    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1897    SvNOKp is true if the NV slot contains a valid value
1898    SvNOK  is true only if the NV value is accurate
1899
1900    so
1901    while converting from PV to NV, check to see if converting that NV to an
1902    IV(or UV) would lose accuracy over a direct conversion from PV to
1903    IV(or UV). If it would, cache both conversions, return NV, but mark
1904    SV as IOK NOKp (ie not NOK).
1905
1906    While converting from PV to IV, check to see if converting that IV to an
1907    NV would lose accuracy over a direct conversion from PV to NV. If it
1908    would, cache both conversions, flag similarly.
1909
1910    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1911    correctly because if IV & NV were set NV *always* overruled.
1912    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1913    changes - now IV and NV together means that the two are interchangeable:
1914    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1915
1916    The benefit of this is that operations such as pp_add know that if
1917    SvIOK is true for both left and right operands, then integer addition
1918    can be used instead of floating point (for cases where the result won't
1919    overflow). Before, floating point was always used, which could lead to
1920    loss of precision compared with integer addition.
1921
1922    * making IV and NV equal status should make maths accurate on 64 bit
1923      platforms
1924    * may speed up maths somewhat if pp_add and friends start to use
1925      integers when possible instead of fp. (Hopefully the overhead in
1926      looking for SvIOK and checking for overflow will not outweigh the
1927      fp to integer speedup)
1928    * will slow down integer operations (callers of SvIV) on "inaccurate"
1929      values, as the change from SvIOK to SvIOKp will cause a call into
1930      sv_2iv each time rather than a macro access direct to the IV slot
1931    * should speed up number->string conversion on integers as IV is
1932      favoured when IV and NV are equally accurate
1933
1934    ####################################################################
1935    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1936    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1937    On the other hand, SvUOK is true iff UV.
1938    ####################################################################
1939
1940    Your mileage will vary depending your CPU's relative fp to integer
1941    performance ratio.
1942 */
1943
1944 #ifndef NV_PRESERVES_UV
1945 #  define IS_NUMBER_UNDERFLOW_IV 1
1946 #  define IS_NUMBER_UNDERFLOW_UV 2
1947 #  define IS_NUMBER_IV_AND_UV    2
1948 #  define IS_NUMBER_OVERFLOW_IV  4
1949 #  define IS_NUMBER_OVERFLOW_UV  5
1950
1951 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1952
1953 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1954 STATIC int
1955 S_sv_2iuv_non_preserve(pTHX_ SV *const sv
1956 #  ifdef DEBUGGING
1957                        , I32 numtype
1958 #  endif
1959                        )
1960 {
1961     dVAR;
1962
1963     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1964
1965     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));
1966     if (SvNVX(sv) < (NV)IV_MIN) {
1967         (void)SvIOKp_on(sv);
1968         (void)SvNOK_on(sv);
1969         SvIV_set(sv, IV_MIN);
1970         return IS_NUMBER_UNDERFLOW_IV;
1971     }
1972     if (SvNVX(sv) > (NV)UV_MAX) {
1973         (void)SvIOKp_on(sv);
1974         (void)SvNOK_on(sv);
1975         SvIsUV_on(sv);
1976         SvUV_set(sv, UV_MAX);
1977         return IS_NUMBER_OVERFLOW_UV;
1978     }
1979     (void)SvIOKp_on(sv);
1980     (void)SvNOK_on(sv);
1981     /* Can't use strtol etc to convert this string.  (See truth table in
1982        sv_2iv  */
1983     if (SvNVX(sv) <= (UV)IV_MAX) {
1984         SvIV_set(sv, I_V(SvNVX(sv)));
1985         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1986             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1987         } else {
1988             /* Integer is imprecise. NOK, IOKp */
1989         }
1990         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1991     }
1992     SvIsUV_on(sv);
1993     SvUV_set(sv, U_V(SvNVX(sv)));
1994     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1995         if (SvUVX(sv) == UV_MAX) {
1996             /* As we know that NVs don't preserve UVs, UV_MAX cannot
1997                possibly be preserved by NV. Hence, it must be overflow.
1998                NOK, IOKp */
1999             return IS_NUMBER_OVERFLOW_UV;
2000         }
2001         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
2002     } else {
2003         /* Integer is imprecise. NOK, IOKp */
2004     }
2005     return IS_NUMBER_OVERFLOW_IV;
2006 }
2007 #endif /* !NV_PRESERVES_UV*/
2008
2009 STATIC bool
2010 S_sv_2iuv_common(pTHX_ SV *const sv)
2011 {
2012     dVAR;
2013
2014     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
2015
2016     if (SvNOKp(sv)) {
2017         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
2018          * without also getting a cached IV/UV from it at the same time
2019          * (ie PV->NV conversion should detect loss of accuracy and cache
2020          * IV or UV at same time to avoid this. */
2021         /* IV-over-UV optimisation - choose to cache IV if possible */
2022
2023         if (SvTYPE(sv) == SVt_NV)
2024             sv_upgrade(sv, SVt_PVNV);
2025
2026         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
2027         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
2028            certainly cast into the IV range at IV_MAX, whereas the correct
2029            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
2030            cases go to UV */
2031 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
2032         if (Perl_isnan(SvNVX(sv))) {
2033             SvUV_set(sv, 0);
2034             SvIsUV_on(sv);
2035             return FALSE;
2036         }
2037 #endif
2038         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2039             SvIV_set(sv, I_V(SvNVX(sv)));
2040             if (SvNVX(sv) == (NV) SvIVX(sv)
2041 #ifndef NV_PRESERVES_UV
2042                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2043                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2044                 /* Don't flag it as "accurately an integer" if the number
2045                    came from a (by definition imprecise) NV operation, and
2046                    we're outside the range of NV integer precision */
2047 #endif
2048                 ) {
2049                 if (SvNOK(sv))
2050                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2051                 else {
2052                     /* scalar has trailing garbage, eg "42a" */
2053                 }
2054                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2055                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2056                                       PTR2UV(sv),
2057                                       SvNVX(sv),
2058                                       SvIVX(sv)));
2059
2060             } else {
2061                 /* IV not precise.  No need to convert from PV, as NV
2062                    conversion would already have cached IV if it detected
2063                    that PV->IV would be better than PV->NV->IV
2064                    flags already correct - don't set public IOK.  */
2065                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2066                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2067                                       PTR2UV(sv),
2068                                       SvNVX(sv),
2069                                       SvIVX(sv)));
2070             }
2071             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2072                but the cast (NV)IV_MIN rounds to a the value less (more
2073                negative) than IV_MIN which happens to be equal to SvNVX ??
2074                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2075                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2076                (NV)UVX == NVX are both true, but the values differ. :-(
2077                Hopefully for 2s complement IV_MIN is something like
2078                0x8000000000000000 which will be exact. NWC */
2079         }
2080         else {
2081             SvUV_set(sv, U_V(SvNVX(sv)));
2082             if (
2083                 (SvNVX(sv) == (NV) SvUVX(sv))
2084 #ifndef  NV_PRESERVES_UV
2085                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2086                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2087                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2088                 /* Don't flag it as "accurately an integer" if the number
2089                    came from a (by definition imprecise) NV operation, and
2090                    we're outside the range of NV integer precision */
2091 #endif
2092                 && SvNOK(sv)
2093                 )
2094                 SvIOK_on(sv);
2095             SvIsUV_on(sv);
2096             DEBUG_c(PerlIO_printf(Perl_debug_log,
2097                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2098                                   PTR2UV(sv),
2099                                   SvUVX(sv),
2100                                   SvUVX(sv)));
2101         }
2102     }
2103     else if (SvPOKp(sv)) {
2104         UV value;
2105         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2106         /* We want to avoid a possible problem when we cache an IV/ a UV which
2107            may be later translated to an NV, and the resulting NV is not
2108            the same as the direct translation of the initial string
2109            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2110            be careful to ensure that the value with the .456 is around if the
2111            NV value is requested in the future).
2112         
2113            This means that if we cache such an IV/a UV, we need to cache the
2114            NV as well.  Moreover, we trade speed for space, and do not
2115            cache the NV if we are sure it's not needed.
2116          */
2117
2118         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2119         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2120              == IS_NUMBER_IN_UV) {
2121             /* It's definitely an integer, only upgrade to PVIV */
2122             if (SvTYPE(sv) < SVt_PVIV)
2123                 sv_upgrade(sv, SVt_PVIV);
2124             (void)SvIOK_on(sv);
2125         } else if (SvTYPE(sv) < SVt_PVNV)
2126             sv_upgrade(sv, SVt_PVNV);
2127
2128         /* If NVs preserve UVs then we only use the UV value if we know that
2129            we aren't going to call atof() below. If NVs don't preserve UVs
2130            then the value returned may have more precision than atof() will
2131            return, even though value isn't perfectly accurate.  */
2132         if ((numtype & (IS_NUMBER_IN_UV
2133 #ifdef NV_PRESERVES_UV
2134                         | IS_NUMBER_NOT_INT
2135 #endif
2136             )) == IS_NUMBER_IN_UV) {
2137             /* This won't turn off the public IOK flag if it was set above  */
2138             (void)SvIOKp_on(sv);
2139
2140             if (!(numtype & IS_NUMBER_NEG)) {
2141                 /* positive */;
2142                 if (value <= (UV)IV_MAX) {
2143                     SvIV_set(sv, (IV)value);
2144                 } else {
2145                     /* it didn't overflow, and it was positive. */
2146                     SvUV_set(sv, value);
2147                     SvIsUV_on(sv);
2148                 }
2149             } else {
2150                 /* 2s complement assumption  */
2151                 if (value <= (UV)IV_MIN) {
2152                     SvIV_set(sv, -(IV)value);
2153                 } else {
2154                     /* Too negative for an IV.  This is a double upgrade, but
2155                        I'm assuming it will be rare.  */
2156                     if (SvTYPE(sv) < SVt_PVNV)
2157                         sv_upgrade(sv, SVt_PVNV);
2158                     SvNOK_on(sv);
2159                     SvIOK_off(sv);
2160                     SvIOKp_on(sv);
2161                     SvNV_set(sv, -(NV)value);
2162                     SvIV_set(sv, IV_MIN);
2163                 }
2164             }
2165         }
2166         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2167            will be in the previous block to set the IV slot, and the next
2168            block to set the NV slot.  So no else here.  */
2169         
2170         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2171             != IS_NUMBER_IN_UV) {
2172             /* It wasn't an (integer that doesn't overflow the UV). */
2173             SvNV_set(sv, Atof(SvPVX_const(sv)));
2174
2175             if (! numtype && ckWARN(WARN_NUMERIC))
2176                 not_a_number(sv);
2177
2178 #if defined(USE_LONG_DOUBLE)
2179             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2180                                   PTR2UV(sv), SvNVX(sv)));
2181 #else
2182             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2183                                   PTR2UV(sv), SvNVX(sv)));
2184 #endif
2185
2186 #ifdef NV_PRESERVES_UV
2187             (void)SvIOKp_on(sv);
2188             (void)SvNOK_on(sv);
2189             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2190                 SvIV_set(sv, I_V(SvNVX(sv)));
2191                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2192                     SvIOK_on(sv);
2193                 } else {
2194                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2195                 }
2196                 /* UV will not work better than IV */
2197             } else {
2198                 if (SvNVX(sv) > (NV)UV_MAX) {
2199                     SvIsUV_on(sv);
2200                     /* Integer is inaccurate. NOK, IOKp, is UV */
2201                     SvUV_set(sv, UV_MAX);
2202                 } else {
2203                     SvUV_set(sv, U_V(SvNVX(sv)));
2204                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2205                        NV preservse UV so can do correct comparison.  */
2206                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2207                         SvIOK_on(sv);
2208                     } else {
2209                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2210                     }
2211                 }
2212                 SvIsUV_on(sv);
2213             }
2214 #else /* NV_PRESERVES_UV */
2215             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2216                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2217                 /* The IV/UV slot will have been set from value returned by
2218                    grok_number above.  The NV slot has just been set using
2219                    Atof.  */
2220                 SvNOK_on(sv);
2221                 assert (SvIOKp(sv));
2222             } else {
2223                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2224                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2225                     /* Small enough to preserve all bits. */
2226                     (void)SvIOKp_on(sv);
2227                     SvNOK_on(sv);
2228                     SvIV_set(sv, I_V(SvNVX(sv)));
2229                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2230                         SvIOK_on(sv);
2231                     /* Assumption: first non-preserved integer is < IV_MAX,
2232                        this NV is in the preserved range, therefore: */
2233                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2234                           < (UV)IV_MAX)) {
2235                         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);
2236                     }
2237                 } else {
2238                     /* IN_UV NOT_INT
2239                          0      0       already failed to read UV.
2240                          0      1       already failed to read UV.
2241                          1      0       you won't get here in this case. IV/UV
2242                                         slot set, public IOK, Atof() unneeded.
2243                          1      1       already read UV.
2244                        so there's no point in sv_2iuv_non_preserve() attempting
2245                        to use atol, strtol, strtoul etc.  */
2246 #  ifdef DEBUGGING
2247                     sv_2iuv_non_preserve (sv, numtype);
2248 #  else
2249                     sv_2iuv_non_preserve (sv);
2250 #  endif
2251                 }
2252             }
2253 #endif /* NV_PRESERVES_UV */
2254         /* It might be more code efficient to go through the entire logic above
2255            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2256            gets complex and potentially buggy, so more programmer efficient
2257            to do it this way, by turning off the public flags:  */
2258         if (!numtype)
2259             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2260         }
2261     }
2262     else  {
2263         if (isGV_with_GP(sv))
2264             return glob_2number(MUTABLE_GV(sv));
2265
2266         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2267                 report_uninit(sv);
2268         if (SvTYPE(sv) < SVt_IV)
2269             /* Typically the caller expects that sv_any is not NULL now.  */
2270             sv_upgrade(sv, SVt_IV);
2271         /* Return 0 from the caller.  */
2272         return TRUE;
2273     }
2274     return FALSE;
2275 }
2276
2277 /*
2278 =for apidoc sv_2iv_flags
2279
2280 Return the integer value of an SV, doing any necessary string
2281 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2282 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2283
2284 =cut
2285 */
2286
2287 IV
2288 Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags)
2289 {
2290     dVAR;
2291
2292     if (!sv)
2293         return 0;
2294
2295     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2296          && SvTYPE(sv) != SVt_PVFM);
2297
2298     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2299         mg_get(sv);
2300
2301     if (SvROK(sv)) {
2302         if (SvAMAGIC(sv)) {
2303             SV * tmpstr;
2304             if (flags & SV_SKIP_OVERLOAD)
2305                 return 0;
2306             tmpstr = AMG_CALLunary(sv, numer_amg);
2307             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2308                 return SvIV(tmpstr);
2309             }
2310         }
2311         return PTR2IV(SvRV(sv));
2312     }
2313
2314     if (SvVALID(sv) || isREGEXP(sv)) {
2315         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2316            the same flag bit as SVf_IVisUV, so must not let them cache IVs.
2317            In practice they are extremely unlikely to actually get anywhere
2318            accessible by user Perl code - the only way that I'm aware of is when
2319            a constant subroutine which is used as the second argument to index.
2320
2321            Regexps have no SvIVX and SvNVX fields.
2322         */
2323         assert(isREGEXP(sv) || SvPOKp(sv));
2324         {
2325             UV value;
2326             const char * const ptr =
2327                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2328             const int numtype
2329                 = grok_number(ptr, SvCUR(sv), &value);
2330
2331             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2332                 == IS_NUMBER_IN_UV) {
2333                 /* It's definitely an integer */
2334                 if (numtype & IS_NUMBER_NEG) {
2335                     if (value < (UV)IV_MIN)
2336                         return -(IV)value;
2337                 } else {
2338                     if (value < (UV)IV_MAX)
2339                         return (IV)value;
2340                 }
2341             }
2342             if (!numtype) {
2343                 if (ckWARN(WARN_NUMERIC))
2344                     not_a_number(sv);
2345             }
2346             return I_V(Atof(ptr));
2347         }
2348     }
2349
2350     if (SvTHINKFIRST(sv)) {
2351 #ifdef PERL_OLD_COPY_ON_WRITE
2352         if (SvIsCOW(sv)) {
2353             sv_force_normal_flags(sv, 0);
2354         }
2355 #endif
2356         if (SvREADONLY(sv) && !SvOK(sv)) {
2357             if (ckWARN(WARN_UNINITIALIZED))
2358                 report_uninit(sv);
2359             return 0;
2360         }
2361     }
2362
2363     if (!SvIOKp(sv)) {
2364         if (S_sv_2iuv_common(aTHX_ sv))
2365             return 0;
2366     }
2367
2368     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2369         PTR2UV(sv),SvIVX(sv)));
2370     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2371 }
2372
2373 /*
2374 =for apidoc sv_2uv_flags
2375
2376 Return the unsigned integer value of an SV, doing any necessary string
2377 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2378 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2379
2380 =cut
2381 */
2382
2383 UV
2384 Perl_sv_2uv_flags(pTHX_ SV *const sv, const I32 flags)
2385 {
2386     dVAR;
2387
2388     if (!sv)
2389         return 0;
2390
2391     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2392         mg_get(sv);
2393
2394     if (SvROK(sv)) {
2395         if (SvAMAGIC(sv)) {
2396             SV *tmpstr;
2397             if (flags & SV_SKIP_OVERLOAD)
2398                 return 0;
2399             tmpstr = AMG_CALLunary(sv, numer_amg);
2400             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2401                 return SvUV(tmpstr);
2402             }
2403         }
2404         return PTR2UV(SvRV(sv));
2405     }
2406
2407     if (SvVALID(sv) || isREGEXP(sv)) {
2408         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2409            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  
2410            Regexps have no SvIVX and SvNVX fields. */
2411         assert(isREGEXP(sv) || SvPOKp(sv));
2412         {
2413             UV value;
2414             const char * const ptr =
2415                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2416             const int numtype
2417                 = grok_number(ptr, SvCUR(sv), &value);
2418
2419             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2420                 == IS_NUMBER_IN_UV) {
2421                 /* It's definitely an integer */
2422                 if (!(numtype & IS_NUMBER_NEG))
2423                     return value;
2424             }
2425             if (!numtype) {
2426                 if (ckWARN(WARN_NUMERIC))
2427                     not_a_number(sv);
2428             }
2429             return U_V(Atof(ptr));
2430         }
2431     }
2432
2433     if (SvTHINKFIRST(sv)) {
2434 #ifdef PERL_OLD_COPY_ON_WRITE
2435         if (SvIsCOW(sv)) {
2436             sv_force_normal_flags(sv, 0);
2437         }
2438 #endif
2439         if (SvREADONLY(sv) && !SvOK(sv)) {
2440             if (ckWARN(WARN_UNINITIALIZED))
2441                 report_uninit(sv);
2442             return 0;
2443         }
2444     }
2445
2446     if (!SvIOKp(sv)) {
2447         if (S_sv_2iuv_common(aTHX_ sv))
2448             return 0;
2449     }
2450
2451     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2452                           PTR2UV(sv),SvUVX(sv)));
2453     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2454 }
2455
2456 /*
2457 =for apidoc sv_2nv_flags
2458
2459 Return the num value of an SV, doing any necessary string or integer
2460 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2461 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2462
2463 =cut
2464 */
2465
2466 NV
2467 Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags)
2468 {
2469     dVAR;
2470     if (!sv)
2471         return 0.0;
2472     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2473          && SvTYPE(sv) != SVt_PVFM);
2474     if (SvGMAGICAL(sv) || SvVALID(sv) || isREGEXP(sv)) {
2475         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2476            the same flag bit as SVf_IVisUV, so must not let them cache NVs.
2477            Regexps have no SvIVX and SvNVX fields.  */
2478         const char *ptr;
2479         if (flags & SV_GMAGIC)
2480             mg_get(sv);
2481         if (SvNOKp(sv))
2482             return SvNVX(sv);
2483         if (SvPOKp(sv) && !SvIOKp(sv)) {
2484             ptr = SvPVX_const(sv);
2485           grokpv:
2486             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2487                 !grok_number(ptr, SvCUR(sv), NULL))
2488                 not_a_number(sv);
2489             return Atof(ptr);
2490         }
2491         if (SvIOKp(sv)) {
2492             if (SvIsUV(sv))
2493                 return (NV)SvUVX(sv);
2494             else
2495                 return (NV)SvIVX(sv);
2496         }
2497         if (SvROK(sv)) {
2498             goto return_rok;
2499         }
2500         if (isREGEXP(sv)) {
2501             ptr = RX_WRAPPED((REGEXP *)sv);
2502             goto grokpv;
2503         }
2504         assert(SvTYPE(sv) >= SVt_PVMG);
2505         /* This falls through to the report_uninit near the end of the
2506            function. */
2507     } else if (SvTHINKFIRST(sv)) {
2508         if (SvROK(sv)) {
2509         return_rok:
2510             if (SvAMAGIC(sv)) {
2511                 SV *tmpstr;
2512                 if (flags & SV_SKIP_OVERLOAD)
2513                     return 0;
2514                 tmpstr = AMG_CALLunary(sv, numer_amg);
2515                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2516                     return SvNV(tmpstr);
2517                 }
2518             }
2519             return PTR2NV(SvRV(sv));
2520         }
2521 #ifdef PERL_OLD_COPY_ON_WRITE
2522         if (SvIsCOW(sv)) {
2523             sv_force_normal_flags(sv, 0);
2524         }
2525 #endif
2526         if (SvREADONLY(sv) && !SvOK(sv)) {
2527             if (ckWARN(WARN_UNINITIALIZED))
2528                 report_uninit(sv);
2529             return 0.0;
2530         }
2531     }
2532     if (SvTYPE(sv) < SVt_NV) {
2533         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2534         sv_upgrade(sv, SVt_NV);
2535 #ifdef USE_LONG_DOUBLE
2536         DEBUG_c({
2537             STORE_NUMERIC_LOCAL_SET_STANDARD();
2538             PerlIO_printf(Perl_debug_log,
2539                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2540                           PTR2UV(sv), SvNVX(sv));
2541             RESTORE_NUMERIC_LOCAL();
2542         });
2543 #else
2544         DEBUG_c({
2545             STORE_NUMERIC_LOCAL_SET_STANDARD();
2546             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2547                           PTR2UV(sv), SvNVX(sv));
2548             RESTORE_NUMERIC_LOCAL();
2549         });
2550 #endif
2551     }
2552     else if (SvTYPE(sv) < SVt_PVNV)
2553         sv_upgrade(sv, SVt_PVNV);
2554     if (SvNOKp(sv)) {
2555         return SvNVX(sv);
2556     }
2557     if (SvIOKp(sv)) {
2558         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2559 #ifdef NV_PRESERVES_UV
2560         if (SvIOK(sv))
2561             SvNOK_on(sv);
2562         else
2563             SvNOKp_on(sv);
2564 #else
2565         /* Only set the public NV OK flag if this NV preserves the IV  */
2566         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2567         if (SvIOK(sv) &&
2568             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2569                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2570             SvNOK_on(sv);
2571         else
2572             SvNOKp_on(sv);
2573 #endif
2574     }
2575     else if (SvPOKp(sv)) {
2576         UV value;
2577         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2578         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2579             not_a_number(sv);
2580 #ifdef NV_PRESERVES_UV
2581         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2582             == IS_NUMBER_IN_UV) {
2583             /* It's definitely an integer */
2584             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2585         } else
2586             SvNV_set(sv, Atof(SvPVX_const(sv)));
2587         if (numtype)
2588             SvNOK_on(sv);
2589         else
2590             SvNOKp_on(sv);
2591 #else
2592         SvNV_set(sv, Atof(SvPVX_const(sv)));
2593         /* Only set the public NV OK flag if this NV preserves the value in
2594            the PV at least as well as an IV/UV would.
2595            Not sure how to do this 100% reliably. */
2596         /* if that shift count is out of range then Configure's test is
2597            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2598            UV_BITS */
2599         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2600             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2601             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2602         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2603             /* Can't use strtol etc to convert this string, so don't try.
2604                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2605             SvNOK_on(sv);
2606         } else {
2607             /* value has been set.  It may not be precise.  */
2608             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2609                 /* 2s complement assumption for (UV)IV_MIN  */
2610                 SvNOK_on(sv); /* Integer is too negative.  */
2611             } else {
2612                 SvNOKp_on(sv);
2613                 SvIOKp_on(sv);
2614
2615                 if (numtype & IS_NUMBER_NEG) {
2616                     SvIV_set(sv, -(IV)value);
2617                 } else if (value <= (UV)IV_MAX) {
2618                     SvIV_set(sv, (IV)value);
2619                 } else {
2620                     SvUV_set(sv, value);
2621                     SvIsUV_on(sv);
2622                 }
2623
2624                 if (numtype & IS_NUMBER_NOT_INT) {
2625                     /* I believe that even if the original PV had decimals,
2626                        they are lost beyond the limit of the FP precision.
2627                        However, neither is canonical, so both only get p
2628                        flags.  NWC, 2000/11/25 */
2629                     /* Both already have p flags, so do nothing */
2630                 } else {
2631                     const NV nv = SvNVX(sv);
2632                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2633                         if (SvIVX(sv) == I_V(nv)) {
2634                             SvNOK_on(sv);
2635                         } else {
2636                             /* It had no "." so it must be integer.  */
2637                         }
2638                         SvIOK_on(sv);
2639                     } else {
2640                         /* between IV_MAX and NV(UV_MAX).
2641                            Could be slightly > UV_MAX */
2642
2643                         if (numtype & IS_NUMBER_NOT_INT) {
2644                             /* UV and NV both imprecise.  */
2645                         } else {
2646                             const UV nv_as_uv = U_V(nv);
2647
2648                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2649                                 SvNOK_on(sv);
2650                             }
2651                             SvIOK_on(sv);
2652                         }
2653                     }
2654                 }
2655             }
2656         }
2657         /* It might be more code efficient to go through the entire logic above
2658            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2659            gets complex and potentially buggy, so more programmer efficient
2660            to do it this way, by turning off the public flags:  */
2661         if (!numtype)
2662             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2663 #endif /* NV_PRESERVES_UV */
2664     }
2665     else  {
2666         if (isGV_with_GP(sv)) {
2667             glob_2number(MUTABLE_GV(sv));
2668             return 0.0;
2669         }
2670
2671         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2672             report_uninit(sv);
2673         assert (SvTYPE(sv) >= SVt_NV);
2674         /* Typically the caller expects that sv_any is not NULL now.  */
2675         /* XXX Ilya implies that this is a bug in callers that assume this
2676            and ideally should be fixed.  */
2677         return 0.0;
2678     }
2679 #if defined(USE_LONG_DOUBLE)
2680     DEBUG_c({
2681         STORE_NUMERIC_LOCAL_SET_STANDARD();
2682         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2683                       PTR2UV(sv), SvNVX(sv));
2684         RESTORE_NUMERIC_LOCAL();
2685     });
2686 #else
2687     DEBUG_c({
2688         STORE_NUMERIC_LOCAL_SET_STANDARD();
2689         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2690                       PTR2UV(sv), SvNVX(sv));
2691         RESTORE_NUMERIC_LOCAL();
2692     });
2693 #endif
2694     return SvNVX(sv);
2695 }
2696
2697 /*
2698 =for apidoc sv_2num
2699
2700 Return an SV with the numeric value of the source SV, doing any necessary
2701 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2702 access this function.
2703
2704 =cut
2705 */
2706
2707 SV *
2708 Perl_sv_2num(pTHX_ SV *const sv)
2709 {
2710     PERL_ARGS_ASSERT_SV_2NUM;
2711
2712     if (!SvROK(sv))
2713         return sv;
2714     if (SvAMAGIC(sv)) {
2715         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2716         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2717         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2718             return sv_2num(tmpsv);
2719     }
2720     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2721 }
2722
2723 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2724  * UV as a string towards the end of buf, and return pointers to start and
2725  * end of it.
2726  *
2727  * We assume that buf is at least TYPE_CHARS(UV) long.
2728  */
2729
2730 static char *
2731 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2732 {
2733     char *ptr = buf + TYPE_CHARS(UV);
2734     char * const ebuf = ptr;
2735     int sign;
2736
2737     PERL_ARGS_ASSERT_UIV_2BUF;
2738
2739     if (is_uv)
2740         sign = 0;
2741     else if (iv >= 0) {
2742         uv = iv;
2743         sign = 0;
2744     } else {
2745         uv = -iv;
2746         sign = 1;
2747     }
2748     do {
2749         *--ptr = '0' + (char)(uv % 10);
2750     } while (uv /= 10);
2751     if (sign)
2752         *--ptr = '-';
2753     *peob = ebuf;
2754     return ptr;
2755 }
2756
2757 /*
2758 =for apidoc sv_2pv_flags
2759
2760 Returns a pointer to the string value of an SV, and sets *lp to its length.
2761 If flags includes SV_GMAGIC, does an mg_get() first.  Coerces sv to a
2762 string if necessary.  Normally invoked via the C<SvPV_flags> macro.
2763 C<sv_2pv()> and C<sv_2pv_nomg> usually end up here too.
2764
2765 =cut
2766 */
2767
2768 char *
2769 Perl_sv_2pv_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
2770 {
2771     dVAR;
2772     char *s;
2773
2774     if (!sv) {
2775         if (lp)
2776             *lp = 0;
2777         return (char *)"";
2778     }
2779     assert (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVHV
2780          && SvTYPE(sv) != SVt_PVFM);
2781     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2782         mg_get(sv);
2783     if (SvROK(sv)) {
2784         if (SvAMAGIC(sv)) {
2785             SV *tmpstr;
2786             if (flags & SV_SKIP_OVERLOAD)
2787                 return NULL;
2788             tmpstr = AMG_CALLunary(sv, string_amg);
2789             TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2790             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2791                 /* Unwrap this:  */
2792                 /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2793                  */
2794
2795                 char *pv;
2796                 if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2797                     if (flags & SV_CONST_RETURN) {
2798                         pv = (char *) SvPVX_const(tmpstr);
2799                     } else {
2800                         pv = (flags & SV_MUTABLE_RETURN)
2801                             ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2802                     }
2803                     if (lp)
2804                         *lp = SvCUR(tmpstr);
2805                 } else {
2806                     pv = sv_2pv_flags(tmpstr, lp, flags);
2807                 }
2808                 if (SvUTF8(tmpstr))
2809                     SvUTF8_on(sv);
2810                 else
2811                     SvUTF8_off(sv);
2812                 return pv;
2813             }
2814         }
2815         {
2816             STRLEN len;
2817             char *retval;
2818             char *buffer;
2819             SV *const referent = SvRV(sv);
2820
2821             if (!referent) {
2822                 len = 7;
2823                 retval = buffer = savepvn("NULLREF", len);
2824             } else if (SvTYPE(referent) == SVt_REGEXP &&
2825                        (!(PL_curcop->cop_hints & HINT_NO_AMAGIC) ||
2826                         amagic_is_enabled(string_amg))) {
2827                 REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2828
2829                 assert(re);
2830                         
2831                 /* If the regex is UTF-8 we want the containing scalar to
2832                    have an UTF-8 flag too */
2833                 if (RX_UTF8(re))
2834                     SvUTF8_on(sv);
2835                 else
2836                     SvUTF8_off(sv);     
2837
2838                 if (lp)
2839                     *lp = RX_WRAPLEN(re);
2840  
2841                 return RX_WRAPPED(re);
2842             } else {
2843                 const char *const typestr = sv_reftype(referent, 0);
2844                 const STRLEN typelen = strlen(typestr);
2845                 UV addr = PTR2UV(referent);
2846                 const char *stashname = NULL;
2847                 STRLEN stashnamelen = 0; /* hush, gcc */
2848                 const char *buffer_end;
2849
2850                 if (SvOBJECT(referent)) {
2851                     const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2852
2853                     if (name) {
2854                         stashname = HEK_KEY(name);
2855                         stashnamelen = HEK_LEN(name);
2856
2857                         if (HEK_UTF8(name)) {
2858                             SvUTF8_on(sv);
2859                         } else {
2860                             SvUTF8_off(sv);
2861                         }
2862                     } else {
2863                         stashname = "__ANON__";
2864                         stashnamelen = 8;
2865                     }
2866                     len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2867                         + 2 * sizeof(UV) + 2 /* )\0 */;
2868                 } else {
2869                     len = typelen + 3 /* (0x */
2870                         + 2 * sizeof(UV) + 2 /* )\0 */;
2871                 }
2872
2873                 Newx(buffer, len, char);
2874                 buffer_end = retval = buffer + len;
2875
2876                 /* Working backwards  */
2877                 *--retval = '\0';
2878                 *--retval = ')';
2879                 do {
2880                     *--retval = PL_hexdigit[addr & 15];
2881                 } while (addr >>= 4);
2882                 *--retval = 'x';
2883                 *--retval = '0';
2884                 *--retval = '(';
2885
2886                 retval -= typelen;
2887                 memcpy(retval, typestr, typelen);
2888
2889                 if (stashname) {
2890                     *--retval = '=';
2891                     retval -= stashnamelen;
2892                     memcpy(retval, stashname, stashnamelen);
2893                 }
2894                 /* retval may not necessarily have reached the start of the
2895                    buffer here.  */
2896                 assert (retval >= buffer);
2897
2898                 len = buffer_end - retval - 1; /* -1 for that \0  */
2899             }
2900             if (lp)
2901                 *lp = len;
2902             SAVEFREEPV(buffer);
2903             return retval;
2904         }
2905     }
2906
2907     if (SvPOKp(sv)) {
2908         if (lp)
2909             *lp = SvCUR(sv);
2910         if (flags & SV_MUTABLE_RETURN)
2911             return SvPVX_mutable(sv);
2912         if (flags & SV_CONST_RETURN)
2913             return (char *)SvPVX_const(sv);
2914         return SvPVX(sv);
2915     }
2916
2917     if (SvIOK(sv)) {
2918         /* I'm assuming that if both IV and NV are equally valid then
2919            converting the IV is going to be more efficient */
2920         const U32 isUIOK = SvIsUV(sv);
2921         char buf[TYPE_CHARS(UV)];
2922         char *ebuf, *ptr;
2923         STRLEN len;
2924
2925         if (SvTYPE(sv) < SVt_PVIV)
2926             sv_upgrade(sv, SVt_PVIV);
2927         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2928         len = ebuf - ptr;
2929         /* inlined from sv_setpvn */
2930         s = SvGROW_mutable(sv, len + 1);
2931         Move(ptr, s, len, char);
2932         s += len;
2933         *s = '\0';
2934         SvPOK_on(sv);
2935     }
2936     else if (SvNOK(sv)) {
2937         if (SvTYPE(sv) < SVt_PVNV)
2938             sv_upgrade(sv, SVt_PVNV);
2939         if (SvNVX(sv) == 0.0) {
2940             s = SvGROW_mutable(sv, 2);
2941             *s++ = '0';
2942             *s = '\0';
2943         } else {
2944             dSAVE_ERRNO;
2945             /* The +20 is pure guesswork.  Configure test needed. --jhi */
2946             s = SvGROW_mutable(sv, NV_DIG + 20);
2947             /* some Xenix systems wipe out errno here */
2948
2949 #ifndef USE_LOCALE_NUMERIC
2950             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2951             SvPOK_on(sv);
2952 #else
2953             /* Gconvert always uses the current locale.  That's the right thing
2954              * to do if we're supposed to be using locales.  But otherwise, we
2955              * want the result to be based on the C locale, so we need to
2956              * change to the C locale during the Gconvert and then change back.
2957              * But if we're already in the C locale (PL_numeric_standard is
2958              * TRUE in that case), no need to do any changing */
2959             if (PL_numeric_standard || IN_SOME_LOCALE_FORM_RUNTIME) {
2960                 Gconvert(SvNVX(sv), NV_DIG, 0, s);
2961
2962                 /* If the radix character is UTF-8, and actually is in the
2963                  * output, turn on the UTF-8 flag for the scalar */
2964                 if (! PL_numeric_standard
2965                     && PL_numeric_radix_sv && SvUTF8(PL_numeric_radix_sv)
2966                     && instr(s, SvPVX_const(PL_numeric_radix_sv)))
2967                 {
2968                     SvUTF8_on(sv);
2969                 }
2970             }
2971             else {
2972                 char *loc = savepv(setlocale(LC_NUMERIC, NULL));
2973                 setlocale(LC_NUMERIC, "C");
2974                 Gconvert(SvNVX(sv), NV_DIG, 0, s);
2975                 setlocale(LC_NUMERIC, loc);
2976                 Safefree(loc);
2977
2978             }
2979
2980             /* We don't call SvPOK_on(), because it may come to pass that the
2981              * locale changes so that the stringification we just did is no
2982              * longer correct.  We will have to re-stringify every time it is
2983              * needed */
2984 #endif
2985             RESTORE_ERRNO;
2986             while (*s) s++;
2987         }
2988     }
2989     else if (isGV_with_GP(sv)) {
2990         GV *const gv = MUTABLE_GV(sv);
2991         SV *const buffer = sv_newmortal();
2992
2993         gv_efullname3(buffer, gv, "*");
2994
2995         assert(SvPOK(buffer));
2996         if (SvUTF8(buffer))
2997             SvUTF8_on(sv);
2998         if (lp)
2999             *lp = SvCUR(buffer);
3000         return SvPVX(buffer);
3001     }
3002     else if (isREGEXP(sv)) {
3003         if (lp) *lp = RX_WRAPLEN((REGEXP *)sv);
3004         return RX_WRAPPED((REGEXP *)sv);
3005     }
3006     else {
3007         if (lp)
3008             *lp = 0;
3009         if (flags & SV_UNDEF_RETURNS_NULL)
3010             return NULL;
3011         if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
3012             report_uninit(sv);
3013         /* Typically the caller expects that sv_any is not NULL now.  */
3014         if (!SvREADONLY(sv) && SvTYPE(sv) < SVt_PV)
3015             sv_upgrade(sv, SVt_PV);
3016         return (char *)"";
3017     }
3018
3019     {
3020         const STRLEN len = s - SvPVX_const(sv);
3021         if (lp) 
3022             *lp = len;
3023         SvCUR_set(sv, len);
3024     }
3025     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
3026                           PTR2UV(sv),SvPVX_const(sv)));
3027     if (flags & SV_CONST_RETURN)
3028         return (char *)SvPVX_const(sv);
3029     if (flags & SV_MUTABLE_RETURN)
3030         return SvPVX_mutable(sv);
3031     return SvPVX(sv);
3032 }
3033
3034 /*
3035 =for apidoc sv_copypv
3036
3037 Copies a stringified representation of the source SV into the
3038 destination SV.  Automatically performs any necessary mg_get and
3039 coercion of numeric values into strings.  Guaranteed to preserve
3040 UTF8 flag even from overloaded objects.  Similar in nature to
3041 sv_2pv[_flags] but operates directly on an SV instead of just the
3042 string.  Mostly uses sv_2pv_flags to do its work, except when that
3043 would lose the UTF-8'ness of the PV.
3044
3045 =for apidoc sv_copypv_nomg
3046
3047 Like sv_copypv, but doesn't invoke get magic first.
3048
3049 =for apidoc sv_copypv_flags
3050
3051 Implementation of sv_copypv and sv_copypv_nomg.  Calls get magic iff flags
3052 include SV_GMAGIC.
3053
3054 =cut
3055 */
3056
3057 void
3058 Perl_sv_copypv(pTHX_ SV *const dsv, SV *const ssv)
3059 {
3060     PERL_ARGS_ASSERT_SV_COPYPV;
3061
3062     sv_copypv_flags(dsv, ssv, 0);
3063 }
3064
3065 void
3066 Perl_sv_copypv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
3067 {
3068     STRLEN len;
3069     const char *s;
3070
3071     PERL_ARGS_ASSERT_SV_COPYPV_FLAGS;
3072
3073     if ((flags & SV_GMAGIC) && SvGMAGICAL(ssv))
3074         mg_get(ssv);
3075     s = SvPV_nomg_const(ssv,len);
3076     sv_setpvn(dsv,s,len);
3077     if (SvUTF8(ssv))
3078         SvUTF8_on(dsv);
3079     else
3080         SvUTF8_off(dsv);
3081 }
3082
3083 /*
3084 =for apidoc sv_2pvbyte
3085
3086 Return a pointer to the byte-encoded representation of the SV, and set *lp
3087 to its length.  May cause the SV to be downgraded from UTF-8 as a
3088 side-effect.
3089
3090 Usually accessed via the C<SvPVbyte> macro.
3091
3092 =cut
3093 */
3094
3095 char *
3096 Perl_sv_2pvbyte(pTHX_ SV *sv, STRLEN *const lp)
3097 {
3098     PERL_ARGS_ASSERT_SV_2PVBYTE;
3099
3100     SvGETMAGIC(sv);
3101     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3102      || isGV_with_GP(sv) || SvROK(sv)) {
3103         SV *sv2 = sv_newmortal();
3104         sv_copypv_nomg(sv2,sv);
3105         sv = sv2;
3106     }
3107     sv_utf8_downgrade(sv,0);
3108     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3109 }
3110
3111 /*
3112 =for apidoc sv_2pvutf8
3113
3114 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3115 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3116
3117 Usually accessed via the C<SvPVutf8> macro.
3118
3119 =cut
3120 */
3121
3122 char *
3123 Perl_sv_2pvutf8(pTHX_ SV *sv, STRLEN *const lp)
3124 {
3125     PERL_ARGS_ASSERT_SV_2PVUTF8;
3126
3127     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3128      || isGV_with_GP(sv) || SvROK(sv))
3129         sv = sv_mortalcopy(sv);
3130     else
3131         SvGETMAGIC(sv);
3132     sv_utf8_upgrade_nomg(sv);
3133     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3134 }
3135
3136
3137 /*
3138 =for apidoc sv_2bool
3139
3140 This macro is only used by sv_true() or its macro equivalent, and only if
3141 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3142 It calls sv_2bool_flags with the SV_GMAGIC flag.
3143
3144 =for apidoc sv_2bool_flags
3145
3146 This function is only used by sv_true() and friends,  and only if
3147 the latter's argument is neither SvPOK, SvIOK nor SvNOK.  If the flags
3148 contain SV_GMAGIC, then it does an mg_get() first.
3149
3150
3151 =cut
3152 */
3153
3154 bool
3155 Perl_sv_2bool_flags(pTHX_ SV *sv, I32 flags)
3156 {
3157     dVAR;
3158
3159     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3160
3161     restart:
3162     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3163
3164     if (!SvOK(sv))
3165         return 0;
3166     if (SvROK(sv)) {
3167         if (SvAMAGIC(sv)) {
3168             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3169             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv)))) {
3170                 bool svb;
3171                 sv = tmpsv;
3172                 if(SvGMAGICAL(sv)) {
3173                     flags = SV_GMAGIC;
3174                     goto restart; /* call sv_2bool */
3175                 }
3176                 /* expanded SvTRUE_common(sv, (flags = 0, goto restart)) */
3177                 else if(!SvOK(sv)) {
3178                     svb = 0;
3179                 }
3180                 else if(SvPOK(sv)) {
3181                     svb = SvPVXtrue(sv);
3182                 }
3183                 else if((SvFLAGS(sv) & (SVf_IOK|SVf_NOK))) {
3184                     svb = (SvIOK(sv) && SvIVX(sv) != 0)
3185                         || (SvNOK(sv) && SvNVX(sv) != 0.0);
3186                 }
3187                 else {
3188                     flags = 0;
3189                     goto restart; /* call sv_2bool_nomg */
3190                 }
3191                 return cBOOL(svb);
3192             }
3193         }
3194         return SvRV(sv) != 0;
3195     }
3196     if (isREGEXP(sv))
3197         return
3198           RX_WRAPLEN(sv) > 1 || (RX_WRAPLEN(sv) && *RX_WRAPPED(sv) != '0');
3199     return SvTRUE_common(sv, isGV_with_GP(sv) ? 1 : 0);
3200 }
3201
3202 /*
3203 =for apidoc sv_utf8_upgrade
3204
3205 Converts the PV of an SV to its UTF-8-encoded form.
3206 Forces the SV to string form if it is not already.
3207 Will C<mg_get> on C<sv> if appropriate.
3208 Always sets the SvUTF8 flag to avoid future validity checks even
3209 if the whole string is the same in UTF-8 as not.
3210 Returns the number of bytes in the converted string
3211
3212 This is not a general purpose byte encoding to Unicode interface:
3213 use the Encode extension for that.
3214
3215 =for apidoc sv_utf8_upgrade_nomg
3216
3217 Like sv_utf8_upgrade, but doesn't do magic on C<sv>.
3218
3219 =for apidoc sv_utf8_upgrade_flags
3220
3221 Converts the PV of an SV to its UTF-8-encoded form.
3222 Forces the SV to string form if it is not already.
3223 Always sets the SvUTF8 flag to avoid future validity checks even
3224 if all the bytes are invariant in UTF-8.
3225 If C<flags> has C<SV_GMAGIC> bit set,
3226 will C<mg_get> on C<sv> if appropriate, else not.
3227 Returns the number of bytes in the converted string
3228 C<sv_utf8_upgrade> and
3229 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3230
3231 This is not a general purpose byte encoding to Unicode interface:
3232 use the Encode extension for that.
3233
3234 =cut
3235
3236 The grow version is currently not externally documented.  It adds a parameter,
3237 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3238 have free after it upon return.  This allows the caller to reserve extra space
3239 that it intends to fill, to avoid extra grows.
3240
3241 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3242 which can be used to tell this function to not first check to see if there are
3243 any characters that are different in UTF-8 (variant characters) which would
3244 force it to allocate a new string to sv, but to assume there are.  Typically
3245 this flag is used by a routine that has already parsed the string to find that
3246 there are such characters, and passes this information on so that the work
3247 doesn't have to be repeated.
3248
3249 (One might think that the calling routine could pass in the position of the
3250 first such variant, so it wouldn't have to be found again.  But that is not the
3251 case, because typically when the caller is likely to use this flag, it won't be
3252 calling this routine unless it finds something that won't fit into a byte.
3253 Otherwise it tries to not upgrade and just use bytes.  But some things that
3254 do fit into a byte are variants in utf8, and the caller may not have been
3255 keeping track of these.)
3256
3257 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3258 isn't guaranteed due to having other routines do the work in some input cases,
3259 or if the input is already flagged as being in utf8.
3260
3261 The speed of this could perhaps be improved for many cases if someone wanted to
3262 write a fast function that counts the number of variant characters in a string,
3263 especially if it could return the position of the first one.
3264
3265 */
3266
3267 STRLEN
3268 Perl_sv_utf8_upgrade_flags_grow(pTHX_ SV *const sv, const I32 flags, STRLEN extra)
3269 {
3270     dVAR;
3271
3272     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3273
3274     if (sv == &PL_sv_undef)
3275         return 0;
3276     if (!SvPOK_nog(sv)) {
3277         STRLEN len = 0;
3278         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3279             (void) sv_2pv_flags(sv,&len, flags);
3280             if (SvUTF8(sv)) {
3281                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3282                 return len;
3283             }
3284         } else {
3285             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3286         }
3287     }
3288
3289     if (SvUTF8(sv)) {
3290         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3291         return SvCUR(sv);
3292     }
3293
3294     if (SvIsCOW(sv)) {
3295         S_sv_uncow(aTHX_ sv, 0);
3296     }
3297
3298     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3299         sv_recode_to_utf8(sv, PL_encoding);
3300         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3301         return SvCUR(sv);
3302     }
3303
3304     if (SvCUR(sv) == 0) {
3305         if (extra) SvGROW(sv, extra);
3306     } else { /* Assume Latin-1/EBCDIC */
3307         /* This function could be much more efficient if we
3308          * had a FLAG in SVs to signal if there are any variant
3309          * chars in the PV.  Given that there isn't such a flag
3310          * make the loop as fast as possible (although there are certainly ways
3311          * to speed this up, eg. through vectorization) */
3312         U8 * s = (U8 *) SvPVX_const(sv);
3313         U8 * e = (U8 *) SvEND(sv);
3314         U8 *t = s;
3315         STRLEN two_byte_count = 0;
3316         
3317         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3318
3319         /* See if really will need to convert to utf8.  We mustn't rely on our
3320          * incoming SV being well formed and having a trailing '\0', as certain
3321          * code in pp_formline can send us partially built SVs. */
3322
3323         while (t < e) {
3324             const U8 ch = *t++;
3325             if (NATIVE_BYTE_IS_INVARIANT(ch)) continue;
3326
3327             t--;    /* t already incremented; re-point to first variant */
3328             two_byte_count = 1;
3329             goto must_be_utf8;
3330         }
3331
3332         /* utf8 conversion not needed because all are invariants.  Mark as
3333          * UTF-8 even if no variant - saves scanning loop */
3334         SvUTF8_on(sv);
3335         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3336         return SvCUR(sv);
3337
3338 must_be_utf8:
3339
3340         /* Here, the string should be converted to utf8, either because of an
3341          * input flag (two_byte_count = 0), or because a character that
3342          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3343          * the beginning of the string (if we didn't examine anything), or to
3344          * the first variant.  In either case, everything from s to t - 1 will
3345          * occupy only 1 byte each on output.
3346          *
3347          * There are two main ways to convert.  One is to create a new string
3348          * and go through the input starting from the beginning, appending each
3349          * converted value onto the new string as we go along.  It's probably
3350          * best to allocate enough space in the string for the worst possible
3351          * case rather than possibly running out of space and having to
3352          * reallocate and then copy what we've done so far.  Since everything
3353          * from s to t - 1 is invariant, the destination can be initialized
3354          * with these using a fast memory copy
3355          *
3356          * The other way is to figure out exactly how big the string should be
3357          * by parsing the entire input.  Then you don't have to make it big
3358          * enough to handle the worst possible case, and more importantly, if
3359          * the string you already have is large enough, you don't have to
3360          * allocate a new string, you can copy the last character in the input
3361          * string to the final position(s) that will be occupied by the
3362          * converted string and go backwards, stopping at t, since everything
3363          * before that is invariant.
3364          *
3365          * There are advantages and disadvantages to each method.
3366          *
3367          * In the first method, we can allocate a new string, do the memory
3368          * copy from the s to t - 1, and then proceed through the rest of the
3369          * string byte-by-byte.
3370          *
3371          * In the second method, we proceed through the rest of the input
3372          * string just calculating how big the converted string will be.  Then
3373          * there are two cases:
3374          *  1)  if the string has enough extra space to handle the converted
3375          *      value.  We go backwards through the string, converting until we
3376          *      get to the position we are at now, and then stop.  If this
3377          *      position is far enough along in the string, this method is
3378          *      faster than the other method.  If the memory copy were the same
3379          *      speed as the byte-by-byte loop, that position would be about
3380          *      half-way, as at the half-way mark, parsing to the end and back
3381          *      is one complete string's parse, the same amount as starting
3382          *      over and going all the way through.  Actually, it would be
3383          *      somewhat less than half-way, as it's faster to just count bytes
3384          *      than to also copy, and we don't have the overhead of allocating
3385          *      a new string, changing the scalar to use it, and freeing the
3386          *      existing one.  But if the memory copy is fast, the break-even
3387          *      point is somewhere after half way.  The counting loop could be
3388          *      sped up by vectorization, etc, to move the break-even point
3389          *      further towards the beginning.
3390          *  2)  if the string doesn't have enough space to handle the converted
3391          *      value.  A new string will have to be allocated, and one might
3392          *      as well, given that, start from the beginning doing the first
3393          *      method.  We've spent extra time parsing the string and in
3394          *      exchange all we've gotten is that we know precisely how big to
3395          *      make the new one.  Perl is more optimized for time than space,
3396          *      so this case is a loser.
3397          * So what I've decided to do is not use the 2nd method unless it is
3398          * guaranteed that a new string won't have to be allocated, assuming
3399          * the worst case.  I also decided not to put any more conditions on it
3400          * than this, for now.  It seems likely that, since the worst case is
3401          * twice as big as the unknown portion of the string (plus 1), we won't
3402          * be guaranteed enough space, causing us to go to the first method,
3403          * unless the string is short, or the first variant character is near
3404          * the end of it.  In either of these cases, it seems best to use the
3405          * 2nd method.  The only circumstance I can think of where this would
3406          * be really slower is if the string had once had much more data in it
3407          * than it does now, but there is still a substantial amount in it  */
3408
3409         {
3410             STRLEN invariant_head = t - s;
3411             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3412             if (SvLEN(sv) < size) {
3413
3414                 /* Here, have decided to allocate a new string */
3415
3416                 U8 *dst;
3417                 U8 *d;
3418
3419                 Newx(dst, size, U8);
3420
3421                 /* If no known invariants at the beginning of the input string,
3422                  * set so starts from there.  Otherwise, can use memory copy to
3423                  * get up to where we are now, and then start from here */
3424
3425                 if (invariant_head <= 0) {
3426                     d = dst;
3427                 } else {
3428                     Copy(s, dst, invariant_head, char);
3429                     d = dst + invariant_head;
3430                 }
3431
3432                 while (t < e) {
3433                     append_utf8_from_native_byte(*t, &d);
3434                     t++;
3435                 }
3436                 *d = '\0';
3437                 SvPV_free(sv); /* No longer using pre-existing string */
3438                 SvPV_set(sv, (char*)dst);
3439                 SvCUR_set(sv, d - dst);
3440                 SvLEN_set(sv, size);
3441             } else {
3442
3443                 /* Here, have decided to get the exact size of the string.
3444                  * Currently this happens only when we know that there is
3445                  * guaranteed enough space to fit the converted string, so
3446                  * don't have to worry about growing.  If two_byte_count is 0,
3447                  * then t points to the first byte of the string which hasn't
3448                  * been examined yet.  Otherwise two_byte_count is 1, and t
3449                  * points to the first byte in the string that will expand to
3450                  * two.  Depending on this, start examining at t or 1 after t.
3451                  * */
3452
3453                 U8 *d = t + two_byte_count;
3454
3455
3456                 /* Count up the remaining bytes that expand to two */
3457
3458                 while (d < e) {
3459                     const U8 chr = *d++;
3460                     if (! NATIVE_BYTE_IS_INVARIANT(chr)) two_byte_count++;
3461                 }
3462
3463                 /* The string will expand by just the number of bytes that
3464                  * occupy two positions.  But we are one afterwards because of
3465                  * the increment just above.  This is the place to put the
3466                  * trailing NUL, and to set the length before we decrement */
3467
3468                 d += two_byte_count;
3469                 SvCUR_set(sv, d - s);
3470                 *d-- = '\0';
3471
3472
3473                 /* Having decremented d, it points to the position to put the
3474                  * very last byte of the expanded string.  Go backwards through
3475                  * the string, copying and expanding as we go, stopping when we
3476                  * get to the part that is invariant the rest of the way down */
3477
3478                 e--;
3479                 while (e >= t) {
3480                     if (NATIVE_BYTE_IS_INVARIANT(*e)) {
3481                         *d-- = *e;
3482                     } else {
3483                         *d-- = UTF8_EIGHT_BIT_LO(*e);
3484                         *d-- = UTF8_EIGHT_BIT_HI(*e);
3485                     }
3486                     e--;
3487                 }
3488             }
3489
3490             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3491                 /* Update pos. We do it at the end rather than during
3492                  * the upgrade, to avoid slowing down the common case
3493                  * (upgrade without pos).
3494                  * pos can be stored as either bytes or characters.  Since
3495                  * this was previously a byte string we can just turn off
3496                  * the bytes flag. */
3497                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3498                 if (mg) {
3499                     mg->mg_flags &= ~MGf_BYTES;
3500                 }
3501                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3502                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3503             }
3504         }
3505     }
3506
3507     /* Mark as UTF-8 even if no variant - saves scanning loop */
3508     SvUTF8_on(sv);
3509     return SvCUR(sv);
3510 }
3511
3512 /*
3513 =for apidoc sv_utf8_downgrade
3514
3515 Attempts to convert the PV of an SV from characters to bytes.
3516 If the PV contains a character that cannot fit
3517 in a byte, this conversion will fail;
3518 in this case, either returns false or, if C<fail_ok> is not
3519 true, croaks.
3520
3521 This is not a general purpose Unicode to byte encoding interface:
3522 use the Encode extension for that.
3523
3524 =cut
3525 */
3526
3527 bool
3528 Perl_sv_utf8_downgrade(pTHX_ SV *const sv, const bool fail_ok)
3529 {
3530     dVAR;
3531
3532     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3533
3534     if (SvPOKp(sv) && SvUTF8(sv)) {
3535         if (SvCUR(sv)) {
3536             U8 *s;
3537             STRLEN len;
3538             int mg_flags = SV_GMAGIC;
3539
3540             if (SvIsCOW(sv)) {
3541                 S_sv_uncow(aTHX_ sv, 0);
3542             }
3543             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3544                 /* update pos */
3545                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3546                 if (mg && mg->mg_len > 0 && mg->mg_flags & MGf_BYTES) {
3547                         mg->mg_len = sv_pos_b2u_flags(sv, mg->mg_len,
3548                                                 SV_GMAGIC|SV_CONST_RETURN);
3549                         mg_flags = 0; /* sv_pos_b2u does get magic */
3550                 }
3551                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3552                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3553
3554             }
3555             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3556
3557             if (!utf8_to_bytes(s, &len)) {
3558                 if (fail_ok)
3559                     return FALSE;
3560                 else {
3561                     if (PL_op)
3562                         Perl_croak(aTHX_ "Wide character in %s",
3563                                    OP_DESC(PL_op));
3564                     else
3565                         Perl_croak(aTHX_ "Wide character");
3566                 }
3567             }
3568             SvCUR_set(sv, len);
3569         }
3570     }
3571     SvUTF8_off(sv);
3572     return TRUE;
3573 }
3574
3575 /*
3576 =for apidoc sv_utf8_encode
3577
3578 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3579 flag off so that it looks like octets again.
3580
3581 =cut
3582 */
3583
3584 void
3585 Perl_sv_utf8_encode(pTHX_ SV *const sv)
3586 {
3587     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3588
3589     if (SvREADONLY(sv)) {
3590         sv_force_normal_flags(sv, 0);
3591     }
3592     (void) sv_utf8_upgrade(sv);
3593     SvUTF8_off(sv);
3594 }
3595
3596 /*
3597 =for apidoc sv_utf8_decode
3598
3599 If the PV of the SV is an octet sequence in UTF-8
3600 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3601 so that it looks like a character.  If the PV contains only single-byte
3602 characters, the C<SvUTF8> flag stays off.
3603 Scans PV for validity and returns false if the PV is invalid UTF-8.
3604
3605 =cut
3606 */
3607
3608 bool
3609 Perl_sv_utf8_decode(pTHX_ SV *const sv)
3610 {
3611     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3612
3613     if (SvPOKp(sv)) {
3614         const U8 *start, *c;
3615         const U8 *e;
3616
3617         /* The octets may have got themselves encoded - get them back as
3618          * bytes
3619          */
3620         if (!sv_utf8_downgrade(sv, TRUE))
3621             return FALSE;
3622
3623         /* it is actually just a matter of turning the utf8 flag on, but
3624          * we want to make sure everything inside is valid utf8 first.
3625          */
3626         c = start = (const U8 *) SvPVX_const(sv);
3627         if (!is_utf8_string(c, SvCUR(sv)))
3628             return FALSE;
3629         e = (const U8 *) SvEND(sv);
3630         while (c < e) {
3631             const U8 ch = *c++;
3632             if (!UTF8_IS_INVARIANT(ch)) {
3633                 SvUTF8_on(sv);
3634                 break;
3635             }
3636         }
3637         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3638             /* XXX Is this dead code?  XS_utf8_decode calls SvSETMAGIC
3639                    after this, clearing pos.  Does anything on CPAN
3640                    need this? */
3641             /* adjust pos to the start of a UTF8 char sequence */
3642             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3643             if (mg) {
3644                 I32 pos = mg->mg_len;
3645                 if (pos > 0) {
3646                     for (c = start + pos; c > start; c--) {
3647                         if (UTF8_IS_START(*c))
3648                             break;
3649                     }
3650                     mg->mg_len  = c - start;
3651                 }
3652             }
3653             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3654                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3655         }
3656     }
3657     return TRUE;
3658 }
3659
3660 /*
3661 =for apidoc sv_setsv
3662
3663 Copies the contents of the source SV C<ssv> into the destination SV
3664 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3665 function if the source SV needs to be reused.  Does not handle 'set' magic on
3666 destination SV.  Calls 'get' magic on source SV.  Loosely speaking, it
3667 performs a copy-by-value, obliterating any previous content of the
3668 destination.
3669
3670 You probably want to use one of the assortment of wrappers, such as
3671 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3672 C<SvSetMagicSV_nosteal>.
3673
3674 =for apidoc sv_setsv_flags
3675
3676 Copies the contents of the source SV C<ssv> into the destination SV
3677 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3678 function if the source SV needs to be reused.  Does not handle 'set' magic.
3679 Loosely speaking, it performs a copy-by-value, obliterating any previous
3680 content of the destination.
3681 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3682 C<ssv> if appropriate, else not.  If the C<flags>
3683 parameter has the C<SV_NOSTEAL> bit set then the
3684 buffers of temps will not be stolen.  <sv_setsv>
3685 and C<sv_setsv_nomg> are implemented in terms of this function.
3686
3687 You probably want to use one of the assortment of wrappers, such as
3688 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3689 C<SvSetMagicSV_nosteal>.
3690
3691 This is the primary function for copying scalars, and most other
3692 copy-ish functions and macros use this underneath.
3693
3694 =cut
3695 */
3696
3697 static void
3698 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3699 {
3700     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3701     HV *old_stash = NULL;
3702
3703     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3704
3705     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3706         const char * const name = GvNAME(sstr);
3707         const STRLEN len = GvNAMELEN(sstr);
3708         {
3709             if (dtype >= SVt_PV) {
3710                 SvPV_free(dstr);
3711                 SvPV_set(dstr, 0);
3712                 SvLEN_set(dstr, 0);
3713                 SvCUR_set(dstr, 0);
3714             }
3715             SvUPGRADE(dstr, SVt_PVGV);
3716             (void)SvOK_off(dstr);
3717             /* We have to turn this on here, even though we turn it off
3718                below, as GvSTASH will fail an assertion otherwise. */
3719             isGV_with_GP_on(dstr);
3720         }
3721         GvSTASH(dstr) = GvSTASH(sstr);
3722         if (GvSTASH(dstr))
3723             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3724         gv_name_set(MUTABLE_GV(dstr), name, len,
3725                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3726         SvFAKE_on(dstr);        /* can coerce to non-glob */
3727     }
3728
3729     if(GvGP(MUTABLE_GV(sstr))) {
3730         /* If source has method cache entry, clear it */
3731         if(GvCVGEN(sstr)) {
3732             SvREFCNT_dec(GvCV(sstr));
3733             GvCV_set(sstr, NULL);
3734             GvCVGEN(sstr) = 0;
3735         }
3736         /* If source has a real method, then a method is
3737            going to change */
3738         else if(
3739          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3740         ) {
3741             mro_changes = 1;
3742         }
3743     }
3744
3745     /* If dest already had a real method, that's a change as well */
3746     if(
3747         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3748      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3749     ) {
3750         mro_changes = 1;
3751     }
3752
3753     /* We don't need to check the name of the destination if it was not a
3754        glob to begin with. */
3755     if(dtype == SVt_PVGV) {
3756         const char * const name = GvNAME((const GV *)dstr);
3757         if(
3758             strEQ(name,"ISA")
3759          /* The stash may have been detached from the symbol table, so
3760             check its name. */
3761          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3762         )
3763             mro_changes = 2;
3764         else {
3765             const STRLEN len = GvNAMELEN(dstr);
3766             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3767              || (len == 1 && name[0] == ':')) {
3768                 mro_changes = 3;
3769
3770                 /* Set aside the old stash, so we can reset isa caches on
3771                    its subclasses. */
3772                 if((old_stash = GvHV(dstr)))
3773                     /* Make sure we do not lose it early. */
3774                     SvREFCNT_inc_simple_void_NN(
3775                      sv_2mortal((SV *)old_stash)
3776                     );
3777             }
3778         }
3779     }
3780
3781     gp_free(MUTABLE_GV(dstr));
3782     isGV_with_GP_off(dstr); /* SvOK_off does not like globs. */
3783     (void)SvOK_off(dstr);
3784     isGV_with_GP_on(dstr);
3785     GvINTRO_off(dstr);          /* one-shot flag */
3786     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3787     if (SvTAINTED(sstr))
3788         SvTAINT(dstr);
3789     if (GvIMPORTED(dstr) != GVf_IMPORTED
3790         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3791         {
3792             GvIMPORTED_on(dstr);
3793         }
3794     GvMULTI_on(dstr);
3795     if(mro_changes == 2) {
3796       if (GvAV((const GV *)sstr)) {
3797         MAGIC *mg;
3798         SV * const sref = (SV *)GvAV((const GV *)dstr);
3799         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3800             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3801                 AV * const ary = newAV();
3802                 av_push(ary, mg->mg_obj); /* takes the refcount */
3803                 mg->mg_obj = (SV *)ary;
3804             }
3805             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3806         }
3807         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3808       }
3809       mro_isa_changed_in(GvSTASH(dstr));
3810     }
3811     else if(mro_changes == 3) {
3812         HV * const stash = GvHV(dstr);
3813         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3814             mro_package_moved(
3815                 stash, old_stash,
3816                 (GV *)dstr, 0
3817             );
3818     }
3819     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3820     if (GvIO(dstr) && dtype == SVt_PVGV) {
3821         DEBUG_o(Perl_deb(aTHX_
3822                         "glob_assign_glob clearing PL_stashcache\n"));
3823         /* It's a cache. It will rebuild itself quite happily.
3824            It's a lot of effort to work out exactly which key (or keys)
3825            might be invalidated by the creation of the this file handle.
3826          */
3827         hv_clear(PL_stashcache);
3828     }
3829     return;
3830 }
3831
3832 static void
3833 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3834 {
3835     SV * const sref = SvRV(sstr);
3836     SV *dref;
3837     const int intro = GvINTRO(dstr);
3838     SV **location;
3839     U8 import_flag = 0;
3840     const U32 stype = SvTYPE(sref);
3841
3842     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3843
3844     if (intro) {
3845         GvINTRO_off(dstr);      /* one-shot flag */
3846         GvLINE(dstr) = CopLINE(PL_curcop);
3847         GvEGV(dstr) = MUTABLE_GV(dstr);
3848     }
3849     GvMULTI_on(dstr);
3850     switch (stype) {
3851     case SVt_PVCV:
3852         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
3853         import_flag = GVf_IMPORTED_CV;
3854         goto common;
3855     case SVt_PVHV:
3856         location = (SV **) &GvHV(dstr);
3857         import_flag = GVf_IMPORTED_HV;
3858         goto common;
3859     case SVt_PVAV:
3860         location = (SV **) &GvAV(dstr);
3861         import_flag = GVf_IMPORTED_AV;
3862         goto common;
3863     case SVt_PVIO:
3864         location = (SV **) &GvIOp(dstr);
3865         goto common;
3866     case SVt_PVFM:
3867         location = (SV **) &GvFORM(dstr);
3868         goto common;
3869     default:
3870         location = &GvSV(dstr);
3871         import_flag = GVf_IMPORTED_SV;
3872     common:
3873         if (intro) {
3874             if (stype == SVt_PVCV) {
3875                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3876                 if (GvCVGEN(dstr)) {
3877                     SvREFCNT_dec(GvCV(dstr));
3878                     GvCV_set(dstr, NULL);
3879                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3880                 }
3881             }
3882             /* SAVEt_GVSLOT takes more room on the savestack and has more
3883                overhead in leave_scope than SAVEt_GENERIC_SV.  But for CVs
3884                leave_scope needs access to the GV so it can reset method
3885                caches.  We must use SAVEt_GVSLOT whenever the type is
3886                SVt_PVCV, even if the stash is anonymous, as the stash may
3887                gain a name somehow before leave_scope. */
3888             if (stype == SVt_PVCV) {
3889                 /* There is no save_pushptrptrptr.  Creating it for this
3890                    one call site would be overkill.  So inline the ss add
3891                    routines here. */
3892                 dSS_ADD;
3893                 SS_ADD_PTR(dstr);
3894                 SS_ADD_PTR(location);
3895                 SS_ADD_PTR(SvREFCNT_inc(*location));
3896                 SS_ADD_UV(SAVEt_GVSLOT);
3897                 SS_ADD_END(4);
3898             }
3899             else SAVEGENERICSV(*location);
3900         }
3901         dref = *location;
3902         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3903             CV* const cv = MUTABLE_CV(*location);
3904             if (cv) {
3905                 if (!GvCVGEN((const GV *)dstr) &&
3906                     (CvROOT(cv) || CvXSUB(cv)) &&
3907                     /* redundant check that avoids creating the extra SV
3908                        most of the time: */
3909                     (CvCONST(cv) || ckWARN(WARN_REDEFINE)))
3910                     {
3911                         SV * const new_const_sv =
3912                             CvCONST((const CV *)sref)
3913                                  ? cv_const_sv((const CV *)sref)
3914                                  : NULL;
3915                         report_redefined_cv(
3916                            sv_2mortal(Perl_newSVpvf(aTHX_
3917                                 "%"HEKf"::%"HEKf,
3918                                 HEKfARG(
3919                                  HvNAME_HEK(GvSTASH((const GV *)dstr))
3920                                 ),
3921                                 HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr)))
3922                            )),
3923                            cv,
3924                            CvCONST((const CV *)sref) ? &new_const_sv : NULL
3925                         );
3926                     }
3927                 if (!intro)
3928                     cv_ckproto_len_flags(cv, (const GV *)dstr,
3929                                    SvPOK(sref) ? CvPROTO(sref) : NULL,
3930                                    SvPOK(sref) ? CvPROTOLEN(sref) : 0,
3931                                    SvPOK(sref) ? SvUTF8(sref) : 0);
3932             }
3933             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3934             GvASSUMECV_on(dstr);
3935             if(GvSTASH(dstr)) gv_method_changed(dstr); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3936         }
3937         *location = SvREFCNT_inc_simple_NN(sref);
3938         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3939             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3940             GvFLAGS(dstr) |= import_flag;
3941         }
3942         if (stype == SVt_PVHV) {
3943             const char * const name = GvNAME((GV*)dstr);
3944             const STRLEN len = GvNAMELEN(dstr);
3945             if (
3946                 (
3947                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
3948                 || (len == 1 && name[0] == ':')
3949                 )
3950              && (!dref || HvENAME_get(dref))
3951             ) {
3952                 mro_package_moved(
3953                     (HV *)sref, (HV *)dref,
3954                     (GV *)dstr, 0
3955                 );
3956             }
3957         }
3958         else if (
3959             stype == SVt_PVAV && sref != dref
3960          && strEQ(GvNAME((GV*)dstr), "ISA")
3961          /* The stash may have been detached from the symbol table, so
3962             check its name before doing anything. */
3963          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3964         ) {
3965             MAGIC *mg;
3966             MAGIC * const omg = dref && SvSMAGICAL(dref)
3967                                  ? mg_find(dref, PERL_MAGIC_isa)
3968                                  : NULL;
3969             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3970                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3971                     AV * const ary = newAV();
3972                     av_push(ary, mg->mg_obj); /* takes the refcount */
3973                     mg->mg_obj = (SV *)ary;
3974                 }
3975                 if (omg) {
3976                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
3977                         SV **svp = AvARRAY((AV *)omg->mg_obj);
3978                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
3979                         while (items--)
3980                             av_push(
3981                              (AV *)mg->mg_obj,
3982                              SvREFCNT_inc_simple_NN(*svp++)
3983                             );
3984                     }
3985                     else
3986                         av_push(
3987                          (AV *)mg->mg_obj,
3988                          SvREFCNT_inc_simple_NN(omg->mg_obj)
3989                         );
3990                 }
3991                 else
3992                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
3993             }
3994             else
3995             {
3996                 sv_magic(
3997                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
3998                 );
3999                 mg = mg_find(sref, PERL_MAGIC_isa);
4000             }
4001             /* Since the *ISA assignment could have affected more than
4002                one stash, don't call mro_isa_changed_in directly, but let
4003                magic_clearisa do it for us, as it already has the logic for
4004                dealing with globs vs arrays of globs. */
4005             assert(mg);
4006             Perl_magic_clearisa(aTHX_ NULL, mg);
4007         }
4008         else if (stype == SVt_PVIO) {
4009             DEBUG_o(Perl_deb(aTHX_ "glob_assign_ref clearing PL_stashcache\n"));
4010             /* It's a cache. It will rebuild itself quite happily.
4011                It's a lot of effort to work out exactly which key (or keys)
4012                might be invalidated by the creation of the this file handle.
4013             */
4014             hv_clear(PL_stashcache);
4015         }
4016         break;
4017     }
4018     if (!intro) SvREFCNT_dec(dref);
4019     if (SvTAINTED(sstr))
4020         SvTAINT(dstr);
4021     return;
4022 }
4023
4024 /* Work around compiler warnings about unsigned >= THRESHOLD when thres-
4025    hold is 0. */
4026 #if SV_COW_THRESHOLD
4027 # define GE_COW_THRESHOLD(len)          ((len) >= SV_COW_THRESHOLD)
4028 #else
4029 # define GE_COW_THRESHOLD(len)          1
4030 #endif
4031 #if SV_COWBUF_THRESHOLD
4032 # define GE_COWBUF_THRESHOLD(len)       ((len) >= SV_COWBUF_THRESHOLD)
4033 #else
4034 # define GE_COWBUF_THRESHOLD(len)       1
4035 #endif
4036
4037 void
4038 Perl_sv_setsv_flags(pTHX_ SV *dstr, SV* sstr, const I32 flags)
4039 {
4040     dVAR;
4041     U32 sflags;
4042     int dtype;
4043     svtype stype;
4044
4045     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
4046
4047     if (sstr == dstr)
4048         return;
4049
4050     if (SvIS_FREED(dstr)) {
4051         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
4052                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
4053     }
4054     SV_CHECK_THINKFIRST_COW_DROP(dstr);
4055     if (!sstr)
4056         sstr = &PL_sv_undef;
4057     if (SvIS_FREED(sstr)) {
4058         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
4059                    (void*)sstr, (void*)dstr);
4060     }
4061     stype = SvTYPE(sstr);
4062     dtype = SvTYPE(dstr);
4063
4064     /* There's a lot of redundancy below but we're going for speed here */
4065
4066     switch (stype) {
4067     case SVt_NULL:
4068       undef_sstr:
4069         if (dtype != SVt_PVGV && dtype != SVt_PVLV) {
4070             (void)SvOK_off(dstr);
4071             return;
4072         }
4073         break;
4074     case SVt_IV:
4075         if (SvIOK(sstr)) {
4076             switch (dtype) {
4077             case SVt_NULL:
4078                 sv_upgrade(dstr, SVt_IV);
4079                 break;
4080             case SVt_NV:
4081             case SVt_PV:
4082                 sv_upgrade(dstr, SVt_PVIV);
4083                 break;
4084             case SVt_PVGV:
4085             case SVt_PVLV:
4086                 goto end_of_first_switch;
4087             }
4088             (void)SvIOK_only(dstr);
4089             SvIV_set(dstr,  SvIVX(sstr));
4090             if (SvIsUV(sstr))
4091                 SvIsUV_on(dstr);
4092             /* SvTAINTED can only be true if the SV has taint magic, which in
4093                turn means that the SV type is PVMG (or greater). This is the
4094                case statement for SVt_IV, so this cannot be true (whatever gcov
4095                may say).  */
4096             assert(!SvTAINTED(sstr));
4097             return;
4098         }
4099         if (!SvROK(sstr))
4100             goto undef_sstr;
4101         if (dtype < SVt_PV && dtype != SVt_IV)
4102             sv_upgrade(dstr, SVt_IV);
4103         break;
4104
4105     case SVt_NV:
4106         if (SvNOK(sstr)) {
4107             switch (dtype) {
4108             case SVt_NULL:
4109             case SVt_IV:
4110                 sv_upgrade(dstr, SVt_NV);
4111                 break;
4112             case SVt_PV:
4113             case SVt_PVIV:
4114                 sv_upgrade(dstr, SVt_PVNV);
4115                 break;
4116             case SVt_PVGV:
4117             case SVt_PVLV:
4118                 goto end_of_first_switch;
4119             }
4120             SvNV_set(dstr, SvNVX(sstr));
4121             (void)SvNOK_only(dstr);
4122             /* SvTAINTED can only be true if the SV has taint magic, which in
4123                turn means that the SV type is PVMG (or greater). This is the
4124                case statement for SVt_NV, so this cannot be true (whatever gcov
4125                may say).  */
4126             assert(!SvTAINTED(sstr));
4127             return;
4128         }
4129         goto undef_sstr;
4130
4131     case SVt_PV:
4132         if (dtype < SVt_PV)
4133             sv_upgrade(dstr, SVt_PV);
4134         break;
4135     case SVt_PVIV:
4136         if (dtype < SVt_PVIV)
4137             sv_upgrade(dstr, SVt_PVIV);
4138         break;
4139     case SVt_PVNV:
4140         if (dtype < SVt_PVNV)
4141             sv_upgrade(dstr, SVt_PVNV);
4142         break;
4143     default:
4144         {
4145         const char * const type = sv_reftype(sstr,0);
4146         if (PL_op)
4147             /* diag_listed_as: Bizarre copy of %s */
4148             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4149         else
4150             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4151         }
4152         break;
4153
4154     case SVt_REGEXP:
4155       upgregexp:
4156         if (dtype < SVt_REGEXP)
4157         {
4158             if (dtype >= SVt_PV) {
4159                 SvPV_free(dstr);
4160                 SvPV_set(dstr, 0);
4161                 SvLEN_set(dstr, 0);
4162                 SvCUR_set(dstr, 0);
4163             }
4164             sv_upgrade(dstr, SVt_REGEXP);
4165         }
4166         break;
4167
4168         case SVt_INVLIST:
4169     case SVt_PVLV:
4170     case SVt_PVGV:
4171     case SVt_PVMG:
4172         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4173             mg_get(sstr);
4174             if (SvTYPE(sstr) != stype)
4175                 stype = SvTYPE(sstr);
4176         }
4177         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4178                     glob_assign_glob(dstr, sstr, dtype);
4179                     return;
4180         }
4181         if (stype == SVt_PVLV)
4182         {
4183             if (isREGEXP(sstr)) goto upgregexp;
4184             SvUPGRADE(dstr, SVt_PVNV);
4185         }
4186         else
4187             SvUPGRADE(dstr, (svtype)stype);
4188     }
4189  end_of_first_switch:
4190
4191     /* dstr may have been upgraded.  */
4192     dtype = SvTYPE(dstr);
4193     sflags = SvFLAGS(sstr);
4194
4195     if (dtype == SVt_PVCV) {
4196         /* Assigning to a subroutine sets the prototype.  */
4197         if (SvOK(sstr)) {
4198             STRLEN len;
4199             const char *const ptr = SvPV_const(sstr, len);
4200
4201             SvGROW(dstr, len + 1);
4202             Copy(ptr, SvPVX(dstr), len + 1, char);
4203             SvCUR_set(dstr, len);
4204             SvPOK_only(dstr);
4205             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4206             CvAUTOLOAD_off(dstr);
4207         } else {
4208             SvOK_off(dstr);
4209         }
4210     }
4211     else if (dtype == SVt_PVAV || dtype == SVt_PVHV || dtype == SVt_PVFM) {
4212         const char * const type = sv_reftype(dstr,0);
4213         if (PL_op)
4214             /* diag_listed_as: Cannot copy to %s */
4215             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4216         else
4217             Perl_croak(aTHX_ "Cannot copy to %s", type);
4218     } else if (sflags & SVf_ROK) {
4219         if (isGV_with_GP(dstr)
4220             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4221             sstr = SvRV(sstr);
4222             if (sstr == dstr) {
4223                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4224                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4225                 {
4226                     GvIMPORTED_on(dstr);
4227                 }
4228                 GvMULTI_on(dstr);
4229                 return;
4230             }
4231             glob_assign_glob(dstr, sstr, dtype);
4232             return;
4233         }
4234
4235         if (dtype >= SVt_PV) {
4236             if (isGV_with_GP(dstr)) {
4237                 glob_assign_ref(dstr, sstr);
4238                 return;
4239             }
4240             if (SvPVX_const(dstr)) {
4241                 SvPV_free(dstr);
4242                 SvLEN_set(dstr, 0);
4243                 SvCUR_set(dstr, 0);
4244             }
4245         }
4246         (void)SvOK_off(dstr);
4247         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4248         SvFLAGS(dstr) |= sflags & SVf_ROK;
4249         assert(!(sflags & SVp_NOK));
4250         assert(!(sflags & SVp_IOK));
4251         assert(!(sflags & SVf_NOK));
4252         assert(!(sflags & SVf_IOK));
4253     }
4254     else if (isGV_with_GP(dstr)) {
4255         if (!(sflags & SVf_OK)) {
4256             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4257                            "Undefined value assigned to typeglob");
4258         }
4259         else {
4260             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4261             if (dstr != (const SV *)gv) {
4262                 const char * const name = GvNAME((const GV *)dstr);
4263                 const STRLEN len = GvNAMELEN(dstr);
4264                 HV *old_stash = NULL;
4265                 bool reset_isa = FALSE;
4266                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4267                  || (len == 1 && name[0] == ':')) {
4268                     /* Set aside the old stash, so we can reset isa caches
4269                        on its subclasses. */
4270                     if((old_stash = GvHV(dstr))) {
4271                         /* Make sure we do not lose it early. */
4272                         SvREFCNT_inc_simple_void_NN(
4273                          sv_2mortal((SV *)old_stash)
4274                         );
4275                     }
4276                     reset_isa = TRUE;
4277                 }
4278
4279                 if (GvGP(dstr))
4280                     gp_free(MUTABLE_GV(dstr));
4281                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4282
4283                 if (reset_isa) {
4284                     HV * const stash = GvHV(dstr);
4285                     if(
4286                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4287                     )
4288                         mro_package_moved(
4289                          stash, old_stash,
4290                          (GV *)dstr, 0
4291                         );
4292                 }
4293             }
4294         }
4295     }
4296     else if ((dtype == SVt_REGEXP || dtype == SVt_PVLV)
4297           && (stype == SVt_REGEXP || isREGEXP(sstr))) {
4298         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4299     }
4300     else if (sflags & SVp_POK) {
4301         bool isSwipe = 0;
4302         const STRLEN cur = SvCUR(sstr);
4303         const STRLEN len = SvLEN(sstr);
4304
4305         /*
4306          * Check to see if we can just swipe the string.  If so, it's a
4307          * possible small lose on short strings, but a big win on long ones.
4308          * It might even be a win on short strings if SvPVX_const(dstr)
4309          * has to be allocated and SvPVX_const(sstr) has to be freed.
4310          * Likewise if we can set up COW rather than doing an actual copy, we
4311          * drop to the else clause, as the swipe code and the COW setup code
4312          * have much in common.
4313          */
4314
4315         /* Whichever path we take through the next code, we want this true,
4316            and doing it now facilitates the COW check.  */
4317         (void)SvPOK_only(dstr);
4318
4319         if (
4320             /* If we're already COW then this clause is not true, and if COW
4321                is allowed then we drop down to the else and make dest COW 
4322                with us.  If caller hasn't said that we're allowed to COW
4323                shared hash keys then we don't do the COW setup, even if the
4324                source scalar is a shared hash key scalar.  */
4325             (((flags & SV_COW_SHARED_HASH_KEYS)
4326                ? !(sflags & SVf_IsCOW)
4327 #ifdef PERL_NEW_COPY_ON_WRITE
4328                 || (len &&
4329                     ((!GE_COWBUF_THRESHOLD(cur) && SvLEN(dstr) > cur)
4330                    /* If this is a regular (non-hek) COW, only so many COW
4331                       "copies" are possible. */
4332                     || CowREFCNT(sstr) == SV_COW_REFCNT_MAX))
4333 #endif
4334                : 1 /* If making a COW copy is forbidden then the behaviour we
4335                        desire is as if the source SV isn't actually already
4336                        COW, even if it is.  So we act as if the source flags
4337                        are not COW, rather than actually testing them.  */
4338               )
4339 #ifndef PERL_ANY_COW
4340              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4341                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4342                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4343                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4344                 but in turn, it's somewhat dead code, never expected to go
4345                 live, but more kept as a placeholder on how to do it better
4346                 in a newer implementation.  */
4347              /* If we are COW and dstr is a suitable target then we drop down
4348                 into the else and make dest a COW of us.  */
4349              || (SvFLAGS(dstr) & SVf_BREAK)
4350 #endif
4351              )
4352             &&
4353             !(isSwipe =
4354 #ifdef PERL_NEW_COPY_ON_WRITE
4355                                 /* slated for free anyway (and not COW)? */
4356                  (sflags & (SVs_TEMP|SVf_IsCOW)) == SVs_TEMP &&
4357 #else
4358                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4359 #endif
4360                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4361                  (!(flags & SV_NOSTEAL)) &&
4362                                         /* and we're allowed to steal temps */
4363                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4364                  len)             /* and really is a string */
4365 #ifdef PERL_ANY_COW
4366             && ((flags & SV_COW_SHARED_HASH_KEYS)
4367                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4368 # ifdef PERL_OLD_COPY_ON_WRITE
4369                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4370                      && SvTYPE(sstr) >= SVt_PVIV && len
4371 # else
4372                      && !(SvFLAGS(dstr) & SVf_BREAK)
4373                      && !(sflags & SVf_IsCOW)
4374                      && GE_COW_THRESHOLD(cur) && cur+1 < len
4375                      && (GE_COWBUF_THRESHOLD(cur) || SvLEN(dstr) < cur+1)
4376 # endif
4377                     ))
4378                 : 1)
4379 #endif
4380             ) {
4381             /* Failed the swipe test, and it's not a shared hash key either.
4382                Have to copy the string.  */
4383             SvGROW(dstr, cur + 1);      /* inlined from sv_setpvn */
4384             Move(SvPVX_const(sstr),SvPVX(dstr),cur,char);
4385             SvCUR_set(dstr, cur);
4386             *SvEND(dstr) = '\0';
4387         } else {
4388             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4389                be true in here.  */
4390             /* Either it's a shared hash key, or it's suitable for
4391                copy-on-write or we can swipe the string.  */
4392             if (DEBUG_C_TEST) {
4393                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4394                 sv_dump(sstr);
4395                 sv_dump(dstr);
4396             }
4397 #ifdef PERL_ANY_COW
4398             if (!isSwipe) {
4399                 if (!(sflags & SVf_IsCOW)) {
4400                     SvIsCOW_on(sstr);
4401 # ifdef PERL_OLD_COPY_ON_WRITE
4402                     /* Make the source SV into a loop of 1.
4403                        (about to become 2) */
4404                     SV_COW_NEXT_SV_SET(sstr, sstr);
4405 # else
4406                     CowREFCNT(sstr) = 0;
4407 # endif
4408                 }
4409             }
4410 #endif
4411             /* Initial code is common.  */
4412             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4413                 SvPV_free(dstr);
4414             }
4415
4416             if (!isSwipe) {
4417                 /* making another shared SV.  */
4418 #ifdef PERL_ANY_COW
4419                 if (len) {
4420 # ifdef PERL_OLD_COPY_ON_WRITE
4421                     assert (SvTYPE(dstr) >= SVt_PVIV);
4422                     /* SvIsCOW_normal */
4423                     /* splice us in between source and next-after-source.  */
4424                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4425                     SV_COW_NEXT_SV_SET(sstr, dstr);
4426 # else
4427                     CowREFCNT(sstr)++;
4428 # endif
4429                     SvPV_set(dstr, SvPVX_mutable(sstr));
4430                 } else
4431 #endif
4432                 {
4433                     /* SvIsCOW_shared_hash */
4434                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4435                                           "Copy on write: Sharing hash\n"));
4436
4437                     assert (SvTYPE(dstr) >= SVt_PV);
4438                     SvPV_set(dstr,
4439                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4440                 }
4441                 SvLEN_set(dstr, len);
4442                 SvCUR_set(dstr, cur);
4443                 SvIsCOW_on(dstr);
4444             }
4445             else
4446                 {       /* Passes the swipe test.  */
4447                 SvPV_set(dstr, SvPVX_mutable(sstr));
4448                 SvLEN_set(dstr, SvLEN(sstr));
4449                 SvCUR_set(dstr, SvCUR(sstr));
4450
4451                 SvTEMP_off(dstr);
4452                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4453                 SvPV_set(sstr, NULL);
4454                 SvLEN_set(sstr, 0);
4455                 SvCUR_set(sstr, 0);
4456                 SvTEMP_off(sstr);
4457             }
4458         }
4459         if (sflags & SVp_NOK) {
4460             SvNV_set(dstr, SvNVX(sstr));
4461         }
4462         if (sflags & SVp_IOK) {
4463             SvIV_set(dstr, SvIVX(sstr));
4464             /* Must do this otherwise some other overloaded use of 0x80000000
4465                gets confused. I guess SVpbm_VALID */
4466             if (sflags & SVf_IVisUV)
4467                 SvIsUV_on(dstr);
4468         }
4469         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4470         {
4471             const MAGIC * const smg = SvVSTRING_mg(sstr);
4472             if (smg) {
4473                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4474                          smg->mg_ptr, smg->mg_len);
4475                 SvRMAGICAL_on(dstr);
4476             }
4477         }
4478     }
4479     else if (sflags & (SVp_IOK|SVp_NOK)) {
4480         (void)SvOK_off(dstr);
4481         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4482         if (sflags & SVp_IOK) {
4483             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4484             SvIV_set(dstr, SvIVX(sstr));
4485         }
4486         if (sflags & SVp_NOK) {
4487             SvNV_set(dstr, SvNVX(sstr));
4488         }
4489     }
4490     else {
4491         if (isGV_with_GP(sstr)) {
4492             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4493         }
4494         else
4495             (void)SvOK_off(dstr);
4496     }
4497     if (SvTAINTED(sstr))
4498         SvTAINT(dstr);
4499 }
4500
4501 /*
4502 =for apidoc sv_setsv_mg
4503
4504 Like C<sv_setsv>, but also handles 'set' magic.
4505
4506 =cut
4507 */
4508
4509 void
4510 Perl_sv_setsv_mg(pTHX_ SV *const dstr, SV *const sstr)
4511 {
4512     PERL_ARGS_ASSERT_SV_SETSV_MG;
4513
4514     sv_setsv(dstr,sstr);
4515     SvSETMAGIC(dstr);
4516 }
4517
4518 #ifdef PERL_ANY_COW
4519 # ifdef PERL_OLD_COPY_ON_WRITE
4520 #  define SVt_COW SVt_PVIV
4521 # else
4522 #  define SVt_COW SVt_PV
4523 # endif
4524 SV *
4525 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4526 {
4527     STRLEN cur = SvCUR(sstr);
4528     STRLEN len = SvLEN(sstr);
4529     char *new_pv;
4530
4531     PERL_ARGS_ASSERT_SV_SETSV_COW;
4532
4533     if (DEBUG_C_TEST) {
4534         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4535                       (void*)sstr, (void*)dstr);
4536         sv_dump(sstr);
4537         if (dstr)
4538                     sv_dump(dstr);
4539     }
4540
4541     if (dstr) {
4542         if (SvTHINKFIRST(dstr))
4543             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4544         else if (SvPVX_const(dstr))
4545             Safefree(SvPVX_mutable(dstr));
4546     }
4547     else
4548         new_SV(dstr);
4549     SvUPGRADE(dstr, SVt_COW);
4550
4551     assert (SvPOK(sstr));
4552     assert (SvPOKp(sstr));
4553 # ifdef PERL_OLD_COPY_ON_WRITE
4554     assert (!SvIOK(sstr));
4555     assert (!SvIOKp(sstr));
4556     assert (!SvNOK(sstr));
4557     assert (!SvNOKp(sstr));
4558 # endif
4559
4560     if (SvIsCOW(sstr)) {
4561
4562         if (SvLEN(sstr) == 0) {
4563             /* source is a COW shared hash key.  */
4564             DEBUG_C(PerlIO_printf(Perl_debug_log,
4565                                   "Fast copy on write: Sharing hash\n"));
4566             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4567             goto common_exit;
4568         }
4569 # ifdef PERL_OLD_COPY_ON_WRITE
4570         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4571 # else
4572         assert(SvCUR(sstr)+1 < SvLEN(sstr));
4573         assert(CowREFCNT(sstr) < SV_COW_REFCNT_MAX);
4574 # endif
4575     } else {
4576         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4577         SvUPGRADE(sstr, SVt_COW);
4578         SvIsCOW_on(sstr);
4579         DEBUG_C(PerlIO_printf(Perl_debug_log,
4580                               "Fast copy on write: Converting sstr to COW\n"));
4581 # ifdef PERL_OLD_COPY_ON_WRITE
4582         SV_COW_NEXT_SV_SET(dstr, sstr);
4583 # else
4584         CowREFCNT(sstr) = 0;    
4585 # endif
4586     }
4587 # ifdef PERL_OLD_COPY_ON_WRITE
4588     SV_COW_NEXT_SV_SET(sstr, dstr);
4589 # else
4590     CowREFCNT(sstr)++;  
4591 # endif
4592     new_pv = SvPVX_mutable(sstr);
4593
4594   common_exit:
4595     SvPV_set(dstr, new_pv);
4596     SvFLAGS(dstr) = (SVt_COW|SVf_POK|SVp_POK|SVf_IsCOW);
4597     if (SvUTF8(sstr))
4598         SvUTF8_on(dstr);
4599     SvLEN_set(dstr, len);
4600     SvCUR_set(dstr, cur);
4601     if (DEBUG_C_TEST) {
4602         sv_dump(dstr);
4603     }
4604     return dstr;
4605 }
4606 #endif
4607
4608 /*
4609 =for apidoc sv_setpvn
4610
4611 Copies a string into an SV.  The C<len> parameter indicates the number of
4612 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4613 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4614
4615 =cut
4616 */
4617
4618 void
4619 Perl_sv_setpvn(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4620 {
4621     dVAR;
4622     char *dptr;
4623
4624     PERL_ARGS_ASSERT_SV_SETPVN;
4625
4626     SV_CHECK_THINKFIRST_COW_DROP(sv);
4627     if (!ptr) {
4628         (void)SvOK_off(sv);
4629         return;
4630     }
4631     else {
4632         /* len is STRLEN which is unsigned, need to copy to signed */
4633         const IV iv = len;
4634         if (iv < 0)
4635             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen %"
4636                        IVdf, iv);
4637     }
4638     SvUPGRADE(sv, SVt_PV);
4639
4640     dptr = SvGROW(sv, len + 1);
4641     Move(ptr,dptr,len,char);
4642     dptr[len] = '\0';
4643     SvCUR_set(sv, len);
4644     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4645     SvTAINT(sv);
4646     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4647 }
4648
4649 /*
4650 =for apidoc sv_setpvn_mg
4651
4652 Like C<sv_setpvn>, but also handles 'set' magic.
4653
4654 =cut
4655 */
4656
4657 void
4658 Perl_sv_setpvn_mg(pTHX_ SV *const sv, const char *const ptr, const STRLEN len)
4659 {
4660     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4661
4662     sv_setpvn(sv,ptr,len);
4663     SvSETMAGIC(sv);
4664 }
4665
4666 /*
4667 =for apidoc sv_setpv
4668
4669 Copies a string into an SV.  The string must be null-terminated.  Does not
4670 handle 'set' magic.  See C<sv_setpv_mg>.
4671
4672 =cut
4673 */
4674
4675 void
4676 Perl_sv_setpv(pTHX_ SV *const sv, const char *const ptr)
4677 {
4678     dVAR;
4679     STRLEN len;
4680
4681     PERL_ARGS_ASSERT_SV_SETPV;
4682
4683     SV_CHECK_THINKFIRST_COW_DROP(sv);
4684     if (!ptr) {
4685         (void)SvOK_off(sv);
4686         return;
4687     }
4688     len = strlen(ptr);
4689     SvUPGRADE(sv, SVt_PV);
4690
4691     SvGROW(sv, len + 1);
4692     Move(ptr,SvPVX(sv),len+1,char);
4693     SvCUR_set(sv, len);
4694     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4695     SvTAINT(sv);
4696     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4697 }
4698
4699 /*
4700 =for apidoc sv_setpv_mg
4701
4702 Like C<sv_setpv>, but also handles 'set' magic.
4703
4704 =cut
4705 */
4706
4707 void
4708 Perl_sv_setpv_mg(pTHX_ SV *const sv, const char *const ptr)
4709 {
4710     PERL_ARGS_ASSERT_SV_SETPV_MG;
4711
4712     sv_setpv(sv,ptr);
4713     SvSETMAGIC(sv);
4714 }
4715
4716 void
4717 Perl_sv_sethek(pTHX_ SV *const sv, const HEK *const hek)
4718 {
4719     dVAR;
4720
4721     PERL_ARGS_ASSERT_SV_SETHEK;
4722
4723     if (!hek) {
4724         return;
4725     }
4726
4727     if (HEK_LEN(hek) == HEf_SVKEY) {
4728         sv_setsv(sv, *(SV**)HEK_KEY(hek));
4729         return;
4730     } else {
4731         const int flags = HEK_FLAGS(hek);
4732         if (flags & HVhek_WASUTF8) {
4733             STRLEN utf8_len = HEK_LEN(hek);
4734             char *as_utf8 = (char *)bytes_to_utf8((U8*)HEK_KEY(hek), &utf8_len);
4735             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
4736             SvUTF8_on(sv);
4737             return;
4738         } else if (flags & HVhek_UNSHARED) {
4739             sv_setpvn(sv, HEK_KEY(hek), HEK_LEN(hek));
4740             if (HEK_UTF8(hek))
4741                 SvUTF8_on(sv);
4742             else SvUTF8_off(sv);
4743             return;
4744         }
4745         {
4746             SV_CHECK_THINKFIRST_COW_DROP(sv);
4747             SvUPGRADE(sv, SVt_PV);
4748             SvPV_free(sv);
4749             SvPV_set(sv,(char *)HEK_KEY(share_hek_hek(hek)));
4750             SvCUR_set(sv, HEK_LEN(hek));
4751             SvLEN_set(sv, 0);
4752             SvIsCOW_on(sv);
4753             SvPOK_on(sv);
4754             if (HEK_UTF8(hek))
4755                 SvUTF8_on(sv);
4756             else SvUTF8_off(sv);
4757             return;
4758         }
4759     }
4760 }
4761
4762
4763 /*
4764 =for apidoc sv_usepvn_flags
4765
4766 Tells an SV to use C<ptr> to find its string value.  Normally the
4767 string is stored inside the SV but sv_usepvn allows the SV to use an
4768 outside string.  The C<ptr> should point to memory that was allocated
4769 by C<malloc>.  It must be the start of a mallocked block
4770 of memory, and not a pointer to the middle of it.  The
4771 string length, C<len>, must be supplied.  By default
4772 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4773 so that pointer should not be freed or used by the programmer after
4774 giving it to sv_usepvn, and neither should any pointers from "behind"
4775 that pointer (e.g. ptr + 1) be used.
4776
4777 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC.  If C<flags> &
4778 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4779 will be skipped (i.e. the buffer is actually at least 1 byte longer than
4780 C<len>, and already meets the requirements for storing in C<SvPVX>).
4781
4782 =cut
4783 */
4784
4785 void
4786 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4787 {
4788     dVAR;
4789     STRLEN allocate;
4790
4791     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4792
4793     SV_CHECK_THINKFIRST_COW_DROP(sv);
4794     SvUPGRADE(sv, SVt_PV);
4795     if (!ptr) {
4796         (void)SvOK_off(sv);
4797         if (flags & SV_SMAGIC)
4798             SvSETMAGIC(sv);
4799         return;
4800     }
4801     if (SvPVX_const(sv))
4802         SvPV_free(sv);
4803
4804 #ifdef DEBUGGING
4805     if (flags & SV_HAS_TRAILING_NUL)
4806         assert(ptr[len] == '\0');
4807 #endif
4808
4809     allocate = (flags & SV_HAS_TRAILING_NUL)
4810         ? len + 1 :
4811 #ifdef Perl_safesysmalloc_size
4812         len + 1;
4813 #else 
4814         PERL_STRLEN_ROUNDUP(len + 1);
4815 #endif
4816     if (flags & SV_HAS_TRAILING_NUL) {
4817         /* It's long enough - do nothing.
4818            Specifically Perl_newCONSTSUB is relying on this.  */
4819     } else {
4820 #ifdef DEBUGGING
4821         /* Force a move to shake out bugs in callers.  */
4822         char *new_ptr = (char*)safemalloc(allocate);
4823         Copy(ptr, new_ptr, len, char);
4824         PoisonFree(ptr,len,char);
4825         Safefree(ptr);
4826         ptr = new_ptr;
4827 #else
4828         ptr = (char*) saferealloc (ptr, allocate);
4829 #endif
4830     }
4831 #ifdef Perl_safesysmalloc_size
4832     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4833 #else
4834     SvLEN_set(sv, allocate);
4835 #endif
4836     SvCUR_set(sv, len);
4837     SvPV_set(sv, ptr);
4838     if (!(flags & SV_HAS_TRAILING_NUL)) {
4839         ptr[len] = '\0';
4840     }
4841     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4842     SvTAINT(sv);
4843     if (flags & SV_SMAGIC)
4844         SvSETMAGIC(sv);
4845 }
4846
4847 #ifdef PERL_OLD_COPY_ON_WRITE
4848 /* Need to do this *after* making the SV normal, as we need the buffer
4849    pointer to remain valid until after we've copied it.  If we let go too early,
4850    another thread could invalidate it by unsharing last of the same hash key
4851    (which it can do by means other than releasing copy-on-write Svs)
4852    or by changing the other copy-on-write SVs in the loop.  */
4853 STATIC void
4854 S_sv_release_COW(pTHX_ SV *sv, const char *pvx, SV *after)
4855 {
4856     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4857
4858     { /* this SV was SvIsCOW_normal(sv) */
4859          /* we need to find the SV pointing to us.  */
4860         SV *current = SV_COW_NEXT_SV(after);
4861
4862         if (current == sv) {
4863             /* The SV we point to points back to us (there were only two of us
4864                in the loop.)
4865                Hence other SV is no longer copy on write either.  */
4866             SvIsCOW_off(after);
4867         } else {
4868             /* We need to follow the pointers around the loop.  */
4869             SV *next;
4870             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4871                 assert (next);
4872                 current = next;
4873                  /* don't loop forever if the structure is bust, and we have
4874                     a pointer into a closed loop.  */
4875                 assert (current != after);
4876                 assert (SvPVX_const(current) == pvx);
4877             }
4878             /* Make the SV before us point to the SV after us.  */
4879             SV_COW_NEXT_SV_SET(current, after);
4880         }
4881     }
4882 }
4883 #endif
4884 /*
4885 =for apidoc sv_force_normal_flags
4886
4887 Undo various types of fakery on an SV, where fakery means
4888 "more than" a string: if the PV is a shared string, make
4889 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4890 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4891 we do the copy, and is also used locally; if this is a
4892 vstring, drop the vstring magic.  If C<SV_COW_DROP_PV> is set
4893 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4894 SvPOK_off rather than making a copy.  (Used where this
4895 scalar is about to be set to some other value.)  In addition,
4896 the C<flags> parameter gets passed to C<sv_unref_flags()>
4897 when unreffing.  C<sv_force_normal> calls this function
4898 with flags set to 0.
4899
4900 =cut
4901 */
4902
4903 static void
4904 S_sv_uncow(pTHX_ SV * const sv, const U32 flags)
4905 {
4906     dVAR;
4907
4908     assert(SvIsCOW(sv));
4909     {
4910 #ifdef PERL_ANY_COW
4911         const char * const pvx = SvPVX_const(sv);
4912         const STRLEN len = SvLEN(sv);
4913         const STRLEN cur = SvCUR(sv);
4914 # ifdef PERL_OLD_COPY_ON_WRITE
4915         /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4916            key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4917            we'll fail an assertion.  */
4918         SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4919 # endif
4920
4921         if (DEBUG_C_TEST) {
4922                 PerlIO_printf(Perl_debug_log,
4923                               "Copy on write: Force normal %ld\n",
4924                               (long) flags);
4925                 sv_dump(sv);
4926         }
4927         SvIsCOW_off(sv);
4928 # ifdef PERL_NEW_COPY_ON_WRITE
4929         if (len && CowREFCNT(sv) == 0)
4930             /* We own the buffer ourselves. */
4931             NOOP;
4932         else
4933 # endif
4934         {
4935                 
4936             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4937 # ifdef PERL_NEW_COPY_ON_WRITE
4938             /* Must do this first, since the macro uses SvPVX. */
4939             if (len) CowREFCNT(sv)--;
4940 # endif
4941             SvPV_set(sv, NULL);
4942             SvLEN_set(sv, 0);
4943             if (flags & SV_COW_DROP_PV) {
4944                 /* OK, so we don't need to copy our buffer.  */
4945                 SvPOK_off(sv);
4946             } else {
4947                 SvGROW(sv, cur + 1);
4948                 Move(pvx,SvPVX(sv),cur,char);
4949                 SvCUR_set(sv, cur);
4950                 *SvEND(sv) = '\0';
4951             }
4952             if (len) {
4953 # ifdef PERL_OLD_COPY_ON_WRITE
4954                 sv_release_COW(sv, pvx, next);
4955 # endif
4956             } else {
4957                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4958             }
4959             if (DEBUG_C_TEST) {
4960                 sv_dump(sv);
4961             }
4962         }
4963 #else
4964             const char * const pvx = SvPVX_const(sv);
4965             const STRLEN len = SvCUR(sv);
4966             SvIsCOW_off(sv);
4967             SvPV_set(sv, NULL);
4968             SvLEN_set(sv, 0);
4969             if (flags & SV_COW_DROP_PV) {
4970                 /* OK, so we don't need to copy our buffer.  */
4971                 SvPOK_off(sv);
4972             } else {
4973                 SvGROW(sv, len + 1);
4974                 Move(pvx,SvPVX(sv),len,char);
4975                 *SvEND(sv) = '\0';
4976             }
4977             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4978 #endif
4979     }
4980 }
4981
4982 void
4983 Perl_sv_force_normal_flags(pTHX_ SV *const sv, const U32 flags)
4984 {
4985     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4986
4987     if (SvREADONLY(sv))
4988         Perl_croak_no_modify();
4989     else if (SvIsCOW(sv))
4990         S_sv_uncow(aTHX_ sv, flags);
4991     if (SvROK(sv))
4992         sv_unref_flags(sv, flags);
4993     else if (SvFAKE(sv) && isGV_with_GP(sv))
4994         sv_unglob(sv, flags);
4995     else if (SvFAKE(sv) && isREGEXP(sv)) {
4996         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
4997            to sv_unglob. We only need it here, so inline it.  */
4998         const bool islv = SvTYPE(sv) == SVt_PVLV;
4999         const svtype new_type =
5000           islv ? SVt_NULL : SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
5001         SV *const temp = newSV_type(new_type);
5002         regexp *const temp_p = ReANY((REGEXP *)sv);
5003
5004         if (new_type == SVt_PVMG) {
5005             SvMAGIC_set(temp, SvMAGIC(sv));
5006             SvMAGIC_set(sv, NULL);
5007             SvSTASH_set(temp, SvSTASH(sv));
5008             SvSTASH_set(sv, NULL);
5009         }
5010         if (!islv) SvCUR_set(temp, SvCUR(sv));
5011         /* Remember that SvPVX is in the head, not the body.  But
5012            RX_WRAPPED is in the body. */
5013         assert(ReANY((REGEXP *)sv)->mother_re);
5014         /* Their buffer is already owned by someone else. */
5015         if (flags & SV_COW_DROP_PV) {
5016             /* SvLEN is already 0.  For SVt_REGEXP, we have a brand new
5017                zeroed body.  For SVt_PVLV, it should have been set to 0
5018                before turning into a regexp. */
5019             assert(!SvLEN(islv ? sv : temp));
5020             sv->sv_u.svu_pv = 0;
5021         }
5022         else {
5023             sv->sv_u.svu_pv = savepvn(RX_WRAPPED((REGEXP *)sv), SvCUR(sv));
5024             SvLEN_set(islv ? sv : temp, SvCUR(sv)+1);
5025             SvPOK_on(sv);
5026         }
5027
5028         /* Now swap the rest of the bodies. */
5029
5030         SvFAKE_off(sv);
5031         if (!islv) {
5032             SvFLAGS(sv) &= ~SVTYPEMASK;
5033             SvFLAGS(sv) |= new_type;
5034             SvANY(sv) = SvANY(temp);
5035         }
5036
5037         SvFLAGS(temp) &= ~(SVTYPEMASK);
5038         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
5039         SvANY(temp) = temp_p;
5040         temp->sv_u.svu_rx = (regexp *)temp_p;
5041
5042         SvREFCNT_dec_NN(temp);
5043     }
5044     else if (SvVOK(sv)) sv_unmagic(sv, PERL_MAGIC_vstring);
5045 }
5046
5047 /*
5048 =for apidoc sv_chop
5049
5050 Efficient removal of characters from the beginning of the string buffer.
5051 SvPOK(sv), or at least SvPOKp(sv), must be true and the C<ptr> must be a
5052 pointer to somewhere inside the string buffer.  The C<ptr> becomes the first
5053 character of the adjusted string.  Uses the "OOK hack".  On return, only
5054 SvPOK(sv) and SvPOKp(sv) among the OK flags will be true.
5055
5056 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
5057 refer to the same chunk of data.
5058
5059 The unfortunate similarity of this function's name to that of Perl's C<chop>
5060 operator is strictly coincidental.  This function works from the left;
5061 C<chop> works from the right.
5062
5063 =cut
5064 */
5065
5066 void
5067 Perl_sv_chop(pTHX_ SV *const sv, const char *const ptr)
5068 {
5069     STRLEN delta;
5070     STRLEN old_delta;
5071     U8 *p;
5072 #ifdef DEBUGGING
5073     const U8 *evacp;
5074     STRLEN evacn;
5075 #endif
5076     STRLEN max_delta;
5077
5078     PERL_ARGS_ASSERT_SV_CHOP;
5079
5080     if (!ptr || !SvPOKp(sv))
5081         return;
5082     delta = ptr - SvPVX_const(sv);
5083     if (!delta) {
5084         /* Nothing to do.  */
5085         return;
5086     }
5087     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
5088     if (delta > max_delta)
5089         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
5090                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
5091     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), so don't use ptr any more */
5092     SV_CHECK_THINKFIRST(sv);
5093     SvPOK_only_UTF8(sv);
5094
5095     if (!SvOOK(sv)) {
5096         if (!SvLEN(sv)) { /* make copy of shared string */
5097             const char *pvx = SvPVX_const(sv);
5098             const STRLEN len = SvCUR(sv);
5099             SvGROW(sv, len + 1);
5100             Move(pvx,SvPVX(sv),len,char);
5101             *SvEND(sv) = '\0';
5102         }
5103         SvOOK_on(sv);
5104         old_delta = 0;
5105     } else {
5106         SvOOK_offset(sv, old_delta);
5107     }
5108     SvLEN_set(sv, SvLEN(sv) - delta);
5109     SvCUR_set(sv, SvCUR(sv) - delta);
5110     SvPV_set(sv, SvPVX(sv) + delta);
5111
5112     p = (U8 *)SvPVX_const(sv);
5113
5114 #ifdef DEBUGGING
5115     /* how many bytes were evacuated?  we will fill them with sentinel
5116        bytes, except for the part holding the new offset of course. */
5117     evacn = delta;
5118     if (old_delta)
5119         evacn += (old_delta < 0x100 ? 1 : 1 + sizeof(STRLEN));
5120     assert(evacn);
5121     assert(evacn <= delta + old_delta);
5122     evacp = p - evacn;
5123 #endif
5124
5125     /* This sets 'delta' to the accumulated value of all deltas so far */
5126     delta += old_delta;
5127     assert(delta);
5128
5129     /* If 'delta' fits in a byte, store it just prior to the new beginning of
5130      * the string; otherwise store a 0 byte there and store 'delta' just prior
5131      * to that, using as many bytes as a STRLEN occupies.  Thus it overwrites a
5132      * portion of the chopped part of the string */
5133     if (delta < 0x100) {
5134         *--p = (U8) delta;
5135     } else {
5136         *--p = 0;
5137         p -= sizeof(STRLEN);
5138         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
5139     }
5140
5141 #ifdef DEBUGGING
5142     /* Fill the preceding buffer with sentinals to verify that no-one is
5143        using it.  */
5144     while (p > evacp) {
5145         --p;
5146         *p = (U8)PTR2UV(p);
5147     }
5148 #endif
5149 }
5150
5151 /*
5152 =for apidoc sv_catpvn
5153
5154 Concatenates the string onto the end of the string which is in the SV.  The
5155 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5156 status set, then the bytes appended should be valid UTF-8.
5157 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
5158
5159 =for apidoc sv_catpvn_flags
5160
5161 Concatenates the string onto the end of the string which is in the SV.  The
5162 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5163 status set, then the bytes appended should be valid UTF-8.
5164 If C<flags> has the C<SV_SMAGIC> bit set, will
5165 C<mg_set> on C<dsv> afterwards if appropriate.
5166 C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5167 in terms of this function.
5168
5169 =cut
5170 */
5171
5172 void
5173 Perl_sv_catpvn_flags(pTHX_ SV *const dsv, const char *sstr, const STRLEN slen, const I32 flags)
5174 {
5175     dVAR;
5176     STRLEN dlen;
5177     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
5178
5179     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
5180     assert((flags & (SV_CATBYTES|SV_CATUTF8)) != (SV_CATBYTES|SV_CATUTF8));
5181
5182     if (!(flags & SV_CATBYTES) || !SvUTF8(dsv)) {
5183       if (flags & SV_CATUTF8 && !SvUTF8(dsv)) {
5184          sv_utf8_upgrade_flags_grow(dsv, 0, slen + 1);
5185          dlen = SvCUR(dsv);
5186       }
5187       else SvGROW(dsv, dlen + slen + 1);
5188       if (sstr == dstr)
5189         sstr = SvPVX_const(dsv);
5190       Move(sstr, SvPVX(dsv) + dlen, slen, char);
5191       SvCUR_set(dsv, SvCUR(dsv) + slen);
5192     }
5193     else {
5194         /* We inline bytes_to_utf8, to avoid an extra malloc. */
5195         const char * const send = sstr + slen;
5196         U8 *d;
5197
5198         /* Something this code does not account for, which I think is
5199            impossible; it would require the same pv to be treated as
5200            bytes *and* utf8, which would indicate a bug elsewhere. */
5201         assert(sstr != dstr);
5202
5203         SvGROW(dsv, dlen + slen * 2 + 1);
5204         d = (U8 *)SvPVX(dsv) + dlen;
5205
5206         while (sstr < send) {
5207             append_utf8_from_native_byte(*sstr, &d);
5208             sstr++;
5209         }
5210         SvCUR_set(dsv, d-(const U8 *)SvPVX(dsv));
5211     }
5212     *SvEND(dsv) = '\0';
5213     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5214     SvTAINT(dsv);
5215     if (flags & SV_SMAGIC)
5216         SvSETMAGIC(dsv);
5217 }
5218
5219 /*
5220 =for apidoc sv_catsv
5221
5222 Concatenates the string from SV C<ssv> onto the end of the string in SV
5223 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5224 Handles 'get' magic on both SVs, but no 'set' magic.  See C<sv_catsv_mg> and
5225 C<sv_catsv_nomg>.
5226
5227 =for apidoc sv_catsv_flags
5228
5229 Concatenates the string from SV C<ssv> onto the end of the string in SV
5230 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5231 If C<flags> include C<SV_GMAGIC> bit set, will call C<mg_get> on both SVs if
5232 appropriate.  If C<flags> include C<SV_SMAGIC>, C<mg_set> will be called on
5233 the modified SV afterward, if appropriate.  C<sv_catsv>, C<sv_catsv_nomg>,
5234 and C<sv_catsv_mg> are implemented in terms of this function.
5235
5236 =cut */
5237
5238 void
5239 Perl_sv_catsv_flags(pTHX_ SV *const dsv, SV *const ssv, const I32 flags)
5240 {
5241     dVAR;
5242  
5243     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
5244
5245     if (ssv) {
5246         STRLEN slen;
5247         const char *spv = SvPV_flags_const(ssv, slen, flags);
5248         if (spv) {
5249             if (flags & SV_GMAGIC)
5250                 SvGETMAGIC(dsv);
5251             sv_catpvn_flags(dsv, spv, slen,
5252                             DO_UTF8(ssv) ? SV_CATUTF8 : SV_CATBYTES);
5253             if (flags & SV_SMAGIC)
5254                 SvSETMAGIC(dsv);
5255         }
5256     }
5257 }
5258
5259 /*
5260 =for apidoc sv_catpv
5261
5262 Concatenates the string onto the end of the string which is in the SV.
5263 If the SV has the UTF-8 status set, then the bytes appended should be
5264 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5265
5266 =cut */
5267
5268 void
5269 Perl_sv_catpv(pTHX_ SV *const sv, const char *ptr)
5270 {
5271     dVAR;
5272     STRLEN len;
5273     STRLEN tlen;
5274     char *junk;
5275
5276     PERL_ARGS_ASSERT_SV_CATPV;
5277
5278     if (!ptr)
5279         return;
5280     junk = SvPV_force(sv, tlen);
5281     len = strlen(ptr);
5282     SvGROW(sv, tlen + len + 1);
5283     if (ptr == junk)
5284         ptr = SvPVX_const(sv);
5285     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5286     SvCUR_set(sv, SvCUR(sv) + len);
5287     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5288     SvTAINT(sv);
5289 }
5290
5291 /*
5292 =for apidoc sv_catpv_flags
5293
5294 Concatenates the string onto the end of the string which is in the SV.
5295 If the SV has the UTF-8 status set, then the bytes appended should
5296 be valid UTF-8.  If C<flags> has the C<SV_SMAGIC> bit set, will C<mg_set>
5297 on the modified SV if appropriate.
5298
5299 =cut
5300 */
5301
5302 void
5303 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5304 {
5305     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5306     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5307 }
5308
5309 /*
5310 =for apidoc sv_catpv_mg
5311
5312 Like C<sv_catpv>, but also handles 'set' magic.
5313
5314 =cut
5315 */
5316
5317 void
5318 Perl_sv_catpv_mg(pTHX_ SV *const sv, const char *const ptr)
5319 {
5320     PERL_ARGS_ASSERT_SV_CATPV_MG;
5321
5322     sv_catpv(sv,ptr);
5323     SvSETMAGIC(sv);
5324 }
5325
5326 /*
5327 =for apidoc newSV
5328
5329 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5330 bytes of preallocated string space the SV should have.  An extra byte for a
5331 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
5332 space is allocated.)  The reference count for the new SV is set to 1.
5333
5334 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5335 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5336 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5337 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5338 modules supporting older perls.
5339
5340 =cut
5341 */
5342
5343 SV *
5344 Perl_newSV(pTHX_ const STRLEN len)
5345 {
5346     dVAR;
5347     SV *sv;
5348
5349     new_SV(sv);
5350     if (len) {
5351         sv_upgrade(sv, SVt_PV);
5352         SvGROW(sv, len + 1);
5353     }
5354     return sv;
5355 }
5356 /*
5357 =for apidoc sv_magicext
5358
5359 Adds magic to an SV, upgrading it if necessary.  Applies the
5360 supplied vtable and returns a pointer to the magic added.
5361
5362 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5363 In particular, you can add magic to SvREADONLY SVs, and add more than
5364 one instance of the same 'how'.
5365
5366 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5367 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5368 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5369 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5370
5371 (This is now used as a subroutine by C<sv_magic>.)
5372
5373 =cut
5374 */
5375 MAGIC * 
5376 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5377                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5378 {
5379     dVAR;
5380     MAGIC* mg;
5381
5382     PERL_ARGS_ASSERT_SV_MAGICEXT;
5383
5384     if (SvTYPE(sv)==SVt_PVAV) { assert (!AvPAD_NAMELIST(sv)); }
5385
5386     SvUPGRADE(sv, SVt_PVMG);
5387     Newxz(mg, 1, MAGIC);
5388     mg->mg_moremagic = SvMAGIC(sv);
5389     SvMAGIC_set(sv, mg);
5390
5391     /* Sometimes a magic contains a reference loop, where the sv and
5392        object refer to each other.  To prevent a reference loop that
5393        would prevent such objects being freed, we look for such loops
5394        and if we find one we avoid incrementing the object refcount.
5395
5396        Note we cannot do this to avoid self-tie loops as intervening RV must
5397        have its REFCNT incremented to keep it in existence.
5398
5399     */
5400     if (!obj || obj == sv ||
5401         how == PERL_MAGIC_arylen ||
5402         how == PERL_MAGIC_symtab ||
5403         (SvTYPE(obj) == SVt_PVGV &&
5404             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5405              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5406              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5407     {
5408         mg->mg_obj = obj;
5409     }
5410     else {
5411         mg->mg_obj = SvREFCNT_inc_simple(obj);
5412         mg->mg_flags |= MGf_REFCOUNTED;
5413     }
5414
5415     /* Normal self-ties simply pass a null object, and instead of
5416        using mg_obj directly, use the SvTIED_obj macro to produce a
5417        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5418        with an RV obj pointing to the glob containing the PVIO.  In
5419        this case, to avoid a reference loop, we need to weaken the
5420        reference.
5421     */
5422
5423     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5424         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5425     {
5426       sv_rvweaken(obj);
5427     }
5428
5429     mg->mg_type = how;
5430     mg->mg_len = namlen;
5431     if (name) {
5432         if (namlen > 0)
5433             mg->mg_ptr = savepvn(name, namlen);
5434         else if (namlen == HEf_SVKEY) {
5435             /* Yes, this is casting away const. This is only for the case of
5436                HEf_SVKEY. I think we need to document this aberation of the
5437                constness of the API, rather than making name non-const, as
5438                that change propagating outwards a long way.  */
5439             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5440         } else
5441             mg->mg_ptr = (char *) name;
5442     }
5443     mg->mg_virtual = (MGVTBL *) vtable;
5444
5445     mg_magical(sv);
5446     return mg;
5447 }
5448
5449 MAGIC *
5450 Perl_sv_magicext_mglob(pTHX_ SV *sv)
5451 {
5452     PERL_ARGS_ASSERT_SV_MAGICEXT_MGLOB;
5453     if (SvTYPE(sv) == SVt_PVLV && LvTYPE(sv) == 'y') {
5454         /* This sv is only a delegate.  //g magic must be attached to
5455            its target. */
5456         vivify_defelem(sv);
5457         sv = LvTARG(sv);
5458     }
5459 #ifdef PERL_OLD_COPY_ON_WRITE
5460     if (SvIsCOW(sv))
5461         sv_force_normal_flags(sv, 0);
5462 #endif
5463     return sv_magicext(sv, NULL, PERL_MAGIC_regex_global,
5464                        &PL_vtbl_mglob, 0, 0);
5465 }
5466
5467 /*
5468 =for apidoc sv_magic
5469
5470 Adds magic to an SV.  First upgrades C<sv> to type C<SVt_PVMG> if
5471 necessary, then adds a new magic item of type C<how> to the head of the
5472 magic list.
5473
5474 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5475 handling of the C<name> and C<namlen> arguments.
5476
5477 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5478 to add more than one instance of the same 'how'.
5479
5480 =cut
5481 */
5482
5483 void
5484 Perl_sv_magic(pTHX_ SV *const sv, SV *const obj, const int how,
5485              const char *const name, const I32 namlen)
5486 {
5487     dVAR;
5488     const MGVTBL *vtable;
5489     MAGIC* mg;
5490     unsigned int flags;
5491     unsigned int vtable_index;
5492
5493     PERL_ARGS_ASSERT_SV_MAGIC;
5494
5495     if (how < 0 || (unsigned)how > C_ARRAY_LENGTH(PL_magic_data)
5496         || ((flags = PL_magic_data[how]),
5497             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5498             > magic_vtable_max))
5499         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5500
5501     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5502        Useful for attaching extension internal data to perl vars.
5503        Note that multiple extensions may clash if magical scalars
5504        etc holding private data from one are passed to another. */
5505
5506     vtable = (vtable_index == magic_vtable_max)
5507         ? NULL : PL_magic_vtables + vtable_index;
5508
5509 #ifdef PERL_OLD_COPY_ON_WRITE
5510     if (SvIsCOW(sv))
5511         sv_force_normal_flags(sv, 0);
5512 #endif
5513     if (SvREADONLY(sv)) {
5514         if (
5515             !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5516            )
5517         {
5518             Perl_croak_no_modify();
5519         }
5520     }
5521     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5522         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5523             /* sv_magic() refuses to add a magic of the same 'how' as an
5524                existing one
5525              */
5526             if (how == PERL_MAGIC_taint)
5527                 mg->mg_len |= 1;
5528             return;
5529         }
5530     }
5531
5532     /* Force pos to be stored as characters, not bytes. */
5533     if (SvMAGICAL(sv) && DO_UTF8(sv)
5534       && (mg = mg_find(sv, PERL_MAGIC_regex_global))
5535       && mg->mg_len != -1
5536       && mg->mg_flags & MGf_BYTES) {
5537         mg->mg_len = (SSize_t)sv_pos_b2u_flags(sv, (STRLEN)mg->mg_len,
5538                                                SV_CONST_RETURN);
5539         mg->mg_flags &= ~MGf_BYTES;
5540     }
5541
5542     /* Rest of work is done else where */
5543     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5544
5545     switch (how) {
5546     case PERL_MAGIC_taint:
5547         mg->mg_len = 1;
5548         break;
5549     case PERL_MAGIC_ext:
5550     case PERL_MAGIC_dbfile:
5551         SvRMAGICAL_on(sv);
5552         break;
5553     }
5554 }
5555
5556 static int
5557 S_sv_unmagicext_flags(pTHX_ SV *const sv, const int type, MGVTBL *vtbl, const U32 flags)
5558 {
5559     MAGIC* mg;
5560     MAGIC** mgp;
5561
5562     assert(flags <= 1);
5563
5564     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5565         return 0;
5566     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5567     for (mg = *mgp; mg; mg = *mgp) {
5568         const MGVTBL* const virt = mg->mg_virtual;
5569         if (mg->mg_type == type && (!flags || virt == vtbl)) {
5570             *mgp = mg->mg_moremagic;
5571             if (virt && virt->svt_free)
5572                 virt->svt_free(aTHX_ sv, mg);
5573             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5574                 if (mg->mg_len > 0)
5575                     Safefree(mg->mg_ptr);
5576                 else if (mg->mg_len == HEf_SVKEY)
5577                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5578                 else if (mg->mg_type == PERL_MAGIC_utf8)
5579                     Safefree(mg->mg_ptr);
5580             }
5581             if (mg->mg_flags & MGf_REFCOUNTED)
5582                 SvREFCNT_dec(mg->mg_obj);
5583             Safefree(mg);
5584         }
5585         else
5586             mgp = &mg->mg_moremagic;
5587     }
5588     if (SvMAGIC(sv)) {
5589         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5590             mg_magical(sv);     /*    else fix the flags now */
5591     }
5592     else {
5593         SvMAGICAL_off(sv);
5594         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5595     }
5596     return 0;
5597 }
5598
5599 /*
5600 =for apidoc sv_unmagic
5601
5602 Removes all magic of type C<type> from an SV.
5603
5604 =cut
5605 */
5606
5607 int
5608 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5609 {
5610     PERL_ARGS_ASSERT_SV_UNMAGIC;
5611     return S_sv_unmagicext_flags(aTHX_ sv, type, NULL, 0);
5612 }
5613
5614 /*
5615 =for apidoc sv_unmagicext
5616
5617 Removes all magic of type C<type> with the specified C<vtbl> from an SV.
5618
5619 =cut
5620 */
5621
5622 int
5623 Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl)
5624 {
5625     PERL_ARGS_ASSERT_SV_UNMAGICEXT;
5626     return S_sv_unmagicext_flags(aTHX_ sv, type, vtbl, 1);
5627 }
5628
5629 /*
5630 =for apidoc sv_rvweaken
5631
5632 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5633 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5634 push a back-reference to this RV onto the array of backreferences
5635 associated with that magic.  If the RV is magical, set magic will be
5636 called after the RV is cleared.
5637
5638 =cut
5639 */
5640
5641 SV *
5642 Perl_sv_rvweaken(pTHX_ SV *const sv)
5643 {
5644     SV *tsv;
5645
5646     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5647
5648     if (!SvOK(sv))  /* let undefs pass */
5649         return sv;
5650     if (!SvROK(sv))
5651         Perl_croak(aTHX_ "Can't weaken a nonreference");
5652     else if (SvWEAKREF(sv)) {
5653         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5654         return sv;
5655     }
5656     else if (SvREADONLY(sv)) croak_no_modify();
5657     tsv = SvRV(sv);
5658     Perl_sv_add_backref(aTHX_ tsv, sv);
5659     SvWEAKREF_on(sv);
5660     SvREFCNT_dec_NN(tsv);
5661     return sv;
5662 }
5663
5664 /* Give tsv backref magic if it hasn't already got it, then push a
5665  * back-reference to sv onto the array associated with the backref magic.
5666  *
5667  * As an optimisation, if there's only one backref and it's not an AV,
5668  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
5669  * allocate an AV. (Whether the slot holds an AV tells us whether this is
5670  * active.)
5671  */
5672
5673 /* A discussion about the backreferences array and its refcount:
5674  *
5675  * The AV holding the backreferences is pointed to either as the mg_obj of
5676  * PERL_MAGIC_backref, or in the specific case of a HV, from the
5677  * xhv_backreferences field. The array is created with a refcount
5678  * of 2. This means that if during global destruction the array gets
5679  * picked on before its parent to have its refcount decremented by the
5680  * random zapper, it won't actually be freed, meaning it's still there for
5681  * when its parent gets freed.
5682  *
5683  * When the parent SV is freed, the extra ref is killed by
5684  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
5685  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
5686  *
5687  * When a single backref SV is stored directly, it is not reference
5688  * counted.
5689  */
5690
5691 void
5692 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5693 {
5694     dVAR;
5695     SV **svp;
5696     AV *av = NULL;
5697     MAGIC *mg = NULL;
5698
5699     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5700
5701     /* find slot to store array or singleton backref */
5702
5703     if (SvTYPE(tsv) == SVt_PVHV) {
5704         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5705     } else {
5706         if (SvMAGICAL(tsv))
5707             mg = mg_find(tsv, PERL_MAGIC_backref);
5708         if (!mg)
5709             mg = sv_magicext(tsv, NULL, PERL_MAGIC_backref, &PL_vtbl_backref, NULL, 0);
5710         svp = &(mg->mg_obj);
5711     }
5712
5713     /* create or retrieve the array */
5714
5715     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
5716         || (*svp && SvTYPE(*svp) != SVt_PVAV)
5717     ) {
5718         /* create array */
5719         if (mg)
5720             mg->mg_flags |= MGf_REFCOUNTED;
5721         av = newAV();
5722         AvREAL_off(av);
5723         SvREFCNT_inc_simple_void_NN(av);
5724         /* av now has a refcnt of 2; see discussion above */
5725         av_extend(av, *svp ? 2 : 1);
5726         if (*svp) {
5727             /* move single existing backref to the array */
5728             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
5729         }
5730         *svp = (SV*)av;
5731     }
5732     else {
5733         av = MUTABLE_AV(*svp);
5734         if (!av) {
5735             /* optimisation: store single backref directly in HvAUX or mg_obj */
5736             *svp = sv;
5737             return;
5738         }
5739         assert(SvTYPE(av) == SVt_PVAV);
5740         if (AvFILLp(av) >= AvMAX(av)) {
5741             av_extend(av, AvFILLp(av)+1);
5742         }
5743     }
5744     /* push new backref */
5745     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5746 }
5747
5748 /* delete a back-reference to ourselves from the backref magic associated
5749  * with the SV we point to.
5750  */
5751
5752 void
5753 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5754 {
5755     dVAR;
5756     SV **svp = NULL;
5757
5758     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5759
5760     if (SvTYPE(tsv) == SVt_PVHV) {
5761         if (SvOOK(tsv))
5762             svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5763     }
5764     else if (SvIS_FREED(tsv) && PL_phase == PERL_PHASE_DESTRUCT) {
5765         /* It's possible for the the last (strong) reference to tsv to have
5766            become freed *before* the last thing holding a weak reference.
5767            If both survive longer than the backreferences array, then when
5768            the referent's reference count drops to 0 and it is freed, it's
5769            not able to chase the backreferences, so they aren't NULLed.
5770
5771            For example, a CV holds a weak reference to its stash. If both the
5772            CV and the stash survive longer than the backreferences array,
5773            and the CV gets picked for the SvBREAK() treatment first,
5774            *and* it turns out that the stash is only being kept alive because
5775            of an our variable in the pad of the CV, then midway during CV
5776            destruction the stash gets freed, but CvSTASH() isn't set to NULL.
5777            It ends up pointing to the freed HV. Hence it's chased in here, and
5778            if this block wasn't here, it would hit the !svp panic just below.
5779
5780            I don't believe that "better" destruction ordering is going to help
5781            here - during global destruction there's always going to be the
5782            chance that something goes out of order. We've tried to make it
5783            foolproof before, and it only resulted in evolutionary pressure on
5784            fools. Which made us look foolish for our hubris. :-(
5785         */
5786         return;
5787     }
5788     else {
5789         MAGIC *const mg
5790             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5791         svp =  mg ? &(mg->mg_obj) : NULL;
5792     }
5793
5794     if (!svp)
5795         Perl_croak(aTHX_ "panic: del_backref, svp=0");
5796     if (!*svp) {
5797         /* It's possible that sv is being freed recursively part way through the
5798            freeing of tsv. If this happens, the backreferences array of tsv has
5799            already been freed, and so svp will be NULL. If this is the case,
5800            we should not panic. Instead, nothing needs doing, so return.  */
5801         if (PL_phase == PERL_PHASE_DESTRUCT && SvREFCNT(tsv) == 0)
5802             return;
5803         Perl_croak(aTHX_ "panic: del_backref, *svp=%p phase=%s refcnt=%" UVuf,
5804                    *svp, PL_phase_names[PL_phase], (UV)SvREFCNT(tsv));
5805     }
5806
5807     if (SvTYPE(*svp) == SVt_PVAV) {
5808 #ifdef DEBUGGING
5809         int count = 1;
5810 #endif
5811         AV * const av = (AV*)*svp;
5812         SSize_t fill;
5813         assert(!SvIS_FREED(av));
5814         fill = AvFILLp(av);
5815         assert(fill > -1);
5816         svp = AvARRAY(av);
5817         /* for an SV with N weak references to it, if all those
5818          * weak refs are deleted, then sv_del_backref will be called
5819          * N times and O(N^2) compares will be done within the backref
5820          * array. To ameliorate this potential slowness, we:
5821          * 1) make sure this code is as tight as possible;
5822          * 2) when looking for SV, look for it at both the head and tail of the
5823          *    array first before searching the rest, since some create/destroy
5824          *    patterns will cause the backrefs to be freed in order.
5825          */
5826         if (*svp == sv) {
5827             AvARRAY(av)++;
5828             AvMAX(av)--;
5829         }
5830         else {
5831             SV **p = &svp[fill];
5832             SV *const topsv = *p;
5833             if (topsv != sv) {
5834 #ifdef DEBUGGING
5835                 count = 0;
5836 #endif
5837                 while (--p > svp) {
5838                     if (*p == sv) {
5839                         /* We weren't the last entry.
5840                            An unordered list has this property that you
5841                            can take the last element off the end to fill
5842                            the hole, and it's still an unordered list :-)
5843                         */
5844                         *p = topsv;
5845 #ifdef DEBUGGING
5846                         count++;
5847 #else
5848                         break; /* should only be one */
5849 #endif
5850                     }
5851                 }
5852             }
5853         }
5854         assert(count ==1);
5855         AvFILLp(av) = fill-1;
5856     }
5857     else if (SvIS_FREED(*svp) && PL_phase == PERL_PHASE_DESTRUCT) {
5858         /* freed AV; skip */
5859     }
5860     else {
5861         /* optimisation: only a single backref, stored directly */
5862         if (*svp != sv)
5863             Perl_croak(aTHX_ "panic: del_backref, *svp=%p, sv=%p", *svp, sv);
5864         *svp = NULL;
5865     }
5866
5867 }
5868
5869 void
5870 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5871 {
5872     SV **svp;
5873     SV **last;
5874     bool is_array;
5875
5876     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5877
5878     if (!av)
5879         return;
5880
5881     /* after multiple passes through Perl_sv_clean_all() for a thingy
5882      * that has badly leaked, the backref array may have gotten freed,
5883      * since we only protect it against 1 round of cleanup */
5884     if (SvIS_FREED(av)) {
5885         if (PL_in_clean_all) /* All is fair */
5886             return;
5887         Perl_croak(aTHX_
5888                    "panic: magic_killbackrefs (freed backref AV/SV)");
5889     }
5890
5891
5892     is_array = (SvTYPE(av) == SVt_PVAV);
5893     if (is_array) {
5894         assert(!SvIS_FREED(av));
5895         svp = AvARRAY(av);
5896         if (svp)
5897             last = svp + AvFILLp(av);
5898     }
5899     else {
5900         /* optimisation: only a single backref, stored directly */
5901         svp = (SV**)&av;
5902         last = svp;
5903     }
5904
5905     if (svp) {
5906         while (svp <= last) {
5907             if (*svp) {
5908                 SV *const referrer = *svp;
5909                 if (SvWEAKREF(referrer)) {
5910                     /* XXX Should we check that it hasn't changed? */
5911                     assert(SvROK(referrer));
5912                     SvRV_set(referrer, 0);
5913                     SvOK_off(referrer);
5914                     SvWEAKREF_off(referrer);
5915                     SvSETMAGIC(referrer);
5916                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5917                            SvTYPE(referrer) == SVt_PVLV) {
5918                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
5919                     /* You lookin' at me?  */
5920                     assert(GvSTASH(referrer));
5921                     assert(GvSTASH(referrer) == (const HV *)sv);
5922                     GvSTASH(referrer) = 0;
5923                 } else if (SvTYPE(referrer) == SVt_PVCV ||
5924                            SvTYPE(referrer) == SVt_PVFM) {
5925                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
5926                         /* You lookin' at me?  */
5927                         assert(CvSTASH(referrer));
5928                         assert(CvSTASH(referrer) == (const HV *)sv);
5929                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
5930                     }
5931                     else {
5932                         assert(SvTYPE(sv) == SVt_PVGV);
5933                         /* You lookin' at me?  */
5934                         assert(CvGV(referrer));
5935                         assert(CvGV(referrer) == (const GV *)sv);
5936                         anonymise_cv_maybe(MUTABLE_GV(sv),
5937                                                 MUTABLE_CV(referrer));
5938                     }
5939
5940                 } else {
5941                     Perl_croak(aTHX_
5942                                "panic: magic_killbackrefs (flags=%"UVxf")",
5943                                (UV)SvFLAGS(referrer));
5944                 }
5945
5946                 if (is_array)
5947                     *svp = NULL;
5948             }
5949             svp++;
5950         }
5951     }
5952     if (is_array) {
5953         AvFILLp(av) = -1;
5954         SvREFCNT_dec_NN(av); /* remove extra count added by sv_add_backref() */
5955     }
5956     return;
5957 }
5958
5959 /*
5960 =for apidoc sv_insert
5961
5962 Inserts a string at the specified offset/length within the SV.  Similar to
5963 the Perl substr() function.  Handles get magic.
5964
5965 =for apidoc sv_insert_flags
5966
5967 Same as C<sv_insert>, but the extra C<flags> are passed to the
5968 C<SvPV_force_flags> that applies to C<bigstr>.
5969
5970 =cut
5971 */
5972
5973 void
5974 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5975 {
5976     dVAR;
5977     char *big;
5978     char *mid;
5979     char *midend;
5980     char *bigend;
5981     SSize_t i;          /* better be sizeof(STRLEN) or bad things happen */
5982     STRLEN curlen;
5983
5984     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5985
5986     if (!bigstr)
5987         Perl_croak(aTHX_ "Can't modify nonexistent substring");
5988     SvPV_force_flags(bigstr, curlen, flags);
5989     (void)SvPOK_only_UTF8(bigstr);
5990     if (offset + len > curlen) {
5991         SvGROW(bigstr, offset+len+1);
5992         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5993         SvCUR_set(bigstr, offset+len);
5994     }
5995
5996     SvTAINT(bigstr);
5997     i = littlelen - len;
5998     if (i > 0) {                        /* string might grow */
5999         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
6000         mid = big + offset + len;
6001         midend = bigend = big + SvCUR(bigstr);
6002         bigend += i;
6003         *bigend = '\0';
6004         while (midend > mid)            /* shove everything down */
6005             *--bigend = *--midend;
6006         Move(little,big+offset,littlelen,char);
6007         SvCUR_set(bigstr, SvCUR(bigstr) + i);
6008         SvSETMAGIC(bigstr);
6009         return;
6010     }
6011     else if (i == 0) {
6012         Move(little,SvPVX(bigstr)+offset,len,char);
6013         SvSETMAGIC(bigstr);
6014         return;
6015     }
6016
6017     big = SvPVX(bigstr);
6018     mid = big + offset;
6019     midend = mid + len;
6020     bigend = big + SvCUR(bigstr);
6021
6022     if (midend > bigend)
6023         Perl_croak(aTHX_ "panic: sv_insert, midend=%p, bigend=%p",
6024                    midend, bigend);
6025
6026     if (mid - big > bigend - midend) {  /* faster to shorten from end */
6027         if (littlelen) {
6028             Move(little, mid, littlelen,char);
6029             mid += littlelen;
6030         }
6031         i = bigend - midend;
6032         if (i > 0) {
6033             Move(midend, mid, i,char);
6034             mid += i;
6035         }
6036         *mid = '\0';
6037         SvCUR_set(bigstr, mid - big);
6038     }
6039     else if ((i = mid - big)) { /* faster from front */
6040         midend -= littlelen;
6041         mid = midend;
6042         Move(big, midend - i, i, char);
6043         sv_chop(bigstr,midend-i);
6044         if (littlelen)
6045             Move(little, mid, littlelen,char);
6046     }
6047     else if (littlelen) {
6048         midend -= littlelen;
6049         sv_chop(bigstr,midend);
6050         Move(little,midend,littlelen,char);
6051     }
6052     else {
6053         sv_chop(bigstr,midend);
6054     }
6055     SvSETMAGIC(bigstr);
6056 }
6057
6058 /*
6059 =for apidoc sv_replace
6060
6061 Make the first argument a copy of the second, then delete the original.
6062 The target SV physically takes over ownership of the body of the source SV
6063 and inherits its flags; however, the target keeps any magic it owns,
6064 and any magic in the source is discarded.
6065 Note that this is a rather specialist SV copying operation; most of the
6066 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
6067
6068 =cut
6069 */
6070
6071 void
6072 Perl_sv_replace(pTHX_ SV *const sv, SV *const nsv)
6073 {
6074     dVAR;
6075     const U32 refcnt = SvREFCNT(sv);
6076
6077     PERL_ARGS_ASSERT_SV_REPLACE;
6078
6079     SV_CHECK_THINKFIRST_COW_DROP(sv);
6080     if (SvREFCNT(nsv) != 1) {
6081         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
6082                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
6083     }
6084     if (SvMAGICAL(sv)) {
6085         if (SvMAGICAL(nsv))
6086             mg_free(nsv);
6087         else
6088             sv_upgrade(nsv, SVt_PVMG);
6089         SvMAGIC_set(nsv, SvMAGIC(sv));
6090         SvFLAGS(nsv) |= SvMAGICAL(sv);
6091         SvMAGICAL_off(sv);
6092         SvMAGIC_set(sv, NULL);
6093     }
6094     SvREFCNT(sv) = 0;
6095     sv_clear(sv);
6096     assert(!SvREFCNT(sv));
6097 #ifdef DEBUG_LEAKING_SCALARS
6098     sv->sv_flags  = nsv->sv_flags;
6099     sv->sv_any    = nsv->sv_any;
6100     sv->sv_refcnt = nsv->sv_refcnt;
6101     sv->sv_u      = nsv->sv_u;
6102 #else
6103     StructCopy(nsv,sv,SV);
6104 #endif
6105     if(SvTYPE(sv) == SVt_IV) {
6106         SvANY(sv)
6107             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
6108     }
6109         
6110
6111 #ifdef PERL_OLD_COPY_ON_WRITE
6112     if (SvIsCOW_normal(nsv)) {
6113         /* We need to follow the pointers around the loop to make the
6114            previous SV point to sv, rather than nsv.  */
6115         SV *next;
6116         SV *current = nsv;
6117         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
6118             assert(next);
6119             current = next;
6120             assert(SvPVX_const(current) == SvPVX_const(nsv));
6121         }
6122         /* Make the SV before us point to the SV after us.  */
6123         if (DEBUG_C_TEST) {
6124             PerlIO_printf(Perl_debug_log, "previous is\n");
6125             sv_dump(current);
6126             PerlIO_printf(Perl_debug_log,
6127                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
6128                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
6129         }
6130         SV_COW_NEXT_SV_SET(current, sv);
6131     }
6132 #endif
6133     SvREFCNT(sv) = refcnt;
6134     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
6135     SvREFCNT(nsv) = 0;
6136     del_SV(nsv);
6137 }
6138
6139 /* We're about to free a GV which has a CV that refers back to us.
6140  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
6141  * field) */
6142
6143 STATIC void
6144 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
6145 {
6146     SV *gvname;
6147     GV *anongv;
6148
6149     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
6150
6151     /* be assertive! */
6152     assert(SvREFCNT(gv) == 0);
6153     assert(isGV(gv) && isGV_with_GP(gv));
6154     assert(GvGP(gv));
6155     assert(!CvANON(cv));
6156     assert(CvGV(cv) == gv);
6157     assert(!CvNAMED(cv));
6158
6159     /* will the CV shortly be freed by gp_free() ? */
6160     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
6161         SvANY(cv)->xcv_gv_u.xcv_gv = NULL;
6162         return;
6163     }
6164
6165     /* if not, anonymise: */
6166     gvname = (GvSTASH(gv) && HvNAME(GvSTASH(gv)) && HvENAME(GvSTASH(gv)))
6167                     ? newSVhek(HvENAME_HEK(GvSTASH(gv)))
6168                     : newSVpvn_flags( "__ANON__", 8, 0 );
6169     sv_catpvs(gvname, "::__ANON__");
6170     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
6171     SvREFCNT_dec_NN(gvname);
6172
6173     CvANON_on(cv);
6174     CvCVGV_RC_on(cv);
6175     SvANY(cv)->xcv_gv_u.xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
6176 }
6177
6178
6179 /*
6180 =for apidoc sv_clear
6181
6182 Clear an SV: call any destructors, free up any memory used by the body,
6183 and free the body itself.  The SV's head is I<not> freed, although
6184 its type is set to all 1's so that it won't inadvertently be assumed
6185 to be live during global destruction etc.
6186 This function should only be called when REFCNT is zero.  Most of the time
6187 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
6188 instead.
6189
6190 =cut
6191 */
6192
6193 void
6194 Perl_sv_clear(pTHX_ SV *const orig_sv)
6195 {
6196     dVAR;
6197     HV *stash;
6198     U32 type;
6199     const struct body_details *sv_type_details;
6200     SV* iter_sv = NULL;
6201     SV* next_sv = NULL;
6202     SV *sv = orig_sv;
6203     STRLEN hash_index;
6204
6205     PERL_ARGS_ASSERT_SV_CLEAR;
6206
6207     /* within this loop, sv is the SV currently being freed, and
6208      * iter_sv is the most recent AV or whatever that's being iterated
6209      * over to provide more SVs */
6210
6211     while (sv) {
6212
6213         type = SvTYPE(sv);
6214
6215         assert(SvREFCNT(sv) == 0);
6216         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
6217
6218         if (type <= SVt_IV) {
6219             /* See the comment in sv.h about the collusion between this
6220              * early return and the overloading of the NULL slots in the
6221              * size table.  */
6222             if (SvROK(sv))
6223                 goto free_rv;
6224             SvFLAGS(sv) &= SVf_BREAK;
6225             SvFLAGS(sv) |= SVTYPEMASK;
6226             goto free_head;
6227         }
6228
6229         assert(!SvOBJECT(sv) || type >= SVt_PVMG); /* objs are always >= MG */
6230
6231         if (type >= SVt_PVMG) {
6232             if (SvOBJECT(sv)) {
6233                 if (!curse(sv, 1)) goto get_next_sv;
6234                 type = SvTYPE(sv); /* destructor may have changed it */
6235             }
6236             /* Free back-references before magic, in case the magic calls
6237              * Perl code that has weak references to sv. */
6238             if (type == SVt_PVHV) {
6239                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
6240                 if (SvMAGIC(sv))
6241                     mg_free(sv);
6242             }
6243             else if (type == SVt_PVMG && SvPAD_OUR(sv)) {
6244                 SvREFCNT_dec(SvOURSTASH(sv));
6245             }
6246             else if (type == SVt_PVAV && AvPAD_NAMELIST(sv)) {
6247                 assert(!SvMAGICAL(sv));
6248             } else if (SvMAGIC(sv)) {
6249                 /* Free back-references before other types of magic. */
6250                 sv_unmagic(sv, PERL_MAGIC_backref);
6251                 mg_free(sv);
6252             }
6253             SvMAGICAL_off(sv);
6254             if (type == SVt_PVMG && SvPAD_TYPED(sv))
6255                 SvREFCNT_dec(SvSTASH(sv));
6256         }
6257         switch (type) {
6258             /* case SVt_INVLIST: */
6259         case SVt_PVIO:
6260             if (IoIFP(sv) &&
6261                 IoIFP(sv) != PerlIO_stdin() &&
6262                 IoIFP(sv) != PerlIO_stdout() &&
6263                 IoIFP(sv) != PerlIO_stderr() &&
6264                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6265             {
6266                 io_close(MUTABLE_IO(sv), FALSE);
6267             }
6268             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6269                 PerlDir_close(IoDIRP(sv));
6270             IoDIRP(sv) = (DIR*)NULL;
6271             Safefree(IoTOP_NAME(sv));
6272             Safefree(IoFMT_NAME(sv));
6273             Safefree(IoBOTTOM_NAME(sv));
6274             if ((const GV *)sv == PL_statgv)
6275                 PL_statgv = NULL;
6276             goto freescalar;
6277         case SVt_REGEXP:
6278             /* FIXME for plugins */
6279           freeregexp:
6280             pregfree2((REGEXP*) sv);
6281             goto freescalar;
6282         case SVt_PVCV:
6283         case SVt_PVFM:
6284             cv_undef(MUTABLE_CV(sv));
6285             /* If we're in a stash, we don't own a reference to it.
6286              * However it does have a back reference to us, which needs to
6287              * be cleared.  */
6288             if ((stash = CvSTASH(sv)))
6289                 sv_del_backref(MUTABLE_SV(stash), sv);
6290             goto freescalar;
6291         case SVt_PVHV:
6292             if (PL_last_swash_hv == (const HV *)sv) {
6293                 PL_last_swash_hv = NULL;
6294             }
6295             if (HvTOTALKEYS((HV*)sv) > 0) {
6296                 const char *name;
6297                 /* this statement should match the one at the beginning of
6298                  * hv_undef_flags() */
6299                 if (   PL_phase != PERL_PHASE_DESTRUCT
6300                     && (name = HvNAME((HV*)sv)))
6301                 {
6302                     if (PL_stashcache) {
6303                     DEBUG_o(Perl_deb(aTHX_ "sv_clear clearing PL_stashcache for '%"SVf"'\n",
6304                                      sv));
6305                         (void)hv_deletehek(PL_stashcache,
6306                                            HvNAME_HEK((HV*)sv), G_DISCARD);
6307                     }
6308                     hv_name_set((HV*)sv, NULL, 0, 0);
6309                 }
6310
6311                 /* save old iter_sv in unused SvSTASH field */
6312                 assert(!SvOBJECT(sv));
6313                 SvSTASH(sv) = (HV*)iter_sv;
6314                 iter_sv = sv;
6315
6316                 /* save old hash_index in unused SvMAGIC field */
6317                 assert(!SvMAGICAL(sv));
6318                 assert(!SvMAGIC(sv));
6319                 ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index = hash_index;
6320                 hash_index = 0;
6321
6322                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6323                 goto get_next_sv; /* process this new sv */
6324             }
6325             /* free empty hash */
6326             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6327             assert(!HvARRAY((HV*)sv));
6328             break;
6329         case SVt_PVAV:
6330             {
6331                 AV* av = MUTABLE_AV(sv);
6332                 if (PL_comppad == av) {
6333                     PL_comppad = NULL;
6334                     PL_curpad = NULL;
6335                 }
6336                 if (AvREAL(av) && AvFILLp(av) > -1) {
6337                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6338                     /* save old iter_sv in top-most slot of AV,
6339                      * and pray that it doesn't get wiped in the meantime */
6340                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6341                     iter_sv = sv;
6342                     goto get_next_sv; /* process this new sv */
6343                 }
6344                 Safefree(AvALLOC(av));
6345             }
6346
6347             break;
6348         case SVt_PVLV:
6349             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6350                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6351                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6352                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6353             }
6354             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6355                 SvREFCNT_dec(LvTARG(sv));
6356             if (isREGEXP(sv)) goto freeregexp;
6357         case SVt_PVGV:
6358             if (isGV_with_GP(sv)) {
6359                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6360                    && HvENAME_get(stash))
6361                     mro_method_changed_in(stash);
6362                 gp_free(MUTABLE_GV(sv));
6363                 if (GvNAME_HEK(sv))
6364                     unshare_hek(GvNAME_HEK(sv));
6365                 /* If we're in a stash, we don't own a reference to it.
6366                  * However it does have a back reference to us, which
6367                  * needs to be cleared.  */
6368                 if (!SvVALID(sv) && (stash = GvSTASH(sv)))
6369                         sv_del_backref(MUTABLE_SV(stash), sv);
6370             }
6371             /* FIXME. There are probably more unreferenced pointers to SVs
6372              * in the interpreter struct that we should check and tidy in
6373              * a similar fashion to this:  */
6374             /* See also S_sv_unglob, which does the same thing. */
6375             if ((const GV *)sv == PL_last_in_gv)
6376                 PL_last_in_gv = NULL;
6377             else if ((const GV *)sv == PL_statgv)
6378                 PL_statgv = NULL;
6379             else if ((const GV *)sv == PL_stderrgv)
6380                 PL_stderrgv = NULL;
6381         case SVt_PVMG:
6382         case SVt_PVNV:
6383         case SVt_PVIV:
6384         case SVt_INVLIST:
6385         case SVt_PV:
6386           freescalar:
6387             /* Don't bother with SvOOK_off(sv); as we're only going to
6388              * free it.  */
6389             if (SvOOK(sv)) {
6390                 STRLEN offset;
6391                 SvOOK_offset(sv, offset);
6392                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6393                 /* Don't even bother with turning off the OOK flag.  */
6394             }
6395             if (SvROK(sv)) {
6396             free_rv:
6397                 {
6398                     SV * const target = SvRV(sv);
6399                     if (SvWEAKREF(sv))
6400                         sv_del_backref(target, sv);
6401                     else
6402                         next_sv = target;
6403                 }
6404             }
6405 #ifdef PERL_ANY_COW
6406             else if (SvPVX_const(sv)
6407                      && !(SvTYPE(sv) == SVt_PVIO
6408                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6409             {
6410                 if (SvIsCOW(sv)) {
6411                     if (DEBUG_C_TEST) {
6412                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6413                         sv_dump(sv);
6414                     }
6415                     if (SvLEN(sv)) {
6416 # ifdef PERL_OLD_COPY_ON_WRITE
6417                         sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6418 # else
6419                         if (CowREFCNT(sv)) {
6420                             CowREFCNT(sv)--;
6421                             SvLEN_set(sv, 0);
6422                         }
6423 # endif
6424                     } else {
6425                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6426                     }
6427
6428                 }
6429 # ifdef PERL_OLD_COPY_ON_WRITE
6430                 else
6431 # endif
6432                 if (SvLEN(sv)) {
6433                     Safefree(SvPVX_mutable(sv));
6434                 }
6435             }
6436 #else
6437             else if (SvPVX_const(sv) && SvLEN(sv)
6438                      && !(SvTYPE(sv) == SVt_PVIO
6439                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6440                 Safefree(SvPVX_mutable(sv));
6441             else if (SvPVX_const(sv) && SvIsCOW(sv)) {
6442                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6443             }
6444 #endif
6445             break;
6446         case SVt_NV:
6447             break;
6448         }
6449
6450       free_body:
6451
6452         SvFLAGS(sv) &= SVf_BREAK;
6453         SvFLAGS(sv) |= SVTYPEMASK;
6454
6455         sv_type_details = bodies_by_type + type;
6456         if (sv_type_details->arena) {
6457             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6458                      &PL_body_roots[type]);
6459         }
6460         else if (sv_type_details->body_size) {
6461             safefree(SvANY(sv));
6462         }
6463
6464       free_head:
6465         /* caller is responsible for freeing the head of the original sv */
6466         if (sv != orig_sv && !SvREFCNT(sv))
6467             del_SV(sv);
6468
6469         /* grab and free next sv, if any */
6470       get_next_sv:
6471         while (1) {
6472             sv = NULL;
6473             if (next_sv) {
6474                 sv = next_sv;
6475                 next_sv = NULL;
6476             }
6477             else if (!iter_sv) {
6478                 break;
6479             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6480                 AV *const av = (AV*)iter_sv;
6481                 if (AvFILLp(av) > -1) {
6482                     sv = AvARRAY(av)[AvFILLp(av)--];
6483                 }
6484                 else { /* no more elements of current AV to free */
6485                     sv = iter_sv;
6486                     type = SvTYPE(sv);
6487                     /* restore previous value, squirrelled away */
6488                     iter_sv = AvARRAY(av)[AvMAX(av)];
6489                     Safefree(AvALLOC(av));
6490                     goto free_body;
6491                 }
6492             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6493                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6494                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6495                     /* no more elements of current HV to free */
6496                     sv = iter_sv;
6497                     type = SvTYPE(sv);
6498                     /* Restore previous values of iter_sv and hash_index,
6499                      * squirrelled away */
6500                     assert(!SvOBJECT(sv));
6501                     iter_sv = (SV*)SvSTASH(sv);
6502                     assert(!SvMAGICAL(sv));
6503                     hash_index = ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index;
6504 #ifdef DEBUGGING
6505                     /* perl -DA does not like rubbish in SvMAGIC. */
6506                     SvMAGIC_set(sv, 0);
6507 #endif
6508
6509                     /* free any remaining detritus from the hash struct */
6510                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6511                     assert(!HvARRAY((HV*)sv));
6512                     goto free_body;
6513                 }
6514             }
6515
6516             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6517
6518             if (!sv)
6519                 continue;
6520             if (!SvREFCNT(sv)) {
6521                 sv_free(sv);
6522                 continue;
6523             }
6524             if (--(SvREFCNT(sv)))
6525                 continue;
6526 #ifdef DEBUGGING
6527             if (SvTEMP(sv)) {
6528                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6529                          "Attempt to free temp prematurely: SV 0x%"UVxf
6530                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6531                 continue;
6532             }
6533 #endif
6534             if (SvIMMORTAL(sv)) {
6535                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6536                 SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6537                 continue;
6538             }
6539             break;
6540         } /* while 1 */
6541
6542     } /* while sv */
6543 }
6544
6545 /* This routine curses the sv itself, not the object referenced by sv. So
6546    sv does not have to be ROK. */
6547
6548 static bool
6549 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6550     dVAR;
6551
6552     PERL_ARGS_ASSERT_CURSE;
6553     assert(SvOBJECT(sv));
6554
6555     if (PL_defstash &&  /* Still have a symbol table? */
6556         SvDESTROYABLE(sv))
6557     {
6558         dSP;
6559         HV* stash;
6560         do {
6561           stash = SvSTASH(sv);
6562           assert(SvTYPE(stash) == SVt_PVHV);
6563           if (HvNAME(stash)) {
6564             CV* destructor = NULL;
6565             assert (SvOOK(stash));
6566             if (!SvOBJECT(stash)) destructor = (CV *)SvSTASH(stash);
6567             if (!destructor || HvMROMETA(stash)->destroy_gen
6568                                 != PL_sub_generation)
6569             {
6570                 GV * const gv =
6571                     gv_fetchmeth_autoload(stash, "DESTROY", 7, 0);
6572                 if (gv) destructor = GvCV(gv);
6573                 if (!SvOBJECT(stash))
6574                 {
6575                     SvSTASH(stash) =
6576                         destructor ? (HV *)destructor : ((HV *)0)+1;
6577                     HvAUX(stash)->xhv_mro_meta->destroy_gen =
6578                         PL_sub_generation;
6579                 }
6580             }
6581             assert(!destructor || destructor == ((CV *)0)+1
6582                 || SvTYPE(destructor) == SVt_PVCV);
6583             if (destructor && destructor != ((CV *)0)+1
6584                 /* A constant subroutine can have no side effects, so
6585                    don't bother calling it.  */
6586                 && !CvCONST(destructor)
6587                 /* Don't bother calling an empty destructor or one that
6588                    returns immediately. */
6589                 && (CvISXSUB(destructor)
6590                 || (CvSTART(destructor)
6591                     && (CvSTART(destructor)->op_next->op_type
6592                                         != OP_LEAVESUB)
6593                     && (CvSTART(destructor)->op_next->op_type
6594                                         != OP_PUSHMARK
6595                         || CvSTART(destructor)->op_next->op_next->op_type
6596                                         != OP_RETURN
6597                        )
6598                    ))
6599                )
6600             {
6601                 SV* const tmpref = newRV(sv);
6602                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
6603                 ENTER;
6604                 PUSHSTACKi(PERLSI_DESTROY);
6605                 EXTEND(SP, 2);
6606                 PUSHMARK(SP);
6607                 PUSHs(tmpref);
6608                 PUTBACK;
6609                 call_sv(MUTABLE_SV(destructor),
6610                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
6611                 POPSTACK;
6612                 SPAGAIN;
6613                 LEAVE;
6614                 if(SvREFCNT(tmpref) < 2) {
6615                     /* tmpref is not kept alive! */
6616                     SvREFCNT(sv)--;
6617                     SvRV_set(tmpref, NULL);
6618                     SvROK_off(tmpref);
6619                 }
6620                 SvREFCNT_dec_NN(tmpref);
6621             }
6622           }
6623         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
6624
6625
6626         if (check_refcnt && SvREFCNT(sv)) {
6627             if (PL_in_clean_objs)
6628                 Perl_croak(aTHX_
6629                   "DESTROY created new reference to dead object '%"HEKf"'",
6630                    HEKfARG(HvNAME_HEK(stash)));
6631             /* DESTROY gave object new lease on life */
6632             return FALSE;
6633         }
6634     }
6635
6636     if (SvOBJECT(sv)) {
6637         HV * const stash = SvSTASH(sv);
6638         /* Curse before freeing the stash, as freeing the stash could cause
6639            a recursive call into S_curse. */
6640         SvOBJECT_off(sv);       /* Curse the object. */
6641         SvSTASH_set(sv,0);      /* SvREFCNT_dec may try to read this */
6642         SvREFCNT_dec(stash); /* possibly of changed persuasion */
6643     }
6644     return TRUE;
6645 }
6646
6647 /*
6648 =for apidoc sv_newref
6649
6650 Increment an SV's reference count.  Use the C<SvREFCNT_inc()> wrapper
6651 instead.
6652
6653 =cut
6654 */
6655
6656 SV *
6657 Perl_sv_newref(pTHX_ SV *const sv)
6658 {
6659     PERL_UNUSED_CONTEXT;
6660     if (sv)
6661         (SvREFCNT(sv))++;
6662     return sv;
6663 }
6664
6665 /*
6666 =for apidoc sv_free
6667
6668 Decrement an SV's reference count, and if it drops to zero, call
6669 C<sv_clear> to invoke destructors and free up any memory used by
6670 the body; finally, deallocate the SV's head itself.
6671 Normally called via a wrapper macro C<SvREFCNT_dec>.
6672
6673 =cut
6674 */
6675
6676 void
6677 Perl_sv_free(pTHX_ SV *const sv)
6678 {
6679     SvREFCNT_dec(sv);
6680 }
6681
6682
6683 /* Private helper function for SvREFCNT_dec().
6684  * Called with rc set to original SvREFCNT(sv), where rc == 0 or 1 */
6685
6686 void
6687 Perl_sv_free2(pTHX_ SV *const sv, const U32 rc)
6688 {
6689     dVAR;
6690
6691     PERL_ARGS_ASSERT_SV_FREE2;
6692
6693     if (LIKELY( rc == 1 )) {
6694         /* normal case */
6695         SvREFCNT(sv) = 0;
6696
6697 #ifdef DEBUGGING
6698         if (SvTEMP(sv)) {
6699             Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6700                              "Attempt to free temp prematurely: SV 0x%"UVxf
6701                              pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6702             return;
6703         }
6704 #endif
6705         if (SvIMMORTAL(sv)) {
6706             /* make sure SvREFCNT(sv)==0 happens very seldom */
6707             SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6708             return;
6709         }
6710         sv_clear(sv);
6711         if (! SvREFCNT(sv)) /* may have have been resurrected */
6712             del_SV(sv);
6713         return;
6714     }
6715
6716     /* handle exceptional cases */
6717
6718     assert(rc == 0);
6719
6720     if (SvFLAGS(sv) & SVf_BREAK)
6721         /* this SV's refcnt has been artificially decremented to
6722          * trigger cleanup */
6723         return;
6724     if (PL_in_clean_all) /* All is fair */
6725         return;
6726     if (SvIMMORTAL(sv)) {
6727         /* make sure SvREFCNT(sv)==0 happens very seldom */
6728         SvREFCNT(sv) = SvREFCNT_IMMORTAL;
6729         return;
6730     }
6731     if (ckWARN_d(WARN_INTERNAL)) {
6732 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6733         Perl_dump_sv_child(aTHX_ sv);
6734 #else
6735     #ifdef DEBUG_LEAKING_SCALARS
6736         sv_dump(sv);
6737     #endif
6738 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6739         if (PL_warnhook == PERL_WARNHOOK_FATAL
6740             || ckDEAD(packWARN(WARN_INTERNAL))) {
6741             /* Don't let Perl_warner cause us to escape our fate:  */
6742             abort();
6743         }
6744 #endif
6745         /* This may not return:  */
6746         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6747                     "Attempt to free unreferenced scalar: SV 0x%"UVxf
6748                     pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6749 #endif
6750     }
6751 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6752     abort();
6753 #endif
6754
6755 }
6756
6757
6758 /*
6759 =for apidoc sv_len
6760
6761 Returns the length of the string in the SV.  Handles magic and type
6762 coercion and sets the UTF8 flag appropriately.  See also C<SvCUR>, which
6763 gives raw access to the xpv_cur slot.
6764
6765 =cut
6766 */
6767
6768 STRLEN
6769 Perl_sv_len(pTHX_ SV *const sv)
6770 {
6771     STRLEN len;
6772
6773     if (!sv)
6774         return 0;
6775
6776     (void)SvPV_const(sv, len);
6777     return len;
6778 }
6779
6780 /*
6781 =for apidoc sv_len_utf8
6782
6783 Returns the number of characters in the string in an SV, counting wide
6784 UTF-8 bytes as a single character.  Handles magic and type coercion.
6785
6786 =cut
6787 */
6788
6789 /*
6790  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
6791  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
6792  * (Note that the mg_len is not the length of the mg_ptr field.
6793  * This allows the cache to store the character length of the string without
6794  * needing to malloc() extra storage to attach to the mg_ptr.)
6795  *
6796  */
6797
6798 STRLEN
6799 Perl_sv_len_utf8(pTHX_ SV *const sv)
6800 {
6801     if (!sv)
6802         return 0;
6803
6804     SvGETMAGIC(sv);
6805     return sv_len_utf8_nomg(sv);
6806 }
6807
6808 STRLEN
6809 Perl_sv_len_utf8_nomg(pTHX_ SV * const sv)
6810 {
6811     dVAR;
6812     STRLEN len;
6813     const U8 *s = (U8*)SvPV_nomg_const(sv, len);
6814
6815     PERL_ARGS_ASSERT_SV_LEN_UTF8_NOMG;
6816
6817     if (PL_utf8cache && SvUTF8(sv)) {
6818             STRLEN ulen;
6819             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
6820
6821             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
6822                 if (mg->mg_len != -1)
6823                     ulen = mg->mg_len;
6824                 else {
6825                     /* We can use the offset cache for a headstart.
6826                        The longer value is stored in the first pair.  */
6827                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
6828
6829                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
6830                                                        s + len);
6831                 }
6832                 
6833                 if (PL_utf8cache < 0) {
6834                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6835                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
6836                 }
6837             }
6838             else {
6839                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6840                 utf8_mg_len_cache_update(sv, &mg, ulen);
6841             }
6842             return ulen;
6843     }
6844     return SvUTF8(sv) ? Perl_utf8_length(aTHX_ s, s + len) : len;
6845 }
6846
6847 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6848    offset.  */
6849 static STRLEN
6850 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6851                       STRLEN *const uoffset_p, bool *const at_end)
6852 {
6853     const U8 *s = start;
6854     STRLEN uoffset = *uoffset_p;
6855
6856     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6857
6858     while (s < send && uoffset) {
6859         --uoffset;
6860         s += UTF8SKIP(s);
6861     }
6862     if (s == send) {
6863         *at_end = TRUE;
6864     }
6865     else if (s > send) {
6866         *at_end = TRUE;
6867         /* This is the existing behaviour. Possibly it should be a croak, as
6868            it's actually a bounds error  */
6869         s = send;
6870     }
6871     *uoffset_p -= uoffset;
6872     return s - start;
6873 }
6874
6875 /* Given the length of the string in both bytes and UTF-8 characters, decide
6876    whether to walk forwards or backwards to find the byte corresponding to
6877    the passed in UTF-8 offset.  */
6878 static STRLEN
6879 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6880                     STRLEN uoffset, const STRLEN uend)
6881 {
6882     STRLEN backw = uend - uoffset;
6883
6884     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6885
6886     if (uoffset < 2 * backw) {
6887         /* The assumption is that going forwards is twice the speed of going
6888            forward (that's where the 2 * backw comes from).
6889            (The real figure of course depends on the UTF-8 data.)  */
6890         const U8 *s = start;
6891
6892         while (s < send && uoffset--)
6893             s += UTF8SKIP(s);
6894         assert (s <= send);
6895         if (s > send)
6896             s = send;
6897         return s - start;
6898     }
6899
6900     while (backw--) {
6901         send--;
6902         while (UTF8_IS_CONTINUATION(*send))
6903             send--;
6904     }
6905     return send - start;
6906 }
6907
6908 /* For the string representation of the given scalar, find the byte
6909    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6910    give another position in the string, *before* the sought offset, which
6911    (which is always true, as 0, 0 is a valid pair of positions), which should
6912    help reduce the amount of linear searching.
6913    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6914    will be used to reduce the amount of linear searching. The cache will be
6915    created if necessary, and the found value offered to it for update.  */
6916 static STRLEN
6917 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6918                     const U8 *const send, STRLEN uoffset,
6919                     STRLEN uoffset0, STRLEN boffset0)
6920 {
6921     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6922     bool found = FALSE;
6923     bool at_end = FALSE;
6924
6925     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6926
6927     assert (uoffset >= uoffset0);
6928
6929     if (!uoffset)
6930         return 0;
6931
6932     if (!SvREADONLY(sv) && !SvGMAGICAL(sv) && SvPOK(sv)
6933         && PL_utf8cache
6934         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
6935                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
6936         if ((*mgp)->mg_ptr) {
6937             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6938             if (cache[0] == uoffset) {
6939                 /* An exact match. */
6940                 return cache[1];
6941             }
6942             if (cache[2] == uoffset) {
6943                 /* An exact match. */
6944                 return cache[3];
6945             }
6946
6947             if (cache[0] < uoffset) {
6948                 /* The cache already knows part of the way.   */
6949                 if (cache[0] > uoffset0) {
6950                     /* The cache knows more than the passed in pair  */
6951                     uoffset0 = cache[0];
6952                     boffset0 = cache[1];
6953                 }
6954                 if ((*mgp)->mg_len != -1) {
6955                     /* And we know the end too.  */
6956                     boffset = boffset0
6957                         + sv_pos_u2b_midway(start + boffset0, send,
6958                                               uoffset - uoffset0,
6959                                               (*mgp)->mg_len - uoffset0);
6960                 } else {
6961                     uoffset -= uoffset0;
6962                     boffset = boffset0
6963                         + sv_pos_u2b_forwards(start + boffset0,
6964                                               send, &uoffset, &at_end);
6965                     uoffset += uoffset0;
6966                 }
6967             }
6968             else if (cache[2] < uoffset) {
6969                 /* We're between the two cache entries.  */
6970                 if (cache[2] > uoffset0) {
6971                     /* and the cache knows more than the passed in pair  */
6972                     uoffset0 = cache[2];
6973                     boffset0 = cache[3];
6974                 }
6975
6976                 boffset = boffset0
6977                     + sv_pos_u2b_midway(start + boffset0,
6978                                           start + cache[1],
6979                                           uoffset - uoffset0,
6980                                           cache[0] - uoffset0);
6981             } else {
6982                 boffset = boffset0
6983                     + sv_pos_u2b_midway(start + boffset0,
6984                                           start + cache[3],
6985                                           uoffset - uoffset0,
6986                                           cache[2] - uoffset0);
6987             }
6988             found = TRUE;
6989         }
6990         else if ((*mgp)->mg_len != -1) {
6991             /* If we can take advantage of a passed in offset, do so.  */
6992             /* In fact, offset0 is either 0, or less than offset, so don't
6993                need to worry about the other possibility.  */
6994             boffset = boffset0
6995                 + sv_pos_u2b_midway(start + boffset0, send,
6996                                       uoffset - uoffset0,
6997                                       (*mgp)->mg_len - uoffset0);
6998             found = TRUE;
6999         }
7000     }
7001
7002     if (!found || PL_utf8cache < 0) {
7003         STRLEN real_boffset;
7004         uoffset -= uoffset0;
7005         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
7006                                                       send, &uoffset, &at_end);
7007         uoffset += uoffset0;
7008
7009         if (found && PL_utf8cache < 0)
7010             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
7011                                        real_boffset, sv);
7012         boffset = real_boffset;
7013     }
7014
7015     if (PL_utf8cache && !SvGMAGICAL(sv) && SvPOK(sv)) {
7016         if (at_end)
7017             utf8_mg_len_cache_update(sv, mgp, uoffset);
7018         else
7019             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
7020     }
7021     return boffset;
7022 }
7023
7024
7025 /*
7026 =for apidoc sv_pos_u2b_flags
7027
7028 Converts the offset from a count of UTF-8 chars from
7029 the start of the string, to a count of the equivalent number of bytes; if
7030 lenp is non-zero, it does the same to lenp, but this time starting from
7031 the offset, rather than from the start
7032 of the string.  Handles type coercion.
7033 I<flags> is passed to C<SvPV_flags>, and usually should be
7034 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7035
7036 =cut
7037 */
7038
7039 /*
7040  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
7041  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7042  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7043  *
7044  */
7045
7046 STRLEN
7047 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
7048                       U32 flags)
7049 {
7050     const U8 *start;
7051     STRLEN len;
7052     STRLEN boffset;
7053
7054     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
7055
7056     start = (U8*)SvPV_flags(sv, len, flags);
7057     if (len) {
7058         const U8 * const send = start + len;
7059         MAGIC *mg = NULL;
7060         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
7061
7062         if (lenp
7063             && *lenp /* don't bother doing work for 0, as its bytes equivalent
7064                         is 0, and *lenp is already set to that.  */) {
7065             /* Convert the relative offset to absolute.  */
7066             const STRLEN uoffset2 = uoffset + *lenp;
7067             const STRLEN boffset2
7068                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
7069                                       uoffset, boffset) - boffset;
7070
7071             *lenp = boffset2;
7072         }
7073     } else {
7074         if (lenp)
7075             *lenp = 0;
7076         boffset = 0;
7077     }
7078
7079     return boffset;
7080 }
7081
7082 /*
7083 =for apidoc sv_pos_u2b
7084
7085 Converts the value pointed to by offsetp from a count of UTF-8 chars from
7086 the start of the string, to a count of the equivalent number of bytes; if
7087 lenp is non-zero, it does the same to lenp, but this time starting from
7088 the offset, rather than from the start of the string.  Handles magic and
7089 type coercion.
7090
7091 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
7092 than 2Gb.
7093
7094 =cut
7095 */
7096
7097 /*
7098  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
7099  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7100  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
7101  *
7102  */
7103
7104 /* This function is subject to size and sign problems */
7105
7106 void
7107 Perl_sv_pos_u2b(pTHX_ SV *const sv, I32 *const offsetp, I32 *const lenp)
7108 {
7109     PERL_ARGS_ASSERT_SV_POS_U2B;
7110
7111     if (lenp) {
7112         STRLEN ulen = (STRLEN)*lenp;
7113         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
7114                                          SV_GMAGIC|SV_CONST_RETURN);
7115         *lenp = (I32)ulen;
7116     } else {
7117         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
7118                                          SV_GMAGIC|SV_CONST_RETURN);
7119     }
7120 }
7121
7122 static void
7123 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
7124                            const STRLEN ulen)
7125 {
7126     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
7127     if (SvREADONLY(sv) || SvGMAGICAL(sv) || !SvPOK(sv))
7128         return;
7129
7130     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7131                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7132         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
7133     }
7134     assert(*mgp);
7135
7136     (*mgp)->mg_len = ulen;
7137 }
7138
7139 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
7140    byte length pairing. The (byte) length of the total SV is passed in too,
7141    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
7142    may not have updated SvCUR, so we can't rely on reading it directly.
7143
7144    The proffered utf8/byte length pairing isn't used if the cache already has
7145    two pairs, and swapping either for the proffered pair would increase the
7146    RMS of the intervals between known byte offsets.
7147
7148    The cache itself consists of 4 STRLEN values
7149    0: larger UTF-8 offset
7150    1: corresponding byte offset
7151    2: smaller UTF-8 offset
7152    3: corresponding byte offset
7153
7154    Unused cache pairs have the value 0, 0.
7155    Keeping the cache "backwards" means that the invariant of
7156    cache[0] >= cache[2] is maintained even with empty slots, which means that
7157    the code that uses it doesn't need to worry if only 1 entry has actually
7158    been set to non-zero.  It also makes the "position beyond the end of the
7159    cache" logic much simpler, as the first slot is always the one to start
7160    from.   
7161 */
7162 static void
7163 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
7164                            const STRLEN utf8, const STRLEN blen)
7165 {
7166     STRLEN *cache;
7167
7168     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
7169
7170     if (SvREADONLY(sv))
7171         return;
7172
7173     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
7174                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
7175         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
7176                            0);
7177         (*mgp)->mg_len = -1;
7178     }
7179     assert(*mgp);
7180
7181     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
7182         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
7183         (*mgp)->mg_ptr = (char *) cache;
7184     }
7185     assert(cache);
7186
7187     if (PL_utf8cache < 0 && SvPOKp(sv)) {
7188         /* SvPOKp() because it's possible that sv has string overloading, and
7189            therefore is a reference, hence SvPVX() is actually a pointer.
7190            This cures the (very real) symptoms of RT 69422, but I'm not actually
7191            sure whether we should even be caching the results of UTF-8
7192            operations on overloading, given that nothing stops overloading
7193            returning a different value every time it's called.  */
7194         const U8 *start = (const U8 *) SvPVX_const(sv);
7195         const STRLEN realutf8 = utf8_length(start, start + byte);
7196
7197         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
7198                                    sv);
7199     }
7200
7201     /* Cache is held with the later position first, to simplify the code
7202        that deals with unbounded ends.  */
7203        
7204     ASSERT_UTF8_CACHE(cache);
7205     if (cache[1] == 0) {
7206         /* Cache is totally empty  */
7207         cache[0] = utf8;
7208         cache[1] = byte;
7209     } else if (cache[3] == 0) {
7210         if (byte > cache[1]) {
7211             /* New one is larger, so goes first.  */
7212             cache[2] = cache[0];
7213             cache[3] = cache[1];
7214             cache[0] = utf8;
7215             cache[1] = byte;
7216         } else {
7217             cache[2] = utf8;
7218             cache[3] = byte;
7219         }
7220     } else {
7221 #define THREEWAY_SQUARE(a,b,c,d) \
7222             ((float)((d) - (c))) * ((float)((d) - (c))) \
7223             + ((float)((c) - (b))) * ((float)((c) - (b))) \
7224                + ((float)((b) - (a))) * ((float)((b) - (a)))
7225
7226         /* Cache has 2 slots in use, and we know three potential pairs.
7227            Keep the two that give the lowest RMS distance. Do the
7228            calculation in bytes simply because we always know the byte
7229            length.  squareroot has the same ordering as the positive value,
7230            so don't bother with the actual square root.  */
7231         if (byte > cache[1]) {
7232             /* New position is after the existing pair of pairs.  */
7233             const float keep_earlier
7234                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
7235             const float keep_later
7236                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
7237
7238             if (keep_later < keep_earlier) {
7239                 cache[2] = cache[0];
7240                 cache[3] = cache[1];
7241                 cache[0] = utf8;
7242                 cache[1] = byte;
7243             }
7244             else {
7245                 cache[0] = utf8;
7246                 cache[1] = byte;
7247             }
7248         }
7249         else if (byte > cache[3]) {
7250             /* New position is between the existing pair of pairs.  */
7251             const float keep_earlier
7252                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
7253             const float keep_later
7254                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
7255
7256             if (keep_later < keep_earlier) {
7257                 cache[2] = utf8;
7258                 cache[3] = byte;
7259             }
7260             else {
7261                 cache[0] = utf8;
7262                 cache[1] = byte;
7263             }
7264         }
7265         else {
7266             /* New position is before the existing pair of pairs.  */
7267             const float keep_earlier
7268                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
7269             const float keep_later
7270                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
7271
7272             if (keep_later < keep_earlier) {
7273                 cache[2] = utf8;
7274                 cache[3] = byte;
7275             }
7276             else {
7277                 cache[0] = cache[2];
7278                 cache[1] = cache[3];
7279                 cache[2] = utf8;
7280                 cache[3] = byte;
7281             }
7282         }
7283     }
7284     ASSERT_UTF8_CACHE(cache);
7285 }
7286
7287 /* We already know all of the way, now we may be able to walk back.  The same
7288    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
7289    backward is half the speed of walking forward. */
7290 static STRLEN
7291 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
7292                     const U8 *end, STRLEN endu)
7293 {
7294     const STRLEN forw = target - s;
7295     STRLEN backw = end - target;
7296
7297     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
7298
7299     if (forw < 2 * backw) {
7300         return utf8_length(s, target);
7301     }
7302
7303     while (end > target) {
7304         end--;
7305         while (UTF8_IS_CONTINUATION(*end)) {
7306             end--;
7307         }
7308         endu--;
7309     }
7310     return endu;
7311 }
7312
7313 /*
7314 =for apidoc sv_pos_b2u_flags
7315
7316 Converts the offset from a count of bytes from the start of the string, to
7317 a count of the equivalent number of UTF-8 chars.  Handles type coercion.
7318 I<flags> is passed to C<SvPV_flags>, and usually should be
7319 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
7320
7321 =cut
7322 */
7323
7324 /*
7325  * sv_pos_b2u_flags() uses, like sv_pos_u2b_flags(), the mg_ptr of the
7326  * potential PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8
7327  * and byte offsets.
7328  *
7329  */
7330 STRLEN
7331 Perl_sv_pos_b2u_flags(pTHX_ SV *const sv, STRLEN const offset, U32 flags)
7332 {
7333     const U8* s;
7334     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
7335     STRLEN blen;
7336     MAGIC* mg = NULL;
7337     const U8* send;
7338     bool found = FALSE;
7339
7340     PERL_ARGS_ASSERT_SV_POS_B2U_FLAGS;
7341
7342     s = (const U8*)SvPV_flags(sv, blen, flags);
7343
7344     if (blen < offset)
7345         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset, blen=%"UVuf
7346                    ", byte=%"UVuf, (UV)blen, (UV)offset);
7347
7348     send = s + offset;
7349
7350     if (!SvREADONLY(sv)
7351         && PL_utf8cache
7352         && SvTYPE(sv) >= SVt_PVMG
7353         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7354     {
7355         if (mg->mg_ptr) {
7356             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7357             if (cache[1] == offset) {
7358                 /* An exact match. */
7359                 return cache[0];
7360             }
7361             if (cache[3] == offset) {
7362                 /* An exact match. */
7363                 return cache[2];
7364             }
7365
7366             if (cache[1] < offset) {
7367                 /* We already know part of the way. */
7368                 if (mg->mg_len != -1) {
7369                     /* Actually, we know the end too.  */
7370                     len = cache[0]
7371                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7372                                               s + blen, mg->mg_len - cache[0]);
7373                 } else {
7374                     len = cache[0] + utf8_length(s + cache[1], send);
7375                 }
7376             }
7377             else if (cache[3] < offset) {
7378                 /* We're between the two cached pairs, so we do the calculation
7379                    offset by the byte/utf-8 positions for the earlier pair,
7380                    then add the utf-8 characters from the string start to
7381                    there.  */
7382                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7383                                           s + cache[1], cache[0] - cache[2])
7384                     + cache[2];
7385
7386             }
7387             else { /* cache[3] > offset */
7388                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7389                                           cache[2]);
7390
7391             }
7392             ASSERT_UTF8_CACHE(cache);
7393             found = TRUE;
7394         } else if (mg->mg_len != -1) {
7395             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7396             found = TRUE;
7397         }
7398     }
7399     if (!found || PL_utf8cache < 0) {
7400         const STRLEN real_len = utf8_length(s, send);
7401
7402         if (found && PL_utf8cache < 0)
7403             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7404         len = real_len;
7405     }
7406
7407     if (PL_utf8cache) {
7408         if (blen == offset)
7409             utf8_mg_len_cache_update(sv, &mg, len);
7410         else
7411             utf8_mg_pos_cache_update(sv, &mg, offset, len, blen);
7412     }
7413
7414     return len;
7415 }
7416
7417 /*
7418 =for apidoc sv_pos_b2u
7419
7420 Converts the value pointed to by offsetp from a count of bytes from the
7421 start of the string, to a count of the equivalent number of UTF-8 chars.
7422 Handles magic and type coercion.
7423
7424 Use C<sv_pos_b2u_flags> in preference, which correctly handles strings
7425 longer than 2Gb.
7426
7427 =cut
7428 */
7429
7430 /*
7431  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
7432  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7433  * byte offsets.
7434  *
7435  */
7436 void
7437 Perl_sv_pos_b2u(pTHX_ SV *const sv, I32 *const offsetp)
7438 {
7439     PERL_ARGS_ASSERT_SV_POS_B2U;
7440
7441     if (!sv)
7442         return;
7443
7444     *offsetp = (I32)sv_pos_b2u_flags(sv, (STRLEN)*offsetp,
7445                                      SV_GMAGIC|SV_CONST_RETURN);
7446 }
7447
7448 static void
7449 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7450                              STRLEN real, SV *const sv)
7451 {
7452     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7453
7454     /* As this is debugging only code, save space by keeping this test here,
7455        rather than inlining it in all the callers.  */
7456     if (from_cache == real)
7457         return;
7458
7459     /* Need to turn the assertions off otherwise we may recurse infinitely
7460        while printing error messages.  */
7461     SAVEI8(PL_utf8cache);
7462     PL_utf8cache = 0;
7463     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
7464                func, (UV) from_cache, (UV) real, SVfARG(sv));
7465 }
7466
7467 /*
7468 =for apidoc sv_eq
7469
7470 Returns a boolean indicating whether the strings in the two SVs are
7471 identical.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7472 coerce its args to strings if necessary.
7473
7474 =for apidoc sv_eq_flags
7475
7476 Returns a boolean indicating whether the strings in the two SVs are
7477 identical.  Is UTF-8 and 'use bytes' aware and coerces its args to strings
7478 if necessary.  If the flags include SV_GMAGIC, it handles get-magic, too.
7479
7480 =cut
7481 */
7482
7483 I32
7484 Perl_sv_eq_flags(pTHX_ SV *sv1, SV *sv2, const U32 flags)
7485 {
7486     dVAR;
7487     const char *pv1;
7488     STRLEN cur1;
7489     const char *pv2;
7490     STRLEN cur2;
7491     I32  eq     = 0;
7492     SV* svrecode = NULL;
7493
7494     if (!sv1) {
7495         pv1 = "";
7496         cur1 = 0;
7497     }
7498     else {
7499         /* if pv1 and pv2 are the same, second SvPV_const call may
7500          * invalidate pv1 (if we are handling magic), so we may need to
7501          * make a copy */
7502         if (sv1 == sv2 && flags & SV_GMAGIC
7503          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7504             pv1 = SvPV_const(sv1, cur1);
7505             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7506         }
7507         pv1 = SvPV_flags_const(sv1, cur1, flags);
7508     }
7509
7510     if (!sv2){
7511         pv2 = "";
7512         cur2 = 0;
7513     }
7514     else
7515         pv2 = SvPV_flags_const(sv2, cur2, flags);
7516
7517     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7518         /* Differing utf8ness.
7519          * Do not UTF8size the comparands as a side-effect. */
7520          if (PL_encoding) {
7521               if (SvUTF8(sv1)) {
7522                    svrecode = newSVpvn(pv2, cur2);
7523                    sv_recode_to_utf8(svrecode, PL_encoding);
7524                    pv2 = SvPV_const(svrecode, cur2);
7525               }
7526               else {
7527                    svrecode = newSVpvn(pv1, cur1);
7528                    sv_recode_to_utf8(svrecode, PL_encoding);
7529                    pv1 = SvPV_const(svrecode, cur1);
7530               }
7531               /* Now both are in UTF-8. */
7532               if (cur1 != cur2) {
7533                    SvREFCNT_dec_NN(svrecode);
7534                    return FALSE;
7535               }
7536          }
7537          else {
7538               if (SvUTF8(sv1)) {
7539                   /* sv1 is the UTF-8 one  */
7540                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7541                                         (const U8*)pv1, cur1) == 0;
7542               }
7543               else {
7544                   /* sv2 is the UTF-8 one  */
7545                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7546                                         (const U8*)pv2, cur2) == 0;
7547               }
7548          }
7549     }
7550
7551     if (cur1 == cur2)
7552         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7553         
7554     SvREFCNT_dec(svrecode);
7555
7556     return eq;
7557 }
7558
7559 /*
7560 =for apidoc sv_cmp
7561
7562 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7563 string in C<sv1> is less than, equal to, or greater than the string in
7564 C<sv2>.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7565 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
7566
7567 =for apidoc sv_cmp_flags
7568
7569 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7570 string in C<sv1> is less than, equal to, or greater than the string in
7571 C<sv2>.  Is UTF-8 and 'use bytes' aware and will coerce its args to strings
7572 if necessary.  If the flags include SV_GMAGIC, it handles get magic.  See
7573 also C<sv_cmp_locale_flags>.
7574
7575 =cut
7576 */
7577
7578 I32
7579 Perl_sv_cmp(pTHX_ SV *const sv1, SV *const sv2)
7580 {
7581     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7582 }
7583
7584 I32
7585 Perl_sv_cmp_flags(pTHX_ SV *const sv1, SV *const sv2,
7586                   const U32 flags)
7587 {
7588     dVAR;
7589     STRLEN cur1, cur2;
7590     const char *pv1, *pv2;
7591     I32  cmp;
7592     SV *svrecode = NULL;
7593
7594     if (!sv1) {
7595         pv1 = "";
7596         cur1 = 0;
7597     }
7598     else
7599         pv1 = SvPV_flags_const(sv1, cur1, flags);
7600
7601     if (!sv2) {
7602         pv2 = "";
7603         cur2 = 0;
7604     }
7605     else
7606         pv2 = SvPV_flags_const(sv2, cur2, flags);
7607
7608     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7609         /* Differing utf8ness.
7610          * Do not UTF8size the comparands as a side-effect. */
7611         if (SvUTF8(sv1)) {
7612             if (PL_encoding) {
7613                  svrecode = newSVpvn(pv2, cur2);
7614                  sv_recode_to_utf8(svrecode, PL_encoding);
7615                  pv2 = SvPV_const(svrecode, cur2);
7616             }
7617             else {
7618                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
7619                                                    (const U8*)pv1, cur1);
7620                 return retval ? retval < 0 ? -1 : +1 : 0;
7621             }
7622         }
7623         else {
7624             if (PL_encoding) {
7625                  svrecode = newSVpvn(pv1, cur1);
7626                  sv_recode_to_utf8(svrecode, PL_encoding);
7627                  pv1 = SvPV_const(svrecode, cur1);
7628             }
7629             else {
7630                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
7631                                                   (const U8*)pv2, cur2);
7632                 return retval ? retval < 0 ? -1 : +1 : 0;
7633             }
7634         }
7635     }
7636
7637     if (!cur1) {
7638         cmp = cur2 ? -1 : 0;
7639     } else if (!cur2) {
7640         cmp = 1;
7641     } else {
7642         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7643
7644         if (retval) {
7645             cmp = retval < 0 ? -1 : 1;
7646         } else if (cur1 == cur2) {
7647             cmp = 0;
7648         } else {
7649             cmp = cur1 < cur2 ? -1 : 1;
7650         }
7651     }
7652
7653     SvREFCNT_dec(svrecode);
7654
7655     return cmp;
7656 }
7657
7658 /*
7659 =for apidoc sv_cmp_locale
7660
7661 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7662 'use bytes' aware, handles get magic, and will coerce its args to strings
7663 if necessary.  See also C<sv_cmp>.
7664
7665 =for apidoc sv_cmp_locale_flags
7666
7667 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7668 'use bytes' aware and will coerce its args to strings if necessary.  If the
7669 flags contain SV_GMAGIC, it handles get magic.  See also C<sv_cmp_flags>.
7670
7671 =cut
7672 */
7673
7674 I32
7675 Perl_sv_cmp_locale(pTHX_ SV *const sv1, SV *const sv2)
7676 {
7677     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7678 }
7679
7680 I32
7681 Perl_sv_cmp_locale_flags(pTHX_ SV *const sv1, SV *const sv2,
7682                          const U32 flags)
7683 {
7684     dVAR;
7685 #ifdef USE_LOCALE_COLLATE
7686
7687     char *pv1, *pv2;
7688     STRLEN len1, len2;
7689     I32 retval;
7690
7691     if (PL_collation_standard)
7692         goto raw_compare;
7693
7694     len1 = 0;
7695     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7696     len2 = 0;
7697     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7698
7699     if (!pv1 || !len1) {
7700         if (pv2 && len2)
7701             return -1;
7702         else
7703             goto raw_compare;
7704     }
7705     else {
7706         if (!pv2 || !len2)
7707             return 1;
7708     }
7709
7710     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7711
7712     if (retval)
7713         return retval < 0 ? -1 : 1;
7714
7715     /*
7716      * When the result of collation is equality, that doesn't mean
7717      * that there are no differences -- some locales exclude some
7718      * characters from consideration.  So to avoid false equalities,
7719      * we use the raw string as a tiebreaker.
7720      */
7721
7722   raw_compare:
7723     /*FALLTHROUGH*/
7724
7725 #endif /* USE_LOCALE_COLLATE */
7726
7727     return sv_cmp(sv1, sv2);
7728 }
7729
7730
7731 #ifdef USE_LOCALE_COLLATE
7732
7733 /*
7734 =for apidoc sv_collxfrm
7735
7736 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag.  See
7737 C<sv_collxfrm_flags>.
7738
7739 =for apidoc sv_collxfrm_flags
7740
7741 Add Collate Transform magic to an SV if it doesn't already have it.  If the
7742 flags contain SV_GMAGIC, it handles get-magic.
7743
7744 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7745 scalar data of the variable, but transformed to such a format that a normal
7746 memory comparison can be used to compare the data according to the locale
7747 settings.
7748
7749 =cut
7750 */
7751
7752 char *
7753 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
7754 {
7755     dVAR;
7756     MAGIC *mg;
7757
7758     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
7759
7760     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
7761     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
7762         const char *s;
7763         char *xf;
7764         STRLEN len, xlen;
7765
7766         if (mg)
7767             Safefree(mg->mg_ptr);
7768         s = SvPV_flags_const(sv, len, flags);
7769         if ((xf = mem_collxfrm(s, len, &xlen))) {
7770             if (! mg) {
7771 #ifdef PERL_OLD_COPY_ON_WRITE
7772                 if (SvIsCOW(sv))
7773                     sv_force_normal_flags(sv, 0);
7774 #endif
7775                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7776                                  0, 0);
7777                 assert(mg);
7778             }
7779             mg->mg_ptr = xf;
7780             mg->mg_len = xlen;
7781         }
7782         else {
7783             if (mg) {
7784                 mg->mg_ptr = NULL;
7785                 mg->mg_len = -1;
7786             }
7787         }
7788     }
7789     if (mg && mg->mg_ptr) {
7790         *nxp = mg->mg_len;
7791         return mg->mg_ptr + sizeof(PL_collation_ix);
7792     }
7793     else {
7794         *nxp = 0;
7795         return NULL;
7796     }
7797 }
7798
7799 #endif /* USE_LOCALE_COLLATE */
7800
7801 static char *
7802 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7803 {
7804     SV * const tsv = newSV(0);
7805     ENTER;
7806     SAVEFREESV(tsv);
7807     sv_gets(tsv, fp, 0);
7808     sv_utf8_upgrade_nomg(tsv);
7809     SvCUR_set(sv,append);
7810     sv_catsv(sv,tsv);
7811     LEAVE;
7812     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7813 }
7814
7815 static char *
7816 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7817 {
7818     SSize_t bytesread;
7819     const STRLEN recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
7820       /* Grab the size of the record we're getting */
7821     char *buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
7822     
7823     /* Go yank in */
7824 #ifdef VMS
7825 #include <rms.h>
7826     int fd;
7827     Stat_t st;
7828
7829     /* With a true, record-oriented file on VMS, we need to use read directly
7830      * to ensure that we respect RMS record boundaries.  The user is responsible
7831      * for providing a PL_rs value that corresponds to the FAB$W_MRS (maximum
7832      * record size) field.  N.B. This is likely to produce invalid results on
7833      * varying-width character data when a record ends mid-character.
7834      */
7835     fd = PerlIO_fileno(fp);
7836     if (fd != -1
7837         && PerlLIO_fstat(fd, &st) == 0
7838         && (st.st_fab_rfm == FAB$C_VAR
7839             || st.st_fab_rfm == FAB$C_VFC
7840             || st.st_fab_rfm == FAB$C_FIX)) {
7841
7842         bytesread = PerlLIO_read(fd, buffer, recsize);
7843     }
7844     else /* in-memory file from PerlIO::Scalar
7845           * or not a record-oriented file
7846           */
7847 #endif
7848     {
7849         bytesread = PerlIO_read(fp, buffer, recsize);
7850
7851         /* At this point, the logic in sv_get() means that sv will
7852            be treated as utf-8 if the handle is utf8.
7853         */
7854         if (PerlIO_isutf8(fp) && bytesread > 0) {
7855             char *bend = buffer + bytesread;
7856             char *bufp = buffer;
7857             size_t charcount = 0;
7858             bool charstart = TRUE;
7859             STRLEN skip = 0;
7860
7861             while (charcount < recsize) {
7862                 /* count accumulated characters */
7863                 while (bufp < bend) {
7864                     if (charstart) {
7865                         skip = UTF8SKIP(bufp);
7866                     }
7867                     if (bufp + skip > bend) {
7868                         /* partial at the end */
7869                         charstart = FALSE;
7870                         break;
7871                     }
7872                     else {
7873                         ++charcount;
7874                         bufp += skip;
7875                         charstart = TRUE;
7876                     }
7877                 }
7878
7879                 if (charcount < recsize) {
7880                     STRLEN readsize;
7881                     STRLEN bufp_offset = bufp - buffer;
7882                     SSize_t morebytesread;
7883
7884                     /* originally I read enough to fill any incomplete
7885                        character and the first byte of the next
7886                        character if needed, but if there's many
7887                        multi-byte encoded characters we're going to be
7888                        making a read call for every character beyond
7889                        the original read size.
7890
7891                        So instead, read the rest of the character if
7892                        any, and enough bytes to match at least the
7893                        start bytes for each character we're going to
7894                        read.
7895                     */
7896                     if (charstart)
7897                         readsize = recsize - charcount;
7898                     else 
7899                         readsize = skip - (bend - bufp) + recsize - charcount - 1;
7900                     buffer = SvGROW(sv, append + bytesread + readsize + 1) + append;
7901                     bend = buffer + bytesread;
7902                     morebytesread = PerlIO_read(fp, bend, readsize);
7903                     if (morebytesread <= 0) {
7904                         /* we're done, if we still have incomplete
7905                            characters the check code in sv_gets() will
7906                            warn about them.
7907
7908                            I'd originally considered doing
7909                            PerlIO_ungetc() on all but the lead
7910                            character of the incomplete character, but
7911                            read() doesn't do that, so I don't.
7912                         */
7913                         break;
7914                     }
7915
7916                     /* prepare to scan some more */
7917                     bytesread += morebytesread;
7918                     bend = buffer + bytesread;
7919                     bufp = buffer + bufp_offset;
7920                 }
7921             }
7922         }
7923     }
7924
7925     if (bytesread < 0)
7926         bytesread = 0;
7927     SvCUR_set(sv, bytesread + append);
7928     buffer[bytesread] = '\0';
7929     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7930 }
7931
7932 /*
7933 =for apidoc sv_gets
7934
7935 Get a line from the filehandle and store it into the SV, optionally
7936 appending to the currently-stored string.  If C<append> is not 0, the
7937 line is appended to the SV instead of overwriting it.  C<append> should
7938 be set to the byte offset that the appended string should start at
7939 in the SV (typically, C<SvCUR(sv)> is a suitable choice).
7940
7941 =cut
7942 */
7943
7944 char *
7945 Perl_sv_gets(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7946 {
7947     dVAR;
7948     const char *rsptr;
7949     STRLEN rslen;
7950     STDCHAR rslast;
7951     STDCHAR *bp;
7952     SSize_t cnt;
7953     int i = 0;
7954     int rspara = 0;
7955
7956     PERL_ARGS_ASSERT_SV_GETS;
7957
7958     if (SvTHINKFIRST(sv))
7959         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
7960     /* XXX. If you make this PVIV, then copy on write can copy scalars read
7961        from <>.
7962        However, perlbench says it's slower, because the existing swipe code
7963        is faster than copy on write.
7964        Swings and roundabouts.  */
7965     SvUPGRADE(sv, SVt_PV);
7966
7967     if (append) {
7968         if (PerlIO_isutf8(fp)) {
7969             if (!SvUTF8(sv)) {
7970                 sv_utf8_upgrade_nomg(sv);
7971                 sv_pos_u2b(sv,&append,0);
7972             }
7973         } else if (SvUTF8(sv)) {
7974             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
7975         }
7976     }
7977
7978     SvPOK_only(sv);
7979     if (!append) {
7980         SvCUR_set(sv,0);
7981     }
7982     if (PerlIO_isutf8(fp))
7983         SvUTF8_on(sv);
7984
7985     if (IN_PERL_COMPILETIME) {
7986         /* we always read code in line mode */
7987         rsptr = "\n";
7988         rslen = 1;
7989     }
7990     else if (RsSNARF(PL_rs)) {
7991         /* If it is a regular disk file use size from stat() as estimate
7992            of amount we are going to read -- may result in mallocing
7993            more memory than we really need if the layers below reduce
7994            the size we read (e.g. CRLF or a gzip layer).
7995          */
7996         Stat_t st;
7997         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
7998             const Off_t offset = PerlIO_tell(fp);
7999             if (offset != (Off_t) -1 && st.st_size + append > offset) {
8000                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
8001             }
8002         }
8003         rsptr = NULL;
8004         rslen = 0;
8005     }
8006     else if (RsRECORD(PL_rs)) {
8007         return S_sv_gets_read_record(aTHX_ sv, fp, append);
8008     }
8009     else if (RsPARA(PL_rs)) {
8010         rsptr = "\n\n";
8011         rslen = 2;
8012         rspara = 1;
8013     }
8014     else {
8015         /* Get $/ i.e. PL_rs into same encoding as stream wants */
8016         if (PerlIO_isutf8(fp)) {
8017             rsptr = SvPVutf8(PL_rs, rslen);
8018         }
8019         else {
8020             if (SvUTF8(PL_rs)) {
8021                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
8022                     Perl_croak(aTHX_ "Wide character in $/");
8023                 }
8024             }
8025             rsptr = SvPV_const(PL_rs, rslen);
8026         }
8027     }
8028
8029     rslast = rslen ? rsptr[rslen - 1] : '\0';
8030
8031     if (rspara) {               /* have to do this both before and after */
8032         do {                    /* to make sure file boundaries work right */
8033             if (PerlIO_eof(fp))
8034                 return 0;
8035             i = PerlIO_getc(fp);
8036             if (i != '\n') {
8037                 if (i == -1)
8038                     return 0;
8039                 PerlIO_ungetc(fp,i);
8040                 break;
8041             }
8042         } while (i != EOF);
8043     }
8044
8045     /* See if we know enough about I/O mechanism to cheat it ! */
8046
8047     /* This used to be #ifdef test - it is made run-time test for ease
8048        of abstracting out stdio interface. One call should be cheap
8049        enough here - and may even be a macro allowing compile
8050        time optimization.
8051      */
8052
8053     if (PerlIO_fast_gets(fp)) {
8054
8055     /*
8056      * We're going to steal some values from the stdio struct
8057      * and put EVERYTHING in the innermost loop into registers.
8058      */
8059     STDCHAR *ptr;
8060     STRLEN bpx;
8061     I32 shortbuffered;
8062
8063 #if defined(VMS) && defined(PERLIO_IS_STDIO)
8064     /* An ungetc()d char is handled separately from the regular
8065      * buffer, so we getc() it back out and stuff it in the buffer.
8066      */
8067     i = PerlIO_getc(fp);
8068     if (i == EOF) return 0;
8069     *(--((*fp)->_ptr)) = (unsigned char) i;
8070     (*fp)->_cnt++;
8071 #endif
8072
8073     /* Here is some breathtakingly efficient cheating */
8074
8075     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
8076     /* make sure we have the room */
8077     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
8078         /* Not room for all of it
8079            if we are looking for a separator and room for some
8080          */
8081         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
8082             /* just process what we have room for */
8083             shortbuffered = cnt - SvLEN(sv) + append + 1;
8084             cnt -= shortbuffered;
8085         }
8086         else {
8087             shortbuffered = 0;
8088             /* remember that cnt can be negative */
8089             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
8090         }
8091     }
8092     else
8093         shortbuffered = 0;
8094     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
8095     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
8096     DEBUG_P(PerlIO_printf(Perl_debug_log,
8097         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
8098     DEBUG_P(PerlIO_printf(Perl_debug_log,
8099         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%zd, base=%"
8100          UVuf"\n",
8101                PTR2UV(PerlIO_get_ptr(fp)), PerlIO_get_cnt(fp),
8102                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
8103     for (;;) {
8104       screamer:
8105         if (cnt > 0) {
8106             if (rslen) {
8107                 while (cnt > 0) {                    /* this     |  eat */
8108                     cnt--;
8109                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
8110                         goto thats_all_folks;        /* screams  |  sed :-) */
8111                 }
8112             }
8113             else {
8114                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
8115                 bp += cnt;                           /* screams  |  dust */
8116                 ptr += cnt;                          /* louder   |  sed :-) */
8117                 cnt = 0;
8118                 assert (!shortbuffered);
8119                 goto cannot_be_shortbuffered;
8120             }
8121         }
8122         
8123         if (shortbuffered) {            /* oh well, must extend */
8124             cnt = shortbuffered;
8125             shortbuffered = 0;
8126             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
8127             SvCUR_set(sv, bpx);
8128             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
8129             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
8130             continue;
8131         }
8132
8133     cannot_be_shortbuffered:
8134         DEBUG_P(PerlIO_printf(Perl_debug_log,
8135                              "Screamer: going to getc, ptr=%"UVuf", cnt=%zd\n",
8136                               PTR2UV(ptr),cnt));
8137         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
8138
8139         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8140            "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%zd, base=%"UVuf"\n",
8141             PTR2UV(PerlIO_get_ptr(fp)), PerlIO_get_cnt(fp),
8142             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8143
8144         /* This used to call 'filbuf' in stdio form, but as that behaves like
8145            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
8146            another abstraction.  */
8147         i   = PerlIO_getc(fp);          /* get more characters */
8148
8149         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
8150            "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%zd, base=%"UVuf"\n",
8151             PTR2UV(PerlIO_get_ptr(fp)), PerlIO_get_cnt(fp),
8152             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8153
8154         cnt = PerlIO_get_cnt(fp);
8155         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
8156         DEBUG_P(PerlIO_printf(Perl_debug_log,
8157             "Screamer: after getc, ptr=%"UVuf", cnt=%zd\n",
8158              PTR2UV(ptr),cnt));
8159
8160         if (i == EOF)                   /* all done for ever? */
8161             goto thats_really_all_folks;
8162
8163         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
8164         SvCUR_set(sv, bpx);
8165         SvGROW(sv, bpx + cnt + 2);
8166         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
8167
8168         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
8169
8170         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
8171             goto thats_all_folks;
8172     }
8173
8174 thats_all_folks:
8175     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
8176           memNE((char*)bp - rslen, rsptr, rslen))
8177         goto screamer;                          /* go back to the fray */
8178 thats_really_all_folks:
8179     if (shortbuffered)
8180         cnt += shortbuffered;
8181         DEBUG_P(PerlIO_printf(Perl_debug_log,
8182             "Screamer: quitting, ptr=%"UVuf", cnt=%zd\n",PTR2UV(ptr),cnt));
8183     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
8184     DEBUG_P(PerlIO_printf(Perl_debug_log,
8185         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%zd, base=%"UVuf
8186         "\n",
8187         PTR2UV(PerlIO_get_ptr(fp)), PerlIO_get_cnt(fp),
8188         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
8189     *bp = '\0';
8190     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
8191     DEBUG_P(PerlIO_printf(Perl_debug_log,
8192         "Screamer: done, len=%ld, string=|%.*s|\n",
8193         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
8194     }
8195    else
8196     {
8197        /*The big, slow, and stupid way. */
8198 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
8199         STDCHAR *buf = NULL;
8200         Newx(buf, 8192, STDCHAR);
8201         assert(buf);
8202 #else
8203         STDCHAR buf[8192];
8204 #endif
8205
8206 screamer2:
8207         if (rslen) {
8208             const STDCHAR * const bpe = buf + sizeof(buf);
8209             bp = buf;
8210             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
8211                 ; /* keep reading */
8212             cnt = bp - buf;
8213         }
8214         else {
8215             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
8216             /* Accommodate broken VAXC compiler, which applies U8 cast to
8217              * both args of ?: operator, causing EOF to change into 255
8218              */
8219             if (cnt > 0)
8220                  i = (U8)buf[cnt - 1];
8221             else
8222                  i = EOF;
8223         }
8224
8225         if (cnt < 0)
8226             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
8227         if (append)
8228             sv_catpvn_nomg(sv, (char *) buf, cnt);
8229         else
8230             sv_setpvn(sv, (char *) buf, cnt);   /* "nomg" is implied */
8231
8232         if (i != EOF &&                 /* joy */
8233             (!rslen ||
8234              SvCUR(sv) < rslen ||
8235              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
8236         {
8237             append = -1;
8238             /*
8239              * If we're reading from a TTY and we get a short read,
8240              * indicating that the user hit his EOF character, we need
8241              * to notice it now, because if we try to read from the TTY
8242              * again, the EOF condition will disappear.
8243              *
8244              * The comparison of cnt to sizeof(buf) is an optimization
8245              * that prevents unnecessary calls to feof().
8246              *
8247              * - jik 9/25/96
8248              */
8249             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
8250                 goto screamer2;
8251         }
8252
8253 #ifdef USE_HEAP_INSTEAD_OF_STACK
8254         Safefree(buf);
8255 #endif
8256     }
8257
8258     if (rspara) {               /* have to do this both before and after */
8259         while (i != EOF) {      /* to make sure file boundaries work right */
8260             i = PerlIO_getc(fp);
8261             if (i != '\n') {
8262                 PerlIO_ungetc(fp,i);
8263                 break;
8264             }
8265         }
8266     }
8267
8268     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
8269 }
8270
8271 /*
8272 =for apidoc sv_inc
8273
8274 Auto-increment of the value in the SV, doing string to numeric conversion
8275 if necessary.  Handles 'get' magic and operator overloading.
8276
8277 =cut
8278 */
8279
8280 void
8281 Perl_sv_inc(pTHX_ SV *const sv)
8282 {
8283     if (!sv)
8284         return;
8285     SvGETMAGIC(sv);
8286     sv_inc_nomg(sv);
8287 }
8288
8289 /*
8290 =for apidoc sv_inc_nomg
8291
8292 Auto-increment of the value in the SV, doing string to numeric conversion
8293 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8294
8295 =cut
8296 */
8297
8298 void
8299 Perl_sv_inc_nomg(pTHX_ SV *const sv)
8300 {
8301     dVAR;
8302     char *d;
8303     int flags;
8304
8305     if (!sv)
8306         return;
8307     if (SvTHINKFIRST(sv)) {
8308         if (SvREADONLY(sv)) {
8309                 Perl_croak_no_modify();
8310         }
8311         if (SvROK(sv)) {
8312             IV i;
8313             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
8314                 return;
8315             i = PTR2IV(SvRV(sv));
8316             sv_unref(sv);
8317             sv_setiv(sv, i);
8318         }
8319         else sv_force_normal_flags(sv, 0);
8320     }
8321     flags = SvFLAGS(sv);
8322     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
8323         /* It's (privately or publicly) a float, but not tested as an
8324            integer, so test it to see. */
8325         (void) SvIV(sv);
8326         flags = SvFLAGS(sv);
8327     }
8328     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8329         /* It's publicly an integer, or privately an integer-not-float */
8330 #ifdef PERL_PRESERVE_IVUV
8331       oops_its_int:
8332 #endif
8333         if (SvIsUV(sv)) {
8334             if (SvUVX(sv) == UV_MAX)
8335                 sv_setnv(sv, UV_MAX_P1);
8336             else
8337                 (void)SvIOK_only_UV(sv);
8338                 SvUV_set(sv, SvUVX(sv) + 1);
8339         } else {
8340             if (SvIVX(sv) == IV_MAX)
8341                 sv_setuv(sv, (UV)IV_MAX + 1);
8342             else {
8343                 (void)SvIOK_only(sv);
8344                 SvIV_set(sv, SvIVX(sv) + 1);
8345             }   
8346         }
8347         return;
8348     }
8349     if (flags & SVp_NOK) {
8350         const NV was = SvNVX(sv);
8351         if (NV_OVERFLOWS_INTEGERS_AT &&
8352             was >= NV_OVERFLOWS_INTEGERS_AT) {
8353             /* diag_listed_as: Lost precision when %s %f by 1 */
8354             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8355                            "Lost precision when incrementing %" NVff " by 1",
8356                            was);
8357         }
8358         (void)SvNOK_only(sv);
8359         SvNV_set(sv, was + 1.0);
8360         return;
8361     }
8362
8363     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
8364         if ((flags & SVTYPEMASK) < SVt_PVIV)
8365             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
8366         (void)SvIOK_only(sv);
8367         SvIV_set(sv, 1);
8368         return;
8369     }
8370     d = SvPVX(sv);
8371     while (isALPHA(*d)) d++;
8372     while (isDIGIT(*d)) d++;
8373     if (d < SvEND(sv)) {
8374         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8375 #ifdef PERL_PRESERVE_IVUV
8376         /* Got to punt this as an integer if needs be, but we don't issue
8377            warnings. Probably ought to make the sv_iv_please() that does
8378            the conversion if possible, and silently.  */
8379         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8380             /* Need to try really hard to see if it's an integer.
8381                9.22337203685478e+18 is an integer.
8382                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8383                so $a="9.22337203685478e+18"; $a+0; $a++
8384                needs to be the same as $a="9.22337203685478e+18"; $a++
8385                or we go insane. */
8386         
8387             (void) sv_2iv(sv);
8388             if (SvIOK(sv))
8389                 goto oops_its_int;
8390
8391             /* sv_2iv *should* have made this an NV */
8392             if (flags & SVp_NOK) {
8393                 (void)SvNOK_only(sv);
8394                 SvNV_set(sv, SvNVX(sv) + 1.0);
8395                 return;
8396             }
8397             /* I don't think we can get here. Maybe I should assert this
8398                And if we do get here I suspect that sv_setnv will croak. NWC
8399                Fall through. */
8400 #if defined(USE_LONG_DOUBLE)
8401             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",
8402                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8403 #else
8404             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8405                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8406 #endif
8407         }
8408 #endif /* PERL_PRESERVE_IVUV */
8409         if (!numtype && ckWARN(WARN_NUMERIC))
8410             not_incrementable(sv);
8411         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
8412         return;
8413     }
8414     d--;
8415     while (d >= SvPVX_const(sv)) {
8416         if (isDIGIT(*d)) {
8417             if (++*d <= '9')
8418                 return;
8419             *(d--) = '0';
8420         }
8421         else {
8422 #ifdef EBCDIC
8423             /* MKS: The original code here died if letters weren't consecutive.
8424              * at least it didn't have to worry about non-C locales.  The
8425              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
8426              * arranged in order (although not consecutively) and that only
8427              * [A-Za-z] are accepted by isALPHA in the C locale.
8428              */
8429             if (*d != 'z' && *d != 'Z') {
8430                 do { ++*d; } while (!isALPHA(*d));
8431                 return;
8432             }
8433             *(d--) -= 'z' - 'a';
8434 #else
8435             ++*d;
8436             if (isALPHA(*d))
8437                 return;
8438             *(d--) -= 'z' - 'a' + 1;
8439 #endif
8440         }
8441     }
8442     /* oh,oh, the number grew */
8443     SvGROW(sv, SvCUR(sv) + 2);
8444     SvCUR_set(sv, SvCUR(sv) + 1);
8445     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
8446         *d = d[-1];
8447     if (isDIGIT(d[1]))
8448         *d = '1';
8449     else
8450         *d = d[1];
8451 }
8452
8453 /*
8454 =for apidoc sv_dec
8455
8456 Auto-decrement of the value in the SV, doing string to numeric conversion
8457 if necessary.  Handles 'get' magic and operator overloading.
8458
8459 =cut
8460 */
8461
8462 void
8463 Perl_sv_dec(pTHX_ SV *const sv)
8464 {
8465     dVAR;
8466     if (!sv)
8467         return;
8468     SvGETMAGIC(sv);
8469     sv_dec_nomg(sv);
8470 }
8471
8472 /*
8473 =for apidoc sv_dec_nomg
8474
8475 Auto-decrement of the value in the SV, doing string to numeric conversion
8476 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8477
8478 =cut
8479 */
8480
8481 void
8482 Perl_sv_dec_nomg(pTHX_ SV *const sv)
8483 {
8484     dVAR;
8485     int flags;
8486
8487     if (!sv)
8488         return;
8489     if (SvTHINKFIRST(sv)) {
8490         if (SvREADONLY(sv)) {
8491                 Perl_croak_no_modify();
8492         }
8493         if (SvROK(sv)) {
8494             IV i;
8495             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
8496                 return;
8497             i = PTR2IV(SvRV(sv));
8498             sv_unref(sv);
8499             sv_setiv(sv, i);
8500         }
8501         else sv_force_normal_flags(sv, 0);
8502     }
8503     /* Unlike sv_inc we don't have to worry about string-never-numbers
8504        and keeping them magic. But we mustn't warn on punting */
8505     flags = SvFLAGS(sv);
8506     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8507         /* It's publicly an integer, or privately an integer-not-float */
8508 #ifdef PERL_PRESERVE_IVUV
8509       oops_its_int:
8510 #endif
8511         if (SvIsUV(sv)) {
8512             if (SvUVX(sv) == 0) {
8513                 (void)SvIOK_only(sv);
8514                 SvIV_set(sv, -1);
8515             }
8516             else {
8517                 (void)SvIOK_only_UV(sv);
8518                 SvUV_set(sv, SvUVX(sv) - 1);
8519             }   
8520         } else {
8521             if (SvIVX(sv) == IV_MIN) {
8522                 sv_setnv(sv, (NV)IV_MIN);
8523                 goto oops_its_num;
8524             }
8525             else {
8526                 (void)SvIOK_only(sv);
8527                 SvIV_set(sv, SvIVX(sv) - 1);
8528             }   
8529         }
8530         return;
8531     }
8532     if (flags & SVp_NOK) {
8533     oops_its_num:
8534         {
8535             const NV was = SvNVX(sv);
8536             if (NV_OVERFLOWS_INTEGERS_AT &&
8537                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
8538                 /* diag_listed_as: Lost precision when %s %f by 1 */
8539                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8540                                "Lost precision when decrementing %" NVff " by 1",
8541                                was);
8542             }
8543             (void)SvNOK_only(sv);
8544             SvNV_set(sv, was - 1.0);
8545             return;
8546         }
8547     }
8548     if (!(flags & SVp_POK)) {
8549         if ((flags & SVTYPEMASK) < SVt_PVIV)
8550             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
8551         SvIV_set(sv, -1);
8552         (void)SvIOK_only(sv);
8553         return;
8554     }
8555 #ifdef PERL_PRESERVE_IVUV
8556     {
8557         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8558         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8559             /* Need to try really hard to see if it's an integer.
8560                9.22337203685478e+18 is an integer.
8561                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8562                so $a="9.22337203685478e+18"; $a+0; $a--
8563                needs to be the same as $a="9.22337203685478e+18"; $a--
8564                or we go insane. */
8565         
8566             (void) sv_2iv(sv);
8567             if (SvIOK(sv))
8568                 goto oops_its_int;
8569
8570             /* sv_2iv *should* have made this an NV */
8571             if (flags & SVp_NOK) {
8572                 (void)SvNOK_only(sv);
8573                 SvNV_set(sv, SvNVX(sv) - 1.0);
8574                 return;
8575             }
8576             /* I don't think we can get here. Maybe I should assert this
8577                And if we do get here I suspect that sv_setnv will croak. NWC
8578                Fall through. */
8579 #if defined(USE_LONG_DOUBLE)
8580             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",
8581                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8582 #else
8583             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8584                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8585 #endif
8586         }
8587     }
8588 #endif /* PERL_PRESERVE_IVUV */
8589     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
8590 }
8591
8592 /* this define is used to eliminate a chunk of duplicated but shared logic
8593  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
8594  * used anywhere but here - yves
8595  */
8596 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
8597     STMT_START {      \
8598         EXTEND_MORTAL(1); \
8599         PL_tmps_stack[++PL_tmps_ix] = (AnSv); \
8600     } STMT_END
8601
8602 /*
8603 =for apidoc sv_mortalcopy
8604
8605 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
8606 The new SV is marked as mortal.  It will be destroyed "soon", either by an
8607 explicit call to FREETMPS, or by an implicit call at places such as
8608 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
8609
8610 =cut
8611 */
8612
8613 /* Make a string that will exist for the duration of the expression
8614  * evaluation.  Actually, it may have to last longer than that, but
8615  * hopefully we won't free it until it has been assigned to a
8616  * permanent location. */
8617
8618 SV *
8619 Perl_sv_mortalcopy_flags(pTHX_ SV *const oldstr, U32 flags)
8620 {
8621     dVAR;
8622     SV *sv;
8623
8624     if (flags & SV_GMAGIC)
8625         SvGETMAGIC(oldstr); /* before new_SV, in case it dies */
8626     new_SV(sv);
8627     sv_setsv_flags(sv,oldstr,flags & ~SV_GMAGIC);
8628     PUSH_EXTEND_MORTAL__SV_C(sv);
8629     SvTEMP_on(sv);
8630     return sv;
8631 }
8632
8633 /*
8634 =for apidoc sv_newmortal
8635
8636 Creates a new null SV which is mortal.  The reference count of the SV is
8637 set to 1.  It will be destroyed "soon", either by an explicit call to
8638 FREETMPS, or by an implicit call at places such as statement boundaries.
8639 See also C<sv_mortalcopy> and C<sv_2mortal>.
8640
8641 =cut
8642 */
8643
8644 SV *
8645 Perl_sv_newmortal(pTHX)
8646 {
8647     dVAR;
8648     SV *sv;
8649
8650     new_SV(sv);
8651     SvFLAGS(sv) = SVs_TEMP;
8652     PUSH_EXTEND_MORTAL__SV_C(sv);
8653     return sv;
8654 }
8655
8656
8657 /*
8658 =for apidoc newSVpvn_flags
8659
8660 Creates a new SV and copies a string into it.  The reference count for the
8661 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8662 string.  You are responsible for ensuring that the source string is at least
8663 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8664 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
8665 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
8666 returning.  If C<SVf_UTF8> is set, C<s>
8667 is considered to be in UTF-8 and the
8668 C<SVf_UTF8> flag will be set on the new SV.
8669 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
8670
8671     #define newSVpvn_utf8(s, len, u)                    \
8672         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
8673
8674 =cut
8675 */
8676
8677 SV *
8678 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
8679 {
8680     dVAR;
8681     SV *sv;
8682
8683     /* All the flags we don't support must be zero.
8684        And we're new code so I'm going to assert this from the start.  */
8685     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
8686     new_SV(sv);
8687     sv_setpvn(sv,s,len);
8688
8689     /* This code used to do a sv_2mortal(), however we now unroll the call to
8690      * sv_2mortal() and do what it does ourselves here.  Since we have asserted
8691      * that flags can only have the SVf_UTF8 and/or SVs_TEMP flags set above we
8692      * can use it to enable the sv flags directly (bypassing SvTEMP_on), which
8693      * in turn means we dont need to mask out the SVf_UTF8 flag below, which
8694      * means that we eliminate quite a few steps than it looks - Yves
8695      * (explaining patch by gfx) */
8696
8697     SvFLAGS(sv) |= flags;
8698
8699     if(flags & SVs_TEMP){
8700         PUSH_EXTEND_MORTAL__SV_C(sv);
8701     }
8702
8703     return sv;
8704 }
8705
8706 /*
8707 =for apidoc sv_2mortal
8708
8709 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
8710 by an explicit call to FREETMPS, or by an implicit call at places such as
8711 statement boundaries.  SvTEMP() is turned on which means that the SV's
8712 string buffer can be "stolen" if this SV is copied.  See also C<sv_newmortal>
8713 and C<sv_mortalcopy>.
8714
8715 =cut
8716 */
8717
8718 SV *
8719 Perl_sv_2mortal(pTHX_ SV *const sv)
8720 {
8721     dVAR;
8722     if (!sv)
8723         return NULL;
8724     if (SvIMMORTAL(sv))
8725         return sv;
8726     PUSH_EXTEND_MORTAL__SV_C(sv);
8727     SvTEMP_on(sv);
8728     return sv;
8729 }
8730
8731 /*
8732 =for apidoc newSVpv
8733
8734 Creates a new SV and copies a string into it.  The reference count for the
8735 SV is set to 1.  If C<len> is zero, Perl will compute the length using
8736 strlen().  For efficiency, consider using C<newSVpvn> instead.
8737
8738 =cut
8739 */
8740
8741 SV *
8742 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
8743 {
8744     dVAR;
8745     SV *sv;
8746
8747     new_SV(sv);
8748     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
8749     return sv;
8750 }
8751
8752 /*
8753 =for apidoc newSVpvn
8754
8755 Creates a new SV and copies a buffer into it, which may contain NUL characters
8756 (C<\0>) and other binary data.  The reference count for the SV is set to 1.
8757 Note that if C<len> is zero, Perl will create a zero length (Perl) string.  You
8758 are responsible for ensuring that the source buffer is at least
8759 C<len> bytes long.  If the C<buffer> argument is NULL the new SV will be
8760 undefined.
8761
8762 =cut
8763 */
8764
8765 SV *
8766 Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len)
8767 {
8768     dVAR;
8769     SV *sv;
8770
8771     new_SV(sv);
8772     sv_setpvn(sv,buffer,len);
8773     return sv;
8774 }
8775
8776 /*
8777 =for apidoc newSVhek
8778
8779 Creates a new SV from the hash key structure.  It will generate scalars that
8780 point to the shared string table where possible.  Returns a new (undefined)
8781 SV if the hek is NULL.
8782
8783 =cut
8784 */
8785
8786 SV *
8787 Perl_newSVhek(pTHX_ const HEK *const hek)
8788 {
8789     dVAR;
8790     if (!hek) {
8791         SV *sv;
8792
8793         new_SV(sv);
8794         return sv;
8795     }
8796
8797     if (HEK_LEN(hek) == HEf_SVKEY) {
8798         return newSVsv(*(SV**)HEK_KEY(hek));
8799     } else {
8800         const int flags = HEK_FLAGS(hek);
8801         if (flags & HVhek_WASUTF8) {
8802             /* Trouble :-)
8803                Andreas would like keys he put in as utf8 to come back as utf8
8804             */
8805             STRLEN utf8_len = HEK_LEN(hek);
8806             SV * const sv = newSV_type(SVt_PV);
8807             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
8808             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
8809             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
8810             SvUTF8_on (sv);
8811             return sv;
8812         } else if (flags & HVhek_UNSHARED) {
8813             /* A hash that isn't using shared hash keys has to have
8814                the flag in every key so that we know not to try to call
8815                share_hek_hek on it.  */
8816
8817             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
8818             if (HEK_UTF8(hek))
8819                 SvUTF8_on (sv);
8820             return sv;
8821         }
8822         /* This will be overwhelminly the most common case.  */
8823         {
8824             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
8825                more efficient than sharepvn().  */
8826             SV *sv;
8827
8828             new_SV(sv);
8829             sv_upgrade(sv, SVt_PV);
8830             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
8831             SvCUR_set(sv, HEK_LEN(hek));
8832             SvLEN_set(sv, 0);
8833             SvIsCOW_on(sv);
8834             SvPOK_on(sv);
8835             if (HEK_UTF8(hek))
8836                 SvUTF8_on(sv);
8837             return sv;
8838         }
8839     }
8840 }
8841
8842 /*
8843 =for apidoc newSVpvn_share
8844
8845 Creates a new SV with its SvPVX_const pointing to a shared string in the string
8846 table.  If the string does not already exist in the table, it is
8847 created first.  Turns on the SvIsCOW flag (or READONLY
8848 and FAKE in 5.16 and earlier).  If the C<hash> parameter
8849 is non-zero, that value is used; otherwise the hash is computed.
8850 The string's hash can later be retrieved from the SV
8851 with the C<SvSHARED_HASH()> macro.  The idea here is
8852 that as the string table is used for shared hash keys these strings will have
8853 SvPVX_const == HeKEY and hash lookup will avoid string compare.
8854
8855 =cut
8856 */
8857
8858 SV *
8859 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
8860 {
8861     dVAR;
8862     SV *sv;
8863     bool is_utf8 = FALSE;
8864     const char *const orig_src = src;
8865
8866     if (len < 0) {
8867         STRLEN tmplen = -len;
8868         is_utf8 = TRUE;
8869         /* See the note in hv.c:hv_fetch() --jhi */
8870         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
8871         len = tmplen;
8872     }
8873     if (!hash)
8874         PERL_HASH(hash, src, len);
8875     new_SV(sv);
8876     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
8877        changes here, update it there too.  */
8878     sv_upgrade(sv, SVt_PV);
8879     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
8880     SvCUR_set(sv, len);
8881     SvLEN_set(sv, 0);
8882     SvIsCOW_on(sv);
8883     SvPOK_on(sv);
8884     if (is_utf8)
8885         SvUTF8_on(sv);
8886     if (src != orig_src)
8887         Safefree(src);
8888     return sv;
8889 }
8890
8891 /*
8892 =for apidoc newSVpv_share
8893
8894 Like C<newSVpvn_share>, but takes a nul-terminated string instead of a
8895 string/length pair.
8896
8897 =cut
8898 */
8899
8900 SV *
8901 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
8902 {
8903     return newSVpvn_share(src, strlen(src), hash);
8904 }
8905
8906 #if defined(PERL_IMPLICIT_CONTEXT)
8907
8908 /* pTHX_ magic can't cope with varargs, so this is a no-context
8909  * version of the main function, (which may itself be aliased to us).
8910  * Don't access this version directly.
8911  */
8912
8913 SV *
8914 Perl_newSVpvf_nocontext(const char *const pat, ...)
8915 {
8916     dTHX;
8917     SV *sv;
8918     va_list args;
8919
8920     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
8921
8922     va_start(args, pat);
8923     sv = vnewSVpvf(pat, &args);
8924     va_end(args);
8925     return sv;
8926 }
8927 #endif
8928
8929 /*
8930 =for apidoc newSVpvf
8931
8932 Creates a new SV and initializes it with the string formatted like
8933 C<sprintf>.
8934
8935 =cut
8936 */
8937
8938 SV *
8939 Perl_newSVpvf(pTHX_ const char *const pat, ...)
8940 {
8941     SV *sv;
8942     va_list args;
8943
8944     PERL_ARGS_ASSERT_NEWSVPVF;
8945
8946     va_start(args, pat);
8947     sv = vnewSVpvf(pat, &args);
8948     va_end(args);
8949     return sv;
8950 }
8951
8952 /* backend for newSVpvf() and newSVpvf_nocontext() */
8953
8954 SV *
8955 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
8956 {
8957     dVAR;
8958     SV *sv;
8959
8960     PERL_ARGS_ASSERT_VNEWSVPVF;
8961
8962     new_SV(sv);
8963     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8964     return sv;
8965 }
8966
8967 /*
8968 =for apidoc newSVnv
8969
8970 Creates a new SV and copies a floating point value into it.
8971 The reference count for the SV is set to 1.
8972
8973 =cut
8974 */
8975
8976 SV *
8977 Perl_newSVnv(pTHX_ const NV n)
8978 {
8979     dVAR;
8980     SV *sv;
8981
8982     new_SV(sv);
8983     sv_setnv(sv,n);
8984     return sv;
8985 }
8986
8987 /*
8988 =for apidoc newSViv
8989
8990 Creates a new SV and copies an integer into it.  The reference count for the
8991 SV is set to 1.
8992
8993 =cut
8994 */
8995
8996 SV *
8997 Perl_newSViv(pTHX_ const IV i)
8998 {
8999     dVAR;
9000     SV *sv;
9001
9002     new_SV(sv);
9003     sv_setiv(sv,i);
9004     return sv;
9005 }
9006
9007 /*
9008 =for apidoc newSVuv
9009
9010 Creates a new SV and copies an unsigned integer into it.
9011 The reference count for the SV is set to 1.
9012
9013 =cut
9014 */
9015
9016 SV *
9017 Perl_newSVuv(pTHX_ const UV u)
9018 {
9019     dVAR;
9020     SV *sv;
9021
9022     new_SV(sv);
9023     sv_setuv(sv,u);
9024     return sv;
9025 }
9026
9027 /*
9028 =for apidoc newSV_type
9029
9030 Creates a new SV, of the type specified.  The reference count for the new SV
9031 is set to 1.
9032
9033 =cut
9034 */
9035
9036 SV *
9037 Perl_newSV_type(pTHX_ const svtype type)
9038 {
9039     SV *sv;
9040
9041     new_SV(sv);
9042     sv_upgrade(sv, type);
9043     return sv;
9044 }
9045
9046 /*
9047 =for apidoc newRV_noinc
9048
9049 Creates an RV wrapper for an SV.  The reference count for the original
9050 SV is B<not> incremented.
9051
9052 =cut
9053 */
9054
9055 SV *
9056 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
9057 {
9058     dVAR;
9059     SV *sv = newSV_type(SVt_IV);
9060
9061     PERL_ARGS_ASSERT_NEWRV_NOINC;
9062
9063     SvTEMP_off(tmpRef);
9064     SvRV_set(sv, tmpRef);
9065     SvROK_on(sv);
9066     return sv;
9067 }
9068
9069 /* newRV_inc is the official function name to use now.
9070  * newRV_inc is in fact #defined to newRV in sv.h
9071  */
9072
9073 SV *
9074 Perl_newRV(pTHX_ SV *const sv)
9075 {
9076     dVAR;
9077
9078     PERL_ARGS_ASSERT_NEWRV;
9079
9080     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
9081 }
9082
9083 /*
9084 =for apidoc newSVsv
9085
9086 Creates a new SV which is an exact duplicate of the original SV.
9087 (Uses C<sv_setsv>.)
9088
9089 =cut
9090 */
9091
9092 SV *
9093 Perl_newSVsv(pTHX_ SV *const old)
9094 {
9095     dVAR;
9096     SV *sv;
9097
9098     if (!old)
9099         return NULL;
9100     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
9101         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
9102         return NULL;
9103     }
9104     /* Do this here, otherwise we leak the new SV if this croaks. */
9105     SvGETMAGIC(old);
9106     new_SV(sv);
9107     /* SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
9108        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
9109     sv_setsv_flags(sv, old, SV_NOSTEAL);
9110     return sv;
9111 }
9112
9113 /*
9114 =for apidoc sv_reset
9115
9116 Underlying implementation for the C<reset> Perl function.
9117 Note that the perl-level function is vaguely deprecated.
9118
9119 =cut
9120 */
9121
9122 void
9123 Perl_sv_reset(pTHX_ const char *s, HV *const stash)
9124 {
9125     PERL_ARGS_ASSERT_SV_RESET;
9126
9127     sv_resetpvn(*s ? s : NULL, strlen(s), stash);
9128 }
9129
9130 void
9131 Perl_sv_resetpvn(pTHX_ const char *s, STRLEN len, HV * const stash)
9132 {
9133     dVAR;
9134     char todo[PERL_UCHAR_MAX+1];
9135     const char *send;
9136
9137     if (!stash || SvTYPE(stash) != SVt_PVHV)
9138         return;
9139
9140     if (!s) {           /* reset ?? searches */
9141         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
9142         if (mg) {
9143             const U32 count = mg->mg_len / sizeof(PMOP**);
9144             PMOP **pmp = (PMOP**) mg->mg_ptr;
9145             PMOP *const *const end = pmp + count;
9146
9147             while (pmp < end) {
9148 #ifdef USE_ITHREADS
9149                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
9150 #else
9151                 (*pmp)->op_pmflags &= ~PMf_USED;
9152 #endif
9153                 ++pmp;
9154             }
9155         }
9156         return;
9157     }
9158
9159     /* reset variables */
9160
9161     if (!HvARRAY(stash))
9162         return;
9163
9164     Zero(todo, 256, char);
9165     send = s + len;
9166     while (s < send) {
9167         I32 max;
9168         I32 i = (unsigned char)*s;
9169         if (s[1] == '-') {
9170             s += 2;
9171         }
9172         max = (unsigned char)*s++;
9173         for ( ; i <= max; i++) {
9174             todo[i] = 1;
9175         }
9176         for (i = 0; i <= (I32) HvMAX(stash); i++) {
9177             HE *entry;
9178             for (entry = HvARRAY(stash)[i];
9179                  entry;
9180                  entry = HeNEXT(entry))
9181             {
9182                 GV *gv;
9183                 SV *sv;
9184
9185                 if (!todo[(U8)*HeKEY(entry)])
9186                     continue;
9187                 gv = MUTABLE_GV(HeVAL(entry));
9188                 sv = GvSV(gv);
9189                 if (sv && !SvREADONLY(sv)) {
9190                     SV_CHECK_THINKFIRST_COW_DROP(sv);
9191                     if (!isGV(sv)) SvOK_off(sv);
9192                 }
9193                 if (GvAV(gv)) {
9194                     av_clear(GvAV(gv));
9195                 }
9196                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
9197                     hv_clear(GvHV(gv));
9198                 }
9199             }
9200         }
9201     }
9202 }
9203
9204 /*
9205 =for apidoc sv_2io
9206
9207 Using various gambits, try to get an IO from an SV: the IO slot if its a
9208 GV; or the recursive result if we're an RV; or the IO slot of the symbol
9209 named after the PV if we're a string.
9210
9211 'Get' magic is ignored on the sv passed in, but will be called on
9212 C<SvRV(sv)> if sv is an RV.
9213
9214 =cut
9215 */
9216
9217 IO*
9218 Perl_sv_2io(pTHX_ SV *const sv)
9219 {
9220     IO* io;
9221     GV* gv;
9222
9223     PERL_ARGS_ASSERT_SV_2IO;
9224
9225     switch (SvTYPE(sv)) {
9226     case SVt_PVIO:
9227         io = MUTABLE_IO(sv);
9228         break;
9229     case SVt_PVGV:
9230     case SVt_PVLV:
9231         if (isGV_with_GP(sv)) {
9232             gv = MUTABLE_GV(sv);
9233             io = GvIO(gv);
9234             if (!io)
9235                 Perl_croak(aTHX_ "Bad filehandle: %"HEKf,
9236                                     HEKfARG(GvNAME_HEK(gv)));
9237             break;
9238         }
9239         /* FALL THROUGH */
9240     default:
9241         if (!SvOK(sv))
9242             Perl_croak(aTHX_ PL_no_usym, "filehandle");
9243         if (SvROK(sv)) {
9244             SvGETMAGIC(SvRV(sv));
9245             return sv_2io(SvRV(sv));
9246         }
9247         gv = gv_fetchsv_nomg(sv, 0, SVt_PVIO);
9248         if (gv)
9249             io = GvIO(gv);
9250         else
9251             io = 0;
9252         if (!io) {
9253             SV *newsv = sv;
9254             if (SvGMAGICAL(sv)) {
9255                 newsv = sv_newmortal();
9256                 sv_setsv_nomg(newsv, sv);
9257             }
9258             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(newsv));
9259         }
9260         break;
9261     }
9262     return io;
9263 }
9264
9265 /*
9266 =for apidoc sv_2cv
9267
9268 Using various gambits, try to get a CV from an SV; in addition, try if
9269 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
9270 The flags in C<lref> are passed to gv_fetchsv.
9271
9272 =cut
9273 */
9274
9275 CV *
9276 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
9277 {
9278     dVAR;
9279     GV *gv = NULL;
9280     CV *cv = NULL;
9281
9282     PERL_ARGS_ASSERT_SV_2CV;
9283
9284     if (!sv) {
9285         *st = NULL;
9286         *gvp = NULL;
9287         return NULL;
9288     }
9289     switch (SvTYPE(sv)) {
9290     case SVt_PVCV:
9291         *st = CvSTASH(sv);
9292         *gvp = NULL;
9293         return MUTABLE_CV(sv);
9294     case SVt_PVHV:
9295     case SVt_PVAV:
9296         *st = NULL;
9297         *gvp = NULL;
9298         return NULL;
9299     default:
9300         SvGETMAGIC(sv);
9301         if (SvROK(sv)) {
9302             if (SvAMAGIC(sv))
9303                 sv = amagic_deref_call(sv, to_cv_amg);
9304
9305             sv = SvRV(sv);
9306             if (SvTYPE(sv) == SVt_PVCV) {
9307                 cv = MUTABLE_CV(sv);
9308                 *gvp = NULL;
9309                 *st = CvSTASH(cv);
9310                 return cv;
9311             }
9312             else if(SvGETMAGIC(sv), isGV_with_GP(sv))
9313                 gv = MUTABLE_GV(sv);
9314             else
9315                 Perl_croak(aTHX_ "Not a subroutine reference");
9316         }
9317         else if (isGV_with_GP(sv)) {
9318             gv = MUTABLE_GV(sv);
9319         }
9320         else {
9321             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
9322         }
9323         *gvp = gv;
9324         if (!gv) {
9325             *st = NULL;
9326             return NULL;
9327         }
9328         /* Some flags to gv_fetchsv mean don't really create the GV  */
9329         if (!isGV_with_GP(gv)) {
9330             *st = NULL;
9331             return NULL;
9332         }
9333         *st = GvESTASH(gv);
9334         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
9335             /* XXX this is probably not what they think they're getting.
9336              * It has the same effect as "sub name;", i.e. just a forward
9337              * declaration! */
9338             newSTUB(gv,0);
9339         }
9340         return GvCVu(gv);
9341     }
9342 }
9343
9344 /*
9345 =for apidoc sv_true
9346
9347 Returns true if the SV has a true value by Perl's rules.
9348 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
9349 instead use an in-line version.
9350
9351 =cut
9352 */
9353
9354 I32
9355 Perl_sv_true(pTHX_ SV *const sv)
9356 {
9357     if (!sv)
9358         return 0;
9359     if (SvPOK(sv)) {
9360         const XPV* const tXpv = (XPV*)SvANY(sv);
9361         if (tXpv &&
9362                 (tXpv->xpv_cur > 1 ||
9363                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
9364             return 1;
9365         else
9366             return 0;
9367     }
9368     else {
9369         if (SvIOK(sv))
9370             return SvIVX(sv) != 0;
9371         else {
9372             if (SvNOK(sv))
9373                 return SvNVX(sv) != 0.0;
9374             else
9375                 return sv_2bool(sv);
9376         }
9377     }
9378 }
9379
9380 /*
9381 =for apidoc sv_pvn_force
9382
9383 Get a sensible string out of the SV somehow.
9384 A private implementation of the C<SvPV_force> macro for compilers which
9385 can't cope with complex macro expressions.  Always use the macro instead.
9386
9387 =for apidoc sv_pvn_force_flags
9388
9389 Get a sensible string out of the SV somehow.
9390 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
9391 appropriate, else not.  C<sv_pvn_force> and C<sv_pvn_force_nomg> are
9392 implemented in terms of this function.
9393 You normally want to use the various wrapper macros instead: see
9394 C<SvPV_force> and C<SvPV_force_nomg>
9395
9396 =cut
9397 */
9398
9399 char *
9400 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
9401 {
9402     dVAR;
9403
9404     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
9405
9406     if (flags & SV_GMAGIC) SvGETMAGIC(sv);
9407     if (SvTHINKFIRST(sv) && (!SvROK(sv) || SvREADONLY(sv)))
9408         sv_force_normal_flags(sv, 0);
9409
9410     if (SvPOK(sv)) {
9411         if (lp)
9412             *lp = SvCUR(sv);
9413     }
9414     else {
9415         char *s;
9416         STRLEN len;
9417  
9418         if (SvTYPE(sv) > SVt_PVLV
9419             || isGV_with_GP(sv))
9420             /* diag_listed_as: Can't coerce %s to %s in %s */
9421             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
9422                 OP_DESC(PL_op));
9423         s = sv_2pv_flags(sv, &len, flags &~ SV_GMAGIC);
9424         if (!s) {
9425           s = (char *)"";
9426         }
9427         if (lp)
9428             *lp = len;
9429
9430         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
9431             if (SvROK(sv))
9432                 sv_unref(sv);
9433             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
9434             SvGROW(sv, len + 1);
9435             Move(s,SvPVX(sv),len,char);
9436             SvCUR_set(sv, len);
9437             SvPVX(sv)[len] = '\0';
9438         }
9439         if (!SvPOK(sv)) {
9440             SvPOK_on(sv);               /* validate pointer */
9441             SvTAINT(sv);
9442             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9443                                   PTR2UV(sv),SvPVX_const(sv)));
9444         }
9445     }
9446     (void)SvPOK_only_UTF8(sv);
9447     return SvPVX_mutable(sv);
9448 }
9449
9450 /*
9451 =for apidoc sv_pvbyten_force
9452
9453 The backend for the C<SvPVbytex_force> macro.  Always use the macro
9454 instead.
9455
9456 =cut
9457 */
9458
9459 char *
9460 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9461 {
9462     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9463
9464     sv_pvn_force(sv,lp);
9465     sv_utf8_downgrade(sv,0);
9466     *lp = SvCUR(sv);
9467     return SvPVX(sv);
9468 }
9469
9470 /*
9471 =for apidoc sv_pvutf8n_force
9472
9473 The backend for the C<SvPVutf8x_force> macro.  Always use the macro
9474 instead.
9475
9476 =cut
9477 */
9478
9479 char *
9480 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9481 {
9482     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9483
9484     sv_pvn_force(sv,0);
9485     sv_utf8_upgrade_nomg(sv);
9486     *lp = SvCUR(sv);
9487     return SvPVX(sv);
9488 }
9489
9490 /*
9491 =for apidoc sv_reftype
9492
9493 Returns a string describing what the SV is a reference to.
9494
9495 =cut
9496 */
9497
9498 const char *
9499 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9500 {
9501     PERL_ARGS_ASSERT_SV_REFTYPE;
9502     if (ob && SvOBJECT(sv)) {
9503         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
9504     }
9505     else {
9506         switch (SvTYPE(sv)) {
9507         case SVt_NULL:
9508         case SVt_IV:
9509         case SVt_NV:
9510         case SVt_PV:
9511         case SVt_PVIV:
9512         case SVt_PVNV:
9513         case SVt_PVMG:
9514                                 if (SvVOK(sv))
9515                                     return "VSTRING";
9516                                 if (SvROK(sv))
9517                                     return "REF";
9518                                 else
9519                                     return "SCALAR";
9520
9521         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9522                                 /* tied lvalues should appear to be
9523                                  * scalars for backwards compatibility */
9524                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
9525                                     ? "SCALAR" : "LVALUE");
9526         case SVt_PVAV:          return "ARRAY";
9527         case SVt_PVHV:          return "HASH";
9528         case SVt_PVCV:          return "CODE";
9529         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9530                                     ? "GLOB" : "SCALAR");
9531         case SVt_PVFM:          return "FORMAT";
9532         case SVt_PVIO:          return "IO";
9533         case SVt_INVLIST:       return "INVLIST";
9534         case SVt_REGEXP:        return "REGEXP";
9535         default:                return "UNKNOWN";
9536         }
9537     }
9538 }
9539
9540 /*
9541 =for apidoc sv_ref
9542
9543 Returns a SV describing what the SV passed in is a reference to.
9544
9545 =cut
9546 */
9547
9548 SV *
9549 Perl_sv_ref(pTHX_ SV *dst, const SV *const sv, const int ob)
9550 {
9551     PERL_ARGS_ASSERT_SV_REF;
9552
9553     if (!dst)
9554         dst = sv_newmortal();
9555
9556     if (ob && SvOBJECT(sv)) {
9557         HvNAME_get(SvSTASH(sv))
9558                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
9559                     : sv_setpvn(dst, "__ANON__", 8);
9560     }
9561     else {
9562         const char * reftype = sv_reftype(sv, 0);
9563         sv_setpv(dst, reftype);
9564     }
9565     return dst;
9566 }
9567
9568 /*
9569 =for apidoc sv_isobject
9570
9571 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9572 object.  If the SV is not an RV, or if the object is not blessed, then this
9573 will return false.
9574
9575 =cut
9576 */
9577
9578 int
9579 Perl_sv_isobject(pTHX_ SV *sv)
9580 {
9581     if (!sv)
9582         return 0;
9583     SvGETMAGIC(sv);
9584     if (!SvROK(sv))
9585         return 0;
9586     sv = SvRV(sv);
9587     if (!SvOBJECT(sv))
9588         return 0;
9589     return 1;
9590 }
9591
9592 /*
9593 =for apidoc sv_isa
9594
9595 Returns a boolean indicating whether the SV is blessed into the specified
9596 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9597 an inheritance relationship.
9598
9599 =cut
9600 */
9601
9602 int
9603 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
9604 {
9605     const char *hvname;
9606
9607     PERL_ARGS_ASSERT_SV_ISA;
9608
9609     if (!sv)
9610         return 0;
9611     SvGETMAGIC(sv);
9612     if (!SvROK(sv))
9613         return 0;
9614     sv = SvRV(sv);
9615     if (!SvOBJECT(sv))
9616         return 0;
9617     hvname = HvNAME_get(SvSTASH(sv));
9618     if (!hvname)
9619         return 0;
9620
9621     return strEQ(hvname, name);
9622 }
9623
9624 /*
9625 =for apidoc newSVrv
9626
9627 Creates a new SV for the existing RV, C<rv>, to point to.  If C<rv> is not an
9628 RV then it will be upgraded to one.  If C<classname> is non-null then the new
9629 SV will be blessed in the specified package.  The new SV is returned and its
9630 reference count is 1.  The reference count 1 is owned by C<rv>.
9631
9632 =cut
9633 */
9634
9635 SV*
9636 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
9637 {
9638     dVAR;
9639     SV *sv;
9640
9641     PERL_ARGS_ASSERT_NEWSVRV;
9642
9643     new_SV(sv);
9644
9645     SV_CHECK_THINKFIRST_COW_DROP(rv);
9646
9647     if (SvTYPE(rv) >= SVt_PVMG) {
9648         const U32 refcnt = SvREFCNT(rv);
9649         SvREFCNT(rv) = 0;
9650         sv_clear(rv);
9651         SvFLAGS(rv) = 0;
9652         SvREFCNT(rv) = refcnt;
9653
9654         sv_upgrade(rv, SVt_IV);
9655     } else if (SvROK(rv)) {
9656         SvREFCNT_dec(SvRV(rv));
9657     } else {
9658         prepare_SV_for_RV(rv);
9659     }
9660
9661     SvOK_off(rv);
9662     SvRV_set(rv, sv);
9663     SvROK_on(rv);
9664
9665     if (classname) {
9666         HV* const stash = gv_stashpv(classname, GV_ADD);
9667         (void)sv_bless(rv, stash);
9668     }
9669     return sv;
9670 }
9671
9672 SV *
9673 Perl_newSVavdefelem(pTHX_ AV *av, SSize_t ix, bool extendible)
9674 {
9675     SV * const lv = newSV_type(SVt_PVLV);
9676     PERL_ARGS_ASSERT_NEWSVAVDEFELEM;
9677     LvTYPE(lv) = 'y';
9678     sv_magic(lv, NULL, PERL_MAGIC_defelem, NULL, 0);
9679     LvTARG(lv) = SvREFCNT_inc_simple_NN(av);
9680     LvSTARGOFF(lv) = ix;
9681     LvTARGLEN(lv) = extendible ? 1 : (STRLEN)UV_MAX;
9682     return lv;
9683 }
9684
9685 /*
9686 =for apidoc sv_setref_pv
9687
9688 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
9689 argument will be upgraded to an RV.  That RV will be modified to point to
9690 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
9691 into the SV.  The C<classname> argument indicates the package for the
9692 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9693 will have a reference count of 1, and the RV will be returned.
9694
9695 Do not use with other Perl types such as HV, AV, SV, CV, because those
9696 objects will become corrupted by the pointer copy process.
9697
9698 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
9699
9700 =cut
9701 */
9702
9703 SV*
9704 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
9705 {
9706     dVAR;
9707
9708     PERL_ARGS_ASSERT_SV_SETREF_PV;
9709
9710     if (!pv) {
9711         sv_setsv(rv, &PL_sv_undef);
9712         SvSETMAGIC(rv);
9713     }
9714     else
9715         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
9716     return rv;
9717 }
9718
9719 /*
9720 =for apidoc sv_setref_iv
9721
9722 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
9723 argument will be upgraded to an RV.  That RV will be modified to point to
9724 the new SV.  The C<classname> argument indicates the package for the
9725 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9726 will have a reference count of 1, and the RV will be returned.
9727
9728 =cut
9729 */
9730
9731 SV*
9732 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
9733 {
9734     PERL_ARGS_ASSERT_SV_SETREF_IV;
9735
9736     sv_setiv(newSVrv(rv,classname), iv);
9737     return rv;
9738 }
9739
9740 /*
9741 =for apidoc sv_setref_uv
9742
9743 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
9744 argument will be upgraded to an RV.  That RV will be modified to point to
9745 the new SV.  The C<classname> argument indicates the package for the
9746 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9747 will have a reference count of 1, and the RV will be returned.
9748
9749 =cut
9750 */
9751
9752 SV*
9753 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
9754 {
9755     PERL_ARGS_ASSERT_SV_SETREF_UV;
9756
9757     sv_setuv(newSVrv(rv,classname), uv);
9758     return rv;
9759 }
9760
9761 /*
9762 =for apidoc sv_setref_nv
9763
9764 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
9765 argument will be upgraded to an RV.  That RV will be modified to point to
9766 the new SV.  The C<classname> argument indicates the package for the
9767 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9768 will have a reference count of 1, and the RV will be returned.
9769
9770 =cut
9771 */
9772
9773 SV*
9774 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
9775 {
9776     PERL_ARGS_ASSERT_SV_SETREF_NV;
9777
9778     sv_setnv(newSVrv(rv,classname), nv);
9779     return rv;
9780 }
9781
9782 /*
9783 =for apidoc sv_setref_pvn
9784
9785 Copies a string into a new SV, optionally blessing the SV.  The length of the
9786 string must be specified with C<n>.  The C<rv> argument will be upgraded to
9787 an RV.  That RV will be modified to point to the new SV.  The C<classname>
9788 argument indicates the package for the blessing.  Set C<classname> to
9789 C<NULL> to avoid the blessing.  The new SV will have a reference count
9790 of 1, and the RV will be returned.
9791
9792 Note that C<sv_setref_pv> copies the pointer while this copies the string.
9793
9794 =cut
9795 */
9796
9797 SV*
9798 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
9799                    const char *const pv, const STRLEN n)
9800 {
9801     PERL_ARGS_ASSERT_SV_SETREF_PVN;
9802
9803     sv_setpvn(newSVrv(rv,classname), pv, n);
9804     return rv;
9805 }
9806
9807 /*
9808 =for apidoc sv_bless
9809
9810 Blesses an SV into a specified package.  The SV must be an RV.  The package
9811 must be designated by its stash (see C<gv_stashpv()>).  The reference count
9812 of the SV is unaffected.
9813
9814 =cut
9815 */
9816
9817 SV*
9818 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
9819 {
9820     dVAR;
9821     SV *tmpRef;
9822     HV *oldstash = NULL;
9823
9824     PERL_ARGS_ASSERT_SV_BLESS;
9825
9826     SvGETMAGIC(sv);
9827     if (!SvROK(sv))
9828         Perl_croak(aTHX_ "Can't bless non-reference value");
9829     tmpRef = SvRV(sv);
9830     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
9831         if (SvREADONLY(tmpRef))
9832             Perl_croak_no_modify();
9833         if (SvOBJECT(tmpRef)) {
9834             oldstash = SvSTASH(tmpRef);
9835         }
9836     }
9837     SvOBJECT_on(tmpRef);
9838     SvUPGRADE(tmpRef, SVt_PVMG);
9839     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
9840     SvREFCNT_dec(oldstash);
9841
9842     if(SvSMAGICAL(tmpRef))
9843         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
9844             mg_set(tmpRef);
9845
9846
9847
9848     return sv;
9849 }
9850
9851 /* Downgrades a PVGV to a PVMG. If it's actually a PVLV, we leave the type
9852  * as it is after unglobbing it.
9853  */
9854
9855 PERL_STATIC_INLINE void
9856 S_sv_unglob(pTHX_ SV *const sv, U32 flags)
9857 {
9858     dVAR;
9859     void *xpvmg;
9860     HV *stash;
9861     SV * const temp = flags & SV_COW_DROP_PV ? NULL : sv_newmortal();
9862
9863     PERL_ARGS_ASSERT_SV_UNGLOB;
9864
9865     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
9866     SvFAKE_off(sv);
9867     if (!(flags & SV_COW_DROP_PV))
9868         gv_efullname3(temp, MUTABLE_GV(sv), "*");
9869
9870     if (GvGP(sv)) {
9871         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
9872            && HvNAME_get(stash))
9873             mro_method_changed_in(stash);
9874         gp_free(MUTABLE_GV(sv));
9875     }
9876     if (GvSTASH(sv)) {
9877         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
9878         GvSTASH(sv) = NULL;
9879     }
9880     GvMULTI_off(sv);
9881     if (GvNAME_HEK(sv)) {
9882         unshare_hek(GvNAME_HEK(sv));
9883     }
9884     isGV_with_GP_off(sv);
9885
9886     if(SvTYPE(sv) == SVt_PVGV) {
9887         /* need to keep SvANY(sv) in the right arena */
9888         xpvmg = new_XPVMG();
9889         StructCopy(SvANY(sv), xpvmg, XPVMG);
9890         del_XPVGV(SvANY(sv));
9891         SvANY(sv) = xpvmg;
9892
9893         SvFLAGS(sv) &= ~SVTYPEMASK;
9894         SvFLAGS(sv) |= SVt_PVMG;
9895     }
9896
9897     /* Intentionally not calling any local SET magic, as this isn't so much a
9898        set operation as merely an internal storage change.  */
9899     if (flags & SV_COW_DROP_PV) SvOK_off(sv);
9900     else sv_setsv_flags(sv, temp, 0);
9901
9902     if ((const GV *)sv == PL_last_in_gv)
9903         PL_last_in_gv = NULL;
9904     else if ((const GV *)sv == PL_statgv)
9905         PL_statgv = NULL;
9906 }
9907
9908 /*
9909 =for apidoc sv_unref_flags
9910
9911 Unsets the RV status of the SV, and decrements the reference count of
9912 whatever was being referenced by the RV.  This can almost be thought of
9913 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9914 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
9915 (otherwise the decrementing is conditional on the reference count being
9916 different from one or the reference being a readonly SV).
9917 See C<SvROK_off>.
9918
9919 =cut
9920 */
9921
9922 void
9923 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
9924 {
9925     SV* const target = SvRV(ref);
9926
9927     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
9928
9929     if (SvWEAKREF(ref)) {
9930         sv_del_backref(target, ref);
9931         SvWEAKREF_off(ref);
9932         SvRV_set(ref, NULL);
9933         return;
9934     }
9935     SvRV_set(ref, NULL);
9936     SvROK_off(ref);
9937     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
9938        assigned to as BEGIN {$a = \"Foo"} will fail.  */
9939     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
9940         SvREFCNT_dec_NN(target);
9941     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
9942         sv_2mortal(target);     /* Schedule for freeing later */
9943 }
9944
9945 /*
9946 =for apidoc sv_untaint
9947
9948 Untaint an SV.  Use C<SvTAINTED_off> instead.
9949
9950 =cut
9951 */
9952
9953 void
9954 Perl_sv_untaint(pTHX_ SV *const sv)
9955 {
9956     PERL_ARGS_ASSERT_SV_UNTAINT;
9957
9958     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9959         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9960         if (mg)
9961             mg->mg_len &= ~1;
9962     }
9963 }
9964
9965 /*
9966 =for apidoc sv_tainted
9967
9968 Test an SV for taintedness.  Use C<SvTAINTED> instead.
9969
9970 =cut
9971 */
9972
9973 bool
9974 Perl_sv_tainted(pTHX_ SV *const sv)
9975 {
9976     PERL_ARGS_ASSERT_SV_TAINTED;
9977
9978     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9979         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9980         if (mg && (mg->mg_len & 1) )
9981             return TRUE;
9982     }
9983     return FALSE;
9984 }
9985
9986 /*
9987 =for apidoc sv_setpviv
9988
9989 Copies an integer into the given SV, also updating its string value.
9990 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
9991
9992 =cut
9993 */
9994
9995 void
9996 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
9997 {
9998     char buf[TYPE_CHARS(UV)];
9999     char *ebuf;
10000     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
10001
10002     PERL_ARGS_ASSERT_SV_SETPVIV;
10003
10004     sv_setpvn(sv, ptr, ebuf - ptr);
10005 }
10006
10007 /*
10008 =for apidoc sv_setpviv_mg
10009
10010 Like C<sv_setpviv>, but also handles 'set' magic.
10011
10012 =cut
10013 */
10014
10015 void
10016 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
10017 {
10018     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
10019
10020     sv_setpviv(sv, iv);
10021     SvSETMAGIC(sv);
10022 }
10023
10024 #if defined(PERL_IMPLICIT_CONTEXT)
10025
10026 /* pTHX_ magic can't cope with varargs, so this is a no-context
10027  * version of the main function, (which may itself be aliased to us).
10028  * Don't access this version directly.
10029  */
10030
10031 void
10032 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
10033 {
10034     dTHX;
10035     va_list args;
10036
10037     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
10038
10039     va_start(args, pat);
10040     sv_vsetpvf(sv, pat, &args);
10041     va_end(args);
10042 }
10043
10044 /* pTHX_ magic can't cope with varargs, so this is a no-context
10045  * version of the main function, (which may itself be aliased to us).
10046  * Don't access this version directly.
10047  */
10048
10049 void
10050 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10051 {
10052     dTHX;
10053     va_list args;
10054
10055     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
10056
10057     va_start(args, pat);
10058     sv_vsetpvf_mg(sv, pat, &args);
10059     va_end(args);
10060 }
10061 #endif
10062
10063 /*
10064 =for apidoc sv_setpvf
10065
10066 Works like C<sv_catpvf> but copies the text into the SV instead of
10067 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
10068
10069 =cut
10070 */
10071
10072 void
10073 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
10074 {
10075     va_list args;
10076
10077     PERL_ARGS_ASSERT_SV_SETPVF;
10078
10079     va_start(args, pat);
10080     sv_vsetpvf(sv, pat, &args);
10081     va_end(args);
10082 }
10083
10084 /*
10085 =for apidoc sv_vsetpvf
10086
10087 Works like C<sv_vcatpvf> but copies the text into the SV instead of
10088 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
10089
10090 Usually used via its frontend C<sv_setpvf>.
10091
10092 =cut
10093 */
10094
10095 void
10096 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10097 {
10098     PERL_ARGS_ASSERT_SV_VSETPVF;
10099
10100     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10101 }
10102
10103 /*
10104 =for apidoc sv_setpvf_mg
10105
10106 Like C<sv_setpvf>, but also handles 'set' magic.
10107
10108 =cut
10109 */
10110
10111 void
10112 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10113 {
10114     va_list args;
10115
10116     PERL_ARGS_ASSERT_SV_SETPVF_MG;
10117
10118     va_start(args, pat);
10119     sv_vsetpvf_mg(sv, pat, &args);
10120     va_end(args);
10121 }
10122
10123 /*
10124 =for apidoc sv_vsetpvf_mg
10125
10126 Like C<sv_vsetpvf>, but also handles 'set' magic.
10127
10128 Usually used via its frontend C<sv_setpvf_mg>.
10129
10130 =cut
10131 */
10132
10133 void
10134 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10135 {
10136     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
10137
10138     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10139     SvSETMAGIC(sv);
10140 }
10141
10142 #if defined(PERL_IMPLICIT_CONTEXT)
10143
10144 /* pTHX_ magic can't cope with varargs, so this is a no-context
10145  * version of the main function, (which may itself be aliased to us).
10146  * Don't access this version directly.
10147  */
10148
10149 void
10150 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
10151 {
10152     dTHX;
10153     va_list args;
10154
10155     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
10156
10157     va_start(args, pat);
10158     sv_vcatpvf(sv, pat, &args);
10159     va_end(args);
10160 }
10161
10162 /* pTHX_ magic can't cope with varargs, so this is a no-context
10163  * version of the main function, (which may itself be aliased to us).
10164  * Don't access this version directly.
10165  */
10166
10167 void
10168 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
10169 {
10170     dTHX;
10171     va_list args;
10172
10173     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
10174
10175     va_start(args, pat);
10176     sv_vcatpvf_mg(sv, pat, &args);
10177     va_end(args);
10178 }
10179 #endif
10180
10181 /*
10182 =for apidoc sv_catpvf
10183
10184 Processes its arguments like C<sprintf> and appends the formatted
10185 output to an SV.  If the appended data contains "wide" characters
10186 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
10187 and characters >255 formatted with %c), the original SV might get
10188 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
10189 C<sv_catpvf_mg>.  If the original SV was UTF-8, the pattern should be
10190 valid UTF-8; if the original SV was bytes, the pattern should be too.
10191
10192 =cut */
10193
10194 void
10195 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
10196 {
10197     va_list args;
10198
10199     PERL_ARGS_ASSERT_SV_CATPVF;
10200
10201     va_start(args, pat);
10202     sv_vcatpvf(sv, pat, &args);
10203     va_end(args);
10204 }
10205
10206 /*
10207 =for apidoc sv_vcatpvf
10208
10209 Processes its arguments like C<vsprintf> and appends the formatted output
10210 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
10211
10212 Usually used via its frontend C<sv_catpvf>.
10213
10214 =cut
10215 */
10216
10217 void
10218 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10219 {
10220     PERL_ARGS_ASSERT_SV_VCATPVF;
10221
10222     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10223 }
10224
10225 /*
10226 =for apidoc sv_catpvf_mg
10227
10228 Like C<sv_catpvf>, but also handles 'set' magic.
10229
10230 =cut
10231 */
10232
10233 void
10234 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
10235 {
10236     va_list args;
10237
10238     PERL_ARGS_ASSERT_SV_CATPVF_MG;
10239
10240     va_start(args, pat);
10241     sv_vcatpvf_mg(sv, pat, &args);
10242     va_end(args);
10243 }
10244
10245 /*
10246 =for apidoc sv_vcatpvf_mg
10247
10248 Like C<sv_vcatpvf>, but also handles 'set' magic.
10249
10250 Usually used via its frontend C<sv_catpvf_mg>.
10251
10252 =cut
10253 */
10254
10255 void
10256 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
10257 {
10258     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
10259
10260     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
10261     SvSETMAGIC(sv);
10262 }
10263
10264 /*
10265 =for apidoc sv_vsetpvfn
10266
10267 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
10268 appending it.
10269
10270 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
10271
10272 =cut
10273 */
10274
10275 void
10276 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10277                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10278 {
10279     PERL_ARGS_ASSERT_SV_VSETPVFN;
10280
10281     sv_setpvs(sv, "");
10282     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, 0);
10283 }
10284
10285
10286 /*
10287  * Warn of missing argument to sprintf, and then return a defined value
10288  * to avoid inappropriate "use of uninit" warnings [perl #71000].
10289  */
10290 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
10291 STATIC SV*
10292 S_vcatpvfn_missing_argument(pTHX) {
10293     if (ckWARN(WARN_MISSING)) {
10294         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
10295                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
10296     }
10297     return &PL_sv_no;
10298 }
10299
10300
10301 STATIC I32
10302 S_expect_number(pTHX_ char **const pattern)
10303 {
10304     dVAR;
10305     I32 var = 0;
10306
10307     PERL_ARGS_ASSERT_EXPECT_NUMBER;
10308
10309     switch (**pattern) {
10310     case '1': case '2': case '3':
10311     case '4': case '5': case '6':
10312     case '7': case '8': case '9':
10313         var = *(*pattern)++ - '0';
10314         while (isDIGIT(**pattern)) {
10315             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
10316             if (tmp < var)
10317                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
10318             var = tmp;
10319         }
10320     }
10321     return var;
10322 }
10323
10324 STATIC char *
10325 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
10326 {
10327     const int neg = nv < 0;
10328     UV uv;
10329
10330     PERL_ARGS_ASSERT_F0CONVERT;
10331
10332     if (neg)
10333         nv = -nv;
10334     if (nv < UV_MAX) {
10335         char *p = endbuf;
10336         nv += 0.5;
10337         uv = (UV)nv;
10338         if (uv & 1 && uv == nv)
10339             uv--;                       /* Round to even */
10340         do {
10341             const unsigned dig = uv % 10;
10342             *--p = '0' + dig;
10343         } while (uv /= 10);
10344         if (neg)
10345             *--p = '-';
10346         *len = endbuf - p;
10347         return p;
10348     }
10349     return NULL;
10350 }
10351
10352
10353 /*
10354 =for apidoc sv_vcatpvfn
10355
10356 =for apidoc sv_vcatpvfn_flags
10357
10358 Processes its arguments like C<vsprintf> and appends the formatted output
10359 to an SV.  Uses an array of SVs if the C style variable argument list is
10360 missing (NULL).  When running with taint checks enabled, indicates via
10361 C<maybe_tainted> if results are untrustworthy (often due to the use of
10362 locales).
10363
10364 If called as C<sv_vcatpvfn> or flags include C<SV_GMAGIC>, calls get magic.
10365
10366 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
10367
10368 =cut
10369 */
10370
10371 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
10372                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
10373                         vec_utf8 = DO_UTF8(vecsv);
10374
10375 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
10376
10377 void
10378 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10379                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10380 {
10381     PERL_ARGS_ASSERT_SV_VCATPVFN;
10382
10383     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, SV_GMAGIC|SV_SMAGIC);
10384 }
10385
10386 void
10387 Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10388                        va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted,
10389                        const U32 flags)
10390 {
10391     dVAR;
10392     char *p;
10393     char *q;
10394     const char *patend;
10395     STRLEN origlen;
10396     I32 svix = 0;
10397     static const char nullstr[] = "(null)";
10398     SV *argsv = NULL;
10399     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
10400     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
10401     SV *nsv = NULL;
10402     /* Times 4: a decimal digit takes more than 3 binary digits.
10403      * NV_DIG: mantissa takes than many decimal digits.
10404      * Plus 32: Playing safe. */
10405     char ebuf[IV_DIG * 4 + NV_DIG + 32];
10406     /* large enough for "%#.#f" --chip */
10407     /* what about long double NVs? --jhi */
10408 #ifdef USE_LOCALE_NUMERIC
10409     SV* oldlocale = NULL;
10410 #endif
10411
10412     PERL_ARGS_ASSERT_SV_VCATPVFN_FLAGS;
10413     PERL_UNUSED_ARG(maybe_tainted);
10414
10415     if (flags & SV_GMAGIC)
10416         SvGETMAGIC(sv);
10417
10418     /* no matter what, this is a string now */
10419     (void)SvPV_force_nomg(sv, origlen);
10420
10421     /* special-case "", "%s", and "%-p" (SVf - see below) */
10422     if (patlen == 0)
10423         return;
10424     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
10425         if (args) {
10426             const char * const s = va_arg(*args, char*);
10427             sv_catpv_nomg(sv, s ? s : nullstr);
10428         }
10429         else if (svix < svmax) {
10430             /* we want get magic on the source but not the target. sv_catsv can't do that, though */
10431             SvGETMAGIC(*svargs);
10432             sv_catsv_nomg(sv, *svargs);
10433         }
10434         else
10435             S_vcatpvfn_missing_argument(aTHX);
10436         return;
10437     }
10438     if (args && patlen == 3 && pat[0] == '%' &&
10439                 pat[1] == '-' && pat[2] == 'p') {
10440         argsv = MUTABLE_SV(va_arg(*args, void*));
10441         sv_catsv_nomg(sv, argsv);
10442         return;
10443     }
10444
10445 #ifndef USE_LONG_DOUBLE
10446     /* special-case "%.<number>[gf]" */
10447     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
10448          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
10449         unsigned digits = 0;
10450         const char *pp;
10451
10452         pp = pat + 2;
10453         while (*pp >= '0' && *pp <= '9')
10454             digits = 10 * digits + (*pp++ - '0');
10455         if (pp - pat == (int)patlen - 1 && svix < svmax) {
10456             const NV nv = SvNV(*svargs);
10457             if (*pp == 'g') {
10458                 /* Add check for digits != 0 because it seems that some
10459                    gconverts are buggy in this case, and we don't yet have
10460                    a Configure test for this.  */
10461                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
10462                      /* 0, point, slack */
10463                     Gconvert(nv, (int)digits, 0, ebuf);
10464                     sv_catpv_nomg(sv, ebuf);
10465                     if (*ebuf)  /* May return an empty string for digits==0 */
10466                         return;
10467                 }
10468             } else if (!digits) {
10469                 STRLEN l;
10470
10471                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
10472                     sv_catpvn_nomg(sv, p, l);
10473                     return;
10474                 }
10475             }
10476         }
10477     }
10478 #endif /* !USE_LONG_DOUBLE */
10479
10480     if (!args && svix < svmax && DO_UTF8(*svargs))
10481         has_utf8 = TRUE;
10482
10483     patend = (char*)pat + patlen;
10484     for (p = (char*)pat; p < patend; p = q) {
10485         bool alt = FALSE;
10486         bool left = FALSE;
10487         bool vectorize = FALSE;
10488         bool vectorarg = FALSE;
10489         bool vec_utf8 = FALSE;
10490         char fill = ' ';
10491         char plus = 0;
10492         char intsize = 0;
10493         STRLEN width = 0;
10494         STRLEN zeros = 0;
10495         bool has_precis = FALSE;
10496         STRLEN precis = 0;
10497         const I32 osvix = svix;
10498         bool is_utf8 = FALSE;  /* is this item utf8?   */
10499 #ifdef HAS_LDBL_SPRINTF_BUG
10500         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10501            with sfio - Allen <allens@cpan.org> */
10502         bool fix_ldbl_sprintf_bug = FALSE;
10503 #endif
10504
10505         char esignbuf[4];
10506         U8 utf8buf[UTF8_MAXBYTES+1];
10507         STRLEN esignlen = 0;
10508
10509         const char *eptr = NULL;
10510         const char *fmtstart;
10511         STRLEN elen = 0;
10512         SV *vecsv = NULL;
10513         const U8 *vecstr = NULL;
10514         STRLEN veclen = 0;
10515         char c = 0;
10516         int i;
10517         unsigned base = 0;
10518         IV iv = 0;
10519         UV uv = 0;
10520         /* we need a long double target in case HAS_LONG_DOUBLE but
10521            not USE_LONG_DOUBLE
10522         */
10523 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
10524         long double nv;
10525 #else
10526         NV nv;
10527 #endif
10528         STRLEN have;
10529         STRLEN need;
10530         STRLEN gap;
10531         const char *dotstr = ".";
10532         STRLEN dotstrlen = 1;
10533         I32 efix = 0; /* explicit format parameter index */
10534         I32 ewix = 0; /* explicit width index */
10535         I32 epix = 0; /* explicit precision index */
10536         I32 evix = 0; /* explicit vector index */
10537         bool asterisk = FALSE;
10538
10539         /* echo everything up to the next format specification */
10540         for (q = p; q < patend && *q != '%'; ++q) ;
10541         if (q > p) {
10542             if (has_utf8 && !pat_utf8)
10543                 sv_catpvn_nomg_utf8_upgrade(sv, p, q - p, nsv);
10544             else
10545                 sv_catpvn_nomg(sv, p, q - p);
10546             p = q;
10547         }
10548         if (q++ >= patend)
10549             break;
10550
10551         fmtstart = q;
10552
10553 /*
10554     We allow format specification elements in this order:
10555         \d+\$              explicit format parameter index
10556         [-+ 0#]+           flags
10557         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
10558         0                  flag (as above): repeated to allow "v02"     
10559         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
10560         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
10561         [hlqLV]            size
10562     [%bcdefginopsuxDFOUX] format (mandatory)
10563 */
10564
10565         if (args) {
10566 /*  
10567         As of perl5.9.3, printf format checking is on by default.
10568         Internally, perl uses %p formats to provide an escape to
10569         some extended formatting.  This block deals with those
10570         extensions: if it does not match, (char*)q is reset and
10571         the normal format processing code is used.
10572
10573         Currently defined extensions are:
10574                 %p              include pointer address (standard)      
10575                 %-p     (SVf)   include an SV (previously %_)
10576                 %-<num>p        include an SV with precision <num>      
10577                 %2p             include a HEK
10578                 %3p             include a HEK with precision of 256
10579                 %4p             char* preceded by utf8 flag and length
10580                 %<num>p         (where num is 1 or > 4) reserved for future
10581                                 extensions
10582
10583         Robin Barker 2005-07-14 (but modified since)
10584
10585                 %1p     (VDf)   removed.  RMB 2007-10-19
10586 */
10587             char* r = q; 
10588             bool sv = FALSE;    
10589             STRLEN n = 0;
10590             if (*q == '-')
10591                 sv = *q++;
10592             else if (strnEQ(q, UTF8f, sizeof(UTF8f)-1)) { /* UTF8f */
10593                 /* The argument has already gone through cBOOL, so the cast
10594                    is safe. */
10595                 is_utf8 = (bool)va_arg(*args, int);
10596                 elen = va_arg(*args, UV);
10597                 eptr = va_arg(*args, char *);
10598                 q += sizeof(UTF8f)-1;
10599                 goto string;
10600             }
10601             n = expect_number(&q);
10602             if (*q++ == 'p') {
10603                 if (sv) {                       /* SVf */
10604                     if (n) {
10605                         precis = n;
10606                         has_precis = TRUE;
10607                     }
10608                     argsv = MUTABLE_SV(va_arg(*args, void*));
10609                     eptr = SvPV_const(argsv, elen);
10610                     if (DO_UTF8(argsv))
10611                         is_utf8 = TRUE;
10612                     goto string;
10613                 }
10614                 else if (n==2 || n==3) {        /* HEKf */
10615                     HEK * const hek = va_arg(*args, HEK *);
10616                     eptr = HEK_KEY(hek);
10617                     elen = HEK_LEN(hek);
10618                     if (HEK_UTF8(hek)) is_utf8 = TRUE;
10619                     if (n==3) precis = 256, has_precis = TRUE;
10620                     goto string;
10621                 }
10622                 else if (n) {
10623                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
10624                                      "internal %%<num>p might conflict with future printf extensions");
10625                 }
10626             }
10627             q = r; 
10628         }
10629
10630         if ( (width = expect_number(&q)) ) {
10631             if (*q == '$') {
10632                 ++q;
10633                 efix = width;
10634             } else {
10635                 goto gotwidth;
10636             }
10637         }
10638
10639         /* FLAGS */
10640
10641         while (*q) {
10642             switch (*q) {
10643             case ' ':
10644             case '+':
10645                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
10646                     q++;
10647                 else
10648                     plus = *q++;
10649                 continue;
10650
10651             case '-':
10652                 left = TRUE;
10653                 q++;
10654                 continue;
10655
10656             case '0':
10657                 fill = *q++;
10658                 continue;
10659
10660             case '#':
10661                 alt = TRUE;
10662                 q++;
10663                 continue;
10664
10665             default:
10666                 break;
10667             }
10668             break;
10669         }
10670
10671       tryasterisk:
10672         if (*q == '*') {
10673             q++;
10674             if ( (ewix = expect_number(&q)) )
10675                 if (*q++ != '$')
10676                     goto unknown;
10677             asterisk = TRUE;
10678         }
10679         if (*q == 'v') {
10680             q++;
10681             if (vectorize)
10682                 goto unknown;
10683             if ((vectorarg = asterisk)) {
10684                 evix = ewix;
10685                 ewix = 0;
10686                 asterisk = FALSE;
10687             }
10688             vectorize = TRUE;
10689             goto tryasterisk;
10690         }
10691
10692         if (!asterisk)
10693         {
10694             if( *q == '0' )
10695                 fill = *q++;
10696             width = expect_number(&q);
10697         }
10698
10699         if (vectorize && vectorarg) {
10700             /* vectorizing, but not with the default "." */
10701             if (args)
10702                 vecsv = va_arg(*args, SV*);
10703             else if (evix) {
10704                 vecsv = (evix > 0 && evix <= svmax)
10705                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
10706             } else {
10707                 vecsv = svix < svmax
10708                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10709             }
10710             dotstr = SvPV_const(vecsv, dotstrlen);
10711             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
10712                bad with tied or overloaded values that return UTF8.  */
10713             if (DO_UTF8(vecsv))
10714                 is_utf8 = TRUE;
10715             else if (has_utf8) {
10716                 vecsv = sv_mortalcopy(vecsv);
10717                 sv_utf8_upgrade(vecsv);
10718                 dotstr = SvPV_const(vecsv, dotstrlen);
10719                 is_utf8 = TRUE;
10720             }               
10721         }
10722
10723         if (asterisk) {
10724             if (args)
10725                 i = va_arg(*args, int);
10726             else
10727                 i = (ewix ? ewix <= svmax : svix < svmax) ?
10728                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10729             left |= (i < 0);
10730             width = (i < 0) ? -i : i;
10731         }
10732       gotwidth:
10733
10734         /* PRECISION */
10735
10736         if (*q == '.') {
10737             q++;
10738             if (*q == '*') {
10739                 q++;
10740                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
10741                     goto unknown;
10742                 /* XXX: todo, support specified precision parameter */
10743                 if (epix)
10744                     goto unknown;
10745                 if (args)
10746                     i = va_arg(*args, int);
10747                 else
10748                     i = (ewix ? ewix <= svmax : svix < svmax)
10749                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10750                 precis = i;
10751                 has_precis = !(i < 0);
10752             }
10753             else {
10754                 precis = 0;
10755                 while (isDIGIT(*q))
10756                     precis = precis * 10 + (*q++ - '0');
10757                 has_precis = TRUE;
10758             }
10759         }
10760
10761         if (vectorize) {
10762             if (args) {
10763                 VECTORIZE_ARGS
10764             }
10765             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
10766                 vecsv = svargs[efix ? efix-1 : svix++];
10767                 vecstr = (U8*)SvPV_const(vecsv,veclen);
10768                 vec_utf8 = DO_UTF8(vecsv);
10769
10770                 /* if this is a version object, we need to convert
10771                  * back into v-string notation and then let the
10772                  * vectorize happen normally
10773                  */
10774                 if (sv_isobject(vecsv) && sv_derived_from(vecsv, "version")) {
10775                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
10776                         Perl_ck_warner_d(aTHX_ packWARN(WARN_PRINTF),
10777                         "vector argument not supported with alpha versions");
10778                         goto vdblank;
10779                     }
10780                     vecsv = sv_newmortal();
10781                     scan_vstring((char *)vecstr, (char *)vecstr + veclen,
10782                                  vecsv);
10783                     vecstr = (U8*)SvPV_const(vecsv, veclen);
10784                     vec_utf8 = DO_UTF8(vecsv);
10785                 }
10786             }
10787             else {
10788               vdblank:
10789                 vecstr = (U8*)"";
10790                 veclen = 0;
10791             }
10792         }
10793
10794         /* SIZE */
10795
10796         switch (*q) {
10797 #ifdef WIN32
10798         case 'I':                       /* Ix, I32x, and I64x */
10799 #  ifdef USE_64_BIT_INT
10800             if (q[1] == '6' && q[2] == '4') {
10801                 q += 3;
10802                 intsize = 'q';
10803                 break;
10804             }
10805 #  endif
10806             if (q[1] == '3' && q[2] == '2') {
10807                 q += 3;
10808                 break;
10809             }
10810 #  ifdef USE_64_BIT_INT
10811             intsize = 'q';
10812 #  endif
10813             q++;
10814             break;
10815 #endif
10816 #if IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)
10817         case 'L':                       /* Ld */
10818             /*FALLTHROUGH*/
10819 #if IVSIZE >= 8
10820         case 'q':                       /* qd */
10821 #endif
10822             intsize = 'q';
10823             q++;
10824             break;
10825 #endif
10826         case 'l':
10827             ++q;
10828 #if IVSIZE >= 8 || defined(HAS_LONG_DOUBLE)
10829             if (*q == 'l') {    /* lld, llf */
10830                 intsize = 'q';
10831                 ++q;
10832             }
10833             else
10834 #endif
10835                 intsize = 'l';
10836             break;
10837         case 'h':
10838             if (*++q == 'h') {  /* hhd, hhu */
10839                 intsize = 'c';
10840                 ++q;
10841             }
10842             else
10843                 intsize = 'h';
10844             break;
10845         case 'V':
10846         case 'z':
10847         case 't':
10848 #if HAS_C99
10849         case 'j':
10850 #endif
10851             intsize = *q++;
10852             break;
10853         }
10854
10855         /* CONVERSION */
10856
10857         if (*q == '%') {
10858             eptr = q++;
10859             elen = 1;
10860             if (vectorize) {
10861                 c = '%';
10862                 goto unknown;
10863             }
10864             goto string;
10865         }
10866
10867         if (!vectorize && !args) {
10868             if (efix) {
10869                 const I32 i = efix-1;
10870                 argsv = (i >= 0 && i < svmax)
10871                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
10872             } else {
10873                 argsv = (svix >= 0 && svix < svmax)
10874                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10875             }
10876         }
10877
10878         switch (c = *q++) {
10879
10880             /* STRINGS */
10881
10882         case 'c':
10883             if (vectorize)
10884                 goto unknown;
10885             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
10886             if ((uv > 255 ||
10887                  (!UVCHR_IS_INVARIANT(uv) && SvUTF8(sv)))
10888                 && !IN_BYTES) {
10889                 eptr = (char*)utf8buf;
10890                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
10891                 is_utf8 = TRUE;
10892             }
10893             else {
10894                 c = (char)uv;
10895                 eptr = &c;
10896                 elen = 1;
10897             }
10898             goto string;
10899
10900         case 's':
10901             if (vectorize)
10902                 goto unknown;
10903             if (args) {
10904                 eptr = va_arg(*args, char*);
10905                 if (eptr)
10906                     elen = strlen(eptr);
10907                 else {
10908                     eptr = (char *)nullstr;
10909                     elen = sizeof nullstr - 1;
10910                 }
10911             }
10912             else {
10913                 eptr = SvPV_const(argsv, elen);
10914                 if (DO_UTF8(argsv)) {
10915                     STRLEN old_precis = precis;
10916                     if (has_precis && precis < elen) {
10917                         STRLEN ulen = sv_or_pv_len_utf8(argsv, eptr, elen);
10918                         STRLEN p = precis > ulen ? ulen : precis;
10919                         precis = sv_or_pv_pos_u2b(argsv, eptr, p, 0);
10920                                                         /* sticks at end */
10921                     }
10922                     if (width) { /* fudge width (can't fudge elen) */
10923                         if (has_precis && precis < elen)
10924                             width += precis - old_precis;
10925                         else
10926                             width +=
10927                                 elen - sv_or_pv_len_utf8(argsv,eptr,elen);
10928                     }
10929                     is_utf8 = TRUE;
10930                 }
10931             }
10932
10933         string:
10934             if (has_precis && precis < elen)
10935                 elen = precis;
10936             break;
10937
10938             /* INTEGERS */
10939
10940         case 'p':
10941             if (alt || vectorize)
10942                 goto unknown;
10943             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
10944             base = 16;
10945             goto integer;
10946
10947         case 'D':
10948 #ifdef IV_IS_QUAD
10949             intsize = 'q';
10950 #else
10951             intsize = 'l';
10952 #endif
10953             /*FALLTHROUGH*/
10954         case 'd':
10955         case 'i':
10956 #if vdNUMBER
10957         format_vd:
10958 #endif
10959             if (vectorize) {
10960                 STRLEN ulen;
10961                 if (!veclen)
10962                     continue;
10963                 if (vec_utf8)
10964                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10965                                         UTF8_ALLOW_ANYUV);
10966                 else {
10967                     uv = *vecstr;
10968                     ulen = 1;
10969                 }
10970                 vecstr += ulen;
10971                 veclen -= ulen;
10972                 if (plus)
10973                      esignbuf[esignlen++] = plus;
10974             }
10975             else if (args) {
10976                 switch (intsize) {
10977                 case 'c':       iv = (char)va_arg(*args, int); break;
10978                 case 'h':       iv = (short)va_arg(*args, int); break;
10979                 case 'l':       iv = va_arg(*args, long); break;
10980                 case 'V':       iv = va_arg(*args, IV); break;
10981                 case 'z':       iv = va_arg(*args, SSize_t); break;
10982                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
10983                 default:        iv = va_arg(*args, int); break;
10984 #if HAS_C99
10985                 case 'j':       iv = va_arg(*args, intmax_t); break;
10986 #endif
10987                 case 'q':
10988 #if IVSIZE >= 8
10989                                 iv = va_arg(*args, Quad_t); break;
10990 #else
10991                                 goto unknown;
10992 #endif
10993                 }
10994             }
10995             else {
10996                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
10997                 switch (intsize) {
10998                 case 'c':       iv = (char)tiv; break;
10999                 case 'h':       iv = (short)tiv; break;
11000                 case 'l':       iv = (long)tiv; break;
11001                 case 'V':
11002                 default:        iv = tiv; break;
11003                 case 'q':
11004 #if IVSIZE >= 8
11005                                 iv = (Quad_t)tiv; break;
11006 #else
11007                                 goto unknown;
11008 #endif
11009                 }
11010             }
11011             if ( !vectorize )   /* we already set uv above */
11012             {
11013                 if (iv >= 0) {
11014                     uv = iv;
11015                     if (plus)
11016                         esignbuf[esignlen++] = plus;
11017                 }
11018                 else {
11019                     uv = -iv;
11020                     esignbuf[esignlen++] = '-';
11021                 }
11022             }
11023             base = 10;
11024             goto integer;
11025
11026         case 'U':
11027 #ifdef IV_IS_QUAD
11028             intsize = 'q';
11029 #else
11030             intsize = 'l';
11031 #endif
11032             /*FALLTHROUGH*/
11033         case 'u':
11034             base = 10;
11035             goto uns_integer;
11036
11037         case 'B':
11038         case 'b':
11039             base = 2;
11040             goto uns_integer;
11041
11042         case 'O':
11043 #ifdef IV_IS_QUAD
11044             intsize = 'q';
11045 #else
11046             intsize = 'l';
11047 #endif
11048             /*FALLTHROUGH*/
11049         case 'o':
11050             base = 8;
11051             goto uns_integer;
11052
11053         case 'X':
11054         case 'x':
11055             base = 16;
11056
11057         uns_integer:
11058             if (vectorize) {
11059                 STRLEN ulen;
11060         vector:
11061                 if (!veclen)
11062                     continue;
11063                 if (vec_utf8)
11064                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
11065                                         UTF8_ALLOW_ANYUV);
11066                 else {
11067                     uv = *vecstr;
11068                     ulen = 1;
11069                 }
11070                 vecstr += ulen;
11071                 veclen -= ulen;
11072             }
11073             else if (args) {
11074                 switch (intsize) {
11075                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
11076                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
11077                 case 'l':  uv = va_arg(*args, unsigned long); break;
11078                 case 'V':  uv = va_arg(*args, UV); break;
11079                 case 'z':  uv = va_arg(*args, Size_t); break;
11080                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
11081 #if HAS_C99
11082                 case 'j':  uv = va_arg(*args, uintmax_t); break;
11083 #endif
11084                 default:   uv = va_arg(*args, unsigned); break;
11085                 case 'q':
11086 #if IVSIZE >= 8
11087                            uv = va_arg(*args, Uquad_t); break;
11088 #else
11089                            goto unknown;
11090 #endif
11091                 }
11092             }
11093             else {
11094                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
11095                 switch (intsize) {
11096                 case 'c':       uv = (unsigned char)tuv; break;
11097                 case 'h':       uv = (unsigned short)tuv; break;
11098                 case 'l':       uv = (unsigned long)tuv; break;
11099                 case 'V':
11100                 default:        uv = tuv; break;
11101                 case 'q':
11102 #if IVSIZE >= 8
11103                                 uv = (Uquad_t)tuv; break;
11104 #else
11105                                 goto unknown;
11106 #endif
11107                 }
11108             }
11109
11110         integer:
11111             {
11112                 char *ptr = ebuf + sizeof ebuf;
11113                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
11114                 zeros = 0;
11115
11116                 switch (base) {
11117                     unsigned dig;
11118                 case 16:
11119                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
11120                     do {
11121                         dig = uv & 15;
11122                         *--ptr = p[dig];
11123                     } while (uv >>= 4);
11124                     if (tempalt) {
11125                         esignbuf[esignlen++] = '0';
11126                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
11127                     }
11128                     break;
11129                 case 8:
11130                     do {
11131                         dig = uv & 7;
11132                         *--ptr = '0' + dig;
11133                     } while (uv >>= 3);
11134                     if (alt && *ptr != '0')
11135                         *--ptr = '0';
11136                     break;
11137                 case 2:
11138                     do {
11139                         dig = uv & 1;
11140                         *--ptr = '0' + dig;
11141                     } while (uv >>= 1);
11142                     if (tempalt) {
11143                         esignbuf[esignlen++] = '0';
11144                         esignbuf[esignlen++] = c;
11145                     }
11146                     break;
11147                 default:                /* it had better be ten or less */
11148                     do {
11149                         dig = uv % base;
11150                         *--ptr = '0' + dig;
11151                     } while (uv /= base);
11152                     break;
11153                 }
11154                 elen = (ebuf + sizeof ebuf) - ptr;
11155                 eptr = ptr;
11156                 if (has_precis) {
11157                     if (precis > elen)
11158                         zeros = precis - elen;
11159                     else if (precis == 0 && elen == 1 && *eptr == '0'
11160                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
11161                         elen = 0;
11162
11163                 /* a precision nullifies the 0 flag. */
11164                     if (fill == '0')
11165                         fill = ' ';
11166                 }
11167             }
11168             break;
11169
11170             /* FLOATING POINT */
11171
11172         case 'F':
11173             c = 'f';            /* maybe %F isn't supported here */
11174             /*FALLTHROUGH*/
11175         case 'e': case 'E':
11176         case 'f':
11177         case 'g': case 'G':
11178             if (vectorize)
11179                 goto unknown;
11180
11181             /* This is evil, but floating point is even more evil */
11182
11183             /* for SV-style calling, we can only get NV
11184                for C-style calling, we assume %f is double;
11185                for simplicity we allow any of %Lf, %llf, %qf for long double
11186             */
11187             switch (intsize) {
11188             case 'V':
11189 #if defined(USE_LONG_DOUBLE)
11190                 intsize = 'q';
11191 #endif
11192                 break;
11193 /* [perl #20339] - we should accept and ignore %lf rather than die */
11194             case 'l':
11195                 /*FALLTHROUGH*/
11196             default:
11197 #if defined(USE_LONG_DOUBLE)
11198                 intsize = args ? 0 : 'q';
11199 #endif
11200                 break;
11201             case 'q':
11202 #if defined(HAS_LONG_DOUBLE)
11203                 break;
11204 #else
11205                 /*FALLTHROUGH*/
11206 #endif
11207             case 'c':
11208             case 'h':
11209             case 'z':
11210             case 't':
11211             case 'j':
11212                 goto unknown;
11213             }
11214
11215             /* now we need (long double) if intsize == 'q', else (double) */
11216             nv = (args) ?
11217 #if LONG_DOUBLESIZE > DOUBLESIZE
11218                 intsize == 'q' ?
11219                     va_arg(*args, long double) :
11220                     va_arg(*args, double)
11221 #else
11222                     va_arg(*args, double)
11223 #endif
11224                 : SvNV(argsv);
11225
11226             need = 0;
11227             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
11228                else. frexp() has some unspecified behaviour for those three */
11229             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
11230                 i = PERL_INT_MIN;
11231                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
11232                    will cast our (long double) to (double) */
11233                 (void)Perl_frexp(nv, &i);
11234                 if (i == PERL_INT_MIN)
11235                     Perl_die(aTHX_ "panic: frexp");
11236                 if (i > 0)
11237                     need = BIT_DIGITS(i);
11238             }
11239             need += has_precis ? precis : 6; /* known default */
11240
11241             if (need < width)
11242                 need = width;
11243
11244 #ifdef HAS_LDBL_SPRINTF_BUG
11245             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
11246                with sfio - Allen <allens@cpan.org> */
11247
11248 #  ifdef DBL_MAX
11249 #    define MY_DBL_MAX DBL_MAX
11250 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
11251 #    if DOUBLESIZE >= 8
11252 #      define MY_DBL_MAX 1.7976931348623157E+308L
11253 #    else
11254 #      define MY_DBL_MAX 3.40282347E+38L
11255 #    endif
11256 #  endif
11257
11258 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
11259 #    define MY_DBL_MAX_BUG 1L
11260 #  else
11261 #    define MY_DBL_MAX_BUG MY_DBL_MAX
11262 #  endif
11263
11264 #  ifdef DBL_MIN
11265 #    define MY_DBL_MIN DBL_MIN
11266 #  else  /* XXX guessing! -Allen */
11267 #    if DOUBLESIZE >= 8
11268 #      define MY_DBL_MIN 2.2250738585072014E-308L
11269 #    else
11270 #      define MY_DBL_MIN 1.17549435E-38L
11271 #    endif
11272 #  endif
11273
11274             if ((intsize == 'q') && (c == 'f') &&
11275                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
11276                 (need < DBL_DIG)) {
11277                 /* it's going to be short enough that
11278                  * long double precision is not needed */
11279
11280                 if ((nv <= 0L) && (nv >= -0L))
11281                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
11282                 else {
11283                     /* would use Perl_fp_class as a double-check but not
11284                      * functional on IRIX - see perl.h comments */
11285
11286                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
11287                         /* It's within the range that a double can represent */
11288 #if defined(DBL_MAX) && !defined(DBL_MIN)
11289                         if ((nv >= ((long double)1/DBL_MAX)) ||
11290                             (nv <= (-(long double)1/DBL_MAX)))
11291 #endif
11292                         fix_ldbl_sprintf_bug = TRUE;
11293                     }
11294                 }
11295                 if (fix_ldbl_sprintf_bug == TRUE) {
11296                     double temp;
11297
11298                     intsize = 0;
11299                     temp = (double)nv;
11300                     nv = (NV)temp;
11301                 }
11302             }
11303
11304 #  undef MY_DBL_MAX
11305 #  undef MY_DBL_MAX_BUG
11306 #  undef MY_DBL_MIN
11307
11308 #endif /* HAS_LDBL_SPRINTF_BUG */
11309
11310             need += 20; /* fudge factor */
11311             if (PL_efloatsize < need) {
11312                 Safefree(PL_efloatbuf);
11313                 PL_efloatsize = need + 20; /* more fudge */
11314                 Newx(PL_efloatbuf, PL_efloatsize, char);
11315                 PL_efloatbuf[0] = '\0';
11316             }
11317
11318             if ( !(width || left || plus || alt) && fill != '0'
11319                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
11320                 /* See earlier comment about buggy Gconvert when digits,
11321                    aka precis is 0  */
11322                 if ( c == 'g' && precis) {
11323                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
11324                     /* May return an empty string for digits==0 */
11325                     if (*PL_efloatbuf) {
11326                         elen = strlen(PL_efloatbuf);
11327                         goto float_converted;
11328                     }
11329                 } else if ( c == 'f' && !precis) {
11330                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
11331                         break;
11332                 }
11333             }
11334             {
11335                 char *ptr = ebuf + sizeof ebuf;
11336                 *--ptr = '\0';
11337                 *--ptr = c;
11338                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
11339 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
11340                 if (intsize == 'q') {
11341                     /* Copy the one or more characters in a long double
11342                      * format before the 'base' ([efgEFG]) character to
11343                      * the format string. */
11344                     static char const prifldbl[] = PERL_PRIfldbl;
11345                     char const *p = prifldbl + sizeof(prifldbl) - 3;
11346                     while (p >= prifldbl) { *--ptr = *p--; }
11347                 }
11348 #endif
11349                 if (has_precis) {
11350                     base = precis;
11351                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
11352                     *--ptr = '.';
11353                 }
11354                 if (width) {
11355                     base = width;
11356                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
11357                 }
11358                 if (fill == '0')
11359                     *--ptr = fill;
11360                 if (left)
11361                     *--ptr = '-';
11362                 if (plus)
11363                     *--ptr = plus;
11364                 if (alt)
11365                     *--ptr = '#';
11366                 *--ptr = '%';
11367
11368                 /* No taint.  Otherwise we are in the strange situation
11369                  * where printf() taints but print($float) doesn't.
11370                  * --jhi */
11371
11372 #ifdef USE_LOCALE_NUMERIC
11373                 if (! PL_numeric_standard && ! IN_SOME_LOCALE_FORM) {
11374
11375                     /* We use a mortal SV, so that any failures (such as if
11376                      * warnings are made fatal) won't leak */
11377                     char *oldlocale_string = setlocale(LC_NUMERIC, NULL);
11378                     oldlocale = newSVpvn_flags(oldlocale_string,
11379                                                strlen(oldlocale_string),
11380                                                SVs_TEMP);
11381                     PL_numeric_standard = TRUE;
11382                     setlocale(LC_NUMERIC, "C");
11383                 }
11384 #endif
11385
11386 #if defined(HAS_LONG_DOUBLE)
11387                 elen = ((intsize == 'q')
11388                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
11389                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
11390 #else
11391                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
11392 #endif
11393             }
11394         float_converted:
11395             eptr = PL_efloatbuf;
11396
11397 #ifdef USE_LOCALE_NUMERIC
11398             if (PL_numeric_radix_sv && SvUTF8(PL_numeric_radix_sv)
11399                 && instr(eptr, SvPVX_const(PL_numeric_radix_sv)))
11400             {
11401                 is_utf8 = TRUE;
11402             }
11403 #endif
11404
11405             break;
11406
11407             /* SPECIAL */
11408
11409         case 'n':
11410             if (vectorize)
11411                 goto unknown;
11412             i = SvCUR(sv) - origlen;
11413             if (args) {
11414                 switch (intsize) {
11415                 case 'c':       *(va_arg(*args, char*)) = i; break;
11416                 case 'h':       *(va_arg(*args, short*)) = i; break;
11417                 default:        *(va_arg(*args, int*)) = i; break;
11418                 case 'l':       *(va_arg(*args, long*)) = i; break;
11419                 case 'V':       *(va_arg(*args, IV*)) = i; break;
11420                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
11421                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
11422 #if HAS_C99
11423                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
11424 #endif
11425                 case 'q':
11426 #if IVSIZE >= 8
11427                                 *(va_arg(*args, Quad_t*)) = i; break;
11428 #else
11429                                 goto unknown;
11430 #endif
11431                 }
11432             }
11433             else
11434                 sv_setuv_mg(argsv, has_utf8 ? (UV)sv_len_utf8(sv) : (UV)i);
11435             continue;   /* not "break" */
11436
11437             /* UNKNOWN */
11438
11439         default:
11440       unknown:
11441             if (!args
11442                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
11443                 && ckWARN(WARN_PRINTF))
11444             {
11445                 SV * const msg = sv_newmortal();
11446                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
11447                           (PL_op->op_type == OP_PRTF) ? "" : "s");
11448                 if (fmtstart < patend) {
11449                     const char * const fmtend = q < patend ? q : patend;
11450                     const char * f;
11451                     sv_catpvs(msg, "\"%");
11452                     for (f = fmtstart; f < fmtend; f++) {
11453                         if (isPRINT(*f)) {
11454                             sv_catpvn_nomg(msg, f, 1);
11455                         } else {
11456                             Perl_sv_catpvf(aTHX_ msg,
11457                                            "\\%03"UVof, (UV)*f & 0xFF);
11458                         }
11459                     }
11460                     sv_catpvs(msg, "\"");
11461                 } else {
11462                     sv_catpvs(msg, "end of string");
11463                 }
11464                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
11465             }
11466
11467             /* output mangled stuff ... */
11468             if (c == '\0')
11469                 --q;
11470             eptr = p;
11471             elen = q - p;
11472
11473             /* ... right here, because formatting flags should not apply */
11474             SvGROW(sv, SvCUR(sv) + elen + 1);
11475             p = SvEND(sv);
11476             Copy(eptr, p, elen, char);
11477             p += elen;
11478             *p = '\0';
11479             SvCUR_set(sv, p - SvPVX_const(sv));
11480             svix = osvix;
11481             continue;   /* not "break" */
11482         }
11483
11484         if (is_utf8 != has_utf8) {
11485             if (is_utf8) {
11486                 if (SvCUR(sv))
11487                     sv_utf8_upgrade(sv);
11488             }
11489             else {
11490                 const STRLEN old_elen = elen;
11491                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
11492                 sv_utf8_upgrade(nsv);
11493                 eptr = SvPVX_const(nsv);
11494                 elen = SvCUR(nsv);
11495
11496                 if (width) { /* fudge width (can't fudge elen) */
11497                     width += elen - old_elen;
11498                 }
11499                 is_utf8 = TRUE;
11500             }
11501         }
11502
11503         have = esignlen + zeros + elen;
11504         if (have < zeros)
11505             croak_memory_wrap();
11506
11507         need = (have > width ? have : width);
11508         gap = need - have;
11509
11510         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
11511             croak_memory_wrap();
11512         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
11513         p = SvEND(sv);
11514         if (esignlen && fill == '0') {
11515             int i;
11516             for (i = 0; i < (int)esignlen; i++)
11517                 *p++ = esignbuf[i];
11518         }
11519         if (gap && !left) {
11520             memset(p, fill, gap);
11521             p += gap;
11522         }
11523         if (esignlen && fill != '0') {
11524             int i;
11525             for (i = 0; i < (int)esignlen; i++)
11526                 *p++ = esignbuf[i];
11527         }
11528         if (zeros) {
11529             int i;
11530             for (i = zeros; i; i--)
11531                 *p++ = '0';
11532         }
11533         if (elen) {
11534             Copy(eptr, p, elen, char);
11535             p += elen;
11536         }
11537         if (gap && left) {
11538             memset(p, ' ', gap);
11539             p += gap;
11540         }
11541         if (vectorize) {
11542             if (veclen) {
11543                 Copy(dotstr, p, dotstrlen, char);
11544                 p += dotstrlen;
11545             }
11546             else
11547                 vectorize = FALSE;              /* done iterating over vecstr */
11548         }
11549         if (is_utf8)
11550             has_utf8 = TRUE;
11551         if (has_utf8)
11552             SvUTF8_on(sv);
11553         *p = '\0';
11554         SvCUR_set(sv, p - SvPVX_const(sv));
11555         if (vectorize) {
11556             esignlen = 0;
11557             goto vector;
11558         }
11559     }
11560     SvTAINT(sv);
11561
11562 #ifdef USE_LOCALE_NUMERIC   /* Done outside loop, so don't have to save/restore
11563                                each iteration. */
11564     if (oldlocale) {
11565         setlocale(LC_NUMERIC, SvPVX(oldlocale));
11566         PL_numeric_standard = FALSE;
11567     }
11568 #endif
11569 }
11570
11571 /* =========================================================================
11572
11573 =head1 Cloning an interpreter
11574
11575 All the macros and functions in this section are for the private use of
11576 the main function, perl_clone().
11577
11578 The foo_dup() functions make an exact copy of an existing foo thingy.
11579 During the course of a cloning, a hash table is used to map old addresses
11580 to new addresses.  The table is created and manipulated with the
11581 ptr_table_* functions.
11582
11583 =cut
11584
11585  * =========================================================================*/
11586
11587
11588 #if defined(USE_ITHREADS)
11589
11590 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
11591 #ifndef GpREFCNT_inc
11592 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
11593 #endif
11594
11595
11596 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
11597    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
11598    If this changes, please unmerge ss_dup.
11599    Likewise, sv_dup_inc_multiple() relies on this fact.  */
11600 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
11601 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
11602 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
11603 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
11604 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
11605 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
11606 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
11607 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
11608 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
11609 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
11610 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
11611 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
11612 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
11613
11614 /* clone a parser */
11615
11616 yy_parser *
11617 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
11618 {
11619     yy_parser *parser;
11620
11621     PERL_ARGS_ASSERT_PARSER_DUP;
11622
11623     if (!proto)
11624         return NULL;
11625
11626     /* look for it in the table first */
11627     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
11628     if (parser)
11629         return parser;
11630
11631     /* create anew and remember what it is */
11632     Newxz(parser, 1, yy_parser);
11633     ptr_table_store(PL_ptr_table, proto, parser);
11634
11635     /* XXX these not yet duped */
11636     parser->old_parser = NULL;
11637     parser->stack = NULL;
11638     parser->ps = NULL;
11639     parser->stack_size = 0;
11640     /* XXX parser->stack->state = 0; */
11641
11642     /* XXX eventually, just Copy() most of the parser struct ? */
11643
11644     parser->lex_brackets = proto->lex_brackets;
11645     parser->lex_casemods = proto->lex_casemods;
11646     parser->lex_brackstack = savepvn(proto->lex_brackstack,
11647                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
11648     parser->lex_casestack = savepvn(proto->lex_casestack,
11649                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
11650     parser->lex_defer   = proto->lex_defer;
11651     parser->lex_dojoin  = proto->lex_dojoin;
11652     parser->lex_expect  = proto->lex_expect;
11653     parser->lex_formbrack = proto->lex_formbrack;
11654     parser->lex_inpat   = proto->lex_inpat;
11655     parser->lex_inwhat  = proto->lex_inwhat;
11656     parser->lex_op      = proto->lex_op;
11657     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
11658     parser->lex_starts  = proto->lex_starts;
11659     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
11660     parser->multi_close = proto->multi_close;
11661     parser->multi_open  = proto->multi_open;
11662     parser->multi_start = proto->multi_start;
11663     parser->multi_end   = proto->multi_end;
11664     parser->preambled   = proto->preambled;
11665     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
11666     parser->linestr     = sv_dup_inc(proto->linestr, param);
11667     parser->expect      = proto->expect;
11668     parser->copline     = proto->copline;
11669     parser->last_lop_op = proto->last_lop_op;
11670     parser->lex_state   = proto->lex_state;
11671     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
11672     /* rsfp_filters entries have fake IoDIRP() */
11673     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
11674     parser->in_my       = proto->in_my;
11675     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
11676     parser->error_count = proto->error_count;
11677
11678
11679     parser->linestr     = sv_dup_inc(proto->linestr, param);
11680
11681     {
11682         char * const ols = SvPVX(proto->linestr);
11683         char * const ls  = SvPVX(parser->linestr);
11684
11685         parser->bufptr      = ls + (proto->bufptr >= ols ?
11686                                     proto->bufptr -  ols : 0);
11687         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
11688                                     proto->oldbufptr -  ols : 0);
11689         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
11690                                     proto->oldoldbufptr -  ols : 0);
11691         parser->linestart   = ls + (proto->linestart >= ols ?
11692                                     proto->linestart -  ols : 0);
11693         parser->last_uni    = ls + (proto->last_uni >= ols ?
11694                                     proto->last_uni -  ols : 0);
11695         parser->last_lop    = ls + (proto->last_lop >= ols ?
11696                                     proto->last_lop -  ols : 0);
11697
11698         parser->bufend      = ls + SvCUR(parser->linestr);
11699     }
11700
11701     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
11702
11703
11704 #ifdef PERL_MAD
11705     parser->endwhite    = proto->endwhite;
11706     parser->faketokens  = proto->faketokens;
11707     parser->lasttoke    = proto->lasttoke;
11708     parser->nextwhite   = proto->nextwhite;
11709     parser->realtokenstart = proto->realtokenstart;
11710     parser->skipwhite   = proto->skipwhite;
11711     parser->thisclose   = proto->thisclose;
11712     parser->thismad     = proto->thismad;
11713     parser->thisopen    = proto->thisopen;
11714     parser->thisstuff   = proto->thisstuff;
11715     parser->thistoken   = proto->thistoken;
11716     parser->thiswhite   = proto->thiswhite;
11717
11718     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
11719     parser->curforce    = proto->curforce;
11720 #else
11721     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
11722     Copy(proto->nexttype, parser->nexttype, 5,  I32);
11723     parser->nexttoke    = proto->nexttoke;
11724 #endif
11725
11726     /* XXX should clone saved_curcop here, but we aren't passed
11727      * proto_perl; so do it in perl_clone_using instead */
11728
11729     return parser;
11730 }
11731
11732
11733 /* duplicate a file handle */
11734
11735 PerlIO *
11736 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
11737 {
11738     PerlIO *ret;
11739
11740     PERL_ARGS_ASSERT_FP_DUP;
11741     PERL_UNUSED_ARG(type);
11742
11743     if (!fp)
11744         return (PerlIO*)NULL;
11745
11746     /* look for it in the table first */
11747     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
11748     if (ret)
11749         return ret;
11750
11751     /* create anew and remember what it is */
11752     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
11753     ptr_table_store(PL_ptr_table, fp, ret);
11754     return ret;
11755 }
11756
11757 /* duplicate a directory handle */
11758
11759 DIR *
11760 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
11761 {
11762     DIR *ret;
11763
11764 #ifdef HAS_FCHDIR
11765     DIR *pwd;
11766     const Direntry_t *dirent;
11767     char smallbuf[256];
11768     char *name = NULL;
11769     STRLEN len = 0;
11770     long pos;
11771 #endif
11772
11773     PERL_UNUSED_CONTEXT;
11774     PERL_ARGS_ASSERT_DIRP_DUP;
11775
11776     if (!dp)
11777         return (DIR*)NULL;
11778
11779     /* look for it in the table first */
11780     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
11781     if (ret)
11782         return ret;
11783
11784 #ifdef HAS_FCHDIR
11785
11786     PERL_UNUSED_ARG(param);
11787
11788     /* create anew */
11789
11790     /* open the current directory (so we can switch back) */
11791     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
11792
11793     /* chdir to our dir handle and open the present working directory */
11794     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
11795         PerlDir_close(pwd);
11796         return (DIR *)NULL;
11797     }
11798     /* Now we should have two dir handles pointing to the same dir. */
11799
11800     /* Be nice to the calling code and chdir back to where we were. */
11801     fchdir(my_dirfd(pwd)); /* If this fails, then what? */
11802
11803     /* We have no need of the pwd handle any more. */
11804     PerlDir_close(pwd);
11805
11806 #ifdef DIRNAMLEN
11807 # define d_namlen(d) (d)->d_namlen
11808 #else
11809 # define d_namlen(d) strlen((d)->d_name)
11810 #endif
11811     /* Iterate once through dp, to get the file name at the current posi-
11812        tion. Then step back. */
11813     pos = PerlDir_tell(dp);
11814     if ((dirent = PerlDir_read(dp))) {
11815         len = d_namlen(dirent);
11816         if (len <= sizeof smallbuf) name = smallbuf;
11817         else Newx(name, len, char);
11818         Move(dirent->d_name, name, len, char);
11819     }
11820     PerlDir_seek(dp, pos);
11821
11822     /* Iterate through the new dir handle, till we find a file with the
11823        right name. */
11824     if (!dirent) /* just before the end */
11825         for(;;) {
11826             pos = PerlDir_tell(ret);
11827             if (PerlDir_read(ret)) continue; /* not there yet */
11828             PerlDir_seek(ret, pos); /* step back */
11829             break;
11830         }
11831     else {
11832         const long pos0 = PerlDir_tell(ret);
11833         for(;;) {
11834             pos = PerlDir_tell(ret);
11835             if ((dirent = PerlDir_read(ret))) {
11836                 if (len == d_namlen(dirent)
11837                  && memEQ(name, dirent->d_name, len)) {
11838                     /* found it */
11839                     PerlDir_seek(ret, pos); /* step back */
11840                     break;
11841                 }
11842                 /* else we are not there yet; keep iterating */
11843             }
11844             else { /* This is not meant to happen. The best we can do is
11845                       reset the iterator to the beginning. */
11846                 PerlDir_seek(ret, pos0);
11847                 break;
11848             }
11849         }
11850     }
11851 #undef d_namlen
11852
11853     if (name && name != smallbuf)
11854         Safefree(name);
11855 #endif
11856
11857 #ifdef WIN32
11858     ret = win32_dirp_dup(dp, param);
11859 #endif
11860
11861     /* pop it in the pointer table */
11862     if (ret)
11863         ptr_table_store(PL_ptr_table, dp, ret);
11864
11865     return ret;
11866 }
11867
11868 /* duplicate a typeglob */
11869
11870 GP *
11871 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
11872 {
11873     GP *ret;
11874
11875     PERL_ARGS_ASSERT_GP_DUP;
11876
11877     if (!gp)
11878         return (GP*)NULL;
11879     /* look for it in the table first */
11880     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
11881     if (ret)
11882         return ret;
11883
11884     /* create anew and remember what it is */
11885     Newxz(ret, 1, GP);
11886     ptr_table_store(PL_ptr_table, gp, ret);
11887
11888     /* clone */
11889     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
11890        on Newxz() to do this for us.  */
11891     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
11892     ret->gp_io          = io_dup_inc(gp->gp_io, param);
11893     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
11894     ret->gp_av          = av_dup_inc(gp->gp_av, param);
11895     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
11896     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
11897     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
11898     ret->gp_cvgen       = gp->gp_cvgen;
11899     ret->gp_line        = gp->gp_line;
11900     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
11901     return ret;
11902 }
11903
11904 /* duplicate a chain of magic */
11905
11906 MAGIC *
11907 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
11908 {
11909     MAGIC *mgret = NULL;
11910     MAGIC **mgprev_p = &mgret;
11911
11912     PERL_ARGS_ASSERT_MG_DUP;
11913
11914     for (; mg; mg = mg->mg_moremagic) {
11915         MAGIC *nmg;
11916
11917         if ((param->flags & CLONEf_JOIN_IN)
11918                 && mg->mg_type == PERL_MAGIC_backref)
11919             /* when joining, we let the individual SVs add themselves to
11920              * backref as needed. */
11921             continue;
11922
11923         Newx(nmg, 1, MAGIC);
11924         *mgprev_p = nmg;
11925         mgprev_p = &(nmg->mg_moremagic);
11926
11927         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
11928            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
11929            from the original commit adding Perl_mg_dup() - revision 4538.
11930            Similarly there is the annotation "XXX random ptr?" next to the
11931            assignment to nmg->mg_ptr.  */
11932         *nmg = *mg;
11933
11934         /* FIXME for plugins
11935         if (nmg->mg_type == PERL_MAGIC_qr) {
11936             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
11937         }
11938         else
11939         */
11940         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
11941                           ? nmg->mg_type == PERL_MAGIC_backref
11942                                 /* The backref AV has its reference
11943                                  * count deliberately bumped by 1 */
11944                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
11945                                                     nmg->mg_obj, param))
11946                                 : sv_dup_inc(nmg->mg_obj, param)
11947                           : sv_dup(nmg->mg_obj, param);
11948
11949         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
11950             if (nmg->mg_len > 0) {
11951                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
11952                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
11953                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
11954                 {
11955                     AMT * const namtp = (AMT*)nmg->mg_ptr;
11956                     sv_dup_inc_multiple((SV**)(namtp->table),
11957                                         (SV**)(namtp->table), NofAMmeth, param);
11958                 }
11959             }
11960             else if (nmg->mg_len == HEf_SVKEY)
11961                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
11962         }
11963         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
11964             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
11965         }
11966     }
11967     return mgret;
11968 }
11969
11970 #endif /* USE_ITHREADS */
11971
11972 struct ptr_tbl_arena {
11973     struct ptr_tbl_arena *next;
11974     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
11975 };
11976
11977 /* create a new pointer-mapping table */
11978
11979 PTR_TBL_t *
11980 Perl_ptr_table_new(pTHX)
11981 {
11982     PTR_TBL_t *tbl;
11983     PERL_UNUSED_CONTEXT;
11984
11985     Newx(tbl, 1, PTR_TBL_t);
11986     tbl->tbl_max        = 511;
11987     tbl->tbl_items      = 0;
11988     tbl->tbl_arena      = NULL;
11989     tbl->tbl_arena_next = NULL;
11990     tbl->tbl_arena_end  = NULL;
11991     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
11992     return tbl;
11993 }
11994
11995 #define PTR_TABLE_HASH(ptr) \
11996   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
11997
11998 /* map an existing pointer using a table */
11999
12000 STATIC PTR_TBL_ENT_t *
12001 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
12002 {
12003     PTR_TBL_ENT_t *tblent;
12004     const UV hash = PTR_TABLE_HASH(sv);
12005
12006     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
12007
12008     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
12009     for (; tblent; tblent = tblent->next) {
12010         if (tblent->oldval == sv)
12011             return tblent;
12012     }
12013     return NULL;
12014 }
12015
12016 void *
12017 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
12018 {
12019     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
12020
12021     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
12022     PERL_UNUSED_CONTEXT;
12023
12024     return tblent ? tblent->newval : NULL;
12025 }
12026
12027 /* add a new entry to a pointer-mapping table */
12028
12029 void
12030 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
12031 {
12032     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
12033
12034     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
12035     PERL_UNUSED_CONTEXT;
12036
12037     if (tblent) {
12038         tblent->newval = newsv;
12039     } else {
12040         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
12041
12042         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
12043             struct ptr_tbl_arena *new_arena;
12044
12045             Newx(new_arena, 1, struct ptr_tbl_arena);
12046             new_arena->next = tbl->tbl_arena;
12047             tbl->tbl_arena = new_arena;
12048             tbl->tbl_arena_next = new_arena->array;
12049             tbl->tbl_arena_end = new_arena->array
12050                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
12051         }
12052
12053         tblent = tbl->tbl_arena_next++;
12054
12055         tblent->oldval = oldsv;
12056         tblent->newval = newsv;
12057         tblent->next = tbl->tbl_ary[entry];
12058         tbl->tbl_ary[entry] = tblent;
12059         tbl->tbl_items++;
12060         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
12061             ptr_table_split(tbl);
12062     }
12063 }
12064
12065 /* double the hash bucket size of an existing ptr table */
12066
12067 void
12068 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
12069 {
12070     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
12071     const UV oldsize = tbl->tbl_max + 1;
12072     UV newsize = oldsize * 2;
12073     UV i;
12074
12075     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
12076     PERL_UNUSED_CONTEXT;
12077
12078     Renew(ary, newsize, PTR_TBL_ENT_t*);
12079     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
12080     tbl->tbl_max = --newsize;
12081     tbl->tbl_ary = ary;
12082     for (i=0; i < oldsize; i++, ary++) {
12083         PTR_TBL_ENT_t **entp = ary;
12084         PTR_TBL_ENT_t *ent = *ary;
12085         PTR_TBL_ENT_t **curentp;
12086         if (!ent)
12087             continue;
12088         curentp = ary + oldsize;
12089         do {
12090             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
12091                 *entp = ent->next;
12092                 ent->next = *curentp;
12093                 *curentp = ent;
12094             }
12095             else
12096                 entp = &ent->next;
12097             ent = *entp;
12098         } while (ent);
12099     }
12100 }
12101
12102 /* remove all the entries from a ptr table */
12103 /* Deprecated - will be removed post 5.14 */
12104
12105 void
12106 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
12107 {
12108     if (tbl && tbl->tbl_items) {
12109         struct ptr_tbl_arena *arena = tbl->tbl_arena;
12110
12111         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
12112
12113         while (arena) {
12114             struct ptr_tbl_arena *next = arena->next;
12115
12116             Safefree(arena);
12117             arena = next;
12118         };
12119
12120         tbl->tbl_items = 0;
12121         tbl->tbl_arena = NULL;
12122         tbl->tbl_arena_next = NULL;
12123         tbl->tbl_arena_end = NULL;
12124     }
12125 }
12126
12127 /* clear and free a ptr table */
12128
12129 void
12130 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
12131 {
12132     struct ptr_tbl_arena *arena;
12133
12134     if (!tbl) {
12135         return;
12136     }
12137
12138     arena = tbl->tbl_arena;
12139
12140     while (arena) {
12141         struct ptr_tbl_arena *next = arena->next;
12142
12143         Safefree(arena);
12144         arena = next;
12145     }
12146
12147     Safefree(tbl->tbl_ary);
12148     Safefree(tbl);
12149 }
12150
12151 #if defined(USE_ITHREADS)
12152
12153 void
12154 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
12155 {
12156     PERL_ARGS_ASSERT_RVPV_DUP;
12157
12158     assert(!isREGEXP(sstr));
12159     if (SvROK(sstr)) {
12160         if (SvWEAKREF(sstr)) {
12161             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
12162             if (param->flags & CLONEf_JOIN_IN) {
12163                 /* if joining, we add any back references individually rather
12164                  * than copying the whole backref array */
12165                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
12166             }
12167         }
12168         else
12169             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
12170     }
12171     else if (SvPVX_const(sstr)) {
12172         /* Has something there */
12173         if (SvLEN(sstr)) {
12174             /* Normal PV - clone whole allocated space */
12175             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
12176             /* sstr may not be that normal, but actually copy on write.
12177                But we are a true, independent SV, so:  */
12178             SvIsCOW_off(dstr);
12179         }
12180         else {
12181             /* Special case - not normally malloced for some reason */
12182             if (isGV_with_GP(sstr)) {
12183                 /* Don't need to do anything here.  */
12184             }
12185             else if ((SvIsCOW(sstr))) {
12186                 /* A "shared" PV - clone it as "shared" PV */
12187                 SvPV_set(dstr,
12188                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
12189                                          param)));
12190             }
12191             else {
12192                 /* Some other special case - random pointer */
12193                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
12194             }
12195         }
12196     }
12197     else {
12198         /* Copy the NULL */
12199         SvPV_set(dstr, NULL);
12200     }
12201 }
12202
12203 /* duplicate a list of SVs. source and dest may point to the same memory.  */
12204 static SV **
12205 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
12206                       SSize_t items, CLONE_PARAMS *const param)
12207 {
12208     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
12209
12210     while (items-- > 0) {
12211         *dest++ = sv_dup_inc(*source++, param);
12212     }
12213
12214     return dest;
12215 }
12216
12217 /* duplicate an SV of any type (including AV, HV etc) */
12218
12219 static SV *
12220 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12221 {
12222     dVAR;
12223     SV *dstr;
12224
12225     PERL_ARGS_ASSERT_SV_DUP_COMMON;
12226
12227     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
12228 #ifdef DEBUG_LEAKING_SCALARS_ABORT
12229         abort();
12230 #endif
12231         return NULL;
12232     }
12233     /* look for it in the table first */
12234     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
12235     if (dstr)
12236         return dstr;
12237
12238     if(param->flags & CLONEf_JOIN_IN) {
12239         /** We are joining here so we don't want do clone
12240             something that is bad **/
12241         if (SvTYPE(sstr) == SVt_PVHV) {
12242             const HEK * const hvname = HvNAME_HEK(sstr);
12243             if (hvname) {
12244                 /** don't clone stashes if they already exist **/
12245                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
12246                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
12247                 ptr_table_store(PL_ptr_table, sstr, dstr);
12248                 return dstr;
12249             }
12250         }
12251         else if (SvTYPE(sstr) == SVt_PVGV && !SvFAKE(sstr)) {
12252             HV *stash = GvSTASH(sstr);
12253             const HEK * hvname;
12254             if (stash && (hvname = HvNAME_HEK(stash))) {
12255                 /** don't clone GVs if they already exist **/
12256                 SV **svp;
12257                 stash = gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
12258                                     HEK_UTF8(hvname) ? SVf_UTF8 : 0);
12259                 svp = hv_fetch(
12260                         stash, GvNAME(sstr),
12261                         GvNAMEUTF8(sstr)
12262                             ? -GvNAMELEN(sstr)
12263                             :  GvNAMELEN(sstr),
12264                         0
12265                       );
12266                 if (svp && *svp && SvTYPE(*svp) == SVt_PVGV) {
12267                     ptr_table_store(PL_ptr_table, sstr, *svp);
12268                     return *svp;
12269                 }
12270             }
12271         }
12272     }
12273
12274     /* create anew and remember what it is */
12275     new_SV(dstr);
12276
12277 #ifdef DEBUG_LEAKING_SCALARS
12278     dstr->sv_debug_optype = sstr->sv_debug_optype;
12279     dstr->sv_debug_line = sstr->sv_debug_line;
12280     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
12281     dstr->sv_debug_parent = (SV*)sstr;
12282     FREE_SV_DEBUG_FILE(dstr);
12283     dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
12284 #endif
12285
12286     ptr_table_store(PL_ptr_table, sstr, dstr);
12287
12288     /* clone */
12289     SvFLAGS(dstr)       = SvFLAGS(sstr);
12290     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
12291     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
12292
12293 #ifdef DEBUGGING
12294     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
12295         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
12296                       (void*)PL_watch_pvx, SvPVX_const(sstr));
12297 #endif
12298
12299     /* don't clone objects whose class has asked us not to */
12300     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
12301         SvFLAGS(dstr) = 0;
12302         return dstr;
12303     }
12304
12305     switch (SvTYPE(sstr)) {
12306     case SVt_NULL:
12307         SvANY(dstr)     = NULL;
12308         break;
12309     case SVt_IV:
12310         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
12311         if(SvROK(sstr)) {
12312             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
12313         } else {
12314             SvIV_set(dstr, SvIVX(sstr));
12315         }
12316         break;
12317     case SVt_NV:
12318         SvANY(dstr)     = new_XNV();
12319         SvNV_set(dstr, SvNVX(sstr));
12320         break;
12321     default:
12322         {
12323             /* These are all the types that need complex bodies allocating.  */
12324             void *new_body;
12325             const svtype sv_type = SvTYPE(sstr);
12326             const struct body_details *const sv_type_details
12327                 = bodies_by_type + sv_type;
12328
12329             switch (sv_type) {
12330             default:
12331                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
12332                 break;
12333
12334             case SVt_PVGV:
12335             case SVt_PVIO:
12336             case SVt_PVFM:
12337             case SVt_PVHV:
12338             case SVt_PVAV:
12339             case SVt_PVCV:
12340             case SVt_PVLV:
12341             case SVt_REGEXP:
12342             case SVt_PVMG:
12343             case SVt_PVNV:
12344             case SVt_PVIV:
12345             case SVt_INVLIST:
12346             case SVt_PV:
12347                 assert(sv_type_details->body_size);
12348                 if (sv_type_details->arena) {
12349                     new_body_inline(new_body, sv_type);
12350                     new_body
12351                         = (void*)((char*)new_body - sv_type_details->offset);
12352                 } else {
12353                     new_body = new_NOARENA(sv_type_details);
12354                 }
12355             }
12356             assert(new_body);
12357             SvANY(dstr) = new_body;
12358
12359 #ifndef PURIFY
12360             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
12361                  ((char*)SvANY(dstr)) + sv_type_details->offset,
12362                  sv_type_details->copy, char);
12363 #else
12364             Copy(((char*)SvANY(sstr)),
12365                  ((char*)SvANY(dstr)),
12366                  sv_type_details->body_size + sv_type_details->offset, char);
12367 #endif
12368
12369             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
12370                 && !isGV_with_GP(dstr)
12371                 && !isREGEXP(dstr)
12372                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
12373                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
12374
12375             /* The Copy above means that all the source (unduplicated) pointers
12376                are now in the destination.  We can check the flags and the
12377                pointers in either, but it's possible that there's less cache
12378                missing by always going for the destination.
12379                FIXME - instrument and check that assumption  */
12380             if (sv_type >= SVt_PVMG) {
12381                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
12382                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
12383                 } else if (sv_type == SVt_PVAV && AvPAD_NAMELIST(dstr)) {
12384                     NOOP;
12385                 } else if (SvMAGIC(dstr))
12386                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
12387                 if (SvOBJECT(dstr) && SvSTASH(dstr))
12388                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
12389                 else SvSTASH_set(dstr, 0); /* don't copy DESTROY cache */
12390             }
12391
12392             /* The cast silences a GCC warning about unhandled types.  */
12393             switch ((int)sv_type) {
12394             case SVt_PV:
12395                 break;
12396             case SVt_PVIV:
12397                 break;
12398             case SVt_PVNV:
12399                 break;
12400             case SVt_PVMG:
12401                 break;
12402             case SVt_REGEXP:
12403               duprex:
12404                 /* FIXME for plugins */
12405                 dstr->sv_u.svu_rx = ((REGEXP *)dstr)->sv_any;
12406                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
12407                 break;
12408             case SVt_PVLV:
12409                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
12410                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
12411                     LvTARG(dstr) = dstr;
12412                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
12413                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
12414                 else
12415                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
12416                 if (isREGEXP(sstr)) goto duprex;
12417             case SVt_PVGV:
12418                 /* non-GP case already handled above */
12419                 if(isGV_with_GP(sstr)) {
12420                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
12421                     /* Don't call sv_add_backref here as it's going to be
12422                        created as part of the magic cloning of the symbol
12423                        table--unless this is during a join and the stash
12424                        is not actually being cloned.  */
12425                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
12426                        at the point of this comment.  */
12427                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
12428                     if (param->flags & CLONEf_JOIN_IN)
12429                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
12430                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
12431                     (void)GpREFCNT_inc(GvGP(dstr));
12432                 }
12433                 break;
12434             case SVt_PVIO:
12435                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
12436                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
12437                     /* I have no idea why fake dirp (rsfps)
12438                        should be treated differently but otherwise
12439                        we end up with leaks -- sky*/
12440                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
12441                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
12442                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
12443                 } else {
12444                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
12445                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
12446                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
12447                     if (IoDIRP(dstr)) {
12448                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
12449                     } else {
12450                         NOOP;
12451                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
12452                     }
12453                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
12454                 }
12455                 if (IoOFP(dstr) == IoIFP(sstr))
12456                     IoOFP(dstr) = IoIFP(dstr);
12457                 else
12458                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
12459                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
12460                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
12461                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
12462                 break;
12463             case SVt_PVAV:
12464                 /* avoid cloning an empty array */
12465                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
12466                     SV **dst_ary, **src_ary;
12467                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
12468
12469                     src_ary = AvARRAY((const AV *)sstr);
12470                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
12471                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
12472                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
12473                     AvALLOC((const AV *)dstr) = dst_ary;
12474                     if (AvREAL((const AV *)sstr)) {
12475                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
12476                                                       param);
12477                     }
12478                     else {
12479                         while (items-- > 0)
12480                             *dst_ary++ = sv_dup(*src_ary++, param);
12481                     }
12482                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
12483                     while (items-- > 0) {
12484                         *dst_ary++ = &PL_sv_undef;
12485                     }
12486                 }
12487                 else {
12488                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
12489                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
12490                     AvMAX(  (const AV *)dstr)   = -1;
12491                     AvFILLp((const AV *)dstr)   = -1;
12492                 }
12493                 break;
12494             case SVt_PVHV:
12495                 if (HvARRAY((const HV *)sstr)) {
12496                     STRLEN i = 0;
12497                     const bool sharekeys = !!HvSHAREKEYS(sstr);
12498                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
12499                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
12500                     char *darray;
12501                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
12502                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
12503                         char);
12504                     HvARRAY(dstr) = (HE**)darray;
12505                     while (i <= sxhv->xhv_max) {
12506                         const HE * const source = HvARRAY(sstr)[i];
12507                         HvARRAY(dstr)[i] = source
12508                             ? he_dup(source, sharekeys, param) : 0;
12509                         ++i;
12510                     }
12511                     if (SvOOK(sstr)) {
12512                         const struct xpvhv_aux * const saux = HvAUX(sstr);
12513                         struct xpvhv_aux * const daux = HvAUX(dstr);
12514                         /* This flag isn't copied.  */
12515                         SvOOK_on(dstr);
12516
12517                         if (saux->xhv_name_count) {
12518                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
12519                             const I32 count
12520                              = saux->xhv_name_count < 0
12521                                 ? -saux->xhv_name_count
12522                                 :  saux->xhv_name_count;
12523                             HEK **shekp = sname + count;
12524                             HEK **dhekp;
12525                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
12526                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
12527                             while (shekp-- > sname) {
12528                                 dhekp--;
12529                                 *dhekp = hek_dup(*shekp, param);
12530                             }
12531                         }
12532                         else {
12533                             daux->xhv_name_u.xhvnameu_name
12534                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
12535                                           param);
12536                         }
12537                         daux->xhv_name_count = saux->xhv_name_count;
12538
12539                         daux->xhv_fill_lazy = saux->xhv_fill_lazy;
12540                         daux->xhv_riter = saux->xhv_riter;
12541                         daux->xhv_eiter = saux->xhv_eiter
12542                             ? he_dup(saux->xhv_eiter,
12543                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
12544                         /* backref array needs refcnt=2; see sv_add_backref */
12545                         daux->xhv_backreferences =
12546                             (param->flags & CLONEf_JOIN_IN)
12547                                 /* when joining, we let the individual GVs and
12548                                  * CVs add themselves to backref as
12549                                  * needed. This avoids pulling in stuff
12550                                  * that isn't required, and simplifies the
12551                                  * case where stashes aren't cloned back
12552                                  * if they already exist in the parent
12553                                  * thread */
12554                             ? NULL
12555                             : saux->xhv_backreferences
12556                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
12557                                     ? MUTABLE_AV(SvREFCNT_inc(
12558                                           sv_dup_inc((const SV *)
12559                                             saux->xhv_backreferences, param)))
12560                                     : MUTABLE_AV(sv_dup((const SV *)
12561                                             saux->xhv_backreferences, param))
12562                                 : 0;
12563
12564                         daux->xhv_mro_meta = saux->xhv_mro_meta
12565                             ? mro_meta_dup(saux->xhv_mro_meta, param)
12566                             : 0;
12567
12568                         /* Record stashes for possible cloning in Perl_clone(). */
12569                         if (HvNAME(sstr))
12570                             av_push(param->stashes, dstr);
12571                     }
12572                 }
12573                 else
12574                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
12575                 break;
12576             case SVt_PVCV:
12577                 if (!(param->flags & CLONEf_COPY_STACKS)) {
12578                     CvDEPTH(dstr) = 0;
12579                 }
12580                 /*FALLTHROUGH*/
12581             case SVt_PVFM:
12582                 /* NOTE: not refcounted */
12583                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
12584                     hv_dup(CvSTASH(dstr), param);
12585                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
12586                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
12587                 if (!CvISXSUB(dstr)) {
12588                     OP_REFCNT_LOCK;
12589                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
12590                     OP_REFCNT_UNLOCK;
12591                     CvSLABBED_off(dstr);
12592                 } else if (CvCONST(dstr)) {
12593                     CvXSUBANY(dstr).any_ptr =
12594                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
12595                 }
12596                 assert(!CvSLABBED(dstr));
12597                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
12598                 if (CvNAMED(dstr))
12599                     SvANY((CV *)dstr)->xcv_gv_u.xcv_hek =
12600                         share_hek_hek(CvNAME_HEK((CV *)sstr));
12601                 /* don't dup if copying back - CvGV isn't refcounted, so the
12602                  * duped GV may never be freed. A bit of a hack! DAPM */
12603                 else
12604                   SvANY(MUTABLE_CV(dstr))->xcv_gv_u.xcv_gv =
12605                     CvCVGV_RC(dstr)
12606                     ? gv_dup_inc(CvGV(sstr), param)
12607                     : (param->flags & CLONEf_JOIN_IN)
12608                         ? NULL
12609                         : gv_dup(CvGV(sstr), param);
12610
12611                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
12612                 CvOUTSIDE(dstr) =
12613                     CvWEAKOUTSIDE(sstr)
12614                     ? cv_dup(    CvOUTSIDE(dstr), param)
12615                     : cv_dup_inc(CvOUTSIDE(dstr), param);
12616                 break;
12617             }
12618         }
12619     }
12620
12621     return dstr;
12622  }
12623
12624 SV *
12625 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12626 {
12627     PERL_ARGS_ASSERT_SV_DUP_INC;
12628     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
12629 }
12630
12631 SV *
12632 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12633 {
12634     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
12635     PERL_ARGS_ASSERT_SV_DUP;
12636
12637     /* Track every SV that (at least initially) had a reference count of 0.
12638        We need to do this by holding an actual reference to it in this array.
12639        If we attempt to cheat, turn AvREAL_off(), and store only pointers
12640        (akin to the stashes hash, and the perl stack), we come unstuck if
12641        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
12642        thread) is manipulated in a CLONE method, because CLONE runs before the
12643        unreferenced array is walked to find SVs still with SvREFCNT() == 0
12644        (and fix things up by giving each a reference via the temps stack).
12645        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
12646        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
12647        before the walk of unreferenced happens and a reference to that is SV
12648        added to the temps stack. At which point we have the same SV considered
12649        to be in use, and free to be re-used. Not good.
12650     */
12651     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
12652         assert(param->unreferenced);
12653         av_push(param->unreferenced, SvREFCNT_inc(dstr));
12654     }
12655
12656     return dstr;
12657 }
12658
12659 /* duplicate a context */
12660
12661 PERL_CONTEXT *
12662 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
12663 {
12664     PERL_CONTEXT *ncxs;
12665
12666     PERL_ARGS_ASSERT_CX_DUP;
12667
12668     if (!cxs)
12669         return (PERL_CONTEXT*)NULL;
12670
12671     /* look for it in the table first */
12672     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
12673     if (ncxs)
12674         return ncxs;
12675
12676     /* create anew and remember what it is */
12677     Newx(ncxs, max + 1, PERL_CONTEXT);
12678     ptr_table_store(PL_ptr_table, cxs, ncxs);
12679     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
12680
12681     while (ix >= 0) {
12682         PERL_CONTEXT * const ncx = &ncxs[ix];
12683         if (CxTYPE(ncx) == CXt_SUBST) {
12684             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
12685         }
12686         else {
12687             ncx->blk_oldcop = (COP*)any_dup(ncx->blk_oldcop, param->proto_perl);
12688             switch (CxTYPE(ncx)) {
12689             case CXt_SUB:
12690                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
12691                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
12692                                            : cv_dup(ncx->blk_sub.cv,param));
12693                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
12694                                            ? av_dup_inc(ncx->blk_sub.argarray,
12695                                                         param)
12696                                            : NULL);
12697                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
12698                                                      param);
12699                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
12700                                            ncx->blk_sub.oldcomppad);
12701                 break;
12702             case CXt_EVAL:
12703                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
12704                                                       param);
12705                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
12706                 ncx->blk_eval.cv = cv_dup(ncx->blk_eval.cv, param);
12707                 break;
12708             case CXt_LOOP_LAZYSV:
12709                 ncx->blk_loop.state_u.lazysv.end
12710                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
12711                 /* We are taking advantage of av_dup_inc and sv_dup_inc
12712                    actually being the same function, and order equivalence of
12713                    the two unions.
12714                    We can assert the later [but only at run time :-(]  */
12715                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
12716                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
12717             case CXt_LOOP_FOR:
12718                 ncx->blk_loop.state_u.ary.ary
12719                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
12720             case CXt_LOOP_LAZYIV:
12721             case CXt_LOOP_PLAIN:
12722                 if (CxPADLOOP(ncx)) {
12723                     ncx->blk_loop.itervar_u.oldcomppad
12724                         = (PAD*)ptr_table_fetch(PL_ptr_table,
12725                                         ncx->blk_loop.itervar_u.oldcomppad);
12726                 } else {
12727                     ncx->blk_loop.itervar_u.gv
12728                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
12729                                     param);
12730                 }
12731                 break;
12732             case CXt_FORMAT:
12733                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
12734                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
12735                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
12736                                                      param);
12737                 break;
12738             case CXt_BLOCK:
12739             case CXt_NULL:
12740             case CXt_WHEN:
12741             case CXt_GIVEN:
12742                 break;
12743             }
12744         }
12745         --ix;
12746     }
12747     return ncxs;
12748 }
12749
12750 /* duplicate a stack info structure */
12751
12752 PERL_SI *
12753 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
12754 {
12755     PERL_SI *nsi;
12756
12757     PERL_ARGS_ASSERT_SI_DUP;
12758
12759     if (!si)
12760         return (PERL_SI*)NULL;
12761
12762     /* look for it in the table first */
12763     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
12764     if (nsi)
12765         return nsi;
12766
12767     /* create anew and remember what it is */
12768     Newxz(nsi, 1, PERL_SI);
12769     ptr_table_store(PL_ptr_table, si, nsi);
12770
12771     nsi->si_stack       = av_dup_inc(si->si_stack, param);
12772     nsi->si_cxix        = si->si_cxix;
12773     nsi->si_cxmax       = si->si_cxmax;
12774     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
12775     nsi->si_type        = si->si_type;
12776     nsi->si_prev        = si_dup(si->si_prev, param);
12777     nsi->si_next        = si_dup(si->si_next, param);
12778     nsi->si_markoff     = si->si_markoff;
12779
12780     return nsi;
12781 }
12782
12783 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
12784 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
12785 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
12786 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
12787 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
12788 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
12789 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
12790 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
12791 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
12792 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
12793 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
12794 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
12795 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
12796 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
12797 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
12798 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
12799
12800 /* XXXXX todo */
12801 #define pv_dup_inc(p)   SAVEPV(p)
12802 #define pv_dup(p)       SAVEPV(p)
12803 #define svp_dup_inc(p,pp)       any_dup(p,pp)
12804
12805 /* map any object to the new equivent - either something in the
12806  * ptr table, or something in the interpreter structure
12807  */
12808
12809 void *
12810 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
12811 {
12812     void *ret;
12813
12814     PERL_ARGS_ASSERT_ANY_DUP;
12815
12816     if (!v)
12817         return (void*)NULL;
12818
12819     /* look for it in the table first */
12820     ret = ptr_table_fetch(PL_ptr_table, v);
12821     if (ret)
12822         return ret;
12823
12824     /* see if it is part of the interpreter structure */
12825     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
12826         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
12827     else {
12828         ret = v;
12829     }
12830
12831     return ret;
12832 }
12833
12834 /* duplicate the save stack */
12835
12836 ANY *
12837 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
12838 {
12839     dVAR;
12840     ANY * const ss      = proto_perl->Isavestack;
12841     const I32 max       = proto_perl->Isavestack_max;
12842     I32 ix              = proto_perl->Isavestack_ix;
12843     ANY *nss;
12844     const SV *sv;
12845     const GV *gv;
12846     const AV *av;
12847     const HV *hv;
12848     void* ptr;
12849     int intval;
12850     long longval;
12851     GP *gp;
12852     IV iv;
12853     I32 i;
12854     char *c = NULL;
12855     void (*dptr) (void*);
12856     void (*dxptr) (pTHX_ void*);
12857
12858     PERL_ARGS_ASSERT_SS_DUP;
12859
12860     Newxz(nss, max, ANY);
12861
12862     while (ix > 0) {
12863         const UV uv = POPUV(ss,ix);
12864         const U8 type = (U8)uv & SAVE_MASK;
12865
12866         TOPUV(nss,ix) = uv;
12867         switch (type) {
12868         case SAVEt_CLEARSV:
12869         case SAVEt_CLEARPADRANGE:
12870             break;
12871         case SAVEt_HELEM:               /* hash element */
12872             sv = (const SV *)POPPTR(ss,ix);
12873             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12874             /* fall through */
12875         case SAVEt_ITEM:                        /* normal string */
12876         case SAVEt_GVSV:                        /* scalar slot in GV */
12877         case SAVEt_SV:                          /* scalar reference */
12878             sv = (const SV *)POPPTR(ss,ix);
12879             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12880             /* fall through */
12881         case SAVEt_FREESV:
12882         case SAVEt_MORTALIZESV:
12883         case SAVEt_READONLY_OFF:
12884             sv = (const SV *)POPPTR(ss,ix);
12885             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12886             break;
12887         case SAVEt_SHARED_PVREF:                /* char* in shared space */
12888             c = (char*)POPPTR(ss,ix);
12889             TOPPTR(nss,ix) = savesharedpv(c);
12890             ptr = POPPTR(ss,ix);
12891             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12892             break;
12893         case SAVEt_GENERIC_SVREF:               /* generic sv */
12894         case SAVEt_SVREF:                       /* scalar reference */
12895             sv = (const SV *)POPPTR(ss,ix);
12896             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12897             ptr = POPPTR(ss,ix);
12898             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12899             break;
12900         case SAVEt_GVSLOT:              /* any slot in GV */
12901             sv = (const SV *)POPPTR(ss,ix);
12902             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12903             ptr = POPPTR(ss,ix);
12904             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12905             sv = (const SV *)POPPTR(ss,ix);
12906             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12907             break;
12908         case SAVEt_HV:                          /* hash reference */
12909         case SAVEt_AV:                          /* array reference */
12910             sv = (const SV *) POPPTR(ss,ix);
12911             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12912             /* fall through */
12913         case SAVEt_COMPPAD:
12914         case SAVEt_NSTAB:
12915             sv = (const SV *) POPPTR(ss,ix);
12916             TOPPTR(nss,ix) = sv_dup(sv, param);
12917             break;
12918         case SAVEt_INT:                         /* int reference */
12919             ptr = POPPTR(ss,ix);
12920             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12921             intval = (int)POPINT(ss,ix);
12922             TOPINT(nss,ix) = intval;
12923             break;
12924         case SAVEt_LONG:                        /* long reference */
12925             ptr = POPPTR(ss,ix);
12926             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12927             longval = (long)POPLONG(ss,ix);
12928             TOPLONG(nss,ix) = longval;
12929             break;
12930         case SAVEt_I32:                         /* I32 reference */
12931             ptr = POPPTR(ss,ix);
12932             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12933             i = POPINT(ss,ix);
12934             TOPINT(nss,ix) = i;
12935             break;
12936         case SAVEt_IV:                          /* IV reference */
12937         case SAVEt_STRLEN:                      /* STRLEN/size_t ref */
12938             ptr = POPPTR(ss,ix);
12939             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12940             iv = POPIV(ss,ix);
12941             TOPIV(nss,ix) = iv;
12942             break;
12943         case SAVEt_HPTR:                        /* HV* reference */
12944         case SAVEt_APTR:                        /* AV* reference */
12945         case SAVEt_SPTR:                        /* SV* reference */
12946             ptr = POPPTR(ss,ix);
12947             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12948             sv = (const SV *)POPPTR(ss,ix);
12949             TOPPTR(nss,ix) = sv_dup(sv, param);
12950             break;
12951         case SAVEt_VPTR:                        /* random* reference */
12952             ptr = POPPTR(ss,ix);
12953             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12954             /* Fall through */
12955         case SAVEt_INT_SMALL:
12956         case SAVEt_I32_SMALL:
12957         case SAVEt_I16:                         /* I16 reference */
12958         case SAVEt_I8:                          /* I8 reference */
12959         case SAVEt_BOOL:
12960             ptr = POPPTR(ss,ix);
12961             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12962             break;
12963         case SAVEt_GENERIC_PVREF:               /* generic char* */
12964         case SAVEt_PPTR:                        /* char* reference */
12965             ptr = POPPTR(ss,ix);
12966             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12967             c = (char*)POPPTR(ss,ix);
12968             TOPPTR(nss,ix) = pv_dup(c);
12969             break;
12970         case SAVEt_GP:                          /* scalar reference */
12971             gp = (GP*)POPPTR(ss,ix);
12972             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
12973             (void)GpREFCNT_inc(gp);
12974             gv = (const GV *)POPPTR(ss,ix);
12975             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
12976             break;
12977         case SAVEt_FREEOP:
12978             ptr = POPPTR(ss,ix);
12979             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
12980                 /* these are assumed to be refcounted properly */
12981                 OP *o;
12982                 switch (((OP*)ptr)->op_type) {
12983                 case OP_LEAVESUB:
12984                 case OP_LEAVESUBLV:
12985                 case OP_LEAVEEVAL:
12986                 case OP_LEAVE:
12987                 case OP_SCOPE:
12988                 case OP_LEAVEWRITE:
12989                     TOPPTR(nss,ix) = ptr;
12990                     o = (OP*)ptr;
12991                     OP_REFCNT_LOCK;
12992                     (void) OpREFCNT_inc(o);
12993                     OP_REFCNT_UNLOCK;
12994                     break;
12995                 default:
12996                     TOPPTR(nss,ix) = NULL;
12997                     break;
12998                 }
12999             }
13000             else
13001                 TOPPTR(nss,ix) = NULL;
13002             break;
13003         case SAVEt_FREECOPHH:
13004             ptr = POPPTR(ss,ix);
13005             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
13006             break;
13007         case SAVEt_ADELETE:
13008             av = (const AV *)POPPTR(ss,ix);
13009             TOPPTR(nss,ix) = av_dup_inc(av, param);
13010             i = POPINT(ss,ix);
13011             TOPINT(nss,ix) = i;
13012             break;
13013         case SAVEt_DELETE:
13014             hv = (const HV *)POPPTR(ss,ix);
13015             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
13016             i = POPINT(ss,ix);
13017             TOPINT(nss,ix) = i;
13018             /* Fall through */
13019         case SAVEt_FREEPV:
13020             c = (char*)POPPTR(ss,ix);
13021             TOPPTR(nss,ix) = pv_dup_inc(c);
13022             break;
13023         case SAVEt_STACK_POS:           /* Position on Perl stack */
13024             i = POPINT(ss,ix);
13025             TOPINT(nss,ix) = i;
13026             break;
13027         case SAVEt_DESTRUCTOR:
13028             ptr = POPPTR(ss,ix);
13029             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
13030             dptr = POPDPTR(ss,ix);
13031             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
13032                                         any_dup(FPTR2DPTR(void *, dptr),
13033                                                 proto_perl));
13034             break;
13035         case SAVEt_DESTRUCTOR_X:
13036             ptr = POPPTR(ss,ix);
13037             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
13038             dxptr = POPDXPTR(ss,ix);
13039             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
13040                                          any_dup(FPTR2DPTR(void *, dxptr),
13041                                                  proto_perl));
13042             break;
13043         case SAVEt_REGCONTEXT:
13044         case SAVEt_ALLOC:
13045             ix -= uv >> SAVE_TIGHT_SHIFT;
13046             break;
13047         case SAVEt_AELEM:               /* array element */
13048             sv = (const SV *)POPPTR(ss,ix);
13049             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13050             i = POPINT(ss,ix);
13051             TOPINT(nss,ix) = i;
13052             av = (const AV *)POPPTR(ss,ix);
13053             TOPPTR(nss,ix) = av_dup_inc(av, param);
13054             break;
13055         case SAVEt_OP:
13056             ptr = POPPTR(ss,ix);
13057             TOPPTR(nss,ix) = ptr;
13058             break;
13059         case SAVEt_HINTS:
13060             ptr = POPPTR(ss,ix);
13061             ptr = cophh_copy((COPHH*)ptr);
13062             TOPPTR(nss,ix) = ptr;
13063             i = POPINT(ss,ix);
13064             TOPINT(nss,ix) = i;
13065             if (i & HINT_LOCALIZE_HH) {
13066                 hv = (const HV *)POPPTR(ss,ix);
13067                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
13068             }
13069             break;
13070         case SAVEt_PADSV_AND_MORTALIZE:
13071             longval = (long)POPLONG(ss,ix);
13072             TOPLONG(nss,ix) = longval;
13073             ptr = POPPTR(ss,ix);
13074             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
13075             sv = (const SV *)POPPTR(ss,ix);
13076             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
13077             break;
13078         case SAVEt_SET_SVFLAGS:
13079             i = POPINT(ss,ix);
13080             TOPINT(nss,ix) = i;
13081             i = POPINT(ss,ix);
13082             TOPINT(nss,ix) = i;
13083             sv = (const SV *)POPPTR(ss,ix);
13084             TOPPTR(nss,ix) = sv_dup(sv, param);
13085             break;
13086         case SAVEt_COMPILE_WARNINGS:
13087             ptr = POPPTR(ss,ix);
13088             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
13089             break;
13090         case SAVEt_PARSER:
13091             ptr = POPPTR(ss,ix);
13092             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
13093             break;
13094         default:
13095             Perl_croak(aTHX_
13096                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
13097         }
13098     }
13099
13100     return nss;
13101 }
13102
13103
13104 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
13105  * flag to the result. This is done for each stash before cloning starts,
13106  * so we know which stashes want their objects cloned */
13107
13108 static void
13109 do_mark_cloneable_stash(pTHX_ SV *const sv)
13110 {
13111     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
13112     if (hvname) {
13113         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
13114         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
13115         if (cloner && GvCV(cloner)) {
13116             dSP;
13117             UV status;
13118
13119             ENTER;
13120             SAVETMPS;
13121             PUSHMARK(SP);
13122             mXPUSHs(newSVhek(hvname));
13123             PUTBACK;
13124             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
13125             SPAGAIN;
13126             status = POPu;
13127             PUTBACK;
13128             FREETMPS;
13129             LEAVE;
13130             if (status)
13131                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
13132         }
13133     }
13134 }
13135
13136
13137
13138 /*
13139 =for apidoc perl_clone
13140
13141 Create and return a new interpreter by cloning the current one.
13142
13143 perl_clone takes these flags as parameters:
13144
13145 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
13146 without it we only clone the data and zero the stacks,
13147 with it we copy the stacks and the new perl interpreter is
13148 ready to run at the exact same point as the previous one.
13149 The pseudo-fork code uses COPY_STACKS while the
13150 threads->create doesn't.
13151
13152 CLONEf_KEEP_PTR_TABLE -
13153 perl_clone keeps a ptr_table with the pointer of the old
13154 variable as a key and the new variable as a value,
13155 this allows it to check if something has been cloned and not
13156 clone it again but rather just use the value and increase the
13157 refcount.  If KEEP_PTR_TABLE is not set then perl_clone will kill
13158 the ptr_table using the function
13159 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
13160 reason to keep it around is if you want to dup some of your own
13161 variable who are outside the graph perl scans, example of this
13162 code is in threads.xs create.
13163
13164 CLONEf_CLONE_HOST -
13165 This is a win32 thing, it is ignored on unix, it tells perls
13166 win32host code (which is c++) to clone itself, this is needed on
13167 win32 if you want to run two threads at the same time,
13168 if you just want to do some stuff in a separate perl interpreter
13169 and then throw it away and return to the original one,
13170 you don't need to do anything.
13171
13172 =cut
13173 */
13174
13175 /* XXX the above needs expanding by someone who actually understands it ! */
13176 EXTERN_C PerlInterpreter *
13177 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
13178
13179 PerlInterpreter *
13180 perl_clone(PerlInterpreter *proto_perl, UV flags)
13181 {
13182    dVAR;
13183 #ifdef PERL_IMPLICIT_SYS
13184
13185     PERL_ARGS_ASSERT_PERL_CLONE;
13186
13187    /* perlhost.h so we need to call into it
13188    to clone the host, CPerlHost should have a c interface, sky */
13189
13190    if (flags & CLONEf_CLONE_HOST) {
13191        return perl_clone_host(proto_perl,flags);
13192    }
13193    return perl_clone_using(proto_perl, flags,
13194                             proto_perl->IMem,
13195                             proto_perl->IMemShared,
13196                             proto_perl->IMemParse,
13197                             proto_perl->IEnv,
13198                             proto_perl->IStdIO,
13199                             proto_perl->ILIO,
13200                             proto_perl->IDir,
13201                             proto_perl->ISock,
13202                             proto_perl->IProc);
13203 }
13204
13205 PerlInterpreter *
13206 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
13207                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
13208                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
13209                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
13210                  struct IPerlDir* ipD, struct IPerlSock* ipS,
13211                  struct IPerlProc* ipP)
13212 {
13213     /* XXX many of the string copies here can be optimized if they're
13214      * constants; they need to be allocated as common memory and just
13215      * their pointers copied. */
13216
13217     IV i;
13218     CLONE_PARAMS clone_params;
13219     CLONE_PARAMS* const param = &clone_params;
13220
13221     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
13222
13223     PERL_ARGS_ASSERT_PERL_CLONE_USING;
13224 #else           /* !PERL_IMPLICIT_SYS */
13225     IV i;
13226     CLONE_PARAMS clone_params;
13227     CLONE_PARAMS* param = &clone_params;
13228     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
13229
13230     PERL_ARGS_ASSERT_PERL_CLONE;
13231 #endif          /* PERL_IMPLICIT_SYS */
13232
13233     /* for each stash, determine whether its objects should be cloned */
13234     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
13235     PERL_SET_THX(my_perl);
13236
13237 #ifdef DEBUGGING
13238     PoisonNew(my_perl, 1, PerlInterpreter);
13239     PL_op = NULL;
13240     PL_curcop = NULL;
13241     PL_defstash = NULL; /* may be used by perl malloc() */
13242     PL_markstack = 0;
13243     PL_scopestack = 0;
13244     PL_scopestack_name = 0;
13245     PL_savestack = 0;
13246     PL_savestack_ix = 0;
13247     PL_savestack_max = -1;
13248     PL_sig_pending = 0;
13249     PL_parser = NULL;
13250     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
13251 #  ifdef DEBUG_LEAKING_SCALARS
13252     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
13253 #  endif
13254 #else   /* !DEBUGGING */
13255     Zero(my_perl, 1, PerlInterpreter);
13256 #endif  /* DEBUGGING */
13257
13258 #ifdef PERL_IMPLICIT_SYS
13259     /* host pointers */
13260     PL_Mem              = ipM;
13261     PL_MemShared        = ipMS;
13262     PL_MemParse         = ipMP;
13263     PL_Env              = ipE;
13264     PL_StdIO            = ipStd;
13265     PL_LIO              = ipLIO;
13266     PL_Dir              = ipD;
13267     PL_Sock             = ipS;
13268     PL_Proc             = ipP;
13269 #endif          /* PERL_IMPLICIT_SYS */
13270
13271
13272     param->flags = flags;
13273     /* Nothing in the core code uses this, but we make it available to
13274        extensions (using mg_dup).  */
13275     param->proto_perl = proto_perl;
13276     /* Likely nothing will use this, but it is initialised to be consistent
13277        with Perl_clone_params_new().  */
13278     param->new_perl = my_perl;
13279     param->unreferenced = NULL;
13280
13281
13282     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
13283
13284     PL_body_arenas = NULL;
13285     Zero(&PL_body_roots, 1, PL_body_roots);
13286     
13287     PL_sv_count         = 0;
13288     PL_sv_root          = NULL;
13289     PL_sv_arenaroot     = NULL;
13290
13291     PL_debug            = proto_perl->Idebug;
13292
13293     /* dbargs array probably holds garbage */
13294     PL_dbargs           = NULL;
13295
13296     PL_compiling = proto_perl->Icompiling;
13297
13298     /* pseudo environmental stuff */
13299     PL_origargc         = proto_perl->Iorigargc;
13300     PL_origargv         = proto_perl->Iorigargv;
13301
13302 #if !NO_TAINT_SUPPORT
13303     /* Set tainting stuff before PerlIO_debug can possibly get called */
13304     PL_tainting         = proto_perl->Itainting;
13305     PL_taint_warn       = proto_perl->Itaint_warn;
13306 #else
13307     PL_tainting         = FALSE;
13308     PL_taint_warn       = FALSE;
13309 #endif
13310
13311     PL_minus_c          = proto_perl->Iminus_c;
13312
13313     PL_localpatches     = proto_perl->Ilocalpatches;
13314     PL_splitstr         = proto_perl->Isplitstr;
13315     PL_minus_n          = proto_perl->Iminus_n;
13316     PL_minus_p          = proto_perl->Iminus_p;
13317     PL_minus_l          = proto_perl->Iminus_l;
13318     PL_minus_a          = proto_perl->Iminus_a;
13319     PL_minus_E          = proto_perl->Iminus_E;
13320     PL_minus_F          = proto_perl->Iminus_F;
13321     PL_doswitches       = proto_perl->Idoswitches;
13322     PL_dowarn           = proto_perl->Idowarn;
13323 #ifdef PERL_SAWAMPERSAND
13324     PL_sawampersand     = proto_perl->Isawampersand;
13325 #endif
13326     PL_unsafe           = proto_perl->Iunsafe;
13327     PL_perldb           = proto_perl->Iperldb;
13328     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
13329     PL_exit_flags       = proto_perl->Iexit_flags;
13330
13331     /* XXX time(&PL_basetime) when asked for? */
13332     PL_basetime         = proto_perl->Ibasetime;
13333
13334     PL_maxsysfd         = proto_perl->Imaxsysfd;
13335     PL_statusvalue      = proto_perl->Istatusvalue;
13336 #ifdef VMS
13337     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
13338 #else
13339     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
13340 #endif
13341
13342     /* RE engine related */
13343     PL_regmatch_slab    = NULL;
13344     PL_reg_curpm        = NULL;
13345
13346     PL_sub_generation   = proto_perl->Isub_generation;
13347
13348     /* funky return mechanisms */
13349     PL_forkprocess      = proto_perl->Iforkprocess;
13350
13351     /* internal state */
13352     PL_maxo             = proto_perl->Imaxo;
13353
13354     PL_main_start       = proto_perl->Imain_start;
13355     PL_eval_root        = proto_perl->Ieval_root;
13356     PL_eval_start       = proto_perl->Ieval_start;
13357
13358     PL_filemode         = proto_perl->Ifilemode;
13359     PL_lastfd           = proto_perl->Ilastfd;
13360     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
13361     PL_Argv             = NULL;
13362     PL_Cmd              = NULL;
13363     PL_gensym           = proto_perl->Igensym;
13364
13365     PL_laststatval      = proto_perl->Ilaststatval;
13366     PL_laststype        = proto_perl->Ilaststype;
13367     PL_mess_sv          = NULL;
13368
13369     PL_profiledata      = NULL;
13370
13371     PL_generation       = proto_perl->Igeneration;
13372
13373     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
13374     PL_in_clean_all     = proto_perl->Iin_clean_all;
13375
13376     PL_delaymagic_uid   = proto_perl->Idelaymagic_uid;
13377     PL_delaymagic_euid  = proto_perl->Idelaymagic_euid;
13378     PL_delaymagic_gid   = proto_perl->Idelaymagic_gid;
13379     PL_delaymagic_egid  = proto_perl->Idelaymagic_egid;
13380     PL_nomemok          = proto_perl->Inomemok;
13381     PL_an               = proto_perl->Ian;
13382     PL_evalseq          = proto_perl->Ievalseq;
13383     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
13384     PL_origalen         = proto_perl->Iorigalen;
13385
13386     PL_sighandlerp      = proto_perl->Isighandlerp;
13387
13388     PL_runops           = proto_perl->Irunops;
13389
13390     PL_subline          = proto_perl->Isubline;
13391
13392 #ifdef FCRYPT
13393     PL_cryptseen        = proto_perl->Icryptseen;
13394 #endif
13395
13396 #ifdef USE_LOCALE_COLLATE
13397     PL_collation_ix     = proto_perl->Icollation_ix;
13398     PL_collation_standard       = proto_perl->Icollation_standard;
13399     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
13400     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
13401 #endif /* USE_LOCALE_COLLATE */
13402
13403 #ifdef USE_LOCALE_NUMERIC
13404     PL_numeric_standard = proto_perl->Inumeric_standard;
13405     PL_numeric_local    = proto_perl->Inumeric_local;
13406 #endif /* !USE_LOCALE_NUMERIC */
13407
13408     /* Did the locale setup indicate UTF-8? */
13409     PL_utf8locale       = proto_perl->Iutf8locale;
13410     /* Unicode features (see perlrun/-C) */
13411     PL_unicode          = proto_perl->Iunicode;
13412
13413     /* Pre-5.8 signals control */
13414     PL_signals          = proto_perl->Isignals;
13415
13416     /* times() ticks per second */
13417     PL_clocktick        = proto_perl->Iclocktick;
13418
13419     /* Recursion stopper for PerlIO_find_layer */
13420     PL_in_load_module   = proto_perl->Iin_load_module;
13421
13422     /* sort() routine */
13423     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
13424
13425     /* Not really needed/useful since the reenrant_retint is "volatile",
13426      * but do it for consistency's sake. */
13427     PL_reentrant_retint = proto_perl->Ireentrant_retint;
13428
13429     /* Hooks to shared SVs and locks. */
13430     PL_sharehook        = proto_perl->Isharehook;
13431     PL_lockhook         = proto_perl->Ilockhook;
13432     PL_unlockhook       = proto_perl->Iunlockhook;
13433     PL_threadhook       = proto_perl->Ithreadhook;
13434     PL_destroyhook      = proto_perl->Idestroyhook;
13435     PL_signalhook       = proto_perl->Isignalhook;
13436
13437     PL_globhook         = proto_perl->Iglobhook;
13438
13439     /* swatch cache */
13440     PL_last_swash_hv    = NULL; /* reinits on demand */
13441     PL_last_swash_klen  = 0;
13442     PL_last_swash_key[0]= '\0';
13443     PL_last_swash_tmps  = (U8*)NULL;
13444     PL_last_swash_slen  = 0;
13445
13446     PL_srand_called     = proto_perl->Isrand_called;
13447     Copy(&(proto_perl->Irandom_state), &PL_random_state, 1, PL_RANDOM_STATE_TYPE);
13448
13449     if (flags & CLONEf_COPY_STACKS) {
13450         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
13451         PL_tmps_ix              = proto_perl->Itmps_ix;
13452         PL_tmps_max             = proto_perl->Itmps_max;
13453         PL_tmps_floor           = proto_perl->Itmps_floor;
13454
13455         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13456          * NOTE: unlike the others! */
13457         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
13458         PL_scopestack_max       = proto_perl->Iscopestack_max;
13459
13460         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
13461          * NOTE: unlike the others! */
13462         PL_savestack_ix         = proto_perl->Isavestack_ix;
13463         PL_savestack_max        = proto_perl->Isavestack_max;
13464     }
13465
13466     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
13467     PL_top_env          = &PL_start_env;
13468
13469     PL_op               = proto_perl->Iop;
13470
13471     PL_Sv               = NULL;
13472     PL_Xpv              = (XPV*)NULL;
13473     my_perl->Ina        = proto_perl->Ina;
13474
13475     PL_statbuf          = proto_perl->Istatbuf;
13476     PL_statcache        = proto_perl->Istatcache;
13477
13478 #ifdef HAS_TIMES
13479     PL_timesbuf         = proto_perl->Itimesbuf;
13480 #endif
13481
13482 #if !NO_TAINT_SUPPORT
13483     PL_tainted          = proto_perl->Itainted;
13484 #else
13485     PL_tainted          = FALSE;
13486 #endif
13487     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
13488
13489     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
13490
13491     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
13492     PL_restartop        = proto_perl->Irestartop;
13493     PL_in_eval          = proto_perl->Iin_eval;
13494     PL_delaymagic       = proto_perl->Idelaymagic;
13495     PL_phase            = proto_perl->Iphase;
13496     PL_localizing       = proto_perl->Ilocalizing;
13497
13498     PL_hv_fetch_ent_mh  = NULL;
13499     PL_modcount         = proto_perl->Imodcount;
13500     PL_lastgotoprobe    = NULL;
13501     PL_dumpindent       = proto_perl->Idumpindent;
13502
13503     PL_efloatbuf        = NULL;         /* reinits on demand */
13504     PL_efloatsize       = 0;                    /* reinits on demand */
13505
13506     /* regex stuff */
13507
13508     PL_colorset         = 0;            /* reinits PL_colors[] */
13509     /*PL_colors[6]      = {0,0,0,0,0,0};*/
13510
13511     /* Pluggable optimizer */
13512     PL_peepp            = proto_perl->Ipeepp;
13513     PL_rpeepp           = proto_perl->Irpeepp;
13514     /* op_free() hook */
13515     PL_opfreehook       = proto_perl->Iopfreehook;
13516
13517 #ifdef USE_REENTRANT_API
13518     /* XXX: things like -Dm will segfault here in perlio, but doing
13519      *  PERL_SET_CONTEXT(proto_perl);
13520      * breaks too many other things
13521      */
13522     Perl_reentrant_init(aTHX);
13523 #endif
13524
13525     /* create SV map for pointer relocation */
13526     PL_ptr_table = ptr_table_new();
13527
13528     /* initialize these special pointers as early as possible */
13529     init_constants();
13530     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
13531     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
13532     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
13533
13534     /* create (a non-shared!) shared string table */
13535     PL_strtab           = newHV();
13536     HvSHAREKEYS_off(PL_strtab);
13537     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
13538     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
13539
13540     Zero(PL_sv_consts, SV_CONSTS_COUNT, SV*);
13541
13542     /* This PV will be free'd special way so must set it same way op.c does */
13543     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
13544     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
13545
13546     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
13547     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
13548     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
13549     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
13550
13551     param->stashes      = newAV();  /* Setup array of objects to call clone on */
13552     /* This makes no difference to the implementation, as it always pushes
13553        and shifts pointers to other SVs without changing their reference
13554        count, with the array becoming empty before it is freed. However, it
13555        makes it conceptually clear what is going on, and will avoid some
13556        work inside av.c, filling slots between AvFILL() and AvMAX() with
13557        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
13558     AvREAL_off(param->stashes);
13559
13560     if (!(flags & CLONEf_COPY_STACKS)) {
13561         param->unreferenced = newAV();
13562     }
13563
13564 #ifdef PERLIO_LAYERS
13565     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
13566     PerlIO_clone(aTHX_ proto_perl, param);
13567 #endif
13568
13569     PL_envgv            = gv_dup_inc(proto_perl->Ienvgv, param);
13570     PL_incgv            = gv_dup_inc(proto_perl->Iincgv, param);
13571     PL_hintgv           = gv_dup_inc(proto_perl->Ihintgv, param);
13572     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
13573     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
13574     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
13575
13576     /* switches */
13577     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
13578     PL_apiversion       = sv_dup_inc(proto_perl->Iapiversion, param);
13579     PL_inplace          = SAVEPV(proto_perl->Iinplace);
13580     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
13581
13582     /* magical thingies */
13583
13584     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
13585
13586     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
13587     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
13588     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
13589
13590    
13591     /* Clone the regex array */
13592     /* ORANGE FIXME for plugins, probably in the SV dup code.
13593        newSViv(PTR2IV(CALLREGDUPE(
13594        INT2PTR(REGEXP *, SvIVX(regex)), param))))
13595     */
13596     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
13597     PL_regex_pad = AvARRAY(PL_regex_padav);
13598
13599     PL_stashpadmax      = proto_perl->Istashpadmax;
13600     PL_stashpadix       = proto_perl->Istashpadix ;
13601     Newx(PL_stashpad, PL_stashpadmax, HV *);
13602     {
13603         PADOFFSET o = 0;
13604         for (; o < PL_stashpadmax; ++o)
13605             PL_stashpad[o] = hv_dup(proto_perl->Istashpad[o], param);
13606     }
13607
13608     /* shortcuts to various I/O objects */
13609     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
13610     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
13611     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
13612     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
13613     PL_argvgv           = gv_dup_inc(proto_perl->Iargvgv, param);
13614     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
13615     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
13616
13617     /* shortcuts to regexp stuff */
13618     PL_replgv           = gv_dup_inc(proto_perl->Ireplgv, param);
13619
13620     /* shortcuts to misc objects */
13621     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
13622
13623     /* shortcuts to debugging objects */
13624     PL_DBgv             = gv_dup_inc(proto_perl->IDBgv, param);
13625     PL_DBline           = gv_dup_inc(proto_perl->IDBline, param);
13626     PL_DBsub            = gv_dup_inc(proto_perl->IDBsub, param);
13627     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
13628     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
13629     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
13630
13631     /* symbol tables */
13632     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
13633     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
13634     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
13635     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
13636     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
13637
13638     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
13639     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
13640     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
13641     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
13642     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
13643     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
13644     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
13645     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
13646
13647     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
13648
13649     /* subprocess state */
13650     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
13651
13652     if (proto_perl->Iop_mask)
13653         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
13654     else
13655         PL_op_mask      = NULL;
13656     /* PL_asserting        = proto_perl->Iasserting; */
13657
13658     /* current interpreter roots */
13659     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
13660     OP_REFCNT_LOCK;
13661     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
13662     OP_REFCNT_UNLOCK;
13663
13664     /* runtime control stuff */
13665     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
13666
13667     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
13668
13669     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
13670
13671     /* interpreter atexit processing */
13672     PL_exitlistlen      = proto_perl->Iexitlistlen;
13673     if (PL_exitlistlen) {
13674         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13675         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13676     }
13677     else
13678         PL_exitlist     = (PerlExitListEntry*)NULL;
13679
13680     PL_my_cxt_size = proto_perl->Imy_cxt_size;
13681     if (PL_my_cxt_size) {
13682         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
13683         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
13684 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13685         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
13686         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
13687 #endif
13688     }
13689     else {
13690         PL_my_cxt_list  = (void**)NULL;
13691 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13692         PL_my_cxt_keys  = (const char**)NULL;
13693 #endif
13694     }
13695     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
13696     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
13697     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
13698     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
13699
13700     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
13701
13702     PAD_CLONE_VARS(proto_perl, param);
13703
13704 #ifdef HAVE_INTERP_INTERN
13705     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
13706 #endif
13707
13708     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
13709
13710 #ifdef PERL_USES_PL_PIDSTATUS
13711     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
13712 #endif
13713     PL_osname           = SAVEPV(proto_perl->Iosname);
13714     PL_parser           = parser_dup(proto_perl->Iparser, param);
13715
13716     /* XXX this only works if the saved cop has already been cloned */
13717     if (proto_perl->Iparser) {
13718         PL_parser->saved_curcop = (COP*)any_dup(
13719                                     proto_perl->Iparser->saved_curcop,
13720                                     proto_perl);
13721     }
13722
13723     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
13724
13725 #ifdef USE_LOCALE_COLLATE
13726     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
13727 #endif /* USE_LOCALE_COLLATE */
13728
13729 #ifdef USE_LOCALE_NUMERIC
13730     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
13731     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
13732 #endif /* !USE_LOCALE_NUMERIC */
13733
13734     /* Unicode inversion lists */
13735     PL_Latin1           = sv_dup_inc(proto_perl->ILatin1, param);
13736     PL_UpperLatin1      = sv_dup_inc(proto_perl->IUpperLatin1, param);
13737     PL_AboveLatin1      = sv_dup_inc(proto_perl->IAboveLatin1, param);
13738
13739     PL_NonL1NonFinalFold = sv_dup_inc(proto_perl->INonL1NonFinalFold, param);
13740     PL_HasMultiCharFold= sv_dup_inc(proto_perl->IHasMultiCharFold, param);
13741
13742     /* utf8 character class swashes */
13743     for (i = 0; i < POSIX_SWASH_COUNT; i++) {
13744         PL_utf8_swash_ptrs[i] = sv_dup_inc(proto_perl->Iutf8_swash_ptrs[i], param);
13745     }
13746     for (i = 0; i < POSIX_CC_COUNT; i++) {
13747         PL_Posix_ptrs[i] = sv_dup_inc(proto_perl->IPosix_ptrs[i], param);
13748         PL_L1Posix_ptrs[i] = sv_dup_inc(proto_perl->IL1Posix_ptrs[i], param);
13749         PL_XPosix_ptrs[i] = sv_dup_inc(proto_perl->IXPosix_ptrs[i], param);
13750     }
13751     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
13752     PL_utf8_X_regular_begin     = sv_dup_inc(proto_perl->Iutf8_X_regular_begin, param);
13753     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
13754     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
13755     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
13756     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
13757     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
13758     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
13759     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
13760     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
13761     PL_utf8_perl_idcont = sv_dup_inc(proto_perl->Iutf8_perl_idcont, param);
13762     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
13763     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
13764     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
13765     PL_utf8_charname_begin = sv_dup_inc(proto_perl->Iutf8_charname_begin, param);
13766     PL_utf8_charname_continue = sv_dup_inc(proto_perl->Iutf8_charname_continue, param);
13767
13768     if (proto_perl->Ipsig_pend) {
13769         Newxz(PL_psig_pend, SIG_SIZE, int);
13770     }
13771     else {
13772         PL_psig_pend    = (int*)NULL;
13773     }
13774
13775     if (proto_perl->Ipsig_name) {
13776         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
13777         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
13778                             param);
13779         PL_psig_ptr = PL_psig_name + SIG_SIZE;
13780     }
13781     else {
13782         PL_psig_ptr     = (SV**)NULL;
13783         PL_psig_name    = (SV**)NULL;
13784     }
13785
13786     if (flags & CLONEf_COPY_STACKS) {
13787         Newx(PL_tmps_stack, PL_tmps_max, SV*);
13788         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
13789                             PL_tmps_ix+1, param);
13790
13791         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
13792         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
13793         Newxz(PL_markstack, i, I32);
13794         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
13795                                                   - proto_perl->Imarkstack);
13796         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
13797                                                   - proto_perl->Imarkstack);
13798         Copy(proto_perl->Imarkstack, PL_markstack,
13799              PL_markstack_ptr - PL_markstack + 1, I32);
13800
13801         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13802          * NOTE: unlike the others! */
13803         Newxz(PL_scopestack, PL_scopestack_max, I32);
13804         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
13805
13806 #ifdef DEBUGGING
13807         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
13808         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
13809 #endif
13810         /* reset stack AV to correct length before its duped via
13811          * PL_curstackinfo */
13812         AvFILLp(proto_perl->Icurstack) =
13813                             proto_perl->Istack_sp - proto_perl->Istack_base;
13814
13815         /* NOTE: si_dup() looks at PL_markstack */
13816         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
13817
13818         /* PL_curstack          = PL_curstackinfo->si_stack; */
13819         PL_curstack             = av_dup(proto_perl->Icurstack, param);
13820         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
13821
13822         /* next PUSHs() etc. set *(PL_stack_sp+1) */
13823         PL_stack_base           = AvARRAY(PL_curstack);
13824         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
13825                                                    - proto_perl->Istack_base);
13826         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
13827
13828         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
13829         PL_savestack            = ss_dup(proto_perl, param);
13830     }
13831     else {
13832         init_stacks();
13833         ENTER;                  /* perl_destruct() wants to LEAVE; */
13834     }
13835
13836     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
13837     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
13838
13839     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
13840     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
13841     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
13842     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
13843     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
13844     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
13845
13846     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
13847
13848     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
13849     PL_firstgv          = gv_dup_inc(proto_perl->Ifirstgv, param);
13850     PL_secondgv         = gv_dup_inc(proto_perl->Isecondgv, param);
13851
13852     PL_stashcache       = newHV();
13853
13854     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
13855                                             proto_perl->Iwatchaddr);
13856     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
13857     if (PL_debug && PL_watchaddr) {
13858         PerlIO_printf(Perl_debug_log,
13859           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
13860           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
13861           PTR2UV(PL_watchok));
13862     }
13863
13864     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
13865     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
13866     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
13867
13868     /* Call the ->CLONE method, if it exists, for each of the stashes
13869        identified by sv_dup() above.
13870     */
13871     while(av_len(param->stashes) != -1) {
13872         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
13873         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
13874         if (cloner && GvCV(cloner)) {
13875             dSP;
13876             ENTER;
13877             SAVETMPS;
13878             PUSHMARK(SP);
13879             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
13880             PUTBACK;
13881             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
13882             FREETMPS;
13883             LEAVE;
13884         }
13885     }
13886
13887     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
13888         ptr_table_free(PL_ptr_table);
13889         PL_ptr_table = NULL;
13890     }
13891
13892     if (!(flags & CLONEf_COPY_STACKS)) {
13893         unreferenced_to_tmp_stack(param->unreferenced);
13894     }
13895
13896     SvREFCNT_dec(param->stashes);
13897
13898     /* orphaned? eg threads->new inside BEGIN or use */
13899     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
13900         SvREFCNT_inc_simple_void(PL_compcv);
13901         SAVEFREESV(PL_compcv);
13902     }
13903
13904     return my_perl;
13905 }
13906
13907 static void
13908 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
13909 {
13910     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
13911     
13912     if (AvFILLp(unreferenced) > -1) {
13913         SV **svp = AvARRAY(unreferenced);
13914         SV **const last = svp + AvFILLp(unreferenced);
13915         SSize_t count = 0;
13916
13917         do {
13918             if (SvREFCNT(*svp) == 1)
13919                 ++count;
13920         } while (++svp <= last);
13921
13922         EXTEND_MORTAL(count);
13923         svp = AvARRAY(unreferenced);
13924
13925         do {
13926             if (SvREFCNT(*svp) == 1) {
13927                 /* Our reference is the only one to this SV. This means that
13928                    in this thread, the scalar effectively has a 0 reference.
13929                    That doesn't work (cleanup never happens), so donate our
13930                    reference to it onto the save stack. */
13931                 PL_tmps_stack[++PL_tmps_ix] = *svp;
13932             } else {
13933                 /* As an optimisation, because we are already walking the
13934                    entire array, instead of above doing either
13935                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
13936                    release our reference to the scalar, so that at the end of
13937                    the array owns zero references to the scalars it happens to
13938                    point to. We are effectively converting the array from
13939                    AvREAL() on to AvREAL() off. This saves the av_clear()
13940                    (triggered by the SvREFCNT_dec(unreferenced) below) from
13941                    walking the array a second time.  */
13942                 SvREFCNT_dec(*svp);
13943             }
13944
13945         } while (++svp <= last);
13946         AvREAL_off(unreferenced);
13947     }
13948     SvREFCNT_dec_NN(unreferenced);
13949 }
13950
13951 void
13952 Perl_clone_params_del(CLONE_PARAMS *param)
13953 {
13954     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
13955        happy: */
13956     PerlInterpreter *const to = param->new_perl;
13957     dTHXa(to);
13958     PerlInterpreter *const was = PERL_GET_THX;
13959
13960     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
13961
13962     if (was != to) {
13963         PERL_SET_THX(to);
13964     }
13965
13966     SvREFCNT_dec(param->stashes);
13967     if (param->unreferenced)
13968         unreferenced_to_tmp_stack(param->unreferenced);
13969
13970     Safefree(param);
13971
13972     if (was != to) {
13973         PERL_SET_THX(was);
13974     }
13975 }
13976
13977 CLONE_PARAMS *
13978 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
13979 {
13980     dVAR;
13981     /* Need to play this game, as newAV() can call safesysmalloc(), and that
13982        does a dTHX; to get the context from thread local storage.
13983        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
13984        a version that passes in my_perl.  */
13985     PerlInterpreter *const was = PERL_GET_THX;
13986     CLONE_PARAMS *param;
13987
13988     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
13989
13990     if (was != to) {
13991         PERL_SET_THX(to);
13992     }
13993
13994     /* Given that we've set the context, we can do this unshared.  */
13995     Newx(param, 1, CLONE_PARAMS);
13996
13997     param->flags = 0;
13998     param->proto_perl = from;
13999     param->new_perl = to;
14000     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
14001     AvREAL_off(param->stashes);
14002     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
14003
14004     if (was != to) {
14005         PERL_SET_THX(was);
14006     }
14007     return param;
14008 }
14009
14010 #endif /* USE_ITHREADS */
14011
14012 void
14013 Perl_init_constants(pTHX)
14014 {
14015     SvREFCNT(&PL_sv_undef)      = SvREFCNT_IMMORTAL;
14016     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
14017     SvANY(&PL_sv_undef)         = NULL;
14018
14019     SvANY(&PL_sv_no)            = new_XPVNV();
14020     SvREFCNT(&PL_sv_no)         = SvREFCNT_IMMORTAL;
14021     SvFLAGS(&PL_sv_no)          = SVt_PVNV|SVf_READONLY
14022                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
14023                                   |SVp_POK|SVf_POK;
14024
14025     SvANY(&PL_sv_yes)           = new_XPVNV();
14026     SvREFCNT(&PL_sv_yes)        = SvREFCNT_IMMORTAL;
14027     SvFLAGS(&PL_sv_yes)         = SVt_PVNV|SVf_READONLY
14028                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
14029                                   |SVp_POK|SVf_POK;
14030
14031     SvPV_set(&PL_sv_no, (char*)PL_No);
14032     SvCUR_set(&PL_sv_no, 0);
14033     SvLEN_set(&PL_sv_no, 0);
14034     SvIV_set(&PL_sv_no, 0);
14035     SvNV_set(&PL_sv_no, 0);
14036
14037     SvPV_set(&PL_sv_yes, (char*)PL_Yes);
14038     SvCUR_set(&PL_sv_yes, 1);
14039     SvLEN_set(&PL_sv_yes, 0);
14040     SvIV_set(&PL_sv_yes, 1);
14041     SvNV_set(&PL_sv_yes, 1);
14042 }
14043
14044 /*
14045 =head1 Unicode Support
14046
14047 =for apidoc sv_recode_to_utf8
14048
14049 The encoding is assumed to be an Encode object, on entry the PV
14050 of the sv is assumed to be octets in that encoding, and the sv
14051 will be converted into Unicode (and UTF-8).
14052
14053 If the sv already is UTF-8 (or if it is not POK), or if the encoding
14054 is not a reference, nothing is done to the sv.  If the encoding is not
14055 an C<Encode::XS> Encoding object, bad things will happen.
14056 (See F<lib/encoding.pm> and L<Encode>.)
14057
14058 The PV of the sv is returned.
14059
14060 =cut */
14061
14062 char *
14063 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
14064 {
14065     dVAR;
14066
14067     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
14068
14069     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
14070         SV *uni;
14071         STRLEN len;
14072         const char *s;
14073         dSP;
14074         ENTER;
14075         SAVETMPS;
14076         save_re_context();
14077         PUSHMARK(sp);
14078         EXTEND(SP, 3);
14079         PUSHs(encoding);
14080         PUSHs(sv);
14081 /*
14082   NI-S 2002/07/09
14083   Passing sv_yes is wrong - it needs to be or'ed set of constants
14084   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
14085   remove converted chars from source.
14086
14087   Both will default the value - let them.
14088
14089         XPUSHs(&PL_sv_yes);
14090 */
14091         PUTBACK;
14092         call_method("decode", G_SCALAR);
14093         SPAGAIN;
14094         uni = POPs;
14095         PUTBACK;
14096         s = SvPV_const(uni, len);
14097         if (s != SvPVX_const(sv)) {
14098             SvGROW(sv, len + 1);
14099             Move(s, SvPVX(sv), len + 1, char);
14100             SvCUR_set(sv, len);
14101         }
14102         FREETMPS;
14103         LEAVE;
14104         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
14105             /* clear pos and any utf8 cache */
14106             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
14107             if (mg)
14108                 mg->mg_len = -1;
14109             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
14110                 magic_setutf8(sv,mg); /* clear UTF8 cache */
14111         }
14112         SvUTF8_on(sv);
14113         return SvPVX(sv);
14114     }
14115     return SvPOKp(sv) ? SvPVX(sv) : NULL;
14116 }
14117
14118 /*
14119 =for apidoc sv_cat_decode
14120
14121 The encoding is assumed to be an Encode object, the PV of the ssv is
14122 assumed to be octets in that encoding and decoding the input starts
14123 from the position which (PV + *offset) pointed to.  The dsv will be
14124 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
14125 when the string tstr appears in decoding output or the input ends on
14126 the PV of the ssv.  The value which the offset points will be modified
14127 to the last input position on the ssv.
14128
14129 Returns TRUE if the terminator was found, else returns FALSE.
14130
14131 =cut */
14132
14133 bool
14134 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
14135                    SV *ssv, int *offset, char *tstr, int tlen)
14136 {
14137     dVAR;
14138     bool ret = FALSE;
14139
14140     PERL_ARGS_ASSERT_SV_CAT_DECODE;
14141
14142     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
14143         SV *offsv;
14144         dSP;
14145         ENTER;
14146         SAVETMPS;
14147         save_re_context();
14148         PUSHMARK(sp);
14149         EXTEND(SP, 6);
14150         PUSHs(encoding);
14151         PUSHs(dsv);
14152         PUSHs(ssv);
14153         offsv = newSViv(*offset);
14154         mPUSHs(offsv);
14155         mPUSHp(tstr, tlen);
14156         PUTBACK;
14157         call_method("cat_decode", G_SCALAR);
14158         SPAGAIN;
14159         ret = SvTRUE(TOPs);
14160         *offset = SvIV(offsv);
14161         PUTBACK;
14162         FREETMPS;
14163         LEAVE;
14164     }
14165     else
14166         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
14167     return ret;
14168
14169 }
14170
14171 /* ---------------------------------------------------------------------
14172  *
14173  * support functions for report_uninit()
14174  */
14175
14176 /* the maxiumum size of array or hash where we will scan looking
14177  * for the undefined element that triggered the warning */
14178
14179 #define FUV_MAX_SEARCH_SIZE 1000
14180
14181 /* Look for an entry in the hash whose value has the same SV as val;
14182  * If so, return a mortal copy of the key. */
14183
14184 STATIC SV*
14185 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
14186 {
14187     dVAR;
14188     HE **array;
14189     I32 i;
14190
14191     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
14192
14193     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
14194                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
14195         return NULL;
14196
14197     array = HvARRAY(hv);
14198
14199     for (i=HvMAX(hv); i>=0; i--) {
14200         HE *entry;
14201         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
14202             if (HeVAL(entry) != val)
14203                 continue;
14204             if (    HeVAL(entry) == &PL_sv_undef ||
14205                     HeVAL(entry) == &PL_sv_placeholder)
14206                 continue;
14207             if (!HeKEY(entry))
14208                 return NULL;
14209             if (HeKLEN(entry) == HEf_SVKEY)
14210                 return sv_mortalcopy(HeKEY_sv(entry));
14211             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
14212         }
14213     }
14214     return NULL;
14215 }
14216
14217 /* Look for an entry in the array whose value has the same SV as val;
14218  * If so, return the index, otherwise return -1. */
14219
14220 STATIC I32
14221 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
14222 {
14223     dVAR;
14224
14225     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
14226
14227     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
14228                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
14229         return -1;
14230
14231     if (val != &PL_sv_undef) {
14232         SV ** const svp = AvARRAY(av);
14233         I32 i;
14234
14235         for (i=AvFILLp(av); i>=0; i--)
14236             if (svp[i] == val)
14237                 return i;
14238     }
14239     return -1;
14240 }
14241
14242 /* varname(): return the name of a variable, optionally with a subscript.
14243  * If gv is non-zero, use the name of that global, along with gvtype (one
14244  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
14245  * targ.  Depending on the value of the subscript_type flag, return:
14246  */
14247
14248 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
14249 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
14250 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
14251 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
14252
14253 SV*
14254 Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
14255         const SV *const keyname, I32 aindex, int subscript_type)
14256 {
14257
14258     SV * const name = sv_newmortal();
14259     if (gv && isGV(gv)) {
14260         char buffer[2];
14261         buffer[0] = gvtype;
14262         buffer[1] = 0;
14263
14264         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
14265
14266         gv_fullname4(name, gv, buffer, 0);
14267
14268         if ((unsigned int)SvPVX(name)[1] <= 26) {
14269             buffer[0] = '^';
14270             buffer[1] = SvPVX(name)[1] + 'A' - 1;
14271
14272             /* Swap the 1 unprintable control character for the 2 byte pretty
14273                version - ie substr($name, 1, 1) = $buffer; */
14274             sv_insert(name, 1, 1, buffer, 2);
14275         }
14276     }
14277     else {
14278         CV * const cv = gv ? ((CV *)gv) : find_runcv(NULL);
14279         SV *sv;
14280         AV *av;
14281
14282         assert(!cv || SvTYPE(cv) == SVt_PVCV || SvTYPE(cv) == SVt_PVFM);
14283
14284         if (!cv || !CvPADLIST(cv))
14285             return NULL;
14286         av = *PadlistARRAY(CvPADLIST(cv));
14287         sv = *av_fetch(av, targ, FALSE);
14288         sv_setsv_flags(name, sv, 0);
14289     }
14290
14291     if (subscript_type == FUV_SUBSCRIPT_HASH) {
14292         SV * const sv = newSV(0);
14293         *SvPVX(name) = '$';
14294         Perl_sv_catpvf(aTHX_ name, "{%s}",
14295             pv_pretty(sv, SvPVX_const(keyname), SvCUR(keyname), 32, NULL, NULL,
14296                     PERL_PV_PRETTY_DUMP | PERL_PV_ESCAPE_UNI_DETECT ));
14297         SvREFCNT_dec_NN(sv);
14298     }
14299     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
14300         *SvPVX(name) = '$';
14301         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
14302     }
14303     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
14304         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
14305         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
14306     }
14307
14308     return name;
14309 }
14310
14311
14312 /*
14313 =for apidoc find_uninit_var
14314
14315 Find the name of the undefined variable (if any) that caused the operator
14316 to issue a "Use of uninitialized value" warning.
14317 If match is true, only return a name if its value matches uninit_sv.
14318 So roughly speaking, if a unary operator (such as OP_COS) generates a
14319 warning, then following the direct child of the op may yield an
14320 OP_PADSV or OP_GV that gives the name of the undefined variable.  On the
14321 other hand, with OP_ADD there are two branches to follow, so we only print
14322 the variable name if we get an exact match.
14323
14324 The name is returned as a mortal SV.
14325
14326 Assumes that PL_op is the op that originally triggered the error, and that
14327 PL_comppad/PL_curpad points to the currently executing pad.
14328
14329 =cut
14330 */
14331
14332 STATIC SV *
14333 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
14334                   bool match)
14335 {
14336     dVAR;
14337     SV *sv;
14338     const GV *gv;
14339     const OP *o, *o2, *kid;
14340
14341     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
14342                             uninit_sv == &PL_sv_placeholder)))
14343         return NULL;
14344
14345     switch (obase->op_type) {
14346
14347     case OP_RV2AV:
14348     case OP_RV2HV:
14349     case OP_PADAV:
14350     case OP_PADHV:
14351       {
14352         const bool pad  = (    obase->op_type == OP_PADAV
14353                             || obase->op_type == OP_PADHV
14354                             || obase->op_type == OP_PADRANGE
14355                           );
14356
14357         const bool hash = (    obase->op_type == OP_PADHV
14358                             || obase->op_type == OP_RV2HV
14359                             || (obase->op_type == OP_PADRANGE
14360                                 && SvTYPE(PAD_SVl(obase->op_targ)) == SVt_PVHV)
14361                           );
14362         I32 index = 0;
14363         SV *keysv = NULL;
14364         int subscript_type = FUV_SUBSCRIPT_WITHIN;
14365
14366         if (pad) { /* @lex, %lex */
14367             sv = PAD_SVl(obase->op_targ);
14368             gv = NULL;
14369         }
14370         else {
14371             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
14372             /* @global, %global */
14373                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
14374                 if (!gv)
14375                     break;
14376                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
14377             }
14378             else if (obase == PL_op) /* @{expr}, %{expr} */
14379                 return find_uninit_var(cUNOPx(obase)->op_first,
14380                                                     uninit_sv, match);
14381             else /* @{expr}, %{expr} as a sub-expression */
14382                 return NULL;
14383         }
14384
14385         /* attempt to find a match within the aggregate */
14386         if (hash) {
14387             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14388             if (keysv)
14389                 subscript_type = FUV_SUBSCRIPT_HASH;
14390         }
14391         else {
14392             index = find_array_subscript((const AV *)sv, uninit_sv);
14393             if (index >= 0)
14394                 subscript_type = FUV_SUBSCRIPT_ARRAY;
14395         }
14396
14397         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
14398             break;
14399
14400         return varname(gv, hash ? '%' : '@', obase->op_targ,
14401                                     keysv, index, subscript_type);
14402       }
14403
14404     case OP_RV2SV:
14405         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
14406             /* $global */
14407             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
14408             if (!gv || !GvSTASH(gv))
14409                 break;
14410             if (match && (GvSV(gv) != uninit_sv))
14411                 break;
14412             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
14413         }
14414         /* ${expr} */
14415         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
14416
14417     case OP_PADSV:
14418         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
14419             break;
14420         return varname(NULL, '$', obase->op_targ,
14421                                     NULL, 0, FUV_SUBSCRIPT_NONE);
14422
14423     case OP_GVSV:
14424         gv = cGVOPx_gv(obase);
14425         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
14426             break;
14427         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
14428
14429     case OP_AELEMFAST_LEX:
14430         if (match) {
14431             SV **svp;
14432             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
14433             if (!av || SvRMAGICAL(av))
14434                 break;
14435             svp = av_fetch(av, (I32)obase->op_private, FALSE);
14436             if (!svp || *svp != uninit_sv)
14437                 break;
14438         }
14439         return varname(NULL, '$', obase->op_targ,
14440                        NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14441     case OP_AELEMFAST:
14442         {
14443             gv = cGVOPx_gv(obase);
14444             if (!gv)
14445                 break;
14446             if (match) {
14447                 SV **svp;
14448                 AV *const av = GvAV(gv);
14449                 if (!av || SvRMAGICAL(av))
14450                     break;
14451                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
14452                 if (!svp || *svp != uninit_sv)
14453                     break;
14454             }
14455             return varname(gv, '$', 0,
14456                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14457         }
14458         break;
14459
14460     case OP_EXISTS:
14461         o = cUNOPx(obase)->op_first;
14462         if (!o || o->op_type != OP_NULL ||
14463                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
14464             break;
14465         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
14466
14467     case OP_AELEM:
14468     case OP_HELEM:
14469     {
14470         bool negate = FALSE;
14471
14472         if (PL_op == obase)
14473             /* $a[uninit_expr] or $h{uninit_expr} */
14474             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
14475
14476         gv = NULL;
14477         o = cBINOPx(obase)->op_first;
14478         kid = cBINOPx(obase)->op_last;
14479
14480         /* get the av or hv, and optionally the gv */
14481         sv = NULL;
14482         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
14483             sv = PAD_SV(o->op_targ);
14484         }
14485         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
14486                 && cUNOPo->op_first->op_type == OP_GV)
14487         {
14488             gv = cGVOPx_gv(cUNOPo->op_first);
14489             if (!gv)
14490                 break;
14491             sv = o->op_type
14492                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
14493         }
14494         if (!sv)
14495             break;
14496
14497         if (kid && kid->op_type == OP_NEGATE) {
14498             negate = TRUE;
14499             kid = cUNOPx(kid)->op_first;
14500         }
14501
14502         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
14503             /* index is constant */
14504             SV* kidsv;
14505             if (negate) {
14506                 kidsv = sv_2mortal(newSVpvs("-"));
14507                 sv_catsv(kidsv, cSVOPx_sv(kid));
14508             }
14509             else
14510                 kidsv = cSVOPx_sv(kid);
14511             if (match) {
14512                 if (SvMAGICAL(sv))
14513                     break;
14514                 if (obase->op_type == OP_HELEM) {
14515                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
14516                     if (!he || HeVAL(he) != uninit_sv)
14517                         break;
14518                 }
14519                 else {
14520                     SV * const  opsv = cSVOPx_sv(kid);
14521                     const IV  opsviv = SvIV(opsv);
14522                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
14523                         negate ? - opsviv : opsviv,
14524                         FALSE);
14525                     if (!svp || *svp != uninit_sv)
14526                         break;
14527                 }
14528             }
14529             if (obase->op_type == OP_HELEM)
14530                 return varname(gv, '%', o->op_targ,
14531                             kidsv, 0, FUV_SUBSCRIPT_HASH);
14532             else
14533                 return varname(gv, '@', o->op_targ, NULL,
14534                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14535                     FUV_SUBSCRIPT_ARRAY);
14536         }
14537         else  {
14538             /* index is an expression;
14539              * attempt to find a match within the aggregate */
14540             if (obase->op_type == OP_HELEM) {
14541                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14542                 if (keysv)
14543                     return varname(gv, '%', o->op_targ,
14544                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
14545             }
14546             else {
14547                 const I32 index
14548                     = find_array_subscript((const AV *)sv, uninit_sv);
14549                 if (index >= 0)
14550                     return varname(gv, '@', o->op_targ,
14551                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
14552             }
14553             if (match)
14554                 break;
14555             return varname(gv,
14556                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
14557                 ? '@' : '%',
14558                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
14559         }
14560         break;
14561     }
14562
14563     case OP_AASSIGN:
14564         /* only examine RHS */
14565         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
14566
14567     case OP_OPEN:
14568         o = cUNOPx(obase)->op_first;
14569         if (   o->op_type == OP_PUSHMARK
14570            || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)
14571         )
14572             o = o->op_sibling;
14573
14574         if (!o->op_sibling) {
14575             /* one-arg version of open is highly magical */
14576
14577             if (o->op_type == OP_GV) { /* open FOO; */
14578                 gv = cGVOPx_gv(o);
14579                 if (match && GvSV(gv) != uninit_sv)
14580                     break;
14581                 return varname(gv, '$', 0,
14582                             NULL, 0, FUV_SUBSCRIPT_NONE);
14583             }
14584             /* other possibilities not handled are:
14585              * open $x; or open my $x;  should return '${*$x}'
14586              * open expr;               should return '$'.expr ideally
14587              */
14588              break;
14589         }
14590         goto do_op;
14591
14592     /* ops where $_ may be an implicit arg */
14593     case OP_TRANS:
14594     case OP_TRANSR:
14595     case OP_SUBST:
14596     case OP_MATCH:
14597         if ( !(obase->op_flags & OPf_STACKED)) {
14598             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
14599                                  ? PAD_SVl(obase->op_targ)
14600                                  : DEFSV))
14601             {
14602                 sv = sv_newmortal();
14603                 sv_setpvs(sv, "$_");
14604                 return sv;
14605             }
14606         }
14607         goto do_op;
14608
14609     case OP_PRTF:
14610     case OP_PRINT:
14611     case OP_SAY:
14612         match = 1; /* print etc can return undef on defined args */
14613         /* skip filehandle as it can't produce 'undef' warning  */
14614         o = cUNOPx(obase)->op_first;
14615         if ((obase->op_flags & OPf_STACKED)
14616             &&
14617                (   o->op_type == OP_PUSHMARK
14618                || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)))
14619             o = o->op_sibling->op_sibling;
14620         goto do_op2;
14621
14622
14623     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
14624     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
14625
14626         /* the following ops are capable of returning PL_sv_undef even for
14627          * defined arg(s) */
14628
14629     case OP_BACKTICK:
14630     case OP_PIPE_OP:
14631     case OP_FILENO:
14632     case OP_BINMODE:
14633     case OP_TIED:
14634     case OP_GETC:
14635     case OP_SYSREAD:
14636     case OP_SEND:
14637     case OP_IOCTL:
14638     case OP_SOCKET:
14639     case OP_SOCKPAIR:
14640     case OP_BIND:
14641     case OP_CONNECT:
14642     case OP_LISTEN:
14643     case OP_ACCEPT:
14644     case OP_SHUTDOWN:
14645     case OP_SSOCKOPT:
14646     case OP_GETPEERNAME:
14647     case OP_FTRREAD:
14648     case OP_FTRWRITE:
14649     case OP_FTREXEC:
14650     case OP_FTROWNED:
14651     case OP_FTEREAD:
14652     case OP_FTEWRITE:
14653     case OP_FTEEXEC:
14654     case OP_FTEOWNED:
14655     case OP_FTIS:
14656     case OP_FTZERO:
14657     case OP_FTSIZE:
14658     case OP_FTFILE:
14659     case OP_FTDIR:
14660     case OP_FTLINK:
14661     case OP_FTPIPE:
14662     case OP_FTSOCK:
14663     case OP_FTBLK:
14664     case OP_FTCHR:
14665     case OP_FTTTY:
14666     case OP_FTSUID:
14667     case OP_FTSGID:
14668     case OP_FTSVTX:
14669     case OP_FTTEXT:
14670     case OP_FTBINARY:
14671     case OP_FTMTIME:
14672     case OP_FTATIME:
14673     case OP_FTCTIME:
14674     case OP_READLINK:
14675     case OP_OPEN_DIR:
14676     case OP_READDIR:
14677     case OP_TELLDIR:
14678     case OP_SEEKDIR:
14679     case OP_REWINDDIR:
14680     case OP_CLOSEDIR:
14681     case OP_GMTIME:
14682     case OP_ALARM:
14683     case OP_SEMGET:
14684     case OP_GETLOGIN:
14685     case OP_UNDEF:
14686     case OP_SUBSTR:
14687     case OP_AEACH:
14688     case OP_EACH:
14689     case OP_SORT:
14690     case OP_CALLER:
14691     case OP_DOFILE:
14692     case OP_PROTOTYPE:
14693     case OP_NCMP:
14694     case OP_SMARTMATCH:
14695     case OP_UNPACK:
14696     case OP_SYSOPEN:
14697     case OP_SYSSEEK:
14698         match = 1;
14699         goto do_op;
14700
14701     case OP_ENTERSUB:
14702     case OP_GOTO:
14703         /* XXX tmp hack: these two may call an XS sub, and currently
14704           XS subs don't have a SUB entry on the context stack, so CV and
14705           pad determination goes wrong, and BAD things happen. So, just
14706           don't try to determine the value under those circumstances.
14707           Need a better fix at dome point. DAPM 11/2007 */
14708         break;
14709
14710     case OP_FLIP:
14711     case OP_FLOP:
14712     {
14713         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
14714         if (gv && GvSV(gv) == uninit_sv)
14715             return newSVpvs_flags("$.", SVs_TEMP);
14716         goto do_op;
14717     }
14718
14719     case OP_POS:
14720         /* def-ness of rval pos() is independent of the def-ness of its arg */
14721         if ( !(obase->op_flags & OPf_MOD))
14722             break;
14723
14724     case OP_SCHOMP:
14725     case OP_CHOMP:
14726         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
14727             return newSVpvs_flags("${$/}", SVs_TEMP);
14728         /*FALLTHROUGH*/
14729
14730     default:
14731     do_op:
14732         if (!(obase->op_flags & OPf_KIDS))
14733             break;
14734         o = cUNOPx(obase)->op_first;
14735         
14736     do_op2:
14737         if (!o)
14738             break;
14739
14740         /* This loop checks all the kid ops, skipping any that cannot pos-
14741          * sibly be responsible for the uninitialized value; i.e., defined
14742          * constants and ops that return nothing.  If there is only one op
14743          * left that is not skipped, then we *know* it is responsible for
14744          * the uninitialized value.  If there is more than one op left, we
14745          * have to look for an exact match in the while() loop below.
14746          * Note that we skip padrange, because the individual pad ops that
14747          * it replaced are still in the tree, so we work on them instead.
14748          */
14749         o2 = NULL;
14750         for (kid=o; kid; kid = kid->op_sibling) {
14751             if (kid) {
14752                 const OPCODE type = kid->op_type;
14753                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
14754                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
14755                   || (type == OP_PUSHMARK)
14756                   || (type == OP_PADRANGE)
14757                 )
14758                 continue;
14759             }
14760             if (o2) { /* more than one found */
14761                 o2 = NULL;
14762                 break;
14763             }
14764             o2 = kid;
14765         }
14766         if (o2)
14767             return find_uninit_var(o2, uninit_sv, match);
14768
14769         /* scan all args */
14770         while (o) {
14771             sv = find_uninit_var(o, uninit_sv, 1);
14772             if (sv)
14773                 return sv;
14774             o = o->op_sibling;
14775         }
14776         break;
14777     }
14778     return NULL;
14779 }
14780
14781
14782 /*
14783 =for apidoc report_uninit
14784
14785 Print appropriate "Use of uninitialized variable" warning.
14786
14787 =cut
14788 */
14789
14790 void
14791 Perl_report_uninit(pTHX_ const SV *uninit_sv)
14792 {
14793     dVAR;
14794     if (PL_op) {
14795         SV* varname = NULL;
14796         if (uninit_sv && PL_curpad) {
14797             varname = find_uninit_var(PL_op, uninit_sv,0);
14798             if (varname)
14799                 sv_insert(varname, 0, 0, " ", 1);
14800         }
14801         /* diag_listed_as: Use of uninitialized value%s */
14802         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
14803                 SVfARG(varname ? varname : &PL_sv_no),
14804                 " in ", OP_DESC(PL_op));
14805     }
14806     else
14807         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
14808                     "", "", "");
14809 }
14810
14811 /*
14812  * Local variables:
14813  * c-indentation-style: bsd
14814  * c-basic-offset: 4
14815  * indent-tabs-mode: nil
14816  * End:
14817  *
14818  * ex: set ts=8 sts=4 sw=4 et:
14819  */