This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp_hot.c: method_common is UTF-8 aware.
[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 #define FCALL *f
45
46 #ifdef __Lynx__
47 /* Missing proto on LynxOS */
48   char *gconvert(double, int, int,  char *);
49 #endif
50
51 #ifdef PERL_UTF8_CACHE_ASSERT
52 /* if adding more checks watch out for the following tests:
53  *   t/op/index.t t/op/length.t t/op/pat.t t/op/substr.t
54  *   lib/utf8.t lib/Unicode/Collate/t/index.t
55  * --jhi
56  */
57 #   define ASSERT_UTF8_CACHE(cache) \
58     STMT_START { if (cache) { assert((cache)[0] <= (cache)[1]); \
59                               assert((cache)[2] <= (cache)[3]); \
60                               assert((cache)[3] <= (cache)[1]);} \
61                               } STMT_END
62 #else
63 #   define ASSERT_UTF8_CACHE(cache) NOOP
64 #endif
65
66 #ifdef PERL_OLD_COPY_ON_WRITE
67 #define SV_COW_NEXT_SV(sv)      INT2PTR(SV *,SvUVX(sv))
68 #define SV_COW_NEXT_SV_SET(current,next)        SvUV_set(current, PTR2UV(next))
69 /* This is a pessimistic view. Scalar must be purely a read-write PV to copy-
70    on-write.  */
71 #endif
72
73 /* ============================================================================
74
75 =head1 Allocation and deallocation of SVs.
76
77 An SV (or AV, HV, etc.) is allocated in two parts: the head (struct
78 sv, av, hv...) contains type and reference count information, and for
79 many types, a pointer to the body (struct xrv, xpv, xpviv...), which
80 contains fields specific to each type.  Some types store all they need
81 in the head, so don't have a body.
82
83 In all but the most memory-paranoid configurations (ex: PURIFY), heads
84 and bodies are allocated out of arenas, which by default are
85 approximately 4K chunks of memory parcelled up into N heads or bodies.
86 Sv-bodies are allocated by their sv-type, guaranteeing size
87 consistency needed to allocate safely from arrays.
88
89 For SV-heads, the first slot in each arena is reserved, and holds a
90 link to the next arena, some flags, and a note of the number of slots.
91 Snaked through each arena chain is a linked list of free items; when
92 this becomes empty, an extra arena is allocated and divided up into N
93 items which are threaded into the free list.
94
95 SV-bodies are similar, but they use arena-sets by default, which
96 separate the link and info from the arena itself, and reclaim the 1st
97 slot in the arena.  SV-bodies are further described later.
98
99 The following global variables are associated with arenas:
100
101     PL_sv_arenaroot     pointer to list of SV arenas
102     PL_sv_root          pointer to list of free SV structures
103
104     PL_body_arenas      head of linked-list of body arenas
105     PL_body_roots[]     array of pointers to list of free bodies of svtype
106                         arrays are indexed by the svtype needed
107
108 A few special SV heads are not allocated from an arena, but are
109 instead directly created in the interpreter structure, eg PL_sv_undef.
110 The size of arenas can be changed from the default by setting
111 PERL_ARENA_SIZE appropriately at compile time.
112
113 The SV arena serves the secondary purpose of allowing still-live SVs
114 to be located and destroyed during final cleanup.
115
116 At the lowest level, the macros new_SV() and del_SV() grab and free
117 an SV head.  (If debugging with -DD, del_SV() calls the function S_del_sv()
118 to return the SV to the free list with error checking.) new_SV() calls
119 more_sv() / sv_add_arena() to add an extra arena if the free list is empty.
120 SVs in the free list have their SvTYPE field set to all ones.
121
122 At the time of very final cleanup, sv_free_arenas() is called from
123 perl_destruct() to physically free all the arenas allocated since the
124 start of the interpreter.
125
126 The function visit() scans the SV arenas list, and calls a specified
127 function for each SV it finds which is still live - ie which has an SvTYPE
128 other than all 1's, and a non-zero SvREFCNT. visit() is used by the
129 following functions (specified as [function that calls visit()] / [function
130 called by visit() for each SV]):
131
132     sv_report_used() / do_report_used()
133                         dump all remaining SVs (debugging aid)
134
135     sv_clean_objs() / do_clean_objs(),do_clean_named_objs(),
136                       do_clean_named_io_objs()
137                         Attempt to free all objects pointed to by RVs,
138                         and try to do the same for all objects indirectly
139                         referenced by typeglobs too.  Called once from
140                         perl_destruct(), prior to calling sv_clean_all()
141                         below.
142
143     sv_clean_all() / do_clean_all()
144                         SvREFCNT_dec(sv) each remaining SV, possibly
145                         triggering an sv_free(). It also sets the
146                         SVf_BREAK flag on the SV to indicate that the
147                         refcnt has been artificially lowered, and thus
148                         stopping sv_free() from giving spurious warnings
149                         about SVs which unexpectedly have a refcnt
150                         of zero.  called repeatedly from perl_destruct()
151                         until there are no SVs left.
152
153 =head2 Arena allocator API Summary
154
155 Private API to rest of sv.c
156
157     new_SV(),  del_SV(),
158
159     new_XPVNV(), del_XPVGV(),
160     etc
161
162 Public API:
163
164     sv_report_used(), sv_clean_objs(), sv_clean_all(), sv_free_arenas()
165
166 =cut
167
168  * ========================================================================= */
169
170 /*
171  * "A time to plant, and a time to uproot what was planted..."
172  */
173
174 #ifdef PERL_MEM_LOG
175 #  define MEM_LOG_NEW_SV(sv, file, line, func)  \
176             Perl_mem_log_new_sv(sv, file, line, func)
177 #  define MEM_LOG_DEL_SV(sv, file, line, func)  \
178             Perl_mem_log_del_sv(sv, file, line, func)
179 #else
180 #  define MEM_LOG_NEW_SV(sv, file, line, func)  NOOP
181 #  define MEM_LOG_DEL_SV(sv, file, line, func)  NOOP
182 #endif
183
184 #ifdef DEBUG_LEAKING_SCALARS
185 #  define FREE_SV_DEBUG_FILE(sv) Safefree((sv)->sv_debug_file)
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 ? savepv(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     register SV* sv;
369     register 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         register const SV * const svend = &sva[SvREFCNT(sva)];
414         register 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                 (FCALL)(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(target);
479             }
480         }
481     }
482
483     /* XXX Might want to check arrays, etc. */
484 }
485
486
487 /* clear any slots in a GV which hold objects - except IO;
488  * called by sv_clean_objs() for each live GV */
489
490 static void
491 do_clean_named_objs(pTHX_ SV *const sv)
492 {
493     dVAR;
494     SV *obj;
495     assert(SvTYPE(sv) == SVt_PVGV);
496     assert(isGV_with_GP(sv));
497     if (!GvGP(sv))
498         return;
499
500     /* freeing GP entries may indirectly free the current GV;
501      * hold onto it while we mess with the GP slots */
502     SvREFCNT_inc(sv);
503
504     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
505         DEBUG_D((PerlIO_printf(Perl_debug_log,
506                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
507         GvSV(sv) = NULL;
508         SvREFCNT_dec(obj);
509     }
510     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
511         DEBUG_D((PerlIO_printf(Perl_debug_log,
512                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
513         GvAV(sv) = NULL;
514         SvREFCNT_dec(obj);
515     }
516     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
517         DEBUG_D((PerlIO_printf(Perl_debug_log,
518                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
519         GvHV(sv) = NULL;
520         SvREFCNT_dec(obj);
521     }
522     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
523         DEBUG_D((PerlIO_printf(Perl_debug_log,
524                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
525         GvCV_set(sv, NULL);
526         SvREFCNT_dec(obj);
527     }
528     SvREFCNT_dec(sv); /* undo the inc above */
529 }
530
531 /* clear any IO slots in a GV which hold objects (except stderr, defout);
532  * called by sv_clean_objs() for each live GV */
533
534 static void
535 do_clean_named_io_objs(pTHX_ SV *const sv)
536 {
537     dVAR;
538     SV *obj;
539     assert(SvTYPE(sv) == SVt_PVGV);
540     assert(isGV_with_GP(sv));
541     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
542         return;
543
544     SvREFCNT_inc(sv);
545     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
546         DEBUG_D((PerlIO_printf(Perl_debug_log,
547                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
548         GvIOp(sv) = NULL;
549         SvREFCNT_dec(obj);
550     }
551     SvREFCNT_dec(sv); /* undo the inc above */
552 }
553
554 /* Void wrapper to pass to visit() */
555 static void
556 do_curse(pTHX_ SV * const sv) {
557     if ((PL_stderrgv && GvGP(PL_stderrgv) && (SV*)GvIO(PL_stderrgv) == sv)
558      || (PL_defoutgv && GvGP(PL_defoutgv) && (SV*)GvIO(PL_defoutgv) == sv))
559         return;
560     (void)curse(sv, 0);
561 }
562
563 /*
564 =for apidoc sv_clean_objs
565
566 Attempt to destroy all objects not yet freed
567
568 =cut
569 */
570
571 void
572 Perl_sv_clean_objs(pTHX)
573 {
574     dVAR;
575     GV *olddef, *olderr;
576     PL_in_clean_objs = TRUE;
577     visit(do_clean_objs, SVf_ROK, SVf_ROK);
578     /* Some barnacles may yet remain, clinging to typeglobs.
579      * Run the non-IO destructors first: they may want to output
580      * error messages, close files etc */
581     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
582     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
583     /* And if there are some very tenacious barnacles clinging to arrays,
584        closures, or what have you.... */
585     visit(do_curse, SVs_OBJECT, SVs_OBJECT);
586     olddef = PL_defoutgv;
587     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
588     if (olddef && isGV_with_GP(olddef))
589         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
590     olderr = PL_stderrgv;
591     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
592     if (olderr && isGV_with_GP(olderr))
593         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
594     SvREFCNT_dec(olddef);
595     PL_in_clean_objs = FALSE;
596 }
597
598 /* called by sv_clean_all() for each live SV */
599
600 static void
601 do_clean_all(pTHX_ SV *const sv)
602 {
603     dVAR;
604     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
605         /* don't clean pid table and strtab */
606         return;
607     }
608     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
609     SvFLAGS(sv) |= SVf_BREAK;
610     SvREFCNT_dec(sv);
611 }
612
613 /*
614 =for apidoc sv_clean_all
615
616 Decrement the refcnt of each remaining SV, possibly triggering a
617 cleanup. This function may have to be called multiple times to free
618 SVs which are in complex self-referential hierarchies.
619
620 =cut
621 */
622
623 I32
624 Perl_sv_clean_all(pTHX)
625 {
626     dVAR;
627     I32 cleaned;
628     PL_in_clean_all = TRUE;
629     cleaned = visit(do_clean_all, 0,0);
630     return cleaned;
631 }
632
633 /*
634   ARENASETS: a meta-arena implementation which separates arena-info
635   into struct arena_set, which contains an array of struct
636   arena_descs, each holding info for a single arena.  By separating
637   the meta-info from the arena, we recover the 1st slot, formerly
638   borrowed for list management.  The arena_set is about the size of an
639   arena, avoiding the needless malloc overhead of a naive linked-list.
640
641   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
642   memory in the last arena-set (1/2 on average).  In trade, we get
643   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
644   smaller types).  The recovery of the wasted space allows use of
645   small arenas for large, rare body types, by changing array* fields
646   in body_details_by_type[] below.
647 */
648 struct arena_desc {
649     char       *arena;          /* the raw storage, allocated aligned */
650     size_t      size;           /* its size ~4k typ */
651     svtype      utype;          /* bodytype stored in arena */
652 };
653
654 struct arena_set;
655
656 /* Get the maximum number of elements in set[] such that struct arena_set
657    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
658    therefore likely to be 1 aligned memory page.  */
659
660 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
661                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
662
663 struct arena_set {
664     struct arena_set* next;
665     unsigned int   set_size;    /* ie ARENAS_PER_SET */
666     unsigned int   curr;        /* index of next available arena-desc */
667     struct arena_desc set[ARENAS_PER_SET];
668 };
669
670 /*
671 =for apidoc sv_free_arenas
672
673 Deallocate the memory used by all arenas. Note that all the individual SV
674 heads and bodies within the arenas must already have been freed.
675
676 =cut
677 */
678 void
679 Perl_sv_free_arenas(pTHX)
680 {
681     dVAR;
682     SV* sva;
683     SV* svanext;
684     unsigned int i;
685
686     /* Free arenas here, but be careful about fake ones.  (We assume
687        contiguity of the fake ones with the corresponding real ones.) */
688
689     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
690         svanext = MUTABLE_SV(SvANY(sva));
691         while (svanext && SvFAKE(svanext))
692             svanext = MUTABLE_SV(SvANY(svanext));
693
694         if (!SvFAKE(sva))
695             Safefree(sva);
696     }
697
698     {
699         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
700
701         while (aroot) {
702             struct arena_set *current = aroot;
703             i = aroot->curr;
704             while (i--) {
705                 assert(aroot->set[i].arena);
706                 Safefree(aroot->set[i].arena);
707             }
708             aroot = aroot->next;
709             Safefree(current);
710         }
711     }
712     PL_body_arenas = 0;
713
714     i = PERL_ARENA_ROOTS_SIZE;
715     while (i--)
716         PL_body_roots[i] = 0;
717
718     PL_sv_arenaroot = 0;
719     PL_sv_root = 0;
720 }
721
722 /*
723   Here are mid-level routines that manage the allocation of bodies out
724   of the various arenas.  There are 5 kinds of arenas:
725
726   1. SV-head arenas, which are discussed and handled above
727   2. regular body arenas
728   3. arenas for reduced-size bodies
729   4. Hash-Entry arenas
730
731   Arena types 2 & 3 are chained by body-type off an array of
732   arena-root pointers, which is indexed by svtype.  Some of the
733   larger/less used body types are malloced singly, since a large
734   unused block of them is wasteful.  Also, several svtypes dont have
735   bodies; the data fits into the sv-head itself.  The arena-root
736   pointer thus has a few unused root-pointers (which may be hijacked
737   later for arena types 4,5)
738
739   3 differs from 2 as an optimization; some body types have several
740   unused fields in the front of the structure (which are kept in-place
741   for consistency).  These bodies can be allocated in smaller chunks,
742   because the leading fields arent accessed.  Pointers to such bodies
743   are decremented to point at the unused 'ghost' memory, knowing that
744   the pointers are used with offsets to the real memory.
745
746
747 =head1 SV-Body Allocation
748
749 Allocation of SV-bodies is similar to SV-heads, differing as follows;
750 the allocation mechanism is used for many body types, so is somewhat
751 more complicated, it uses arena-sets, and has no need for still-live
752 SV detection.
753
754 At the outermost level, (new|del)_X*V macros return bodies of the
755 appropriate type.  These macros call either (new|del)_body_type or
756 (new|del)_body_allocated macro pairs, depending on specifics of the
757 type.  Most body types use the former pair, the latter pair is used to
758 allocate body types with "ghost fields".
759
760 "ghost fields" are fields that are unused in certain types, and
761 consequently don't need to actually exist.  They are declared because
762 they're part of a "base type", which allows use of functions as
763 methods.  The simplest examples are AVs and HVs, 2 aggregate types
764 which don't use the fields which support SCALAR semantics.
765
766 For these types, the arenas are carved up into appropriately sized
767 chunks, we thus avoid wasted memory for those unaccessed members.
768 When bodies are allocated, we adjust the pointer back in memory by the
769 size of the part not allocated, so it's as if we allocated the full
770 structure.  (But things will all go boom if you write to the part that
771 is "not there", because you'll be overwriting the last members of the
772 preceding structure in memory.)
773
774 We calculate the correction using the STRUCT_OFFSET macro on the first
775 member present. If the allocated structure is smaller (no initial NV
776 actually allocated) then the net effect is to subtract the size of the NV
777 from the pointer, to return a new pointer as if an initial NV were actually
778 allocated. (We were using structures named *_allocated for this, but
779 this turned out to be a subtle bug, because a structure without an NV
780 could have a lower alignment constraint, but the compiler is allowed to
781 optimised accesses based on the alignment constraint of the actual pointer
782 to the full structure, for example, using a single 64 bit load instruction
783 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
784
785 This is the same trick as was used for NV and IV bodies. Ironically it
786 doesn't need to be used for NV bodies any more, because NV is now at
787 the start of the structure. IV bodies don't need it either, because
788 they are no longer allocated.
789
790 In turn, the new_body_* allocators call S_new_body(), which invokes
791 new_body_inline macro, which takes a lock, and takes a body off the
792 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
793 necessary to refresh an empty list.  Then the lock is released, and
794 the body is returned.
795
796 Perl_more_bodies allocates a new arena, and carves it up into an array of N
797 bodies, which it strings into a linked list.  It looks up arena-size
798 and body-size from the body_details table described below, thus
799 supporting the multiple body-types.
800
801 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
802 the (new|del)_X*V macros are mapped directly to malloc/free.
803
804 For each sv-type, struct body_details bodies_by_type[] carries
805 parameters which control these aspects of SV handling:
806
807 Arena_size determines whether arenas are used for this body type, and if
808 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
809 zero, forcing individual mallocs and frees.
810
811 Body_size determines how big a body is, and therefore how many fit into
812 each arena.  Offset carries the body-pointer adjustment needed for
813 "ghost fields", and is used in *_allocated macros.
814
815 But its main purpose is to parameterize info needed in
816 Perl_sv_upgrade().  The info here dramatically simplifies the function
817 vs the implementation in 5.8.8, making it table-driven.  All fields
818 are used for this, except for arena_size.
819
820 For the sv-types that have no bodies, arenas are not used, so those
821 PL_body_roots[sv_type] are unused, and can be overloaded.  In
822 something of a special case, SVt_NULL is borrowed for HE arenas;
823 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
824 bodies_by_type[SVt_NULL] slot is not used, as the table is not
825 available in hv.c.
826
827 */
828
829 struct body_details {
830     U8 body_size;       /* Size to allocate  */
831     U8 copy;            /* Size of structure to copy (may be shorter)  */
832     U8 offset;
833     unsigned int type : 4;          /* We have space for a sanity check.  */
834     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
835     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
836     unsigned int arena : 1;         /* Allocated from an arena */
837     size_t arena_size;              /* Size of arena to allocate */
838 };
839
840 #define HADNV FALSE
841 #define NONV TRUE
842
843
844 #ifdef PURIFY
845 /* With -DPURFIY we allocate everything directly, and don't use arenas.
846    This seems a rather elegant way to simplify some of the code below.  */
847 #define HASARENA FALSE
848 #else
849 #define HASARENA TRUE
850 #endif
851 #define NOARENA FALSE
852
853 /* Size the arenas to exactly fit a given number of bodies.  A count
854    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
855    simplifying the default.  If count > 0, the arena is sized to fit
856    only that many bodies, allowing arenas to be used for large, rare
857    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
858    limited by PERL_ARENA_SIZE, so we can safely oversize the
859    declarations.
860  */
861 #define FIT_ARENA0(body_size)                           \
862     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
863 #define FIT_ARENAn(count,body_size)                     \
864     ( count * body_size <= PERL_ARENA_SIZE)             \
865     ? count * body_size                                 \
866     : FIT_ARENA0 (body_size)
867 #define FIT_ARENA(count,body_size)                      \
868     count                                               \
869     ? FIT_ARENAn (count, body_size)                     \
870     : FIT_ARENA0 (body_size)
871
872 /* Calculate the length to copy. Specifically work out the length less any
873    final padding the compiler needed to add.  See the comment in sv_upgrade
874    for why copying the padding proved to be a bug.  */
875
876 #define copy_length(type, last_member) \
877         STRUCT_OFFSET(type, last_member) \
878         + sizeof (((type*)SvANY((const SV *)0))->last_member)
879
880 static const struct body_details bodies_by_type[] = {
881     /* HEs use this offset for their arena.  */
882     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
883
884     /* The bind placeholder pretends to be an RV for now.
885        Also it's marked as "can't upgrade" to stop anyone using it before it's
886        implemented.  */
887     { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
888
889     /* IVs are in the head, so the allocation size is 0.  */
890     { 0,
891       sizeof(IV), /* This is used to copy out the IV body.  */
892       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
893       NOARENA /* IVS don't need an arena  */, 0
894     },
895
896     { sizeof(NV), sizeof(NV),
897       STRUCT_OFFSET(XPVNV, xnv_u),
898       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
899
900     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
901       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
902       + STRUCT_OFFSET(XPV, xpv_cur),
903       SVt_PV, FALSE, NONV, HASARENA,
904       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
905
906     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
907       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
908       + STRUCT_OFFSET(XPV, xpv_cur),
909       SVt_PVIV, FALSE, NONV, HASARENA,
910       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
911
912     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
913       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
914       + STRUCT_OFFSET(XPV, xpv_cur),
915       SVt_PVNV, FALSE, HADNV, HASARENA,
916       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
917
918     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
919       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
920
921     { sizeof(regexp),
922       sizeof(regexp),
923       0,
924       SVt_REGEXP, FALSE, NONV, HASARENA,
925       FIT_ARENA(0, sizeof(regexp))
926     },
927
928     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
929       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
930     
931     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
932       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
933
934     { sizeof(XPVAV),
935       copy_length(XPVAV, xav_alloc),
936       0,
937       SVt_PVAV, TRUE, NONV, HASARENA,
938       FIT_ARENA(0, sizeof(XPVAV)) },
939
940     { sizeof(XPVHV),
941       copy_length(XPVHV, xhv_max),
942       0,
943       SVt_PVHV, TRUE, NONV, HASARENA,
944       FIT_ARENA(0, sizeof(XPVHV)) },
945
946     { sizeof(XPVCV),
947       sizeof(XPVCV),
948       0,
949       SVt_PVCV, TRUE, NONV, HASARENA,
950       FIT_ARENA(0, sizeof(XPVCV)) },
951
952     { sizeof(XPVFM),
953       sizeof(XPVFM),
954       0,
955       SVt_PVFM, TRUE, NONV, NOARENA,
956       FIT_ARENA(20, sizeof(XPVFM)) },
957
958     { sizeof(XPVIO),
959       sizeof(XPVIO),
960       0,
961       SVt_PVIO, TRUE, NONV, HASARENA,
962       FIT_ARENA(24, sizeof(XPVIO)) },
963 };
964
965 #define new_body_allocated(sv_type)             \
966     (void *)((char *)S_new_body(aTHX_ sv_type)  \
967              - bodies_by_type[sv_type].offset)
968
969 /* return a thing to the free list */
970
971 #define del_body(thing, root)                           \
972     STMT_START {                                        \
973         void ** const thing_copy = (void **)thing;      \
974         *thing_copy = *root;                            \
975         *root = (void*)thing_copy;                      \
976     } STMT_END
977
978 #ifdef PURIFY
979
980 #define new_XNV()       safemalloc(sizeof(XPVNV))
981 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
982 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
983
984 #define del_XPVGV(p)    safefree(p)
985
986 #else /* !PURIFY */
987
988 #define new_XNV()       new_body_allocated(SVt_NV)
989 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
990 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
991
992 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
993                                  &PL_body_roots[SVt_PVGV])
994
995 #endif /* PURIFY */
996
997 /* no arena for you! */
998
999 #define new_NOARENA(details) \
1000         safemalloc((details)->body_size + (details)->offset)
1001 #define new_NOARENAZ(details) \
1002         safecalloc((details)->body_size + (details)->offset, 1)
1003
1004 void *
1005 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1006                   const size_t arena_size)
1007 {
1008     dVAR;
1009     void ** const root = &PL_body_roots[sv_type];
1010     struct arena_desc *adesc;
1011     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1012     unsigned int curr;
1013     char *start;
1014     const char *end;
1015     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1016 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1017     static bool done_sanity_check;
1018
1019     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1020      * variables like done_sanity_check. */
1021     if (!done_sanity_check) {
1022         unsigned int i = SVt_LAST;
1023
1024         done_sanity_check = TRUE;
1025
1026         while (i--)
1027             assert (bodies_by_type[i].type == i);
1028     }
1029 #endif
1030
1031     assert(arena_size);
1032
1033     /* may need new arena-set to hold new arena */
1034     if (!aroot || aroot->curr >= aroot->set_size) {
1035         struct arena_set *newroot;
1036         Newxz(newroot, 1, struct arena_set);
1037         newroot->set_size = ARENAS_PER_SET;
1038         newroot->next = aroot;
1039         aroot = newroot;
1040         PL_body_arenas = (void *) newroot;
1041         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1042     }
1043
1044     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1045     curr = aroot->curr++;
1046     adesc = &(aroot->set[curr]);
1047     assert(!adesc->arena);
1048     
1049     Newx(adesc->arena, good_arena_size, char);
1050     adesc->size = good_arena_size;
1051     adesc->utype = sv_type;
1052     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
1053                           curr, (void*)adesc->arena, (UV)good_arena_size));
1054
1055     start = (char *) adesc->arena;
1056
1057     /* Get the address of the byte after the end of the last body we can fit.
1058        Remember, this is integer division:  */
1059     end = start + good_arena_size / body_size * body_size;
1060
1061     /* computed count doesn't reflect the 1st slot reservation */
1062 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1063     DEBUG_m(PerlIO_printf(Perl_debug_log,
1064                           "arena %p end %p arena-size %d (from %d) type %d "
1065                           "size %d ct %d\n",
1066                           (void*)start, (void*)end, (int)good_arena_size,
1067                           (int)arena_size, sv_type, (int)body_size,
1068                           (int)good_arena_size / (int)body_size));
1069 #else
1070     DEBUG_m(PerlIO_printf(Perl_debug_log,
1071                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1072                           (void*)start, (void*)end,
1073                           (int)arena_size, sv_type, (int)body_size,
1074                           (int)good_arena_size / (int)body_size));
1075 #endif
1076     *root = (void *)start;
1077
1078     while (1) {
1079         /* Where the next body would start:  */
1080         char * const next = start + body_size;
1081
1082         if (next >= end) {
1083             /* This is the last body:  */
1084             assert(next == end);
1085
1086             *(void **)start = 0;
1087             return *root;
1088         }
1089
1090         *(void**) start = (void *)next;
1091         start = next;
1092     }
1093 }
1094
1095 /* grab a new thing from the free list, allocating more if necessary.
1096    The inline version is used for speed in hot routines, and the
1097    function using it serves the rest (unless PURIFY).
1098 */
1099 #define new_body_inline(xpv, sv_type) \
1100     STMT_START { \
1101         void ** const r3wt = &PL_body_roots[sv_type]; \
1102         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1103           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1104                                              bodies_by_type[sv_type].body_size,\
1105                                              bodies_by_type[sv_type].arena_size)); \
1106         *(r3wt) = *(void**)(xpv); \
1107     } STMT_END
1108
1109 #ifndef PURIFY
1110
1111 STATIC void *
1112 S_new_body(pTHX_ const svtype sv_type)
1113 {
1114     dVAR;
1115     void *xpv;
1116     new_body_inline(xpv, sv_type);
1117     return xpv;
1118 }
1119
1120 #endif
1121
1122 static const struct body_details fake_rv =
1123     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1124
1125 /*
1126 =for apidoc sv_upgrade
1127
1128 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1129 SV, then copies across as much information as possible from the old body.
1130 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
1131
1132 =cut
1133 */
1134
1135 void
1136 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1137 {
1138     dVAR;
1139     void*       old_body;
1140     void*       new_body;
1141     const svtype old_type = SvTYPE(sv);
1142     const struct body_details *new_type_details;
1143     const struct body_details *old_type_details
1144         = bodies_by_type + old_type;
1145     SV *referant = NULL;
1146
1147     PERL_ARGS_ASSERT_SV_UPGRADE;
1148
1149     if (old_type == new_type)
1150         return;
1151
1152     /* This clause was purposefully added ahead of the early return above to
1153        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1154        inference by Nick I-S that it would fix other troublesome cases. See
1155        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1156
1157        Given that shared hash key scalars are no longer PVIV, but PV, there is
1158        no longer need to unshare so as to free up the IVX slot for its proper
1159        purpose. So it's safe to move the early return earlier.  */
1160
1161     if (new_type != SVt_PV && SvIsCOW(sv)) {
1162         sv_force_normal_flags(sv, 0);
1163     }
1164
1165     old_body = SvANY(sv);
1166
1167     /* Copying structures onto other structures that have been neatly zeroed
1168        has a subtle gotcha. Consider XPVMG
1169
1170        +------+------+------+------+------+-------+-------+
1171        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1172        +------+------+------+------+------+-------+-------+
1173        0      4      8     12     16     20      24      28
1174
1175        where NVs are aligned to 8 bytes, so that sizeof that structure is
1176        actually 32 bytes long, with 4 bytes of padding at the end:
1177
1178        +------+------+------+------+------+-------+-------+------+
1179        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1180        +------+------+------+------+------+-------+-------+------+
1181        0      4      8     12     16     20      24      28     32
1182
1183        so what happens if you allocate memory for this structure:
1184
1185        +------+------+------+------+------+-------+-------+------+------+...
1186        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1187        +------+------+------+------+------+-------+-------+------+------+...
1188        0      4      8     12     16     20      24      28     32     36
1189
1190        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1191        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1192        started out as zero once, but it's quite possible that it isn't. So now,
1193        rather than a nicely zeroed GP, you have it pointing somewhere random.
1194        Bugs ensue.
1195
1196        (In fact, GP ends up pointing at a previous GP structure, because the
1197        principle cause of the padding in XPVMG getting garbage is a copy of
1198        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1199        this happens to be moot because XPVGV has been re-ordered, with GP
1200        no longer after STASH)
1201
1202        So we are careful and work out the size of used parts of all the
1203        structures.  */
1204
1205     switch (old_type) {
1206     case SVt_NULL:
1207         break;
1208     case SVt_IV:
1209         if (SvROK(sv)) {
1210             referant = SvRV(sv);
1211             old_type_details = &fake_rv;
1212             if (new_type == SVt_NV)
1213                 new_type = SVt_PVNV;
1214         } else {
1215             if (new_type < SVt_PVIV) {
1216                 new_type = (new_type == SVt_NV)
1217                     ? SVt_PVNV : SVt_PVIV;
1218             }
1219         }
1220         break;
1221     case SVt_NV:
1222         if (new_type < SVt_PVNV) {
1223             new_type = SVt_PVNV;
1224         }
1225         break;
1226     case SVt_PV:
1227         assert(new_type > SVt_PV);
1228         assert(SVt_IV < SVt_PV);
1229         assert(SVt_NV < SVt_PV);
1230         break;
1231     case SVt_PVIV:
1232         break;
1233     case SVt_PVNV:
1234         break;
1235     case SVt_PVMG:
1236         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1237            there's no way that it can be safely upgraded, because perl.c
1238            expects to Safefree(SvANY(PL_mess_sv))  */
1239         assert(sv != PL_mess_sv);
1240         /* This flag bit is used to mean other things in other scalar types.
1241            Given that it only has meaning inside the pad, it shouldn't be set
1242            on anything that can get upgraded.  */
1243         assert(!SvPAD_TYPED(sv));
1244         break;
1245     default:
1246         if (old_type_details->cant_upgrade)
1247             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1248                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1249     }
1250
1251     if (old_type > new_type)
1252         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1253                 (int)old_type, (int)new_type);
1254
1255     new_type_details = bodies_by_type + new_type;
1256
1257     SvFLAGS(sv) &= ~SVTYPEMASK;
1258     SvFLAGS(sv) |= new_type;
1259
1260     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1261        the return statements above will have triggered.  */
1262     assert (new_type != SVt_NULL);
1263     switch (new_type) {
1264     case SVt_IV:
1265         assert(old_type == SVt_NULL);
1266         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1267         SvIV_set(sv, 0);
1268         return;
1269     case SVt_NV:
1270         assert(old_type == SVt_NULL);
1271         SvANY(sv) = new_XNV();
1272         SvNV_set(sv, 0);
1273         return;
1274     case SVt_PVHV:
1275     case SVt_PVAV:
1276         assert(new_type_details->body_size);
1277
1278 #ifndef PURIFY  
1279         assert(new_type_details->arena);
1280         assert(new_type_details->arena_size);
1281         /* This points to the start of the allocated area.  */
1282         new_body_inline(new_body, new_type);
1283         Zero(new_body, new_type_details->body_size, char);
1284         new_body = ((char *)new_body) - new_type_details->offset;
1285 #else
1286         /* We always allocated the full length item with PURIFY. To do this
1287            we fake things so that arena is false for all 16 types..  */
1288         new_body = new_NOARENAZ(new_type_details);
1289 #endif
1290         SvANY(sv) = new_body;
1291         if (new_type == SVt_PVAV) {
1292             AvMAX(sv)   = -1;
1293             AvFILLp(sv) = -1;
1294             AvREAL_only(sv);
1295             if (old_type_details->body_size) {
1296                 AvALLOC(sv) = 0;
1297             } else {
1298                 /* It will have been zeroed when the new body was allocated.
1299                    Lets not write to it, in case it confuses a write-back
1300                    cache.  */
1301             }
1302         } else {
1303             assert(!SvOK(sv));
1304             SvOK_off(sv);
1305 #ifndef NODEFAULT_SHAREKEYS
1306             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1307 #endif
1308             HvMAX(sv) = 7; /* (start with 8 buckets) */
1309         }
1310
1311         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1312            The target created by newSVrv also is, and it can have magic.
1313            However, it never has SvPVX set.
1314         */
1315         if (old_type == SVt_IV) {
1316             assert(!SvROK(sv));
1317         } else if (old_type >= SVt_PV) {
1318             assert(SvPVX_const(sv) == 0);
1319         }
1320
1321         if (old_type >= SVt_PVMG) {
1322             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1323             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1324         } else {
1325             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1326         }
1327         break;
1328
1329
1330     case SVt_REGEXP:
1331         /* This ensures that SvTHINKFIRST(sv) is true, and hence that
1332            sv_force_normal_flags(sv) is called.  */
1333         SvFAKE_on(sv);
1334     case SVt_PVIV:
1335         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1336            no route from NV to PVIV, NOK can never be true  */
1337         assert(!SvNOKp(sv));
1338         assert(!SvNOK(sv));
1339     case SVt_PVIO:
1340     case SVt_PVFM:
1341     case SVt_PVGV:
1342     case SVt_PVCV:
1343     case SVt_PVLV:
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 (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             hv_clear(PL_stashcache);
1398
1399             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1400             IoPAGE_LEN(sv) = 60;
1401         }
1402         if (old_type < SVt_PV) {
1403             /* referant will be NULL unless the old type was SVt_IV emulating
1404                SVt_RV */
1405             sv->sv_u.svu_rv = referant;
1406         }
1407         break;
1408     default:
1409         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1410                    (unsigned long)new_type);
1411     }
1412
1413     if (old_type > SVt_IV) {
1414 #ifdef PURIFY
1415         safefree(old_body);
1416 #else
1417         /* Note that there is an assumption that all bodies of types that
1418            can be upgraded came from arenas. Only the more complex non-
1419            upgradable types are allowed to be directly malloc()ed.  */
1420         assert(old_type_details->arena);
1421         del_body((void*)((char*)old_body + old_type_details->offset),
1422                  &PL_body_roots[old_type]);
1423 #endif
1424     }
1425 }
1426
1427 /*
1428 =for apidoc sv_backoff
1429
1430 Remove any string offset. You should normally use the C<SvOOK_off> macro
1431 wrapper instead.
1432
1433 =cut
1434 */
1435
1436 int
1437 Perl_sv_backoff(pTHX_ register SV *const sv)
1438 {
1439     STRLEN delta;
1440     const char * const s = SvPVX_const(sv);
1441
1442     PERL_ARGS_ASSERT_SV_BACKOFF;
1443     PERL_UNUSED_CONTEXT;
1444
1445     assert(SvOOK(sv));
1446     assert(SvTYPE(sv) != SVt_PVHV);
1447     assert(SvTYPE(sv) != SVt_PVAV);
1448
1449     SvOOK_offset(sv, delta);
1450     
1451     SvLEN_set(sv, SvLEN(sv) + delta);
1452     SvPV_set(sv, SvPVX(sv) - delta);
1453     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1454     SvFLAGS(sv) &= ~SVf_OOK;
1455     return 0;
1456 }
1457
1458 /*
1459 =for apidoc sv_grow
1460
1461 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1462 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1463 Use the C<SvGROW> wrapper instead.
1464
1465 =cut
1466 */
1467
1468 char *
1469 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1470 {
1471     register char *s;
1472
1473     PERL_ARGS_ASSERT_SV_GROW;
1474
1475     if (PL_madskills && newlen >= 0x100000) {
1476         PerlIO_printf(Perl_debug_log,
1477                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1478     }
1479 #ifdef HAS_64K_LIMIT
1480     if (newlen >= 0x10000) {
1481         PerlIO_printf(Perl_debug_log,
1482                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1483         my_exit(1);
1484     }
1485 #endif /* HAS_64K_LIMIT */
1486     if (SvROK(sv))
1487         sv_unref(sv);
1488     if (SvTYPE(sv) < SVt_PV) {
1489         sv_upgrade(sv, SVt_PV);
1490         s = SvPVX_mutable(sv);
1491     }
1492     else if (SvOOK(sv)) {       /* pv is offset? */
1493         sv_backoff(sv);
1494         s = SvPVX_mutable(sv);
1495         if (newlen > SvLEN(sv))
1496             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1497 #ifdef HAS_64K_LIMIT
1498         if (newlen >= 0x10000)
1499             newlen = 0xFFFF;
1500 #endif
1501     }
1502     else
1503         s = SvPVX_mutable(sv);
1504
1505     if (newlen > SvLEN(sv)) {           /* need more room? */
1506         STRLEN minlen = SvCUR(sv);
1507         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1508         if (newlen < minlen)
1509             newlen = minlen;
1510 #ifndef Perl_safesysmalloc_size
1511         newlen = PERL_STRLEN_ROUNDUP(newlen);
1512 #endif
1513         if (SvLEN(sv) && s) {
1514             s = (char*)saferealloc(s, newlen);
1515         }
1516         else {
1517             s = (char*)safemalloc(newlen);
1518             if (SvPVX_const(sv) && SvCUR(sv)) {
1519                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1520             }
1521         }
1522         SvPV_set(sv, s);
1523 #ifdef Perl_safesysmalloc_size
1524         /* Do this here, do it once, do it right, and then we will never get
1525            called back into sv_grow() unless there really is some growing
1526            needed.  */
1527         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1528 #else
1529         SvLEN_set(sv, newlen);
1530 #endif
1531     }
1532     return s;
1533 }
1534
1535 /*
1536 =for apidoc sv_setiv
1537
1538 Copies an integer into the given SV, upgrading first if necessary.
1539 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1540
1541 =cut
1542 */
1543
1544 void
1545 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1546 {
1547     dVAR;
1548
1549     PERL_ARGS_ASSERT_SV_SETIV;
1550
1551     SV_CHECK_THINKFIRST_COW_DROP(sv);
1552     switch (SvTYPE(sv)) {
1553     case SVt_NULL:
1554     case SVt_NV:
1555         sv_upgrade(sv, SVt_IV);
1556         break;
1557     case SVt_PV:
1558         sv_upgrade(sv, SVt_PVIV);
1559         break;
1560
1561     case SVt_PVGV:
1562         if (!isGV_with_GP(sv))
1563             break;
1564     case SVt_PVAV:
1565     case SVt_PVHV:
1566     case SVt_PVCV:
1567     case SVt_PVFM:
1568     case SVt_PVIO:
1569         /* diag_listed_as: Can't coerce %s to %s in %s */
1570         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1571                    OP_DESC(PL_op));
1572     default: NOOP;
1573     }
1574     (void)SvIOK_only(sv);                       /* validate number */
1575     SvIV_set(sv, i);
1576     SvTAINT(sv);
1577 }
1578
1579 /*
1580 =for apidoc sv_setiv_mg
1581
1582 Like C<sv_setiv>, but also handles 'set' magic.
1583
1584 =cut
1585 */
1586
1587 void
1588 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1589 {
1590     PERL_ARGS_ASSERT_SV_SETIV_MG;
1591
1592     sv_setiv(sv,i);
1593     SvSETMAGIC(sv);
1594 }
1595
1596 /*
1597 =for apidoc sv_setuv
1598
1599 Copies an unsigned integer into the given SV, upgrading first if necessary.
1600 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1601
1602 =cut
1603 */
1604
1605 void
1606 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1607 {
1608     PERL_ARGS_ASSERT_SV_SETUV;
1609
1610     /* With these two if statements:
1611        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1612
1613        without
1614        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1615
1616        If you wish to remove them, please benchmark to see what the effect is
1617     */
1618     if (u <= (UV)IV_MAX) {
1619        sv_setiv(sv, (IV)u);
1620        return;
1621     }
1622     sv_setiv(sv, 0);
1623     SvIsUV_on(sv);
1624     SvUV_set(sv, u);
1625 }
1626
1627 /*
1628 =for apidoc sv_setuv_mg
1629
1630 Like C<sv_setuv>, but also handles 'set' magic.
1631
1632 =cut
1633 */
1634
1635 void
1636 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1637 {
1638     PERL_ARGS_ASSERT_SV_SETUV_MG;
1639
1640     sv_setuv(sv,u);
1641     SvSETMAGIC(sv);
1642 }
1643
1644 /*
1645 =for apidoc sv_setnv
1646
1647 Copies a double into the given SV, upgrading first if necessary.
1648 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1649
1650 =cut
1651 */
1652
1653 void
1654 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1655 {
1656     dVAR;
1657
1658     PERL_ARGS_ASSERT_SV_SETNV;
1659
1660     SV_CHECK_THINKFIRST_COW_DROP(sv);
1661     switch (SvTYPE(sv)) {
1662     case SVt_NULL:
1663     case SVt_IV:
1664         sv_upgrade(sv, SVt_NV);
1665         break;
1666     case SVt_PV:
1667     case SVt_PVIV:
1668         sv_upgrade(sv, SVt_PVNV);
1669         break;
1670
1671     case SVt_PVGV:
1672         if (!isGV_with_GP(sv))
1673             break;
1674     case SVt_PVAV:
1675     case SVt_PVHV:
1676     case SVt_PVCV:
1677     case SVt_PVFM:
1678     case SVt_PVIO:
1679         /* diag_listed_as: Can't coerce %s to %s in %s */
1680         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1681                    OP_DESC(PL_op));
1682     default: NOOP;
1683     }
1684     SvNV_set(sv, num);
1685     (void)SvNOK_only(sv);                       /* validate number */
1686     SvTAINT(sv);
1687 }
1688
1689 /*
1690 =for apidoc sv_setnv_mg
1691
1692 Like C<sv_setnv>, but also handles 'set' magic.
1693
1694 =cut
1695 */
1696
1697 void
1698 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1699 {
1700     PERL_ARGS_ASSERT_SV_SETNV_MG;
1701
1702     sv_setnv(sv,num);
1703     SvSETMAGIC(sv);
1704 }
1705
1706 /* Print an "isn't numeric" warning, using a cleaned-up,
1707  * printable version of the offending string
1708  */
1709
1710 STATIC void
1711 S_not_a_number(pTHX_ SV *const sv)
1712 {
1713      dVAR;
1714      SV *dsv;
1715      char tmpbuf[64];
1716      const char *pv;
1717
1718      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1719
1720      if (DO_UTF8(sv)) {
1721           dsv = newSVpvs_flags("", SVs_TEMP);
1722           pv = sv_uni_display(dsv, sv, 10, 0);
1723      } else {
1724           char *d = tmpbuf;
1725           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1726           /* each *s can expand to 4 chars + "...\0",
1727              i.e. need room for 8 chars */
1728         
1729           const char *s = SvPVX_const(sv);
1730           const char * const end = s + SvCUR(sv);
1731           for ( ; s < end && d < limit; s++ ) {
1732                int ch = *s & 0xFF;
1733                if (ch & 128 && !isPRINT_LC(ch)) {
1734                     *d++ = 'M';
1735                     *d++ = '-';
1736                     ch &= 127;
1737                }
1738                if (ch == '\n') {
1739                     *d++ = '\\';
1740                     *d++ = 'n';
1741                }
1742                else if (ch == '\r') {
1743                     *d++ = '\\';
1744                     *d++ = 'r';
1745                }
1746                else if (ch == '\f') {
1747                     *d++ = '\\';
1748                     *d++ = 'f';
1749                }
1750                else if (ch == '\\') {
1751                     *d++ = '\\';
1752                     *d++ = '\\';
1753                }
1754                else if (ch == '\0') {
1755                     *d++ = '\\';
1756                     *d++ = '0';
1757                }
1758                else if (isPRINT_LC(ch))
1759                     *d++ = ch;
1760                else {
1761                     *d++ = '^';
1762                     *d++ = toCTRL(ch);
1763                }
1764           }
1765           if (s < end) {
1766                *d++ = '.';
1767                *d++ = '.';
1768                *d++ = '.';
1769           }
1770           *d = '\0';
1771           pv = tmpbuf;
1772     }
1773
1774     if (PL_op)
1775         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1776                     "Argument \"%s\" isn't numeric in %s", pv,
1777                     OP_DESC(PL_op));
1778     else
1779         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1780                     "Argument \"%s\" isn't numeric", pv);
1781 }
1782
1783 /*
1784 =for apidoc looks_like_number
1785
1786 Test if the content of an SV looks like a number (or is a number).
1787 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1788 non-numeric warning), even if your atof() doesn't grok them.
1789
1790 =cut
1791 */
1792
1793 I32
1794 Perl_looks_like_number(pTHX_ SV *const sv)
1795 {
1796     register const char *sbegin;
1797     STRLEN len;
1798
1799     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1800
1801     if (SvPOK(sv)) {
1802         sbegin = SvPVX_const(sv);
1803         len = SvCUR(sv);
1804     }
1805     else if (SvPOKp(sv))
1806         sbegin = SvPV_const(sv, len);
1807     else
1808         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1809     return grok_number(sbegin, len, NULL);
1810 }
1811
1812 STATIC bool
1813 S_glob_2number(pTHX_ GV * const gv)
1814 {
1815     const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
1816     SV *const buffer = sv_newmortal();
1817
1818     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1819
1820     /* FAKE globs can get coerced, so need to turn this off temporarily if it
1821        is on.  */
1822     SvFAKE_off(gv);
1823     gv_efullname3(buffer, gv, "*");
1824     SvFLAGS(gv) |= wasfake;
1825
1826     /* We know that all GVs stringify to something that is not-a-number,
1827         so no need to test that.  */
1828     if (ckWARN(WARN_NUMERIC))
1829         not_a_number(buffer);
1830     /* We just want something true to return, so that S_sv_2iuv_common
1831         can tail call us and return true.  */
1832     return TRUE;
1833 }
1834
1835 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1836    until proven guilty, assume that things are not that bad... */
1837
1838 /*
1839    NV_PRESERVES_UV:
1840
1841    As 64 bit platforms often have an NV that doesn't preserve all bits of
1842    an IV (an assumption perl has been based on to date) it becomes necessary
1843    to remove the assumption that the NV always carries enough precision to
1844    recreate the IV whenever needed, and that the NV is the canonical form.
1845    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1846    precision as a side effect of conversion (which would lead to insanity
1847    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1848    1) to distinguish between IV/UV/NV slots that have cached a valid
1849       conversion where precision was lost and IV/UV/NV slots that have a
1850       valid conversion which has lost no precision
1851    2) to ensure that if a numeric conversion to one form is requested that
1852       would lose precision, the precise conversion (or differently
1853       imprecise conversion) is also performed and cached, to prevent
1854       requests for different numeric formats on the same SV causing
1855       lossy conversion chains. (lossless conversion chains are perfectly
1856       acceptable (still))
1857
1858
1859    flags are used:
1860    SvIOKp is true if the IV slot contains a valid value
1861    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1862    SvNOKp is true if the NV slot contains a valid value
1863    SvNOK  is true only if the NV value is accurate
1864
1865    so
1866    while converting from PV to NV, check to see if converting that NV to an
1867    IV(or UV) would lose accuracy over a direct conversion from PV to
1868    IV(or UV). If it would, cache both conversions, return NV, but mark
1869    SV as IOK NOKp (ie not NOK).
1870
1871    While converting from PV to IV, check to see if converting that IV to an
1872    NV would lose accuracy over a direct conversion from PV to NV. If it
1873    would, cache both conversions, flag similarly.
1874
1875    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1876    correctly because if IV & NV were set NV *always* overruled.
1877    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1878    changes - now IV and NV together means that the two are interchangeable:
1879    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1880
1881    The benefit of this is that operations such as pp_add know that if
1882    SvIOK is true for both left and right operands, then integer addition
1883    can be used instead of floating point (for cases where the result won't
1884    overflow). Before, floating point was always used, which could lead to
1885    loss of precision compared with integer addition.
1886
1887    * making IV and NV equal status should make maths accurate on 64 bit
1888      platforms
1889    * may speed up maths somewhat if pp_add and friends start to use
1890      integers when possible instead of fp. (Hopefully the overhead in
1891      looking for SvIOK and checking for overflow will not outweigh the
1892      fp to integer speedup)
1893    * will slow down integer operations (callers of SvIV) on "inaccurate"
1894      values, as the change from SvIOK to SvIOKp will cause a call into
1895      sv_2iv each time rather than a macro access direct to the IV slot
1896    * should speed up number->string conversion on integers as IV is
1897      favoured when IV and NV are equally accurate
1898
1899    ####################################################################
1900    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1901    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1902    On the other hand, SvUOK is true iff UV.
1903    ####################################################################
1904
1905    Your mileage will vary depending your CPU's relative fp to integer
1906    performance ratio.
1907 */
1908
1909 #ifndef NV_PRESERVES_UV
1910 #  define IS_NUMBER_UNDERFLOW_IV 1
1911 #  define IS_NUMBER_UNDERFLOW_UV 2
1912 #  define IS_NUMBER_IV_AND_UV    2
1913 #  define IS_NUMBER_OVERFLOW_IV  4
1914 #  define IS_NUMBER_OVERFLOW_UV  5
1915
1916 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1917
1918 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1919 STATIC int
1920 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1921 #  ifdef DEBUGGING
1922                        , I32 numtype
1923 #  endif
1924                        )
1925 {
1926     dVAR;
1927
1928     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1929
1930     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));
1931     if (SvNVX(sv) < (NV)IV_MIN) {
1932         (void)SvIOKp_on(sv);
1933         (void)SvNOK_on(sv);
1934         SvIV_set(sv, IV_MIN);
1935         return IS_NUMBER_UNDERFLOW_IV;
1936     }
1937     if (SvNVX(sv) > (NV)UV_MAX) {
1938         (void)SvIOKp_on(sv);
1939         (void)SvNOK_on(sv);
1940         SvIsUV_on(sv);
1941         SvUV_set(sv, UV_MAX);
1942         return IS_NUMBER_OVERFLOW_UV;
1943     }
1944     (void)SvIOKp_on(sv);
1945     (void)SvNOK_on(sv);
1946     /* Can't use strtol etc to convert this string.  (See truth table in
1947        sv_2iv  */
1948     if (SvNVX(sv) <= (UV)IV_MAX) {
1949         SvIV_set(sv, I_V(SvNVX(sv)));
1950         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1951             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1952         } else {
1953             /* Integer is imprecise. NOK, IOKp */
1954         }
1955         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1956     }
1957     SvIsUV_on(sv);
1958     SvUV_set(sv, U_V(SvNVX(sv)));
1959     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1960         if (SvUVX(sv) == UV_MAX) {
1961             /* As we know that NVs don't preserve UVs, UV_MAX cannot
1962                possibly be preserved by NV. Hence, it must be overflow.
1963                NOK, IOKp */
1964             return IS_NUMBER_OVERFLOW_UV;
1965         }
1966         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1967     } else {
1968         /* Integer is imprecise. NOK, IOKp */
1969     }
1970     return IS_NUMBER_OVERFLOW_IV;
1971 }
1972 #endif /* !NV_PRESERVES_UV*/
1973
1974 STATIC bool
1975 S_sv_2iuv_common(pTHX_ SV *const sv)
1976 {
1977     dVAR;
1978
1979     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
1980
1981     if (SvNOKp(sv)) {
1982         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
1983          * without also getting a cached IV/UV from it at the same time
1984          * (ie PV->NV conversion should detect loss of accuracy and cache
1985          * IV or UV at same time to avoid this. */
1986         /* IV-over-UV optimisation - choose to cache IV if possible */
1987
1988         if (SvTYPE(sv) == SVt_NV)
1989             sv_upgrade(sv, SVt_PVNV);
1990
1991         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
1992         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
1993            certainly cast into the IV range at IV_MAX, whereas the correct
1994            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
1995            cases go to UV */
1996 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
1997         if (Perl_isnan(SvNVX(sv))) {
1998             SvUV_set(sv, 0);
1999             SvIsUV_on(sv);
2000             return FALSE;
2001         }
2002 #endif
2003         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2004             SvIV_set(sv, I_V(SvNVX(sv)));
2005             if (SvNVX(sv) == (NV) SvIVX(sv)
2006 #ifndef NV_PRESERVES_UV
2007                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2008                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2009                 /* Don't flag it as "accurately an integer" if the number
2010                    came from a (by definition imprecise) NV operation, and
2011                    we're outside the range of NV integer precision */
2012 #endif
2013                 ) {
2014                 if (SvNOK(sv))
2015                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2016                 else {
2017                     /* scalar has trailing garbage, eg "42a" */
2018                 }
2019                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2020                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2021                                       PTR2UV(sv),
2022                                       SvNVX(sv),
2023                                       SvIVX(sv)));
2024
2025             } else {
2026                 /* IV not precise.  No need to convert from PV, as NV
2027                    conversion would already have cached IV if it detected
2028                    that PV->IV would be better than PV->NV->IV
2029                    flags already correct - don't set public IOK.  */
2030                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2031                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2032                                       PTR2UV(sv),
2033                                       SvNVX(sv),
2034                                       SvIVX(sv)));
2035             }
2036             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2037                but the cast (NV)IV_MIN rounds to a the value less (more
2038                negative) than IV_MIN which happens to be equal to SvNVX ??
2039                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2040                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2041                (NV)UVX == NVX are both true, but the values differ. :-(
2042                Hopefully for 2s complement IV_MIN is something like
2043                0x8000000000000000 which will be exact. NWC */
2044         }
2045         else {
2046             SvUV_set(sv, U_V(SvNVX(sv)));
2047             if (
2048                 (SvNVX(sv) == (NV) SvUVX(sv))
2049 #ifndef  NV_PRESERVES_UV
2050                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2051                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2052                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2053                 /* Don't flag it as "accurately an integer" if the number
2054                    came from a (by definition imprecise) NV operation, and
2055                    we're outside the range of NV integer precision */
2056 #endif
2057                 && SvNOK(sv)
2058                 )
2059                 SvIOK_on(sv);
2060             SvIsUV_on(sv);
2061             DEBUG_c(PerlIO_printf(Perl_debug_log,
2062                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2063                                   PTR2UV(sv),
2064                                   SvUVX(sv),
2065                                   SvUVX(sv)));
2066         }
2067     }
2068     else if (SvPOKp(sv) && SvLEN(sv)) {
2069         UV value;
2070         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2071         /* We want to avoid a possible problem when we cache an IV/ a UV which
2072            may be later translated to an NV, and the resulting NV is not
2073            the same as the direct translation of the initial string
2074            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2075            be careful to ensure that the value with the .456 is around if the
2076            NV value is requested in the future).
2077         
2078            This means that if we cache such an IV/a UV, we need to cache the
2079            NV as well.  Moreover, we trade speed for space, and do not
2080            cache the NV if we are sure it's not needed.
2081          */
2082
2083         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2084         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2085              == IS_NUMBER_IN_UV) {
2086             /* It's definitely an integer, only upgrade to PVIV */
2087             if (SvTYPE(sv) < SVt_PVIV)
2088                 sv_upgrade(sv, SVt_PVIV);
2089             (void)SvIOK_on(sv);
2090         } else if (SvTYPE(sv) < SVt_PVNV)
2091             sv_upgrade(sv, SVt_PVNV);
2092
2093         /* If NVs preserve UVs then we only use the UV value if we know that
2094            we aren't going to call atof() below. If NVs don't preserve UVs
2095            then the value returned may have more precision than atof() will
2096            return, even though value isn't perfectly accurate.  */
2097         if ((numtype & (IS_NUMBER_IN_UV
2098 #ifdef NV_PRESERVES_UV
2099                         | IS_NUMBER_NOT_INT
2100 #endif
2101             )) == IS_NUMBER_IN_UV) {
2102             /* This won't turn off the public IOK flag if it was set above  */
2103             (void)SvIOKp_on(sv);
2104
2105             if (!(numtype & IS_NUMBER_NEG)) {
2106                 /* positive */;
2107                 if (value <= (UV)IV_MAX) {
2108                     SvIV_set(sv, (IV)value);
2109                 } else {
2110                     /* it didn't overflow, and it was positive. */
2111                     SvUV_set(sv, value);
2112                     SvIsUV_on(sv);
2113                 }
2114             } else {
2115                 /* 2s complement assumption  */
2116                 if (value <= (UV)IV_MIN) {
2117                     SvIV_set(sv, -(IV)value);
2118                 } else {
2119                     /* Too negative for an IV.  This is a double upgrade, but
2120                        I'm assuming it will be rare.  */
2121                     if (SvTYPE(sv) < SVt_PVNV)
2122                         sv_upgrade(sv, SVt_PVNV);
2123                     SvNOK_on(sv);
2124                     SvIOK_off(sv);
2125                     SvIOKp_on(sv);
2126                     SvNV_set(sv, -(NV)value);
2127                     SvIV_set(sv, IV_MIN);
2128                 }
2129             }
2130         }
2131         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2132            will be in the previous block to set the IV slot, and the next
2133            block to set the NV slot.  So no else here.  */
2134         
2135         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2136             != IS_NUMBER_IN_UV) {
2137             /* It wasn't an (integer that doesn't overflow the UV). */
2138             SvNV_set(sv, Atof(SvPVX_const(sv)));
2139
2140             if (! numtype && ckWARN(WARN_NUMERIC))
2141                 not_a_number(sv);
2142
2143 #if defined(USE_LONG_DOUBLE)
2144             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2145                                   PTR2UV(sv), SvNVX(sv)));
2146 #else
2147             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2148                                   PTR2UV(sv), SvNVX(sv)));
2149 #endif
2150
2151 #ifdef NV_PRESERVES_UV
2152             (void)SvIOKp_on(sv);
2153             (void)SvNOK_on(sv);
2154             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2155                 SvIV_set(sv, I_V(SvNVX(sv)));
2156                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2157                     SvIOK_on(sv);
2158                 } else {
2159                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2160                 }
2161                 /* UV will not work better than IV */
2162             } else {
2163                 if (SvNVX(sv) > (NV)UV_MAX) {
2164                     SvIsUV_on(sv);
2165                     /* Integer is inaccurate. NOK, IOKp, is UV */
2166                     SvUV_set(sv, UV_MAX);
2167                 } else {
2168                     SvUV_set(sv, U_V(SvNVX(sv)));
2169                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2170                        NV preservse UV so can do correct comparison.  */
2171                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2172                         SvIOK_on(sv);
2173                     } else {
2174                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2175                     }
2176                 }
2177                 SvIsUV_on(sv);
2178             }
2179 #else /* NV_PRESERVES_UV */
2180             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2181                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2182                 /* The IV/UV slot will have been set from value returned by
2183                    grok_number above.  The NV slot has just been set using
2184                    Atof.  */
2185                 SvNOK_on(sv);
2186                 assert (SvIOKp(sv));
2187             } else {
2188                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2189                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2190                     /* Small enough to preserve all bits. */
2191                     (void)SvIOKp_on(sv);
2192                     SvNOK_on(sv);
2193                     SvIV_set(sv, I_V(SvNVX(sv)));
2194                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2195                         SvIOK_on(sv);
2196                     /* Assumption: first non-preserved integer is < IV_MAX,
2197                        this NV is in the preserved range, therefore: */
2198                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2199                           < (UV)IV_MAX)) {
2200                         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);
2201                     }
2202                 } else {
2203                     /* IN_UV NOT_INT
2204                          0      0       already failed to read UV.
2205                          0      1       already failed to read UV.
2206                          1      0       you won't get here in this case. IV/UV
2207                                         slot set, public IOK, Atof() unneeded.
2208                          1      1       already read UV.
2209                        so there's no point in sv_2iuv_non_preserve() attempting
2210                        to use atol, strtol, strtoul etc.  */
2211 #  ifdef DEBUGGING
2212                     sv_2iuv_non_preserve (sv, numtype);
2213 #  else
2214                     sv_2iuv_non_preserve (sv);
2215 #  endif
2216                 }
2217             }
2218 #endif /* NV_PRESERVES_UV */
2219         /* It might be more code efficient to go through the entire logic above
2220            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2221            gets complex and potentially buggy, so more programmer efficient
2222            to do it this way, by turning off the public flags:  */
2223         if (!numtype)
2224             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2225         }
2226     }
2227     else  {
2228         if (isGV_with_GP(sv))
2229             return glob_2number(MUTABLE_GV(sv));
2230
2231         if (!(SvFLAGS(sv) & SVs_PADTMP)) {
2232             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2233                 report_uninit(sv);
2234         }
2235         if (SvTYPE(sv) < SVt_IV)
2236             /* Typically the caller expects that sv_any is not NULL now.  */
2237             sv_upgrade(sv, SVt_IV);
2238         /* Return 0 from the caller.  */
2239         return TRUE;
2240     }
2241     return FALSE;
2242 }
2243
2244 /*
2245 =for apidoc sv_2iv_flags
2246
2247 Return the integer value of an SV, doing any necessary string
2248 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2249 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2250
2251 =cut
2252 */
2253
2254 IV
2255 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2256 {
2257     dVAR;
2258     if (!sv)
2259         return 0;
2260     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2261         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2262            the same flag bit as SVf_IVisUV, so must not let them cache IVs.
2263            In practice they are extremely unlikely to actually get anywhere
2264            accessible by user Perl code - the only way that I'm aware of is when
2265            a constant subroutine which is used as the second argument to index.
2266         */
2267         if (flags & SV_GMAGIC)
2268             mg_get(sv);
2269         if (SvIOKp(sv))
2270             return SvIVX(sv);
2271         if (SvNOKp(sv)) {
2272             return I_V(SvNVX(sv));
2273         }
2274         if (SvPOKp(sv) && SvLEN(sv)) {
2275             UV value;
2276             const int numtype
2277                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2278
2279             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2280                 == IS_NUMBER_IN_UV) {
2281                 /* It's definitely an integer */
2282                 if (numtype & IS_NUMBER_NEG) {
2283                     if (value < (UV)IV_MIN)
2284                         return -(IV)value;
2285                 } else {
2286                     if (value < (UV)IV_MAX)
2287                         return (IV)value;
2288                 }
2289             }
2290             if (!numtype) {
2291                 if (ckWARN(WARN_NUMERIC))
2292                     not_a_number(sv);
2293             }
2294             return I_V(Atof(SvPVX_const(sv)));
2295         }
2296         if (SvROK(sv)) {
2297             goto return_rok;
2298         }
2299         assert(SvTYPE(sv) >= SVt_PVMG);
2300         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2301     } else if (SvTHINKFIRST(sv)) {
2302         if (SvROK(sv)) {
2303         return_rok:
2304             if (SvAMAGIC(sv)) {
2305                 SV * tmpstr;
2306                 if (flags & SV_SKIP_OVERLOAD)
2307                     return 0;
2308                 tmpstr = AMG_CALLunary(sv, numer_amg);
2309                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2310                     return SvIV(tmpstr);
2311                 }
2312             }
2313             return PTR2IV(SvRV(sv));
2314         }
2315         if (SvIsCOW(sv)) {
2316             sv_force_normal_flags(sv, 0);
2317         }
2318         if (SvREADONLY(sv) && !SvOK(sv)) {
2319             if (ckWARN(WARN_UNINITIALIZED))
2320                 report_uninit(sv);
2321             return 0;
2322         }
2323     }
2324     if (!SvIOKp(sv)) {
2325         if (S_sv_2iuv_common(aTHX_ sv))
2326             return 0;
2327     }
2328     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2329         PTR2UV(sv),SvIVX(sv)));
2330     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2331 }
2332
2333 /*
2334 =for apidoc sv_2uv_flags
2335
2336 Return the unsigned integer value of an SV, doing any necessary string
2337 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2338 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2339
2340 =cut
2341 */
2342
2343 UV
2344 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2345 {
2346     dVAR;
2347     if (!sv)
2348         return 0;
2349     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2350         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2351            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  */
2352         if (flags & SV_GMAGIC)
2353             mg_get(sv);
2354         if (SvIOKp(sv))
2355             return SvUVX(sv);
2356         if (SvNOKp(sv))
2357             return U_V(SvNVX(sv));
2358         if (SvPOKp(sv) && SvLEN(sv)) {
2359             UV value;
2360             const int numtype
2361                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2362
2363             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2364                 == IS_NUMBER_IN_UV) {
2365                 /* It's definitely an integer */
2366                 if (!(numtype & IS_NUMBER_NEG))
2367                     return value;
2368             }
2369             if (!numtype) {
2370                 if (ckWARN(WARN_NUMERIC))
2371                     not_a_number(sv);
2372             }
2373             return U_V(Atof(SvPVX_const(sv)));
2374         }
2375         if (SvROK(sv)) {
2376             goto return_rok;
2377         }
2378         assert(SvTYPE(sv) >= SVt_PVMG);
2379         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2380     } else if (SvTHINKFIRST(sv)) {
2381         if (SvROK(sv)) {
2382         return_rok:
2383             if (SvAMAGIC(sv)) {
2384                 SV *tmpstr;
2385                 if (flags & SV_SKIP_OVERLOAD)
2386                     return 0;
2387                 tmpstr = AMG_CALLunary(sv, numer_amg);
2388                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2389                     return SvUV(tmpstr);
2390                 }
2391             }
2392             return PTR2UV(SvRV(sv));
2393         }
2394         if (SvIsCOW(sv)) {
2395             sv_force_normal_flags(sv, 0);
2396         }
2397         if (SvREADONLY(sv) && !SvOK(sv)) {
2398             if (ckWARN(WARN_UNINITIALIZED))
2399                 report_uninit(sv);
2400             return 0;
2401         }
2402     }
2403     if (!SvIOKp(sv)) {
2404         if (S_sv_2iuv_common(aTHX_ sv))
2405             return 0;
2406     }
2407
2408     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2409                           PTR2UV(sv),SvUVX(sv)));
2410     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2411 }
2412
2413 /*
2414 =for apidoc sv_2nv_flags
2415
2416 Return the num value of an SV, doing any necessary string or integer
2417 conversion. If flags includes SV_GMAGIC, does an mg_get() first.
2418 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2419
2420 =cut
2421 */
2422
2423 NV
2424 Perl_sv_2nv_flags(pTHX_ register SV *const sv, const I32 flags)
2425 {
2426     dVAR;
2427     if (!sv)
2428         return 0.0;
2429     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2430         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2431            the same flag bit as SVf_IVisUV, so must not let them cache NVs.  */
2432         if (flags & SV_GMAGIC)
2433             mg_get(sv);
2434         if (SvNOKp(sv))
2435             return SvNVX(sv);
2436         if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
2437             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2438                 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
2439                 not_a_number(sv);
2440             return Atof(SvPVX_const(sv));
2441         }
2442         if (SvIOKp(sv)) {
2443             if (SvIsUV(sv))
2444                 return (NV)SvUVX(sv);
2445             else
2446                 return (NV)SvIVX(sv);
2447         }
2448         if (SvROK(sv)) {
2449             goto return_rok;
2450         }
2451         assert(SvTYPE(sv) >= SVt_PVMG);
2452         /* This falls through to the report_uninit near the end of the
2453            function. */
2454     } else if (SvTHINKFIRST(sv)) {
2455         if (SvROK(sv)) {
2456         return_rok:
2457             if (SvAMAGIC(sv)) {
2458                 SV *tmpstr;
2459                 if (flags & SV_SKIP_OVERLOAD)
2460                     return 0;
2461                 tmpstr = AMG_CALLunary(sv, numer_amg);
2462                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2463                     return SvNV(tmpstr);
2464                 }
2465             }
2466             return PTR2NV(SvRV(sv));
2467         }
2468         if (SvIsCOW(sv)) {
2469             sv_force_normal_flags(sv, 0);
2470         }
2471         if (SvREADONLY(sv) && !SvOK(sv)) {
2472             if (ckWARN(WARN_UNINITIALIZED))
2473                 report_uninit(sv);
2474             return 0.0;
2475         }
2476     }
2477     if (SvTYPE(sv) < SVt_NV) {
2478         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2479         sv_upgrade(sv, SVt_NV);
2480 #ifdef USE_LONG_DOUBLE
2481         DEBUG_c({
2482             STORE_NUMERIC_LOCAL_SET_STANDARD();
2483             PerlIO_printf(Perl_debug_log,
2484                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2485                           PTR2UV(sv), SvNVX(sv));
2486             RESTORE_NUMERIC_LOCAL();
2487         });
2488 #else
2489         DEBUG_c({
2490             STORE_NUMERIC_LOCAL_SET_STANDARD();
2491             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2492                           PTR2UV(sv), SvNVX(sv));
2493             RESTORE_NUMERIC_LOCAL();
2494         });
2495 #endif
2496     }
2497     else if (SvTYPE(sv) < SVt_PVNV)
2498         sv_upgrade(sv, SVt_PVNV);
2499     if (SvNOKp(sv)) {
2500         return SvNVX(sv);
2501     }
2502     if (SvIOKp(sv)) {
2503         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2504 #ifdef NV_PRESERVES_UV
2505         if (SvIOK(sv))
2506             SvNOK_on(sv);
2507         else
2508             SvNOKp_on(sv);
2509 #else
2510         /* Only set the public NV OK flag if this NV preserves the IV  */
2511         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2512         if (SvIOK(sv) &&
2513             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2514                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2515             SvNOK_on(sv);
2516         else
2517             SvNOKp_on(sv);
2518 #endif
2519     }
2520     else if (SvPOKp(sv) && SvLEN(sv)) {
2521         UV value;
2522         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2523         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2524             not_a_number(sv);
2525 #ifdef NV_PRESERVES_UV
2526         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2527             == IS_NUMBER_IN_UV) {
2528             /* It's definitely an integer */
2529             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2530         } else
2531             SvNV_set(sv, Atof(SvPVX_const(sv)));
2532         if (numtype)
2533             SvNOK_on(sv);
2534         else
2535             SvNOKp_on(sv);
2536 #else
2537         SvNV_set(sv, Atof(SvPVX_const(sv)));
2538         /* Only set the public NV OK flag if this NV preserves the value in
2539            the PV at least as well as an IV/UV would.
2540            Not sure how to do this 100% reliably. */
2541         /* if that shift count is out of range then Configure's test is
2542            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2543            UV_BITS */
2544         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2545             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2546             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2547         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2548             /* Can't use strtol etc to convert this string, so don't try.
2549                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2550             SvNOK_on(sv);
2551         } else {
2552             /* value has been set.  It may not be precise.  */
2553             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2554                 /* 2s complement assumption for (UV)IV_MIN  */
2555                 SvNOK_on(sv); /* Integer is too negative.  */
2556             } else {
2557                 SvNOKp_on(sv);
2558                 SvIOKp_on(sv);
2559
2560                 if (numtype & IS_NUMBER_NEG) {
2561                     SvIV_set(sv, -(IV)value);
2562                 } else if (value <= (UV)IV_MAX) {
2563                     SvIV_set(sv, (IV)value);
2564                 } else {
2565                     SvUV_set(sv, value);
2566                     SvIsUV_on(sv);
2567                 }
2568
2569                 if (numtype & IS_NUMBER_NOT_INT) {
2570                     /* I believe that even if the original PV had decimals,
2571                        they are lost beyond the limit of the FP precision.
2572                        However, neither is canonical, so both only get p
2573                        flags.  NWC, 2000/11/25 */
2574                     /* Both already have p flags, so do nothing */
2575                 } else {
2576                     const NV nv = SvNVX(sv);
2577                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2578                         if (SvIVX(sv) == I_V(nv)) {
2579                             SvNOK_on(sv);
2580                         } else {
2581                             /* It had no "." so it must be integer.  */
2582                         }
2583                         SvIOK_on(sv);
2584                     } else {
2585                         /* between IV_MAX and NV(UV_MAX).
2586                            Could be slightly > UV_MAX */
2587
2588                         if (numtype & IS_NUMBER_NOT_INT) {
2589                             /* UV and NV both imprecise.  */
2590                         } else {
2591                             const UV nv_as_uv = U_V(nv);
2592
2593                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2594                                 SvNOK_on(sv);
2595                             }
2596                             SvIOK_on(sv);
2597                         }
2598                     }
2599                 }
2600             }
2601         }
2602         /* It might be more code efficient to go through the entire logic above
2603            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2604            gets complex and potentially buggy, so more programmer efficient
2605            to do it this way, by turning off the public flags:  */
2606         if (!numtype)
2607             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2608 #endif /* NV_PRESERVES_UV */
2609     }
2610     else  {
2611         if (isGV_with_GP(sv)) {
2612             glob_2number(MUTABLE_GV(sv));
2613             return 0.0;
2614         }
2615
2616         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2617             report_uninit(sv);
2618         assert (SvTYPE(sv) >= SVt_NV);
2619         /* Typically the caller expects that sv_any is not NULL now.  */
2620         /* XXX Ilya implies that this is a bug in callers that assume this
2621            and ideally should be fixed.  */
2622         return 0.0;
2623     }
2624 #if defined(USE_LONG_DOUBLE)
2625     DEBUG_c({
2626         STORE_NUMERIC_LOCAL_SET_STANDARD();
2627         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2628                       PTR2UV(sv), SvNVX(sv));
2629         RESTORE_NUMERIC_LOCAL();
2630     });
2631 #else
2632     DEBUG_c({
2633         STORE_NUMERIC_LOCAL_SET_STANDARD();
2634         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2635                       PTR2UV(sv), SvNVX(sv));
2636         RESTORE_NUMERIC_LOCAL();
2637     });
2638 #endif
2639     return SvNVX(sv);
2640 }
2641
2642 /*
2643 =for apidoc sv_2num
2644
2645 Return an SV with the numeric value of the source SV, doing any necessary
2646 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2647 access this function.
2648
2649 =cut
2650 */
2651
2652 SV *
2653 Perl_sv_2num(pTHX_ register SV *const sv)
2654 {
2655     PERL_ARGS_ASSERT_SV_2NUM;
2656
2657     if (!SvROK(sv))
2658         return sv;
2659     if (SvAMAGIC(sv)) {
2660         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2661         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2662         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2663             return sv_2num(tmpsv);
2664     }
2665     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2666 }
2667
2668 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2669  * UV as a string towards the end of buf, and return pointers to start and
2670  * end of it.
2671  *
2672  * We assume that buf is at least TYPE_CHARS(UV) long.
2673  */
2674
2675 static char *
2676 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2677 {
2678     char *ptr = buf + TYPE_CHARS(UV);
2679     char * const ebuf = ptr;
2680     int sign;
2681
2682     PERL_ARGS_ASSERT_UIV_2BUF;
2683
2684     if (is_uv)
2685         sign = 0;
2686     else if (iv >= 0) {
2687         uv = iv;
2688         sign = 0;
2689     } else {
2690         uv = -iv;
2691         sign = 1;
2692     }
2693     do {
2694         *--ptr = '0' + (char)(uv % 10);
2695     } while (uv /= 10);
2696     if (sign)
2697         *--ptr = '-';
2698     *peob = ebuf;
2699     return ptr;
2700 }
2701
2702 /*
2703 =for apidoc sv_2pv_flags
2704
2705 Returns a pointer to the string value of an SV, and sets *lp to its length.
2706 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
2707 if necessary.
2708 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
2709 usually end up here too.
2710
2711 =cut
2712 */
2713
2714 char *
2715 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2716 {
2717     dVAR;
2718     register char *s;
2719
2720     if (!sv) {
2721         if (lp)
2722             *lp = 0;
2723         return (char *)"";
2724     }
2725     if (SvGMAGICAL(sv)) {
2726         if (flags & SV_GMAGIC)
2727             mg_get(sv);
2728         if (SvPOKp(sv)) {
2729             if (lp)
2730                 *lp = SvCUR(sv);
2731             if (flags & SV_MUTABLE_RETURN)
2732                 return SvPVX_mutable(sv);
2733             if (flags & SV_CONST_RETURN)
2734                 return (char *)SvPVX_const(sv);
2735             return SvPVX(sv);
2736         }
2737         if (SvIOKp(sv) || SvNOKp(sv)) {
2738             char tbuf[64];  /* Must fit sprintf/Gconvert of longest IV/NV */
2739             STRLEN len;
2740
2741             if (SvIOKp(sv)) {
2742                 len = SvIsUV(sv)
2743                     ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2744                     : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
2745             } else if(SvNVX(sv) == 0.0) {
2746                     tbuf[0] = '0';
2747                     tbuf[1] = 0;
2748                     len = 1;
2749             } else {
2750                 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2751                 len = strlen(tbuf);
2752             }
2753             assert(!SvROK(sv));
2754             {
2755                 dVAR;
2756
2757                 SvUPGRADE(sv, SVt_PV);
2758                 if (lp)
2759                     *lp = len;
2760                 s = SvGROW_mutable(sv, len + 1);
2761                 SvCUR_set(sv, len);
2762                 SvPOKp_on(sv);
2763                 return (char*)memcpy(s, tbuf, len + 1);
2764             }
2765         }
2766         if (SvROK(sv)) {
2767             goto return_rok;
2768         }
2769         assert(SvTYPE(sv) >= SVt_PVMG);
2770         /* This falls through to the report_uninit near the end of the
2771            function. */
2772     } else if (SvTHINKFIRST(sv)) {
2773         if (SvROK(sv)) {
2774         return_rok:
2775             if (SvAMAGIC(sv)) {
2776                 SV *tmpstr;
2777                 if (flags & SV_SKIP_OVERLOAD)
2778                     return NULL;
2779                 tmpstr = AMG_CALLunary(sv, string_amg);
2780                 TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2781                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2782                     /* Unwrap this:  */
2783                     /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2784                      */
2785
2786                     char *pv;
2787                     if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2788                         if (flags & SV_CONST_RETURN) {
2789                             pv = (char *) SvPVX_const(tmpstr);
2790                         } else {
2791                             pv = (flags & SV_MUTABLE_RETURN)
2792                                 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2793                         }
2794                         if (lp)
2795                             *lp = SvCUR(tmpstr);
2796                     } else {
2797                         pv = sv_2pv_flags(tmpstr, lp, flags);
2798                     }
2799                     if (SvUTF8(tmpstr))
2800                         SvUTF8_on(sv);
2801                     else
2802                         SvUTF8_off(sv);
2803                     return pv;
2804                 }
2805             }
2806             {
2807                 STRLEN len;
2808                 char *retval;
2809                 char *buffer;
2810                 SV *const referent = SvRV(sv);
2811
2812                 if (!referent) {
2813                     len = 7;
2814                     retval = buffer = savepvn("NULLREF", len);
2815                 } else if (SvTYPE(referent) == SVt_REGEXP) {
2816                     REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2817                     I32 seen_evals = 0;
2818
2819                     assert(re);
2820                         
2821                     /* If the regex is UTF-8 we want the containing scalar to
2822                        have an UTF-8 flag too */
2823                     if (RX_UTF8(re))
2824                         SvUTF8_on(sv);
2825                     else
2826                         SvUTF8_off(sv); 
2827
2828                     if ((seen_evals = RX_SEEN_EVALS(re)))
2829                         PL_reginterp_cnt += seen_evals;
2830
2831                     if (lp)
2832                         *lp = RX_WRAPLEN(re);
2833  
2834                     return RX_WRAPPED(re);
2835                 } else {
2836                     const char *const typestr = sv_reftype(referent, 0);
2837                     const STRLEN typelen = strlen(typestr);
2838                     UV addr = PTR2UV(referent);
2839                     const char *stashname = NULL;
2840                     STRLEN stashnamelen = 0; /* hush, gcc */
2841                     const char *buffer_end;
2842
2843                     if (SvOBJECT(referent)) {
2844                         const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2845
2846                         if (name) {
2847                             stashname = HEK_KEY(name);
2848                             stashnamelen = HEK_LEN(name);
2849
2850                             if (HEK_UTF8(name)) {
2851                                 SvUTF8_on(sv);
2852                             } else {
2853                                 SvUTF8_off(sv);
2854                             }
2855                         } else {
2856                             stashname = "__ANON__";
2857                             stashnamelen = 8;
2858                         }
2859                         len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2860                             + 2 * sizeof(UV) + 2 /* )\0 */;
2861                     } else {
2862                         len = typelen + 3 /* (0x */
2863                             + 2 * sizeof(UV) + 2 /* )\0 */;
2864                     }
2865
2866                     Newx(buffer, len, char);
2867                     buffer_end = retval = buffer + len;
2868
2869                     /* Working backwards  */
2870                     *--retval = '\0';
2871                     *--retval = ')';
2872                     do {
2873                         *--retval = PL_hexdigit[addr & 15];
2874                     } while (addr >>= 4);
2875                     *--retval = 'x';
2876                     *--retval = '0';
2877                     *--retval = '(';
2878
2879                     retval -= typelen;
2880                     memcpy(retval, typestr, typelen);
2881
2882                     if (stashname) {
2883                         *--retval = '=';
2884                         retval -= stashnamelen;
2885                         memcpy(retval, stashname, stashnamelen);
2886                     }
2887                     /* retval may not necessarily have reached the start of the
2888                        buffer here.  */
2889                     assert (retval >= buffer);
2890
2891                     len = buffer_end - retval - 1; /* -1 for that \0  */
2892                 }
2893                 if (lp)
2894                     *lp = len;
2895                 SAVEFREEPV(buffer);
2896                 return retval;
2897             }
2898         }
2899         if (SvREADONLY(sv) && !SvOK(sv)) {
2900             if (lp)
2901                 *lp = 0;
2902             if (flags & SV_UNDEF_RETURNS_NULL)
2903                 return NULL;
2904             if (ckWARN(WARN_UNINITIALIZED))
2905                 report_uninit(sv);
2906             return (char *)"";
2907         }
2908     }
2909     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2910         /* I'm assuming that if both IV and NV are equally valid then
2911            converting the IV is going to be more efficient */
2912         const U32 isUIOK = SvIsUV(sv);
2913         char buf[TYPE_CHARS(UV)];
2914         char *ebuf, *ptr;
2915         STRLEN len;
2916
2917         if (SvTYPE(sv) < SVt_PVIV)
2918             sv_upgrade(sv, SVt_PVIV);
2919         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2920         len = ebuf - ptr;
2921         /* inlined from sv_setpvn */
2922         s = SvGROW_mutable(sv, len + 1);
2923         Move(ptr, s, len, char);
2924         s += len;
2925         *s = '\0';
2926     }
2927     else if (SvNOKp(sv)) {
2928         if (SvTYPE(sv) < SVt_PVNV)
2929             sv_upgrade(sv, SVt_PVNV);
2930         if (SvNVX(sv) == 0.0) {
2931             s = SvGROW_mutable(sv, 2);
2932             *s++ = '0';
2933             *s = '\0';
2934         } else {
2935             dSAVE_ERRNO;
2936             /* The +20 is pure guesswork.  Configure test needed. --jhi */
2937             s = SvGROW_mutable(sv, NV_DIG + 20);
2938             /* some Xenix systems wipe out errno here */
2939             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2940             RESTORE_ERRNO;
2941             while (*s) s++;
2942         }
2943 #ifdef hcx
2944         if (s[-1] == '.')
2945             *--s = '\0';
2946 #endif
2947     }
2948     else {
2949         if (isGV_with_GP(sv)) {
2950             GV *const gv = MUTABLE_GV(sv);
2951             const U32 wasfake = SvFLAGS(gv) & SVf_FAKE;
2952             SV *const buffer = sv_newmortal();
2953
2954             /* FAKE globs can get coerced, so need to turn this off temporarily
2955                if it is on.  */
2956             SvFAKE_off(gv);
2957             gv_efullname3(buffer, gv, "*");
2958             SvFLAGS(gv) |= wasfake;
2959
2960             if (SvPOK(buffer)) {
2961                 if (lp) {
2962                     *lp = SvCUR(buffer);
2963                 }
2964                 if ( SvUTF8(buffer) ) SvUTF8_on(sv);
2965                 return SvPVX(buffer);
2966             }
2967             else {
2968                 if (lp)
2969                     *lp = 0;
2970                 return (char *)"";
2971             }
2972         }
2973
2974         if (lp)
2975             *lp = 0;
2976         if (flags & SV_UNDEF_RETURNS_NULL)
2977             return NULL;
2978         if (!PL_localizing && !(SvFLAGS(sv) & SVs_PADTMP) && ckWARN(WARN_UNINITIALIZED))
2979             report_uninit(sv);
2980         if (SvTYPE(sv) < SVt_PV)
2981             /* Typically the caller expects that sv_any is not NULL now.  */
2982             sv_upgrade(sv, SVt_PV);
2983         return (char *)"";
2984     }
2985     {
2986         const STRLEN len = s - SvPVX_const(sv);
2987         if (lp) 
2988             *lp = len;
2989         SvCUR_set(sv, len);
2990     }
2991     SvPOK_on(sv);
2992     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
2993                           PTR2UV(sv),SvPVX_const(sv)));
2994     if (flags & SV_CONST_RETURN)
2995         return (char *)SvPVX_const(sv);
2996     if (flags & SV_MUTABLE_RETURN)
2997         return SvPVX_mutable(sv);
2998     return SvPVX(sv);
2999 }
3000
3001 /*
3002 =for apidoc sv_copypv
3003
3004 Copies a stringified representation of the source SV into the
3005 destination SV.  Automatically performs any necessary mg_get and
3006 coercion of numeric values into strings.  Guaranteed to preserve
3007 UTF8 flag even from overloaded objects.  Similar in nature to
3008 sv_2pv[_flags] but operates directly on an SV instead of just the
3009 string.  Mostly uses sv_2pv_flags to do its work, except when that
3010 would lose the UTF-8'ness of the PV.
3011
3012 =cut
3013 */
3014
3015 void
3016 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
3017 {
3018     STRLEN len;
3019     const char * const s = SvPV_const(ssv,len);
3020
3021     PERL_ARGS_ASSERT_SV_COPYPV;
3022
3023     sv_setpvn(dsv,s,len);
3024     if (SvUTF8(ssv))
3025         SvUTF8_on(dsv);
3026     else
3027         SvUTF8_off(dsv);
3028 }
3029
3030 /*
3031 =for apidoc sv_2pvbyte
3032
3033 Return a pointer to the byte-encoded representation of the SV, and set *lp
3034 to its length.  May cause the SV to be downgraded from UTF-8 as a
3035 side-effect.
3036
3037 Usually accessed via the C<SvPVbyte> macro.
3038
3039 =cut
3040 */
3041
3042 char *
3043 Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
3044 {
3045     PERL_ARGS_ASSERT_SV_2PVBYTE;
3046
3047     SvGETMAGIC(sv);
3048     sv_utf8_downgrade(sv,0);
3049     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3050 }
3051
3052 /*
3053 =for apidoc sv_2pvutf8
3054
3055 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3056 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3057
3058 Usually accessed via the C<SvPVutf8> macro.
3059
3060 =cut
3061 */
3062
3063 char *
3064 Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
3065 {
3066     PERL_ARGS_ASSERT_SV_2PVUTF8;
3067
3068     sv_utf8_upgrade(sv);
3069     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3070 }
3071
3072
3073 /*
3074 =for apidoc sv_2bool
3075
3076 This macro is only used by sv_true() or its macro equivalent, and only if
3077 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3078 It calls sv_2bool_flags with the SV_GMAGIC flag.
3079
3080 =for apidoc sv_2bool_flags
3081
3082 This function is only used by sv_true() and friends,  and only if
3083 the latter's argument is neither SvPOK, SvIOK nor SvNOK. If the flags
3084 contain SV_GMAGIC, then it does an mg_get() first.
3085
3086
3087 =cut
3088 */
3089
3090 bool
3091 Perl_sv_2bool_flags(pTHX_ register SV *const sv, const I32 flags)
3092 {
3093     dVAR;
3094
3095     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3096
3097     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3098
3099     if (!SvOK(sv))
3100         return 0;
3101     if (SvROK(sv)) {
3102         if (SvAMAGIC(sv)) {
3103             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3104             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3105                 return cBOOL(SvTRUE(tmpsv));
3106         }
3107         return SvRV(sv) != 0;
3108     }
3109     if (SvPOKp(sv)) {
3110         register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3111         if (Xpvtmp &&
3112                 (*sv->sv_u.svu_pv > '0' ||
3113                 Xpvtmp->xpv_cur > 1 ||
3114                 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
3115             return 1;
3116         else
3117             return 0;
3118     }
3119     else {
3120         if (SvIOKp(sv))
3121             return SvIVX(sv) != 0;
3122         else {
3123             if (SvNOKp(sv))
3124                 return SvNVX(sv) != 0.0;
3125             else {
3126                 if (isGV_with_GP(sv))
3127                     return TRUE;
3128                 else
3129                     return FALSE;
3130             }
3131         }
3132     }
3133 }
3134
3135 /*
3136 =for apidoc sv_utf8_upgrade
3137
3138 Converts the PV of an SV to its UTF-8-encoded form.
3139 Forces the SV to string form if it is not already.
3140 Will C<mg_get> on C<sv> if appropriate.
3141 Always sets the SvUTF8 flag to avoid future validity checks even
3142 if the whole string is the same in UTF-8 as not.
3143 Returns the number of bytes in the converted string
3144
3145 This is not as a general purpose byte encoding to Unicode interface:
3146 use the Encode extension for that.
3147
3148 =for apidoc sv_utf8_upgrade_nomg
3149
3150 Like sv_utf8_upgrade, but doesn't do magic on C<sv>
3151
3152 =for apidoc sv_utf8_upgrade_flags
3153
3154 Converts the PV of an SV to its UTF-8-encoded form.
3155 Forces the SV to string form if it is not already.
3156 Always sets the SvUTF8 flag to avoid future validity checks even
3157 if all the bytes are invariant in UTF-8. If C<flags> has C<SV_GMAGIC> bit set,
3158 will C<mg_get> on C<sv> if appropriate, else not.
3159 Returns the number of bytes in the converted string
3160 C<sv_utf8_upgrade> and
3161 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3162
3163 This is not as a general purpose byte encoding to Unicode interface:
3164 use the Encode extension for that.
3165
3166 =cut
3167
3168 The grow version is currently not externally documented.  It adds a parameter,
3169 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3170 have free after it upon return.  This allows the caller to reserve extra space
3171 that it intends to fill, to avoid extra grows.
3172
3173 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3174 which can be used to tell this function to not first check to see if there are
3175 any characters that are different in UTF-8 (variant characters) which would
3176 force it to allocate a new string to sv, but to assume there are.  Typically
3177 this flag is used by a routine that has already parsed the string to find that
3178 there are such characters, and passes this information on so that the work
3179 doesn't have to be repeated.
3180
3181 (One might think that the calling routine could pass in the position of the
3182 first such variant, so it wouldn't have to be found again.  But that is not the
3183 case, because typically when the caller is likely to use this flag, it won't be
3184 calling this routine unless it finds something that won't fit into a byte.
3185 Otherwise it tries to not upgrade and just use bytes.  But some things that
3186 do fit into a byte are variants in utf8, and the caller may not have been
3187 keeping track of these.)
3188
3189 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3190 isn't guaranteed due to having other routines do the work in some input cases,
3191 or if the input is already flagged as being in utf8.
3192
3193 The speed of this could perhaps be improved for many cases if someone wanted to
3194 write a fast function that counts the number of variant characters in a string,
3195 especially if it could return the position of the first one.
3196
3197 */
3198
3199 STRLEN
3200 Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
3201 {
3202     dVAR;
3203
3204     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3205
3206     if (sv == &PL_sv_undef)
3207         return 0;
3208     if (!SvPOK(sv)) {
3209         STRLEN len = 0;
3210         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3211             (void) sv_2pv_flags(sv,&len, flags);
3212             if (SvUTF8(sv)) {
3213                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3214                 return len;
3215             }
3216         } else {
3217             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3218         }
3219     }
3220
3221     if (SvUTF8(sv)) {
3222         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3223         return SvCUR(sv);
3224     }
3225
3226     if (SvIsCOW(sv)) {
3227         sv_force_normal_flags(sv, 0);
3228     }
3229
3230     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3231         sv_recode_to_utf8(sv, PL_encoding);
3232         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3233         return SvCUR(sv);
3234     }
3235
3236     if (SvCUR(sv) == 0) {
3237         if (extra) SvGROW(sv, extra);
3238     } else { /* Assume Latin-1/EBCDIC */
3239         /* This function could be much more efficient if we
3240          * had a FLAG in SVs to signal if there are any variant
3241          * chars in the PV.  Given that there isn't such a flag
3242          * make the loop as fast as possible (although there are certainly ways
3243          * to speed this up, eg. through vectorization) */
3244         U8 * s = (U8 *) SvPVX_const(sv);
3245         U8 * e = (U8 *) SvEND(sv);
3246         U8 *t = s;
3247         STRLEN two_byte_count = 0;
3248         
3249         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3250
3251         /* See if really will need to convert to utf8.  We mustn't rely on our
3252          * incoming SV being well formed and having a trailing '\0', as certain
3253          * code in pp_formline can send us partially built SVs. */
3254
3255         while (t < e) {
3256             const U8 ch = *t++;
3257             if (NATIVE_IS_INVARIANT(ch)) continue;
3258
3259             t--;    /* t already incremented; re-point to first variant */
3260             two_byte_count = 1;
3261             goto must_be_utf8;
3262         }
3263
3264         /* utf8 conversion not needed because all are invariants.  Mark as
3265          * UTF-8 even if no variant - saves scanning loop */
3266         SvUTF8_on(sv);
3267         return SvCUR(sv);
3268
3269 must_be_utf8:
3270
3271         /* Here, the string should be converted to utf8, either because of an
3272          * input flag (two_byte_count = 0), or because a character that
3273          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3274          * the beginning of the string (if we didn't examine anything), or to
3275          * the first variant.  In either case, everything from s to t - 1 will
3276          * occupy only 1 byte each on output.
3277          *
3278          * There are two main ways to convert.  One is to create a new string
3279          * and go through the input starting from the beginning, appending each
3280          * converted value onto the new string as we go along.  It's probably
3281          * best to allocate enough space in the string for the worst possible
3282          * case rather than possibly running out of space and having to
3283          * reallocate and then copy what we've done so far.  Since everything
3284          * from s to t - 1 is invariant, the destination can be initialized
3285          * with these using a fast memory copy
3286          *
3287          * The other way is to figure out exactly how big the string should be
3288          * by parsing the entire input.  Then you don't have to make it big
3289          * enough to handle the worst possible case, and more importantly, if
3290          * the string you already have is large enough, you don't have to
3291          * allocate a new string, you can copy the last character in the input
3292          * string to the final position(s) that will be occupied by the
3293          * converted string and go backwards, stopping at t, since everything
3294          * before that is invariant.
3295          *
3296          * There are advantages and disadvantages to each method.
3297          *
3298          * In the first method, we can allocate a new string, do the memory
3299          * copy from the s to t - 1, and then proceed through the rest of the
3300          * string byte-by-byte.
3301          *
3302          * In the second method, we proceed through the rest of the input
3303          * string just calculating how big the converted string will be.  Then
3304          * there are two cases:
3305          *  1)  if the string has enough extra space to handle the converted
3306          *      value.  We go backwards through the string, converting until we
3307          *      get to the position we are at now, and then stop.  If this
3308          *      position is far enough along in the string, this method is
3309          *      faster than the other method.  If the memory copy were the same
3310          *      speed as the byte-by-byte loop, that position would be about
3311          *      half-way, as at the half-way mark, parsing to the end and back
3312          *      is one complete string's parse, the same amount as starting
3313          *      over and going all the way through.  Actually, it would be
3314          *      somewhat less than half-way, as it's faster to just count bytes
3315          *      than to also copy, and we don't have the overhead of allocating
3316          *      a new string, changing the scalar to use it, and freeing the
3317          *      existing one.  But if the memory copy is fast, the break-even
3318          *      point is somewhere after half way.  The counting loop could be
3319          *      sped up by vectorization, etc, to move the break-even point
3320          *      further towards the beginning.
3321          *  2)  if the string doesn't have enough space to handle the converted
3322          *      value.  A new string will have to be allocated, and one might
3323          *      as well, given that, start from the beginning doing the first
3324          *      method.  We've spent extra time parsing the string and in
3325          *      exchange all we've gotten is that we know precisely how big to
3326          *      make the new one.  Perl is more optimized for time than space,
3327          *      so this case is a loser.
3328          * So what I've decided to do is not use the 2nd method unless it is
3329          * guaranteed that a new string won't have to be allocated, assuming
3330          * the worst case.  I also decided not to put any more conditions on it
3331          * than this, for now.  It seems likely that, since the worst case is
3332          * twice as big as the unknown portion of the string (plus 1), we won't
3333          * be guaranteed enough space, causing us to go to the first method,
3334          * unless the string is short, or the first variant character is near
3335          * the end of it.  In either of these cases, it seems best to use the
3336          * 2nd method.  The only circumstance I can think of where this would
3337          * be really slower is if the string had once had much more data in it
3338          * than it does now, but there is still a substantial amount in it  */
3339
3340         {
3341             STRLEN invariant_head = t - s;
3342             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3343             if (SvLEN(sv) < size) {
3344
3345                 /* Here, have decided to allocate a new string */
3346
3347                 U8 *dst;
3348                 U8 *d;
3349
3350                 Newx(dst, size, U8);
3351
3352                 /* If no known invariants at the beginning of the input string,
3353                  * set so starts from there.  Otherwise, can use memory copy to
3354                  * get up to where we are now, and then start from here */
3355
3356                 if (invariant_head <= 0) {
3357                     d = dst;
3358                 } else {
3359                     Copy(s, dst, invariant_head, char);
3360                     d = dst + invariant_head;
3361                 }
3362
3363                 while (t < e) {
3364                     const UV uv = NATIVE8_TO_UNI(*t++);
3365                     if (UNI_IS_INVARIANT(uv))
3366                         *d++ = (U8)UNI_TO_NATIVE(uv);
3367                     else {
3368                         *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3369                         *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3370                     }
3371                 }
3372                 *d = '\0';
3373                 SvPV_free(sv); /* No longer using pre-existing string */
3374                 SvPV_set(sv, (char*)dst);
3375                 SvCUR_set(sv, d - dst);
3376                 SvLEN_set(sv, size);
3377             } else {
3378
3379                 /* Here, have decided to get the exact size of the string.
3380                  * Currently this happens only when we know that there is
3381                  * guaranteed enough space to fit the converted string, so
3382                  * don't have to worry about growing.  If two_byte_count is 0,
3383                  * then t points to the first byte of the string which hasn't
3384                  * been examined yet.  Otherwise two_byte_count is 1, and t
3385                  * points to the first byte in the string that will expand to
3386                  * two.  Depending on this, start examining at t or 1 after t.
3387                  * */
3388
3389                 U8 *d = t + two_byte_count;
3390
3391
3392                 /* Count up the remaining bytes that expand to two */
3393
3394                 while (d < e) {
3395                     const U8 chr = *d++;
3396                     if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3397                 }
3398
3399                 /* The string will expand by just the number of bytes that
3400                  * occupy two positions.  But we are one afterwards because of
3401                  * the increment just above.  This is the place to put the
3402                  * trailing NUL, and to set the length before we decrement */
3403
3404                 d += two_byte_count;
3405                 SvCUR_set(sv, d - s);
3406                 *d-- = '\0';
3407
3408
3409                 /* Having decremented d, it points to the position to put the
3410                  * very last byte of the expanded string.  Go backwards through
3411                  * the string, copying and expanding as we go, stopping when we
3412                  * get to the part that is invariant the rest of the way down */
3413
3414                 e--;
3415                 while (e >= t) {
3416                     const U8 ch = NATIVE8_TO_UNI(*e--);
3417                     if (UNI_IS_INVARIANT(ch)) {
3418                         *d-- = UNI_TO_NATIVE(ch);
3419                     } else {
3420                         *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3421                         *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3422                     }
3423                 }
3424             }
3425
3426             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3427                 /* Update pos. We do it at the end rather than during
3428                  * the upgrade, to avoid slowing down the common case
3429                  * (upgrade without pos) */
3430                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3431                 if (mg) {
3432                     I32 pos = mg->mg_len;
3433                     if (pos > 0 && (U32)pos > invariant_head) {
3434                         U8 *d = (U8*) SvPVX(sv) + invariant_head;
3435                         STRLEN n = (U32)pos - invariant_head;
3436                         while (n > 0) {
3437                             if (UTF8_IS_START(*d))
3438                                 d++;
3439                             d++;
3440                             n--;
3441                         }
3442                         mg->mg_len  = d - (U8*)SvPVX(sv);
3443                     }
3444                 }
3445                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3446                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3447             }
3448         }
3449     }
3450
3451     /* Mark as UTF-8 even if no variant - saves scanning loop */
3452     SvUTF8_on(sv);
3453     return SvCUR(sv);
3454 }
3455
3456 /*
3457 =for apidoc sv_utf8_downgrade
3458
3459 Attempts to convert the PV of an SV from characters to bytes.
3460 If the PV contains a character that cannot fit
3461 in a byte, this conversion will fail;
3462 in this case, either returns false or, if C<fail_ok> is not
3463 true, croaks.
3464
3465 This is not as a general purpose Unicode to byte encoding interface:
3466 use the Encode extension for that.
3467
3468 =cut
3469 */
3470
3471 bool
3472 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3473 {
3474     dVAR;
3475
3476     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3477
3478     if (SvPOKp(sv) && SvUTF8(sv)) {
3479         if (SvCUR(sv)) {
3480             U8 *s;
3481             STRLEN len;
3482             int mg_flags = SV_GMAGIC;
3483
3484             if (SvIsCOW(sv)) {
3485                 sv_force_normal_flags(sv, 0);
3486             }
3487             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3488                 /* update pos */
3489                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3490                 if (mg) {
3491                     I32 pos = mg->mg_len;
3492                     if (pos > 0) {
3493                         sv_pos_b2u(sv, &pos);
3494                         mg_flags = 0; /* sv_pos_b2u does get magic */
3495                         mg->mg_len  = pos;
3496                     }
3497                 }
3498                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3499                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3500
3501             }
3502             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3503
3504             if (!utf8_to_bytes(s, &len)) {
3505                 if (fail_ok)
3506                     return FALSE;
3507                 else {
3508                     if (PL_op)
3509                         Perl_croak(aTHX_ "Wide character in %s",
3510                                    OP_DESC(PL_op));
3511                     else
3512                         Perl_croak(aTHX_ "Wide character");
3513                 }
3514             }
3515             SvCUR_set(sv, len);
3516         }
3517     }
3518     SvUTF8_off(sv);
3519     return TRUE;
3520 }
3521
3522 /*
3523 =for apidoc sv_utf8_encode
3524
3525 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3526 flag off so that it looks like octets again.
3527
3528 =cut
3529 */
3530
3531 void
3532 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3533 {
3534     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3535
3536     if (SvIsCOW(sv)) {
3537         sv_force_normal_flags(sv, 0);
3538     }
3539     if (SvREADONLY(sv)) {
3540         Perl_croak_no_modify(aTHX);
3541     }
3542     (void) sv_utf8_upgrade(sv);
3543     SvUTF8_off(sv);
3544 }
3545
3546 /*
3547 =for apidoc sv_utf8_decode
3548
3549 If the PV of the SV is an octet sequence in UTF-8
3550 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3551 so that it looks like a character. If the PV contains only single-byte
3552 characters, the C<SvUTF8> flag stays off.
3553 Scans PV for validity and returns false if the PV is invalid UTF-8.
3554
3555 =cut
3556 */
3557
3558 bool
3559 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3560 {
3561     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3562
3563     if (SvPOKp(sv)) {
3564         const U8 *start, *c;
3565         const U8 *e;
3566
3567         /* The octets may have got themselves encoded - get them back as
3568          * bytes
3569          */
3570         if (!sv_utf8_downgrade(sv, TRUE))
3571             return FALSE;
3572
3573         /* it is actually just a matter of turning the utf8 flag on, but
3574          * we want to make sure everything inside is valid utf8 first.
3575          */
3576         c = start = (const U8 *) SvPVX_const(sv);
3577         if (!is_utf8_string(c, SvCUR(sv)+1))
3578             return FALSE;
3579         e = (const U8 *) SvEND(sv);
3580         while (c < e) {
3581             const U8 ch = *c++;
3582             if (!UTF8_IS_INVARIANT(ch)) {
3583                 SvUTF8_on(sv);
3584                 break;
3585             }
3586         }
3587         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3588             /* adjust pos to the start of a UTF8 char sequence */
3589             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3590             if (mg) {
3591                 I32 pos = mg->mg_len;
3592                 if (pos > 0) {
3593                     for (c = start + pos; c > start; c--) {
3594                         if (UTF8_IS_START(*c))
3595                             break;
3596                     }
3597                     mg->mg_len  = c - start;
3598                 }
3599             }
3600             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3601                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3602         }
3603     }
3604     return TRUE;
3605 }
3606
3607 /*
3608 =for apidoc sv_setsv
3609
3610 Copies the contents of the source SV C<ssv> into the destination SV
3611 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3612 function if the source SV needs to be reused. Does not handle 'set' magic.
3613 Loosely speaking, it performs a copy-by-value, obliterating any previous
3614 content of the destination.
3615
3616 You probably want to use one of the assortment of wrappers, such as
3617 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3618 C<SvSetMagicSV_nosteal>.
3619
3620 =for apidoc sv_setsv_flags
3621
3622 Copies the contents of the source SV C<ssv> into the destination SV
3623 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3624 function if the source SV needs to be reused. Does not handle 'set' magic.
3625 Loosely speaking, it performs a copy-by-value, obliterating any previous
3626 content of the destination.
3627 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3628 C<ssv> if appropriate, else not. If the C<flags> parameter has the
3629 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
3630 and C<sv_setsv_nomg> are implemented in terms of this function.
3631
3632 You probably want to use one of the assortment of wrappers, such as
3633 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3634 C<SvSetMagicSV_nosteal>.
3635
3636 This is the primary function for copying scalars, and most other
3637 copy-ish functions and macros use this underneath.
3638
3639 =cut
3640 */
3641
3642 static void
3643 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3644 {
3645     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3646     HV *old_stash = NULL;
3647
3648     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3649
3650     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3651         const char * const name = GvNAME(sstr);
3652         const STRLEN len = GvNAMELEN(sstr);
3653         {
3654             if (dtype >= SVt_PV) {
3655                 SvPV_free(dstr);
3656                 SvPV_set(dstr, 0);
3657                 SvLEN_set(dstr, 0);
3658                 SvCUR_set(dstr, 0);
3659             }
3660             SvUPGRADE(dstr, SVt_PVGV);
3661             (void)SvOK_off(dstr);
3662             /* FIXME - why are we doing this, then turning it off and on again
3663                below?  */
3664             isGV_with_GP_on(dstr);
3665         }
3666         GvSTASH(dstr) = GvSTASH(sstr);
3667         if (GvSTASH(dstr))
3668             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3669         gv_name_set(MUTABLE_GV(dstr), name, len,
3670                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3671         SvFAKE_on(dstr);        /* can coerce to non-glob */
3672     }
3673
3674     if(GvGP(MUTABLE_GV(sstr))) {
3675         /* If source has method cache entry, clear it */
3676         if(GvCVGEN(sstr)) {
3677             SvREFCNT_dec(GvCV(sstr));
3678             GvCV_set(sstr, NULL);
3679             GvCVGEN(sstr) = 0;
3680         }
3681         /* If source has a real method, then a method is
3682            going to change */
3683         else if(
3684          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3685         ) {
3686             mro_changes = 1;
3687         }
3688     }
3689
3690     /* If dest already had a real method, that's a change as well */
3691     if(
3692         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3693      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3694     ) {
3695         mro_changes = 1;
3696     }
3697
3698     /* We don’t need to check the name of the destination if it was not a
3699        glob to begin with. */
3700     if(dtype == SVt_PVGV) {
3701         const char * const name = GvNAME((const GV *)dstr);
3702         if(
3703             strEQ(name,"ISA")
3704          /* The stash may have been detached from the symbol table, so
3705             check its name. */
3706          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3707          && GvAV((const GV *)sstr)
3708         )
3709             mro_changes = 2;
3710         else {
3711             const STRLEN len = GvNAMELEN(dstr);
3712             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3713              || (len == 1 && name[0] == ':')) {
3714                 mro_changes = 3;
3715
3716                 /* Set aside the old stash, so we can reset isa caches on
3717                    its subclasses. */
3718                 if((old_stash = GvHV(dstr)))
3719                     /* Make sure we do not lose it early. */
3720                     SvREFCNT_inc_simple_void_NN(
3721                      sv_2mortal((SV *)old_stash)
3722                     );
3723             }
3724         }
3725     }
3726
3727     gp_free(MUTABLE_GV(dstr));
3728     isGV_with_GP_off(dstr);
3729     (void)SvOK_off(dstr);
3730     isGV_with_GP_on(dstr);
3731     GvINTRO_off(dstr);          /* one-shot flag */
3732     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3733     if (SvTAINTED(sstr))
3734         SvTAINT(dstr);
3735     if (GvIMPORTED(dstr) != GVf_IMPORTED
3736         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3737         {
3738             GvIMPORTED_on(dstr);
3739         }
3740     GvMULTI_on(dstr);
3741     if(mro_changes == 2) {
3742         MAGIC *mg;
3743         SV * const sref = (SV *)GvAV((const GV *)dstr);
3744         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3745             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3746                 AV * const ary = newAV();
3747                 av_push(ary, mg->mg_obj); /* takes the refcount */
3748                 mg->mg_obj = (SV *)ary;
3749             }
3750             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3751         }
3752         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3753         mro_isa_changed_in(GvSTASH(dstr));
3754     }
3755     else if(mro_changes == 3) {
3756         HV * const stash = GvHV(dstr);
3757         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3758             mro_package_moved(
3759                 stash, old_stash,
3760                 (GV *)dstr, 0
3761             );
3762     }
3763     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3764     return;
3765 }
3766
3767 static void
3768 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3769 {
3770     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3771     SV *dref = NULL;
3772     const int intro = GvINTRO(dstr);
3773     SV **location;
3774     U8 import_flag = 0;
3775     const U32 stype = SvTYPE(sref);
3776
3777     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3778
3779     if (intro) {
3780         GvINTRO_off(dstr);      /* one-shot flag */
3781         GvLINE(dstr) = CopLINE(PL_curcop);
3782         GvEGV(dstr) = MUTABLE_GV(dstr);
3783     }
3784     GvMULTI_on(dstr);
3785     switch (stype) {
3786     case SVt_PVCV:
3787         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
3788         import_flag = GVf_IMPORTED_CV;
3789         goto common;
3790     case SVt_PVHV:
3791         location = (SV **) &GvHV(dstr);
3792         import_flag = GVf_IMPORTED_HV;
3793         goto common;
3794     case SVt_PVAV:
3795         location = (SV **) &GvAV(dstr);
3796         import_flag = GVf_IMPORTED_AV;
3797         goto common;
3798     case SVt_PVIO:
3799         location = (SV **) &GvIOp(dstr);
3800         goto common;
3801     case SVt_PVFM:
3802         location = (SV **) &GvFORM(dstr);
3803         goto common;
3804     default:
3805         location = &GvSV(dstr);
3806         import_flag = GVf_IMPORTED_SV;
3807     common:
3808         if (intro) {
3809             if (stype == SVt_PVCV) {
3810                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3811                 if (GvCVGEN(dstr)) {
3812                     SvREFCNT_dec(GvCV(dstr));
3813                     GvCV_set(dstr, NULL);
3814                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3815                 }
3816             }
3817             SAVEGENERICSV(*location);
3818         }
3819         else
3820             dref = *location;
3821         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3822             CV* const cv = MUTABLE_CV(*location);
3823             if (cv) {
3824                 if (!GvCVGEN((const GV *)dstr) &&
3825                     (CvROOT(cv) || CvXSUB(cv)))
3826                     {
3827                         /* Redefining a sub - warning is mandatory if
3828                            it was a const and its value changed. */
3829                         if (CvCONST(cv) && CvCONST((const CV *)sref)
3830                             && cv_const_sv(cv)
3831                             == cv_const_sv((const CV *)sref)) {
3832                             NOOP;
3833                             /* They are 2 constant subroutines generated from
3834                                the same constant. This probably means that
3835                                they are really the "same" proxy subroutine
3836                                instantiated in 2 places. Most likely this is
3837                                when a constant is exported twice.  Don't warn.
3838                             */
3839                         }
3840                         else if (ckWARN(WARN_REDEFINE)
3841                                  || (CvCONST(cv)
3842                                      && (!CvCONST((const CV *)sref)
3843                                          || sv_cmp(cv_const_sv(cv),
3844                                                    cv_const_sv((const CV *)
3845                                                                sref))))) {
3846                             Perl_warner(aTHX_ packWARN(WARN_REDEFINE),
3847                                         (const char *)
3848                                         (CvCONST(cv)
3849                                          ? "Constant subroutine %s::%s redefined"
3850                                          : "Subroutine %s::%s redefined"),
3851                                         HvNAME_get(GvSTASH((const GV *)dstr)),
3852                                         GvENAME(MUTABLE_GV(dstr)));
3853                         }
3854                     }
3855                 if (!intro)
3856                     cv_ckproto_len(cv, (const GV *)dstr,
3857                                    SvPOK(sref) ? SvPVX_const(sref) : NULL,
3858                                    SvPOK(sref) ? SvCUR(sref) : 0);
3859             }
3860             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3861             GvASSUMECV_on(dstr);
3862             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3863         }
3864         *location = sref;
3865         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3866             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3867             GvFLAGS(dstr) |= import_flag;
3868         }
3869         if (stype == SVt_PVHV) {
3870             const char * const name = GvNAME((GV*)dstr);
3871             const STRLEN len = GvNAMELEN(dstr);
3872             if (
3873                 (
3874                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
3875                 || (len == 1 && name[0] == ':')
3876                 )
3877              && (!dref || HvENAME_get(dref))
3878             ) {
3879                 mro_package_moved(
3880                     (HV *)sref, (HV *)dref,
3881                     (GV *)dstr, 0
3882                 );
3883             }
3884         }
3885         else if (
3886             stype == SVt_PVAV && sref != dref
3887          && strEQ(GvNAME((GV*)dstr), "ISA")
3888          /* The stash may have been detached from the symbol table, so
3889             check its name before doing anything. */
3890          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3891         ) {
3892             MAGIC *mg;
3893             MAGIC * const omg = dref && SvSMAGICAL(dref)
3894                                  ? mg_find(dref, PERL_MAGIC_isa)
3895                                  : NULL;
3896             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3897                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3898                     AV * const ary = newAV();
3899                     av_push(ary, mg->mg_obj); /* takes the refcount */
3900                     mg->mg_obj = (SV *)ary;
3901                 }
3902                 if (omg) {
3903                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
3904                         SV **svp = AvARRAY((AV *)omg->mg_obj);
3905                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
3906                         while (items--)
3907                             av_push(
3908                              (AV *)mg->mg_obj,
3909                              SvREFCNT_inc_simple_NN(*svp++)
3910                             );
3911                     }
3912                     else
3913                         av_push(
3914                          (AV *)mg->mg_obj,
3915                          SvREFCNT_inc_simple_NN(omg->mg_obj)
3916                         );
3917                 }
3918                 else
3919                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
3920             }
3921             else
3922             {
3923                 sv_magic(
3924                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
3925                 );
3926                 mg = mg_find(sref, PERL_MAGIC_isa);
3927             }
3928             /* Since the *ISA assignment could have affected more than
3929                one stash, don’t call mro_isa_changed_in directly, but let
3930                magic_clearisa do it for us, as it already has the logic for
3931                dealing with globs vs arrays of globs. */
3932             assert(mg);
3933             Perl_magic_clearisa(aTHX_ NULL, mg);
3934         }
3935         break;
3936     }
3937     SvREFCNT_dec(dref);
3938     if (SvTAINTED(sstr))
3939         SvTAINT(dstr);
3940     return;
3941 }
3942
3943 void
3944 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3945 {
3946     dVAR;
3947     register U32 sflags;
3948     register int dtype;
3949     register svtype stype;
3950
3951     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3952
3953     if (sstr == dstr)
3954         return;
3955
3956     if (SvIS_FREED(dstr)) {
3957         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3958                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3959     }
3960     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3961     if (!sstr)
3962         sstr = &PL_sv_undef;
3963     if (SvIS_FREED(sstr)) {
3964         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3965                    (void*)sstr, (void*)dstr);
3966     }
3967     stype = SvTYPE(sstr);
3968     dtype = SvTYPE(dstr);
3969
3970     (void)SvAMAGIC_off(dstr);
3971     if ( SvVOK(dstr) )
3972     {
3973         /* need to nuke the magic */
3974         mg_free(dstr);
3975     }
3976
3977     /* There's a lot of redundancy below but we're going for speed here */
3978
3979     switch (stype) {
3980     case SVt_NULL:
3981       undef_sstr:
3982         if (dtype != SVt_PVGV && dtype != SVt_PVLV) {
3983             (void)SvOK_off(dstr);
3984             return;
3985         }
3986         break;
3987     case SVt_IV:
3988         if (SvIOK(sstr)) {
3989             switch (dtype) {
3990             case SVt_NULL:
3991                 sv_upgrade(dstr, SVt_IV);
3992                 break;
3993             case SVt_NV:
3994             case SVt_PV:
3995                 sv_upgrade(dstr, SVt_PVIV);
3996                 break;
3997             case SVt_PVGV:
3998             case SVt_PVLV:
3999                 goto end_of_first_switch;
4000             }
4001             (void)SvIOK_only(dstr);
4002             SvIV_set(dstr,  SvIVX(sstr));
4003             if (SvIsUV(sstr))
4004                 SvIsUV_on(dstr);
4005             /* SvTAINTED can only be true if the SV has taint magic, which in
4006                turn means that the SV type is PVMG (or greater). This is the
4007                case statement for SVt_IV, so this cannot be true (whatever gcov
4008                may say).  */
4009             assert(!SvTAINTED(sstr));
4010             return;
4011         }
4012         if (!SvROK(sstr))
4013             goto undef_sstr;
4014         if (dtype < SVt_PV && dtype != SVt_IV)
4015             sv_upgrade(dstr, SVt_IV);
4016         break;
4017
4018     case SVt_NV:
4019         if (SvNOK(sstr)) {
4020             switch (dtype) {
4021             case SVt_NULL:
4022             case SVt_IV:
4023                 sv_upgrade(dstr, SVt_NV);
4024                 break;
4025             case SVt_PV:
4026             case SVt_PVIV:
4027                 sv_upgrade(dstr, SVt_PVNV);
4028                 break;
4029             case SVt_PVGV:
4030             case SVt_PVLV:
4031                 goto end_of_first_switch;
4032             }
4033             SvNV_set(dstr, SvNVX(sstr));
4034             (void)SvNOK_only(dstr);
4035             /* SvTAINTED can only be true if the SV has taint magic, which in
4036                turn means that the SV type is PVMG (or greater). This is the
4037                case statement for SVt_NV, so this cannot be true (whatever gcov
4038                may say).  */
4039             assert(!SvTAINTED(sstr));
4040             return;
4041         }
4042         goto undef_sstr;
4043
4044     case SVt_PVFM:
4045 #ifdef PERL_OLD_COPY_ON_WRITE
4046         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
4047             if (dtype < SVt_PVIV)
4048                 sv_upgrade(dstr, SVt_PVIV);
4049             break;
4050         }
4051         /* Fall through */
4052 #endif
4053     case SVt_PV:
4054         if (dtype < SVt_PV)
4055             sv_upgrade(dstr, SVt_PV);
4056         break;
4057     case SVt_PVIV:
4058         if (dtype < SVt_PVIV)
4059             sv_upgrade(dstr, SVt_PVIV);
4060         break;
4061     case SVt_PVNV:
4062         if (dtype < SVt_PVNV)
4063             sv_upgrade(dstr, SVt_PVNV);
4064         break;
4065     default:
4066         {
4067         const char * const type = sv_reftype(sstr,0);
4068         if (PL_op)
4069             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4070         else
4071             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4072         }
4073         break;
4074
4075     case SVt_REGEXP:
4076         if (dtype < SVt_REGEXP)
4077             sv_upgrade(dstr, SVt_REGEXP);
4078         break;
4079
4080         /* case SVt_BIND: */
4081     case SVt_PVLV:
4082     case SVt_PVGV:
4083     case SVt_PVMG:
4084         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4085             mg_get(sstr);
4086             if (SvTYPE(sstr) != stype)
4087                 stype = SvTYPE(sstr);
4088         }
4089         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4090                     glob_assign_glob(dstr, sstr, dtype);
4091                     return;
4092         }
4093         if (stype == SVt_PVLV)
4094             SvUPGRADE(dstr, SVt_PVNV);
4095         else
4096             SvUPGRADE(dstr, (svtype)stype);
4097     }
4098  end_of_first_switch:
4099
4100     /* dstr may have been upgraded.  */
4101     dtype = SvTYPE(dstr);
4102     sflags = SvFLAGS(sstr);
4103
4104     if (dtype == SVt_PVCV || dtype == SVt_PVFM) {
4105         /* Assigning to a subroutine sets the prototype.  */
4106         if (SvOK(sstr)) {
4107             STRLEN len;
4108             const char *const ptr = SvPV_const(sstr, len);
4109
4110             SvGROW(dstr, len + 1);
4111             Copy(ptr, SvPVX(dstr), len + 1, char);
4112             SvCUR_set(dstr, len);
4113             SvPOK_only(dstr);
4114             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4115         } else {
4116             SvOK_off(dstr);
4117         }
4118     } else if (dtype == SVt_PVAV || dtype == SVt_PVHV) {
4119         const char * const type = sv_reftype(dstr,0);
4120         if (PL_op)
4121             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4122         else
4123             Perl_croak(aTHX_ "Cannot copy to %s", type);
4124     } else if (sflags & SVf_ROK) {
4125         if (isGV_with_GP(dstr)
4126             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4127             sstr = SvRV(sstr);
4128             if (sstr == dstr) {
4129                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4130                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4131                 {
4132                     GvIMPORTED_on(dstr);
4133                 }
4134                 GvMULTI_on(dstr);
4135                 return;
4136             }
4137             glob_assign_glob(dstr, sstr, dtype);
4138             return;
4139         }
4140
4141         if (dtype >= SVt_PV) {
4142             if (isGV_with_GP(dstr)) {
4143                 glob_assign_ref(dstr, sstr);
4144                 return;
4145             }
4146             if (SvPVX_const(dstr)) {
4147                 SvPV_free(dstr);
4148                 SvLEN_set(dstr, 0);
4149                 SvCUR_set(dstr, 0);
4150             }
4151         }
4152         (void)SvOK_off(dstr);
4153         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4154         SvFLAGS(dstr) |= sflags & SVf_ROK;
4155         assert(!(sflags & SVp_NOK));
4156         assert(!(sflags & SVp_IOK));
4157         assert(!(sflags & SVf_NOK));
4158         assert(!(sflags & SVf_IOK));
4159     }
4160     else if (isGV_with_GP(dstr)) {
4161         if (!(sflags & SVf_OK)) {
4162             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4163                            "Undefined value assigned to typeglob");
4164         }
4165         else {
4166             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4167             if (dstr != (const SV *)gv) {
4168                 const char * const name = GvNAME((const GV *)dstr);
4169                 const STRLEN len = GvNAMELEN(dstr);
4170                 HV *old_stash = NULL;
4171                 bool reset_isa = FALSE;
4172                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4173                  || (len == 1 && name[0] == ':')) {
4174                     /* Set aside the old stash, so we can reset isa caches
4175                        on its subclasses. */
4176                     if((old_stash = GvHV(dstr))) {
4177                         /* Make sure we do not lose it early. */
4178                         SvREFCNT_inc_simple_void_NN(
4179                          sv_2mortal((SV *)old_stash)
4180                         );
4181                     }
4182                     reset_isa = TRUE;
4183                 }
4184
4185                 if (GvGP(dstr))
4186                     gp_free(MUTABLE_GV(dstr));
4187                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4188
4189                 if (reset_isa) {
4190                     HV * const stash = GvHV(dstr);
4191                     if(
4192                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4193                     )
4194                         mro_package_moved(
4195                          stash, old_stash,
4196                          (GV *)dstr, 0
4197                         );
4198                 }
4199             }
4200         }
4201     }
4202     else if (dtype == SVt_REGEXP && stype == SVt_REGEXP) {
4203         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4204     }
4205     else if (sflags & SVp_POK) {
4206         bool isSwipe = 0;
4207
4208         /*
4209          * Check to see if we can just swipe the string.  If so, it's a
4210          * possible small lose on short strings, but a big win on long ones.
4211          * It might even be a win on short strings if SvPVX_const(dstr)
4212          * has to be allocated and SvPVX_const(sstr) has to be freed.
4213          * Likewise if we can set up COW rather than doing an actual copy, we
4214          * drop to the else clause, as the swipe code and the COW setup code
4215          * have much in common.
4216          */
4217
4218         /* Whichever path we take through the next code, we want this true,
4219            and doing it now facilitates the COW check.  */
4220         (void)SvPOK_only(dstr);
4221
4222         if (
4223             /* If we're already COW then this clause is not true, and if COW
4224                is allowed then we drop down to the else and make dest COW 
4225                with us.  If caller hasn't said that we're allowed to COW
4226                shared hash keys then we don't do the COW setup, even if the
4227                source scalar is a shared hash key scalar.  */
4228             (((flags & SV_COW_SHARED_HASH_KEYS)
4229                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
4230                : 1 /* If making a COW copy is forbidden then the behaviour we
4231                        desire is as if the source SV isn't actually already
4232                        COW, even if it is.  So we act as if the source flags
4233                        are not COW, rather than actually testing them.  */
4234               )
4235 #ifndef PERL_OLD_COPY_ON_WRITE
4236              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4237                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4238                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4239                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4240                 but in turn, it's somewhat dead code, never expected to go
4241                 live, but more kept as a placeholder on how to do it better
4242                 in a newer implementation.  */
4243              /* If we are COW and dstr is a suitable target then we drop down
4244                 into the else and make dest a COW of us.  */
4245              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
4246 #endif
4247              )
4248             &&
4249             !(isSwipe =
4250                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4251                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4252                  (!(flags & SV_NOSTEAL)) &&
4253                                         /* and we're allowed to steal temps */
4254                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4255                  SvLEN(sstr))             /* and really is a string */
4256 #ifdef PERL_OLD_COPY_ON_WRITE
4257             && ((flags & SV_COW_SHARED_HASH_KEYS)
4258                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4259                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4260                      && SvTYPE(sstr) >= SVt_PVIV && SvTYPE(sstr) != SVt_PVFM))
4261                 : 1)
4262 #endif
4263             ) {
4264             /* Failed the swipe test, and it's not a shared hash key either.
4265                Have to copy the string.  */
4266             STRLEN len = SvCUR(sstr);
4267             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4268             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
4269             SvCUR_set(dstr, len);
4270             *SvEND(dstr) = '\0';
4271         } else {
4272             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4273                be true in here.  */
4274             /* Either it's a shared hash key, or it's suitable for
4275                copy-on-write or we can swipe the string.  */
4276             if (DEBUG_C_TEST) {
4277                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4278                 sv_dump(sstr);
4279                 sv_dump(dstr);
4280             }
4281 #ifdef PERL_OLD_COPY_ON_WRITE
4282             if (!isSwipe) {
4283                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4284                     != (SVf_FAKE | SVf_READONLY)) {
4285                     SvREADONLY_on(sstr);
4286                     SvFAKE_on(sstr);
4287                     /* Make the source SV into a loop of 1.
4288                        (about to become 2) */
4289                     SV_COW_NEXT_SV_SET(sstr, sstr);
4290                 }
4291             }
4292 #endif
4293             /* Initial code is common.  */
4294             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4295                 SvPV_free(dstr);
4296             }
4297
4298             if (!isSwipe) {
4299                 /* making another shared SV.  */
4300                 STRLEN cur = SvCUR(sstr);
4301                 STRLEN len = SvLEN(sstr);
4302 #ifdef PERL_OLD_COPY_ON_WRITE
4303                 if (len) {
4304                     assert (SvTYPE(dstr) >= SVt_PVIV);
4305                     /* SvIsCOW_normal */
4306                     /* splice us in between source and next-after-source.  */
4307                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4308                     SV_COW_NEXT_SV_SET(sstr, dstr);
4309                     SvPV_set(dstr, SvPVX_mutable(sstr));
4310                 } else
4311 #endif
4312                 {
4313                     /* SvIsCOW_shared_hash */
4314                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4315                                           "Copy on write: Sharing hash\n"));
4316
4317                     assert (SvTYPE(dstr) >= SVt_PV);
4318                     SvPV_set(dstr,
4319                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4320                 }
4321                 SvLEN_set(dstr, len);
4322                 SvCUR_set(dstr, cur);
4323                 SvREADONLY_on(dstr);
4324                 SvFAKE_on(dstr);
4325             }
4326             else
4327                 {       /* Passes the swipe test.  */
4328                 SvPV_set(dstr, SvPVX_mutable(sstr));
4329                 SvLEN_set(dstr, SvLEN(sstr));
4330                 SvCUR_set(dstr, SvCUR(sstr));
4331
4332                 SvTEMP_off(dstr);
4333                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4334                 SvPV_set(sstr, NULL);
4335                 SvLEN_set(sstr, 0);
4336                 SvCUR_set(sstr, 0);
4337                 SvTEMP_off(sstr);
4338             }
4339         }
4340         if (sflags & SVp_NOK) {
4341             SvNV_set(dstr, SvNVX(sstr));
4342         }
4343         if (sflags & SVp_IOK) {
4344             SvIV_set(dstr, SvIVX(sstr));
4345             /* Must do this otherwise some other overloaded use of 0x80000000
4346                gets confused. I guess SVpbm_VALID */
4347             if (sflags & SVf_IVisUV)
4348                 SvIsUV_on(dstr);
4349         }
4350         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4351         {
4352             const MAGIC * const smg = SvVSTRING_mg(sstr);
4353             if (smg) {
4354                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4355                          smg->mg_ptr, smg->mg_len);
4356                 SvRMAGICAL_on(dstr);
4357             }
4358         }
4359     }
4360     else if (sflags & (SVp_IOK|SVp_NOK)) {
4361         (void)SvOK_off(dstr);
4362         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4363         if (sflags & SVp_IOK) {
4364             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4365             SvIV_set(dstr, SvIVX(sstr));
4366         }
4367         if (sflags & SVp_NOK) {
4368             SvNV_set(dstr, SvNVX(sstr));
4369         }
4370     }
4371     else {
4372         if (isGV_with_GP(sstr)) {
4373             /* This stringification rule for globs is spread in 3 places.
4374                This feels bad. FIXME.  */
4375             const U32 wasfake = sflags & SVf_FAKE;
4376
4377             /* FAKE globs can get coerced, so need to turn this off
4378                temporarily if it is on.  */
4379             SvFAKE_off(sstr);
4380             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4381             SvFLAGS(sstr) |= wasfake;
4382         }
4383         else
4384             (void)SvOK_off(dstr);
4385     }
4386     if (SvTAINTED(sstr))
4387         SvTAINT(dstr);
4388 }
4389
4390 /*
4391 =for apidoc sv_setsv_mg
4392
4393 Like C<sv_setsv>, but also handles 'set' magic.
4394
4395 =cut
4396 */
4397
4398 void
4399 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
4400 {
4401     PERL_ARGS_ASSERT_SV_SETSV_MG;
4402
4403     sv_setsv(dstr,sstr);
4404     SvSETMAGIC(dstr);
4405 }
4406
4407 #ifdef PERL_OLD_COPY_ON_WRITE
4408 SV *
4409 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4410 {
4411     STRLEN cur = SvCUR(sstr);
4412     STRLEN len = SvLEN(sstr);
4413     register char *new_pv;
4414
4415     PERL_ARGS_ASSERT_SV_SETSV_COW;
4416
4417     if (DEBUG_C_TEST) {
4418         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4419                       (void*)sstr, (void*)dstr);
4420         sv_dump(sstr);
4421         if (dstr)
4422                     sv_dump(dstr);
4423     }
4424
4425     if (dstr) {
4426         if (SvTHINKFIRST(dstr))
4427             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4428         else if (SvPVX_const(dstr))
4429             Safefree(SvPVX_const(dstr));
4430     }
4431     else
4432         new_SV(dstr);
4433     SvUPGRADE(dstr, SVt_PVIV);
4434
4435     assert (SvPOK(sstr));
4436     assert (SvPOKp(sstr));
4437     assert (!SvIOK(sstr));
4438     assert (!SvIOKp(sstr));
4439     assert (!SvNOK(sstr));
4440     assert (!SvNOKp(sstr));
4441
4442     if (SvIsCOW(sstr)) {
4443
4444         if (SvLEN(sstr) == 0) {
4445             /* source is a COW shared hash key.  */
4446             DEBUG_C(PerlIO_printf(Perl_debug_log,
4447                                   "Fast copy on write: Sharing hash\n"));
4448             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4449             goto common_exit;
4450         }
4451         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4452     } else {
4453         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4454         SvUPGRADE(sstr, SVt_PVIV);
4455         SvREADONLY_on(sstr);
4456         SvFAKE_on(sstr);
4457         DEBUG_C(PerlIO_printf(Perl_debug_log,
4458                               "Fast copy on write: Converting sstr to COW\n"));
4459         SV_COW_NEXT_SV_SET(dstr, sstr);
4460     }
4461     SV_COW_NEXT_SV_SET(sstr, dstr);
4462     new_pv = SvPVX_mutable(sstr);
4463
4464   common_exit:
4465     SvPV_set(dstr, new_pv);
4466     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4467     if (SvUTF8(sstr))
4468         SvUTF8_on(dstr);
4469     SvLEN_set(dstr, len);
4470     SvCUR_set(dstr, cur);
4471     if (DEBUG_C_TEST) {
4472         sv_dump(dstr);
4473     }
4474     return dstr;
4475 }
4476 #endif
4477
4478 /*
4479 =for apidoc sv_setpvn
4480
4481 Copies a string into an SV.  The C<len> parameter indicates the number of
4482 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4483 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4484
4485 =cut
4486 */
4487
4488 void
4489 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4490 {
4491     dVAR;
4492     register char *dptr;
4493
4494     PERL_ARGS_ASSERT_SV_SETPVN;
4495
4496     SV_CHECK_THINKFIRST_COW_DROP(sv);
4497     if (!ptr) {
4498         (void)SvOK_off(sv);
4499         return;
4500     }
4501     else {
4502         /* len is STRLEN which is unsigned, need to copy to signed */
4503         const IV iv = len;
4504         if (iv < 0)
4505             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4506     }
4507     SvUPGRADE(sv, SVt_PV);
4508
4509     dptr = SvGROW(sv, len + 1);
4510     Move(ptr,dptr,len,char);
4511     dptr[len] = '\0';
4512     SvCUR_set(sv, len);
4513     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4514     SvTAINT(sv);
4515 }
4516
4517 /*
4518 =for apidoc sv_setpvn_mg
4519
4520 Like C<sv_setpvn>, but also handles 'set' magic.
4521
4522 =cut
4523 */
4524
4525 void
4526 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4527 {
4528     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4529
4530     sv_setpvn(sv,ptr,len);
4531     SvSETMAGIC(sv);
4532 }
4533
4534 /*
4535 =for apidoc sv_setpv
4536
4537 Copies a string into an SV.  The string must be null-terminated.  Does not
4538 handle 'set' magic.  See C<sv_setpv_mg>.
4539
4540 =cut
4541 */
4542
4543 void
4544 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4545 {
4546     dVAR;
4547     register STRLEN len;
4548
4549     PERL_ARGS_ASSERT_SV_SETPV;
4550
4551     SV_CHECK_THINKFIRST_COW_DROP(sv);
4552     if (!ptr) {
4553         (void)SvOK_off(sv);
4554         return;
4555     }
4556     len = strlen(ptr);
4557     SvUPGRADE(sv, SVt_PV);
4558
4559     SvGROW(sv, len + 1);
4560     Move(ptr,SvPVX(sv),len+1,char);
4561     SvCUR_set(sv, len);
4562     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4563     SvTAINT(sv);
4564 }
4565
4566 /*
4567 =for apidoc sv_setpv_mg
4568
4569 Like C<sv_setpv>, but also handles 'set' magic.
4570
4571 =cut
4572 */
4573
4574 void
4575 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4576 {
4577     PERL_ARGS_ASSERT_SV_SETPV_MG;
4578
4579     sv_setpv(sv,ptr);
4580     SvSETMAGIC(sv);
4581 }
4582
4583 /*
4584 =for apidoc sv_usepvn_flags
4585
4586 Tells an SV to use C<ptr> to find its string value.  Normally the
4587 string is stored inside the SV but sv_usepvn allows the SV to use an
4588 outside string.  The C<ptr> should point to memory that was allocated
4589 by C<malloc>.  The string length, C<len>, must be supplied.  By default
4590 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4591 so that pointer should not be freed or used by the programmer after
4592 giving it to sv_usepvn, and neither should any pointers from "behind"
4593 that pointer (e.g. ptr + 1) be used.
4594
4595 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
4596 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4597 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
4598 C<len>, and already meets the requirements for storing in C<SvPVX>)
4599
4600 =cut
4601 */
4602
4603 void
4604 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4605 {
4606     dVAR;
4607     STRLEN allocate;
4608
4609     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4610
4611     SV_CHECK_THINKFIRST_COW_DROP(sv);
4612     SvUPGRADE(sv, SVt_PV);
4613     if (!ptr) {
4614         (void)SvOK_off(sv);
4615         if (flags & SV_SMAGIC)
4616             SvSETMAGIC(sv);
4617         return;
4618     }
4619     if (SvPVX_const(sv))
4620         SvPV_free(sv);
4621
4622 #ifdef DEBUGGING
4623     if (flags & SV_HAS_TRAILING_NUL)
4624         assert(ptr[len] == '\0');
4625 #endif
4626
4627     allocate = (flags & SV_HAS_TRAILING_NUL)
4628         ? len + 1 :
4629 #ifdef Perl_safesysmalloc_size
4630         len + 1;
4631 #else 
4632         PERL_STRLEN_ROUNDUP(len + 1);
4633 #endif
4634     if (flags & SV_HAS_TRAILING_NUL) {
4635         /* It's long enough - do nothing.
4636            Specifically Perl_newCONSTSUB is relying on this.  */
4637     } else {
4638 #ifdef DEBUGGING
4639         /* Force a move to shake out bugs in callers.  */
4640         char *new_ptr = (char*)safemalloc(allocate);
4641         Copy(ptr, new_ptr, len, char);
4642         PoisonFree(ptr,len,char);
4643         Safefree(ptr);
4644         ptr = new_ptr;
4645 #else
4646         ptr = (char*) saferealloc (ptr, allocate);
4647 #endif
4648     }
4649 #ifdef Perl_safesysmalloc_size
4650     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4651 #else
4652     SvLEN_set(sv, allocate);
4653 #endif
4654     SvCUR_set(sv, len);
4655     SvPV_set(sv, ptr);
4656     if (!(flags & SV_HAS_TRAILING_NUL)) {
4657         ptr[len] = '\0';
4658     }
4659     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4660     SvTAINT(sv);
4661     if (flags & SV_SMAGIC)
4662         SvSETMAGIC(sv);
4663 }
4664
4665 #ifdef PERL_OLD_COPY_ON_WRITE
4666 /* Need to do this *after* making the SV normal, as we need the buffer
4667    pointer to remain valid until after we've copied it.  If we let go too early,
4668    another thread could invalidate it by unsharing last of the same hash key
4669    (which it can do by means other than releasing copy-on-write Svs)
4670    or by changing the other copy-on-write SVs in the loop.  */
4671 STATIC void
4672 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4673 {
4674     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4675
4676     { /* this SV was SvIsCOW_normal(sv) */
4677          /* we need to find the SV pointing to us.  */
4678         SV *current = SV_COW_NEXT_SV(after);
4679
4680         if (current == sv) {
4681             /* The SV we point to points back to us (there were only two of us
4682                in the loop.)
4683                Hence other SV is no longer copy on write either.  */
4684             SvFAKE_off(after);
4685             SvREADONLY_off(after);
4686         } else {
4687             /* We need to follow the pointers around the loop.  */
4688             SV *next;
4689             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4690                 assert (next);
4691                 current = next;
4692                  /* don't loop forever if the structure is bust, and we have
4693                     a pointer into a closed loop.  */
4694                 assert (current != after);
4695                 assert (SvPVX_const(current) == pvx);
4696             }
4697             /* Make the SV before us point to the SV after us.  */
4698             SV_COW_NEXT_SV_SET(current, after);
4699         }
4700     }
4701 }
4702 #endif
4703 /*
4704 =for apidoc sv_force_normal_flags
4705
4706 Undo various types of fakery on an SV: if the PV is a shared string, make
4707 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4708 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4709 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
4710 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4711 SvPOK_off rather than making a copy. (Used where this scalar is about to be
4712 set to some other value.) In addition, the C<flags> parameter gets passed to
4713 C<sv_unref_flags()> when unreffing. C<sv_force_normal> calls this function
4714 with flags set to 0.
4715
4716 =cut
4717 */
4718
4719 void
4720 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4721 {
4722     dVAR;
4723
4724     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4725
4726 #ifdef PERL_OLD_COPY_ON_WRITE
4727     if (SvREADONLY(sv)) {
4728         if (SvFAKE(sv)) {
4729             const char * const pvx = SvPVX_const(sv);
4730             const STRLEN len = SvLEN(sv);
4731             const STRLEN cur = SvCUR(sv);
4732             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4733                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4734                we'll fail an assertion.  */
4735             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4736
4737             if (DEBUG_C_TEST) {
4738                 PerlIO_printf(Perl_debug_log,
4739                               "Copy on write: Force normal %ld\n",
4740                               (long) flags);
4741                 sv_dump(sv);
4742             }
4743             SvFAKE_off(sv);
4744             SvREADONLY_off(sv);
4745             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4746             SvPV_set(sv, NULL);
4747             SvLEN_set(sv, 0);
4748             if (flags & SV_COW_DROP_PV) {
4749                 /* OK, so we don't need to copy our buffer.  */
4750                 SvPOK_off(sv);
4751             } else {
4752                 SvGROW(sv, cur + 1);
4753                 Move(pvx,SvPVX(sv),cur,char);
4754                 SvCUR_set(sv, cur);
4755                 *SvEND(sv) = '\0';
4756             }
4757             if (len) {
4758                 sv_release_COW(sv, pvx, next);
4759             } else {
4760                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4761             }
4762             if (DEBUG_C_TEST) {
4763                 sv_dump(sv);
4764             }
4765         }
4766         else if (IN_PERL_RUNTIME)
4767             Perl_croak_no_modify(aTHX);
4768     }
4769 #else
4770     if (SvREADONLY(sv)) {
4771         if (SvFAKE(sv) && !isGV_with_GP(sv)) {
4772             const char * const pvx = SvPVX_const(sv);
4773             const STRLEN len = SvCUR(sv);
4774             SvFAKE_off(sv);
4775             SvREADONLY_off(sv);
4776             SvPV_set(sv, NULL);
4777             SvLEN_set(sv, 0);
4778             SvGROW(sv, len + 1);
4779             Move(pvx,SvPVX(sv),len,char);
4780             *SvEND(sv) = '\0';
4781             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4782         }
4783         else if (IN_PERL_RUNTIME)
4784             Perl_croak_no_modify(aTHX);
4785     }
4786 #endif
4787     if (SvROK(sv))
4788         sv_unref_flags(sv, flags);
4789     else if (SvFAKE(sv) && isGV_with_GP(sv))
4790         sv_unglob(sv);
4791     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_REGEXP) {
4792         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
4793            to sv_unglob. We only need it here, so inline it.  */
4794         const svtype new_type = SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
4795         SV *const temp = newSV_type(new_type);
4796         void *const temp_p = SvANY(sv);
4797
4798         if (new_type == SVt_PVMG) {
4799             SvMAGIC_set(temp, SvMAGIC(sv));
4800             SvMAGIC_set(sv, NULL);
4801             SvSTASH_set(temp, SvSTASH(sv));
4802             SvSTASH_set(sv, NULL);
4803         }
4804         SvCUR_set(temp, SvCUR(sv));
4805         /* Remember that SvPVX is in the head, not the body. */
4806         if (SvLEN(temp)) {
4807             SvLEN_set(temp, SvLEN(sv));
4808             /* This signals "buffer is owned by someone else" in sv_clear,
4809                which is the least effort way to stop it freeing the buffer.
4810             */
4811             SvLEN_set(sv, SvLEN(sv)+1);
4812         } else {
4813             /* Their buffer is already owned by someone else. */
4814             SvPVX(sv) = savepvn(SvPVX(sv), SvCUR(sv));
4815             SvLEN_set(temp, SvCUR(sv)+1);
4816         }
4817
4818         /* Now swap the rest of the bodies. */
4819
4820         SvFLAGS(sv) &= ~(SVf_FAKE|SVTYPEMASK);
4821         SvFLAGS(sv) |= new_type;
4822         SvANY(sv) = SvANY(temp);
4823
4824         SvFLAGS(temp) &= ~(SVTYPEMASK);
4825         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
4826         SvANY(temp) = temp_p;
4827
4828         SvREFCNT_dec(temp);
4829     }
4830 }
4831
4832 /*
4833 =for apidoc sv_chop
4834
4835 Efficient removal of characters from the beginning of the string buffer.
4836 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4837 the string buffer.  The C<ptr> becomes the first character of the adjusted
4838 string. Uses the "OOK hack".
4839 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4840 refer to the same chunk of data.
4841
4842 =cut
4843 */
4844
4845 void
4846 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4847 {
4848     STRLEN delta;
4849     STRLEN old_delta;
4850     U8 *p;
4851 #ifdef DEBUGGING
4852     const U8 *real_start;
4853 #endif
4854     STRLEN max_delta;
4855
4856     PERL_ARGS_ASSERT_SV_CHOP;
4857
4858     if (!ptr || !SvPOKp(sv))
4859         return;
4860     delta = ptr - SvPVX_const(sv);
4861     if (!delta) {
4862         /* Nothing to do.  */
4863         return;
4864     }
4865     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), but after this line,
4866        nothing uses the value of ptr any more.  */
4867     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4868     if (ptr <= SvPVX_const(sv))
4869         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4870                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4871     SV_CHECK_THINKFIRST(sv);
4872     if (delta > max_delta)
4873         Perl_croak(aTHX_ "panic: sv_chop ptr=%p (was %p), start=%p, end=%p",
4874                    SvPVX_const(sv) + delta, ptr, SvPVX_const(sv),
4875                    SvPVX_const(sv) + max_delta);
4876
4877     if (!SvOOK(sv)) {
4878         if (!SvLEN(sv)) { /* make copy of shared string */
4879             const char *pvx = SvPVX_const(sv);
4880             const STRLEN len = SvCUR(sv);
4881             SvGROW(sv, len + 1);
4882             Move(pvx,SvPVX(sv),len,char);
4883             *SvEND(sv) = '\0';
4884         }
4885         SvFLAGS(sv) |= SVf_OOK;
4886         old_delta = 0;
4887     } else {
4888         SvOOK_offset(sv, old_delta);
4889     }
4890     SvLEN_set(sv, SvLEN(sv) - delta);
4891     SvCUR_set(sv, SvCUR(sv) - delta);
4892     SvPV_set(sv, SvPVX(sv) + delta);
4893
4894     p = (U8 *)SvPVX_const(sv);
4895
4896     delta += old_delta;
4897
4898 #ifdef DEBUGGING
4899     real_start = p - delta;
4900 #endif
4901
4902     assert(delta);
4903     if (delta < 0x100) {
4904         *--p = (U8) delta;
4905     } else {
4906         *--p = 0;
4907         p -= sizeof(STRLEN);
4908         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4909     }
4910
4911 #ifdef DEBUGGING
4912     /* Fill the preceding buffer with sentinals to verify that no-one is
4913        using it.  */
4914     while (p > real_start) {
4915         --p;
4916         *p = (U8)PTR2UV(p);
4917     }
4918 #endif
4919 }
4920
4921 /*
4922 =for apidoc sv_catpvn
4923
4924 Concatenates the string onto the end of the string which is in the SV.  The
4925 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4926 status set, then the bytes appended should be valid UTF-8.
4927 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4928
4929 =for apidoc sv_catpvn_flags
4930
4931 Concatenates the string onto the end of the string which is in the SV.  The
4932 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4933 status set, then the bytes appended should be valid UTF-8.
4934 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
4935 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4936 in terms of this function.
4937
4938 =cut
4939 */
4940
4941 void
4942 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
4943 {
4944     dVAR;
4945     STRLEN dlen;
4946     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4947
4948     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
4949
4950     SvGROW(dsv, dlen + slen + 1);
4951     if (sstr == dstr)
4952         sstr = SvPVX_const(dsv);
4953     Move(sstr, SvPVX(dsv) + dlen, slen, char);
4954     SvCUR_set(dsv, SvCUR(dsv) + slen);
4955     *SvEND(dsv) = '\0';
4956     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
4957     SvTAINT(dsv);
4958     if (flags & SV_SMAGIC)
4959         SvSETMAGIC(dsv);
4960 }
4961
4962 /*
4963 =for apidoc sv_catsv
4964
4965 Concatenates the string from SV C<ssv> onto the end of the string in
4966 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
4967 not 'set' magic.  See C<sv_catsv_mg>.
4968
4969 =for apidoc sv_catsv_flags
4970
4971 Concatenates the string from SV C<ssv> onto the end of the string in
4972 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
4973 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
4974 and C<sv_catsv_nomg> are implemented in terms of this function.
4975
4976 =cut */
4977
4978 void
4979 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
4980 {
4981     dVAR;
4982  
4983     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
4984
4985    if (ssv) {
4986         STRLEN slen;
4987         const char *spv = SvPV_flags_const(ssv, slen, flags);
4988         if (spv) {
4989             /*  sutf8 and dutf8 were type bool, but under USE_ITHREADS,
4990                 gcc version 2.95.2 20000220 (Debian GNU/Linux) for
4991                 Linux xxx 2.2.17 on sparc64 with gcc -O2, we erroneously
4992                 get dutf8 = 0x20000000, (i.e.  SVf_UTF8) even though
4993                 dsv->sv_flags doesn't have that bit set.
4994                 Andy Dougherty  12 Oct 2001
4995             */
4996             const I32 sutf8 = DO_UTF8(ssv);
4997             I32 dutf8;
4998
4999             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
5000                 mg_get(dsv);
5001             dutf8 = DO_UTF8(dsv);
5002
5003             if (dutf8 != sutf8) {
5004                 if (dutf8) {
5005                     /* Not modifying source SV, so taking a temporary copy. */
5006                     SV* const csv = newSVpvn_flags(spv, slen, SVs_TEMP);
5007
5008                     sv_utf8_upgrade(csv);
5009                     spv = SvPV_const(csv, slen);
5010                 }
5011                 else
5012                     /* Leave enough space for the cat that's about to happen */
5013                     sv_utf8_upgrade_flags_grow(dsv, 0, slen);
5014             }
5015             sv_catpvn_nomg(dsv, spv, slen);
5016         }
5017     }
5018     if (flags & SV_SMAGIC)
5019         SvSETMAGIC(dsv);
5020 }
5021
5022 /*
5023 =for apidoc sv_catpv
5024
5025 Concatenates the string onto the end of the string which is in the SV.
5026 If the SV has the UTF-8 status set, then the bytes appended should be
5027 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5028
5029 =cut */
5030
5031 void
5032 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
5033 {
5034     dVAR;
5035     register STRLEN len;
5036     STRLEN tlen;
5037     char *junk;
5038
5039     PERL_ARGS_ASSERT_SV_CATPV;
5040
5041     if (!ptr)
5042         return;
5043     junk = SvPV_force(sv, tlen);
5044     len = strlen(ptr);
5045     SvGROW(sv, tlen + len + 1);
5046     if (ptr == junk)
5047         ptr = SvPVX_const(sv);
5048     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5049     SvCUR_set(sv, SvCUR(sv) + len);
5050     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5051     SvTAINT(sv);
5052 }
5053
5054 /*
5055 =for apidoc sv_catpv_flags
5056
5057 Concatenates the string onto the end of the string which is in the SV.
5058 If the SV has the UTF-8 status set, then the bytes appended should
5059 be valid UTF-8.  If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get>
5060 on the SVs if appropriate, else not.
5061
5062 =cut
5063 */
5064
5065 void
5066 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5067 {
5068     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5069     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5070 }
5071
5072 /*
5073 =for apidoc sv_catpv_mg
5074
5075 Like C<sv_catpv>, but also handles 'set' magic.
5076
5077 =cut
5078 */
5079
5080 void
5081 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
5082 {
5083     PERL_ARGS_ASSERT_SV_CATPV_MG;
5084
5085     sv_catpv(sv,ptr);
5086     SvSETMAGIC(sv);
5087 }
5088
5089 /*
5090 =for apidoc newSV
5091
5092 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5093 bytes of preallocated string space the SV should have.  An extra byte for a
5094 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
5095 space is allocated.)  The reference count for the new SV is set to 1.
5096
5097 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5098 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5099 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5100 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5101 modules supporting older perls.
5102
5103 =cut
5104 */
5105
5106 SV *
5107 Perl_newSV(pTHX_ const STRLEN len)
5108 {
5109     dVAR;
5110     register SV *sv;
5111
5112     new_SV(sv);
5113     if (len) {
5114         sv_upgrade(sv, SVt_PV);
5115         SvGROW(sv, len + 1);
5116     }
5117     return sv;
5118 }
5119 /*
5120 =for apidoc sv_magicext
5121
5122 Adds magic to an SV, upgrading it if necessary. Applies the
5123 supplied vtable and returns a pointer to the magic added.
5124
5125 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5126 In particular, you can add magic to SvREADONLY SVs, and add more than
5127 one instance of the same 'how'.
5128
5129 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5130 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5131 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5132 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5133
5134 (This is now used as a subroutine by C<sv_magic>.)
5135
5136 =cut
5137 */
5138 MAGIC * 
5139 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5140                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5141 {
5142     dVAR;
5143     MAGIC* mg;
5144
5145     PERL_ARGS_ASSERT_SV_MAGICEXT;
5146
5147     SvUPGRADE(sv, SVt_PVMG);
5148     Newxz(mg, 1, MAGIC);
5149     mg->mg_moremagic = SvMAGIC(sv);
5150     SvMAGIC_set(sv, mg);
5151
5152     /* Sometimes a magic contains a reference loop, where the sv and
5153        object refer to each other.  To prevent a reference loop that
5154        would prevent such objects being freed, we look for such loops
5155        and if we find one we avoid incrementing the object refcount.
5156
5157        Note we cannot do this to avoid self-tie loops as intervening RV must
5158        have its REFCNT incremented to keep it in existence.
5159
5160     */
5161     if (!obj || obj == sv ||
5162         how == PERL_MAGIC_arylen ||
5163         how == PERL_MAGIC_symtab ||
5164         (SvTYPE(obj) == SVt_PVGV &&
5165             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5166              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5167              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5168     {
5169         mg->mg_obj = obj;
5170     }
5171     else {
5172         mg->mg_obj = SvREFCNT_inc_simple(obj);
5173         mg->mg_flags |= MGf_REFCOUNTED;
5174     }
5175
5176     /* Normal self-ties simply pass a null object, and instead of
5177        using mg_obj directly, use the SvTIED_obj macro to produce a
5178        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5179        with an RV obj pointing to the glob containing the PVIO.  In
5180        this case, to avoid a reference loop, we need to weaken the
5181        reference.
5182     */
5183
5184     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5185         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5186     {
5187       sv_rvweaken(obj);
5188     }
5189
5190     mg->mg_type = how;
5191     mg->mg_len = namlen;
5192     if (name) {
5193         if (namlen > 0)
5194             mg->mg_ptr = savepvn(name, namlen);
5195         else if (namlen == HEf_SVKEY) {
5196             /* Yes, this is casting away const. This is only for the case of
5197                HEf_SVKEY. I think we need to document this aberation of the
5198                constness of the API, rather than making name non-const, as
5199                that change propagating outwards a long way.  */
5200             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5201         } else
5202             mg->mg_ptr = (char *) name;
5203     }
5204     mg->mg_virtual = (MGVTBL *) vtable;
5205
5206     mg_magical(sv);
5207     if (SvGMAGICAL(sv))
5208         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5209     return mg;
5210 }
5211
5212 /*
5213 =for apidoc sv_magic
5214
5215 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
5216 then adds a new magic item of type C<how> to the head of the magic list.
5217
5218 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5219 handling of the C<name> and C<namlen> arguments.
5220
5221 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5222 to add more than one instance of the same 'how'.
5223
5224 =cut
5225 */
5226
5227 void
5228 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
5229              const char *const name, const I32 namlen)
5230 {
5231     dVAR;
5232     const MGVTBL *vtable;
5233     MAGIC* mg;
5234     unsigned int flags;
5235     unsigned int vtable_index;
5236
5237     PERL_ARGS_ASSERT_SV_MAGIC;
5238
5239     if (how < 0 || (unsigned)how > C_ARRAY_LENGTH(PL_magic_data)
5240         || ((flags = PL_magic_data[how]),
5241             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5242             > magic_vtable_max))
5243         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5244
5245     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5246        Useful for attaching extension internal data to perl vars.
5247        Note that multiple extensions may clash if magical scalars
5248        etc holding private data from one are passed to another. */
5249
5250     vtable = (vtable_index == magic_vtable_max)
5251         ? NULL : PL_magic_vtables + vtable_index;
5252
5253 #ifdef PERL_OLD_COPY_ON_WRITE
5254     if (SvIsCOW(sv))
5255         sv_force_normal_flags(sv, 0);
5256 #endif
5257     if (SvREADONLY(sv)) {
5258         if (
5259             /* its okay to attach magic to shared strings; the subsequent
5260              * upgrade to PVMG will unshare the string */
5261             !(SvFAKE(sv) && SvTYPE(sv) < SVt_PVMG)
5262
5263             && IN_PERL_RUNTIME
5264             && !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5265            )
5266         {
5267             Perl_croak_no_modify(aTHX);
5268         }
5269     }
5270     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5271         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5272             /* sv_magic() refuses to add a magic of the same 'how' as an
5273                existing one
5274              */
5275             if (how == PERL_MAGIC_taint) {
5276                 mg->mg_len |= 1;
5277                 /* Any scalar which already had taint magic on which someone
5278                    (erroneously?) did SvIOK_on() or similar will now be
5279                    incorrectly sporting public "OK" flags.  */
5280                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5281             }
5282             return;
5283         }
5284     }
5285
5286     /* Rest of work is done else where */
5287     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5288
5289     switch (how) {
5290     case PERL_MAGIC_taint:
5291         mg->mg_len = 1;
5292         break;
5293     case PERL_MAGIC_ext:
5294     case PERL_MAGIC_dbfile:
5295         SvRMAGICAL_on(sv);
5296         break;
5297     }
5298 }
5299
5300 static int
5301 S_sv_unmagicext_flags(pTHX_ SV *const sv, const int type, MGVTBL *vtbl, const U32 flags)
5302 {
5303     MAGIC* mg;
5304     MAGIC** mgp;
5305
5306     assert(flags <= 1);
5307
5308     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5309         return 0;
5310     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5311     for (mg = *mgp; mg; mg = *mgp) {
5312         const MGVTBL* const virt = mg->mg_virtual;
5313         if (mg->mg_type == type && (!flags || virt == vtbl)) {
5314             *mgp = mg->mg_moremagic;
5315             if (virt && virt->svt_free)
5316                 virt->svt_free(aTHX_ sv, mg);
5317             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5318                 if (mg->mg_len > 0)
5319                     Safefree(mg->mg_ptr);
5320                 else if (mg->mg_len == HEf_SVKEY)
5321                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5322                 else if (mg->mg_type == PERL_MAGIC_utf8)
5323                     Safefree(mg->mg_ptr);
5324             }
5325             if (mg->mg_flags & MGf_REFCOUNTED)
5326                 SvREFCNT_dec(mg->mg_obj);
5327             Safefree(mg);
5328         }
5329         else
5330             mgp = &mg->mg_moremagic;
5331     }
5332     if (SvMAGIC(sv)) {
5333         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5334             mg_magical(sv);     /*    else fix the flags now */
5335     }
5336     else {
5337         SvMAGICAL_off(sv);
5338         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5339     }
5340     return 0;
5341 }
5342
5343 /*
5344 =for apidoc sv_unmagic
5345
5346 Removes all magic of type C<type> from an SV.
5347
5348 =cut
5349 */
5350
5351 int
5352 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5353 {
5354     PERL_ARGS_ASSERT_SV_UNMAGIC;
5355     return S_sv_unmagicext_flags(aTHX_ sv, type, NULL, 0);
5356 }
5357
5358 /*
5359 =for apidoc sv_unmagicext
5360
5361 Removes all magic of type C<type> with the specified C<vtbl> from an SV.
5362
5363 =cut
5364 */
5365
5366 int
5367 Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl)
5368 {
5369     PERL_ARGS_ASSERT_SV_UNMAGICEXT;
5370     return S_sv_unmagicext_flags(aTHX_ sv, type, vtbl, 1);
5371 }
5372
5373 /*
5374 =for apidoc sv_rvweaken
5375
5376 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5377 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5378 push a back-reference to this RV onto the array of backreferences
5379 associated with that magic. If the RV is magical, set magic will be
5380 called after the RV is cleared.
5381
5382 =cut
5383 */
5384
5385 SV *
5386 Perl_sv_rvweaken(pTHX_ SV *const sv)
5387 {
5388     SV *tsv;
5389
5390     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5391
5392     if (!SvOK(sv))  /* let undefs pass */
5393         return sv;
5394     if (!SvROK(sv))
5395         Perl_croak(aTHX_ "Can't weaken a nonreference");
5396     else if (SvWEAKREF(sv)) {
5397         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5398         return sv;
5399     }
5400     else if (SvREADONLY(sv)) croak_no_modify();
5401     tsv = SvRV(sv);
5402     Perl_sv_add_backref(aTHX_ tsv, sv);
5403     SvWEAKREF_on(sv);
5404     SvREFCNT_dec(tsv);
5405     return sv;
5406 }
5407
5408 /* Give tsv backref magic if it hasn't already got it, then push a
5409  * back-reference to sv onto the array associated with the backref magic.
5410  *
5411  * As an optimisation, if there's only one backref and it's not an AV,
5412  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
5413  * allocate an AV. (Whether the slot holds an AV tells us whether this is
5414  * active.)
5415  */
5416
5417 /* A discussion about the backreferences array and its refcount:
5418  *
5419  * The AV holding the backreferences is pointed to either as the mg_obj of
5420  * PERL_MAGIC_backref, or in the specific case of a HV, from the
5421  * xhv_backreferences field. The array is created with a refcount
5422  * of 2. This means that if during global destruction the array gets
5423  * picked on before its parent to have its refcount decremented by the
5424  * random zapper, it won't actually be freed, meaning it's still there for
5425  * when its parent gets freed.
5426  *
5427  * When the parent SV is freed, the extra ref is killed by
5428  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
5429  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
5430  *
5431  * When a single backref SV is stored directly, it is not reference
5432  * counted.
5433  */
5434
5435 void
5436 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5437 {
5438     dVAR;
5439     SV **svp;
5440     AV *av = NULL;
5441     MAGIC *mg = NULL;
5442
5443     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5444
5445     /* find slot to store array or singleton backref */
5446
5447     if (SvTYPE(tsv) == SVt_PVHV) {
5448         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5449     } else {
5450         if (! ((mg =
5451             (SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL))))
5452         {
5453             sv_magic(tsv, NULL, PERL_MAGIC_backref, NULL, 0);
5454             mg = mg_find(tsv, PERL_MAGIC_backref);
5455         }
5456         svp = &(mg->mg_obj);
5457     }
5458
5459     /* create or retrieve the array */
5460
5461     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
5462         || (*svp && SvTYPE(*svp) != SVt_PVAV)
5463     ) {
5464         /* create array */
5465         av = newAV();
5466         AvREAL_off(av);
5467         SvREFCNT_inc_simple_void(av);
5468         /* av now has a refcnt of 2; see discussion above */
5469         if (*svp) {
5470             /* move single existing backref to the array */
5471             av_extend(av, 1);
5472             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
5473         }
5474         *svp = (SV*)av;
5475         if (mg)
5476             mg->mg_flags |= MGf_REFCOUNTED;
5477     }
5478     else
5479         av = MUTABLE_AV(*svp);
5480
5481     if (!av) {
5482         /* optimisation: store single backref directly in HvAUX or mg_obj */
5483         *svp = sv;
5484         return;
5485     }
5486     /* push new backref */
5487     assert(SvTYPE(av) == SVt_PVAV);
5488     if (AvFILLp(av) >= AvMAX(av)) {
5489         av_extend(av, AvFILLp(av)+1);
5490     }
5491     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5492 }
5493
5494 /* delete a back-reference to ourselves from the backref magic associated
5495  * with the SV we point to.
5496  */
5497
5498 void
5499 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5500 {
5501     dVAR;
5502     SV **svp = NULL;
5503
5504     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5505
5506     if (SvTYPE(tsv) == SVt_PVHV) {
5507         if (SvOOK(tsv))
5508             svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5509     }
5510     else {
5511         MAGIC *const mg
5512             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5513         svp =  mg ? &(mg->mg_obj) : NULL;
5514     }
5515
5516     if (!svp || !*svp)
5517         Perl_croak(aTHX_ "panic: del_backref");
5518
5519     if (SvTYPE(*svp) == SVt_PVAV) {
5520 #ifdef DEBUGGING
5521         int count = 1;
5522 #endif
5523         AV * const av = (AV*)*svp;
5524         SSize_t fill;
5525         assert(!SvIS_FREED(av));
5526         fill = AvFILLp(av);
5527         assert(fill > -1);
5528         svp = AvARRAY(av);
5529         /* for an SV with N weak references to it, if all those
5530          * weak refs are deleted, then sv_del_backref will be called
5531          * N times and O(N^2) compares will be done within the backref
5532          * array. To ameliorate this potential slowness, we:
5533          * 1) make sure this code is as tight as possible;
5534          * 2) when looking for SV, look for it at both the head and tail of the
5535          *    array first before searching the rest, since some create/destroy
5536          *    patterns will cause the backrefs to be freed in order.
5537          */
5538         if (*svp == sv) {
5539             AvARRAY(av)++;
5540             AvMAX(av)--;
5541         }
5542         else {
5543             SV **p = &svp[fill];
5544             SV *const topsv = *p;
5545             if (topsv != sv) {
5546 #ifdef DEBUGGING
5547                 count = 0;
5548 #endif
5549                 while (--p > svp) {
5550                     if (*p == sv) {
5551                         /* We weren't the last entry.
5552                            An unordered list has this property that you
5553                            can take the last element off the end to fill
5554                            the hole, and it's still an unordered list :-)
5555                         */
5556                         *p = topsv;
5557 #ifdef DEBUGGING
5558                         count++;
5559 #else
5560                         break; /* should only be one */
5561 #endif
5562                     }
5563                 }
5564             }
5565         }
5566         assert(count ==1);
5567         AvFILLp(av) = fill-1;
5568     }
5569     else {
5570         /* optimisation: only a single backref, stored directly */
5571         if (*svp != sv)
5572             Perl_croak(aTHX_ "panic: del_backref");
5573         *svp = NULL;
5574     }
5575
5576 }
5577
5578 void
5579 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5580 {
5581     SV **svp;
5582     SV **last;
5583     bool is_array;
5584
5585     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5586
5587     if (!av)
5588         return;
5589
5590     /* after multiple passes through Perl_sv_clean_all() for a thinngy
5591      * that has badly leaked, the backref array may have gotten freed,
5592      * since we only protect it against 1 round of cleanup */
5593     if (SvIS_FREED(av)) {
5594         if (PL_in_clean_all) /* All is fair */
5595             return;
5596         Perl_croak(aTHX_
5597                    "panic: magic_killbackrefs (freed backref AV/SV)");
5598     }
5599
5600
5601     is_array = (SvTYPE(av) == SVt_PVAV);
5602     if (is_array) {
5603         assert(!SvIS_FREED(av));
5604         svp = AvARRAY(av);
5605         if (svp)
5606             last = svp + AvFILLp(av);
5607     }
5608     else {
5609         /* optimisation: only a single backref, stored directly */
5610         svp = (SV**)&av;
5611         last = svp;
5612     }
5613
5614     if (svp) {
5615         while (svp <= last) {
5616             if (*svp) {
5617                 SV *const referrer = *svp;
5618                 if (SvWEAKREF(referrer)) {
5619                     /* XXX Should we check that it hasn't changed? */
5620                     assert(SvROK(referrer));
5621                     SvRV_set(referrer, 0);
5622                     SvOK_off(referrer);
5623                     SvWEAKREF_off(referrer);
5624                     SvSETMAGIC(referrer);
5625                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5626                            SvTYPE(referrer) == SVt_PVLV) {
5627                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
5628                     /* You lookin' at me?  */
5629                     assert(GvSTASH(referrer));
5630                     assert(GvSTASH(referrer) == (const HV *)sv);
5631                     GvSTASH(referrer) = 0;
5632                 } else if (SvTYPE(referrer) == SVt_PVCV ||
5633                            SvTYPE(referrer) == SVt_PVFM) {
5634                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
5635                         /* You lookin' at me?  */
5636                         assert(CvSTASH(referrer));
5637                         assert(CvSTASH(referrer) == (const HV *)sv);
5638                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
5639                     }
5640                     else {
5641                         assert(SvTYPE(sv) == SVt_PVGV);
5642                         /* You lookin' at me?  */
5643                         assert(CvGV(referrer));
5644                         assert(CvGV(referrer) == (const GV *)sv);
5645                         anonymise_cv_maybe(MUTABLE_GV(sv),
5646                                                 MUTABLE_CV(referrer));
5647                     }
5648
5649                 } else {
5650                     Perl_croak(aTHX_
5651                                "panic: magic_killbackrefs (flags=%"UVxf")",
5652                                (UV)SvFLAGS(referrer));
5653                 }
5654
5655                 if (is_array)
5656                     *svp = NULL;
5657             }
5658             svp++;
5659         }
5660     }
5661     if (is_array) {
5662         AvFILLp(av) = -1;
5663         SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5664     }
5665     return;
5666 }
5667
5668 /*
5669 =for apidoc sv_insert
5670
5671 Inserts a string at the specified offset/length within the SV. Similar to
5672 the Perl substr() function. Handles get magic.
5673
5674 =for apidoc sv_insert_flags
5675
5676 Same as C<sv_insert>, but the extra C<flags> are passed the C<SvPV_force_flags> that applies to C<bigstr>.
5677
5678 =cut
5679 */
5680
5681 void
5682 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5683 {
5684     dVAR;
5685     register char *big;
5686     register char *mid;
5687     register char *midend;
5688     register char *bigend;
5689     register I32 i;
5690     STRLEN curlen;
5691
5692     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5693
5694     if (!bigstr)
5695         Perl_croak(aTHX_ "Can't modify non-existent substring");
5696     SvPV_force_flags(bigstr, curlen, flags);
5697     (void)SvPOK_only_UTF8(bigstr);
5698     if (offset + len > curlen) {
5699         SvGROW(bigstr, offset+len+1);
5700         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5701         SvCUR_set(bigstr, offset+len);
5702     }
5703
5704     SvTAINT(bigstr);
5705     i = littlelen - len;
5706     if (i > 0) {                        /* string might grow */
5707         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5708         mid = big + offset + len;
5709         midend = bigend = big + SvCUR(bigstr);
5710         bigend += i;
5711         *bigend = '\0';
5712         while (midend > mid)            /* shove everything down */
5713             *--bigend = *--midend;
5714         Move(little,big+offset,littlelen,char);
5715         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5716         SvSETMAGIC(bigstr);
5717         return;
5718     }
5719     else if (i == 0) {
5720         Move(little,SvPVX(bigstr)+offset,len,char);
5721         SvSETMAGIC(bigstr);
5722         return;
5723     }
5724
5725     big = SvPVX(bigstr);
5726     mid = big + offset;
5727     midend = mid + len;
5728     bigend = big + SvCUR(bigstr);
5729
5730     if (midend > bigend)
5731         Perl_croak(aTHX_ "panic: sv_insert");
5732
5733     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5734         if (littlelen) {
5735             Move(little, mid, littlelen,char);
5736             mid += littlelen;
5737         }
5738         i = bigend - midend;
5739         if (i > 0) {
5740             Move(midend, mid, i,char);
5741             mid += i;
5742         }
5743         *mid = '\0';
5744         SvCUR_set(bigstr, mid - big);
5745     }
5746     else if ((i = mid - big)) { /* faster from front */
5747         midend -= littlelen;
5748         mid = midend;
5749         Move(big, midend - i, i, char);
5750         sv_chop(bigstr,midend-i);
5751         if (littlelen)
5752             Move(little, mid, littlelen,char);
5753     }
5754     else if (littlelen) {
5755         midend -= littlelen;
5756         sv_chop(bigstr,midend);
5757         Move(little,midend,littlelen,char);
5758     }
5759     else {
5760         sv_chop(bigstr,midend);
5761     }
5762     SvSETMAGIC(bigstr);
5763 }
5764
5765 /*
5766 =for apidoc sv_replace
5767
5768 Make the first argument a copy of the second, then delete the original.
5769 The target SV physically takes over ownership of the body of the source SV
5770 and inherits its flags; however, the target keeps any magic it owns,
5771 and any magic in the source is discarded.
5772 Note that this is a rather specialist SV copying operation; most of the
5773 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5774
5775 =cut
5776 */
5777
5778 void
5779 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5780 {
5781     dVAR;
5782     const U32 refcnt = SvREFCNT(sv);
5783
5784     PERL_ARGS_ASSERT_SV_REPLACE;
5785
5786     SV_CHECK_THINKFIRST_COW_DROP(sv);
5787     if (SvREFCNT(nsv) != 1) {
5788         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
5789                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
5790     }
5791     if (SvMAGICAL(sv)) {
5792         if (SvMAGICAL(nsv))
5793             mg_free(nsv);
5794         else
5795             sv_upgrade(nsv, SVt_PVMG);
5796         SvMAGIC_set(nsv, SvMAGIC(sv));
5797         SvFLAGS(nsv) |= SvMAGICAL(sv);
5798         SvMAGICAL_off(sv);
5799         SvMAGIC_set(sv, NULL);
5800     }
5801     SvREFCNT(sv) = 0;
5802     sv_clear(sv);
5803     assert(!SvREFCNT(sv));
5804 #ifdef DEBUG_LEAKING_SCALARS
5805     sv->sv_flags  = nsv->sv_flags;
5806     sv->sv_any    = nsv->sv_any;
5807     sv->sv_refcnt = nsv->sv_refcnt;
5808     sv->sv_u      = nsv->sv_u;
5809 #else
5810     StructCopy(nsv,sv,SV);
5811 #endif
5812     if(SvTYPE(sv) == SVt_IV) {
5813         SvANY(sv)
5814             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5815     }
5816         
5817
5818 #ifdef PERL_OLD_COPY_ON_WRITE
5819     if (SvIsCOW_normal(nsv)) {
5820         /* We need to follow the pointers around the loop to make the
5821            previous SV point to sv, rather than nsv.  */
5822         SV *next;
5823         SV *current = nsv;
5824         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5825             assert(next);
5826             current = next;
5827             assert(SvPVX_const(current) == SvPVX_const(nsv));
5828         }
5829         /* Make the SV before us point to the SV after us.  */
5830         if (DEBUG_C_TEST) {
5831             PerlIO_printf(Perl_debug_log, "previous is\n");
5832             sv_dump(current);
5833             PerlIO_printf(Perl_debug_log,
5834                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5835                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5836         }
5837         SV_COW_NEXT_SV_SET(current, sv);
5838     }
5839 #endif
5840     SvREFCNT(sv) = refcnt;
5841     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5842     SvREFCNT(nsv) = 0;
5843     del_SV(nsv);
5844 }
5845
5846 /* We're about to free a GV which has a CV that refers back to us.
5847  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
5848  * field) */
5849
5850 STATIC void
5851 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
5852 {
5853     char *stash;
5854     SV *gvname;
5855     GV *anongv;
5856
5857     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
5858
5859     /* be assertive! */
5860     assert(SvREFCNT(gv) == 0);
5861     assert(isGV(gv) && isGV_with_GP(gv));
5862     assert(GvGP(gv));
5863     assert(!CvANON(cv));
5864     assert(CvGV(cv) == gv);
5865
5866     /* will the CV shortly be freed by gp_free() ? */
5867     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
5868         SvANY(cv)->xcv_gv = NULL;
5869         return;
5870     }
5871
5872     /* if not, anonymise: */
5873     stash  = GvSTASH(gv) && HvNAME(GvSTASH(gv))
5874               ? HvENAME(GvSTASH(gv)) : NULL;
5875     gvname = Perl_newSVpvf(aTHX_ "%s::__ANON__",
5876                                         stash ? stash : "__ANON__");
5877     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
5878     SvREFCNT_dec(gvname);
5879
5880     CvANON_on(cv);
5881     CvCVGV_RC_on(cv);
5882     SvANY(cv)->xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
5883 }
5884
5885
5886 /*
5887 =for apidoc sv_clear
5888
5889 Clear an SV: call any destructors, free up any memory used by the body,
5890 and free the body itself. The SV's head is I<not> freed, although
5891 its type is set to all 1's so that it won't inadvertently be assumed
5892 to be live during global destruction etc.
5893 This function should only be called when REFCNT is zero. Most of the time
5894 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5895 instead.
5896
5897 =cut
5898 */
5899
5900 void
5901 Perl_sv_clear(pTHX_ SV *const orig_sv)
5902 {
5903     dVAR;
5904     HV *stash;
5905     U32 type;
5906     const struct body_details *sv_type_details;
5907     SV* iter_sv = NULL;
5908     SV* next_sv = NULL;
5909     register SV *sv = orig_sv;
5910     STRLEN hash_index;
5911
5912     PERL_ARGS_ASSERT_SV_CLEAR;
5913
5914     /* within this loop, sv is the SV currently being freed, and
5915      * iter_sv is the most recent AV or whatever that's being iterated
5916      * over to provide more SVs */
5917
5918     while (sv) {
5919
5920         type = SvTYPE(sv);
5921
5922         assert(SvREFCNT(sv) == 0);
5923         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
5924
5925         if (type <= SVt_IV) {
5926             /* See the comment in sv.h about the collusion between this
5927              * early return and the overloading of the NULL slots in the
5928              * size table.  */
5929             if (SvROK(sv))
5930                 goto free_rv;
5931             SvFLAGS(sv) &= SVf_BREAK;
5932             SvFLAGS(sv) |= SVTYPEMASK;
5933             goto free_head;
5934         }
5935
5936         assert(!SvOBJECT(sv) || type >= SVt_PVMG); /* objs are always >= MG */
5937
5938         if (type >= SVt_PVMG) {
5939             if (SvOBJECT(sv)) {
5940                 if (!curse(sv, 1)) goto get_next_sv;
5941                 type = SvTYPE(sv); /* destructor may have changed it */
5942             }
5943             /* Free back-references before magic, in case the magic calls
5944              * Perl code that has weak references to sv. */
5945             if (type == SVt_PVHV) {
5946                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
5947                 if (SvMAGIC(sv))
5948                     mg_free(sv);
5949             }
5950             else if (type == SVt_PVMG && SvPAD_OUR(sv)) {
5951                 SvREFCNT_dec(SvOURSTASH(sv));
5952             } else if (SvMAGIC(sv)) {
5953                 /* Free back-references before other types of magic. */
5954                 sv_unmagic(sv, PERL_MAGIC_backref);
5955                 mg_free(sv);
5956             }
5957             if (type == SVt_PVMG && SvPAD_TYPED(sv))
5958                 SvREFCNT_dec(SvSTASH(sv));
5959         }
5960         switch (type) {
5961             /* case SVt_BIND: */
5962         case SVt_PVIO:
5963             if (IoIFP(sv) &&
5964                 IoIFP(sv) != PerlIO_stdin() &&
5965                 IoIFP(sv) != PerlIO_stdout() &&
5966                 IoIFP(sv) != PerlIO_stderr() &&
5967                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5968             {
5969                 io_close(MUTABLE_IO(sv), FALSE);
5970             }
5971             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
5972                 PerlDir_close(IoDIRP(sv));
5973             IoDIRP(sv) = (DIR*)NULL;
5974             Safefree(IoTOP_NAME(sv));
5975             Safefree(IoFMT_NAME(sv));
5976             Safefree(IoBOTTOM_NAME(sv));
5977             goto freescalar;
5978         case SVt_REGEXP:
5979             /* FIXME for plugins */
5980             pregfree2((REGEXP*) sv);
5981             goto freescalar;
5982         case SVt_PVCV:
5983         case SVt_PVFM:
5984             cv_undef(MUTABLE_CV(sv));
5985             /* If we're in a stash, we don't own a reference to it.
5986              * However it does have a back reference to us, which needs to
5987              * be cleared.  */
5988             if ((stash = CvSTASH(sv)))
5989                 sv_del_backref(MUTABLE_SV(stash), sv);
5990             goto freescalar;
5991         case SVt_PVHV:
5992             if (PL_last_swash_hv == (const HV *)sv) {
5993                 PL_last_swash_hv = NULL;
5994             }
5995             if (HvTOTALKEYS((HV*)sv) > 0) {
5996                 const char *name;
5997                 /* this statement should match the one at the beginning of
5998                  * hv_undef_flags() */
5999                 if (   PL_phase != PERL_PHASE_DESTRUCT
6000                     && (name = HvNAME((HV*)sv)))
6001                 {
6002                     if (PL_stashcache)
6003                         (void)hv_delete(PL_stashcache, name,
6004                             HvNAMELEN_get((HV*)sv), G_DISCARD);
6005                     hv_name_set((HV*)sv, NULL, 0, 0);
6006                 }
6007
6008                 /* save old iter_sv in unused SvSTASH field */
6009                 assert(!SvOBJECT(sv));
6010                 SvSTASH(sv) = (HV*)iter_sv;
6011                 iter_sv = sv;
6012
6013                 /* XXX ideally we should save the old value of hash_index
6014                  * too, but I can't think of any place to hide it. The
6015                  * effect of not saving it is that for freeing hashes of
6016                  * hashes, we become quadratic in scanning the HvARRAY of
6017                  * the top hash looking for new entries to free; but
6018                  * hopefully this will be dwarfed by the freeing of all
6019                  * the nested hashes. */
6020                 hash_index = 0;
6021                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6022                 goto get_next_sv; /* process this new sv */
6023             }
6024             /* free empty hash */
6025             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6026             assert(!HvARRAY((HV*)sv));
6027             break;
6028         case SVt_PVAV:
6029             {
6030                 AV* av = MUTABLE_AV(sv);
6031                 if (PL_comppad == av) {
6032                     PL_comppad = NULL;
6033                     PL_curpad = NULL;
6034                 }
6035                 if (AvREAL(av) && AvFILLp(av) > -1) {
6036                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6037                     /* save old iter_sv in top-most slot of AV,
6038                      * and pray that it doesn't get wiped in the meantime */
6039                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6040                     iter_sv = sv;
6041                     goto get_next_sv; /* process this new sv */
6042                 }
6043                 Safefree(AvALLOC(av));
6044             }
6045
6046             break;
6047         case SVt_PVLV:
6048             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6049                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6050                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6051                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6052             }
6053             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6054                 SvREFCNT_dec(LvTARG(sv));
6055         case SVt_PVGV:
6056             if (isGV_with_GP(sv)) {
6057                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6058                    && HvENAME_get(stash))
6059                     mro_method_changed_in(stash);
6060                 gp_free(MUTABLE_GV(sv));
6061                 if (GvNAME_HEK(sv))
6062                     unshare_hek(GvNAME_HEK(sv));
6063                 /* If we're in a stash, we don't own a reference to it.
6064                  * However it does have a back reference to us, which
6065                  * needs to be cleared.  */
6066                 if (!SvVALID(sv) && (stash = GvSTASH(sv)))
6067                         sv_del_backref(MUTABLE_SV(stash), sv);
6068             }
6069             /* FIXME. There are probably more unreferenced pointers to SVs
6070              * in the interpreter struct that we should check and tidy in
6071              * a similar fashion to this:  */
6072             if ((const GV *)sv == PL_last_in_gv)
6073                 PL_last_in_gv = NULL;
6074         case SVt_PVMG:
6075         case SVt_PVNV:
6076         case SVt_PVIV:
6077         case SVt_PV:
6078           freescalar:
6079             /* Don't bother with SvOOK_off(sv); as we're only going to
6080              * free it.  */
6081             if (SvOOK(sv)) {
6082                 STRLEN offset;
6083                 SvOOK_offset(sv, offset);
6084                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6085                 /* Don't even bother with turning off the OOK flag.  */
6086             }
6087             if (SvROK(sv)) {
6088             free_rv:
6089                 {
6090                     SV * const target = SvRV(sv);
6091                     if (SvWEAKREF(sv))
6092                         sv_del_backref(target, sv);
6093                     else
6094                         next_sv = target;
6095                 }
6096             }
6097 #ifdef PERL_OLD_COPY_ON_WRITE
6098             else if (SvPVX_const(sv)
6099                      && !(SvTYPE(sv) == SVt_PVIO
6100                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6101             {
6102                 if (SvIsCOW(sv)) {
6103                     if (DEBUG_C_TEST) {
6104                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6105                         sv_dump(sv);
6106                     }
6107                     if (SvLEN(sv)) {
6108                         sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6109                     } else {
6110                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6111                     }
6112
6113                     SvFAKE_off(sv);
6114                 } else if (SvLEN(sv)) {
6115                     Safefree(SvPVX_const(sv));
6116                 }
6117             }
6118 #else
6119             else if (SvPVX_const(sv) && SvLEN(sv)
6120                      && !(SvTYPE(sv) == SVt_PVIO
6121                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6122                 Safefree(SvPVX_mutable(sv));
6123             else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
6124                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6125                 SvFAKE_off(sv);
6126             }
6127 #endif
6128             break;
6129         case SVt_NV:
6130             break;
6131         }
6132
6133       free_body:
6134
6135         SvFLAGS(sv) &= SVf_BREAK;
6136         SvFLAGS(sv) |= SVTYPEMASK;
6137
6138         sv_type_details = bodies_by_type + type;
6139         if (sv_type_details->arena) {
6140             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6141                      &PL_body_roots[type]);
6142         }
6143         else if (sv_type_details->body_size) {
6144             safefree(SvANY(sv));
6145         }
6146
6147       free_head:
6148         /* caller is responsible for freeing the head of the original sv */
6149         if (sv != orig_sv && !SvREFCNT(sv))
6150             del_SV(sv);
6151
6152         /* grab and free next sv, if any */
6153       get_next_sv:
6154         while (1) {
6155             sv = NULL;
6156             if (next_sv) {
6157                 sv = next_sv;
6158                 next_sv = NULL;
6159             }
6160             else if (!iter_sv) {
6161                 break;
6162             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6163                 AV *const av = (AV*)iter_sv;
6164                 if (AvFILLp(av) > -1) {
6165                     sv = AvARRAY(av)[AvFILLp(av)--];
6166                 }
6167                 else { /* no more elements of current AV to free */
6168                     sv = iter_sv;
6169                     type = SvTYPE(sv);
6170                     /* restore previous value, squirrelled away */
6171                     iter_sv = AvARRAY(av)[AvMAX(av)];
6172                     Safefree(AvALLOC(av));
6173                     goto free_body;
6174                 }
6175             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6176                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6177                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6178                     /* no more elements of current HV to free */
6179                     sv = iter_sv;
6180                     type = SvTYPE(sv);
6181                     /* Restore previous value of iter_sv, squirrelled away */
6182                     assert(!SvOBJECT(sv));
6183                     iter_sv = (SV*)SvSTASH(sv);
6184
6185                     /* ideally we should restore the old hash_index here,
6186                      * but we don't currently save the old value */
6187                     hash_index = 0;
6188
6189                     /* free any remaining detritus from the hash struct */
6190                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6191                     assert(!HvARRAY((HV*)sv));
6192                     goto free_body;
6193                 }
6194             }
6195
6196             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6197
6198             if (!sv)
6199                 continue;
6200             if (!SvREFCNT(sv)) {
6201                 sv_free(sv);
6202                 continue;
6203             }
6204             if (--(SvREFCNT(sv)))
6205                 continue;
6206 #ifdef DEBUGGING
6207             if (SvTEMP(sv)) {
6208                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6209                          "Attempt to free temp prematurely: SV 0x%"UVxf
6210                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6211                 continue;
6212             }
6213 #endif
6214             if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6215                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6216                 SvREFCNT(sv) = (~(U32)0)/2;
6217                 continue;
6218             }
6219             break;
6220         } /* while 1 */
6221
6222     } /* while sv */
6223 }
6224
6225 /* This routine curses the sv itself, not the object referenced by sv. So
6226    sv does not have to be ROK. */
6227
6228 static bool
6229 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6230     dVAR;
6231
6232     PERL_ARGS_ASSERT_CURSE;
6233     assert(SvOBJECT(sv));
6234
6235     if (PL_defstash &&  /* Still have a symbol table? */
6236         SvDESTROYABLE(sv))
6237     {
6238         dSP;
6239         HV* stash;
6240         do {
6241             CV* destructor;
6242             stash = SvSTASH(sv);
6243             destructor = StashHANDLER(stash,DESTROY);
6244             if (destructor
6245                 /* A constant subroutine can have no side effects, so
6246                    don't bother calling it.  */
6247                 && !CvCONST(destructor)
6248                 /* Don't bother calling an empty destructor */
6249                 && (CvISXSUB(destructor)
6250                 || (CvSTART(destructor)
6251                     && (CvSTART(destructor)->op_next->op_type
6252                                         != OP_LEAVESUB))))
6253             {
6254                 SV* const tmpref = newRV(sv);
6255                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
6256                 ENTER;
6257                 PUSHSTACKi(PERLSI_DESTROY);
6258                 EXTEND(SP, 2);
6259                 PUSHMARK(SP);
6260                 PUSHs(tmpref);
6261                 PUTBACK;
6262                 call_sv(MUTABLE_SV(destructor),
6263                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
6264                 POPSTACK;
6265                 SPAGAIN;
6266                 LEAVE;
6267                 if(SvREFCNT(tmpref) < 2) {
6268                     /* tmpref is not kept alive! */
6269                     SvREFCNT(sv)--;
6270                     SvRV_set(tmpref, NULL);
6271                     SvROK_off(tmpref);
6272                 }
6273                 SvREFCNT_dec(tmpref);
6274             }
6275         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
6276
6277
6278         if (check_refcnt && SvREFCNT(sv)) {
6279             if (PL_in_clean_objs)
6280                 Perl_croak(aTHX_
6281                     "DESTROY created new reference to dead object '%s'",
6282                     HvNAME_get(stash));
6283             /* DESTROY gave object new lease on life */
6284             return FALSE;
6285         }
6286     }
6287
6288     if (SvOBJECT(sv)) {
6289         SvREFCNT_dec(SvSTASH(sv)); /* possibly of changed persuasion */
6290         SvOBJECT_off(sv);       /* Curse the object. */
6291         if (SvTYPE(sv) != SVt_PVIO)
6292             --PL_sv_objcount;/* XXX Might want something more general */
6293     }
6294     return TRUE;
6295 }
6296
6297 /*
6298 =for apidoc sv_newref
6299
6300 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
6301 instead.
6302
6303 =cut
6304 */
6305
6306 SV *
6307 Perl_sv_newref(pTHX_ SV *const sv)
6308 {
6309     PERL_UNUSED_CONTEXT;
6310     if (sv)
6311         (SvREFCNT(sv))++;
6312     return sv;
6313 }
6314
6315 /*
6316 =for apidoc sv_free
6317
6318 Decrement an SV's reference count, and if it drops to zero, call
6319 C<sv_clear> to invoke destructors and free up any memory used by
6320 the body; finally, deallocate the SV's head itself.
6321 Normally called via a wrapper macro C<SvREFCNT_dec>.
6322
6323 =cut
6324 */
6325
6326 void
6327 Perl_sv_free(pTHX_ SV *const sv)
6328 {
6329     dVAR;
6330     if (!sv)
6331         return;
6332     if (SvREFCNT(sv) == 0) {
6333         if (SvFLAGS(sv) & SVf_BREAK)
6334             /* this SV's refcnt has been artificially decremented to
6335              * trigger cleanup */
6336             return;
6337         if (PL_in_clean_all) /* All is fair */
6338             return;
6339         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6340             /* make sure SvREFCNT(sv)==0 happens very seldom */
6341             SvREFCNT(sv) = (~(U32)0)/2;
6342             return;
6343         }
6344         if (ckWARN_d(WARN_INTERNAL)) {
6345 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6346             Perl_dump_sv_child(aTHX_ sv);
6347 #else
6348   #ifdef DEBUG_LEAKING_SCALARS
6349             sv_dump(sv);
6350   #endif
6351 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6352             if (PL_warnhook == PERL_WARNHOOK_FATAL
6353                 || ckDEAD(packWARN(WARN_INTERNAL))) {
6354                 /* Don't let Perl_warner cause us to escape our fate:  */
6355                 abort();
6356             }
6357 #endif
6358             /* This may not return:  */
6359             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6360                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
6361                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6362 #endif
6363         }
6364 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6365         abort();
6366 #endif
6367         return;
6368     }
6369     if (--(SvREFCNT(sv)) > 0)
6370         return;
6371     Perl_sv_free2(aTHX_ sv);
6372 }
6373
6374 void
6375 Perl_sv_free2(pTHX_ SV *const sv)
6376 {
6377     dVAR;
6378
6379     PERL_ARGS_ASSERT_SV_FREE2;
6380
6381 #ifdef DEBUGGING
6382     if (SvTEMP(sv)) {
6383         Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6384                          "Attempt to free temp prematurely: SV 0x%"UVxf
6385                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6386         return;
6387     }
6388 #endif
6389     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6390         /* make sure SvREFCNT(sv)==0 happens very seldom */
6391         SvREFCNT(sv) = (~(U32)0)/2;
6392         return;
6393     }
6394     sv_clear(sv);
6395     if (! SvREFCNT(sv))
6396         del_SV(sv);
6397 }
6398
6399 /*
6400 =for apidoc sv_len
6401
6402 Returns the length of the string in the SV. Handles magic and type
6403 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
6404
6405 =cut
6406 */
6407
6408 STRLEN
6409 Perl_sv_len(pTHX_ register SV *const sv)
6410 {
6411     STRLEN len;
6412
6413     if (!sv)
6414         return 0;
6415
6416     if (SvGMAGICAL(sv))
6417         len = mg_length(sv);
6418     else
6419         (void)SvPV_const(sv, len);
6420     return len;
6421 }
6422
6423 /*
6424 =for apidoc sv_len_utf8
6425
6426 Returns the number of characters in the string in an SV, counting wide
6427 UTF-8 bytes as a single character. Handles magic and type coercion.
6428
6429 =cut
6430 */
6431
6432 /*
6433  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
6434  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
6435  * (Note that the mg_len is not the length of the mg_ptr field.
6436  * This allows the cache to store the character length of the string without
6437  * needing to malloc() extra storage to attach to the mg_ptr.)
6438  *
6439  */
6440
6441 STRLEN
6442 Perl_sv_len_utf8(pTHX_ register SV *const sv)
6443 {
6444     if (!sv)
6445         return 0;
6446
6447     if (SvGMAGICAL(sv))
6448         return mg_length(sv);
6449     else
6450     {
6451         STRLEN len;
6452         const U8 *s = (U8*)SvPV_const(sv, len);
6453
6454         if (PL_utf8cache) {
6455             STRLEN ulen;
6456             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
6457
6458             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
6459                 if (mg->mg_len != -1)
6460                     ulen = mg->mg_len;
6461                 else {
6462                     /* We can use the offset cache for a headstart.
6463                        The longer value is stored in the first pair.  */
6464                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
6465
6466                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
6467                                                        s + len);
6468                 }
6469                 
6470                 if (PL_utf8cache < 0) {
6471                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6472                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
6473                 }
6474             }
6475             else {
6476                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6477                 utf8_mg_len_cache_update(sv, &mg, ulen);
6478             }
6479             return ulen;
6480         }
6481         return Perl_utf8_length(aTHX_ s, s + len);
6482     }
6483 }
6484
6485 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6486    offset.  */
6487 static STRLEN
6488 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6489                       STRLEN *const uoffset_p, bool *const at_end)
6490 {
6491     const U8 *s = start;
6492     STRLEN uoffset = *uoffset_p;
6493
6494     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6495
6496     while (s < send && uoffset) {
6497         --uoffset;
6498         s += UTF8SKIP(s);
6499     }
6500     if (s == send) {
6501         *at_end = TRUE;
6502     }
6503     else if (s > send) {
6504         *at_end = TRUE;
6505         /* This is the existing behaviour. Possibly it should be a croak, as
6506            it's actually a bounds error  */
6507         s = send;
6508     }
6509     *uoffset_p -= uoffset;
6510     return s - start;
6511 }
6512
6513 /* Given the length of the string in both bytes and UTF-8 characters, decide
6514    whether to walk forwards or backwards to find the byte corresponding to
6515    the passed in UTF-8 offset.  */
6516 static STRLEN
6517 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6518                     STRLEN uoffset, const STRLEN uend)
6519 {
6520     STRLEN backw = uend - uoffset;
6521
6522     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6523
6524     if (uoffset < 2 * backw) {
6525         /* The assumption is that going forwards is twice the speed of going
6526            forward (that's where the 2 * backw comes from).
6527            (The real figure of course depends on the UTF-8 data.)  */
6528         const U8 *s = start;
6529
6530         while (s < send && uoffset--)
6531             s += UTF8SKIP(s);
6532         assert (s <= send);
6533         if (s > send)
6534             s = send;
6535         return s - start;
6536     }
6537
6538     while (backw--) {
6539         send--;
6540         while (UTF8_IS_CONTINUATION(*send))
6541             send--;
6542     }
6543     return send - start;
6544 }
6545
6546 /* For the string representation of the given scalar, find the byte
6547    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6548    give another position in the string, *before* the sought offset, which
6549    (which is always true, as 0, 0 is a valid pair of positions), which should
6550    help reduce the amount of linear searching.
6551    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6552    will be used to reduce the amount of linear searching. The cache will be
6553    created if necessary, and the found value offered to it for update.  */
6554 static STRLEN
6555 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6556                     const U8 *const send, STRLEN uoffset,
6557                     STRLEN uoffset0, STRLEN boffset0)
6558 {
6559     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6560     bool found = FALSE;
6561     bool at_end = FALSE;
6562
6563     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6564
6565     assert (uoffset >= uoffset0);
6566
6567     if (!uoffset)
6568         return 0;
6569
6570     if (!SvREADONLY(sv)
6571         && PL_utf8cache
6572         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
6573                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
6574         if ((*mgp)->mg_ptr) {
6575             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6576             if (cache[0] == uoffset) {
6577                 /* An exact match. */
6578                 return cache[1];
6579             }
6580             if (cache[2] == uoffset) {
6581                 /* An exact match. */
6582                 return cache[3];
6583             }
6584
6585             if (cache[0] < uoffset) {
6586                 /* The cache already knows part of the way.   */
6587                 if (cache[0] > uoffset0) {
6588                     /* The cache knows more than the passed in pair  */
6589                     uoffset0 = cache[0];
6590                     boffset0 = cache[1];
6591                 }
6592                 if ((*mgp)->mg_len != -1) {
6593                     /* And we know the end too.  */
6594                     boffset = boffset0
6595                         + sv_pos_u2b_midway(start + boffset0, send,
6596                                               uoffset - uoffset0,
6597                                               (*mgp)->mg_len - uoffset0);
6598                 } else {
6599                     uoffset -= uoffset0;
6600                     boffset = boffset0
6601                         + sv_pos_u2b_forwards(start + boffset0,
6602                                               send, &uoffset, &at_end);
6603                     uoffset += uoffset0;
6604                 }
6605             }
6606             else if (cache[2] < uoffset) {
6607                 /* We're between the two cache entries.  */
6608                 if (cache[2] > uoffset0) {
6609                     /* and the cache knows more than the passed in pair  */
6610                     uoffset0 = cache[2];
6611                     boffset0 = cache[3];
6612                 }
6613
6614                 boffset = boffset0
6615                     + sv_pos_u2b_midway(start + boffset0,
6616                                           start + cache[1],
6617                                           uoffset - uoffset0,
6618                                           cache[0] - uoffset0);
6619             } else {
6620                 boffset = boffset0
6621                     + sv_pos_u2b_midway(start + boffset0,
6622                                           start + cache[3],
6623                                           uoffset - uoffset0,
6624                                           cache[2] - uoffset0);
6625             }
6626             found = TRUE;
6627         }
6628         else if ((*mgp)->mg_len != -1) {
6629             /* If we can take advantage of a passed in offset, do so.  */
6630             /* In fact, offset0 is either 0, or less than offset, so don't
6631                need to worry about the other possibility.  */
6632             boffset = boffset0
6633                 + sv_pos_u2b_midway(start + boffset0, send,
6634                                       uoffset - uoffset0,
6635                                       (*mgp)->mg_len - uoffset0);
6636             found = TRUE;
6637         }
6638     }
6639
6640     if (!found || PL_utf8cache < 0) {
6641         STRLEN real_boffset;
6642         uoffset -= uoffset0;
6643         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
6644                                                       send, &uoffset, &at_end);
6645         uoffset += uoffset0;
6646
6647         if (found && PL_utf8cache < 0)
6648             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
6649                                        real_boffset, sv);
6650         boffset = real_boffset;
6651     }
6652
6653     if (PL_utf8cache) {
6654         if (at_end)
6655             utf8_mg_len_cache_update(sv, mgp, uoffset);
6656         else
6657             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
6658     }
6659     return boffset;
6660 }
6661
6662
6663 /*
6664 =for apidoc sv_pos_u2b_flags
6665
6666 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6667 the start of the string, to a count of the equivalent number of bytes; if
6668 lenp is non-zero, it does the same to lenp, but this time starting from
6669 the offset, rather than from the start of the string. Handles type coercion.
6670 I<flags> is passed to C<SvPV_flags>, and usually should be
6671 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
6672
6673 =cut
6674 */
6675
6676 /*
6677  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
6678  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6679  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6680  *
6681  */
6682
6683 STRLEN
6684 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
6685                       U32 flags)
6686 {
6687     const U8 *start;
6688     STRLEN len;
6689     STRLEN boffset;
6690
6691     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
6692
6693     start = (U8*)SvPV_flags(sv, len, flags);
6694     if (len) {
6695         const U8 * const send = start + len;
6696         MAGIC *mg = NULL;
6697         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
6698
6699         if (lenp
6700             && *lenp /* don't bother doing work for 0, as its bytes equivalent
6701                         is 0, and *lenp is already set to that.  */) {
6702             /* Convert the relative offset to absolute.  */
6703             const STRLEN uoffset2 = uoffset + *lenp;
6704             const STRLEN boffset2
6705                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
6706                                       uoffset, boffset) - boffset;
6707
6708             *lenp = boffset2;
6709         }
6710     } else {
6711         if (lenp)
6712             *lenp = 0;
6713         boffset = 0;
6714     }
6715
6716     return boffset;
6717 }
6718
6719 /*
6720 =for apidoc sv_pos_u2b
6721
6722 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6723 the start of the string, to a count of the equivalent number of bytes; if
6724 lenp is non-zero, it does the same to lenp, but this time starting from
6725 the offset, rather than from the start of the string. Handles magic and
6726 type coercion.
6727
6728 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
6729 than 2Gb.
6730
6731 =cut
6732 */
6733
6734 /*
6735  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6736  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6737  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6738  *
6739  */
6740
6741 /* This function is subject to size and sign problems */
6742
6743 void
6744 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
6745 {
6746     PERL_ARGS_ASSERT_SV_POS_U2B;
6747
6748     if (lenp) {
6749         STRLEN ulen = (STRLEN)*lenp;
6750         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
6751                                          SV_GMAGIC|SV_CONST_RETURN);
6752         *lenp = (I32)ulen;
6753     } else {
6754         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
6755                                          SV_GMAGIC|SV_CONST_RETURN);
6756     }
6757 }
6758
6759 static void
6760 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
6761                            const STRLEN ulen)
6762 {
6763     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
6764     if (SvREADONLY(sv))
6765         return;
6766
6767     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6768                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6769         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
6770     }
6771     assert(*mgp);
6772
6773     (*mgp)->mg_len = ulen;
6774     /* For now, treat "overflowed" as "still unknown". See RT #72924.  */
6775     if (ulen != (STRLEN) (*mgp)->mg_len)
6776         (*mgp)->mg_len = -1;
6777 }
6778
6779 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
6780    byte length pairing. The (byte) length of the total SV is passed in too,
6781    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
6782    may not have updated SvCUR, so we can't rely on reading it directly.
6783
6784    The proffered utf8/byte length pairing isn't used if the cache already has
6785    two pairs, and swapping either for the proffered pair would increase the
6786    RMS of the intervals between known byte offsets.
6787
6788    The cache itself consists of 4 STRLEN values
6789    0: larger UTF-8 offset
6790    1: corresponding byte offset
6791    2: smaller UTF-8 offset
6792    3: corresponding byte offset
6793
6794    Unused cache pairs have the value 0, 0.
6795    Keeping the cache "backwards" means that the invariant of
6796    cache[0] >= cache[2] is maintained even with empty slots, which means that
6797    the code that uses it doesn't need to worry if only 1 entry has actually
6798    been set to non-zero.  It also makes the "position beyond the end of the
6799    cache" logic much simpler, as the first slot is always the one to start
6800    from.   
6801 */
6802 static void
6803 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6804                            const STRLEN utf8, const STRLEN blen)
6805 {
6806     STRLEN *cache;
6807
6808     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6809
6810     if (SvREADONLY(sv))
6811         return;
6812
6813     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6814                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6815         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6816                            0);
6817         (*mgp)->mg_len = -1;
6818     }
6819     assert(*mgp);
6820
6821     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6822         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6823         (*mgp)->mg_ptr = (char *) cache;
6824     }
6825     assert(cache);
6826
6827     if (PL_utf8cache < 0 && SvPOKp(sv)) {
6828         /* SvPOKp() because it's possible that sv has string overloading, and
6829            therefore is a reference, hence SvPVX() is actually a pointer.
6830            This cures the (very real) symptoms of RT 69422, but I'm not actually
6831            sure whether we should even be caching the results of UTF-8
6832            operations on overloading, given that nothing stops overloading
6833            returning a different value every time it's called.  */
6834         const U8 *start = (const U8 *) SvPVX_const(sv);
6835         const STRLEN realutf8 = utf8_length(start, start + byte);
6836
6837         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
6838                                    sv);
6839     }
6840
6841     /* Cache is held with the later position first, to simplify the code
6842        that deals with unbounded ends.  */
6843        
6844     ASSERT_UTF8_CACHE(cache);
6845     if (cache[1] == 0) {
6846         /* Cache is totally empty  */
6847         cache[0] = utf8;
6848         cache[1] = byte;
6849     } else if (cache[3] == 0) {
6850         if (byte > cache[1]) {
6851             /* New one is larger, so goes first.  */
6852             cache[2] = cache[0];
6853             cache[3] = cache[1];
6854             cache[0] = utf8;
6855             cache[1] = byte;
6856         } else {
6857             cache[2] = utf8;
6858             cache[3] = byte;
6859         }
6860     } else {
6861 #define THREEWAY_SQUARE(a,b,c,d) \
6862             ((float)((d) - (c))) * ((float)((d) - (c))) \
6863             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6864                + ((float)((b) - (a))) * ((float)((b) - (a)))
6865
6866         /* Cache has 2 slots in use, and we know three potential pairs.
6867            Keep the two that give the lowest RMS distance. Do the
6868            calculation in bytes simply because we always know the byte
6869            length.  squareroot has the same ordering as the positive value,
6870            so don't bother with the actual square root.  */
6871         const float existing = THREEWAY_SQUARE(0, cache[3], cache[1], blen);
6872         if (byte > cache[1]) {
6873             /* New position is after the existing pair of pairs.  */
6874             const float keep_earlier
6875                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6876             const float keep_later
6877                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6878
6879             if (keep_later < keep_earlier) {
6880                 if (keep_later < existing) {
6881                     cache[2] = cache[0];
6882                     cache[3] = cache[1];
6883                     cache[0] = utf8;
6884                     cache[1] = byte;
6885                 }
6886             }
6887             else {
6888                 if (keep_earlier < existing) {
6889                     cache[0] = utf8;
6890                     cache[1] = byte;
6891                 }
6892             }
6893         }
6894         else if (byte > cache[3]) {
6895             /* New position is between the existing pair of pairs.  */
6896             const float keep_earlier
6897                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6898             const float keep_later
6899                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6900
6901             if (keep_later < keep_earlier) {
6902                 if (keep_later < existing) {
6903                     cache[2] = utf8;
6904                     cache[3] = byte;
6905                 }
6906             }
6907             else {
6908                 if (keep_earlier < existing) {
6909                     cache[0] = utf8;
6910                     cache[1] = byte;
6911                 }
6912             }
6913         }
6914         else {
6915             /* New position is before the existing pair of pairs.  */
6916             const float keep_earlier
6917                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
6918             const float keep_later
6919                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6920
6921             if (keep_later < keep_earlier) {
6922                 if (keep_later < existing) {
6923                     cache[2] = utf8;
6924                     cache[3] = byte;
6925                 }
6926             }
6927             else {
6928                 if (keep_earlier < existing) {
6929                     cache[0] = cache[2];
6930                     cache[1] = cache[3];
6931                     cache[2] = utf8;
6932                     cache[3] = byte;
6933                 }
6934             }
6935         }
6936     }
6937     ASSERT_UTF8_CACHE(cache);
6938 }
6939
6940 /* We already know all of the way, now we may be able to walk back.  The same
6941    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
6942    backward is half the speed of walking forward. */
6943 static STRLEN
6944 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
6945                     const U8 *end, STRLEN endu)
6946 {
6947     const STRLEN forw = target - s;
6948     STRLEN backw = end - target;
6949
6950     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
6951
6952     if (forw < 2 * backw) {
6953         return utf8_length(s, target);
6954     }
6955
6956     while (end > target) {
6957         end--;
6958         while (UTF8_IS_CONTINUATION(*end)) {
6959             end--;
6960         }
6961         endu--;
6962     }
6963     return endu;
6964 }
6965
6966 /*
6967 =for apidoc sv_pos_b2u
6968
6969 Converts the value pointed to by offsetp from a count of bytes from the
6970 start of the string, to a count of the equivalent number of UTF-8 chars.
6971 Handles magic and type coercion.
6972
6973 =cut
6974 */
6975
6976 /*
6977  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
6978  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6979  * byte offsets.
6980  *
6981  */
6982 void
6983 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
6984 {
6985     const U8* s;
6986     const STRLEN byte = *offsetp;
6987     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
6988     STRLEN blen;
6989     MAGIC* mg = NULL;
6990     const U8* send;
6991     bool found = FALSE;
6992
6993     PERL_ARGS_ASSERT_SV_POS_B2U;
6994
6995     if (!sv)
6996         return;
6997
6998     s = (const U8*)SvPV_const(sv, blen);
6999
7000     if (blen < byte)
7001         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
7002
7003     send = s + byte;
7004
7005     if (!SvREADONLY(sv)
7006         && PL_utf8cache
7007         && SvTYPE(sv) >= SVt_PVMG
7008         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7009     {
7010         if (mg->mg_ptr) {
7011             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7012             if (cache[1] == byte) {
7013                 /* An exact match. */
7014                 *offsetp = cache[0];
7015                 return;
7016             }
7017             if (cache[3] == byte) {
7018                 /* An exact match. */
7019                 *offsetp = cache[2];
7020                 return;
7021             }
7022
7023             if (cache[1] < byte) {
7024                 /* We already know part of the way. */
7025                 if (mg->mg_len != -1) {
7026                     /* Actually, we know the end too.  */
7027                     len = cache[0]
7028                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7029                                               s + blen, mg->mg_len - cache[0]);
7030                 } else {
7031                     len = cache[0] + utf8_length(s + cache[1], send);
7032                 }
7033             }
7034             else if (cache[3] < byte) {
7035                 /* We're between the two cached pairs, so we do the calculation
7036                    offset by the byte/utf-8 positions for the earlier pair,
7037                    then add the utf-8 characters from the string start to
7038                    there.  */
7039                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7040                                           s + cache[1], cache[0] - cache[2])
7041                     + cache[2];
7042
7043             }
7044             else { /* cache[3] > byte */
7045                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7046                                           cache[2]);
7047
7048             }
7049             ASSERT_UTF8_CACHE(cache);
7050             found = TRUE;
7051         } else if (mg->mg_len != -1) {
7052             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7053             found = TRUE;
7054         }
7055     }
7056     if (!found || PL_utf8cache < 0) {
7057         const STRLEN real_len = utf8_length(s, send);
7058
7059         if (found && PL_utf8cache < 0)
7060             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7061         len = real_len;
7062     }
7063     *offsetp = len;
7064
7065     if (PL_utf8cache) {
7066         if (blen == byte)
7067             utf8_mg_len_cache_update(sv, &mg, len);
7068         else
7069             utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
7070     }
7071 }
7072
7073 static void
7074 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7075                              STRLEN real, SV *const sv)
7076 {
7077     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7078
7079     /* As this is debugging only code, save space by keeping this test here,
7080        rather than inlining it in all the callers.  */
7081     if (from_cache == real)
7082         return;
7083
7084     /* Need to turn the assertions off otherwise we may recurse infinitely
7085        while printing error messages.  */
7086     SAVEI8(PL_utf8cache);
7087     PL_utf8cache = 0;
7088     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
7089                func, (UV) from_cache, (UV) real, SVfARG(sv));
7090 }
7091
7092 /*
7093 =for apidoc sv_eq
7094
7095 Returns a boolean indicating whether the strings in the two SVs are
7096 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
7097 coerce its args to strings if necessary.
7098
7099 =for apidoc sv_eq_flags
7100
7101 Returns a boolean indicating whether the strings in the two SVs are
7102 identical. Is UTF-8 and 'use bytes' aware and coerces its args to strings
7103 if necessary. If the flags include SV_GMAGIC, it handles get-magic, too.
7104
7105 =cut
7106 */
7107
7108 I32
7109 Perl_sv_eq_flags(pTHX_ register SV *sv1, register SV *sv2, const U32 flags)
7110 {
7111     dVAR;
7112     const char *pv1;
7113     STRLEN cur1;
7114     const char *pv2;
7115     STRLEN cur2;
7116     I32  eq     = 0;
7117     char *tpv   = NULL;
7118     SV* svrecode = NULL;
7119
7120     if (!sv1) {
7121         pv1 = "";
7122         cur1 = 0;
7123     }
7124     else {
7125         /* if pv1 and pv2 are the same, second SvPV_const call may
7126          * invalidate pv1 (if we are handling magic), so we may need to
7127          * make a copy */
7128         if (sv1 == sv2 && flags & SV_GMAGIC
7129          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7130             pv1 = SvPV_const(sv1, cur1);
7131             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7132         }
7133         pv1 = SvPV_flags_const(sv1, cur1, flags);
7134     }
7135
7136     if (!sv2){
7137         pv2 = "";
7138         cur2 = 0;
7139     }
7140     else
7141         pv2 = SvPV_flags_const(sv2, cur2, flags);
7142
7143     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7144         /* Differing utf8ness.
7145          * Do not UTF8size the comparands as a side-effect. */
7146          if (PL_encoding) {
7147               if (SvUTF8(sv1)) {
7148                    svrecode = newSVpvn(pv2, cur2);
7149                    sv_recode_to_utf8(svrecode, PL_encoding);
7150                    pv2 = SvPV_const(svrecode, cur2);
7151               }
7152               else {
7153                    svrecode = newSVpvn(pv1, cur1);
7154                    sv_recode_to_utf8(svrecode, PL_encoding);
7155                    pv1 = SvPV_const(svrecode, cur1);
7156               }
7157               /* Now both are in UTF-8. */
7158               if (cur1 != cur2) {
7159                    SvREFCNT_dec(svrecode);
7160                    return FALSE;
7161               }
7162          }
7163          else {
7164               if (SvUTF8(sv1)) {
7165                   /* sv1 is the UTF-8 one  */
7166                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7167                                         (const U8*)pv1, cur1) == 0;
7168               }
7169               else {
7170                   /* sv2 is the UTF-8 one  */
7171                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7172                                         (const U8*)pv2, cur2) == 0;
7173               }
7174          }
7175     }
7176
7177     if (cur1 == cur2)
7178         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7179         
7180     SvREFCNT_dec(svrecode);
7181     if (tpv)
7182         Safefree(tpv);
7183
7184     return eq;
7185 }
7186
7187 /*
7188 =for apidoc sv_cmp
7189
7190 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7191 string in C<sv1> is less than, equal to, or greater than the string in
7192 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
7193 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
7194
7195 =for apidoc sv_cmp_flags
7196
7197 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7198 string in C<sv1> is less than, equal to, or greater than the string in
7199 C<sv2>. Is UTF-8 and 'use bytes' aware and will coerce its args to strings
7200 if necessary. If the flags include SV_GMAGIC, it handles get magic. See
7201 also C<sv_cmp_locale_flags>.
7202
7203 =cut
7204 */
7205
7206 I32
7207 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
7208 {
7209     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7210 }
7211
7212 I32
7213 Perl_sv_cmp_flags(pTHX_ register SV *const sv1, register SV *const sv2,
7214                   const U32 flags)
7215 {
7216     dVAR;
7217     STRLEN cur1, cur2;
7218     const char *pv1, *pv2;
7219     char *tpv = NULL;
7220     I32  cmp;
7221     SV *svrecode = NULL;
7222
7223     if (!sv1) {
7224         pv1 = "";
7225         cur1 = 0;
7226     }
7227     else
7228         pv1 = SvPV_flags_const(sv1, cur1, flags);
7229
7230     if (!sv2) {
7231         pv2 = "";
7232         cur2 = 0;
7233     }
7234     else
7235         pv2 = SvPV_flags_const(sv2, cur2, flags);
7236
7237     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7238         /* Differing utf8ness.
7239          * Do not UTF8size the comparands as a side-effect. */
7240         if (SvUTF8(sv1)) {
7241             if (PL_encoding) {
7242                  svrecode = newSVpvn(pv2, cur2);
7243                  sv_recode_to_utf8(svrecode, PL_encoding);
7244                  pv2 = SvPV_const(svrecode, cur2);
7245             }
7246             else {
7247                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
7248                                                    (const U8*)pv1, cur1);
7249                 return retval ? retval < 0 ? -1 : +1 : 0;
7250             }
7251         }
7252         else {
7253             if (PL_encoding) {
7254                  svrecode = newSVpvn(pv1, cur1);
7255                  sv_recode_to_utf8(svrecode, PL_encoding);
7256                  pv1 = SvPV_const(svrecode, cur1);
7257             }
7258             else {
7259                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
7260                                                   (const U8*)pv2, cur2);
7261                 return retval ? retval < 0 ? -1 : +1 : 0;
7262             }
7263         }
7264     }
7265
7266     if (!cur1) {
7267         cmp = cur2 ? -1 : 0;
7268     } else if (!cur2) {
7269         cmp = 1;
7270     } else {
7271         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7272
7273         if (retval) {
7274             cmp = retval < 0 ? -1 : 1;
7275         } else if (cur1 == cur2) {
7276             cmp = 0;
7277         } else {
7278             cmp = cur1 < cur2 ? -1 : 1;
7279         }
7280     }
7281
7282     SvREFCNT_dec(svrecode);
7283     if (tpv)
7284         Safefree(tpv);
7285
7286     return cmp;
7287 }
7288
7289 /*
7290 =for apidoc sv_cmp_locale
7291
7292 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
7293 'use bytes' aware, handles get magic, and will coerce its args to strings
7294 if necessary.  See also C<sv_cmp>.
7295
7296 =for apidoc sv_cmp_locale_flags
7297
7298 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
7299 'use bytes' aware and will coerce its args to strings if necessary. If the
7300 flags contain SV_GMAGIC, it handles get magic. See also C<sv_cmp_flags>.
7301
7302 =cut
7303 */
7304
7305 I32
7306 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
7307 {
7308     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7309 }
7310
7311 I32
7312 Perl_sv_cmp_locale_flags(pTHX_ register SV *const sv1, register SV *const sv2,
7313                          const U32 flags)
7314 {
7315     dVAR;
7316 #ifdef USE_LOCALE_COLLATE
7317
7318     char *pv1, *pv2;
7319     STRLEN len1, len2;
7320     I32 retval;
7321
7322     if (PL_collation_standard)
7323         goto raw_compare;
7324
7325     len1 = 0;
7326     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7327     len2 = 0;
7328     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7329
7330     if (!pv1 || !len1) {
7331         if (pv2 && len2)
7332             return -1;
7333         else
7334             goto raw_compare;
7335     }
7336     else {
7337         if (!pv2 || !len2)
7338             return 1;
7339     }
7340
7341     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7342
7343     if (retval)
7344         return retval < 0 ? -1 : 1;
7345
7346     /*
7347      * When the result of collation is equality, that doesn't mean
7348      * that there are no differences -- some locales exclude some
7349      * characters from consideration.  So to avoid false equalities,
7350      * we use the raw string as a tiebreaker.
7351      */
7352
7353   raw_compare:
7354     /*FALLTHROUGH*/
7355
7356 #endif /* USE_LOCALE_COLLATE */
7357
7358     return sv_cmp(sv1, sv2);
7359 }
7360
7361
7362 #ifdef USE_LOCALE_COLLATE
7363
7364 /*
7365 =for apidoc sv_collxfrm
7366
7367 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag. See
7368 C<sv_collxfrm_flags>.
7369
7370 =for apidoc sv_collxfrm_flags
7371
7372 Add Collate Transform magic to an SV if it doesn't already have it. If the
7373 flags contain SV_GMAGIC, it handles get-magic.
7374
7375 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7376 scalar data of the variable, but transformed to such a format that a normal
7377 memory comparison can be used to compare the data according to the locale
7378 settings.
7379
7380 =cut
7381 */
7382
7383 char *
7384 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
7385 {
7386     dVAR;
7387     MAGIC *mg;
7388
7389     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
7390
7391     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
7392     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
7393         const char *s;
7394         char *xf;
7395         STRLEN len, xlen;
7396
7397         if (mg)
7398             Safefree(mg->mg_ptr);
7399         s = SvPV_flags_const(sv, len, flags);
7400         if ((xf = mem_collxfrm(s, len, &xlen))) {
7401             if (! mg) {
7402 #ifdef PERL_OLD_COPY_ON_WRITE
7403                 if (SvIsCOW(sv))
7404                     sv_force_normal_flags(sv, 0);
7405 #endif
7406                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7407                                  0, 0);
7408                 assert(mg);
7409             }
7410             mg->mg_ptr = xf;
7411             mg->mg_len = xlen;
7412         }
7413         else {
7414             if (mg) {
7415                 mg->mg_ptr = NULL;
7416                 mg->mg_len = -1;
7417             }
7418         }
7419     }
7420     if (mg && mg->mg_ptr) {
7421         *nxp = mg->mg_len;
7422         return mg->mg_ptr + sizeof(PL_collation_ix);
7423     }
7424     else {
7425         *nxp = 0;
7426         return NULL;
7427     }
7428 }
7429
7430 #endif /* USE_LOCALE_COLLATE */
7431
7432 static char *
7433 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7434 {
7435     SV * const tsv = newSV(0);
7436     ENTER;
7437     SAVEFREESV(tsv);
7438     sv_gets(tsv, fp, 0);
7439     sv_utf8_upgrade_nomg(tsv);
7440     SvCUR_set(sv,append);
7441     sv_catsv(sv,tsv);
7442     LEAVE;
7443     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7444 }
7445
7446 static char *
7447 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7448 {
7449     I32 bytesread;
7450     const U32 recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
7451       /* Grab the size of the record we're getting */
7452     char *const buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
7453 #ifdef VMS
7454     int fd;
7455 #endif
7456
7457     /* Go yank in */
7458 #ifdef VMS
7459     /* VMS wants read instead of fread, because fread doesn't respect */
7460     /* RMS record boundaries. This is not necessarily a good thing to be */
7461     /* doing, but we've got no other real choice - except avoid stdio
7462        as implementation - perhaps write a :vms layer ?
7463     */
7464     fd = PerlIO_fileno(fp);
7465     if (fd != -1) {
7466         bytesread = PerlLIO_read(fd, buffer, recsize);
7467     }
7468     else /* in-memory file from PerlIO::Scalar */
7469 #endif
7470     {
7471         bytesread = PerlIO_read(fp, buffer, recsize);
7472     }
7473
7474     if (bytesread < 0)
7475         bytesread = 0;
7476     SvCUR_set(sv, bytesread + append);
7477     buffer[bytesread] = '\0';
7478     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7479 }
7480
7481 /*
7482 =for apidoc sv_gets
7483
7484 Get a line from the filehandle and store it into the SV, optionally
7485 appending to the currently-stored string.
7486
7487 =cut
7488 */
7489
7490 char *
7491 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
7492 {
7493     dVAR;
7494     const char *rsptr;
7495     STRLEN rslen;
7496     register STDCHAR rslast;
7497     register STDCHAR *bp;
7498     register I32 cnt;
7499     I32 i = 0;
7500     I32 rspara = 0;
7501
7502     PERL_ARGS_ASSERT_SV_GETS;
7503
7504     if (SvTHINKFIRST(sv))
7505         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
7506     /* XXX. If you make this PVIV, then copy on write can copy scalars read
7507        from <>.
7508        However, perlbench says it's slower, because the existing swipe code
7509        is faster than copy on write.
7510        Swings and roundabouts.  */
7511     SvUPGRADE(sv, SVt_PV);
7512
7513     SvSCREAM_off(sv);
7514
7515     if (append) {
7516         if (PerlIO_isutf8(fp)) {
7517             if (!SvUTF8(sv)) {
7518                 sv_utf8_upgrade_nomg(sv);
7519                 sv_pos_u2b(sv,&append,0);
7520             }
7521         } else if (SvUTF8(sv)) {
7522             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
7523         }
7524     }
7525
7526     SvPOK_only(sv);
7527     if (!append) {
7528         SvCUR_set(sv,0);
7529     }
7530     if (PerlIO_isutf8(fp))
7531         SvUTF8_on(sv);
7532
7533     if (IN_PERL_COMPILETIME) {
7534         /* we always read code in line mode */
7535         rsptr = "\n";
7536         rslen = 1;
7537     }
7538     else if (RsSNARF(PL_rs)) {
7539         /* If it is a regular disk file use size from stat() as estimate
7540            of amount we are going to read -- may result in mallocing
7541            more memory than we really need if the layers below reduce
7542            the size we read (e.g. CRLF or a gzip layer).
7543          */
7544         Stat_t st;
7545         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
7546             const Off_t offset = PerlIO_tell(fp);
7547             if (offset != (Off_t) -1 && st.st_size + append > offset) {
7548                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
7549             }
7550         }
7551         rsptr = NULL;
7552         rslen = 0;
7553     }
7554     else if (RsRECORD(PL_rs)) {
7555         return S_sv_gets_read_record(aTHX_ sv, fp, append);
7556     }
7557     else if (RsPARA(PL_rs)) {
7558         rsptr = "\n\n";
7559         rslen = 2;
7560         rspara = 1;
7561     }
7562     else {
7563         /* Get $/ i.e. PL_rs into same encoding as stream wants */
7564         if (PerlIO_isutf8(fp)) {
7565             rsptr = SvPVutf8(PL_rs, rslen);
7566         }
7567         else {
7568             if (SvUTF8(PL_rs)) {
7569                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
7570                     Perl_croak(aTHX_ "Wide character in $/");
7571                 }
7572             }
7573             rsptr = SvPV_const(PL_rs, rslen);
7574         }
7575     }
7576
7577     rslast = rslen ? rsptr[rslen - 1] : '\0';
7578
7579     if (rspara) {               /* have to do this both before and after */
7580         do {                    /* to make sure file boundaries work right */
7581             if (PerlIO_eof(fp))
7582                 return 0;
7583             i = PerlIO_getc(fp);
7584             if (i != '\n') {
7585                 if (i == -1)
7586                     return 0;
7587                 PerlIO_ungetc(fp,i);
7588                 break;
7589             }
7590         } while (i != EOF);
7591     }
7592
7593     /* See if we know enough about I/O mechanism to cheat it ! */
7594
7595     /* This used to be #ifdef test - it is made run-time test for ease
7596        of abstracting out stdio interface. One call should be cheap
7597        enough here - and may even be a macro allowing compile
7598        time optimization.
7599      */
7600
7601     if (PerlIO_fast_gets(fp)) {
7602
7603     /*
7604      * We're going to steal some values from the stdio struct
7605      * and put EVERYTHING in the innermost loop into registers.
7606      */
7607     register STDCHAR *ptr;
7608     STRLEN bpx;
7609     I32 shortbuffered;
7610
7611 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7612     /* An ungetc()d char is handled separately from the regular
7613      * buffer, so we getc() it back out and stuff it in the buffer.
7614      */
7615     i = PerlIO_getc(fp);
7616     if (i == EOF) return 0;
7617     *(--((*fp)->_ptr)) = (unsigned char) i;
7618     (*fp)->_cnt++;
7619 #endif
7620
7621     /* Here is some breathtakingly efficient cheating */
7622
7623     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7624     /* make sure we have the room */
7625     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7626         /* Not room for all of it
7627            if we are looking for a separator and room for some
7628          */
7629         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7630             /* just process what we have room for */
7631             shortbuffered = cnt - SvLEN(sv) + append + 1;
7632             cnt -= shortbuffered;
7633         }
7634         else {
7635             shortbuffered = 0;
7636             /* remember that cnt can be negative */
7637             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7638         }
7639     }
7640     else
7641         shortbuffered = 0;
7642     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
7643     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7644     DEBUG_P(PerlIO_printf(Perl_debug_log,
7645         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7646     DEBUG_P(PerlIO_printf(Perl_debug_log,
7647         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7648                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7649                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7650     for (;;) {
7651       screamer:
7652         if (cnt > 0) {
7653             if (rslen) {
7654                 while (cnt > 0) {                    /* this     |  eat */
7655                     cnt--;
7656                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7657                         goto thats_all_folks;        /* screams  |  sed :-) */
7658                 }
7659             }
7660             else {
7661                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7662                 bp += cnt;                           /* screams  |  dust */
7663                 ptr += cnt;                          /* louder   |  sed :-) */
7664                 cnt = 0;
7665                 assert (!shortbuffered);
7666                 goto cannot_be_shortbuffered;
7667             }
7668         }
7669         
7670         if (shortbuffered) {            /* oh well, must extend */
7671             cnt = shortbuffered;
7672             shortbuffered = 0;
7673             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
7674             SvCUR_set(sv, bpx);
7675             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7676             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
7677             continue;
7678         }
7679
7680     cannot_be_shortbuffered:
7681         DEBUG_P(PerlIO_printf(Perl_debug_log,
7682                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7683                               PTR2UV(ptr),(long)cnt));
7684         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7685
7686         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
7687             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7688             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7689             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7690
7691         /* This used to call 'filbuf' in stdio form, but as that behaves like
7692            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7693            another abstraction.  */
7694         i   = PerlIO_getc(fp);          /* get more characters */
7695
7696         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
7697             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7698             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7699             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7700
7701         cnt = PerlIO_get_cnt(fp);
7702         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7703         DEBUG_P(PerlIO_printf(Perl_debug_log,
7704             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7705
7706         if (i == EOF)                   /* all done for ever? */
7707             goto thats_really_all_folks;
7708
7709         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
7710         SvCUR_set(sv, bpx);
7711         SvGROW(sv, bpx + cnt + 2);
7712         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
7713
7714         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7715
7716         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7717             goto thats_all_folks;
7718     }
7719
7720 thats_all_folks:
7721     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
7722           memNE((char*)bp - rslen, rsptr, rslen))
7723         goto screamer;                          /* go back to the fray */
7724 thats_really_all_folks:
7725     if (shortbuffered)
7726         cnt += shortbuffered;
7727         DEBUG_P(PerlIO_printf(Perl_debug_log,
7728             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7729     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7730     DEBUG_P(PerlIO_printf(Perl_debug_log,
7731         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7732         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7733         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7734     *bp = '\0';
7735     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
7736     DEBUG_P(PerlIO_printf(Perl_debug_log,
7737         "Screamer: done, len=%ld, string=|%.*s|\n",
7738         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
7739     }
7740    else
7741     {
7742        /*The big, slow, and stupid way. */
7743 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7744         STDCHAR *buf = NULL;
7745         Newx(buf, 8192, STDCHAR);
7746         assert(buf);
7747 #else
7748         STDCHAR buf[8192];
7749 #endif
7750
7751 screamer2:
7752         if (rslen) {
7753             register const STDCHAR * const bpe = buf + sizeof(buf);
7754             bp = buf;
7755             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7756                 ; /* keep reading */
7757             cnt = bp - buf;
7758         }
7759         else {
7760             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7761             /* Accommodate broken VAXC compiler, which applies U8 cast to
7762              * both args of ?: operator, causing EOF to change into 255
7763              */
7764             if (cnt > 0)
7765                  i = (U8)buf[cnt - 1];
7766             else
7767                  i = EOF;
7768         }
7769
7770         if (cnt < 0)
7771             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7772         if (append)
7773              sv_catpvn(sv, (char *) buf, cnt);
7774         else
7775              sv_setpvn(sv, (char *) buf, cnt);
7776
7777         if (i != EOF &&                 /* joy */
7778             (!rslen ||
7779              SvCUR(sv) < rslen ||
7780              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7781         {
7782             append = -1;
7783             /*
7784              * If we're reading from a TTY and we get a short read,
7785              * indicating that the user hit his EOF character, we need
7786              * to notice it now, because if we try to read from the TTY
7787              * again, the EOF condition will disappear.
7788              *
7789              * The comparison of cnt to sizeof(buf) is an optimization
7790              * that prevents unnecessary calls to feof().
7791              *
7792              * - jik 9/25/96
7793              */
7794             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
7795                 goto screamer2;
7796         }
7797
7798 #ifdef USE_HEAP_INSTEAD_OF_STACK
7799         Safefree(buf);
7800 #endif
7801     }
7802
7803     if (rspara) {               /* have to do this both before and after */
7804         while (i != EOF) {      /* to make sure file boundaries work right */
7805             i = PerlIO_getc(fp);
7806             if (i != '\n') {
7807                 PerlIO_ungetc(fp,i);
7808                 break;
7809             }
7810         }
7811     }
7812
7813     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7814 }
7815
7816 /*
7817 =for apidoc sv_inc
7818
7819 Auto-increment of the value in the SV, doing string to numeric conversion
7820 if necessary. Handles 'get' magic and operator overloading.
7821
7822 =cut
7823 */
7824
7825 void
7826 Perl_sv_inc(pTHX_ register SV *const sv)
7827 {
7828     if (!sv)
7829         return;
7830     SvGETMAGIC(sv);
7831     sv_inc_nomg(sv);
7832 }
7833
7834 /*
7835 =for apidoc sv_inc_nomg
7836
7837 Auto-increment of the value in the SV, doing string to numeric conversion
7838 if necessary. Handles operator overloading. Skips handling 'get' magic.
7839
7840 =cut
7841 */
7842
7843 void
7844 Perl_sv_inc_nomg(pTHX_ register SV *const sv)
7845 {
7846     dVAR;
7847     register char *d;
7848     int flags;
7849
7850     if (!sv)
7851         return;
7852     if (SvTHINKFIRST(sv)) {
7853         if (SvIsCOW(sv) || isGV_with_GP(sv))
7854             sv_force_normal_flags(sv, 0);
7855         if (SvREADONLY(sv)) {
7856             if (IN_PERL_RUNTIME)
7857                 Perl_croak_no_modify(aTHX);
7858         }
7859         if (SvROK(sv)) {
7860             IV i;
7861             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
7862                 return;
7863             i = PTR2IV(SvRV(sv));
7864             sv_unref(sv);
7865             sv_setiv(sv, i);
7866         }
7867     }
7868     flags = SvFLAGS(sv);
7869     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7870         /* It's (privately or publicly) a float, but not tested as an
7871            integer, so test it to see. */
7872         (void) SvIV(sv);
7873         flags = SvFLAGS(sv);
7874     }
7875     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7876         /* It's publicly an integer, or privately an integer-not-float */
7877 #ifdef PERL_PRESERVE_IVUV
7878       oops_its_int:
7879 #endif
7880         if (SvIsUV(sv)) {
7881             if (SvUVX(sv) == UV_MAX)
7882                 sv_setnv(sv, UV_MAX_P1);
7883             else
7884                 (void)SvIOK_only_UV(sv);
7885                 SvUV_set(sv, SvUVX(sv) + 1);
7886         } else {
7887             if (SvIVX(sv) == IV_MAX)
7888                 sv_setuv(sv, (UV)IV_MAX + 1);
7889             else {
7890                 (void)SvIOK_only(sv);
7891                 SvIV_set(sv, SvIVX(sv) + 1);
7892             }   
7893         }
7894         return;
7895     }
7896     if (flags & SVp_NOK) {
7897         const NV was = SvNVX(sv);
7898         if (NV_OVERFLOWS_INTEGERS_AT &&
7899             was >= NV_OVERFLOWS_INTEGERS_AT) {
7900             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
7901                            "Lost precision when incrementing %" NVff " by 1",
7902                            was);
7903         }
7904         (void)SvNOK_only(sv);
7905         SvNV_set(sv, was + 1.0);
7906         return;
7907     }
7908
7909     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
7910         if ((flags & SVTYPEMASK) < SVt_PVIV)
7911             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
7912         (void)SvIOK_only(sv);
7913         SvIV_set(sv, 1);
7914         return;
7915     }
7916     d = SvPVX(sv);
7917     while (isALPHA(*d)) d++;
7918     while (isDIGIT(*d)) d++;
7919     if (d < SvEND(sv)) {
7920 #ifdef PERL_PRESERVE_IVUV
7921         /* Got to punt this as an integer if needs be, but we don't issue
7922            warnings. Probably ought to make the sv_iv_please() that does
7923            the conversion if possible, and silently.  */
7924         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7925         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7926             /* Need to try really hard to see if it's an integer.
7927                9.22337203685478e+18 is an integer.
7928                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7929                so $a="9.22337203685478e+18"; $a+0; $a++
7930                needs to be the same as $a="9.22337203685478e+18"; $a++
7931                or we go insane. */
7932         
7933             (void) sv_2iv(sv);
7934             if (SvIOK(sv))
7935                 goto oops_its_int;
7936
7937             /* sv_2iv *should* have made this an NV */
7938             if (flags & SVp_NOK) {
7939                 (void)SvNOK_only(sv);
7940                 SvNV_set(sv, SvNVX(sv) + 1.0);
7941                 return;
7942             }
7943             /* I don't think we can get here. Maybe I should assert this
7944                And if we do get here I suspect that sv_setnv will croak. NWC
7945                Fall through. */
7946 #if defined(USE_LONG_DOUBLE)
7947             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",
7948                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7949 #else
7950             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
7951                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
7952 #endif
7953         }
7954 #endif /* PERL_PRESERVE_IVUV */
7955         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
7956         return;
7957     }
7958     d--;
7959     while (d >= SvPVX_const(sv)) {
7960         if (isDIGIT(*d)) {
7961             if (++*d <= '9')
7962                 return;
7963             *(d--) = '0';
7964         }
7965         else {
7966 #ifdef EBCDIC
7967             /* MKS: The original code here died if letters weren't consecutive.
7968              * at least it didn't have to worry about non-C locales.  The
7969              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
7970              * arranged in order (although not consecutively) and that only
7971              * [A-Za-z] are accepted by isALPHA in the C locale.
7972              */
7973             if (*d != 'z' && *d != 'Z') {
7974                 do { ++*d; } while (!isALPHA(*d));
7975                 return;
7976             }
7977             *(d--) -= 'z' - 'a';
7978 #else
7979             ++*d;
7980             if (isALPHA(*d))
7981                 return;
7982             *(d--) -= 'z' - 'a' + 1;
7983 #endif
7984         }
7985     }
7986     /* oh,oh, the number grew */
7987     SvGROW(sv, SvCUR(sv) + 2);
7988     SvCUR_set(sv, SvCUR(sv) + 1);
7989     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
7990         *d = d[-1];
7991     if (isDIGIT(d[1]))
7992         *d = '1';
7993     else
7994         *d = d[1];
7995 }
7996
7997 /*
7998 =for apidoc sv_dec
7999
8000 Auto-decrement of the value in the SV, doing string to numeric conversion
8001 if necessary. Handles 'get' magic and operator overloading.
8002
8003 =cut
8004 */
8005
8006 void
8007 Perl_sv_dec(pTHX_ register SV *const sv)
8008 {
8009     dVAR;
8010     if (!sv)
8011         return;
8012     SvGETMAGIC(sv);
8013     sv_dec_nomg(sv);
8014 }
8015
8016 /*
8017 =for apidoc sv_dec_nomg
8018
8019 Auto-decrement of the value in the SV, doing string to numeric conversion
8020 if necessary. Handles operator overloading. Skips handling 'get' magic.
8021
8022 =cut
8023 */
8024
8025 void
8026 Perl_sv_dec_nomg(pTHX_ register SV *const sv)
8027 {
8028     dVAR;
8029     int flags;
8030
8031     if (!sv)
8032         return;
8033     if (SvTHINKFIRST(sv)) {
8034         if (SvIsCOW(sv) || isGV_with_GP(sv))
8035             sv_force_normal_flags(sv, 0);
8036         if (SvREADONLY(sv)) {
8037             if (IN_PERL_RUNTIME)
8038                 Perl_croak_no_modify(aTHX);
8039         }
8040         if (SvROK(sv)) {
8041             IV i;
8042             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
8043                 return;
8044             i = PTR2IV(SvRV(sv));
8045             sv_unref(sv);
8046             sv_setiv(sv, i);
8047         }
8048     }
8049     /* Unlike sv_inc we don't have to worry about string-never-numbers
8050        and keeping them magic. But we mustn't warn on punting */
8051     flags = SvFLAGS(sv);
8052     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8053         /* It's publicly an integer, or privately an integer-not-float */
8054 #ifdef PERL_PRESERVE_IVUV
8055       oops_its_int:
8056 #endif
8057         if (SvIsUV(sv)) {
8058             if (SvUVX(sv) == 0) {
8059                 (void)SvIOK_only(sv);
8060                 SvIV_set(sv, -1);
8061             }
8062             else {
8063                 (void)SvIOK_only_UV(sv);
8064                 SvUV_set(sv, SvUVX(sv) - 1);
8065             }   
8066         } else {
8067             if (SvIVX(sv) == IV_MIN) {
8068                 sv_setnv(sv, (NV)IV_MIN);
8069                 goto oops_its_num;
8070             }
8071             else {
8072                 (void)SvIOK_only(sv);
8073                 SvIV_set(sv, SvIVX(sv) - 1);
8074             }   
8075         }
8076         return;
8077     }
8078     if (flags & SVp_NOK) {
8079     oops_its_num:
8080         {
8081             const NV was = SvNVX(sv);
8082             if (NV_OVERFLOWS_INTEGERS_AT &&
8083                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
8084                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8085                                "Lost precision when decrementing %" NVff " by 1",
8086                                was);
8087             }
8088             (void)SvNOK_only(sv);
8089             SvNV_set(sv, was - 1.0);
8090             return;
8091         }
8092     }
8093     if (!(flags & SVp_POK)) {
8094         if ((flags & SVTYPEMASK) < SVt_PVIV)
8095             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
8096         SvIV_set(sv, -1);
8097         (void)SvIOK_only(sv);
8098         return;
8099     }
8100 #ifdef PERL_PRESERVE_IVUV
8101     {
8102         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8103         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8104             /* Need to try really hard to see if it's an integer.
8105                9.22337203685478e+18 is an integer.
8106                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8107                so $a="9.22337203685478e+18"; $a+0; $a--
8108                needs to be the same as $a="9.22337203685478e+18"; $a--
8109                or we go insane. */
8110         
8111             (void) sv_2iv(sv);
8112             if (SvIOK(sv))
8113                 goto oops_its_int;
8114
8115             /* sv_2iv *should* have made this an NV */
8116             if (flags & SVp_NOK) {
8117                 (void)SvNOK_only(sv);
8118                 SvNV_set(sv, SvNVX(sv) - 1.0);
8119                 return;
8120             }
8121             /* I don't think we can get here. Maybe I should assert this
8122                And if we do get here I suspect that sv_setnv will croak. NWC
8123                Fall through. */
8124 #if defined(USE_LONG_DOUBLE)
8125             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",
8126                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8127 #else
8128             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8129                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8130 #endif
8131         }
8132     }
8133 #endif /* PERL_PRESERVE_IVUV */
8134     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
8135 }
8136
8137 /* this define is used to eliminate a chunk of duplicated but shared logic
8138  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
8139  * used anywhere but here - yves
8140  */
8141 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
8142     STMT_START {      \
8143         EXTEND_MORTAL(1); \
8144         PL_tmps_stack[++PL_tmps_ix] = (AnSv); \
8145     } STMT_END
8146
8147 /*
8148 =for apidoc sv_mortalcopy
8149
8150 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
8151 The new SV is marked as mortal. It will be destroyed "soon", either by an
8152 explicit call to FREETMPS, or by an implicit call at places such as
8153 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
8154
8155 =cut
8156 */
8157
8158 /* Make a string that will exist for the duration of the expression
8159  * evaluation.  Actually, it may have to last longer than that, but
8160  * hopefully we won't free it until it has been assigned to a
8161  * permanent location. */
8162
8163 SV *
8164 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
8165 {
8166     dVAR;
8167     register SV *sv;
8168
8169     new_SV(sv);
8170     sv_setsv(sv,oldstr);
8171     PUSH_EXTEND_MORTAL__SV_C(sv);
8172     SvTEMP_on(sv);
8173     return sv;
8174 }
8175
8176 /*
8177 =for apidoc sv_newmortal
8178
8179 Creates a new null SV which is mortal.  The reference count of the SV is
8180 set to 1. It will be destroyed "soon", either by an explicit call to
8181 FREETMPS, or by an implicit call at places such as statement boundaries.
8182 See also C<sv_mortalcopy> and C<sv_2mortal>.
8183
8184 =cut
8185 */
8186
8187 SV *
8188 Perl_sv_newmortal(pTHX)
8189 {
8190     dVAR;
8191     register SV *sv;
8192
8193     new_SV(sv);
8194     SvFLAGS(sv) = SVs_TEMP;
8195     PUSH_EXTEND_MORTAL__SV_C(sv);
8196     return sv;
8197 }
8198
8199
8200 /*
8201 =for apidoc newSVpvn_flags
8202
8203 Creates a new SV and copies a string into it.  The reference count for the
8204 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8205 string.  You are responsible for ensuring that the source string is at least
8206 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8207 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
8208 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
8209 returning. If C<SVf_UTF8> is set, C<s> is considered to be in UTF-8 and the
8210 C<SVf_UTF8> flag will be set on the new SV.
8211 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
8212
8213     #define newSVpvn_utf8(s, len, u)                    \
8214         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
8215
8216 =cut
8217 */
8218
8219 SV *
8220 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
8221 {
8222     dVAR;
8223     register SV *sv;
8224
8225     /* All the flags we don't support must be zero.
8226        And we're new code so I'm going to assert this from the start.  */
8227     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
8228     new_SV(sv);
8229     sv_setpvn(sv,s,len);
8230
8231     /* This code used to a sv_2mortal(), however we now unroll the call to sv_2mortal()
8232      * and do what it does ourselves here.
8233      * Since we have asserted that flags can only have the SVf_UTF8 and/or SVs_TEMP flags
8234      * set above we can use it to enable the sv flags directly (bypassing SvTEMP_on), which
8235      * in turn means we dont need to mask out the SVf_UTF8 flag below, which means that we
8236      * eliminate quite a few steps than it looks - Yves (explaining patch by gfx)
8237      */
8238
8239     SvFLAGS(sv) |= flags;
8240
8241     if(flags & SVs_TEMP){
8242         PUSH_EXTEND_MORTAL__SV_C(sv);
8243     }
8244
8245     return sv;
8246 }
8247
8248 /*
8249 =for apidoc sv_2mortal
8250
8251 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
8252 by an explicit call to FREETMPS, or by an implicit call at places such as
8253 statement boundaries.  SvTEMP() is turned on which means that the SV's
8254 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
8255 and C<sv_mortalcopy>.
8256
8257 =cut
8258 */
8259
8260 SV *
8261 Perl_sv_2mortal(pTHX_ register SV *const sv)
8262 {
8263     dVAR;
8264     if (!sv)
8265         return NULL;
8266     if (SvREADONLY(sv) && SvIMMORTAL(sv))
8267         return sv;
8268     PUSH_EXTEND_MORTAL__SV_C(sv);
8269     SvTEMP_on(sv);
8270     return sv;
8271 }
8272
8273 /*
8274 =for apidoc newSVpv
8275
8276 Creates a new SV and copies a string into it.  The reference count for the
8277 SV is set to 1.  If C<len> is zero, Perl will compute the length using
8278 strlen().  For efficiency, consider using C<newSVpvn> instead.
8279
8280 =cut
8281 */
8282
8283 SV *
8284 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
8285 {
8286     dVAR;
8287     register SV *sv;
8288
8289     new_SV(sv);
8290     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
8291     return sv;
8292 }
8293
8294 /*
8295 =for apidoc newSVpvn
8296
8297 Creates a new SV and copies a string into it.  The reference count for the
8298 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8299 string.  You are responsible for ensuring that the source string is at least
8300 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8301
8302 =cut
8303 */
8304
8305 SV *
8306 Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len)
8307 {
8308     dVAR;
8309     register SV *sv;
8310
8311     new_SV(sv);
8312     sv_setpvn(sv,s,len);
8313     return sv;
8314 }
8315
8316 /*
8317 =for apidoc newSVhek
8318
8319 Creates a new SV from the hash key structure.  It will generate scalars that
8320 point to the shared string table where possible. Returns a new (undefined)
8321 SV if the hek is NULL.
8322
8323 =cut
8324 */
8325
8326 SV *
8327 Perl_newSVhek(pTHX_ const HEK *const hek)
8328 {
8329     dVAR;
8330     if (!hek) {
8331         SV *sv;
8332
8333         new_SV(sv);
8334         return sv;
8335     }
8336
8337     if (HEK_LEN(hek) == HEf_SVKEY) {
8338         return newSVsv(*(SV**)HEK_KEY(hek));
8339     } else {
8340         const int flags = HEK_FLAGS(hek);
8341         if (flags & HVhek_WASUTF8) {
8342             /* Trouble :-)
8343                Andreas would like keys he put in as utf8 to come back as utf8
8344             */
8345             STRLEN utf8_len = HEK_LEN(hek);
8346             SV * const sv = newSV_type(SVt_PV);
8347             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
8348             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
8349             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
8350             SvUTF8_on (sv);
8351             return sv;
8352         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
8353             /* We don't have a pointer to the hv, so we have to replicate the
8354                flag into every HEK. This hv is using custom a hasing
8355                algorithm. Hence we can't return a shared string scalar, as
8356                that would contain the (wrong) hash value, and might get passed
8357                into an hv routine with a regular hash.
8358                Similarly, a hash that isn't using shared hash keys has to have
8359                the flag in every key so that we know not to try to call
8360                share_hek_hek on it.  */
8361
8362             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
8363             if (HEK_UTF8(hek))
8364                 SvUTF8_on (sv);
8365             return sv;
8366         }
8367         /* This will be overwhelminly the most common case.  */
8368         {
8369             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
8370                more efficient than sharepvn().  */
8371             SV *sv;
8372
8373             new_SV(sv);
8374             sv_upgrade(sv, SVt_PV);
8375             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
8376             SvCUR_set(sv, HEK_LEN(hek));
8377             SvLEN_set(sv, 0);
8378             SvREADONLY_on(sv);
8379             SvFAKE_on(sv);
8380             SvPOK_on(sv);
8381             if (HEK_UTF8(hek))
8382                 SvUTF8_on(sv);
8383             return sv;
8384         }
8385     }
8386 }
8387
8388 /*
8389 =for apidoc newSVpvn_share
8390
8391 Creates a new SV with its SvPVX_const pointing to a shared string in the string
8392 table. If the string does not already exist in the table, it is created
8393 first.  Turns on READONLY and FAKE. If the C<hash> parameter is non-zero, that
8394 value is used; otherwise the hash is computed. The string's hash can be later
8395 be retrieved from the SV with the C<SvSHARED_HASH()> macro. The idea here is
8396 that as the string table is used for shared hash keys these strings will have
8397 SvPVX_const == HeKEY and hash lookup will avoid string compare.
8398
8399 =cut
8400 */
8401
8402 SV *
8403 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
8404 {
8405     dVAR;
8406     register SV *sv;
8407     bool is_utf8 = FALSE;
8408     const char *const orig_src = src;
8409
8410     if (len < 0) {
8411         STRLEN tmplen = -len;
8412         is_utf8 = TRUE;
8413         /* See the note in hv.c:hv_fetch() --jhi */
8414         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
8415         len = tmplen;
8416     }
8417     if (!hash)
8418         PERL_HASH(hash, src, len);
8419     new_SV(sv);
8420     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
8421        changes here, update it there too.  */
8422     sv_upgrade(sv, SVt_PV);
8423     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
8424     SvCUR_set(sv, len);
8425     SvLEN_set(sv, 0);
8426     SvREADONLY_on(sv);
8427     SvFAKE_on(sv);
8428     SvPOK_on(sv);
8429     if (is_utf8)
8430         SvUTF8_on(sv);
8431     if (src != orig_src)
8432         Safefree(src);
8433     return sv;
8434 }
8435
8436 /*
8437 =for apidoc newSVpv_share
8438
8439 Like C<newSVpvn_share>, but takes a nul-terminated string instead of a
8440 string/length pair.
8441
8442 =cut
8443 */
8444
8445 SV *
8446 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
8447 {
8448     return newSVpvn_share(src, strlen(src), hash);
8449 }
8450
8451 #if defined(PERL_IMPLICIT_CONTEXT)
8452
8453 /* pTHX_ magic can't cope with varargs, so this is a no-context
8454  * version of the main function, (which may itself be aliased to us).
8455  * Don't access this version directly.
8456  */
8457
8458 SV *
8459 Perl_newSVpvf_nocontext(const char *const pat, ...)
8460 {
8461     dTHX;
8462     register SV *sv;
8463     va_list args;
8464
8465     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
8466
8467     va_start(args, pat);
8468     sv = vnewSVpvf(pat, &args);
8469     va_end(args);
8470     return sv;
8471 }
8472 #endif
8473
8474 /*
8475 =for apidoc newSVpvf
8476
8477 Creates a new SV and initializes it with the string formatted like
8478 C<sprintf>.
8479
8480 =cut
8481 */
8482
8483 SV *
8484 Perl_newSVpvf(pTHX_ const char *const pat, ...)
8485 {
8486     register SV *sv;
8487     va_list args;
8488
8489     PERL_ARGS_ASSERT_NEWSVPVF;
8490
8491     va_start(args, pat);
8492     sv = vnewSVpvf(pat, &args);
8493     va_end(args);
8494     return sv;
8495 }
8496
8497 /* backend for newSVpvf() and newSVpvf_nocontext() */
8498
8499 SV *
8500 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
8501 {
8502     dVAR;
8503     register SV *sv;
8504
8505     PERL_ARGS_ASSERT_VNEWSVPVF;
8506
8507     new_SV(sv);
8508     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8509     return sv;
8510 }
8511
8512 /*
8513 =for apidoc newSVnv
8514
8515 Creates a new SV and copies a floating point value into it.
8516 The reference count for the SV is set to 1.
8517
8518 =cut
8519 */
8520
8521 SV *
8522 Perl_newSVnv(pTHX_ const NV n)
8523 {
8524     dVAR;
8525     register SV *sv;
8526
8527     new_SV(sv);
8528     sv_setnv(sv,n);
8529     return sv;
8530 }
8531
8532 /*
8533 =for apidoc newSViv
8534
8535 Creates a new SV and copies an integer into it.  The reference count for the
8536 SV is set to 1.
8537
8538 =cut
8539 */
8540
8541 SV *
8542 Perl_newSViv(pTHX_ const IV i)
8543 {
8544     dVAR;
8545     register SV *sv;
8546
8547     new_SV(sv);
8548     sv_setiv(sv,i);
8549     return sv;
8550 }
8551
8552 /*
8553 =for apidoc newSVuv
8554
8555 Creates a new SV and copies an unsigned integer into it.
8556 The reference count for the SV is set to 1.
8557
8558 =cut
8559 */
8560
8561 SV *
8562 Perl_newSVuv(pTHX_ const UV u)
8563 {
8564     dVAR;
8565     register SV *sv;
8566
8567     new_SV(sv);
8568     sv_setuv(sv,u);
8569     return sv;
8570 }
8571
8572 /*
8573 =for apidoc newSV_type
8574
8575 Creates a new SV, of the type specified.  The reference count for the new SV
8576 is set to 1.
8577
8578 =cut
8579 */
8580
8581 SV *
8582 Perl_newSV_type(pTHX_ const svtype type)
8583 {
8584     register SV *sv;
8585
8586     new_SV(sv);
8587     sv_upgrade(sv, type);
8588     return sv;
8589 }
8590
8591 /*
8592 =for apidoc newRV_noinc
8593
8594 Creates an RV wrapper for an SV.  The reference count for the original
8595 SV is B<not> incremented.
8596
8597 =cut
8598 */
8599
8600 SV *
8601 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
8602 {
8603     dVAR;
8604     register SV *sv = newSV_type(SVt_IV);
8605
8606     PERL_ARGS_ASSERT_NEWRV_NOINC;
8607
8608     SvTEMP_off(tmpRef);
8609     SvRV_set(sv, tmpRef);
8610     SvROK_on(sv);
8611     return sv;
8612 }
8613
8614 /* newRV_inc is the official function name to use now.
8615  * newRV_inc is in fact #defined to newRV in sv.h
8616  */
8617
8618 SV *
8619 Perl_newRV(pTHX_ SV *const sv)
8620 {
8621     dVAR;
8622
8623     PERL_ARGS_ASSERT_NEWRV;
8624
8625     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
8626 }
8627
8628 /*
8629 =for apidoc newSVsv
8630
8631 Creates a new SV which is an exact duplicate of the original SV.
8632 (Uses C<sv_setsv>).
8633
8634 =cut
8635 */
8636
8637 SV *
8638 Perl_newSVsv(pTHX_ register SV *const old)
8639 {
8640     dVAR;
8641     register SV *sv;
8642
8643     if (!old)
8644         return NULL;
8645     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
8646         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
8647         return NULL;
8648     }
8649     new_SV(sv);
8650     /* SV_GMAGIC is the default for sv_setv()
8651        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
8652        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
8653     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
8654     return sv;
8655 }
8656
8657 /*
8658 =for apidoc sv_reset
8659
8660 Underlying implementation for the C<reset> Perl function.
8661 Note that the perl-level function is vaguely deprecated.
8662
8663 =cut
8664 */
8665
8666 void
8667 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
8668 {
8669     dVAR;
8670     char todo[PERL_UCHAR_MAX+1];
8671
8672     PERL_ARGS_ASSERT_SV_RESET;
8673
8674     if (!stash)
8675         return;
8676
8677     if (!*s) {          /* reset ?? searches */
8678         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
8679         if (mg) {
8680             const U32 count = mg->mg_len / sizeof(PMOP**);
8681             PMOP **pmp = (PMOP**) mg->mg_ptr;
8682             PMOP *const *const end = pmp + count;
8683
8684             while (pmp < end) {
8685 #ifdef USE_ITHREADS
8686                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
8687 #else
8688                 (*pmp)->op_pmflags &= ~PMf_USED;
8689 #endif
8690                 ++pmp;
8691             }
8692         }
8693         return;
8694     }
8695
8696     /* reset variables */
8697
8698     if (!HvARRAY(stash))
8699         return;
8700
8701     Zero(todo, 256, char);
8702     while (*s) {
8703         I32 max;
8704         I32 i = (unsigned char)*s;
8705         if (s[1] == '-') {
8706             s += 2;
8707         }
8708         max = (unsigned char)*s++;
8709         for ( ; i <= max; i++) {
8710             todo[i] = 1;
8711         }
8712         for (i = 0; i <= (I32) HvMAX(stash); i++) {
8713             HE *entry;
8714             for (entry = HvARRAY(stash)[i];
8715                  entry;
8716                  entry = HeNEXT(entry))
8717             {
8718                 register GV *gv;
8719                 register SV *sv;
8720
8721                 if (!todo[(U8)*HeKEY(entry)])
8722                     continue;
8723                 gv = MUTABLE_GV(HeVAL(entry));
8724                 sv = GvSV(gv);
8725                 if (sv) {
8726                     if (SvTHINKFIRST(sv)) {
8727                         if (!SvREADONLY(sv) && SvROK(sv))
8728                             sv_unref(sv);
8729                         /* XXX Is this continue a bug? Why should THINKFIRST
8730                            exempt us from resetting arrays and hashes?  */
8731                         continue;
8732                     }
8733                     SvOK_off(sv);
8734                     if (SvTYPE(sv) >= SVt_PV) {
8735                         SvCUR_set(sv, 0);
8736                         if (SvPVX_const(sv) != NULL)
8737                             *SvPVX(sv) = '\0';
8738                         SvTAINT(sv);
8739                     }
8740                 }
8741                 if (GvAV(gv)) {
8742                     av_clear(GvAV(gv));
8743                 }
8744                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
8745 #if defined(VMS)
8746                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
8747 #else /* ! VMS */
8748                     hv_clear(GvHV(gv));
8749 #  if defined(USE_ENVIRON_ARRAY)
8750                     if (gv == PL_envgv)
8751                         my_clearenv();
8752 #  endif /* USE_ENVIRON_ARRAY */
8753 #endif /* VMS */
8754                 }
8755             }
8756         }
8757     }
8758 }
8759
8760 /*
8761 =for apidoc sv_2io
8762
8763 Using various gambits, try to get an IO from an SV: the IO slot if its a
8764 GV; or the recursive result if we're an RV; or the IO slot of the symbol
8765 named after the PV if we're a string.
8766
8767 =cut
8768 */
8769
8770 IO*
8771 Perl_sv_2io(pTHX_ SV *const sv)
8772 {
8773     IO* io;
8774     GV* gv;
8775
8776     PERL_ARGS_ASSERT_SV_2IO;
8777
8778     switch (SvTYPE(sv)) {
8779     case SVt_PVIO:
8780         io = MUTABLE_IO(sv);
8781         break;
8782     case SVt_PVGV:
8783     case SVt_PVLV:
8784         if (isGV_with_GP(sv)) {
8785             gv = MUTABLE_GV(sv);
8786             io = GvIO(gv);
8787             if (!io)
8788                 Perl_croak(aTHX_ "Bad filehandle: %s", GvNAME(gv));
8789             break;
8790         }
8791         /* FALL THROUGH */
8792     default:
8793         if (!SvOK(sv))
8794             Perl_croak(aTHX_ PL_no_usym, "filehandle");
8795         if (SvROK(sv))
8796             return sv_2io(SvRV(sv));
8797         gv = gv_fetchsv(sv, 0, SVt_PVIO);
8798         if (gv)
8799             io = GvIO(gv);
8800         else
8801             io = 0;
8802         if (!io)
8803             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(sv));
8804         break;
8805     }
8806     return io;
8807 }
8808
8809 /*
8810 =for apidoc sv_2cv
8811
8812 Using various gambits, try to get a CV from an SV; in addition, try if
8813 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
8814 The flags in C<lref> are passed to gv_fetchsv.
8815
8816 =cut
8817 */
8818
8819 CV *
8820 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
8821 {
8822     dVAR;
8823     GV *gv = NULL;
8824     CV *cv = NULL;
8825
8826     PERL_ARGS_ASSERT_SV_2CV;
8827
8828     if (!sv) {
8829         *st = NULL;
8830         *gvp = NULL;
8831         return NULL;
8832     }
8833     switch (SvTYPE(sv)) {
8834     case SVt_PVCV:
8835         *st = CvSTASH(sv);
8836         *gvp = NULL;
8837         return MUTABLE_CV(sv);
8838     case SVt_PVHV:
8839     case SVt_PVAV:
8840         *st = NULL;
8841         *gvp = NULL;
8842         return NULL;
8843     default:
8844         SvGETMAGIC(sv);
8845         if (SvROK(sv)) {
8846             if (SvAMAGIC(sv))
8847                 sv = amagic_deref_call(sv, to_cv_amg);
8848             /* At this point I'd like to do SPAGAIN, but really I need to
8849                force it upon my callers. Hmmm. This is a mess... */
8850
8851             sv = SvRV(sv);
8852             if (SvTYPE(sv) == SVt_PVCV) {
8853                 cv = MUTABLE_CV(sv);
8854                 *gvp = NULL;
8855                 *st = CvSTASH(cv);
8856                 return cv;
8857             }
8858             else if(isGV_with_GP(sv))
8859                 gv = MUTABLE_GV(sv);
8860             else
8861                 Perl_croak(aTHX_ "Not a subroutine reference");
8862         }
8863         else if (isGV_with_GP(sv)) {
8864             gv = MUTABLE_GV(sv);
8865         }
8866         else {
8867             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
8868         }
8869         *gvp = gv;
8870         if (!gv) {
8871             *st = NULL;
8872             return NULL;
8873         }
8874         /* Some flags to gv_fetchsv mean don't really create the GV  */
8875         if (!isGV_with_GP(gv)) {
8876             *st = NULL;
8877             return NULL;
8878         }
8879         *st = GvESTASH(gv);
8880         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
8881             SV *tmpsv;
8882             ENTER;
8883             tmpsv = newSV(0);
8884             gv_efullname3(tmpsv, gv, NULL);
8885             /* XXX this is probably not what they think they're getting.
8886              * It has the same effect as "sub name;", i.e. just a forward
8887              * declaration! */
8888             newSUB(start_subparse(FALSE, 0),
8889                    newSVOP(OP_CONST, 0, tmpsv),
8890                    NULL, NULL);
8891             LEAVE;
8892             if (!GvCVu(gv))
8893                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
8894                            SVfARG(SvOK(sv) ? sv : &PL_sv_no));
8895         }
8896         return GvCVu(gv);
8897     }
8898 }
8899
8900 /*
8901 =for apidoc sv_true
8902
8903 Returns true if the SV has a true value by Perl's rules.
8904 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
8905 instead use an in-line version.
8906
8907 =cut
8908 */
8909
8910 I32
8911 Perl_sv_true(pTHX_ register SV *const sv)
8912 {
8913     if (!sv)
8914         return 0;
8915     if (SvPOK(sv)) {
8916         register const XPV* const tXpv = (XPV*)SvANY(sv);
8917         if (tXpv &&
8918                 (tXpv->xpv_cur > 1 ||
8919                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
8920             return 1;
8921         else
8922             return 0;
8923     }
8924     else {
8925         if (SvIOK(sv))
8926             return SvIVX(sv) != 0;
8927         else {
8928             if (SvNOK(sv))
8929                 return SvNVX(sv) != 0.0;
8930             else
8931                 return sv_2bool(sv);
8932         }
8933     }
8934 }
8935
8936 /*
8937 =for apidoc sv_pvn_force
8938
8939 Get a sensible string out of the SV somehow.
8940 A private implementation of the C<SvPV_force> macro for compilers which
8941 can't cope with complex macro expressions. Always use the macro instead.
8942
8943 =for apidoc sv_pvn_force_flags
8944
8945 Get a sensible string out of the SV somehow.
8946 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
8947 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
8948 implemented in terms of this function.
8949 You normally want to use the various wrapper macros instead: see
8950 C<SvPV_force> and C<SvPV_force_nomg>
8951
8952 =cut
8953 */
8954
8955 char *
8956 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
8957 {
8958     dVAR;
8959
8960     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
8961
8962     if (SvTHINKFIRST(sv) && !SvROK(sv))
8963         sv_force_normal_flags(sv, 0);
8964
8965     if (SvPOK(sv)) {
8966         if (lp)
8967             *lp = SvCUR(sv);
8968     }
8969     else {
8970         char *s;
8971         STRLEN len;
8972  
8973         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
8974             const char * const ref = sv_reftype(sv,0);
8975             if (PL_op)
8976                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
8977                            ref, OP_DESC(PL_op));
8978             else
8979                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
8980         }
8981         if ((SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
8982             || isGV_with_GP(sv))
8983             /* diag_listed_as: Can't coerce %s to %s in %s */
8984             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
8985                 OP_DESC(PL_op));
8986         s = sv_2pv_flags(sv, &len, flags);
8987         if (lp)
8988             *lp = len;
8989
8990         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
8991             if (SvROK(sv))
8992                 sv_unref(sv);
8993             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
8994             SvGROW(sv, len + 1);
8995             Move(s,SvPVX(sv),len,char);
8996             SvCUR_set(sv, len);
8997             SvPVX(sv)[len] = '\0';
8998         }
8999         if (!SvPOK(sv)) {
9000             SvPOK_on(sv);               /* validate pointer */
9001             SvTAINT(sv);
9002             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9003                                   PTR2UV(sv),SvPVX_const(sv)));
9004         }
9005     }
9006     return SvPVX_mutable(sv);
9007 }
9008
9009 /*
9010 =for apidoc sv_pvbyten_force
9011
9012 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
9013
9014 =cut
9015 */
9016
9017 char *
9018 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9019 {
9020     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9021
9022     sv_pvn_force(sv,lp);
9023     sv_utf8_downgrade(sv,0);
9024     *lp = SvCUR(sv);
9025     return SvPVX(sv);
9026 }
9027
9028 /*
9029 =for apidoc sv_pvutf8n_force
9030
9031 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
9032
9033 =cut
9034 */
9035
9036 char *
9037 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9038 {
9039     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9040
9041     sv_pvn_force(sv,lp);
9042     sv_utf8_upgrade(sv);
9043     *lp = SvCUR(sv);
9044     return SvPVX(sv);
9045 }
9046
9047 /*
9048 =for apidoc sv_reftype
9049
9050 Returns a string describing what the SV is a reference to.
9051
9052 =cut
9053 */
9054
9055 const char *
9056 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9057 {
9058     PERL_ARGS_ASSERT_SV_REFTYPE;
9059
9060     /* The fact that I don't need to downcast to char * everywhere, only in ?:
9061        inside return suggests a const propagation bug in g++.  */
9062     if (ob && SvOBJECT(sv)) {
9063         char * const name = HvNAME_get(SvSTASH(sv));
9064         return name ? name : (char *) "__ANON__";
9065     }
9066     else {
9067         switch (SvTYPE(sv)) {
9068         case SVt_NULL:
9069         case SVt_IV:
9070         case SVt_NV:
9071         case SVt_PV:
9072         case SVt_PVIV:
9073         case SVt_PVNV:
9074         case SVt_PVMG:
9075                                 if (SvVOK(sv))
9076                                     return "VSTRING";
9077                                 if (SvROK(sv))
9078                                     return "REF";
9079                                 else
9080                                     return "SCALAR";
9081
9082         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9083                                 /* tied lvalues should appear to be
9084                                  * scalars for backwards compatibility */
9085                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
9086                                     ? "SCALAR" : "LVALUE");
9087         case SVt_PVAV:          return "ARRAY";
9088         case SVt_PVHV:          return "HASH";
9089         case SVt_PVCV:          return "CODE";
9090         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9091                                     ? "GLOB" : "SCALAR");
9092         case SVt_PVFM:          return "FORMAT";
9093         case SVt_PVIO:          return "IO";
9094         case SVt_BIND:          return "BIND";
9095         case SVt_REGEXP:        return "REGEXP";
9096         default:                return "UNKNOWN";
9097         }
9098     }
9099 }
9100
9101 /*
9102 =for apidoc sv_isobject
9103
9104 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9105 object.  If the SV is not an RV, or if the object is not blessed, then this
9106 will return false.
9107
9108 =cut
9109 */
9110
9111 int
9112 Perl_sv_isobject(pTHX_ SV *sv)
9113 {
9114     if (!sv)
9115         return 0;
9116     SvGETMAGIC(sv);
9117     if (!SvROK(sv))
9118         return 0;
9119     sv = SvRV(sv);
9120     if (!SvOBJECT(sv))
9121         return 0;
9122     return 1;
9123 }
9124
9125 /*
9126 =for apidoc sv_isa
9127
9128 Returns a boolean indicating whether the SV is blessed into the specified
9129 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9130 an inheritance relationship.
9131
9132 =cut
9133 */
9134
9135 int
9136 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
9137 {
9138     const char *hvname;
9139
9140     PERL_ARGS_ASSERT_SV_ISA;
9141
9142     if (!sv)
9143         return 0;
9144     SvGETMAGIC(sv);
9145     if (!SvROK(sv))
9146         return 0;
9147     sv = SvRV(sv);
9148     if (!SvOBJECT(sv))
9149         return 0;
9150     hvname = HvNAME_get(SvSTASH(sv));
9151     if (!hvname)
9152         return 0;
9153
9154     return strEQ(hvname, name);
9155 }
9156
9157 /*
9158 =for apidoc newSVrv
9159
9160 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
9161 it will be upgraded to one.  If C<classname> is non-null then the new SV will
9162 be blessed in the specified package.  The new SV is returned and its
9163 reference count is 1.
9164
9165 =cut
9166 */
9167
9168 SV*
9169 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
9170 {
9171     dVAR;
9172     SV *sv;
9173
9174     PERL_ARGS_ASSERT_NEWSVRV;
9175
9176     new_SV(sv);
9177
9178     SV_CHECK_THINKFIRST_COW_DROP(rv);
9179     (void)SvAMAGIC_off(rv);
9180
9181     if (SvTYPE(rv) >= SVt_PVMG) {
9182         const U32 refcnt = SvREFCNT(rv);
9183         SvREFCNT(rv) = 0;
9184         sv_clear(rv);
9185         SvFLAGS(rv) = 0;
9186         SvREFCNT(rv) = refcnt;
9187
9188         sv_upgrade(rv, SVt_IV);
9189     } else if (SvROK(rv)) {
9190         SvREFCNT_dec(SvRV(rv));
9191     } else {
9192         prepare_SV_for_RV(rv);
9193     }
9194
9195     SvOK_off(rv);
9196     SvRV_set(rv, sv);
9197     SvROK_on(rv);
9198
9199     if (classname) {
9200         HV* const stash = gv_stashpv(classname, GV_ADD);
9201         (void)sv_bless(rv, stash);
9202     }
9203     return sv;
9204 }
9205
9206 /*
9207 =for apidoc sv_setref_pv
9208
9209 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
9210 argument will be upgraded to an RV.  That RV will be modified to point to
9211 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
9212 into the SV.  The C<classname> argument indicates the package for the
9213 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9214 will have a reference count of 1, and the RV will be returned.
9215
9216 Do not use with other Perl types such as HV, AV, SV, CV, because those
9217 objects will become corrupted by the pointer copy process.
9218
9219 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
9220
9221 =cut
9222 */
9223
9224 SV*
9225 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
9226 {
9227     dVAR;
9228
9229     PERL_ARGS_ASSERT_SV_SETREF_PV;
9230
9231     if (!pv) {
9232         sv_setsv(rv, &PL_sv_undef);
9233         SvSETMAGIC(rv);
9234     }
9235     else
9236         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
9237     return rv;
9238 }
9239
9240 /*
9241 =for apidoc sv_setref_iv
9242
9243 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
9244 argument will be upgraded to an RV.  That RV will be modified to point to
9245 the new SV.  The C<classname> argument indicates the package for the
9246 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9247 will have a reference count of 1, and the RV will be returned.
9248
9249 =cut
9250 */
9251
9252 SV*
9253 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
9254 {
9255     PERL_ARGS_ASSERT_SV_SETREF_IV;
9256
9257     sv_setiv(newSVrv(rv,classname), iv);
9258     return rv;
9259 }
9260
9261 /*
9262 =for apidoc sv_setref_uv
9263
9264 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
9265 argument will be upgraded to an RV.  That RV will be modified to point to
9266 the new SV.  The C<classname> argument indicates the package for the
9267 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9268 will have a reference count of 1, and the RV will be returned.
9269
9270 =cut
9271 */
9272
9273 SV*
9274 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
9275 {
9276     PERL_ARGS_ASSERT_SV_SETREF_UV;
9277
9278     sv_setuv(newSVrv(rv,classname), uv);
9279     return rv;
9280 }
9281
9282 /*
9283 =for apidoc sv_setref_nv
9284
9285 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
9286 argument will be upgraded to an RV.  That RV will be modified to point to
9287 the new SV.  The C<classname> argument indicates the package for the
9288 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9289 will have a reference count of 1, and the RV will be returned.
9290
9291 =cut
9292 */
9293
9294 SV*
9295 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
9296 {
9297     PERL_ARGS_ASSERT_SV_SETREF_NV;
9298
9299     sv_setnv(newSVrv(rv,classname), nv);
9300     return rv;
9301 }
9302
9303 /*
9304 =for apidoc sv_setref_pvn
9305
9306 Copies a string into a new SV, optionally blessing the SV.  The length of the
9307 string must be specified with C<n>.  The C<rv> argument will be upgraded to
9308 an RV.  That RV will be modified to point to the new SV.  The C<classname>
9309 argument indicates the package for the blessing.  Set C<classname> to
9310 C<NULL> to avoid the blessing.  The new SV will have a reference count
9311 of 1, and the RV will be returned.
9312
9313 Note that C<sv_setref_pv> copies the pointer while this copies the string.
9314
9315 =cut
9316 */
9317
9318 SV*
9319 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
9320                    const char *const pv, const STRLEN n)
9321 {
9322     PERL_ARGS_ASSERT_SV_SETREF_PVN;
9323
9324     sv_setpvn(newSVrv(rv,classname), pv, n);
9325     return rv;
9326 }
9327
9328 /*
9329 =for apidoc sv_bless
9330
9331 Blesses an SV into a specified package.  The SV must be an RV.  The package
9332 must be designated by its stash (see C<gv_stashpv()>).  The reference count
9333 of the SV is unaffected.
9334
9335 =cut
9336 */
9337
9338 SV*
9339 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
9340 {
9341     dVAR;
9342     SV *tmpRef;
9343
9344     PERL_ARGS_ASSERT_SV_BLESS;
9345
9346     if (!SvROK(sv))
9347         Perl_croak(aTHX_ "Can't bless non-reference value");
9348     tmpRef = SvRV(sv);
9349     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
9350         if (SvIsCOW(tmpRef))
9351             sv_force_normal_flags(tmpRef, 0);
9352         if (SvREADONLY(tmpRef))
9353             Perl_croak_no_modify(aTHX);
9354         if (SvOBJECT(tmpRef)) {
9355             if (SvTYPE(tmpRef) != SVt_PVIO)
9356                 --PL_sv_objcount;
9357             SvREFCNT_dec(SvSTASH(tmpRef));
9358         }
9359     }
9360     SvOBJECT_on(tmpRef);
9361     if (SvTYPE(tmpRef) != SVt_PVIO)
9362         ++PL_sv_objcount;
9363     SvUPGRADE(tmpRef, SVt_PVMG);
9364     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
9365
9366     if (Gv_AMG(stash))
9367         SvAMAGIC_on(sv);
9368     else
9369         (void)SvAMAGIC_off(sv);
9370
9371     if(SvSMAGICAL(tmpRef))
9372         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
9373             mg_set(tmpRef);
9374
9375
9376
9377     return sv;
9378 }
9379
9380 /* Downgrades a PVGV to a PVMG. If it’s actually a PVLV, we leave the type
9381  * as it is after unglobbing it.
9382  */
9383
9384 STATIC void
9385 S_sv_unglob(pTHX_ SV *const sv)
9386 {
9387     dVAR;
9388     void *xpvmg;
9389     HV *stash;
9390     SV * const temp = sv_newmortal();
9391
9392     PERL_ARGS_ASSERT_SV_UNGLOB;
9393
9394     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
9395     SvFAKE_off(sv);
9396     gv_efullname3(temp, MUTABLE_GV(sv), "*");
9397
9398     if (GvGP(sv)) {
9399         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
9400            && HvNAME_get(stash))
9401             mro_method_changed_in(stash);
9402         gp_free(MUTABLE_GV(sv));
9403     }
9404     if (GvSTASH(sv)) {
9405         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
9406         GvSTASH(sv) = NULL;
9407     }
9408     GvMULTI_off(sv);
9409     if (GvNAME_HEK(sv)) {
9410         unshare_hek(GvNAME_HEK(sv));
9411     }
9412     isGV_with_GP_off(sv);
9413
9414     if(SvTYPE(sv) == SVt_PVGV) {
9415         /* need to keep SvANY(sv) in the right arena */
9416         xpvmg = new_XPVMG();
9417         StructCopy(SvANY(sv), xpvmg, XPVMG);
9418         del_XPVGV(SvANY(sv));
9419         SvANY(sv) = xpvmg;
9420
9421         SvFLAGS(sv) &= ~SVTYPEMASK;
9422         SvFLAGS(sv) |= SVt_PVMG;
9423     }
9424
9425     /* Intentionally not calling any local SET magic, as this isn't so much a
9426        set operation as merely an internal storage change.  */
9427     sv_setsv_flags(sv, temp, 0);
9428 }
9429
9430 /*
9431 =for apidoc sv_unref_flags
9432
9433 Unsets the RV status of the SV, and decrements the reference count of
9434 whatever was being referenced by the RV.  This can almost be thought of
9435 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9436 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
9437 (otherwise the decrementing is conditional on the reference count being
9438 different from one or the reference being a readonly SV).
9439 See C<SvROK_off>.
9440
9441 =cut
9442 */
9443
9444 void
9445 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
9446 {
9447     SV* const target = SvRV(ref);
9448
9449     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
9450
9451     if (SvWEAKREF(ref)) {
9452         sv_del_backref(target, ref);
9453         SvWEAKREF_off(ref);
9454         SvRV_set(ref, NULL);
9455         return;
9456     }
9457     SvRV_set(ref, NULL);
9458     SvROK_off(ref);
9459     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
9460        assigned to as BEGIN {$a = \"Foo"} will fail.  */
9461     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
9462         SvREFCNT_dec(target);
9463     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
9464         sv_2mortal(target);     /* Schedule for freeing later */
9465 }
9466
9467 /*
9468 =for apidoc sv_untaint
9469
9470 Untaint an SV. Use C<SvTAINTED_off> instead.
9471
9472 =cut
9473 */
9474
9475 void
9476 Perl_sv_untaint(pTHX_ SV *const sv)
9477 {
9478     PERL_ARGS_ASSERT_SV_UNTAINT;
9479
9480     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9481         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9482         if (mg)
9483             mg->mg_len &= ~1;
9484     }
9485 }
9486
9487 /*
9488 =for apidoc sv_tainted
9489
9490 Test an SV for taintedness. Use C<SvTAINTED> instead.
9491
9492 =cut
9493 */
9494
9495 bool
9496 Perl_sv_tainted(pTHX_ SV *const sv)
9497 {
9498     PERL_ARGS_ASSERT_SV_TAINTED;
9499
9500     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9501         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9502         if (mg && (mg->mg_len & 1) )
9503             return TRUE;
9504     }
9505     return FALSE;
9506 }
9507
9508 /*
9509 =for apidoc sv_setpviv
9510
9511 Copies an integer into the given SV, also updating its string value.
9512 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
9513
9514 =cut
9515 */
9516
9517 void
9518 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
9519 {
9520     char buf[TYPE_CHARS(UV)];
9521     char *ebuf;
9522     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
9523
9524     PERL_ARGS_ASSERT_SV_SETPVIV;
9525
9526     sv_setpvn(sv, ptr, ebuf - ptr);
9527 }
9528
9529 /*
9530 =for apidoc sv_setpviv_mg
9531
9532 Like C<sv_setpviv>, but also handles 'set' magic.
9533
9534 =cut
9535 */
9536
9537 void
9538 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
9539 {
9540     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
9541
9542     sv_setpviv(sv, iv);
9543     SvSETMAGIC(sv);
9544 }
9545
9546 #if defined(PERL_IMPLICIT_CONTEXT)
9547
9548 /* pTHX_ magic can't cope with varargs, so this is a no-context
9549  * version of the main function, (which may itself be aliased to us).
9550  * Don't access this version directly.
9551  */
9552
9553 void
9554 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
9555 {
9556     dTHX;
9557     va_list args;
9558
9559     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
9560
9561     va_start(args, pat);
9562     sv_vsetpvf(sv, pat, &args);
9563     va_end(args);
9564 }
9565
9566 /* pTHX_ magic can't cope with varargs, so this is a no-context
9567  * version of the main function, (which may itself be aliased to us).
9568  * Don't access this version directly.
9569  */
9570
9571 void
9572 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9573 {
9574     dTHX;
9575     va_list args;
9576
9577     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
9578
9579     va_start(args, pat);
9580     sv_vsetpvf_mg(sv, pat, &args);
9581     va_end(args);
9582 }
9583 #endif
9584
9585 /*
9586 =for apidoc sv_setpvf
9587
9588 Works like C<sv_catpvf> but copies the text into the SV instead of
9589 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
9590
9591 =cut
9592 */
9593
9594 void
9595 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
9596 {
9597     va_list args;
9598
9599     PERL_ARGS_ASSERT_SV_SETPVF;
9600
9601     va_start(args, pat);
9602     sv_vsetpvf(sv, pat, &args);
9603     va_end(args);
9604 }
9605
9606 /*
9607 =for apidoc sv_vsetpvf
9608
9609 Works like C<sv_vcatpvf> but copies the text into the SV instead of
9610 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
9611
9612 Usually used via its frontend C<sv_setpvf>.
9613
9614 =cut
9615 */
9616
9617 void
9618 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9619 {
9620     PERL_ARGS_ASSERT_SV_VSETPVF;
9621
9622     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9623 }
9624
9625 /*
9626 =for apidoc sv_setpvf_mg
9627
9628 Like C<sv_setpvf>, but also handles 'set' magic.
9629
9630 =cut
9631 */
9632
9633 void
9634 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9635 {
9636     va_list args;
9637
9638     PERL_ARGS_ASSERT_SV_SETPVF_MG;
9639
9640     va_start(args, pat);
9641     sv_vsetpvf_mg(sv, pat, &args);
9642     va_end(args);
9643 }
9644
9645 /*
9646 =for apidoc sv_vsetpvf_mg
9647
9648 Like C<sv_vsetpvf>, but also handles 'set' magic.
9649
9650 Usually used via its frontend C<sv_setpvf_mg>.
9651
9652 =cut
9653 */
9654
9655 void
9656 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9657 {
9658     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
9659
9660     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9661     SvSETMAGIC(sv);
9662 }
9663
9664 #if defined(PERL_IMPLICIT_CONTEXT)
9665
9666 /* pTHX_ magic can't cope with varargs, so this is a no-context
9667  * version of the main function, (which may itself be aliased to us).
9668  * Don't access this version directly.
9669  */
9670
9671 void
9672 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
9673 {
9674     dTHX;
9675     va_list args;
9676
9677     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
9678
9679     va_start(args, pat);
9680     sv_vcatpvf(sv, pat, &args);
9681     va_end(args);
9682 }
9683
9684 /* pTHX_ magic can't cope with varargs, so this is a no-context
9685  * version of the main function, (which may itself be aliased to us).
9686  * Don't access this version directly.
9687  */
9688
9689 void
9690 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9691 {
9692     dTHX;
9693     va_list args;
9694
9695     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
9696
9697     va_start(args, pat);
9698     sv_vcatpvf_mg(sv, pat, &args);
9699     va_end(args);
9700 }
9701 #endif
9702
9703 /*
9704 =for apidoc sv_catpvf
9705
9706 Processes its arguments like C<sprintf> and appends the formatted
9707 output to an SV.  If the appended data contains "wide" characters
9708 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
9709 and characters >255 formatted with %c), the original SV might get
9710 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
9711 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
9712 valid UTF-8; if the original SV was bytes, the pattern should be too.
9713
9714 =cut */
9715
9716 void
9717 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
9718 {
9719     va_list args;
9720
9721     PERL_ARGS_ASSERT_SV_CATPVF;
9722
9723     va_start(args, pat);
9724     sv_vcatpvf(sv, pat, &args);
9725     va_end(args);
9726 }
9727
9728 /*
9729 =for apidoc sv_vcatpvf
9730
9731 Processes its arguments like C<vsprintf> and appends the formatted output
9732 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
9733
9734 Usually used via its frontend C<sv_catpvf>.
9735
9736 =cut
9737 */
9738
9739 void
9740 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9741 {
9742     PERL_ARGS_ASSERT_SV_VCATPVF;
9743
9744     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9745 }
9746
9747 /*
9748 =for apidoc sv_catpvf_mg
9749
9750 Like C<sv_catpvf>, but also handles 'set' magic.
9751
9752 =cut
9753 */
9754
9755 void
9756 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9757 {
9758     va_list args;
9759
9760     PERL_ARGS_ASSERT_SV_CATPVF_MG;
9761
9762     va_start(args, pat);
9763     sv_vcatpvf_mg(sv, pat, &args);
9764     va_end(args);
9765 }
9766
9767 /*
9768 =for apidoc sv_vcatpvf_mg
9769
9770 Like C<sv_vcatpvf>, but also handles 'set' magic.
9771
9772 Usually used via its frontend C<sv_catpvf_mg>.
9773
9774 =cut
9775 */
9776
9777 void
9778 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9779 {
9780     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
9781
9782     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9783     SvSETMAGIC(sv);
9784 }
9785
9786 /*
9787 =for apidoc sv_vsetpvfn
9788
9789 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9790 appending it.
9791
9792 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9793
9794 =cut
9795 */
9796
9797 void
9798 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9799                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9800 {
9801     PERL_ARGS_ASSERT_SV_VSETPVFN;
9802
9803     sv_setpvs(sv, "");
9804     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
9805 }
9806
9807
9808 /*
9809  * Warn of missing argument to sprintf, and then return a defined value
9810  * to avoid inappropriate "use of uninit" warnings [perl #71000].
9811  */
9812 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
9813 STATIC SV*
9814 S_vcatpvfn_missing_argument(pTHX) {
9815     if (ckWARN(WARN_MISSING)) {
9816         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
9817                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
9818     }
9819     return &PL_sv_no;
9820 }
9821
9822
9823 STATIC I32
9824 S_expect_number(pTHX_ char **const pattern)
9825 {
9826     dVAR;
9827     I32 var = 0;
9828
9829     PERL_ARGS_ASSERT_EXPECT_NUMBER;
9830
9831     switch (**pattern) {
9832     case '1': case '2': case '3':
9833     case '4': case '5': case '6':
9834     case '7': case '8': case '9':
9835         var = *(*pattern)++ - '0';
9836         while (isDIGIT(**pattern)) {
9837             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
9838             if (tmp < var)
9839                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
9840             var = tmp;
9841         }
9842     }
9843     return var;
9844 }
9845
9846 STATIC char *
9847 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
9848 {
9849     const int neg = nv < 0;
9850     UV uv;
9851
9852     PERL_ARGS_ASSERT_F0CONVERT;
9853
9854     if (neg)
9855         nv = -nv;
9856     if (nv < UV_MAX) {
9857         char *p = endbuf;
9858         nv += 0.5;
9859         uv = (UV)nv;
9860         if (uv & 1 && uv == nv)
9861             uv--;                       /* Round to even */
9862         do {
9863             const unsigned dig = uv % 10;
9864             *--p = '0' + dig;
9865         } while (uv /= 10);
9866         if (neg)
9867             *--p = '-';
9868         *len = endbuf - p;
9869         return p;
9870     }
9871     return NULL;
9872 }
9873
9874
9875 /*
9876 =for apidoc sv_vcatpvfn
9877
9878 Processes its arguments like C<vsprintf> and appends the formatted output
9879 to an SV.  Uses an array of SVs if the C style variable argument list is
9880 missing (NULL).  When running with taint checks enabled, indicates via
9881 C<maybe_tainted> if results are untrustworthy (often due to the use of
9882 locales).
9883
9884 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
9885
9886 =cut
9887 */
9888
9889
9890 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
9891                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
9892                         vec_utf8 = DO_UTF8(vecsv);
9893
9894 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
9895
9896 void
9897 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9898                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9899 {
9900     dVAR;
9901     char *p;
9902     char *q;
9903     const char *patend;
9904     STRLEN origlen;
9905     I32 svix = 0;
9906     static const char nullstr[] = "(null)";
9907     SV *argsv = NULL;
9908     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
9909     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
9910     SV *nsv = NULL;
9911     /* Times 4: a decimal digit takes more than 3 binary digits.
9912      * NV_DIG: mantissa takes than many decimal digits.
9913      * Plus 32: Playing safe. */
9914     char ebuf[IV_DIG * 4 + NV_DIG + 32];
9915     /* large enough for "%#.#f" --chip */
9916     /* what about long double NVs? --jhi */
9917
9918     PERL_ARGS_ASSERT_SV_VCATPVFN;
9919     PERL_UNUSED_ARG(maybe_tainted);
9920
9921     /* no matter what, this is a string now */
9922     (void)SvPV_force(sv, origlen);
9923
9924     /* special-case "", "%s", and "%-p" (SVf - see below) */
9925     if (patlen == 0)
9926         return;
9927     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
9928         if (args) {
9929             const char * const s = va_arg(*args, char*);
9930             sv_catpv(sv, s ? s : nullstr);
9931         }
9932         else if (svix < svmax) {
9933             sv_catsv(sv, *svargs);
9934         }
9935         else
9936             S_vcatpvfn_missing_argument(aTHX);
9937         return;
9938     }
9939     if (args && patlen == 3 && pat[0] == '%' &&
9940                 pat[1] == '-' && pat[2] == 'p') {
9941         argsv = MUTABLE_SV(va_arg(*args, void*));
9942         sv_catsv(sv, argsv);
9943         return;
9944     }
9945
9946 #ifndef USE_LONG_DOUBLE
9947     /* special-case "%.<number>[gf]" */
9948     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
9949          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
9950         unsigned digits = 0;
9951         const char *pp;
9952
9953         pp = pat + 2;
9954         while (*pp >= '0' && *pp <= '9')
9955             digits = 10 * digits + (*pp++ - '0');
9956         if (pp - pat == (int)patlen - 1 && svix < svmax) {
9957             const NV nv = SvNV(*svargs);
9958             if (*pp == 'g') {
9959                 /* Add check for digits != 0 because it seems that some
9960                    gconverts are buggy in this case, and we don't yet have
9961                    a Configure test for this.  */
9962                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
9963                      /* 0, point, slack */
9964                     Gconvert(nv, (int)digits, 0, ebuf);
9965                     sv_catpv(sv, ebuf);
9966                     if (*ebuf)  /* May return an empty string for digits==0 */
9967                         return;
9968                 }
9969             } else if (!digits) {
9970                 STRLEN l;
9971
9972                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
9973                     sv_catpvn(sv, p, l);
9974                     return;
9975                 }
9976             }
9977         }
9978     }
9979 #endif /* !USE_LONG_DOUBLE */
9980
9981     if (!args && svix < svmax && DO_UTF8(*svargs))
9982         has_utf8 = TRUE;
9983
9984     patend = (char*)pat + patlen;
9985     for (p = (char*)pat; p < patend; p = q) {
9986         bool alt = FALSE;
9987         bool left = FALSE;
9988         bool vectorize = FALSE;
9989         bool vectorarg = FALSE;
9990         bool vec_utf8 = FALSE;
9991         char fill = ' ';
9992         char plus = 0;
9993         char intsize = 0;
9994         STRLEN width = 0;
9995         STRLEN zeros = 0;
9996         bool has_precis = FALSE;
9997         STRLEN precis = 0;
9998         const I32 osvix = svix;
9999         bool is_utf8 = FALSE;  /* is this item utf8?   */
10000 #ifdef HAS_LDBL_SPRINTF_BUG
10001         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10002            with sfio - Allen <allens@cpan.org> */
10003         bool fix_ldbl_sprintf_bug = FALSE;
10004 #endif
10005
10006         char esignbuf[4];
10007         U8 utf8buf[UTF8_MAXBYTES+1];
10008         STRLEN esignlen = 0;
10009
10010         const char *eptr = NULL;
10011         const char *fmtstart;
10012         STRLEN elen = 0;
10013         SV *vecsv = NULL;
10014         const U8 *vecstr = NULL;
10015         STRLEN veclen = 0;
10016         char c = 0;
10017         int i;
10018         unsigned base = 0;
10019         IV iv = 0;
10020         UV uv = 0;
10021         /* we need a long double target in case HAS_LONG_DOUBLE but
10022            not USE_LONG_DOUBLE
10023         */
10024 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
10025         long double nv;
10026 #else
10027         NV nv;
10028 #endif
10029         STRLEN have;
10030         STRLEN need;
10031         STRLEN gap;
10032         const char *dotstr = ".";
10033         STRLEN dotstrlen = 1;
10034         I32 efix = 0; /* explicit format parameter index */
10035         I32 ewix = 0; /* explicit width index */
10036         I32 epix = 0; /* explicit precision index */
10037         I32 evix = 0; /* explicit vector index */
10038         bool asterisk = FALSE;
10039
10040         /* echo everything up to the next format specification */
10041         for (q = p; q < patend && *q != '%'; ++q) ;
10042         if (q > p) {
10043             if (has_utf8 && !pat_utf8)
10044                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
10045             else
10046                 sv_catpvn(sv, p, q - p);
10047             p = q;
10048         }
10049         if (q++ >= patend)
10050             break;
10051
10052         fmtstart = q;
10053
10054 /*
10055     We allow format specification elements in this order:
10056         \d+\$              explicit format parameter index
10057         [-+ 0#]+           flags
10058         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
10059         0                  flag (as above): repeated to allow "v02"     
10060         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
10061         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
10062         [hlqLV]            size
10063     [%bcdefginopsuxDFOUX] format (mandatory)
10064 */
10065
10066         if (args) {
10067 /*  
10068         As of perl5.9.3, printf format checking is on by default.
10069         Internally, perl uses %p formats to provide an escape to
10070         some extended formatting.  This block deals with those
10071         extensions: if it does not match, (char*)q is reset and
10072         the normal format processing code is used.
10073
10074         Currently defined extensions are:
10075                 %p              include pointer address (standard)      
10076                 %-p     (SVf)   include an SV (previously %_)
10077                 %-<num>p        include an SV with precision <num>      
10078                 %<num>p         reserved for future extensions
10079
10080         Robin Barker 2005-07-14
10081
10082                 %1p     (VDf)   removed.  RMB 2007-10-19
10083 */
10084             char* r = q; 
10085             bool sv = FALSE;    
10086             STRLEN n = 0;
10087             if (*q == '-')
10088                 sv = *q++;
10089             n = expect_number(&q);
10090             if (*q++ == 'p') {
10091                 if (sv) {                       /* SVf */
10092                     if (n) {
10093                         precis = n;
10094                         has_precis = TRUE;
10095                     }
10096                     argsv = MUTABLE_SV(va_arg(*args, void*));
10097                     eptr = SvPV_const(argsv, elen);
10098                     if (DO_UTF8(argsv))
10099                         is_utf8 = TRUE;
10100                     goto string;
10101                 }
10102                 else if (n) {
10103                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
10104                                      "internal %%<num>p might conflict with future printf extensions");
10105                 }
10106             }
10107             q = r; 
10108         }
10109
10110         if ( (width = expect_number(&q)) ) {
10111             if (*q == '$') {
10112                 ++q;
10113                 efix = width;
10114             } else {
10115                 goto gotwidth;
10116             }
10117         }
10118
10119         /* FLAGS */
10120
10121         while (*q) {
10122             switch (*q) {
10123             case ' ':
10124             case '+':
10125                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
10126                     q++;
10127                 else
10128                     plus = *q++;
10129                 continue;
10130
10131             case '-':
10132                 left = TRUE;
10133                 q++;
10134                 continue;
10135
10136             case '0':
10137                 fill = *q++;
10138                 continue;
10139
10140             case '#':
10141                 alt = TRUE;
10142                 q++;
10143                 continue;
10144
10145             default:
10146                 break;
10147             }
10148             break;
10149         }
10150
10151       tryasterisk:
10152         if (*q == '*') {
10153             q++;
10154             if ( (ewix = expect_number(&q)) )
10155                 if (*q++ != '$')
10156                     goto unknown;
10157             asterisk = TRUE;
10158         }
10159         if (*q == 'v') {
10160             q++;
10161             if (vectorize)
10162                 goto unknown;
10163             if ((vectorarg = asterisk)) {
10164                 evix = ewix;
10165                 ewix = 0;
10166                 asterisk = FALSE;
10167             }
10168             vectorize = TRUE;
10169             goto tryasterisk;
10170         }
10171
10172         if (!asterisk)
10173         {
10174             if( *q == '0' )
10175                 fill = *q++;
10176             width = expect_number(&q);
10177         }
10178
10179         if (vectorize && vectorarg) {
10180             /* vectorizing, but not with the default "." */
10181             if (args)
10182                 vecsv = va_arg(*args, SV*);
10183             else if (evix) {
10184                 vecsv = (evix > 0 && evix <= svmax)
10185                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
10186             } else {
10187                 vecsv = svix < svmax
10188                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10189             }
10190             dotstr = SvPV_const(vecsv, dotstrlen);
10191             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
10192                bad with tied or overloaded values that return UTF8.  */
10193             if (DO_UTF8(vecsv))
10194                 is_utf8 = TRUE;
10195             else if (has_utf8) {
10196                 vecsv = sv_mortalcopy(vecsv);
10197                 sv_utf8_upgrade(vecsv);
10198                 dotstr = SvPV_const(vecsv, dotstrlen);
10199                 is_utf8 = TRUE;
10200             }               
10201         }
10202
10203         if (asterisk) {
10204             if (args)
10205                 i = va_arg(*args, int);
10206             else
10207                 i = (ewix ? ewix <= svmax : svix < svmax) ?
10208                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10209             left |= (i < 0);
10210             width = (i < 0) ? -i : i;
10211         }
10212       gotwidth:
10213
10214         /* PRECISION */
10215
10216         if (*q == '.') {
10217             q++;
10218             if (*q == '*') {
10219                 q++;
10220                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
10221                     goto unknown;
10222                 /* XXX: todo, support specified precision parameter */
10223                 if (epix)
10224                     goto unknown;
10225                 if (args)
10226                     i = va_arg(*args, int);
10227                 else
10228                     i = (ewix ? ewix <= svmax : svix < svmax)
10229                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10230                 precis = i;
10231                 has_precis = !(i < 0);
10232             }
10233             else {
10234                 precis = 0;
10235                 while (isDIGIT(*q))
10236                     precis = precis * 10 + (*q++ - '0');
10237                 has_precis = TRUE;
10238             }
10239         }
10240
10241         if (vectorize) {
10242             if (args) {
10243                 VECTORIZE_ARGS
10244             }
10245             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
10246                 vecsv = svargs[efix ? efix-1 : svix++];
10247                 vecstr = (U8*)SvPV_const(vecsv,veclen);
10248                 vec_utf8 = DO_UTF8(vecsv);
10249
10250                 /* if this is a version object, we need to convert
10251                  * back into v-string notation and then let the
10252                  * vectorize happen normally
10253                  */
10254                 if (sv_derived_from(vecsv, "version")) {
10255                     char *version = savesvpv(vecsv);
10256                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
10257                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
10258                         "vector argument not supported with alpha versions");
10259                         goto unknown;
10260                     }
10261                     vecsv = sv_newmortal();
10262                     scan_vstring(version, version + veclen, vecsv);
10263                     vecstr = (U8*)SvPV_const(vecsv, veclen);
10264                     vec_utf8 = DO_UTF8(vecsv);
10265                     Safefree(version);
10266                 }
10267             }
10268             else {
10269                 vecstr = (U8*)"";
10270                 veclen = 0;
10271             }
10272         }
10273
10274         /* SIZE */
10275
10276         switch (*q) {
10277 #ifdef WIN32
10278         case 'I':                       /* Ix, I32x, and I64x */
10279 #  ifdef WIN64
10280             if (q[1] == '6' && q[2] == '4') {
10281                 q += 3;
10282                 intsize = 'q';
10283                 break;
10284             }
10285 #  endif
10286             if (q[1] == '3' && q[2] == '2') {
10287                 q += 3;
10288                 break;
10289             }
10290 #  ifdef WIN64
10291             intsize = 'q';
10292 #  endif
10293             q++;
10294             break;
10295 #endif
10296 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10297         case 'L':                       /* Ld */
10298             /*FALLTHROUGH*/
10299 #ifdef HAS_QUAD
10300         case 'q':                       /* qd */
10301 #endif
10302             intsize = 'q';
10303             q++;
10304             break;
10305 #endif
10306         case 'l':
10307             ++q;
10308 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10309             if (*q == 'l') {    /* lld, llf */
10310                 intsize = 'q';
10311                 ++q;
10312             }
10313             else
10314 #endif
10315                 intsize = 'l';
10316             break;
10317         case 'h':
10318             if (*++q == 'h') {  /* hhd, hhu */
10319                 intsize = 'c';
10320                 ++q;
10321             }
10322             else
10323                 intsize = 'h';
10324             break;
10325         case 'V':
10326         case 'z':
10327         case 't':
10328 #if HAS_C99
10329         case 'j':
10330 #endif
10331             intsize = *q++;
10332             break;
10333         }
10334
10335         /* CONVERSION */
10336
10337         if (*q == '%') {
10338             eptr = q++;
10339             elen = 1;
10340             if (vectorize) {
10341                 c = '%';
10342                 goto unknown;
10343             }
10344             goto string;
10345         }
10346
10347         if (!vectorize && !args) {
10348             if (efix) {
10349                 const I32 i = efix-1;
10350                 argsv = (i >= 0 && i < svmax)
10351                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
10352             } else {
10353                 argsv = (svix >= 0 && svix < svmax)
10354                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10355             }
10356         }
10357
10358         switch (c = *q++) {
10359
10360             /* STRINGS */
10361
10362         case 'c':
10363             if (vectorize)
10364                 goto unknown;
10365             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
10366             if ((uv > 255 ||
10367                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
10368                 && !IN_BYTES) {
10369                 eptr = (char*)utf8buf;
10370                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
10371                 is_utf8 = TRUE;
10372             }
10373             else {
10374                 c = (char)uv;
10375                 eptr = &c;
10376                 elen = 1;
10377             }
10378             goto string;
10379
10380         case 's':
10381             if (vectorize)
10382                 goto unknown;
10383             if (args) {
10384                 eptr = va_arg(*args, char*);
10385                 if (eptr)
10386                     elen = strlen(eptr);
10387                 else {
10388                     eptr = (char *)nullstr;
10389                     elen = sizeof nullstr - 1;
10390                 }
10391             }
10392             else {
10393                 eptr = SvPV_const(argsv, elen);
10394                 if (DO_UTF8(argsv)) {
10395                     STRLEN old_precis = precis;
10396                     if (has_precis && precis < elen) {
10397                         STRLEN ulen = sv_len_utf8(argsv);
10398                         I32 p = precis > ulen ? ulen : precis;
10399                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
10400                         precis = p;
10401                     }
10402                     if (width) { /* fudge width (can't fudge elen) */
10403                         if (has_precis && precis < elen)
10404                             width += precis - old_precis;
10405                         else
10406                             width += elen - sv_len_utf8(argsv);
10407                     }
10408                     is_utf8 = TRUE;
10409                 }
10410             }
10411
10412         string:
10413             if (has_precis && precis < elen)
10414                 elen = precis;
10415             break;
10416
10417             /* INTEGERS */
10418
10419         case 'p':
10420             if (alt || vectorize)
10421                 goto unknown;
10422             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
10423             base = 16;
10424             goto integer;
10425
10426         case 'D':
10427 #ifdef IV_IS_QUAD
10428             intsize = 'q';
10429 #else
10430             intsize = 'l';
10431 #endif
10432             /*FALLTHROUGH*/
10433         case 'd':
10434         case 'i':
10435 #if vdNUMBER
10436         format_vd:
10437 #endif
10438             if (vectorize) {
10439                 STRLEN ulen;
10440                 if (!veclen)
10441                     continue;
10442                 if (vec_utf8)
10443                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10444                                         UTF8_ALLOW_ANYUV);
10445                 else {
10446                     uv = *vecstr;
10447                     ulen = 1;
10448                 }
10449                 vecstr += ulen;
10450                 veclen -= ulen;
10451                 if (plus)
10452                      esignbuf[esignlen++] = plus;
10453             }
10454             else if (args) {
10455                 switch (intsize) {
10456                 case 'c':       iv = (char)va_arg(*args, int); break;
10457                 case 'h':       iv = (short)va_arg(*args, int); break;
10458                 case 'l':       iv = va_arg(*args, long); break;
10459                 case 'V':       iv = va_arg(*args, IV); break;
10460                 case 'z':       iv = va_arg(*args, SSize_t); break;
10461                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
10462                 default:        iv = va_arg(*args, int); break;
10463 #if HAS_C99
10464                 case 'j':       iv = va_arg(*args, intmax_t); break;
10465 #endif
10466                 case 'q':
10467 #ifdef HAS_QUAD
10468                                 iv = va_arg(*args, Quad_t); break;
10469 #else
10470                                 goto unknown;
10471 #endif
10472                 }
10473             }
10474             else {
10475                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
10476                 switch (intsize) {
10477                 case 'c':       iv = (char)tiv; break;
10478                 case 'h':       iv = (short)tiv; break;
10479                 case 'l':       iv = (long)tiv; break;
10480                 case 'V':
10481                 default:        iv = tiv; break;
10482                 case 'q':
10483 #ifdef HAS_QUAD
10484                                 iv = (Quad_t)tiv; break;
10485 #else
10486                                 goto unknown;
10487 #endif
10488                 }
10489             }
10490             if ( !vectorize )   /* we already set uv above */
10491             {
10492                 if (iv >= 0) {
10493                     uv = iv;
10494                     if (plus)
10495                         esignbuf[esignlen++] = plus;
10496                 }
10497                 else {
10498                     uv = -iv;
10499                     esignbuf[esignlen++] = '-';
10500                 }
10501             }
10502             base = 10;
10503             goto integer;
10504
10505         case 'U':
10506 #ifdef IV_IS_QUAD
10507             intsize = 'q';
10508 #else
10509             intsize = 'l';
10510 #endif
10511             /*FALLTHROUGH*/
10512         case 'u':
10513             base = 10;
10514             goto uns_integer;
10515
10516         case 'B':
10517         case 'b':
10518             base = 2;
10519             goto uns_integer;
10520
10521         case 'O':
10522 #ifdef IV_IS_QUAD
10523             intsize = 'q';
10524 #else
10525             intsize = 'l';
10526 #endif
10527             /*FALLTHROUGH*/
10528         case 'o':
10529             base = 8;
10530             goto uns_integer;
10531
10532         case 'X':
10533         case 'x':
10534             base = 16;
10535
10536         uns_integer:
10537             if (vectorize) {
10538                 STRLEN ulen;
10539         vector:
10540                 if (!veclen)
10541                     continue;
10542                 if (vec_utf8)
10543                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10544                                         UTF8_ALLOW_ANYUV);
10545                 else {
10546                     uv = *vecstr;
10547                     ulen = 1;
10548                 }
10549                 vecstr += ulen;
10550                 veclen -= ulen;
10551             }
10552             else if (args) {
10553                 switch (intsize) {
10554                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
10555                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
10556                 case 'l':  uv = va_arg(*args, unsigned long); break;
10557                 case 'V':  uv = va_arg(*args, UV); break;
10558                 case 'z':  uv = va_arg(*args, Size_t); break;
10559                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
10560 #if HAS_C99
10561                 case 'j':  uv = va_arg(*args, uintmax_t); break;
10562 #endif
10563                 default:   uv = va_arg(*args, unsigned); break;
10564                 case 'q':
10565 #ifdef HAS_QUAD
10566                            uv = va_arg(*args, Uquad_t); break;
10567 #else
10568                            goto unknown;
10569 #endif
10570                 }
10571             }
10572             else {
10573                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
10574                 switch (intsize) {
10575                 case 'c':       uv = (unsigned char)tuv; break;
10576                 case 'h':       uv = (unsigned short)tuv; break;
10577                 case 'l':       uv = (unsigned long)tuv; break;
10578                 case 'V':
10579                 default:        uv = tuv; break;
10580                 case 'q':
10581 #ifdef HAS_QUAD
10582                                 uv = (Uquad_t)tuv; break;
10583 #else
10584                                 goto unknown;
10585 #endif
10586                 }
10587             }
10588
10589         integer:
10590             {
10591                 char *ptr = ebuf + sizeof ebuf;
10592                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
10593                 zeros = 0;
10594
10595                 switch (base) {
10596                     unsigned dig;
10597                 case 16:
10598                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
10599                     do {
10600                         dig = uv & 15;
10601                         *--ptr = p[dig];
10602                     } while (uv >>= 4);
10603                     if (tempalt) {
10604                         esignbuf[esignlen++] = '0';
10605                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
10606                     }
10607                     break;
10608                 case 8:
10609                     do {
10610                         dig = uv & 7;
10611                         *--ptr = '0' + dig;
10612                     } while (uv >>= 3);
10613                     if (alt && *ptr != '0')
10614                         *--ptr = '0';
10615                     break;
10616                 case 2:
10617                     do {
10618                         dig = uv & 1;
10619                         *--ptr = '0' + dig;
10620                     } while (uv >>= 1);
10621                     if (tempalt) {
10622                         esignbuf[esignlen++] = '0';
10623                         esignbuf[esignlen++] = c;
10624                     }
10625                     break;
10626                 default:                /* it had better be ten or less */
10627                     do {
10628                         dig = uv % base;
10629                         *--ptr = '0' + dig;
10630                     } while (uv /= base);
10631                     break;
10632                 }
10633                 elen = (ebuf + sizeof ebuf) - ptr;
10634                 eptr = ptr;
10635                 if (has_precis) {
10636                     if (precis > elen)
10637                         zeros = precis - elen;
10638                     else if (precis == 0 && elen == 1 && *eptr == '0'
10639                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
10640                         elen = 0;
10641
10642                 /* a precision nullifies the 0 flag. */
10643                     if (fill == '0')
10644                         fill = ' ';
10645                 }
10646             }
10647             break;
10648
10649             /* FLOATING POINT */
10650
10651         case 'F':
10652             c = 'f';            /* maybe %F isn't supported here */
10653             /*FALLTHROUGH*/
10654         case 'e': case 'E':
10655         case 'f':
10656         case 'g': case 'G':
10657             if (vectorize)
10658                 goto unknown;
10659
10660             /* This is evil, but floating point is even more evil */
10661
10662             /* for SV-style calling, we can only get NV
10663                for C-style calling, we assume %f is double;
10664                for simplicity we allow any of %Lf, %llf, %qf for long double
10665             */
10666             switch (intsize) {
10667             case 'V':
10668 #if defined(USE_LONG_DOUBLE)
10669                 intsize = 'q';
10670 #endif
10671                 break;
10672 /* [perl #20339] - we should accept and ignore %lf rather than die */
10673             case 'l':
10674                 /*FALLTHROUGH*/
10675             default:
10676 #if defined(USE_LONG_DOUBLE)
10677                 intsize = args ? 0 : 'q';
10678 #endif
10679                 break;
10680             case 'q':
10681 #if defined(HAS_LONG_DOUBLE)
10682                 break;
10683 #else
10684                 /*FALLTHROUGH*/
10685 #endif
10686             case 'c':
10687             case 'h':
10688             case 'z':
10689             case 't':
10690             case 'j':
10691                 goto unknown;
10692             }
10693
10694             /* now we need (long double) if intsize == 'q', else (double) */
10695             nv = (args) ?
10696 #if LONG_DOUBLESIZE > DOUBLESIZE
10697                 intsize == 'q' ?
10698                     va_arg(*args, long double) :
10699                     va_arg(*args, double)
10700 #else
10701                     va_arg(*args, double)
10702 #endif
10703                 : SvNV(argsv);
10704
10705             need = 0;
10706             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
10707                else. frexp() has some unspecified behaviour for those three */
10708             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
10709                 i = PERL_INT_MIN;
10710                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
10711                    will cast our (long double) to (double) */
10712                 (void)Perl_frexp(nv, &i);
10713                 if (i == PERL_INT_MIN)
10714                     Perl_die(aTHX_ "panic: frexp");
10715                 if (i > 0)
10716                     need = BIT_DIGITS(i);
10717             }
10718             need += has_precis ? precis : 6; /* known default */
10719
10720             if (need < width)
10721                 need = width;
10722
10723 #ifdef HAS_LDBL_SPRINTF_BUG
10724             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10725                with sfio - Allen <allens@cpan.org> */
10726
10727 #  ifdef DBL_MAX
10728 #    define MY_DBL_MAX DBL_MAX
10729 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
10730 #    if DOUBLESIZE >= 8
10731 #      define MY_DBL_MAX 1.7976931348623157E+308L
10732 #    else
10733 #      define MY_DBL_MAX 3.40282347E+38L
10734 #    endif
10735 #  endif
10736
10737 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
10738 #    define MY_DBL_MAX_BUG 1L
10739 #  else
10740 #    define MY_DBL_MAX_BUG MY_DBL_MAX
10741 #  endif
10742
10743 #  ifdef DBL_MIN
10744 #    define MY_DBL_MIN DBL_MIN
10745 #  else  /* XXX guessing! -Allen */
10746 #    if DOUBLESIZE >= 8
10747 #      define MY_DBL_MIN 2.2250738585072014E-308L
10748 #    else
10749 #      define MY_DBL_MIN 1.17549435E-38L
10750 #    endif
10751 #  endif
10752
10753             if ((intsize == 'q') && (c == 'f') &&
10754                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
10755                 (need < DBL_DIG)) {
10756                 /* it's going to be short enough that
10757                  * long double precision is not needed */
10758
10759                 if ((nv <= 0L) && (nv >= -0L))
10760                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
10761                 else {
10762                     /* would use Perl_fp_class as a double-check but not
10763                      * functional on IRIX - see perl.h comments */
10764
10765                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
10766                         /* It's within the range that a double can represent */
10767 #if defined(DBL_MAX) && !defined(DBL_MIN)
10768                         if ((nv >= ((long double)1/DBL_MAX)) ||
10769                             (nv <= (-(long double)1/DBL_MAX)))
10770 #endif
10771                         fix_ldbl_sprintf_bug = TRUE;
10772                     }
10773                 }
10774                 if (fix_ldbl_sprintf_bug == TRUE) {
10775                     double temp;
10776
10777                     intsize = 0;
10778                     temp = (double)nv;
10779                     nv = (NV)temp;
10780                 }
10781             }
10782
10783 #  undef MY_DBL_MAX
10784 #  undef MY_DBL_MAX_BUG
10785 #  undef MY_DBL_MIN
10786
10787 #endif /* HAS_LDBL_SPRINTF_BUG */
10788
10789             need += 20; /* fudge factor */
10790             if (PL_efloatsize < need) {
10791                 Safefree(PL_efloatbuf);
10792                 PL_efloatsize = need + 20; /* more fudge */
10793                 Newx(PL_efloatbuf, PL_efloatsize, char);
10794                 PL_efloatbuf[0] = '\0';
10795             }
10796
10797             if ( !(width || left || plus || alt) && fill != '0'
10798                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
10799                 /* See earlier comment about buggy Gconvert when digits,
10800                    aka precis is 0  */
10801                 if ( c == 'g' && precis) {
10802                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
10803                     /* May return an empty string for digits==0 */
10804                     if (*PL_efloatbuf) {
10805                         elen = strlen(PL_efloatbuf);
10806                         goto float_converted;
10807                     }
10808                 } else if ( c == 'f' && !precis) {
10809                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
10810                         break;
10811                 }
10812             }
10813             {
10814                 char *ptr = ebuf + sizeof ebuf;
10815                 *--ptr = '\0';
10816                 *--ptr = c;
10817                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
10818 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
10819                 if (intsize == 'q') {
10820                     /* Copy the one or more characters in a long double
10821                      * format before the 'base' ([efgEFG]) character to
10822                      * the format string. */
10823                     static char const prifldbl[] = PERL_PRIfldbl;
10824                     char const *p = prifldbl + sizeof(prifldbl) - 3;
10825                     while (p >= prifldbl) { *--ptr = *p--; }
10826                 }
10827 #endif
10828                 if (has_precis) {
10829                     base = precis;
10830                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10831                     *--ptr = '.';
10832                 }
10833                 if (width) {
10834                     base = width;
10835                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10836                 }
10837                 if (fill == '0')
10838                     *--ptr = fill;
10839                 if (left)
10840                     *--ptr = '-';
10841                 if (plus)
10842                     *--ptr = plus;
10843                 if (alt)
10844                     *--ptr = '#';
10845                 *--ptr = '%';
10846
10847                 /* No taint.  Otherwise we are in the strange situation
10848                  * where printf() taints but print($float) doesn't.
10849                  * --jhi */
10850 #if defined(HAS_LONG_DOUBLE)
10851                 elen = ((intsize == 'q')
10852                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
10853                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
10854 #else
10855                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
10856 #endif
10857             }
10858         float_converted:
10859             eptr = PL_efloatbuf;
10860             break;
10861
10862             /* SPECIAL */
10863
10864         case 'n':
10865             if (vectorize)
10866                 goto unknown;
10867             i = SvCUR(sv) - origlen;
10868             if (args) {
10869                 switch (intsize) {
10870                 case 'c':       *(va_arg(*args, char*)) = i; break;
10871                 case 'h':       *(va_arg(*args, short*)) = i; break;
10872                 default:        *(va_arg(*args, int*)) = i; break;
10873                 case 'l':       *(va_arg(*args, long*)) = i; break;
10874                 case 'V':       *(va_arg(*args, IV*)) = i; break;
10875                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
10876                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
10877 #if HAS_C99
10878                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
10879 #endif
10880                 case 'q':
10881 #ifdef HAS_QUAD
10882                                 *(va_arg(*args, Quad_t*)) = i; break;
10883 #else
10884                                 goto unknown;
10885 #endif
10886                 }
10887             }
10888             else
10889                 sv_setuv_mg(argsv, (UV)i);
10890             continue;   /* not "break" */
10891
10892             /* UNKNOWN */
10893
10894         default:
10895       unknown:
10896             if (!args
10897                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
10898                 && ckWARN(WARN_PRINTF))
10899             {
10900                 SV * const msg = sv_newmortal();
10901                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
10902                           (PL_op->op_type == OP_PRTF) ? "" : "s");
10903                 if (fmtstart < patend) {
10904                     const char * const fmtend = q < patend ? q : patend;
10905                     const char * f;
10906                     sv_catpvs(msg, "\"%");
10907                     for (f = fmtstart; f < fmtend; f++) {
10908                         if (isPRINT(*f)) {
10909                             sv_catpvn(msg, f, 1);
10910                         } else {
10911                             Perl_sv_catpvf(aTHX_ msg,
10912                                            "\\%03"UVof, (UV)*f & 0xFF);
10913                         }
10914                     }
10915                     sv_catpvs(msg, "\"");
10916                 } else {
10917                     sv_catpvs(msg, "end of string");
10918                 }
10919                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
10920             }
10921
10922             /* output mangled stuff ... */
10923             if (c == '\0')
10924                 --q;
10925             eptr = p;
10926             elen = q - p;
10927
10928             /* ... right here, because formatting flags should not apply */
10929             SvGROW(sv, SvCUR(sv) + elen + 1);
10930             p = SvEND(sv);
10931             Copy(eptr, p, elen, char);
10932             p += elen;
10933             *p = '\0';
10934             SvCUR_set(sv, p - SvPVX_const(sv));
10935             svix = osvix;
10936             continue;   /* not "break" */
10937         }
10938
10939         if (is_utf8 != has_utf8) {
10940             if (is_utf8) {
10941                 if (SvCUR(sv))
10942                     sv_utf8_upgrade(sv);
10943             }
10944             else {
10945                 const STRLEN old_elen = elen;
10946                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
10947                 sv_utf8_upgrade(nsv);
10948                 eptr = SvPVX_const(nsv);
10949                 elen = SvCUR(nsv);
10950
10951                 if (width) { /* fudge width (can't fudge elen) */
10952                     width += elen - old_elen;
10953                 }
10954                 is_utf8 = TRUE;
10955             }
10956         }
10957
10958         have = esignlen + zeros + elen;
10959         if (have < zeros)
10960             Perl_croak_nocontext("%s", PL_memory_wrap);
10961
10962         need = (have > width ? have : width);
10963         gap = need - have;
10964
10965         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
10966             Perl_croak_nocontext("%s", PL_memory_wrap);
10967         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
10968         p = SvEND(sv);
10969         if (esignlen && fill == '0') {
10970             int i;
10971             for (i = 0; i < (int)esignlen; i++)
10972                 *p++ = esignbuf[i];
10973         }
10974         if (gap && !left) {
10975             memset(p, fill, gap);
10976             p += gap;
10977         }
10978         if (esignlen && fill != '0') {
10979             int i;
10980             for (i = 0; i < (int)esignlen; i++)
10981                 *p++ = esignbuf[i];
10982         }
10983         if (zeros) {
10984             int i;
10985             for (i = zeros; i; i--)
10986                 *p++ = '0';
10987         }
10988         if (elen) {
10989             Copy(eptr, p, elen, char);
10990             p += elen;
10991         }
10992         if (gap && left) {
10993             memset(p, ' ', gap);
10994             p += gap;
10995         }
10996         if (vectorize) {
10997             if (veclen) {
10998                 Copy(dotstr, p, dotstrlen, char);
10999                 p += dotstrlen;
11000             }
11001             else
11002                 vectorize = FALSE;              /* done iterating over vecstr */
11003         }
11004         if (is_utf8)
11005             has_utf8 = TRUE;
11006         if (has_utf8)
11007             SvUTF8_on(sv);
11008         *p = '\0';
11009         SvCUR_set(sv, p - SvPVX_const(sv));
11010         if (vectorize) {
11011             esignlen = 0;
11012             goto vector;
11013         }
11014     }
11015     SvTAINT(sv);
11016 }
11017
11018 /* =========================================================================
11019
11020 =head1 Cloning an interpreter
11021
11022 All the macros and functions in this section are for the private use of
11023 the main function, perl_clone().
11024
11025 The foo_dup() functions make an exact copy of an existing foo thingy.
11026 During the course of a cloning, a hash table is used to map old addresses
11027 to new addresses. The table is created and manipulated with the
11028 ptr_table_* functions.
11029
11030 =cut
11031
11032  * =========================================================================*/
11033
11034
11035 #if defined(USE_ITHREADS)
11036
11037 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
11038 #ifndef GpREFCNT_inc
11039 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
11040 #endif
11041
11042
11043 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
11044    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
11045    If this changes, please unmerge ss_dup.
11046    Likewise, sv_dup_inc_multiple() relies on this fact.  */
11047 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
11048 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
11049 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
11050 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
11051 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
11052 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
11053 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
11054 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
11055 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
11056 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
11057 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
11058 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
11059 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
11060
11061 /* clone a parser */
11062
11063 yy_parser *
11064 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
11065 {
11066     yy_parser *parser;
11067
11068     PERL_ARGS_ASSERT_PARSER_DUP;
11069
11070     if (!proto)
11071         return NULL;
11072
11073     /* look for it in the table first */
11074     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
11075     if (parser)
11076         return parser;
11077
11078     /* create anew and remember what it is */
11079     Newxz(parser, 1, yy_parser);
11080     ptr_table_store(PL_ptr_table, proto, parser);
11081
11082     /* XXX these not yet duped */
11083     parser->old_parser = NULL;
11084     parser->stack = NULL;
11085     parser->ps = NULL;
11086     parser->stack_size = 0;
11087     /* XXX parser->stack->state = 0; */
11088
11089     /* XXX eventually, just Copy() most of the parser struct ? */
11090
11091     parser->lex_brackets = proto->lex_brackets;
11092     parser->lex_casemods = proto->lex_casemods;
11093     parser->lex_brackstack = savepvn(proto->lex_brackstack,
11094                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
11095     parser->lex_casestack = savepvn(proto->lex_casestack,
11096                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
11097     parser->lex_defer   = proto->lex_defer;
11098     parser->lex_dojoin  = proto->lex_dojoin;
11099     parser->lex_expect  = proto->lex_expect;
11100     parser->lex_formbrack = proto->lex_formbrack;
11101     parser->lex_inpat   = proto->lex_inpat;
11102     parser->lex_inwhat  = proto->lex_inwhat;
11103     parser->lex_op      = proto->lex_op;
11104     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
11105     parser->lex_starts  = proto->lex_starts;
11106     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
11107     parser->multi_close = proto->multi_close;
11108     parser->multi_open  = proto->multi_open;
11109     parser->multi_start = proto->multi_start;
11110     parser->multi_end   = proto->multi_end;
11111     parser->pending_ident = proto->pending_ident;
11112     parser->preambled   = proto->preambled;
11113     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
11114     parser->linestr     = sv_dup_inc(proto->linestr, param);
11115     parser->expect      = proto->expect;
11116     parser->copline     = proto->copline;
11117     parser->last_lop_op = proto->last_lop_op;
11118     parser->lex_state   = proto->lex_state;
11119     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
11120     /* rsfp_filters entries have fake IoDIRP() */
11121     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
11122     parser->in_my       = proto->in_my;
11123     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
11124     parser->error_count = proto->error_count;
11125
11126
11127     parser->linestr     = sv_dup_inc(proto->linestr, param);
11128
11129     {
11130         char * const ols = SvPVX(proto->linestr);
11131         char * const ls  = SvPVX(parser->linestr);
11132
11133         parser->bufptr      = ls + (proto->bufptr >= ols ?
11134                                     proto->bufptr -  ols : 0);
11135         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
11136                                     proto->oldbufptr -  ols : 0);
11137         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
11138                                     proto->oldoldbufptr -  ols : 0);
11139         parser->linestart   = ls + (proto->linestart >= ols ?
11140                                     proto->linestart -  ols : 0);
11141         parser->last_uni    = ls + (proto->last_uni >= ols ?
11142                                     proto->last_uni -  ols : 0);
11143         parser->last_lop    = ls + (proto->last_lop >= ols ?
11144                                     proto->last_lop -  ols : 0);
11145
11146         parser->bufend      = ls + SvCUR(parser->linestr);
11147     }
11148
11149     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
11150
11151
11152 #ifdef PERL_MAD
11153     parser->endwhite    = proto->endwhite;
11154     parser->faketokens  = proto->faketokens;
11155     parser->lasttoke    = proto->lasttoke;
11156     parser->nextwhite   = proto->nextwhite;
11157     parser->realtokenstart = proto->realtokenstart;
11158     parser->skipwhite   = proto->skipwhite;
11159     parser->thisclose   = proto->thisclose;
11160     parser->thismad     = proto->thismad;
11161     parser->thisopen    = proto->thisopen;
11162     parser->thisstuff   = proto->thisstuff;
11163     parser->thistoken   = proto->thistoken;
11164     parser->thiswhite   = proto->thiswhite;
11165
11166     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
11167     parser->curforce    = proto->curforce;
11168 #else
11169     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
11170     Copy(proto->nexttype, parser->nexttype, 5,  I32);
11171     parser->nexttoke    = proto->nexttoke;
11172 #endif
11173
11174     /* XXX should clone saved_curcop here, but we aren't passed
11175      * proto_perl; so do it in perl_clone_using instead */
11176
11177     return parser;
11178 }
11179
11180
11181 /* duplicate a file handle */
11182
11183 PerlIO *
11184 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
11185 {
11186     PerlIO *ret;
11187
11188     PERL_ARGS_ASSERT_FP_DUP;
11189     PERL_UNUSED_ARG(type);
11190
11191     if (!fp)
11192         return (PerlIO*)NULL;
11193
11194     /* look for it in the table first */
11195     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
11196     if (ret)
11197         return ret;
11198
11199     /* create anew and remember what it is */
11200     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
11201     ptr_table_store(PL_ptr_table, fp, ret);
11202     return ret;
11203 }
11204
11205 /* duplicate a directory handle */
11206
11207 DIR *
11208 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
11209 {
11210     DIR *ret;
11211
11212 #ifdef HAS_FCHDIR
11213     DIR *pwd;
11214     register const Direntry_t *dirent;
11215     char smallbuf[256];
11216     char *name = NULL;
11217     STRLEN len = -1;
11218     long pos;
11219 #endif
11220
11221     PERL_UNUSED_CONTEXT;
11222     PERL_ARGS_ASSERT_DIRP_DUP;
11223
11224     if (!dp)
11225         return (DIR*)NULL;
11226
11227     /* look for it in the table first */
11228     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
11229     if (ret)
11230         return ret;
11231
11232 #ifdef HAS_FCHDIR
11233
11234     PERL_UNUSED_ARG(param);
11235
11236     /* create anew */
11237
11238     /* open the current directory (so we can switch back) */
11239     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
11240
11241     /* chdir to our dir handle and open the present working directory */
11242     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
11243         PerlDir_close(pwd);
11244         return (DIR *)NULL;
11245     }
11246     /* Now we should have two dir handles pointing to the same dir. */
11247
11248     /* Be nice to the calling code and chdir back to where we were. */
11249     fchdir(my_dirfd(pwd)); /* If this fails, then what? */
11250
11251     /* We have no need of the pwd handle any more. */
11252     PerlDir_close(pwd);
11253
11254 #ifdef DIRNAMLEN
11255 # define d_namlen(d) (d)->d_namlen
11256 #else
11257 # define d_namlen(d) strlen((d)->d_name)
11258 #endif
11259     /* Iterate once through dp, to get the file name at the current posi-
11260        tion. Then step back. */
11261     pos = PerlDir_tell(dp);
11262     if ((dirent = PerlDir_read(dp))) {
11263         len = d_namlen(dirent);
11264         if (len <= sizeof smallbuf) name = smallbuf;
11265         else Newx(name, len, char);
11266         Move(dirent->d_name, name, len, char);
11267     }
11268     PerlDir_seek(dp, pos);
11269
11270     /* Iterate through the new dir handle, till we find a file with the
11271        right name. */
11272     if (!dirent) /* just before the end */
11273         for(;;) {
11274             pos = PerlDir_tell(ret);
11275             if (PerlDir_read(ret)) continue; /* not there yet */
11276             PerlDir_seek(ret, pos); /* step back */
11277             break;
11278         }
11279     else {
11280         const long pos0 = PerlDir_tell(ret);
11281         for(;;) {
11282             pos = PerlDir_tell(ret);
11283             if ((dirent = PerlDir_read(ret))) {
11284                 if (len == d_namlen(dirent)
11285                  && memEQ(name, dirent->d_name, len)) {
11286                     /* found it */
11287                     PerlDir_seek(ret, pos); /* step back */
11288                     break;
11289                 }
11290                 /* else we are not there yet; keep iterating */
11291             }
11292             else { /* This is not meant to happen. The best we can do is
11293                       reset the iterator to the beginning. */
11294                 PerlDir_seek(ret, pos0);
11295                 break;
11296             }
11297         }
11298     }
11299 #undef d_namlen
11300
11301     if (name && name != smallbuf)
11302         Safefree(name);
11303 #endif
11304
11305 #ifdef WIN32
11306     ret = win32_dirp_dup(dp, param);
11307 #endif
11308
11309     /* pop it in the pointer table */
11310     if (ret)
11311         ptr_table_store(PL_ptr_table, dp, ret);
11312
11313     return ret;
11314 }
11315
11316 /* duplicate a typeglob */
11317
11318 GP *
11319 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
11320 {
11321     GP *ret;
11322
11323     PERL_ARGS_ASSERT_GP_DUP;
11324
11325     if (!gp)
11326         return (GP*)NULL;
11327     /* look for it in the table first */
11328     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
11329     if (ret)
11330         return ret;
11331
11332     /* create anew and remember what it is */
11333     Newxz(ret, 1, GP);
11334     ptr_table_store(PL_ptr_table, gp, ret);
11335
11336     /* clone */
11337     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
11338        on Newxz() to do this for us.  */
11339     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
11340     ret->gp_io          = io_dup_inc(gp->gp_io, param);
11341     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
11342     ret->gp_av          = av_dup_inc(gp->gp_av, param);
11343     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
11344     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
11345     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
11346     ret->gp_cvgen       = gp->gp_cvgen;
11347     ret->gp_line        = gp->gp_line;
11348     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
11349     return ret;
11350 }
11351
11352 /* duplicate a chain of magic */
11353
11354 MAGIC *
11355 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
11356 {
11357     MAGIC *mgret = NULL;
11358     MAGIC **mgprev_p = &mgret;
11359
11360     PERL_ARGS_ASSERT_MG_DUP;
11361
11362     for (; mg; mg = mg->mg_moremagic) {
11363         MAGIC *nmg;
11364
11365         if ((param->flags & CLONEf_JOIN_IN)
11366                 && mg->mg_type == PERL_MAGIC_backref)
11367             /* when joining, we let the individual SVs add themselves to
11368              * backref as needed. */
11369             continue;
11370
11371         Newx(nmg, 1, MAGIC);
11372         *mgprev_p = nmg;
11373         mgprev_p = &(nmg->mg_moremagic);
11374
11375         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
11376            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
11377            from the original commit adding Perl_mg_dup() - revision 4538.
11378            Similarly there is the annotation "XXX random ptr?" next to the
11379            assignment to nmg->mg_ptr.  */
11380         *nmg = *mg;
11381
11382         /* FIXME for plugins
11383         if (nmg->mg_type == PERL_MAGIC_qr) {
11384             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
11385         }
11386         else
11387         */
11388         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
11389                           ? nmg->mg_type == PERL_MAGIC_backref
11390                                 /* The backref AV has its reference
11391                                  * count deliberately bumped by 1 */
11392                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
11393                                                     nmg->mg_obj, param))
11394                                 : sv_dup_inc(nmg->mg_obj, param)
11395                           : sv_dup(nmg->mg_obj, param);
11396
11397         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
11398             if (nmg->mg_len > 0) {
11399                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
11400                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
11401                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
11402                 {
11403                     AMT * const namtp = (AMT*)nmg->mg_ptr;
11404                     sv_dup_inc_multiple((SV**)(namtp->table),
11405                                         (SV**)(namtp->table), NofAMmeth, param);
11406                 }
11407             }
11408             else if (nmg->mg_len == HEf_SVKEY)
11409                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
11410         }
11411         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
11412             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
11413         }
11414     }
11415     return mgret;
11416 }
11417
11418 #endif /* USE_ITHREADS */
11419
11420 struct ptr_tbl_arena {
11421     struct ptr_tbl_arena *next;
11422     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
11423 };
11424
11425 /* create a new pointer-mapping table */
11426
11427 PTR_TBL_t *
11428 Perl_ptr_table_new(pTHX)
11429 {
11430     PTR_TBL_t *tbl;
11431     PERL_UNUSED_CONTEXT;
11432
11433     Newx(tbl, 1, PTR_TBL_t);
11434     tbl->tbl_max        = 511;
11435     tbl->tbl_items      = 0;
11436     tbl->tbl_arena      = NULL;
11437     tbl->tbl_arena_next = NULL;
11438     tbl->tbl_arena_end  = NULL;
11439     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
11440     return tbl;
11441 }
11442
11443 #define PTR_TABLE_HASH(ptr) \
11444   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
11445
11446 /* map an existing pointer using a table */
11447
11448 STATIC PTR_TBL_ENT_t *
11449 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
11450 {
11451     PTR_TBL_ENT_t *tblent;
11452     const UV hash = PTR_TABLE_HASH(sv);
11453
11454     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
11455
11456     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
11457     for (; tblent; tblent = tblent->next) {
11458         if (tblent->oldval == sv)
11459             return tblent;
11460     }
11461     return NULL;
11462 }
11463
11464 void *
11465 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
11466 {
11467     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
11468
11469     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
11470     PERL_UNUSED_CONTEXT;
11471
11472     return tblent ? tblent->newval : NULL;
11473 }
11474
11475 /* add a new entry to a pointer-mapping table */
11476
11477 void
11478 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
11479 {
11480     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
11481
11482     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
11483     PERL_UNUSED_CONTEXT;
11484
11485     if (tblent) {
11486         tblent->newval = newsv;
11487     } else {
11488         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
11489
11490         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
11491             struct ptr_tbl_arena *new_arena;
11492
11493             Newx(new_arena, 1, struct ptr_tbl_arena);
11494             new_arena->next = tbl->tbl_arena;
11495             tbl->tbl_arena = new_arena;
11496             tbl->tbl_arena_next = new_arena->array;
11497             tbl->tbl_arena_end = new_arena->array
11498                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
11499         }
11500
11501         tblent = tbl->tbl_arena_next++;
11502
11503         tblent->oldval = oldsv;
11504         tblent->newval = newsv;
11505         tblent->next = tbl->tbl_ary[entry];
11506         tbl->tbl_ary[entry] = tblent;
11507         tbl->tbl_items++;
11508         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
11509             ptr_table_split(tbl);
11510     }
11511 }
11512
11513 /* double the hash bucket size of an existing ptr table */
11514
11515 void
11516 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
11517 {
11518     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
11519     const UV oldsize = tbl->tbl_max + 1;
11520     UV newsize = oldsize * 2;
11521     UV i;
11522
11523     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
11524     PERL_UNUSED_CONTEXT;
11525
11526     Renew(ary, newsize, PTR_TBL_ENT_t*);
11527     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
11528     tbl->tbl_max = --newsize;
11529     tbl->tbl_ary = ary;
11530     for (i=0; i < oldsize; i++, ary++) {
11531         PTR_TBL_ENT_t **entp = ary;
11532         PTR_TBL_ENT_t *ent = *ary;
11533         PTR_TBL_ENT_t **curentp;
11534         if (!ent)
11535             continue;
11536         curentp = ary + oldsize;
11537         do {
11538             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
11539                 *entp = ent->next;
11540                 ent->next = *curentp;
11541                 *curentp = ent;
11542             }
11543             else
11544                 entp = &ent->next;
11545             ent = *entp;
11546         } while (ent);
11547     }
11548 }
11549
11550 /* remove all the entries from a ptr table */
11551 /* Deprecated - will be removed post 5.14 */
11552
11553 void
11554 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
11555 {
11556     if (tbl && tbl->tbl_items) {
11557         struct ptr_tbl_arena *arena = tbl->tbl_arena;
11558
11559         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
11560
11561         while (arena) {
11562             struct ptr_tbl_arena *next = arena->next;
11563
11564             Safefree(arena);
11565             arena = next;
11566         };
11567
11568         tbl->tbl_items = 0;
11569         tbl->tbl_arena = NULL;
11570         tbl->tbl_arena_next = NULL;
11571         tbl->tbl_arena_end = NULL;
11572     }
11573 }
11574
11575 /* clear and free a ptr table */
11576
11577 void
11578 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
11579 {
11580     struct ptr_tbl_arena *arena;
11581
11582     if (!tbl) {
11583         return;
11584     }
11585
11586     arena = tbl->tbl_arena;
11587
11588     while (arena) {
11589         struct ptr_tbl_arena *next = arena->next;
11590
11591         Safefree(arena);
11592         arena = next;
11593     }
11594
11595     Safefree(tbl->tbl_ary);
11596     Safefree(tbl);
11597 }
11598
11599 #if defined(USE_ITHREADS)
11600
11601 void
11602 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
11603 {
11604     PERL_ARGS_ASSERT_RVPV_DUP;
11605
11606     if (SvROK(sstr)) {
11607         if (SvWEAKREF(sstr)) {
11608             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
11609             if (param->flags & CLONEf_JOIN_IN) {
11610                 /* if joining, we add any back references individually rather
11611                  * than copying the whole backref array */
11612                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
11613             }
11614         }
11615         else
11616             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
11617     }
11618     else if (SvPVX_const(sstr)) {
11619         /* Has something there */
11620         if (SvLEN(sstr)) {
11621             /* Normal PV - clone whole allocated space */
11622             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
11623             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
11624                 /* Not that normal - actually sstr is copy on write.
11625                    But we are a true, independent SV, so:  */
11626                 SvREADONLY_off(dstr);
11627                 SvFAKE_off(dstr);
11628             }
11629         }
11630         else {
11631             /* Special case - not normally malloced for some reason */
11632             if (isGV_with_GP(sstr)) {
11633                 /* Don't need to do anything here.  */
11634             }
11635             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
11636                 /* A "shared" PV - clone it as "shared" PV */
11637                 SvPV_set(dstr,
11638                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
11639                                          param)));
11640             }
11641             else {
11642                 /* Some other special case - random pointer */
11643                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
11644             }
11645         }
11646     }
11647     else {
11648         /* Copy the NULL */
11649         SvPV_set(dstr, NULL);
11650     }
11651 }
11652
11653 /* duplicate a list of SVs. source and dest may point to the same memory.  */
11654 static SV **
11655 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
11656                       SSize_t items, CLONE_PARAMS *const param)
11657 {
11658     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
11659
11660     while (items-- > 0) {
11661         *dest++ = sv_dup_inc(*source++, param);
11662     }
11663
11664     return dest;
11665 }
11666
11667 /* duplicate an SV of any type (including AV, HV etc) */
11668
11669 static SV *
11670 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11671 {
11672     dVAR;
11673     SV *dstr;
11674
11675     PERL_ARGS_ASSERT_SV_DUP_COMMON;
11676
11677     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
11678 #ifdef DEBUG_LEAKING_SCALARS_ABORT
11679         abort();
11680 #endif
11681         return NULL;
11682     }
11683     /* look for it in the table first */
11684     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
11685     if (dstr)
11686         return dstr;
11687
11688     if(param->flags & CLONEf_JOIN_IN) {
11689         /** We are joining here so we don't want do clone
11690             something that is bad **/
11691         if (SvTYPE(sstr) == SVt_PVHV) {
11692             const HEK * const hvname = HvNAME_HEK(sstr);
11693             if (hvname) {
11694                 /** don't clone stashes if they already exist **/
11695                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname), 0));
11696                 ptr_table_store(PL_ptr_table, sstr, dstr);
11697                 return dstr;
11698             }
11699         }
11700     }
11701
11702     /* create anew and remember what it is */
11703     new_SV(dstr);
11704
11705 #ifdef DEBUG_LEAKING_SCALARS
11706     dstr->sv_debug_optype = sstr->sv_debug_optype;
11707     dstr->sv_debug_line = sstr->sv_debug_line;
11708     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
11709     dstr->sv_debug_parent = (SV*)sstr;
11710     FREE_SV_DEBUG_FILE(dstr);
11711     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
11712 #endif
11713
11714     ptr_table_store(PL_ptr_table, sstr, dstr);
11715
11716     /* clone */
11717     SvFLAGS(dstr)       = SvFLAGS(sstr);
11718     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
11719     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
11720
11721 #ifdef DEBUGGING
11722     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
11723         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
11724                       (void*)PL_watch_pvx, SvPVX_const(sstr));
11725 #endif
11726
11727     /* don't clone objects whose class has asked us not to */
11728     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
11729         SvFLAGS(dstr) = 0;
11730         return dstr;
11731     }
11732
11733     switch (SvTYPE(sstr)) {
11734     case SVt_NULL:
11735         SvANY(dstr)     = NULL;
11736         break;
11737     case SVt_IV:
11738         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
11739         if(SvROK(sstr)) {
11740             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11741         } else {
11742             SvIV_set(dstr, SvIVX(sstr));
11743         }
11744         break;
11745     case SVt_NV:
11746         SvANY(dstr)     = new_XNV();
11747         SvNV_set(dstr, SvNVX(sstr));
11748         break;
11749         /* case SVt_BIND: */
11750     default:
11751         {
11752             /* These are all the types that need complex bodies allocating.  */
11753             void *new_body;
11754             const svtype sv_type = SvTYPE(sstr);
11755             const struct body_details *const sv_type_details
11756                 = bodies_by_type + sv_type;
11757
11758             switch (sv_type) {
11759             default:
11760                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
11761                 break;
11762
11763             case SVt_PVGV:
11764             case SVt_PVIO:
11765             case SVt_PVFM:
11766             case SVt_PVHV:
11767             case SVt_PVAV:
11768             case SVt_PVCV:
11769             case SVt_PVLV:
11770             case SVt_REGEXP:
11771             case SVt_PVMG:
11772             case SVt_PVNV:
11773             case SVt_PVIV:
11774             case SVt_PV:
11775                 assert(sv_type_details->body_size);
11776                 if (sv_type_details->arena) {
11777                     new_body_inline(new_body, sv_type);
11778                     new_body
11779                         = (void*)((char*)new_body - sv_type_details->offset);
11780                 } else {
11781                     new_body = new_NOARENA(sv_type_details);
11782                 }
11783             }
11784             assert(new_body);
11785             SvANY(dstr) = new_body;
11786
11787 #ifndef PURIFY
11788             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
11789                  ((char*)SvANY(dstr)) + sv_type_details->offset,
11790                  sv_type_details->copy, char);
11791 #else
11792             Copy(((char*)SvANY(sstr)),
11793                  ((char*)SvANY(dstr)),
11794                  sv_type_details->body_size + sv_type_details->offset, char);
11795 #endif
11796
11797             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
11798                 && !isGV_with_GP(dstr)
11799                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
11800                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11801
11802             /* The Copy above means that all the source (unduplicated) pointers
11803                are now in the destination.  We can check the flags and the
11804                pointers in either, but it's possible that there's less cache
11805                missing by always going for the destination.
11806                FIXME - instrument and check that assumption  */
11807             if (sv_type >= SVt_PVMG) {
11808                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
11809                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
11810                 } else if (SvMAGIC(dstr))
11811                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
11812                 if (SvSTASH(dstr))
11813                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
11814             }
11815
11816             /* The cast silences a GCC warning about unhandled types.  */
11817             switch ((int)sv_type) {
11818             case SVt_PV:
11819                 break;
11820             case SVt_PVIV:
11821                 break;
11822             case SVt_PVNV:
11823                 break;
11824             case SVt_PVMG:
11825                 break;
11826             case SVt_REGEXP:
11827                 /* FIXME for plugins */
11828                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
11829                 break;
11830             case SVt_PVLV:
11831                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
11832                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
11833                     LvTARG(dstr) = dstr;
11834                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
11835                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
11836                 else
11837                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
11838             case SVt_PVGV:
11839                 /* non-GP case already handled above */
11840                 if(isGV_with_GP(sstr)) {
11841                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
11842                     /* Don't call sv_add_backref here as it's going to be
11843                        created as part of the magic cloning of the symbol
11844                        table--unless this is during a join and the stash
11845                        is not actually being cloned.  */
11846                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
11847                        at the point of this comment.  */
11848                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
11849                     if (param->flags & CLONEf_JOIN_IN)
11850                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
11851                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
11852                     (void)GpREFCNT_inc(GvGP(dstr));
11853                 }
11854                 break;
11855             case SVt_PVIO:
11856                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
11857                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
11858                     /* I have no idea why fake dirp (rsfps)
11859                        should be treated differently but otherwise
11860                        we end up with leaks -- sky*/
11861                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
11862                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
11863                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
11864                 } else {
11865                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
11866                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
11867                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
11868                     if (IoDIRP(dstr)) {
11869                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
11870                     } else {
11871                         NOOP;
11872                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
11873                     }
11874                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
11875                 }
11876                 if (IoOFP(dstr) == IoIFP(sstr))
11877                     IoOFP(dstr) = IoIFP(dstr);
11878                 else
11879                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
11880                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
11881                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
11882                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
11883                 break;
11884             case SVt_PVAV:
11885                 /* avoid cloning an empty array */
11886                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
11887                     SV **dst_ary, **src_ary;
11888                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
11889
11890                     src_ary = AvARRAY((const AV *)sstr);
11891                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
11892                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
11893                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
11894                     AvALLOC((const AV *)dstr) = dst_ary;
11895                     if (AvREAL((const AV *)sstr)) {
11896                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
11897                                                       param);
11898                     }
11899                     else {
11900                         while (items-- > 0)
11901                             *dst_ary++ = sv_dup(*src_ary++, param);
11902                     }
11903                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
11904                     while (items-- > 0) {
11905                         *dst_ary++ = &PL_sv_undef;
11906                     }
11907                 }
11908                 else {
11909                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
11910                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
11911                     AvMAX(  (const AV *)dstr)   = -1;
11912                     AvFILLp((const AV *)dstr)   = -1;
11913                 }
11914                 break;
11915             case SVt_PVHV:
11916                 if (HvARRAY((const HV *)sstr)) {
11917                     STRLEN i = 0;
11918                     const bool sharekeys = !!HvSHAREKEYS(sstr);
11919                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
11920                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
11921                     char *darray;
11922                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
11923                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
11924                         char);
11925                     HvARRAY(dstr) = (HE**)darray;
11926                     while (i <= sxhv->xhv_max) {
11927                         const HE * const source = HvARRAY(sstr)[i];
11928                         HvARRAY(dstr)[i] = source
11929                             ? he_dup(source, sharekeys, param) : 0;
11930                         ++i;
11931                     }
11932                     if (SvOOK(sstr)) {
11933                         const struct xpvhv_aux * const saux = HvAUX(sstr);
11934                         struct xpvhv_aux * const daux = HvAUX(dstr);
11935                         /* This flag isn't copied.  */
11936                         /* SvOOK_on(hv) attacks the IV flags.  */
11937                         SvFLAGS(dstr) |= SVf_OOK;
11938
11939                         if (saux->xhv_name_count) {
11940                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
11941                             const I32 count
11942                              = saux->xhv_name_count < 0
11943                                 ? -saux->xhv_name_count
11944                                 :  saux->xhv_name_count;
11945                             HEK **shekp = sname + count;
11946                             HEK **dhekp;
11947                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
11948                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
11949                             while (shekp-- > sname) {
11950                                 dhekp--;
11951                                 *dhekp = hek_dup(*shekp, param);
11952                             }
11953                         }
11954                         else {
11955                             daux->xhv_name_u.xhvnameu_name
11956                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
11957                                           param);
11958                         }
11959                         daux->xhv_name_count = saux->xhv_name_count;
11960
11961                         daux->xhv_riter = saux->xhv_riter;
11962                         daux->xhv_eiter = saux->xhv_eiter
11963                             ? he_dup(saux->xhv_eiter,
11964                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
11965                         /* backref array needs refcnt=2; see sv_add_backref */
11966                         daux->xhv_backreferences =
11967                             (param->flags & CLONEf_JOIN_IN)
11968                                 /* when joining, we let the individual GVs and
11969                                  * CVs add themselves to backref as
11970                                  * needed. This avoids pulling in stuff
11971                                  * that isn't required, and simplifies the
11972                                  * case where stashes aren't cloned back
11973                                  * if they already exist in the parent
11974                                  * thread */
11975                             ? NULL
11976                             : saux->xhv_backreferences
11977                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
11978                                     ? MUTABLE_AV(SvREFCNT_inc(
11979                                           sv_dup_inc((const SV *)
11980                                             saux->xhv_backreferences, param)))
11981                                     : MUTABLE_AV(sv_dup((const SV *)
11982                                             saux->xhv_backreferences, param))
11983                                 : 0;
11984
11985                         daux->xhv_mro_meta = saux->xhv_mro_meta
11986                             ? mro_meta_dup(saux->xhv_mro_meta, param)
11987                             : 0;
11988
11989                         /* Record stashes for possible cloning in Perl_clone(). */
11990                         if (HvNAME(sstr))
11991                             av_push(param->stashes, dstr);
11992                     }
11993                 }
11994                 else
11995                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
11996                 break;
11997             case SVt_PVCV:
11998                 if (!(param->flags & CLONEf_COPY_STACKS)) {
11999                     CvDEPTH(dstr) = 0;
12000                 }
12001                 /*FALLTHROUGH*/
12002             case SVt_PVFM:
12003                 /* NOTE: not refcounted */
12004                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
12005                     hv_dup(CvSTASH(dstr), param);
12006                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
12007                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
12008                 if (!CvISXSUB(dstr)) {
12009                     OP_REFCNT_LOCK;
12010                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
12011                     OP_REFCNT_UNLOCK;
12012                 } else if (CvCONST(dstr)) {
12013                     CvXSUBANY(dstr).any_ptr =
12014                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
12015                 }
12016                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
12017                 /* don't dup if copying back - CvGV isn't refcounted, so the
12018                  * duped GV may never be freed. A bit of a hack! DAPM */
12019                 SvANY(MUTABLE_CV(dstr))->xcv_gv =
12020                     CvCVGV_RC(dstr)
12021                     ? gv_dup_inc(CvGV(sstr), param)
12022                     : (param->flags & CLONEf_JOIN_IN)
12023                         ? NULL
12024                         : gv_dup(CvGV(sstr), param);
12025
12026                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
12027                 CvOUTSIDE(dstr) =
12028                     CvWEAKOUTSIDE(sstr)
12029                     ? cv_dup(    CvOUTSIDE(dstr), param)
12030                     : cv_dup_inc(CvOUTSIDE(dstr), param);
12031                 break;
12032             }
12033         }
12034     }
12035
12036     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
12037         ++PL_sv_objcount;
12038
12039     return dstr;
12040  }
12041
12042 SV *
12043 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12044 {
12045     PERL_ARGS_ASSERT_SV_DUP_INC;
12046     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
12047 }
12048
12049 SV *
12050 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12051 {
12052     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
12053     PERL_ARGS_ASSERT_SV_DUP;
12054
12055     /* Track every SV that (at least initially) had a reference count of 0.
12056        We need to do this by holding an actual reference to it in this array.
12057        If we attempt to cheat, turn AvREAL_off(), and store only pointers
12058        (akin to the stashes hash, and the perl stack), we come unstuck if
12059        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
12060        thread) is manipulated in a CLONE method, because CLONE runs before the
12061        unreferenced array is walked to find SVs still with SvREFCNT() == 0
12062        (and fix things up by giving each a reference via the temps stack).
12063        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
12064        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
12065        before the walk of unreferenced happens and a reference to that is SV
12066        added to the temps stack. At which point we have the same SV considered
12067        to be in use, and free to be re-used. Not good.
12068     */
12069     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
12070         assert(param->unreferenced);
12071         av_push(param->unreferenced, SvREFCNT_inc(dstr));
12072     }
12073
12074     return dstr;
12075 }
12076
12077 /* duplicate a context */
12078
12079 PERL_CONTEXT *
12080 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
12081 {
12082     PERL_CONTEXT *ncxs;
12083
12084     PERL_ARGS_ASSERT_CX_DUP;
12085
12086     if (!cxs)
12087         return (PERL_CONTEXT*)NULL;
12088
12089     /* look for it in the table first */
12090     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
12091     if (ncxs)
12092         return ncxs;
12093
12094     /* create anew and remember what it is */
12095     Newx(ncxs, max + 1, PERL_CONTEXT);
12096     ptr_table_store(PL_ptr_table, cxs, ncxs);
12097     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
12098
12099     while (ix >= 0) {
12100         PERL_CONTEXT * const ncx = &ncxs[ix];
12101         if (CxTYPE(ncx) == CXt_SUBST) {
12102             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
12103         }
12104         else {
12105             switch (CxTYPE(ncx)) {
12106             case CXt_SUB:
12107                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
12108                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
12109                                            : cv_dup(ncx->blk_sub.cv,param));
12110                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
12111                                            ? av_dup_inc(ncx->blk_sub.argarray,
12112                                                         param)
12113                                            : NULL);
12114                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
12115                                                      param);
12116                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
12117                                            ncx->blk_sub.oldcomppad);
12118                 break;
12119             case CXt_EVAL:
12120                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
12121                                                       param);
12122                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
12123                 break;
12124             case CXt_LOOP_LAZYSV:
12125                 ncx->blk_loop.state_u.lazysv.end
12126                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
12127                 /* We are taking advantage of av_dup_inc and sv_dup_inc
12128                    actually being the same function, and order equivalence of
12129                    the two unions.
12130                    We can assert the later [but only at run time :-(]  */
12131                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
12132                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
12133             case CXt_LOOP_FOR:
12134                 ncx->blk_loop.state_u.ary.ary
12135                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
12136             case CXt_LOOP_LAZYIV:
12137             case CXt_LOOP_PLAIN:
12138                 if (CxPADLOOP(ncx)) {
12139                     ncx->blk_loop.itervar_u.oldcomppad
12140                         = (PAD*)ptr_table_fetch(PL_ptr_table,
12141                                         ncx->blk_loop.itervar_u.oldcomppad);
12142                 } else {
12143                     ncx->blk_loop.itervar_u.gv
12144                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
12145                                     param);
12146                 }
12147                 break;
12148             case CXt_FORMAT:
12149                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
12150                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
12151                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
12152                                                      param);
12153                 break;
12154             case CXt_BLOCK:
12155             case CXt_NULL:
12156                 break;
12157             }
12158         }
12159         --ix;
12160     }
12161     return ncxs;
12162 }
12163
12164 /* duplicate a stack info structure */
12165
12166 PERL_SI *
12167 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
12168 {
12169     PERL_SI *nsi;
12170
12171     PERL_ARGS_ASSERT_SI_DUP;
12172
12173     if (!si)
12174         return (PERL_SI*)NULL;
12175
12176     /* look for it in the table first */
12177     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
12178     if (nsi)
12179         return nsi;
12180
12181     /* create anew and remember what it is */
12182     Newxz(nsi, 1, PERL_SI);
12183     ptr_table_store(PL_ptr_table, si, nsi);
12184
12185     nsi->si_stack       = av_dup_inc(si->si_stack, param);
12186     nsi->si_cxix        = si->si_cxix;
12187     nsi->si_cxmax       = si->si_cxmax;
12188     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
12189     nsi->si_type        = si->si_type;
12190     nsi->si_prev        = si_dup(si->si_prev, param);
12191     nsi->si_next        = si_dup(si->si_next, param);
12192     nsi->si_markoff     = si->si_markoff;
12193
12194     return nsi;
12195 }
12196
12197 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
12198 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
12199 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
12200 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
12201 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
12202 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
12203 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
12204 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
12205 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
12206 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
12207 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
12208 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
12209 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
12210 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
12211 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
12212 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
12213
12214 /* XXXXX todo */
12215 #define pv_dup_inc(p)   SAVEPV(p)
12216 #define pv_dup(p)       SAVEPV(p)
12217 #define svp_dup_inc(p,pp)       any_dup(p,pp)
12218
12219 /* map any object to the new equivent - either something in the
12220  * ptr table, or something in the interpreter structure
12221  */
12222
12223 void *
12224 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
12225 {
12226     void *ret;
12227
12228     PERL_ARGS_ASSERT_ANY_DUP;
12229
12230     if (!v)
12231         return (void*)NULL;
12232
12233     /* look for it in the table first */
12234     ret = ptr_table_fetch(PL_ptr_table, v);
12235     if (ret)
12236         return ret;
12237
12238     /* see if it is part of the interpreter structure */
12239     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
12240         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
12241     else {
12242         ret = v;
12243     }
12244
12245     return ret;
12246 }
12247
12248 /* duplicate the save stack */
12249
12250 ANY *
12251 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
12252 {
12253     dVAR;
12254     ANY * const ss      = proto_perl->Isavestack;
12255     const I32 max       = proto_perl->Isavestack_max;
12256     I32 ix              = proto_perl->Isavestack_ix;
12257     ANY *nss;
12258     const SV *sv;
12259     const GV *gv;
12260     const AV *av;
12261     const HV *hv;
12262     void* ptr;
12263     int intval;
12264     long longval;
12265     GP *gp;
12266     IV iv;
12267     I32 i;
12268     char *c = NULL;
12269     void (*dptr) (void*);
12270     void (*dxptr) (pTHX_ void*);
12271
12272     PERL_ARGS_ASSERT_SS_DUP;
12273
12274     Newxz(nss, max, ANY);
12275
12276     while (ix > 0) {
12277         const UV uv = POPUV(ss,ix);
12278         const U8 type = (U8)uv & SAVE_MASK;
12279
12280         TOPUV(nss,ix) = uv;
12281         switch (type) {
12282         case SAVEt_CLEARSV:
12283             break;
12284         case SAVEt_HELEM:               /* hash element */
12285             sv = (const SV *)POPPTR(ss,ix);
12286             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12287             /* fall through */
12288         case SAVEt_ITEM:                        /* normal string */
12289         case SAVEt_GVSV:                        /* scalar slot in GV */
12290         case SAVEt_SV:                          /* scalar reference */
12291             sv = (const SV *)POPPTR(ss,ix);
12292             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12293             /* fall through */
12294         case SAVEt_FREESV:
12295         case SAVEt_MORTALIZESV:
12296             sv = (const SV *)POPPTR(ss,ix);
12297             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12298             break;
12299         case SAVEt_SHARED_PVREF:                /* char* in shared space */
12300             c = (char*)POPPTR(ss,ix);
12301             TOPPTR(nss,ix) = savesharedpv(c);
12302             ptr = POPPTR(ss,ix);
12303             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12304             break;
12305         case SAVEt_GENERIC_SVREF:               /* generic sv */
12306         case SAVEt_SVREF:                       /* scalar reference */
12307             sv = (const SV *)POPPTR(ss,ix);
12308             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12309             ptr = POPPTR(ss,ix);
12310             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12311             break;
12312         case SAVEt_HV:                          /* hash reference */
12313         case SAVEt_AV:                          /* array reference */
12314             sv = (const SV *) POPPTR(ss,ix);
12315             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12316             /* fall through */
12317         case SAVEt_COMPPAD:
12318         case SAVEt_NSTAB:
12319             sv = (const SV *) POPPTR(ss,ix);
12320             TOPPTR(nss,ix) = sv_dup(sv, param);
12321             break;
12322         case SAVEt_INT:                         /* int reference */
12323             ptr = POPPTR(ss,ix);
12324             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12325             intval = (int)POPINT(ss,ix);
12326             TOPINT(nss,ix) = intval;
12327             break;
12328         case SAVEt_LONG:                        /* long reference */
12329             ptr = POPPTR(ss,ix);
12330             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12331             longval = (long)POPLONG(ss,ix);
12332             TOPLONG(nss,ix) = longval;
12333             break;
12334         case SAVEt_I32:                         /* I32 reference */
12335             ptr = POPPTR(ss,ix);
12336             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12337             i = POPINT(ss,ix);
12338             TOPINT(nss,ix) = i;
12339             break;
12340         case SAVEt_IV:                          /* IV reference */
12341             ptr = POPPTR(ss,ix);
12342             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12343             iv = POPIV(ss,ix);
12344             TOPIV(nss,ix) = iv;
12345             break;
12346         case SAVEt_HPTR:                        /* HV* reference */
12347         case SAVEt_APTR:                        /* AV* reference */
12348         case SAVEt_SPTR:                        /* SV* reference */
12349             ptr = POPPTR(ss,ix);
12350             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12351             sv = (const SV *)POPPTR(ss,ix);
12352             TOPPTR(nss,ix) = sv_dup(sv, param);
12353             break;
12354         case SAVEt_VPTR:                        /* random* reference */
12355             ptr = POPPTR(ss,ix);
12356             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12357             /* Fall through */
12358         case SAVEt_INT_SMALL:
12359         case SAVEt_I32_SMALL:
12360         case SAVEt_I16:                         /* I16 reference */
12361         case SAVEt_I8:                          /* I8 reference */
12362         case SAVEt_BOOL:
12363             ptr = POPPTR(ss,ix);
12364             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12365             break;
12366         case SAVEt_GENERIC_PVREF:               /* generic char* */
12367         case SAVEt_PPTR:                        /* char* reference */
12368             ptr = POPPTR(ss,ix);
12369             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12370             c = (char*)POPPTR(ss,ix);
12371             TOPPTR(nss,ix) = pv_dup(c);
12372             break;
12373         case SAVEt_GP:                          /* scalar reference */
12374             gp = (GP*)POPPTR(ss,ix);
12375             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
12376             (void)GpREFCNT_inc(gp);
12377             gv = (const GV *)POPPTR(ss,ix);
12378             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
12379             break;
12380         case SAVEt_FREEOP:
12381             ptr = POPPTR(ss,ix);
12382             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
12383                 /* these are assumed to be refcounted properly */
12384                 OP *o;
12385                 switch (((OP*)ptr)->op_type) {
12386                 case OP_LEAVESUB:
12387                 case OP_LEAVESUBLV:
12388                 case OP_LEAVEEVAL:
12389                 case OP_LEAVE:
12390                 case OP_SCOPE:
12391                 case OP_LEAVEWRITE:
12392                     TOPPTR(nss,ix) = ptr;
12393                     o = (OP*)ptr;
12394                     OP_REFCNT_LOCK;
12395                     (void) OpREFCNT_inc(o);
12396                     OP_REFCNT_UNLOCK;
12397                     break;
12398                 default:
12399                     TOPPTR(nss,ix) = NULL;
12400                     break;
12401                 }
12402             }
12403             else
12404                 TOPPTR(nss,ix) = NULL;
12405             break;
12406         case SAVEt_FREECOPHH:
12407             ptr = POPPTR(ss,ix);
12408             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
12409             break;
12410         case SAVEt_DELETE:
12411             hv = (const HV *)POPPTR(ss,ix);
12412             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12413             i = POPINT(ss,ix);
12414             TOPINT(nss,ix) = i;
12415             /* Fall through */
12416         case SAVEt_FREEPV:
12417             c = (char*)POPPTR(ss,ix);
12418             TOPPTR(nss,ix) = pv_dup_inc(c);
12419             break;
12420         case SAVEt_STACK_POS:           /* Position on Perl stack */
12421             i = POPINT(ss,ix);
12422             TOPINT(nss,ix) = i;
12423             break;
12424         case SAVEt_DESTRUCTOR:
12425             ptr = POPPTR(ss,ix);
12426             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12427             dptr = POPDPTR(ss,ix);
12428             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
12429                                         any_dup(FPTR2DPTR(void *, dptr),
12430                                                 proto_perl));
12431             break;
12432         case SAVEt_DESTRUCTOR_X:
12433             ptr = POPPTR(ss,ix);
12434             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12435             dxptr = POPDXPTR(ss,ix);
12436             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
12437                                          any_dup(FPTR2DPTR(void *, dxptr),
12438                                                  proto_perl));
12439             break;
12440         case SAVEt_REGCONTEXT:
12441         case SAVEt_ALLOC:
12442             ix -= uv >> SAVE_TIGHT_SHIFT;
12443             break;
12444         case SAVEt_AELEM:               /* array element */
12445             sv = (const SV *)POPPTR(ss,ix);
12446             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12447             i = POPINT(ss,ix);
12448             TOPINT(nss,ix) = i;
12449             av = (const AV *)POPPTR(ss,ix);
12450             TOPPTR(nss,ix) = av_dup_inc(av, param);
12451             break;
12452         case SAVEt_OP:
12453             ptr = POPPTR(ss,ix);
12454             TOPPTR(nss,ix) = ptr;
12455             break;
12456         case SAVEt_HINTS:
12457             ptr = POPPTR(ss,ix);
12458             ptr = cophh_copy((COPHH*)ptr);
12459             TOPPTR(nss,ix) = ptr;
12460             i = POPINT(ss,ix);
12461             TOPINT(nss,ix) = i;
12462             if (i & HINT_LOCALIZE_HH) {
12463                 hv = (const HV *)POPPTR(ss,ix);
12464                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12465             }
12466             break;
12467         case SAVEt_PADSV_AND_MORTALIZE:
12468             longval = (long)POPLONG(ss,ix);
12469             TOPLONG(nss,ix) = longval;
12470             ptr = POPPTR(ss,ix);
12471             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12472             sv = (const SV *)POPPTR(ss,ix);
12473             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12474             break;
12475         case SAVEt_SET_SVFLAGS:
12476             i = POPINT(ss,ix);
12477             TOPINT(nss,ix) = i;
12478             i = POPINT(ss,ix);
12479             TOPINT(nss,ix) = i;
12480             sv = (const SV *)POPPTR(ss,ix);
12481             TOPPTR(nss,ix) = sv_dup(sv, param);
12482             break;
12483         case SAVEt_RE_STATE:
12484             {
12485                 const struct re_save_state *const old_state
12486                     = (struct re_save_state *)
12487                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12488                 struct re_save_state *const new_state
12489                     = (struct re_save_state *)
12490                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12491
12492                 Copy(old_state, new_state, 1, struct re_save_state);
12493                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
12494
12495                 new_state->re_state_bostr
12496                     = pv_dup(old_state->re_state_bostr);
12497                 new_state->re_state_reginput
12498                     = pv_dup(old_state->re_state_reginput);
12499                 new_state->re_state_regeol
12500                     = pv_dup(old_state->re_state_regeol);
12501                 new_state->re_state_regoffs
12502                     = (regexp_paren_pair*)
12503                         any_dup(old_state->re_state_regoffs, proto_perl);
12504                 new_state->re_state_reglastparen
12505                     = (U32*) any_dup(old_state->re_state_reglastparen, 
12506                               proto_perl);
12507                 new_state->re_state_reglastcloseparen
12508                     = (U32*)any_dup(old_state->re_state_reglastcloseparen,
12509                               proto_perl);
12510                 /* XXX This just has to be broken. The old save_re_context
12511                    code did SAVEGENERICPV(PL_reg_start_tmp);
12512                    PL_reg_start_tmp is char **.
12513                    Look above to what the dup code does for
12514                    SAVEt_GENERIC_PVREF
12515                    It can never have worked.
12516                    So this is merely a faithful copy of the exiting bug:  */
12517                 new_state->re_state_reg_start_tmp
12518                     = (char **) pv_dup((char *)
12519                                       old_state->re_state_reg_start_tmp);
12520                 /* I assume that it only ever "worked" because no-one called
12521                    (pseudo)fork while the regexp engine had re-entered itself.
12522                 */
12523 #ifdef PERL_OLD_COPY_ON_WRITE
12524                 new_state->re_state_nrs
12525                     = sv_dup(old_state->re_state_nrs, param);
12526 #endif
12527                 new_state->re_state_reg_magic
12528                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
12529                                proto_perl);
12530                 new_state->re_state_reg_oldcurpm
12531                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
12532                               proto_perl);
12533                 new_state->re_state_reg_curpm
12534                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
12535                                proto_perl);
12536                 new_state->re_state_reg_oldsaved
12537                     = pv_dup(old_state->re_state_reg_oldsaved);
12538                 new_state->re_state_reg_poscache
12539                     = pv_dup(old_state->re_state_reg_poscache);
12540                 new_state->re_state_reg_starttry
12541                     = pv_dup(old_state->re_state_reg_starttry);
12542                 break;
12543             }
12544         case SAVEt_COMPILE_WARNINGS:
12545             ptr = POPPTR(ss,ix);
12546             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
12547             break;
12548         case SAVEt_PARSER:
12549             ptr = POPPTR(ss,ix);
12550             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
12551             break;
12552         default:
12553             Perl_croak(aTHX_
12554                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
12555         }
12556     }
12557
12558     return nss;
12559 }
12560
12561
12562 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
12563  * flag to the result. This is done for each stash before cloning starts,
12564  * so we know which stashes want their objects cloned */
12565
12566 static void
12567 do_mark_cloneable_stash(pTHX_ SV *const sv)
12568 {
12569     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
12570     if (hvname) {
12571         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
12572         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
12573         if (cloner && GvCV(cloner)) {
12574             dSP;
12575             UV status;
12576
12577             ENTER;
12578             SAVETMPS;
12579             PUSHMARK(SP);
12580             mXPUSHs(newSVhek(hvname));
12581             PUTBACK;
12582             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
12583             SPAGAIN;
12584             status = POPu;
12585             PUTBACK;
12586             FREETMPS;
12587             LEAVE;
12588             if (status)
12589                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
12590         }
12591     }
12592 }
12593
12594
12595
12596 /*
12597 =for apidoc perl_clone
12598
12599 Create and return a new interpreter by cloning the current one.
12600
12601 perl_clone takes these flags as parameters:
12602
12603 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
12604 without it we only clone the data and zero the stacks,
12605 with it we copy the stacks and the new perl interpreter is
12606 ready to run at the exact same point as the previous one.
12607 The pseudo-fork code uses COPY_STACKS while the
12608 threads->create doesn't.
12609
12610 CLONEf_KEEP_PTR_TABLE
12611 perl_clone keeps a ptr_table with the pointer of the old
12612 variable as a key and the new variable as a value,
12613 this allows it to check if something has been cloned and not
12614 clone it again but rather just use the value and increase the
12615 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
12616 the ptr_table using the function
12617 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
12618 reason to keep it around is if you want to dup some of your own
12619 variable who are outside the graph perl scans, example of this
12620 code is in threads.xs create
12621
12622 CLONEf_CLONE_HOST
12623 This is a win32 thing, it is ignored on unix, it tells perls
12624 win32host code (which is c++) to clone itself, this is needed on
12625 win32 if you want to run two threads at the same time,
12626 if you just want to do some stuff in a separate perl interpreter
12627 and then throw it away and return to the original one,
12628 you don't need to do anything.
12629
12630 =cut
12631 */
12632
12633 /* XXX the above needs expanding by someone who actually understands it ! */
12634 EXTERN_C PerlInterpreter *
12635 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
12636
12637 PerlInterpreter *
12638 perl_clone(PerlInterpreter *proto_perl, UV flags)
12639 {
12640    dVAR;
12641 #ifdef PERL_IMPLICIT_SYS
12642
12643     PERL_ARGS_ASSERT_PERL_CLONE;
12644
12645    /* perlhost.h so we need to call into it
12646    to clone the host, CPerlHost should have a c interface, sky */
12647
12648    if (flags & CLONEf_CLONE_HOST) {
12649        return perl_clone_host(proto_perl,flags);
12650    }
12651    return perl_clone_using(proto_perl, flags,
12652                             proto_perl->IMem,
12653                             proto_perl->IMemShared,
12654                             proto_perl->IMemParse,
12655                             proto_perl->IEnv,
12656                             proto_perl->IStdIO,
12657                             proto_perl->ILIO,
12658                             proto_perl->IDir,
12659                             proto_perl->ISock,
12660                             proto_perl->IProc);
12661 }
12662
12663 PerlInterpreter *
12664 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
12665                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
12666                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
12667                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
12668                  struct IPerlDir* ipD, struct IPerlSock* ipS,
12669                  struct IPerlProc* ipP)
12670 {
12671     /* XXX many of the string copies here can be optimized if they're
12672      * constants; they need to be allocated as common memory and just
12673      * their pointers copied. */
12674
12675     IV i;
12676     CLONE_PARAMS clone_params;
12677     CLONE_PARAMS* const param = &clone_params;
12678
12679     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
12680
12681     PERL_ARGS_ASSERT_PERL_CLONE_USING;
12682 #else           /* !PERL_IMPLICIT_SYS */
12683     IV i;
12684     CLONE_PARAMS clone_params;
12685     CLONE_PARAMS* param = &clone_params;
12686     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
12687
12688     PERL_ARGS_ASSERT_PERL_CLONE;
12689 #endif          /* PERL_IMPLICIT_SYS */
12690
12691     /* for each stash, determine whether its objects should be cloned */
12692     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
12693     PERL_SET_THX(my_perl);
12694
12695 #ifdef DEBUGGING
12696     PoisonNew(my_perl, 1, PerlInterpreter);
12697     PL_op = NULL;
12698     PL_curcop = NULL;
12699     PL_defstash = NULL; /* may be used by perl malloc() */
12700     PL_markstack = 0;
12701     PL_scopestack = 0;
12702     PL_scopestack_name = 0;
12703     PL_savestack = 0;
12704     PL_savestack_ix = 0;
12705     PL_savestack_max = -1;
12706     PL_sig_pending = 0;
12707     PL_parser = NULL;
12708     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
12709 #  ifdef DEBUG_LEAKING_SCALARS
12710     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
12711 #  endif
12712 #else   /* !DEBUGGING */
12713     Zero(my_perl, 1, PerlInterpreter);
12714 #endif  /* DEBUGGING */
12715
12716 #ifdef PERL_IMPLICIT_SYS
12717     /* host pointers */
12718     PL_Mem              = ipM;
12719     PL_MemShared        = ipMS;
12720     PL_MemParse         = ipMP;
12721     PL_Env              = ipE;
12722     PL_StdIO            = ipStd;
12723     PL_LIO              = ipLIO;
12724     PL_Dir              = ipD;
12725     PL_Sock             = ipS;
12726     PL_Proc             = ipP;
12727 #endif          /* PERL_IMPLICIT_SYS */
12728
12729     param->flags = flags;
12730     /* Nothing in the core code uses this, but we make it available to
12731        extensions (using mg_dup).  */
12732     param->proto_perl = proto_perl;
12733     /* Likely nothing will use this, but it is initialised to be consistent
12734        with Perl_clone_params_new().  */
12735     param->new_perl = my_perl;
12736     param->unreferenced = NULL;
12737
12738     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
12739
12740     PL_body_arenas = NULL;
12741     Zero(&PL_body_roots, 1, PL_body_roots);
12742     
12743     PL_sv_count         = 0;
12744     PL_sv_objcount      = 0;
12745     PL_sv_root          = NULL;
12746     PL_sv_arenaroot     = NULL;
12747
12748     PL_debug            = proto_perl->Idebug;
12749
12750     PL_hash_seed        = proto_perl->Ihash_seed;
12751     PL_rehash_seed      = proto_perl->Irehash_seed;
12752
12753     SvANY(&PL_sv_undef)         = NULL;
12754     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
12755     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
12756     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
12757     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12758                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12759
12760     SvANY(&PL_sv_yes)           = new_XPVNV();
12761     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
12762     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12763                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12764
12765     /* dbargs array probably holds garbage */
12766     PL_dbargs           = NULL;
12767
12768     PL_compiling = proto_perl->Icompiling;
12769
12770 #ifdef PERL_DEBUG_READONLY_OPS
12771     PL_slabs = NULL;
12772     PL_slab_count = 0;
12773 #endif
12774
12775     /* pseudo environmental stuff */
12776     PL_origargc         = proto_perl->Iorigargc;
12777     PL_origargv         = proto_perl->Iorigargv;
12778
12779     /* Set tainting stuff before PerlIO_debug can possibly get called */
12780     PL_tainting         = proto_perl->Itainting;
12781     PL_taint_warn       = proto_perl->Itaint_warn;
12782
12783     PL_minus_c          = proto_perl->Iminus_c;
12784
12785     PL_localpatches     = proto_perl->Ilocalpatches;
12786     PL_splitstr         = proto_perl->Isplitstr;
12787     PL_minus_n          = proto_perl->Iminus_n;
12788     PL_minus_p          = proto_perl->Iminus_p;
12789     PL_minus_l          = proto_perl->Iminus_l;
12790     PL_minus_a          = proto_perl->Iminus_a;
12791     PL_minus_E          = proto_perl->Iminus_E;
12792     PL_minus_F          = proto_perl->Iminus_F;
12793     PL_doswitches       = proto_perl->Idoswitches;
12794     PL_dowarn           = proto_perl->Idowarn;
12795     PL_sawampersand     = proto_perl->Isawampersand;
12796     PL_unsafe           = proto_perl->Iunsafe;
12797     PL_perldb           = proto_perl->Iperldb;
12798     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
12799     PL_exit_flags       = proto_perl->Iexit_flags;
12800
12801     /* XXX time(&PL_basetime) when asked for? */
12802     PL_basetime         = proto_perl->Ibasetime;
12803
12804     PL_maxsysfd         = proto_perl->Imaxsysfd;
12805     PL_statusvalue      = proto_perl->Istatusvalue;
12806 #ifdef VMS
12807     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
12808 #else
12809     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
12810 #endif
12811
12812     /* RE engine related */
12813     Zero(&PL_reg_state, 1, struct re_save_state);
12814     PL_reginterp_cnt    = 0;
12815     PL_regmatch_slab    = NULL;
12816
12817     PL_sub_generation   = proto_perl->Isub_generation;
12818
12819     /* funky return mechanisms */
12820     PL_forkprocess      = proto_perl->Iforkprocess;
12821
12822     /* internal state */
12823     PL_maxo             = proto_perl->Imaxo;
12824
12825     PL_main_start       = proto_perl->Imain_start;
12826     PL_eval_root        = proto_perl->Ieval_root;
12827     PL_eval_start       = proto_perl->Ieval_start;
12828
12829     PL_filemode         = proto_perl->Ifilemode;
12830     PL_lastfd           = proto_perl->Ilastfd;
12831     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
12832     PL_Argv             = NULL;
12833     PL_Cmd              = NULL;
12834     PL_gensym           = proto_perl->Igensym;
12835
12836     PL_laststatval      = proto_perl->Ilaststatval;
12837     PL_laststype        = proto_perl->Ilaststype;
12838     PL_mess_sv          = NULL;
12839
12840     PL_profiledata      = NULL;
12841
12842     PL_generation       = proto_perl->Igeneration;
12843
12844     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
12845     PL_in_clean_all     = proto_perl->Iin_clean_all;
12846
12847     PL_uid              = proto_perl->Iuid;
12848     PL_euid             = proto_perl->Ieuid;
12849     PL_gid              = proto_perl->Igid;
12850     PL_egid             = proto_perl->Iegid;
12851     PL_nomemok          = proto_perl->Inomemok;
12852     PL_an               = proto_perl->Ian;
12853     PL_evalseq          = proto_perl->Ievalseq;
12854     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
12855     PL_origalen         = proto_perl->Iorigalen;
12856
12857     PL_sighandlerp      = proto_perl->Isighandlerp;
12858
12859     PL_runops           = proto_perl->Irunops;
12860
12861     PL_subline          = proto_perl->Isubline;
12862
12863 #ifdef FCRYPT
12864     PL_cryptseen        = proto_perl->Icryptseen;
12865 #endif
12866
12867     PL_hints            = proto_perl->Ihints;
12868
12869     PL_amagic_generation        = proto_perl->Iamagic_generation;
12870
12871 #ifdef USE_LOCALE_COLLATE
12872     PL_collation_ix     = proto_perl->Icollation_ix;
12873     PL_collation_standard       = proto_perl->Icollation_standard;
12874     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
12875     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
12876 #endif /* USE_LOCALE_COLLATE */
12877
12878 #ifdef USE_LOCALE_NUMERIC
12879     PL_numeric_standard = proto_perl->Inumeric_standard;
12880     PL_numeric_local    = proto_perl->Inumeric_local;
12881 #endif /* !USE_LOCALE_NUMERIC */
12882
12883     /* Did the locale setup indicate UTF-8? */
12884     PL_utf8locale       = proto_perl->Iutf8locale;
12885     /* Unicode features (see perlrun/-C) */
12886     PL_unicode          = proto_perl->Iunicode;
12887
12888     /* Pre-5.8 signals control */
12889     PL_signals          = proto_perl->Isignals;
12890
12891     /* times() ticks per second */
12892     PL_clocktick        = proto_perl->Iclocktick;
12893
12894     /* Recursion stopper for PerlIO_find_layer */
12895     PL_in_load_module   = proto_perl->Iin_load_module;
12896
12897     /* sort() routine */
12898     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
12899
12900     /* Not really needed/useful since the reenrant_retint is "volatile",
12901      * but do it for consistency's sake. */
12902     PL_reentrant_retint = proto_perl->Ireentrant_retint;
12903
12904     /* Hooks to shared SVs and locks. */
12905     PL_sharehook        = proto_perl->Isharehook;
12906     PL_lockhook         = proto_perl->Ilockhook;
12907     PL_unlockhook       = proto_perl->Iunlockhook;
12908     PL_threadhook       = proto_perl->Ithreadhook;
12909     PL_destroyhook      = proto_perl->Idestroyhook;
12910     PL_signalhook       = proto_perl->Isignalhook;
12911
12912 #ifdef THREADS_HAVE_PIDS
12913     PL_ppid             = proto_perl->Ippid;
12914 #endif
12915
12916     /* swatch cache */
12917     PL_last_swash_hv    = NULL; /* reinits on demand */
12918     PL_last_swash_klen  = 0;
12919     PL_last_swash_key[0]= '\0';
12920     PL_last_swash_tmps  = (U8*)NULL;
12921     PL_last_swash_slen  = 0;
12922
12923     PL_glob_index       = proto_perl->Iglob_index;
12924     PL_srand_called     = proto_perl->Isrand_called;
12925
12926     if (flags & CLONEf_COPY_STACKS) {
12927         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
12928         PL_tmps_ix              = proto_perl->Itmps_ix;
12929         PL_tmps_max             = proto_perl->Itmps_max;
12930         PL_tmps_floor           = proto_perl->Itmps_floor;
12931
12932         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
12933          * NOTE: unlike the others! */
12934         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
12935         PL_scopestack_max       = proto_perl->Iscopestack_max;
12936
12937         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
12938          * NOTE: unlike the others! */
12939         PL_savestack_ix         = proto_perl->Isavestack_ix;
12940         PL_savestack_max        = proto_perl->Isavestack_max;
12941     }
12942
12943     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
12944     PL_top_env          = &PL_start_env;
12945
12946     PL_op               = proto_perl->Iop;
12947
12948     PL_Sv               = NULL;
12949     PL_Xpv              = (XPV*)NULL;
12950     my_perl->Ina        = proto_perl->Ina;
12951
12952     PL_statbuf          = proto_perl->Istatbuf;
12953     PL_statcache        = proto_perl->Istatcache;
12954
12955 #ifdef HAS_TIMES
12956     PL_timesbuf         = proto_perl->Itimesbuf;
12957 #endif
12958
12959     PL_tainted          = proto_perl->Itainted;
12960     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
12961
12962     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
12963
12964     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
12965     PL_restartop        = proto_perl->Irestartop;
12966     PL_in_eval          = proto_perl->Iin_eval;
12967     PL_delaymagic       = proto_perl->Idelaymagic;
12968     PL_phase            = proto_perl->Iphase;
12969     PL_localizing       = proto_perl->Ilocalizing;
12970
12971     PL_hv_fetch_ent_mh  = NULL;
12972     PL_modcount         = proto_perl->Imodcount;
12973     PL_lastgotoprobe    = NULL;
12974     PL_dumpindent       = proto_perl->Idumpindent;
12975
12976     PL_efloatbuf        = NULL;         /* reinits on demand */
12977     PL_efloatsize       = 0;                    /* reinits on demand */
12978
12979     /* regex stuff */
12980
12981     PL_regdummy         = proto_perl->Iregdummy;
12982     PL_colorset         = 0;            /* reinits PL_colors[] */
12983     /*PL_colors[6]      = {0,0,0,0,0,0};*/
12984
12985     /* Pluggable optimizer */
12986     PL_peepp            = proto_perl->Ipeepp;
12987     PL_rpeepp           = proto_perl->Irpeepp;
12988     /* op_free() hook */
12989     PL_opfreehook       = proto_perl->Iopfreehook;
12990
12991 #ifdef USE_REENTRANT_API
12992     /* XXX: things like -Dm will segfault here in perlio, but doing
12993      *  PERL_SET_CONTEXT(proto_perl);
12994      * breaks too many other things
12995      */
12996     Perl_reentrant_init(aTHX);
12997 #endif
12998
12999     /* create SV map for pointer relocation */
13000     PL_ptr_table = ptr_table_new();
13001
13002     /* initialize these special pointers as early as possible */
13003     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
13004
13005     SvANY(&PL_sv_no)            = new_XPVNV();
13006     SvPV_set(&PL_sv_no, savepvn(PL_No, 0));
13007     SvCUR_set(&PL_sv_no, 0);
13008     SvLEN_set(&PL_sv_no, 1);
13009     SvIV_set(&PL_sv_no, 0);
13010     SvNV_set(&PL_sv_no, 0);
13011     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
13012
13013     SvPV_set(&PL_sv_yes, savepvn(PL_Yes, 1));
13014     SvCUR_set(&PL_sv_yes, 1);
13015     SvLEN_set(&PL_sv_yes, 2);
13016     SvIV_set(&PL_sv_yes, 1);
13017     SvNV_set(&PL_sv_yes, 1);
13018     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
13019
13020     /* create (a non-shared!) shared string table */
13021     PL_strtab           = newHV();
13022     HvSHAREKEYS_off(PL_strtab);
13023     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
13024     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
13025
13026     /* These two PVs will be free'd special way so must set them same way op.c does */
13027     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
13028     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
13029
13030     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
13031     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
13032
13033     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
13034     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
13035     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
13036     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
13037
13038     param->stashes      = newAV();  /* Setup array of objects to call clone on */
13039     /* This makes no difference to the implementation, as it always pushes
13040        and shifts pointers to other SVs without changing their reference
13041        count, with the array becoming empty before it is freed. However, it
13042        makes it conceptually clear what is going on, and will avoid some
13043        work inside av.c, filling slots between AvFILL() and AvMAX() with
13044        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
13045     AvREAL_off(param->stashes);
13046
13047     if (!(flags & CLONEf_COPY_STACKS)) {
13048         param->unreferenced = newAV();
13049     }
13050
13051 #ifdef PERLIO_LAYERS
13052     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
13053     PerlIO_clone(aTHX_ proto_perl, param);
13054 #endif
13055
13056     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
13057     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
13058     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
13059     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
13060     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
13061     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
13062
13063     /* switches */
13064     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
13065     PL_apiversion       = sv_dup_inc(proto_perl->Iapiversion, param);
13066     PL_inplace          = SAVEPV(proto_perl->Iinplace);
13067     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
13068
13069     /* magical thingies */
13070     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
13071
13072     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
13073
13074     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
13075     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
13076     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
13077
13078    
13079     /* Clone the regex array */
13080     /* ORANGE FIXME for plugins, probably in the SV dup code.
13081        newSViv(PTR2IV(CALLREGDUPE(
13082        INT2PTR(REGEXP *, SvIVX(regex)), param))))
13083     */
13084     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
13085     PL_regex_pad = AvARRAY(PL_regex_padav);
13086
13087     /* shortcuts to various I/O objects */
13088     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
13089     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
13090     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
13091     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
13092     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
13093     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
13094     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
13095
13096     /* shortcuts to regexp stuff */
13097     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
13098
13099     /* shortcuts to misc objects */
13100     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
13101
13102     /* shortcuts to debugging objects */
13103     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
13104     PL_DBline           = gv_dup(proto_perl->IDBline, param);
13105     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
13106     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
13107     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
13108     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
13109
13110     /* symbol tables */
13111     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
13112     PL_curstash         = hv_dup(proto_perl->Icurstash, param);
13113     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
13114     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
13115     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
13116
13117     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
13118     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
13119     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
13120     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
13121     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
13122     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
13123     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
13124     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
13125
13126     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
13127
13128     /* subprocess state */
13129     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
13130
13131     if (proto_perl->Iop_mask)
13132         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
13133     else
13134         PL_op_mask      = NULL;
13135     /* PL_asserting        = proto_perl->Iasserting; */
13136
13137     /* current interpreter roots */
13138     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
13139     OP_REFCNT_LOCK;
13140     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
13141     OP_REFCNT_UNLOCK;
13142
13143     /* runtime control stuff */
13144     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
13145
13146     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
13147
13148     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
13149
13150     /* interpreter atexit processing */
13151     PL_exitlistlen      = proto_perl->Iexitlistlen;
13152     if (PL_exitlistlen) {
13153         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13154         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13155     }
13156     else
13157         PL_exitlist     = (PerlExitListEntry*)NULL;
13158
13159     PL_my_cxt_size = proto_perl->Imy_cxt_size;
13160     if (PL_my_cxt_size) {
13161         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
13162         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
13163 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13164         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
13165         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
13166 #endif
13167     }
13168     else {
13169         PL_my_cxt_list  = (void**)NULL;
13170 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13171         PL_my_cxt_keys  = (const char**)NULL;
13172 #endif
13173     }
13174     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
13175     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
13176     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
13177     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
13178
13179     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
13180
13181     PAD_CLONE_VARS(proto_perl, param);
13182
13183 #ifdef HAVE_INTERP_INTERN
13184     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
13185 #endif
13186
13187     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
13188
13189 #ifdef PERL_USES_PL_PIDSTATUS
13190     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
13191 #endif
13192     PL_osname           = SAVEPV(proto_perl->Iosname);
13193     PL_parser           = parser_dup(proto_perl->Iparser, param);
13194
13195     /* XXX this only works if the saved cop has already been cloned */
13196     if (proto_perl->Iparser) {
13197         PL_parser->saved_curcop = (COP*)any_dup(
13198                                     proto_perl->Iparser->saved_curcop,
13199                                     proto_perl);
13200     }
13201
13202     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
13203
13204 #ifdef USE_LOCALE_COLLATE
13205     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
13206 #endif /* USE_LOCALE_COLLATE */
13207
13208 #ifdef USE_LOCALE_NUMERIC
13209     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
13210     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
13211 #endif /* !USE_LOCALE_NUMERIC */
13212
13213     /* utf8 character classes */
13214     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
13215     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
13216     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
13217     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
13218     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
13219     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
13220     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
13221     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
13222     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
13223     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
13224     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
13225     PL_utf8_X_begin     = sv_dup_inc(proto_perl->Iutf8_X_begin, param);
13226     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
13227     PL_utf8_X_prepend   = sv_dup_inc(proto_perl->Iutf8_X_prepend, param);
13228     PL_utf8_X_non_hangul        = sv_dup_inc(proto_perl->Iutf8_X_non_hangul, param);
13229     PL_utf8_X_L = sv_dup_inc(proto_perl->Iutf8_X_L, param);
13230     PL_utf8_X_LV        = sv_dup_inc(proto_perl->Iutf8_X_LV, param);
13231     PL_utf8_X_LVT       = sv_dup_inc(proto_perl->Iutf8_X_LVT, param);
13232     PL_utf8_X_T = sv_dup_inc(proto_perl->Iutf8_X_T, param);
13233     PL_utf8_X_V = sv_dup_inc(proto_perl->Iutf8_X_V, param);
13234     PL_utf8_X_LV_LVT_V  = sv_dup_inc(proto_perl->Iutf8_X_LV_LVT_V, param);
13235     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
13236     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
13237     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
13238     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
13239     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
13240     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
13241     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
13242     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
13243     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
13244     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
13245
13246
13247     if (proto_perl->Ipsig_pend) {
13248         Newxz(PL_psig_pend, SIG_SIZE, int);
13249     }
13250     else {
13251         PL_psig_pend    = (int*)NULL;
13252     }
13253
13254     if (proto_perl->Ipsig_name) {
13255         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
13256         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
13257                             param);
13258         PL_psig_ptr = PL_psig_name + SIG_SIZE;
13259     }
13260     else {
13261         PL_psig_ptr     = (SV**)NULL;
13262         PL_psig_name    = (SV**)NULL;
13263     }
13264
13265     if (flags & CLONEf_COPY_STACKS) {
13266         Newx(PL_tmps_stack, PL_tmps_max, SV*);
13267         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
13268                             PL_tmps_ix+1, param);
13269
13270         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
13271         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
13272         Newxz(PL_markstack, i, I32);
13273         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
13274                                                   - proto_perl->Imarkstack);
13275         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
13276                                                   - proto_perl->Imarkstack);
13277         Copy(proto_perl->Imarkstack, PL_markstack,
13278              PL_markstack_ptr - PL_markstack + 1, I32);
13279
13280         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13281          * NOTE: unlike the others! */
13282         Newxz(PL_scopestack, PL_scopestack_max, I32);
13283         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
13284
13285 #ifdef DEBUGGING
13286         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
13287         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
13288 #endif
13289         /* NOTE: si_dup() looks at PL_markstack */
13290         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
13291
13292         /* PL_curstack          = PL_curstackinfo->si_stack; */
13293         PL_curstack             = av_dup(proto_perl->Icurstack, param);
13294         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
13295
13296         /* next PUSHs() etc. set *(PL_stack_sp+1) */
13297         PL_stack_base           = AvARRAY(PL_curstack);
13298         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
13299                                                    - proto_perl->Istack_base);
13300         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
13301
13302         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
13303         PL_savestack            = ss_dup(proto_perl, param);
13304     }
13305     else {
13306         init_stacks();
13307         ENTER;                  /* perl_destruct() wants to LEAVE; */
13308     }
13309
13310     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
13311     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
13312
13313     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
13314     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
13315     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
13316     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
13317     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
13318     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
13319
13320     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
13321
13322     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
13323     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
13324     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
13325     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
13326
13327     PL_stashcache       = newHV();
13328
13329     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
13330                                             proto_perl->Iwatchaddr);
13331     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
13332     if (PL_debug && PL_watchaddr) {
13333         PerlIO_printf(Perl_debug_log,
13334           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
13335           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
13336           PTR2UV(PL_watchok));
13337     }
13338
13339     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
13340     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
13341     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
13342
13343     /* Call the ->CLONE method, if it exists, for each of the stashes
13344        identified by sv_dup() above.
13345     */
13346     while(av_len(param->stashes) != -1) {
13347         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
13348         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
13349         if (cloner && GvCV(cloner)) {
13350             dSP;
13351             ENTER;
13352             SAVETMPS;
13353             PUSHMARK(SP);
13354             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
13355             PUTBACK;
13356             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
13357             FREETMPS;
13358             LEAVE;
13359         }
13360     }
13361
13362     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
13363         ptr_table_free(PL_ptr_table);
13364         PL_ptr_table = NULL;
13365     }
13366
13367     if (!(flags & CLONEf_COPY_STACKS)) {
13368         unreferenced_to_tmp_stack(param->unreferenced);
13369     }
13370
13371     SvREFCNT_dec(param->stashes);
13372
13373     /* orphaned? eg threads->new inside BEGIN or use */
13374     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
13375         SvREFCNT_inc_simple_void(PL_compcv);
13376         SAVEFREESV(PL_compcv);
13377     }
13378
13379     return my_perl;
13380 }
13381
13382 static void
13383 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
13384 {
13385     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
13386     
13387     if (AvFILLp(unreferenced) > -1) {
13388         SV **svp = AvARRAY(unreferenced);
13389         SV **const last = svp + AvFILLp(unreferenced);
13390         SSize_t count = 0;
13391
13392         do {
13393             if (SvREFCNT(*svp) == 1)
13394                 ++count;
13395         } while (++svp <= last);
13396
13397         EXTEND_MORTAL(count);
13398         svp = AvARRAY(unreferenced);
13399
13400         do {
13401             if (SvREFCNT(*svp) == 1) {
13402                 /* Our reference is the only one to this SV. This means that
13403                    in this thread, the scalar effectively has a 0 reference.
13404                    That doesn't work (cleanup never happens), so donate our
13405                    reference to it onto the save stack. */
13406                 PL_tmps_stack[++PL_tmps_ix] = *svp;
13407             } else {
13408                 /* As an optimisation, because we are already walking the
13409                    entire array, instead of above doing either
13410                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
13411                    release our reference to the scalar, so that at the end of
13412                    the array owns zero references to the scalars it happens to
13413                    point to. We are effectively converting the array from
13414                    AvREAL() on to AvREAL() off. This saves the av_clear()
13415                    (triggered by the SvREFCNT_dec(unreferenced) below) from
13416                    walking the array a second time.  */
13417                 SvREFCNT_dec(*svp);
13418             }
13419
13420         } while (++svp <= last);
13421         AvREAL_off(unreferenced);
13422     }
13423     SvREFCNT_dec(unreferenced);
13424 }
13425
13426 void
13427 Perl_clone_params_del(CLONE_PARAMS *param)
13428 {
13429     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
13430        happy: */
13431     PerlInterpreter *const to = param->new_perl;
13432     dTHXa(to);
13433     PerlInterpreter *const was = PERL_GET_THX;
13434
13435     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
13436
13437     if (was != to) {
13438         PERL_SET_THX(to);
13439     }
13440
13441     SvREFCNT_dec(param->stashes);
13442     if (param->unreferenced)
13443         unreferenced_to_tmp_stack(param->unreferenced);
13444
13445     Safefree(param);
13446
13447     if (was != to) {
13448         PERL_SET_THX(was);
13449     }
13450 }
13451
13452 CLONE_PARAMS *
13453 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
13454 {
13455     dVAR;
13456     /* Need to play this game, as newAV() can call safesysmalloc(), and that
13457        does a dTHX; to get the context from thread local storage.
13458        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
13459        a version that passes in my_perl.  */
13460     PerlInterpreter *const was = PERL_GET_THX;
13461     CLONE_PARAMS *param;
13462
13463     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
13464
13465     if (was != to) {
13466         PERL_SET_THX(to);
13467     }
13468
13469     /* Given that we've set the context, we can do this unshared.  */
13470     Newx(param, 1, CLONE_PARAMS);
13471
13472     param->flags = 0;
13473     param->proto_perl = from;
13474     param->new_perl = to;
13475     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
13476     AvREAL_off(param->stashes);
13477     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
13478
13479     if (was != to) {
13480         PERL_SET_THX(was);
13481     }
13482     return param;
13483 }
13484
13485 #endif /* USE_ITHREADS */
13486
13487 /*
13488 =head1 Unicode Support
13489
13490 =for apidoc sv_recode_to_utf8
13491
13492 The encoding is assumed to be an Encode object, on entry the PV
13493 of the sv is assumed to be octets in that encoding, and the sv
13494 will be converted into Unicode (and UTF-8).
13495
13496 If the sv already is UTF-8 (or if it is not POK), or if the encoding
13497 is not a reference, nothing is done to the sv.  If the encoding is not
13498 an C<Encode::XS> Encoding object, bad things will happen.
13499 (See F<lib/encoding.pm> and L<Encode>).
13500
13501 The PV of the sv is returned.
13502
13503 =cut */
13504
13505 char *
13506 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
13507 {
13508     dVAR;
13509
13510     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
13511
13512     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
13513         SV *uni;
13514         STRLEN len;
13515         const char *s;
13516         dSP;
13517         ENTER;
13518         SAVETMPS;
13519         save_re_context();
13520         PUSHMARK(sp);
13521         EXTEND(SP, 3);
13522         XPUSHs(encoding);
13523         XPUSHs(sv);
13524 /*
13525   NI-S 2002/07/09
13526   Passing sv_yes is wrong - it needs to be or'ed set of constants
13527   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
13528   remove converted chars from source.
13529
13530   Both will default the value - let them.
13531
13532         XPUSHs(&PL_sv_yes);
13533 */
13534         PUTBACK;
13535         call_method("decode", G_SCALAR);
13536         SPAGAIN;
13537         uni = POPs;
13538         PUTBACK;
13539         s = SvPV_const(uni, len);
13540         if (s != SvPVX_const(sv)) {
13541             SvGROW(sv, len + 1);
13542             Move(s, SvPVX(sv), len + 1, char);
13543             SvCUR_set(sv, len);
13544         }
13545         FREETMPS;
13546         LEAVE;
13547         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
13548             /* clear pos and any utf8 cache */
13549             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
13550             if (mg)
13551                 mg->mg_len = -1;
13552             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
13553                 magic_setutf8(sv,mg); /* clear UTF8 cache */
13554         }
13555         SvUTF8_on(sv);
13556         return SvPVX(sv);
13557     }
13558     return SvPOKp(sv) ? SvPVX(sv) : NULL;
13559 }
13560
13561 /*
13562 =for apidoc sv_cat_decode
13563
13564 The encoding is assumed to be an Encode object, the PV of the ssv is
13565 assumed to be octets in that encoding and decoding the input starts
13566 from the position which (PV + *offset) pointed to.  The dsv will be
13567 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
13568 when the string tstr appears in decoding output or the input ends on
13569 the PV of the ssv. The value which the offset points will be modified
13570 to the last input position on the ssv.
13571
13572 Returns TRUE if the terminator was found, else returns FALSE.
13573
13574 =cut */
13575
13576 bool
13577 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
13578                    SV *ssv, int *offset, char *tstr, int tlen)
13579 {
13580     dVAR;
13581     bool ret = FALSE;
13582
13583     PERL_ARGS_ASSERT_SV_CAT_DECODE;
13584
13585     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
13586         SV *offsv;
13587         dSP;
13588         ENTER;
13589         SAVETMPS;
13590         save_re_context();
13591         PUSHMARK(sp);
13592         EXTEND(SP, 6);
13593         XPUSHs(encoding);
13594         XPUSHs(dsv);
13595         XPUSHs(ssv);
13596         offsv = newSViv(*offset);
13597         mXPUSHs(offsv);
13598         mXPUSHp(tstr, tlen);
13599         PUTBACK;
13600         call_method("cat_decode", G_SCALAR);
13601         SPAGAIN;
13602         ret = SvTRUE(TOPs);
13603         *offset = SvIV(offsv);
13604         PUTBACK;
13605         FREETMPS;
13606         LEAVE;
13607     }
13608     else
13609         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
13610     return ret;
13611
13612 }
13613
13614 /* ---------------------------------------------------------------------
13615  *
13616  * support functions for report_uninit()
13617  */
13618
13619 /* the maxiumum size of array or hash where we will scan looking
13620  * for the undefined element that triggered the warning */
13621
13622 #define FUV_MAX_SEARCH_SIZE 1000
13623
13624 /* Look for an entry in the hash whose value has the same SV as val;
13625  * If so, return a mortal copy of the key. */
13626
13627 STATIC SV*
13628 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
13629 {
13630     dVAR;
13631     register HE **array;
13632     I32 i;
13633
13634     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
13635
13636     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
13637                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
13638         return NULL;
13639
13640     array = HvARRAY(hv);
13641
13642     for (i=HvMAX(hv); i>0; i--) {
13643         register HE *entry;
13644         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
13645             if (HeVAL(entry) != val)
13646                 continue;
13647             if (    HeVAL(entry) == &PL_sv_undef ||
13648                     HeVAL(entry) == &PL_sv_placeholder)
13649                 continue;
13650             if (!HeKEY(entry))
13651                 return NULL;
13652             if (HeKLEN(entry) == HEf_SVKEY)
13653                 return sv_mortalcopy(HeKEY_sv(entry));
13654             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
13655         }
13656     }
13657     return NULL;
13658 }
13659
13660 /* Look for an entry in the array whose value has the same SV as val;
13661  * If so, return the index, otherwise return -1. */
13662
13663 STATIC I32
13664 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
13665 {
13666     dVAR;
13667
13668     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
13669
13670     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
13671                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
13672         return -1;
13673
13674     if (val != &PL_sv_undef) {
13675         SV ** const svp = AvARRAY(av);
13676         I32 i;
13677
13678         for (i=AvFILLp(av); i>=0; i--)
13679             if (svp[i] == val)
13680                 return i;
13681     }
13682     return -1;
13683 }
13684
13685 /* S_varname(): return the name of a variable, optionally with a subscript.
13686  * If gv is non-zero, use the name of that global, along with gvtype (one
13687  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
13688  * targ.  Depending on the value of the subscript_type flag, return:
13689  */
13690
13691 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
13692 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
13693 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
13694 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
13695
13696 STATIC SV*
13697 S_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
13698         const SV *const keyname, I32 aindex, int subscript_type)
13699 {
13700
13701     SV * const name = sv_newmortal();
13702     if (gv) {
13703         char buffer[2];
13704         buffer[0] = gvtype;
13705         buffer[1] = 0;
13706
13707         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
13708
13709         gv_fullname4(name, gv, buffer, 0);
13710
13711         if ((unsigned int)SvPVX(name)[1] <= 26) {
13712             buffer[0] = '^';
13713             buffer[1] = SvPVX(name)[1] + 'A' - 1;
13714
13715             /* Swap the 1 unprintable control character for the 2 byte pretty
13716                version - ie substr($name, 1, 1) = $buffer; */
13717             sv_insert(name, 1, 1, buffer, 2);
13718         }
13719     }
13720     else {
13721         CV * const cv = find_runcv(NULL);
13722         SV *sv;
13723         AV *av;
13724
13725         if (!cv || !CvPADLIST(cv))
13726             return NULL;
13727         av = MUTABLE_AV((*av_fetch(CvPADLIST(cv), 0, FALSE)));
13728         sv = *av_fetch(av, targ, FALSE);
13729         sv_setpvn(name, SvPV_nolen_const(sv), SvCUR(sv));
13730     }
13731
13732     if (subscript_type == FUV_SUBSCRIPT_HASH) {
13733         SV * const sv = newSV(0);
13734         *SvPVX(name) = '$';
13735         Perl_sv_catpvf(aTHX_ name, "{%s}",
13736             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
13737         SvREFCNT_dec(sv);
13738     }
13739     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
13740         *SvPVX(name) = '$';
13741         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
13742     }
13743     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
13744         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
13745         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
13746     }
13747
13748     return name;
13749 }
13750
13751
13752 /*
13753 =for apidoc find_uninit_var
13754
13755 Find the name of the undefined variable (if any) that caused the operator o
13756 to issue a "Use of uninitialized value" warning.
13757 If match is true, only return a name if it's value matches uninit_sv.
13758 So roughly speaking, if a unary operator (such as OP_COS) generates a
13759 warning, then following the direct child of the op may yield an
13760 OP_PADSV or OP_GV that gives the name of the undefined variable. On the
13761 other hand, with OP_ADD there are two branches to follow, so we only print
13762 the variable name if we get an exact match.
13763
13764 The name is returned as a mortal SV.
13765
13766 Assumes that PL_op is the op that originally triggered the error, and that
13767 PL_comppad/PL_curpad points to the currently executing pad.
13768
13769 =cut
13770 */
13771
13772 STATIC SV *
13773 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
13774                   bool match)
13775 {
13776     dVAR;
13777     SV *sv;
13778     const GV *gv;
13779     const OP *o, *o2, *kid;
13780
13781     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
13782                             uninit_sv == &PL_sv_placeholder)))
13783         return NULL;
13784
13785     switch (obase->op_type) {
13786
13787     case OP_RV2AV:
13788     case OP_RV2HV:
13789     case OP_PADAV:
13790     case OP_PADHV:
13791       {
13792         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
13793         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
13794         I32 index = 0;
13795         SV *keysv = NULL;
13796         int subscript_type = FUV_SUBSCRIPT_WITHIN;
13797
13798         if (pad) { /* @lex, %lex */
13799             sv = PAD_SVl(obase->op_targ);
13800             gv = NULL;
13801         }
13802         else {
13803             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
13804             /* @global, %global */
13805                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
13806                 if (!gv)
13807                     break;
13808                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
13809             }
13810             else /* @{expr}, %{expr} */
13811                 return find_uninit_var(cUNOPx(obase)->op_first,
13812                                                     uninit_sv, match);
13813         }
13814
13815         /* attempt to find a match within the aggregate */
13816         if (hash) {
13817             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
13818             if (keysv)
13819                 subscript_type = FUV_SUBSCRIPT_HASH;
13820         }
13821         else {
13822             index = find_array_subscript((const AV *)sv, uninit_sv);
13823             if (index >= 0)
13824                 subscript_type = FUV_SUBSCRIPT_ARRAY;
13825         }
13826
13827         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
13828             break;
13829
13830         return varname(gv, hash ? '%' : '@', obase->op_targ,
13831                                     keysv, index, subscript_type);
13832       }
13833
13834     case OP_RV2SV:
13835         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
13836             /* $global */
13837             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
13838             if (!gv || !GvSTASH(gv))
13839                 break;
13840             if (match && (GvSV(gv) != uninit_sv))
13841                 break;
13842             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
13843         }
13844         /* ${expr} */
13845         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
13846
13847     case OP_PADSV:
13848         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
13849             break;
13850         return varname(NULL, '$', obase->op_targ,
13851                                     NULL, 0, FUV_SUBSCRIPT_NONE);
13852
13853     case OP_GVSV:
13854         gv = cGVOPx_gv(obase);
13855         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
13856             break;
13857         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
13858
13859     case OP_AELEMFAST_LEX:
13860         if (match) {
13861             SV **svp;
13862             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
13863             if (!av || SvRMAGICAL(av))
13864                 break;
13865             svp = av_fetch(av, (I32)obase->op_private, FALSE);
13866             if (!svp || *svp != uninit_sv)
13867                 break;
13868         }
13869         return varname(NULL, '$', obase->op_targ,
13870                        NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13871     case OP_AELEMFAST:
13872         {
13873             gv = cGVOPx_gv(obase);
13874             if (!gv)
13875                 break;
13876             if (match) {
13877                 SV **svp;
13878                 AV *const av = GvAV(gv);
13879                 if (!av || SvRMAGICAL(av))
13880                     break;
13881                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
13882                 if (!svp || *svp != uninit_sv)
13883                     break;
13884             }
13885             return varname(gv, '$', 0,
13886                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13887         }
13888         break;
13889
13890     case OP_EXISTS:
13891         o = cUNOPx(obase)->op_first;
13892         if (!o || o->op_type != OP_NULL ||
13893                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
13894             break;
13895         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
13896
13897     case OP_AELEM:
13898     case OP_HELEM:
13899     {
13900         bool negate = FALSE;
13901
13902         if (PL_op == obase)
13903             /* $a[uninit_expr] or $h{uninit_expr} */
13904             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
13905
13906         gv = NULL;
13907         o = cBINOPx(obase)->op_first;
13908         kid = cBINOPx(obase)->op_last;
13909
13910         /* get the av or hv, and optionally the gv */
13911         sv = NULL;
13912         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
13913             sv = PAD_SV(o->op_targ);
13914         }
13915         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
13916                 && cUNOPo->op_first->op_type == OP_GV)
13917         {
13918             gv = cGVOPx_gv(cUNOPo->op_first);
13919             if (!gv)
13920                 break;
13921             sv = o->op_type
13922                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
13923         }
13924         if (!sv)
13925             break;
13926
13927         if (kid && kid->op_type == OP_NEGATE) {
13928             negate = TRUE;
13929             kid = cUNOPx(kid)->op_first;
13930         }
13931
13932         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
13933             /* index is constant */
13934             SV* kidsv;
13935             if (negate) {
13936                 kidsv = sv_2mortal(newSVpvs("-"));
13937                 sv_catsv(kidsv, cSVOPx_sv(kid));
13938             }
13939             else
13940                 kidsv = cSVOPx_sv(kid);
13941             if (match) {
13942                 if (SvMAGICAL(sv))
13943                     break;
13944                 if (obase->op_type == OP_HELEM) {
13945                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
13946                     if (!he || HeVAL(he) != uninit_sv)
13947                         break;
13948                 }
13949                 else {
13950                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
13951                         negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
13952                         FALSE);
13953                     if (!svp || *svp != uninit_sv)
13954                         break;
13955                 }
13956             }
13957             if (obase->op_type == OP_HELEM)
13958                 return varname(gv, '%', o->op_targ,
13959                             kidsv, 0, FUV_SUBSCRIPT_HASH);
13960             else
13961                 return varname(gv, '@', o->op_targ, NULL,
13962                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
13963                     FUV_SUBSCRIPT_ARRAY);
13964         }
13965         else  {
13966             /* index is an expression;
13967              * attempt to find a match within the aggregate */
13968             if (obase->op_type == OP_HELEM) {
13969                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
13970                 if (keysv)
13971                     return varname(gv, '%', o->op_targ,
13972                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
13973             }
13974             else {
13975                 const I32 index
13976                     = find_array_subscript((const AV *)sv, uninit_sv);
13977                 if (index >= 0)
13978                     return varname(gv, '@', o->op_targ,
13979                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
13980             }
13981             if (match)
13982                 break;
13983             return varname(gv,
13984                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
13985                 ? '@' : '%',
13986                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
13987         }
13988         break;
13989     }
13990
13991     case OP_AASSIGN:
13992         /* only examine RHS */
13993         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
13994
13995     case OP_OPEN:
13996         o = cUNOPx(obase)->op_first;
13997         if (o->op_type == OP_PUSHMARK)
13998             o = o->op_sibling;
13999
14000         if (!o->op_sibling) {
14001             /* one-arg version of open is highly magical */
14002
14003             if (o->op_type == OP_GV) { /* open FOO; */
14004                 gv = cGVOPx_gv(o);
14005                 if (match && GvSV(gv) != uninit_sv)
14006                     break;
14007                 return varname(gv, '$', 0,
14008                             NULL, 0, FUV_SUBSCRIPT_NONE);
14009             }
14010             /* other possibilities not handled are:
14011              * open $x; or open my $x;  should return '${*$x}'
14012              * open expr;               should return '$'.expr ideally
14013              */
14014              break;
14015         }
14016         goto do_op;
14017
14018     /* ops where $_ may be an implicit arg */
14019     case OP_TRANS:
14020     case OP_SUBST:
14021     case OP_MATCH:
14022         if ( !(obase->op_flags & OPf_STACKED)) {
14023             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
14024                                  ? PAD_SVl(obase->op_targ)
14025                                  : DEFSV))
14026             {
14027                 sv = sv_newmortal();
14028                 sv_setpvs(sv, "$_");
14029                 return sv;
14030             }
14031         }
14032         goto do_op;
14033
14034     case OP_PRTF:
14035     case OP_PRINT:
14036     case OP_SAY:
14037         match = 1; /* print etc can return undef on defined args */
14038         /* skip filehandle as it can't produce 'undef' warning  */
14039         o = cUNOPx(obase)->op_first;
14040         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
14041             o = o->op_sibling->op_sibling;
14042         goto do_op2;
14043
14044
14045     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
14046     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
14047
14048         /* the following ops are capable of returning PL_sv_undef even for
14049          * defined arg(s) */
14050
14051     case OP_BACKTICK:
14052     case OP_PIPE_OP:
14053     case OP_FILENO:
14054     case OP_BINMODE:
14055     case OP_TIED:
14056     case OP_GETC:
14057     case OP_SYSREAD:
14058     case OP_SEND:
14059     case OP_IOCTL:
14060     case OP_SOCKET:
14061     case OP_SOCKPAIR:
14062     case OP_BIND:
14063     case OP_CONNECT:
14064     case OP_LISTEN:
14065     case OP_ACCEPT:
14066     case OP_SHUTDOWN:
14067     case OP_SSOCKOPT:
14068     case OP_GETPEERNAME:
14069     case OP_FTRREAD:
14070     case OP_FTRWRITE:
14071     case OP_FTREXEC:
14072     case OP_FTROWNED:
14073     case OP_FTEREAD:
14074     case OP_FTEWRITE:
14075     case OP_FTEEXEC:
14076     case OP_FTEOWNED:
14077     case OP_FTIS:
14078     case OP_FTZERO:
14079     case OP_FTSIZE:
14080     case OP_FTFILE:
14081     case OP_FTDIR:
14082     case OP_FTLINK:
14083     case OP_FTPIPE:
14084     case OP_FTSOCK:
14085     case OP_FTBLK:
14086     case OP_FTCHR:
14087     case OP_FTTTY:
14088     case OP_FTSUID:
14089     case OP_FTSGID:
14090     case OP_FTSVTX:
14091     case OP_FTTEXT:
14092     case OP_FTBINARY:
14093     case OP_FTMTIME:
14094     case OP_FTATIME:
14095     case OP_FTCTIME:
14096     case OP_READLINK:
14097     case OP_OPEN_DIR:
14098     case OP_READDIR:
14099     case OP_TELLDIR:
14100     case OP_SEEKDIR:
14101     case OP_REWINDDIR:
14102     case OP_CLOSEDIR:
14103     case OP_GMTIME:
14104     case OP_ALARM:
14105     case OP_SEMGET:
14106     case OP_GETLOGIN:
14107     case OP_UNDEF:
14108     case OP_SUBSTR:
14109     case OP_AEACH:
14110     case OP_EACH:
14111     case OP_SORT:
14112     case OP_CALLER:
14113     case OP_DOFILE:
14114     case OP_PROTOTYPE:
14115     case OP_NCMP:
14116     case OP_SMARTMATCH:
14117     case OP_UNPACK:
14118     case OP_SYSOPEN:
14119     case OP_SYSSEEK:
14120         match = 1;
14121         goto do_op;
14122
14123     case OP_ENTERSUB:
14124     case OP_GOTO:
14125         /* XXX tmp hack: these two may call an XS sub, and currently
14126           XS subs don't have a SUB entry on the context stack, so CV and
14127           pad determination goes wrong, and BAD things happen. So, just
14128           don't try to determine the value under those circumstances.
14129           Need a better fix at dome point. DAPM 11/2007 */
14130         break;
14131
14132     case OP_FLIP:
14133     case OP_FLOP:
14134     {
14135         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
14136         if (gv && GvSV(gv) == uninit_sv)
14137             return newSVpvs_flags("$.", SVs_TEMP);
14138         goto do_op;
14139     }
14140
14141     case OP_POS:
14142         /* def-ness of rval pos() is independent of the def-ness of its arg */
14143         if ( !(obase->op_flags & OPf_MOD))
14144             break;
14145
14146     case OP_SCHOMP:
14147     case OP_CHOMP:
14148         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
14149             return newSVpvs_flags("${$/}", SVs_TEMP);
14150         /*FALLTHROUGH*/
14151
14152     default:
14153     do_op:
14154         if (!(obase->op_flags & OPf_KIDS))
14155             break;
14156         o = cUNOPx(obase)->op_first;
14157         
14158     do_op2:
14159         if (!o)
14160             break;
14161
14162         /* if all except one arg are constant, or have no side-effects,
14163          * or are optimized away, then it's unambiguous */
14164         o2 = NULL;
14165         for (kid=o; kid; kid = kid->op_sibling) {
14166             if (kid) {
14167                 const OPCODE type = kid->op_type;
14168                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
14169                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
14170                   || (type == OP_PUSHMARK)
14171                   || (
14172                       /* @$a and %$a, but not @a or %a */
14173                         (type == OP_RV2AV || type == OP_RV2HV)
14174                      && cUNOPx(kid)->op_first
14175                      && cUNOPx(kid)->op_first->op_type != OP_GV
14176                      )
14177                 )
14178                 continue;
14179             }
14180             if (o2) { /* more than one found */
14181                 o2 = NULL;
14182                 break;
14183             }
14184             o2 = kid;
14185         }
14186         if (o2)
14187             return find_uninit_var(o2, uninit_sv, match);
14188
14189         /* scan all args */
14190         while (o) {
14191             sv = find_uninit_var(o, uninit_sv, 1);
14192             if (sv)
14193                 return sv;
14194             o = o->op_sibling;
14195         }
14196         break;
14197     }
14198     return NULL;
14199 }
14200
14201
14202 /*
14203 =for apidoc report_uninit
14204
14205 Print appropriate "Use of uninitialized variable" warning
14206
14207 =cut
14208 */
14209
14210 void
14211 Perl_report_uninit(pTHX_ const SV *uninit_sv)
14212 {
14213     dVAR;
14214     if (PL_op) {
14215         SV* varname = NULL;
14216         if (uninit_sv) {
14217             varname = find_uninit_var(PL_op, uninit_sv,0);
14218             if (varname)
14219                 sv_insert(varname, 0, 0, " ", 1);
14220         }
14221         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
14222                 varname ? SvPV_nolen_const(varname) : "",
14223                 " in ", OP_DESC(PL_op));
14224     }
14225     else
14226         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
14227                     "", "", "");
14228 }
14229
14230 /*
14231  * Local variables:
14232  * c-indentation-style: bsd
14233  * c-basic-offset: 4
14234  * indent-tabs-mode: t
14235  * End:
14236  *
14237  * ex: set ts=8 sts=4 sw=4 noet:
14238  */