This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Expand tabs in Artistic license to spaces
[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 It croaks if the SV is already in a more complex form than requested.  You
1131 generally want to use the C<SvUPGRADE> macro wrapper, which checks the type
1132 before calling C<sv_upgrade>, and hence does not croak.  See also
1133 C<svtype>.
1134
1135 =cut
1136 */
1137
1138 void
1139 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1140 {
1141     dVAR;
1142     void*       old_body;
1143     void*       new_body;
1144     const svtype old_type = SvTYPE(sv);
1145     const struct body_details *new_type_details;
1146     const struct body_details *old_type_details
1147         = bodies_by_type + old_type;
1148     SV *referant = NULL;
1149
1150     PERL_ARGS_ASSERT_SV_UPGRADE;
1151
1152     if (old_type == new_type)
1153         return;
1154
1155     /* This clause was purposefully added ahead of the early return above to
1156        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1157        inference by Nick I-S that it would fix other troublesome cases. See
1158        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1159
1160        Given that shared hash key scalars are no longer PVIV, but PV, there is
1161        no longer need to unshare so as to free up the IVX slot for its proper
1162        purpose. So it's safe to move the early return earlier.  */
1163
1164     if (new_type != SVt_PV && SvIsCOW(sv)) {
1165         sv_force_normal_flags(sv, 0);
1166     }
1167
1168     old_body = SvANY(sv);
1169
1170     /* Copying structures onto other structures that have been neatly zeroed
1171        has a subtle gotcha. Consider XPVMG
1172
1173        +------+------+------+------+------+-------+-------+
1174        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1175        +------+------+------+------+------+-------+-------+
1176        0      4      8     12     16     20      24      28
1177
1178        where NVs are aligned to 8 bytes, so that sizeof that structure is
1179        actually 32 bytes long, with 4 bytes of padding at the end:
1180
1181        +------+------+------+------+------+-------+-------+------+
1182        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1183        +------+------+------+------+------+-------+-------+------+
1184        0      4      8     12     16     20      24      28     32
1185
1186        so what happens if you allocate memory for this structure:
1187
1188        +------+------+------+------+------+-------+-------+------+------+...
1189        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1190        +------+------+------+------+------+-------+-------+------+------+...
1191        0      4      8     12     16     20      24      28     32     36
1192
1193        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1194        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1195        started out as zero once, but it's quite possible that it isn't. So now,
1196        rather than a nicely zeroed GP, you have it pointing somewhere random.
1197        Bugs ensue.
1198
1199        (In fact, GP ends up pointing at a previous GP structure, because the
1200        principle cause of the padding in XPVMG getting garbage is a copy of
1201        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1202        this happens to be moot because XPVGV has been re-ordered, with GP
1203        no longer after STASH)
1204
1205        So we are careful and work out the size of used parts of all the
1206        structures.  */
1207
1208     switch (old_type) {
1209     case SVt_NULL:
1210         break;
1211     case SVt_IV:
1212         if (SvROK(sv)) {
1213             referant = SvRV(sv);
1214             old_type_details = &fake_rv;
1215             if (new_type == SVt_NV)
1216                 new_type = SVt_PVNV;
1217         } else {
1218             if (new_type < SVt_PVIV) {
1219                 new_type = (new_type == SVt_NV)
1220                     ? SVt_PVNV : SVt_PVIV;
1221             }
1222         }
1223         break;
1224     case SVt_NV:
1225         if (new_type < SVt_PVNV) {
1226             new_type = SVt_PVNV;
1227         }
1228         break;
1229     case SVt_PV:
1230         assert(new_type > SVt_PV);
1231         assert(SVt_IV < SVt_PV);
1232         assert(SVt_NV < SVt_PV);
1233         break;
1234     case SVt_PVIV:
1235         break;
1236     case SVt_PVNV:
1237         break;
1238     case SVt_PVMG:
1239         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1240            there's no way that it can be safely upgraded, because perl.c
1241            expects to Safefree(SvANY(PL_mess_sv))  */
1242         assert(sv != PL_mess_sv);
1243         /* This flag bit is used to mean other things in other scalar types.
1244            Given that it only has meaning inside the pad, it shouldn't be set
1245            on anything that can get upgraded.  */
1246         assert(!SvPAD_TYPED(sv));
1247         break;
1248     default:
1249         if (old_type_details->cant_upgrade)
1250             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1251                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1252     }
1253
1254     if (old_type > new_type)
1255         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1256                 (int)old_type, (int)new_type);
1257
1258     new_type_details = bodies_by_type + new_type;
1259
1260     SvFLAGS(sv) &= ~SVTYPEMASK;
1261     SvFLAGS(sv) |= new_type;
1262
1263     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1264        the return statements above will have triggered.  */
1265     assert (new_type != SVt_NULL);
1266     switch (new_type) {
1267     case SVt_IV:
1268         assert(old_type == SVt_NULL);
1269         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1270         SvIV_set(sv, 0);
1271         return;
1272     case SVt_NV:
1273         assert(old_type == SVt_NULL);
1274         SvANY(sv) = new_XNV();
1275         SvNV_set(sv, 0);
1276         return;
1277     case SVt_PVHV:
1278     case SVt_PVAV:
1279         assert(new_type_details->body_size);
1280
1281 #ifndef PURIFY  
1282         assert(new_type_details->arena);
1283         assert(new_type_details->arena_size);
1284         /* This points to the start of the allocated area.  */
1285         new_body_inline(new_body, new_type);
1286         Zero(new_body, new_type_details->body_size, char);
1287         new_body = ((char *)new_body) - new_type_details->offset;
1288 #else
1289         /* We always allocated the full length item with PURIFY. To do this
1290            we fake things so that arena is false for all 16 types..  */
1291         new_body = new_NOARENAZ(new_type_details);
1292 #endif
1293         SvANY(sv) = new_body;
1294         if (new_type == SVt_PVAV) {
1295             AvMAX(sv)   = -1;
1296             AvFILLp(sv) = -1;
1297             AvREAL_only(sv);
1298             if (old_type_details->body_size) {
1299                 AvALLOC(sv) = 0;
1300             } else {
1301                 /* It will have been zeroed when the new body was allocated.
1302                    Lets not write to it, in case it confuses a write-back
1303                    cache.  */
1304             }
1305         } else {
1306             assert(!SvOK(sv));
1307             SvOK_off(sv);
1308 #ifndef NODEFAULT_SHAREKEYS
1309             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1310 #endif
1311             HvMAX(sv) = 7; /* (start with 8 buckets) */
1312         }
1313
1314         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1315            The target created by newSVrv also is, and it can have magic.
1316            However, it never has SvPVX set.
1317         */
1318         if (old_type == SVt_IV) {
1319             assert(!SvROK(sv));
1320         } else if (old_type >= SVt_PV) {
1321             assert(SvPVX_const(sv) == 0);
1322         }
1323
1324         if (old_type >= SVt_PVMG) {
1325             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1326             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1327         } else {
1328             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1329         }
1330         break;
1331
1332
1333     case SVt_REGEXP:
1334         /* This ensures that SvTHINKFIRST(sv) is true, and hence that
1335            sv_force_normal_flags(sv) is called.  */
1336         SvFAKE_on(sv);
1337     case SVt_PVIV:
1338         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1339            no route from NV to PVIV, NOK can never be true  */
1340         assert(!SvNOKp(sv));
1341         assert(!SvNOK(sv));
1342     case SVt_PVIO:
1343     case SVt_PVFM:
1344     case SVt_PVGV:
1345     case SVt_PVCV:
1346     case SVt_PVLV:
1347     case SVt_PVMG:
1348     case SVt_PVNV:
1349     case SVt_PV:
1350
1351         assert(new_type_details->body_size);
1352         /* We always allocated the full length item with PURIFY. To do this
1353            we fake things so that arena is false for all 16 types..  */
1354         if(new_type_details->arena) {
1355             /* This points to the start of the allocated area.  */
1356             new_body_inline(new_body, new_type);
1357             Zero(new_body, new_type_details->body_size, char);
1358             new_body = ((char *)new_body) - new_type_details->offset;
1359         } else {
1360             new_body = new_NOARENAZ(new_type_details);
1361         }
1362         SvANY(sv) = new_body;
1363
1364         if (old_type_details->copy) {
1365             /* There is now the potential for an upgrade from something without
1366                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1367             int offset = old_type_details->offset;
1368             int length = old_type_details->copy;
1369
1370             if (new_type_details->offset > old_type_details->offset) {
1371                 const int difference
1372                     = new_type_details->offset - old_type_details->offset;
1373                 offset += difference;
1374                 length -= difference;
1375             }
1376             assert (length >= 0);
1377                 
1378             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1379                  char);
1380         }
1381
1382 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1383         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1384          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1385          * NV slot, but the new one does, then we need to initialise the
1386          * freshly created NV slot with whatever the correct bit pattern is
1387          * for 0.0  */
1388         if (old_type_details->zero_nv && !new_type_details->zero_nv
1389             && !isGV_with_GP(sv))
1390             SvNV_set(sv, 0);
1391 #endif
1392
1393         if (new_type == SVt_PVIO) {
1394             IO * const io = MUTABLE_IO(sv);
1395             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1396
1397             SvOBJECT_on(io);
1398             /* Clear the stashcache because a new IO could overrule a package
1399                name */
1400             hv_clear(PL_stashcache);
1401
1402             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1403             IoPAGE_LEN(sv) = 60;
1404         }
1405         if (old_type < SVt_PV) {
1406             /* referant will be NULL unless the old type was SVt_IV emulating
1407                SVt_RV */
1408             sv->sv_u.svu_rv = referant;
1409         }
1410         break;
1411     default:
1412         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1413                    (unsigned long)new_type);
1414     }
1415
1416     if (old_type > SVt_IV) {
1417 #ifdef PURIFY
1418         safefree(old_body);
1419 #else
1420         /* Note that there is an assumption that all bodies of types that
1421            can be upgraded came from arenas. Only the more complex non-
1422            upgradable types are allowed to be directly malloc()ed.  */
1423         assert(old_type_details->arena);
1424         del_body((void*)((char*)old_body + old_type_details->offset),
1425                  &PL_body_roots[old_type]);
1426 #endif
1427     }
1428 }
1429
1430 /*
1431 =for apidoc sv_backoff
1432
1433 Remove any string offset.  You should normally use the C<SvOOK_off> macro
1434 wrapper instead.
1435
1436 =cut
1437 */
1438
1439 int
1440 Perl_sv_backoff(pTHX_ register SV *const sv)
1441 {
1442     STRLEN delta;
1443     const char * const s = SvPVX_const(sv);
1444
1445     PERL_ARGS_ASSERT_SV_BACKOFF;
1446     PERL_UNUSED_CONTEXT;
1447
1448     assert(SvOOK(sv));
1449     assert(SvTYPE(sv) != SVt_PVHV);
1450     assert(SvTYPE(sv) != SVt_PVAV);
1451
1452     SvOOK_offset(sv, delta);
1453     
1454     SvLEN_set(sv, SvLEN(sv) + delta);
1455     SvPV_set(sv, SvPVX(sv) - delta);
1456     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1457     SvFLAGS(sv) &= ~SVf_OOK;
1458     return 0;
1459 }
1460
1461 /*
1462 =for apidoc sv_grow
1463
1464 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1465 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1466 Use the C<SvGROW> wrapper instead.
1467
1468 =cut
1469 */
1470
1471 char *
1472 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1473 {
1474     register char *s;
1475
1476     PERL_ARGS_ASSERT_SV_GROW;
1477
1478     if (PL_madskills && newlen >= 0x100000) {
1479         PerlIO_printf(Perl_debug_log,
1480                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1481     }
1482 #ifdef HAS_64K_LIMIT
1483     if (newlen >= 0x10000) {
1484         PerlIO_printf(Perl_debug_log,
1485                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1486         my_exit(1);
1487     }
1488 #endif /* HAS_64K_LIMIT */
1489     if (SvROK(sv))
1490         sv_unref(sv);
1491     if (SvTYPE(sv) < SVt_PV) {
1492         sv_upgrade(sv, SVt_PV);
1493         s = SvPVX_mutable(sv);
1494     }
1495     else if (SvOOK(sv)) {       /* pv is offset? */
1496         sv_backoff(sv);
1497         s = SvPVX_mutable(sv);
1498         if (newlen > SvLEN(sv))
1499             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1500 #ifdef HAS_64K_LIMIT
1501         if (newlen >= 0x10000)
1502             newlen = 0xFFFF;
1503 #endif
1504     }
1505     else
1506         s = SvPVX_mutable(sv);
1507
1508     if (newlen > SvLEN(sv)) {           /* need more room? */
1509         STRLEN minlen = SvCUR(sv);
1510         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1511         if (newlen < minlen)
1512             newlen = minlen;
1513 #ifndef Perl_safesysmalloc_size
1514         newlen = PERL_STRLEN_ROUNDUP(newlen);
1515 #endif
1516         if (SvLEN(sv) && s) {
1517             s = (char*)saferealloc(s, newlen);
1518         }
1519         else {
1520             s = (char*)safemalloc(newlen);
1521             if (SvPVX_const(sv) && SvCUR(sv)) {
1522                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1523             }
1524         }
1525         SvPV_set(sv, s);
1526 #ifdef Perl_safesysmalloc_size
1527         /* Do this here, do it once, do it right, and then we will never get
1528            called back into sv_grow() unless there really is some growing
1529            needed.  */
1530         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1531 #else
1532         SvLEN_set(sv, newlen);
1533 #endif
1534     }
1535     return s;
1536 }
1537
1538 /*
1539 =for apidoc sv_setiv
1540
1541 Copies an integer into the given SV, upgrading first if necessary.
1542 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1543
1544 =cut
1545 */
1546
1547 void
1548 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1549 {
1550     dVAR;
1551
1552     PERL_ARGS_ASSERT_SV_SETIV;
1553
1554     SV_CHECK_THINKFIRST_COW_DROP(sv);
1555     switch (SvTYPE(sv)) {
1556     case SVt_NULL:
1557     case SVt_NV:
1558         sv_upgrade(sv, SVt_IV);
1559         break;
1560     case SVt_PV:
1561         sv_upgrade(sv, SVt_PVIV);
1562         break;
1563
1564     case SVt_PVGV:
1565         if (!isGV_with_GP(sv))
1566             break;
1567     case SVt_PVAV:
1568     case SVt_PVHV:
1569     case SVt_PVCV:
1570     case SVt_PVFM:
1571     case SVt_PVIO:
1572         /* diag_listed_as: Can't coerce %s to %s in %s */
1573         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1574                    OP_DESC(PL_op));
1575     default: NOOP;
1576     }
1577     (void)SvIOK_only(sv);                       /* validate number */
1578     SvIV_set(sv, i);
1579     SvTAINT(sv);
1580 }
1581
1582 /*
1583 =for apidoc sv_setiv_mg
1584
1585 Like C<sv_setiv>, but also handles 'set' magic.
1586
1587 =cut
1588 */
1589
1590 void
1591 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1592 {
1593     PERL_ARGS_ASSERT_SV_SETIV_MG;
1594
1595     sv_setiv(sv,i);
1596     SvSETMAGIC(sv);
1597 }
1598
1599 /*
1600 =for apidoc sv_setuv
1601
1602 Copies an unsigned integer into the given SV, upgrading first if necessary.
1603 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1604
1605 =cut
1606 */
1607
1608 void
1609 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1610 {
1611     PERL_ARGS_ASSERT_SV_SETUV;
1612
1613     /* With these two if statements:
1614        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1615
1616        without
1617        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1618
1619        If you wish to remove them, please benchmark to see what the effect is
1620     */
1621     if (u <= (UV)IV_MAX) {
1622        sv_setiv(sv, (IV)u);
1623        return;
1624     }
1625     sv_setiv(sv, 0);
1626     SvIsUV_on(sv);
1627     SvUV_set(sv, u);
1628 }
1629
1630 /*
1631 =for apidoc sv_setuv_mg
1632
1633 Like C<sv_setuv>, but also handles 'set' magic.
1634
1635 =cut
1636 */
1637
1638 void
1639 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1640 {
1641     PERL_ARGS_ASSERT_SV_SETUV_MG;
1642
1643     sv_setuv(sv,u);
1644     SvSETMAGIC(sv);
1645 }
1646
1647 /*
1648 =for apidoc sv_setnv
1649
1650 Copies a double into the given SV, upgrading first if necessary.
1651 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1652
1653 =cut
1654 */
1655
1656 void
1657 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1658 {
1659     dVAR;
1660
1661     PERL_ARGS_ASSERT_SV_SETNV;
1662
1663     SV_CHECK_THINKFIRST_COW_DROP(sv);
1664     switch (SvTYPE(sv)) {
1665     case SVt_NULL:
1666     case SVt_IV:
1667         sv_upgrade(sv, SVt_NV);
1668         break;
1669     case SVt_PV:
1670     case SVt_PVIV:
1671         sv_upgrade(sv, SVt_PVNV);
1672         break;
1673
1674     case SVt_PVGV:
1675         if (!isGV_with_GP(sv))
1676             break;
1677     case SVt_PVAV:
1678     case SVt_PVHV:
1679     case SVt_PVCV:
1680     case SVt_PVFM:
1681     case SVt_PVIO:
1682         /* diag_listed_as: Can't coerce %s to %s in %s */
1683         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1684                    OP_DESC(PL_op));
1685     default: NOOP;
1686     }
1687     SvNV_set(sv, num);
1688     (void)SvNOK_only(sv);                       /* validate number */
1689     SvTAINT(sv);
1690 }
1691
1692 /*
1693 =for apidoc sv_setnv_mg
1694
1695 Like C<sv_setnv>, but also handles 'set' magic.
1696
1697 =cut
1698 */
1699
1700 void
1701 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1702 {
1703     PERL_ARGS_ASSERT_SV_SETNV_MG;
1704
1705     sv_setnv(sv,num);
1706     SvSETMAGIC(sv);
1707 }
1708
1709 /* Print an "isn't numeric" warning, using a cleaned-up,
1710  * printable version of the offending string
1711  */
1712
1713 STATIC void
1714 S_not_a_number(pTHX_ SV *const sv)
1715 {
1716      dVAR;
1717      SV *dsv;
1718      char tmpbuf[64];
1719      const char *pv;
1720
1721      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1722
1723      if (DO_UTF8(sv)) {
1724           dsv = newSVpvs_flags("", SVs_TEMP);
1725           pv = sv_uni_display(dsv, sv, 10, UNI_DISPLAY_ISPRINT);
1726      } else {
1727           char *d = tmpbuf;
1728           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1729           /* each *s can expand to 4 chars + "...\0",
1730              i.e. need room for 8 chars */
1731         
1732           const char *s = SvPVX_const(sv);
1733           const char * const end = s + SvCUR(sv);
1734           for ( ; s < end && d < limit; s++ ) {
1735                int ch = *s & 0xFF;
1736                if (ch & 128 && !isPRINT_LC(ch)) {
1737                     *d++ = 'M';
1738                     *d++ = '-';
1739                     ch &= 127;
1740                }
1741                if (ch == '\n') {
1742                     *d++ = '\\';
1743                     *d++ = 'n';
1744                }
1745                else if (ch == '\r') {
1746                     *d++ = '\\';
1747                     *d++ = 'r';
1748                }
1749                else if (ch == '\f') {
1750                     *d++ = '\\';
1751                     *d++ = 'f';
1752                }
1753                else if (ch == '\\') {
1754                     *d++ = '\\';
1755                     *d++ = '\\';
1756                }
1757                else if (ch == '\0') {
1758                     *d++ = '\\';
1759                     *d++ = '0';
1760                }
1761                else if (isPRINT_LC(ch))
1762                     *d++ = ch;
1763                else {
1764                     *d++ = '^';
1765                     *d++ = toCTRL(ch);
1766                }
1767           }
1768           if (s < end) {
1769                *d++ = '.';
1770                *d++ = '.';
1771                *d++ = '.';
1772           }
1773           *d = '\0';
1774           pv = tmpbuf;
1775     }
1776
1777     if (PL_op)
1778         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1779                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1780                     "Argument \"%s\" isn't numeric in %s", pv,
1781                     OP_DESC(PL_op));
1782     else
1783         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1784                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1785                     "Argument \"%s\" isn't numeric", pv);
1786 }
1787
1788 /*
1789 =for apidoc looks_like_number
1790
1791 Test if the content of an SV looks like a number (or is a number).
1792 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1793 non-numeric warning), even if your atof() doesn't grok them.  Get-magic is
1794 ignored.
1795
1796 =cut
1797 */
1798
1799 I32
1800 Perl_looks_like_number(pTHX_ SV *const sv)
1801 {
1802     register const char *sbegin;
1803     STRLEN len;
1804
1805     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1806
1807     if (SvPOK(sv) || SvPOKp(sv)) {
1808         sbegin = SvPV_nomg_const(sv, len);
1809     }
1810     else
1811         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1812     return grok_number(sbegin, len, NULL);
1813 }
1814
1815 STATIC bool
1816 S_glob_2number(pTHX_ GV * const gv)
1817 {
1818     SV *const buffer = sv_newmortal();
1819
1820     PERL_ARGS_ASSERT_GLOB_2NUMBER;
1821
1822     gv_efullname3(buffer, gv, "*");
1823
1824     /* We know that all GVs stringify to something that is not-a-number,
1825         so no need to test that.  */
1826     if (ckWARN(WARN_NUMERIC))
1827         not_a_number(buffer);
1828     /* We just want something true to return, so that S_sv_2iuv_common
1829         can tail call us and return true.  */
1830     return TRUE;
1831 }
1832
1833 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1834    until proven guilty, assume that things are not that bad... */
1835
1836 /*
1837    NV_PRESERVES_UV:
1838
1839    As 64 bit platforms often have an NV that doesn't preserve all bits of
1840    an IV (an assumption perl has been based on to date) it becomes necessary
1841    to remove the assumption that the NV always carries enough precision to
1842    recreate the IV whenever needed, and that the NV is the canonical form.
1843    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1844    precision as a side effect of conversion (which would lead to insanity
1845    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1846    1) to distinguish between IV/UV/NV slots that have cached a valid
1847       conversion where precision was lost and IV/UV/NV slots that have a
1848       valid conversion which has lost no precision
1849    2) to ensure that if a numeric conversion to one form is requested that
1850       would lose precision, the precise conversion (or differently
1851       imprecise conversion) is also performed and cached, to prevent
1852       requests for different numeric formats on the same SV causing
1853       lossy conversion chains. (lossless conversion chains are perfectly
1854       acceptable (still))
1855
1856
1857    flags are used:
1858    SvIOKp is true if the IV slot contains a valid value
1859    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1860    SvNOKp is true if the NV slot contains a valid value
1861    SvNOK  is true only if the NV value is accurate
1862
1863    so
1864    while converting from PV to NV, check to see if converting that NV to an
1865    IV(or UV) would lose accuracy over a direct conversion from PV to
1866    IV(or UV). If it would, cache both conversions, return NV, but mark
1867    SV as IOK NOKp (ie not NOK).
1868
1869    While converting from PV to IV, check to see if converting that IV to an
1870    NV would lose accuracy over a direct conversion from PV to NV. If it
1871    would, cache both conversions, flag similarly.
1872
1873    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1874    correctly because if IV & NV were set NV *always* overruled.
1875    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1876    changes - now IV and NV together means that the two are interchangeable:
1877    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1878
1879    The benefit of this is that operations such as pp_add know that if
1880    SvIOK is true for both left and right operands, then integer addition
1881    can be used instead of floating point (for cases where the result won't
1882    overflow). Before, floating point was always used, which could lead to
1883    loss of precision compared with integer addition.
1884
1885    * making IV and NV equal status should make maths accurate on 64 bit
1886      platforms
1887    * may speed up maths somewhat if pp_add and friends start to use
1888      integers when possible instead of fp. (Hopefully the overhead in
1889      looking for SvIOK and checking for overflow will not outweigh the
1890      fp to integer speedup)
1891    * will slow down integer operations (callers of SvIV) on "inaccurate"
1892      values, as the change from SvIOK to SvIOKp will cause a call into
1893      sv_2iv each time rather than a macro access direct to the IV slot
1894    * should speed up number->string conversion on integers as IV is
1895      favoured when IV and NV are equally accurate
1896
1897    ####################################################################
1898    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1899    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1900    On the other hand, SvUOK is true iff UV.
1901    ####################################################################
1902
1903    Your mileage will vary depending your CPU's relative fp to integer
1904    performance ratio.
1905 */
1906
1907 #ifndef NV_PRESERVES_UV
1908 #  define IS_NUMBER_UNDERFLOW_IV 1
1909 #  define IS_NUMBER_UNDERFLOW_UV 2
1910 #  define IS_NUMBER_IV_AND_UV    2
1911 #  define IS_NUMBER_OVERFLOW_IV  4
1912 #  define IS_NUMBER_OVERFLOW_UV  5
1913
1914 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1915
1916 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1917 STATIC int
1918 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1919 #  ifdef DEBUGGING
1920                        , I32 numtype
1921 #  endif
1922                        )
1923 {
1924     dVAR;
1925
1926     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1927
1928     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));
1929     if (SvNVX(sv) < (NV)IV_MIN) {
1930         (void)SvIOKp_on(sv);
1931         (void)SvNOK_on(sv);
1932         SvIV_set(sv, IV_MIN);
1933         return IS_NUMBER_UNDERFLOW_IV;
1934     }
1935     if (SvNVX(sv) > (NV)UV_MAX) {
1936         (void)SvIOKp_on(sv);
1937         (void)SvNOK_on(sv);
1938         SvIsUV_on(sv);
1939         SvUV_set(sv, UV_MAX);
1940         return IS_NUMBER_OVERFLOW_UV;
1941     }
1942     (void)SvIOKp_on(sv);
1943     (void)SvNOK_on(sv);
1944     /* Can't use strtol etc to convert this string.  (See truth table in
1945        sv_2iv  */
1946     if (SvNVX(sv) <= (UV)IV_MAX) {
1947         SvIV_set(sv, I_V(SvNVX(sv)));
1948         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1949             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1950         } else {
1951             /* Integer is imprecise. NOK, IOKp */
1952         }
1953         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1954     }
1955     SvIsUV_on(sv);
1956     SvUV_set(sv, U_V(SvNVX(sv)));
1957     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1958         if (SvUVX(sv) == UV_MAX) {
1959             /* As we know that NVs don't preserve UVs, UV_MAX cannot
1960                possibly be preserved by NV. Hence, it must be overflow.
1961                NOK, IOKp */
1962             return IS_NUMBER_OVERFLOW_UV;
1963         }
1964         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1965     } else {
1966         /* Integer is imprecise. NOK, IOKp */
1967     }
1968     return IS_NUMBER_OVERFLOW_IV;
1969 }
1970 #endif /* !NV_PRESERVES_UV*/
1971
1972 STATIC bool
1973 S_sv_2iuv_common(pTHX_ SV *const sv)
1974 {
1975     dVAR;
1976
1977     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
1978
1979     if (SvNOKp(sv)) {
1980         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
1981          * without also getting a cached IV/UV from it at the same time
1982          * (ie PV->NV conversion should detect loss of accuracy and cache
1983          * IV or UV at same time to avoid this. */
1984         /* IV-over-UV optimisation - choose to cache IV if possible */
1985
1986         if (SvTYPE(sv) == SVt_NV)
1987             sv_upgrade(sv, SVt_PVNV);
1988
1989         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
1990         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
1991            certainly cast into the IV range at IV_MAX, whereas the correct
1992            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
1993            cases go to UV */
1994 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
1995         if (Perl_isnan(SvNVX(sv))) {
1996             SvUV_set(sv, 0);
1997             SvIsUV_on(sv);
1998             return FALSE;
1999         }
2000 #endif
2001         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2002             SvIV_set(sv, I_V(SvNVX(sv)));
2003             if (SvNVX(sv) == (NV) SvIVX(sv)
2004 #ifndef NV_PRESERVES_UV
2005                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2006                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2007                 /* Don't flag it as "accurately an integer" if the number
2008                    came from a (by definition imprecise) NV operation, and
2009                    we're outside the range of NV integer precision */
2010 #endif
2011                 ) {
2012                 if (SvNOK(sv))
2013                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2014                 else {
2015                     /* scalar has trailing garbage, eg "42a" */
2016                 }
2017                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2018                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2019                                       PTR2UV(sv),
2020                                       SvNVX(sv),
2021                                       SvIVX(sv)));
2022
2023             } else {
2024                 /* IV not precise.  No need to convert from PV, as NV
2025                    conversion would already have cached IV if it detected
2026                    that PV->IV would be better than PV->NV->IV
2027                    flags already correct - don't set public IOK.  */
2028                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2029                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2030                                       PTR2UV(sv),
2031                                       SvNVX(sv),
2032                                       SvIVX(sv)));
2033             }
2034             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2035                but the cast (NV)IV_MIN rounds to a the value less (more
2036                negative) than IV_MIN which happens to be equal to SvNVX ??
2037                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2038                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2039                (NV)UVX == NVX are both true, but the values differ. :-(
2040                Hopefully for 2s complement IV_MIN is something like
2041                0x8000000000000000 which will be exact. NWC */
2042         }
2043         else {
2044             SvUV_set(sv, U_V(SvNVX(sv)));
2045             if (
2046                 (SvNVX(sv) == (NV) SvUVX(sv))
2047 #ifndef  NV_PRESERVES_UV
2048                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2049                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2050                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2051                 /* Don't flag it as "accurately an integer" if the number
2052                    came from a (by definition imprecise) NV operation, and
2053                    we're outside the range of NV integer precision */
2054 #endif
2055                 && SvNOK(sv)
2056                 )
2057                 SvIOK_on(sv);
2058             SvIsUV_on(sv);
2059             DEBUG_c(PerlIO_printf(Perl_debug_log,
2060                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2061                                   PTR2UV(sv),
2062                                   SvUVX(sv),
2063                                   SvUVX(sv)));
2064         }
2065     }
2066     else if (SvPOKp(sv) && SvLEN(sv)) {
2067         UV value;
2068         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2069         /* We want to avoid a possible problem when we cache an IV/ a UV which
2070            may be later translated to an NV, and the resulting NV is not
2071            the same as the direct translation of the initial string
2072            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2073            be careful to ensure that the value with the .456 is around if the
2074            NV value is requested in the future).
2075         
2076            This means that if we cache such an IV/a UV, we need to cache the
2077            NV as well.  Moreover, we trade speed for space, and do not
2078            cache the NV if we are sure it's not needed.
2079          */
2080
2081         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2082         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2083              == IS_NUMBER_IN_UV) {
2084             /* It's definitely an integer, only upgrade to PVIV */
2085             if (SvTYPE(sv) < SVt_PVIV)
2086                 sv_upgrade(sv, SVt_PVIV);
2087             (void)SvIOK_on(sv);
2088         } else if (SvTYPE(sv) < SVt_PVNV)
2089             sv_upgrade(sv, SVt_PVNV);
2090
2091         /* If NVs preserve UVs then we only use the UV value if we know that
2092            we aren't going to call atof() below. If NVs don't preserve UVs
2093            then the value returned may have more precision than atof() will
2094            return, even though value isn't perfectly accurate.  */
2095         if ((numtype & (IS_NUMBER_IN_UV
2096 #ifdef NV_PRESERVES_UV
2097                         | IS_NUMBER_NOT_INT
2098 #endif
2099             )) == IS_NUMBER_IN_UV) {
2100             /* This won't turn off the public IOK flag if it was set above  */
2101             (void)SvIOKp_on(sv);
2102
2103             if (!(numtype & IS_NUMBER_NEG)) {
2104                 /* positive */;
2105                 if (value <= (UV)IV_MAX) {
2106                     SvIV_set(sv, (IV)value);
2107                 } else {
2108                     /* it didn't overflow, and it was positive. */
2109                     SvUV_set(sv, value);
2110                     SvIsUV_on(sv);
2111                 }
2112             } else {
2113                 /* 2s complement assumption  */
2114                 if (value <= (UV)IV_MIN) {
2115                     SvIV_set(sv, -(IV)value);
2116                 } else {
2117                     /* Too negative for an IV.  This is a double upgrade, but
2118                        I'm assuming it will be rare.  */
2119                     if (SvTYPE(sv) < SVt_PVNV)
2120                         sv_upgrade(sv, SVt_PVNV);
2121                     SvNOK_on(sv);
2122                     SvIOK_off(sv);
2123                     SvIOKp_on(sv);
2124                     SvNV_set(sv, -(NV)value);
2125                     SvIV_set(sv, IV_MIN);
2126                 }
2127             }
2128         }
2129         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2130            will be in the previous block to set the IV slot, and the next
2131            block to set the NV slot.  So no else here.  */
2132         
2133         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2134             != IS_NUMBER_IN_UV) {
2135             /* It wasn't an (integer that doesn't overflow the UV). */
2136             SvNV_set(sv, Atof(SvPVX_const(sv)));
2137
2138             if (! numtype && ckWARN(WARN_NUMERIC))
2139                 not_a_number(sv);
2140
2141 #if defined(USE_LONG_DOUBLE)
2142             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2143                                   PTR2UV(sv), SvNVX(sv)));
2144 #else
2145             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2146                                   PTR2UV(sv), SvNVX(sv)));
2147 #endif
2148
2149 #ifdef NV_PRESERVES_UV
2150             (void)SvIOKp_on(sv);
2151             (void)SvNOK_on(sv);
2152             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2153                 SvIV_set(sv, I_V(SvNVX(sv)));
2154                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2155                     SvIOK_on(sv);
2156                 } else {
2157                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2158                 }
2159                 /* UV will not work better than IV */
2160             } else {
2161                 if (SvNVX(sv) > (NV)UV_MAX) {
2162                     SvIsUV_on(sv);
2163                     /* Integer is inaccurate. NOK, IOKp, is UV */
2164                     SvUV_set(sv, UV_MAX);
2165                 } else {
2166                     SvUV_set(sv, U_V(SvNVX(sv)));
2167                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2168                        NV preservse UV so can do correct comparison.  */
2169                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2170                         SvIOK_on(sv);
2171                     } else {
2172                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2173                     }
2174                 }
2175                 SvIsUV_on(sv);
2176             }
2177 #else /* NV_PRESERVES_UV */
2178             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2179                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2180                 /* The IV/UV slot will have been set from value returned by
2181                    grok_number above.  The NV slot has just been set using
2182                    Atof.  */
2183                 SvNOK_on(sv);
2184                 assert (SvIOKp(sv));
2185             } else {
2186                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2187                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2188                     /* Small enough to preserve all bits. */
2189                     (void)SvIOKp_on(sv);
2190                     SvNOK_on(sv);
2191                     SvIV_set(sv, I_V(SvNVX(sv)));
2192                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2193                         SvIOK_on(sv);
2194                     /* Assumption: first non-preserved integer is < IV_MAX,
2195                        this NV is in the preserved range, therefore: */
2196                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2197                           < (UV)IV_MAX)) {
2198                         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);
2199                     }
2200                 } else {
2201                     /* IN_UV NOT_INT
2202                          0      0       already failed to read UV.
2203                          0      1       already failed to read UV.
2204                          1      0       you won't get here in this case. IV/UV
2205                                         slot set, public IOK, Atof() unneeded.
2206                          1      1       already read UV.
2207                        so there's no point in sv_2iuv_non_preserve() attempting
2208                        to use atol, strtol, strtoul etc.  */
2209 #  ifdef DEBUGGING
2210                     sv_2iuv_non_preserve (sv, numtype);
2211 #  else
2212                     sv_2iuv_non_preserve (sv);
2213 #  endif
2214                 }
2215             }
2216 #endif /* NV_PRESERVES_UV */
2217         /* It might be more code efficient to go through the entire logic above
2218            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2219            gets complex and potentially buggy, so more programmer efficient
2220            to do it this way, by turning off the public flags:  */
2221         if (!numtype)
2222             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2223         }
2224     }
2225     else  {
2226         if (isGV_with_GP(sv))
2227             return glob_2number(MUTABLE_GV(sv));
2228
2229         if (!SvPADTMP(sv)) {
2230             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2231                 report_uninit(sv);
2232         }
2233         if (SvTYPE(sv) < SVt_IV)
2234             /* Typically the caller expects that sv_any is not NULL now.  */
2235             sv_upgrade(sv, SVt_IV);
2236         /* Return 0 from the caller.  */
2237         return TRUE;
2238     }
2239     return FALSE;
2240 }
2241
2242 /*
2243 =for apidoc sv_2iv_flags
2244
2245 Return the integer value of an SV, doing any necessary string
2246 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2247 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2248
2249 =cut
2250 */
2251
2252 IV
2253 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2254 {
2255     dVAR;
2256     if (!sv)
2257         return 0;
2258     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2259         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2260            the same flag bit as SVf_IVisUV, so must not let them cache IVs.
2261            In practice they are extremely unlikely to actually get anywhere
2262            accessible by user Perl code - the only way that I'm aware of is when
2263            a constant subroutine which is used as the second argument to index.
2264         */
2265         if (flags & SV_GMAGIC)
2266             mg_get(sv);
2267         if (SvIOKp(sv))
2268             return SvIVX(sv);
2269         if (SvNOKp(sv)) {
2270             return I_V(SvNVX(sv));
2271         }
2272         if (SvPOKp(sv) && SvLEN(sv)) {
2273             UV value;
2274             const int numtype
2275                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2276
2277             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2278                 == IS_NUMBER_IN_UV) {
2279                 /* It's definitely an integer */
2280                 if (numtype & IS_NUMBER_NEG) {
2281                     if (value < (UV)IV_MIN)
2282                         return -(IV)value;
2283                 } else {
2284                     if (value < (UV)IV_MAX)
2285                         return (IV)value;
2286                 }
2287             }
2288             if (!numtype) {
2289                 if (ckWARN(WARN_NUMERIC))
2290                     not_a_number(sv);
2291             }
2292             return I_V(Atof(SvPVX_const(sv)));
2293         }
2294         if (SvROK(sv)) {
2295             goto return_rok;
2296         }
2297         assert(SvTYPE(sv) >= SVt_PVMG);
2298         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2299     } else if (SvTHINKFIRST(sv)) {
2300         if (SvROK(sv)) {
2301         return_rok:
2302             if (SvAMAGIC(sv)) {
2303                 SV * tmpstr;
2304                 if (flags & SV_SKIP_OVERLOAD)
2305                     return 0;
2306                 tmpstr = AMG_CALLunary(sv, numer_amg);
2307                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2308                     return SvIV(tmpstr);
2309                 }
2310             }
2311             return PTR2IV(SvRV(sv));
2312         }
2313         if (SvIsCOW(sv)) {
2314             sv_force_normal_flags(sv, 0);
2315         }
2316         if (SvREADONLY(sv) && !SvOK(sv)) {
2317             if (ckWARN(WARN_UNINITIALIZED))
2318                 report_uninit(sv);
2319             return 0;
2320         }
2321     }
2322     if (!SvIOKp(sv)) {
2323         if (S_sv_2iuv_common(aTHX_ sv))
2324             return 0;
2325     }
2326     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2327         PTR2UV(sv),SvIVX(sv)));
2328     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2329 }
2330
2331 /*
2332 =for apidoc sv_2uv_flags
2333
2334 Return the unsigned integer value of an SV, doing any necessary string
2335 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2336 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2337
2338 =cut
2339 */
2340
2341 UV
2342 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2343 {
2344     dVAR;
2345     if (!sv)
2346         return 0;
2347     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2348         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2349            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  */
2350         if (flags & SV_GMAGIC)
2351             mg_get(sv);
2352         if (SvIOKp(sv))
2353             return SvUVX(sv);
2354         if (SvNOKp(sv))
2355             return U_V(SvNVX(sv));
2356         if (SvPOKp(sv) && SvLEN(sv)) {
2357             UV value;
2358             const int numtype
2359                 = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2360
2361             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2362                 == IS_NUMBER_IN_UV) {
2363                 /* It's definitely an integer */
2364                 if (!(numtype & IS_NUMBER_NEG))
2365                     return value;
2366             }
2367             if (!numtype) {
2368                 if (ckWARN(WARN_NUMERIC))
2369                     not_a_number(sv);
2370             }
2371             return U_V(Atof(SvPVX_const(sv)));
2372         }
2373         if (SvROK(sv)) {
2374             goto return_rok;
2375         }
2376         assert(SvTYPE(sv) >= SVt_PVMG);
2377         /* This falls through to the report_uninit inside S_sv_2iuv_common.  */
2378     } else if (SvTHINKFIRST(sv)) {
2379         if (SvROK(sv)) {
2380         return_rok:
2381             if (SvAMAGIC(sv)) {
2382                 SV *tmpstr;
2383                 if (flags & SV_SKIP_OVERLOAD)
2384                     return 0;
2385                 tmpstr = AMG_CALLunary(sv, numer_amg);
2386                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2387                     return SvUV(tmpstr);
2388                 }
2389             }
2390             return PTR2UV(SvRV(sv));
2391         }
2392         if (SvIsCOW(sv)) {
2393             sv_force_normal_flags(sv, 0);
2394         }
2395         if (SvREADONLY(sv) && !SvOK(sv)) {
2396             if (ckWARN(WARN_UNINITIALIZED))
2397                 report_uninit(sv);
2398             return 0;
2399         }
2400     }
2401     if (!SvIOKp(sv)) {
2402         if (S_sv_2iuv_common(aTHX_ sv))
2403             return 0;
2404     }
2405
2406     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2407                           PTR2UV(sv),SvUVX(sv)));
2408     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2409 }
2410
2411 /*
2412 =for apidoc sv_2nv_flags
2413
2414 Return the num value of an SV, doing any necessary string or integer
2415 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2416 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2417
2418 =cut
2419 */
2420
2421 NV
2422 Perl_sv_2nv_flags(pTHX_ register SV *const sv, const I32 flags)
2423 {
2424     dVAR;
2425     if (!sv)
2426         return 0.0;
2427     if (SvGMAGICAL(sv) || SvVALID(sv)) {
2428         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2429            the same flag bit as SVf_IVisUV, so must not let them cache NVs.  */
2430         if (flags & SV_GMAGIC)
2431             mg_get(sv);
2432         if (SvNOKp(sv))
2433             return SvNVX(sv);
2434         if ((SvPOKp(sv) && SvLEN(sv)) && !SvIOKp(sv)) {
2435             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2436                 !grok_number(SvPVX_const(sv), SvCUR(sv), NULL))
2437                 not_a_number(sv);
2438             return Atof(SvPVX_const(sv));
2439         }
2440         if (SvIOKp(sv)) {
2441             if (SvIsUV(sv))
2442                 return (NV)SvUVX(sv);
2443             else
2444                 return (NV)SvIVX(sv);
2445         }
2446         if (SvROK(sv)) {
2447             goto return_rok;
2448         }
2449         assert(SvTYPE(sv) >= SVt_PVMG);
2450         /* This falls through to the report_uninit near the end of the
2451            function. */
2452     } else if (SvTHINKFIRST(sv)) {
2453         if (SvROK(sv)) {
2454         return_rok:
2455             if (SvAMAGIC(sv)) {
2456                 SV *tmpstr;
2457                 if (flags & SV_SKIP_OVERLOAD)
2458                     return 0;
2459                 tmpstr = AMG_CALLunary(sv, numer_amg);
2460                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2461                     return SvNV(tmpstr);
2462                 }
2463             }
2464             return PTR2NV(SvRV(sv));
2465         }
2466         if (SvIsCOW(sv)) {
2467             sv_force_normal_flags(sv, 0);
2468         }
2469         if (SvREADONLY(sv) && !SvOK(sv)) {
2470             if (ckWARN(WARN_UNINITIALIZED))
2471                 report_uninit(sv);
2472             return 0.0;
2473         }
2474     }
2475     if (SvTYPE(sv) < SVt_NV) {
2476         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2477         sv_upgrade(sv, SVt_NV);
2478 #ifdef USE_LONG_DOUBLE
2479         DEBUG_c({
2480             STORE_NUMERIC_LOCAL_SET_STANDARD();
2481             PerlIO_printf(Perl_debug_log,
2482                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2483                           PTR2UV(sv), SvNVX(sv));
2484             RESTORE_NUMERIC_LOCAL();
2485         });
2486 #else
2487         DEBUG_c({
2488             STORE_NUMERIC_LOCAL_SET_STANDARD();
2489             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2490                           PTR2UV(sv), SvNVX(sv));
2491             RESTORE_NUMERIC_LOCAL();
2492         });
2493 #endif
2494     }
2495     else if (SvTYPE(sv) < SVt_PVNV)
2496         sv_upgrade(sv, SVt_PVNV);
2497     if (SvNOKp(sv)) {
2498         return SvNVX(sv);
2499     }
2500     if (SvIOKp(sv)) {
2501         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2502 #ifdef NV_PRESERVES_UV
2503         if (SvIOK(sv))
2504             SvNOK_on(sv);
2505         else
2506             SvNOKp_on(sv);
2507 #else
2508         /* Only set the public NV OK flag if this NV preserves the IV  */
2509         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2510         if (SvIOK(sv) &&
2511             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2512                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2513             SvNOK_on(sv);
2514         else
2515             SvNOKp_on(sv);
2516 #endif
2517     }
2518     else if (SvPOKp(sv) && SvLEN(sv)) {
2519         UV value;
2520         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2521         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2522             not_a_number(sv);
2523 #ifdef NV_PRESERVES_UV
2524         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2525             == IS_NUMBER_IN_UV) {
2526             /* It's definitely an integer */
2527             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2528         } else
2529             SvNV_set(sv, Atof(SvPVX_const(sv)));
2530         if (numtype)
2531             SvNOK_on(sv);
2532         else
2533             SvNOKp_on(sv);
2534 #else
2535         SvNV_set(sv, Atof(SvPVX_const(sv)));
2536         /* Only set the public NV OK flag if this NV preserves the value in
2537            the PV at least as well as an IV/UV would.
2538            Not sure how to do this 100% reliably. */
2539         /* if that shift count is out of range then Configure's test is
2540            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2541            UV_BITS */
2542         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2543             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2544             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2545         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2546             /* Can't use strtol etc to convert this string, so don't try.
2547                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2548             SvNOK_on(sv);
2549         } else {
2550             /* value has been set.  It may not be precise.  */
2551             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2552                 /* 2s complement assumption for (UV)IV_MIN  */
2553                 SvNOK_on(sv); /* Integer is too negative.  */
2554             } else {
2555                 SvNOKp_on(sv);
2556                 SvIOKp_on(sv);
2557
2558                 if (numtype & IS_NUMBER_NEG) {
2559                     SvIV_set(sv, -(IV)value);
2560                 } else if (value <= (UV)IV_MAX) {
2561                     SvIV_set(sv, (IV)value);
2562                 } else {
2563                     SvUV_set(sv, value);
2564                     SvIsUV_on(sv);
2565                 }
2566
2567                 if (numtype & IS_NUMBER_NOT_INT) {
2568                     /* I believe that even if the original PV had decimals,
2569                        they are lost beyond the limit of the FP precision.
2570                        However, neither is canonical, so both only get p
2571                        flags.  NWC, 2000/11/25 */
2572                     /* Both already have p flags, so do nothing */
2573                 } else {
2574                     const NV nv = SvNVX(sv);
2575                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2576                         if (SvIVX(sv) == I_V(nv)) {
2577                             SvNOK_on(sv);
2578                         } else {
2579                             /* It had no "." so it must be integer.  */
2580                         }
2581                         SvIOK_on(sv);
2582                     } else {
2583                         /* between IV_MAX and NV(UV_MAX).
2584                            Could be slightly > UV_MAX */
2585
2586                         if (numtype & IS_NUMBER_NOT_INT) {
2587                             /* UV and NV both imprecise.  */
2588                         } else {
2589                             const UV nv_as_uv = U_V(nv);
2590
2591                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2592                                 SvNOK_on(sv);
2593                             }
2594                             SvIOK_on(sv);
2595                         }
2596                     }
2597                 }
2598             }
2599         }
2600         /* It might be more code efficient to go through the entire logic above
2601            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2602            gets complex and potentially buggy, so more programmer efficient
2603            to do it this way, by turning off the public flags:  */
2604         if (!numtype)
2605             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2606 #endif /* NV_PRESERVES_UV */
2607     }
2608     else  {
2609         if (isGV_with_GP(sv)) {
2610             glob_2number(MUTABLE_GV(sv));
2611             return 0.0;
2612         }
2613
2614         if (!PL_localizing && !SvPADTMP(sv) && ckWARN(WARN_UNINITIALIZED))
2615             report_uninit(sv);
2616         assert (SvTYPE(sv) >= SVt_NV);
2617         /* Typically the caller expects that sv_any is not NULL now.  */
2618         /* XXX Ilya implies that this is a bug in callers that assume this
2619            and ideally should be fixed.  */
2620         return 0.0;
2621     }
2622 #if defined(USE_LONG_DOUBLE)
2623     DEBUG_c({
2624         STORE_NUMERIC_LOCAL_SET_STANDARD();
2625         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2626                       PTR2UV(sv), SvNVX(sv));
2627         RESTORE_NUMERIC_LOCAL();
2628     });
2629 #else
2630     DEBUG_c({
2631         STORE_NUMERIC_LOCAL_SET_STANDARD();
2632         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2633                       PTR2UV(sv), SvNVX(sv));
2634         RESTORE_NUMERIC_LOCAL();
2635     });
2636 #endif
2637     return SvNVX(sv);
2638 }
2639
2640 /*
2641 =for apidoc sv_2num
2642
2643 Return an SV with the numeric value of the source SV, doing any necessary
2644 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2645 access this function.
2646
2647 =cut
2648 */
2649
2650 SV *
2651 Perl_sv_2num(pTHX_ register SV *const sv)
2652 {
2653     PERL_ARGS_ASSERT_SV_2NUM;
2654
2655     if (!SvROK(sv))
2656         return sv;
2657     if (SvAMAGIC(sv)) {
2658         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2659         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2660         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2661             return sv_2num(tmpsv);
2662     }
2663     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2664 }
2665
2666 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2667  * UV as a string towards the end of buf, and return pointers to start and
2668  * end of it.
2669  *
2670  * We assume that buf is at least TYPE_CHARS(UV) long.
2671  */
2672
2673 static char *
2674 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2675 {
2676     char *ptr = buf + TYPE_CHARS(UV);
2677     char * const ebuf = ptr;
2678     int sign;
2679
2680     PERL_ARGS_ASSERT_UIV_2BUF;
2681
2682     if (is_uv)
2683         sign = 0;
2684     else if (iv >= 0) {
2685         uv = iv;
2686         sign = 0;
2687     } else {
2688         uv = -iv;
2689         sign = 1;
2690     }
2691     do {
2692         *--ptr = '0' + (char)(uv % 10);
2693     } while (uv /= 10);
2694     if (sign)
2695         *--ptr = '-';
2696     *peob = ebuf;
2697     return ptr;
2698 }
2699
2700 /*
2701 =for apidoc sv_2pv_flags
2702
2703 Returns a pointer to the string value of an SV, and sets *lp to its length.
2704 If flags includes SV_GMAGIC, does an mg_get() first.  Coerces sv to a
2705 string if necessary.  Normally invoked via the C<SvPV_flags> macro.
2706 C<sv_2pv()> and C<sv_2pv_nomg> usually end up here too.
2707
2708 =cut
2709 */
2710
2711 char *
2712 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2713 {
2714     dVAR;
2715     register char *s;
2716
2717     if (!sv) {
2718         if (lp)
2719             *lp = 0;
2720         return (char *)"";
2721     }
2722     if (SvGMAGICAL(sv)) {
2723         if (flags & SV_GMAGIC)
2724             mg_get(sv);
2725         if (SvPOKp(sv)) {
2726             if (lp)
2727                 *lp = SvCUR(sv);
2728             if (flags & SV_MUTABLE_RETURN)
2729                 return SvPVX_mutable(sv);
2730             if (flags & SV_CONST_RETURN)
2731                 return (char *)SvPVX_const(sv);
2732             return SvPVX(sv);
2733         }
2734         if (SvIOKp(sv) || SvNOKp(sv)) {
2735             char tbuf[64];  /* Must fit sprintf/Gconvert of longest IV/NV */
2736             STRLEN len;
2737
2738             if (SvIOKp(sv)) {
2739                 len = SvIsUV(sv)
2740                     ? my_snprintf(tbuf, sizeof(tbuf), "%"UVuf, (UV)SvUVX(sv))
2741                     : my_snprintf(tbuf, sizeof(tbuf), "%"IVdf, (IV)SvIVX(sv));
2742             } else if(SvNVX(sv) == 0.0) {
2743                     tbuf[0] = '0';
2744                     tbuf[1] = 0;
2745                     len = 1;
2746             } else {
2747                 Gconvert(SvNVX(sv), NV_DIG, 0, tbuf);
2748                 len = strlen(tbuf);
2749             }
2750             assert(!SvROK(sv));
2751             {
2752                 dVAR;
2753
2754                 SvUPGRADE(sv, SVt_PV);
2755                 if (lp)
2756                     *lp = len;
2757                 s = SvGROW_mutable(sv, len + 1);
2758                 SvCUR_set(sv, len);
2759                 SvPOKp_on(sv);
2760                 return (char*)memcpy(s, tbuf, len + 1);
2761             }
2762         }
2763         if (SvROK(sv)) {
2764             goto return_rok;
2765         }
2766         assert(SvTYPE(sv) >= SVt_PVMG);
2767         /* This falls through to the report_uninit near the end of the
2768            function. */
2769     } else if (SvTHINKFIRST(sv)) {
2770         if (SvROK(sv)) {
2771         return_rok:
2772             if (SvAMAGIC(sv)) {
2773                 SV *tmpstr;
2774                 if (flags & SV_SKIP_OVERLOAD)
2775                     return NULL;
2776                 tmpstr = AMG_CALLunary(sv, string_amg);
2777                 TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2778                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2779                     /* Unwrap this:  */
2780                     /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2781                      */
2782
2783                     char *pv;
2784                     if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2785                         if (flags & SV_CONST_RETURN) {
2786                             pv = (char *) SvPVX_const(tmpstr);
2787                         } else {
2788                             pv = (flags & SV_MUTABLE_RETURN)
2789                                 ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2790                         }
2791                         if (lp)
2792                             *lp = SvCUR(tmpstr);
2793                     } else {
2794                         pv = sv_2pv_flags(tmpstr, lp, flags);
2795                     }
2796                     if (SvUTF8(tmpstr))
2797                         SvUTF8_on(sv);
2798                     else
2799                         SvUTF8_off(sv);
2800                     return pv;
2801                 }
2802             }
2803             {
2804                 STRLEN len;
2805                 char *retval;
2806                 char *buffer;
2807                 SV *const referent = SvRV(sv);
2808
2809                 if (!referent) {
2810                     len = 7;
2811                     retval = buffer = savepvn("NULLREF", len);
2812                 } else if (SvTYPE(referent) == SVt_REGEXP) {
2813                     REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2814                     I32 seen_evals = 0;
2815
2816                     assert(re);
2817                         
2818                     /* If the regex is UTF-8 we want the containing scalar to
2819                        have an UTF-8 flag too */
2820                     if (RX_UTF8(re))
2821                         SvUTF8_on(sv);
2822                     else
2823                         SvUTF8_off(sv); 
2824
2825                     if ((seen_evals = RX_SEEN_EVALS(re)))
2826                         PL_reginterp_cnt += seen_evals;
2827
2828                     if (lp)
2829                         *lp = RX_WRAPLEN(re);
2830  
2831                     return RX_WRAPPED(re);
2832                 } else {
2833                     const char *const typestr = sv_reftype(referent, 0);
2834                     const STRLEN typelen = strlen(typestr);
2835                     UV addr = PTR2UV(referent);
2836                     const char *stashname = NULL;
2837                     STRLEN stashnamelen = 0; /* hush, gcc */
2838                     const char *buffer_end;
2839
2840                     if (SvOBJECT(referent)) {
2841                         const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2842
2843                         if (name) {
2844                             stashname = HEK_KEY(name);
2845                             stashnamelen = HEK_LEN(name);
2846
2847                             if (HEK_UTF8(name)) {
2848                                 SvUTF8_on(sv);
2849                             } else {
2850                                 SvUTF8_off(sv);
2851                             }
2852                         } else {
2853                             stashname = "__ANON__";
2854                             stashnamelen = 8;
2855                         }
2856                         len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2857                             + 2 * sizeof(UV) + 2 /* )\0 */;
2858                     } else {
2859                         len = typelen + 3 /* (0x */
2860                             + 2 * sizeof(UV) + 2 /* )\0 */;
2861                     }
2862
2863                     Newx(buffer, len, char);
2864                     buffer_end = retval = buffer + len;
2865
2866                     /* Working backwards  */
2867                     *--retval = '\0';
2868                     *--retval = ')';
2869                     do {
2870                         *--retval = PL_hexdigit[addr & 15];
2871                     } while (addr >>= 4);
2872                     *--retval = 'x';
2873                     *--retval = '0';
2874                     *--retval = '(';
2875
2876                     retval -= typelen;
2877                     memcpy(retval, typestr, typelen);
2878
2879                     if (stashname) {
2880                         *--retval = '=';
2881                         retval -= stashnamelen;
2882                         memcpy(retval, stashname, stashnamelen);
2883                     }
2884                     /* retval may not necessarily have reached the start of the
2885                        buffer here.  */
2886                     assert (retval >= buffer);
2887
2888                     len = buffer_end - retval - 1; /* -1 for that \0  */
2889                 }
2890                 if (lp)
2891                     *lp = len;
2892                 SAVEFREEPV(buffer);
2893                 return retval;
2894             }
2895         }
2896         if (SvREADONLY(sv) && !SvOK(sv)) {
2897             if (lp)
2898                 *lp = 0;
2899             if (flags & SV_UNDEF_RETURNS_NULL)
2900                 return NULL;
2901             if (ckWARN(WARN_UNINITIALIZED))
2902                 report_uninit(sv);
2903             return (char *)"";
2904         }
2905     }
2906     if (SvIOK(sv) || ((SvIOKp(sv) && !SvNOKp(sv)))) {
2907         /* I'm assuming that if both IV and NV are equally valid then
2908            converting the IV is going to be more efficient */
2909         const U32 isUIOK = SvIsUV(sv);
2910         char buf[TYPE_CHARS(UV)];
2911         char *ebuf, *ptr;
2912         STRLEN len;
2913
2914         if (SvTYPE(sv) < SVt_PVIV)
2915             sv_upgrade(sv, SVt_PVIV);
2916         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2917         len = ebuf - ptr;
2918         /* inlined from sv_setpvn */
2919         s = SvGROW_mutable(sv, len + 1);
2920         Move(ptr, s, len, char);
2921         s += len;
2922         *s = '\0';
2923     }
2924     else if (SvNOKp(sv)) {
2925         if (SvTYPE(sv) < SVt_PVNV)
2926             sv_upgrade(sv, SVt_PVNV);
2927         if (SvNVX(sv) == 0.0) {
2928             s = SvGROW_mutable(sv, 2);
2929             *s++ = '0';
2930             *s = '\0';
2931         } else {
2932             dSAVE_ERRNO;
2933             /* The +20 is pure guesswork.  Configure test needed. --jhi */
2934             s = SvGROW_mutable(sv, NV_DIG + 20);
2935             /* some Xenix systems wipe out errno here */
2936             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2937             RESTORE_ERRNO;
2938             while (*s) s++;
2939         }
2940 #ifdef hcx
2941         if (s[-1] == '.')
2942             *--s = '\0';
2943 #endif
2944     }
2945     else {
2946         if (isGV_with_GP(sv)) {
2947             GV *const gv = MUTABLE_GV(sv);
2948             SV *const buffer = sv_newmortal();
2949
2950             gv_efullname3(buffer, gv, "*");
2951
2952             assert(SvPOK(buffer));
2953             if (lp) {
2954                     *lp = SvCUR(buffer);
2955             }
2956             if ( SvUTF8(buffer) ) SvUTF8_on(sv);
2957             return SvPVX(buffer);
2958         }
2959
2960         if (lp)
2961             *lp = 0;
2962         if (flags & SV_UNDEF_RETURNS_NULL)
2963             return NULL;
2964         if (!PL_localizing && !SvPADTMP(sv) && ckWARN(WARN_UNINITIALIZED))
2965             report_uninit(sv);
2966         if (SvTYPE(sv) < SVt_PV)
2967             /* Typically the caller expects that sv_any is not NULL now.  */
2968             sv_upgrade(sv, SVt_PV);
2969         return (char *)"";
2970     }
2971     {
2972         const STRLEN len = s - SvPVX_const(sv);
2973         if (lp) 
2974             *lp = len;
2975         SvCUR_set(sv, len);
2976     }
2977     SvPOK_on(sv);
2978     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
2979                           PTR2UV(sv),SvPVX_const(sv)));
2980     if (flags & SV_CONST_RETURN)
2981         return (char *)SvPVX_const(sv);
2982     if (flags & SV_MUTABLE_RETURN)
2983         return SvPVX_mutable(sv);
2984     return SvPVX(sv);
2985 }
2986
2987 /*
2988 =for apidoc sv_copypv
2989
2990 Copies a stringified representation of the source SV into the
2991 destination SV.  Automatically performs any necessary mg_get and
2992 coercion of numeric values into strings.  Guaranteed to preserve
2993 UTF8 flag even from overloaded objects.  Similar in nature to
2994 sv_2pv[_flags] but operates directly on an SV instead of just the
2995 string.  Mostly uses sv_2pv_flags to do its work, except when that
2996 would lose the UTF-8'ness of the PV.
2997
2998 =cut
2999 */
3000
3001 void
3002 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
3003 {
3004     STRLEN len;
3005     const char * const s = SvPV_const(ssv,len);
3006
3007     PERL_ARGS_ASSERT_SV_COPYPV;
3008
3009     sv_setpvn(dsv,s,len);
3010     if (SvUTF8(ssv))
3011         SvUTF8_on(dsv);
3012     else
3013         SvUTF8_off(dsv);
3014 }
3015
3016 /*
3017 =for apidoc sv_2pvbyte
3018
3019 Return a pointer to the byte-encoded representation of the SV, and set *lp
3020 to its length.  May cause the SV to be downgraded from UTF-8 as a
3021 side-effect.
3022
3023 Usually accessed via the C<SvPVbyte> macro.
3024
3025 =cut
3026 */
3027
3028 char *
3029 Perl_sv_2pvbyte(pTHX_ register SV *const sv, STRLEN *const lp)
3030 {
3031     PERL_ARGS_ASSERT_SV_2PVBYTE;
3032
3033     SvGETMAGIC(sv);
3034     sv_utf8_downgrade(sv,0);
3035     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3036 }
3037
3038 /*
3039 =for apidoc sv_2pvutf8
3040
3041 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3042 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3043
3044 Usually accessed via the C<SvPVutf8> macro.
3045
3046 =cut
3047 */
3048
3049 char *
3050 Perl_sv_2pvutf8(pTHX_ register SV *const sv, STRLEN *const lp)
3051 {
3052     PERL_ARGS_ASSERT_SV_2PVUTF8;
3053
3054     sv_utf8_upgrade(sv);
3055     return lp ? SvPV(sv,*lp) : SvPV_nolen(sv);
3056 }
3057
3058
3059 /*
3060 =for apidoc sv_2bool
3061
3062 This macro is only used by sv_true() or its macro equivalent, and only if
3063 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3064 It calls sv_2bool_flags with the SV_GMAGIC flag.
3065
3066 =for apidoc sv_2bool_flags
3067
3068 This function is only used by sv_true() and friends,  and only if
3069 the latter's argument is neither SvPOK, SvIOK nor SvNOK.  If the flags
3070 contain SV_GMAGIC, then it does an mg_get() first.
3071
3072
3073 =cut
3074 */
3075
3076 bool
3077 Perl_sv_2bool_flags(pTHX_ register SV *const sv, const I32 flags)
3078 {
3079     dVAR;
3080
3081     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3082
3083     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3084
3085     if (!SvOK(sv))
3086         return 0;
3087     if (SvROK(sv)) {
3088         if (SvAMAGIC(sv)) {
3089             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3090             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3091                 return cBOOL(SvTRUE(tmpsv));
3092         }
3093         return SvRV(sv) != 0;
3094     }
3095     if (SvPOKp(sv)) {
3096         register XPV* const Xpvtmp = (XPV*)SvANY(sv);
3097         if (Xpvtmp &&
3098                 (*sv->sv_u.svu_pv > '0' ||
3099                 Xpvtmp->xpv_cur > 1 ||
3100                 (Xpvtmp->xpv_cur && *sv->sv_u.svu_pv != '0')))
3101             return 1;
3102         else
3103             return 0;
3104     }
3105     else {
3106         if (SvIOKp(sv))
3107             return SvIVX(sv) != 0;
3108         else {
3109             if (SvNOKp(sv))
3110                 return SvNVX(sv) != 0.0;
3111             else {
3112                 if (isGV_with_GP(sv))
3113                     return TRUE;
3114                 else
3115                     return FALSE;
3116             }
3117         }
3118     }
3119 }
3120
3121 /*
3122 =for apidoc sv_utf8_upgrade
3123
3124 Converts the PV of an SV to its UTF-8-encoded form.
3125 Forces the SV to string form if it is not already.
3126 Will C<mg_get> on C<sv> if appropriate.
3127 Always sets the SvUTF8 flag to avoid future validity checks even
3128 if the whole string is the same in UTF-8 as not.
3129 Returns the number of bytes in the converted string
3130
3131 This is not as a general purpose byte encoding to Unicode interface:
3132 use the Encode extension for that.
3133
3134 =for apidoc sv_utf8_upgrade_nomg
3135
3136 Like sv_utf8_upgrade, but doesn't do magic on C<sv>.
3137
3138 =for apidoc sv_utf8_upgrade_flags
3139
3140 Converts the PV of an SV to its UTF-8-encoded form.
3141 Forces the SV to string form if it is not already.
3142 Always sets the SvUTF8 flag to avoid future validity checks even
3143 if all the bytes are invariant in UTF-8.
3144 If C<flags> has C<SV_GMAGIC> bit set,
3145 will C<mg_get> on C<sv> if appropriate, else not.
3146 Returns the number of bytes in the converted string
3147 C<sv_utf8_upgrade> and
3148 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3149
3150 This is not as a general purpose byte encoding to Unicode interface:
3151 use the Encode extension for that.
3152
3153 =cut
3154
3155 The grow version is currently not externally documented.  It adds a parameter,
3156 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3157 have free after it upon return.  This allows the caller to reserve extra space
3158 that it intends to fill, to avoid extra grows.
3159
3160 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3161 which can be used to tell this function to not first check to see if there are
3162 any characters that are different in UTF-8 (variant characters) which would
3163 force it to allocate a new string to sv, but to assume there are.  Typically
3164 this flag is used by a routine that has already parsed the string to find that
3165 there are such characters, and passes this information on so that the work
3166 doesn't have to be repeated.
3167
3168 (One might think that the calling routine could pass in the position of the
3169 first such variant, so it wouldn't have to be found again.  But that is not the
3170 case, because typically when the caller is likely to use this flag, it won't be
3171 calling this routine unless it finds something that won't fit into a byte.
3172 Otherwise it tries to not upgrade and just use bytes.  But some things that
3173 do fit into a byte are variants in utf8, and the caller may not have been
3174 keeping track of these.)
3175
3176 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3177 isn't guaranteed due to having other routines do the work in some input cases,
3178 or if the input is already flagged as being in utf8.
3179
3180 The speed of this could perhaps be improved for many cases if someone wanted to
3181 write a fast function that counts the number of variant characters in a string,
3182 especially if it could return the position of the first one.
3183
3184 */
3185
3186 STRLEN
3187 Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
3188 {
3189     dVAR;
3190
3191     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3192
3193     if (sv == &PL_sv_undef)
3194         return 0;
3195     if (!SvPOK(sv)) {
3196         STRLEN len = 0;
3197         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3198             (void) sv_2pv_flags(sv,&len, flags);
3199             if (SvUTF8(sv)) {
3200                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3201                 return len;
3202             }
3203         } else {
3204             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3205         }
3206     }
3207
3208     if (SvUTF8(sv)) {
3209         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3210         return SvCUR(sv);
3211     }
3212
3213     if (SvIsCOW(sv)) {
3214         sv_force_normal_flags(sv, 0);
3215     }
3216
3217     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3218         sv_recode_to_utf8(sv, PL_encoding);
3219         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3220         return SvCUR(sv);
3221     }
3222
3223     if (SvCUR(sv) == 0) {
3224         if (extra) SvGROW(sv, extra);
3225     } else { /* Assume Latin-1/EBCDIC */
3226         /* This function could be much more efficient if we
3227          * had a FLAG in SVs to signal if there are any variant
3228          * chars in the PV.  Given that there isn't such a flag
3229          * make the loop as fast as possible (although there are certainly ways
3230          * to speed this up, eg. through vectorization) */
3231         U8 * s = (U8 *) SvPVX_const(sv);
3232         U8 * e = (U8 *) SvEND(sv);
3233         U8 *t = s;
3234         STRLEN two_byte_count = 0;
3235         
3236         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3237
3238         /* See if really will need to convert to utf8.  We mustn't rely on our
3239          * incoming SV being well formed and having a trailing '\0', as certain
3240          * code in pp_formline can send us partially built SVs. */
3241
3242         while (t < e) {
3243             const U8 ch = *t++;
3244             if (NATIVE_IS_INVARIANT(ch)) continue;
3245
3246             t--;    /* t already incremented; re-point to first variant */
3247             two_byte_count = 1;
3248             goto must_be_utf8;
3249         }
3250
3251         /* utf8 conversion not needed because all are invariants.  Mark as
3252          * UTF-8 even if no variant - saves scanning loop */
3253         SvUTF8_on(sv);
3254         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3255         return SvCUR(sv);
3256
3257 must_be_utf8:
3258
3259         /* Here, the string should be converted to utf8, either because of an
3260          * input flag (two_byte_count = 0), or because a character that
3261          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3262          * the beginning of the string (if we didn't examine anything), or to
3263          * the first variant.  In either case, everything from s to t - 1 will
3264          * occupy only 1 byte each on output.
3265          *
3266          * There are two main ways to convert.  One is to create a new string
3267          * and go through the input starting from the beginning, appending each
3268          * converted value onto the new string as we go along.  It's probably
3269          * best to allocate enough space in the string for the worst possible
3270          * case rather than possibly running out of space and having to
3271          * reallocate and then copy what we've done so far.  Since everything
3272          * from s to t - 1 is invariant, the destination can be initialized
3273          * with these using a fast memory copy
3274          *
3275          * The other way is to figure out exactly how big the string should be
3276          * by parsing the entire input.  Then you don't have to make it big
3277          * enough to handle the worst possible case, and more importantly, if
3278          * the string you already have is large enough, you don't have to
3279          * allocate a new string, you can copy the last character in the input
3280          * string to the final position(s) that will be occupied by the
3281          * converted string and go backwards, stopping at t, since everything
3282          * before that is invariant.
3283          *
3284          * There are advantages and disadvantages to each method.
3285          *
3286          * In the first method, we can allocate a new string, do the memory
3287          * copy from the s to t - 1, and then proceed through the rest of the
3288          * string byte-by-byte.
3289          *
3290          * In the second method, we proceed through the rest of the input
3291          * string just calculating how big the converted string will be.  Then
3292          * there are two cases:
3293          *  1)  if the string has enough extra space to handle the converted
3294          *      value.  We go backwards through the string, converting until we
3295          *      get to the position we are at now, and then stop.  If this
3296          *      position is far enough along in the string, this method is
3297          *      faster than the other method.  If the memory copy were the same
3298          *      speed as the byte-by-byte loop, that position would be about
3299          *      half-way, as at the half-way mark, parsing to the end and back
3300          *      is one complete string's parse, the same amount as starting
3301          *      over and going all the way through.  Actually, it would be
3302          *      somewhat less than half-way, as it's faster to just count bytes
3303          *      than to also copy, and we don't have the overhead of allocating
3304          *      a new string, changing the scalar to use it, and freeing the
3305          *      existing one.  But if the memory copy is fast, the break-even
3306          *      point is somewhere after half way.  The counting loop could be
3307          *      sped up by vectorization, etc, to move the break-even point
3308          *      further towards the beginning.
3309          *  2)  if the string doesn't have enough space to handle the converted
3310          *      value.  A new string will have to be allocated, and one might
3311          *      as well, given that, start from the beginning doing the first
3312          *      method.  We've spent extra time parsing the string and in
3313          *      exchange all we've gotten is that we know precisely how big to
3314          *      make the new one.  Perl is more optimized for time than space,
3315          *      so this case is a loser.
3316          * So what I've decided to do is not use the 2nd method unless it is
3317          * guaranteed that a new string won't have to be allocated, assuming
3318          * the worst case.  I also decided not to put any more conditions on it
3319          * than this, for now.  It seems likely that, since the worst case is
3320          * twice as big as the unknown portion of the string (plus 1), we won't
3321          * be guaranteed enough space, causing us to go to the first method,
3322          * unless the string is short, or the first variant character is near
3323          * the end of it.  In either of these cases, it seems best to use the
3324          * 2nd method.  The only circumstance I can think of where this would
3325          * be really slower is if the string had once had much more data in it
3326          * than it does now, but there is still a substantial amount in it  */
3327
3328         {
3329             STRLEN invariant_head = t - s;
3330             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3331             if (SvLEN(sv) < size) {
3332
3333                 /* Here, have decided to allocate a new string */
3334
3335                 U8 *dst;
3336                 U8 *d;
3337
3338                 Newx(dst, size, U8);
3339
3340                 /* If no known invariants at the beginning of the input string,
3341                  * set so starts from there.  Otherwise, can use memory copy to
3342                  * get up to where we are now, and then start from here */
3343
3344                 if (invariant_head <= 0) {
3345                     d = dst;
3346                 } else {
3347                     Copy(s, dst, invariant_head, char);
3348                     d = dst + invariant_head;
3349                 }
3350
3351                 while (t < e) {
3352                     const UV uv = NATIVE8_TO_UNI(*t++);
3353                     if (UNI_IS_INVARIANT(uv))
3354                         *d++ = (U8)UNI_TO_NATIVE(uv);
3355                     else {
3356                         *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3357                         *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3358                     }
3359                 }
3360                 *d = '\0';
3361                 SvPV_free(sv); /* No longer using pre-existing string */
3362                 SvPV_set(sv, (char*)dst);
3363                 SvCUR_set(sv, d - dst);
3364                 SvLEN_set(sv, size);
3365             } else {
3366
3367                 /* Here, have decided to get the exact size of the string.
3368                  * Currently this happens only when we know that there is
3369                  * guaranteed enough space to fit the converted string, so
3370                  * don't have to worry about growing.  If two_byte_count is 0,
3371                  * then t points to the first byte of the string which hasn't
3372                  * been examined yet.  Otherwise two_byte_count is 1, and t
3373                  * points to the first byte in the string that will expand to
3374                  * two.  Depending on this, start examining at t or 1 after t.
3375                  * */
3376
3377                 U8 *d = t + two_byte_count;
3378
3379
3380                 /* Count up the remaining bytes that expand to two */
3381
3382                 while (d < e) {
3383                     const U8 chr = *d++;
3384                     if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3385                 }
3386
3387                 /* The string will expand by just the number of bytes that
3388                  * occupy two positions.  But we are one afterwards because of
3389                  * the increment just above.  This is the place to put the
3390                  * trailing NUL, and to set the length before we decrement */
3391
3392                 d += two_byte_count;
3393                 SvCUR_set(sv, d - s);
3394                 *d-- = '\0';
3395
3396
3397                 /* Having decremented d, it points to the position to put the
3398                  * very last byte of the expanded string.  Go backwards through
3399                  * the string, copying and expanding as we go, stopping when we
3400                  * get to the part that is invariant the rest of the way down */
3401
3402                 e--;
3403                 while (e >= t) {
3404                     const U8 ch = NATIVE8_TO_UNI(*e--);
3405                     if (UNI_IS_INVARIANT(ch)) {
3406                         *d-- = UNI_TO_NATIVE(ch);
3407                     } else {
3408                         *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3409                         *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3410                     }
3411                 }
3412             }
3413
3414             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3415                 /* Update pos. We do it at the end rather than during
3416                  * the upgrade, to avoid slowing down the common case
3417                  * (upgrade without pos) */
3418                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3419                 if (mg) {
3420                     I32 pos = mg->mg_len;
3421                     if (pos > 0 && (U32)pos > invariant_head) {
3422                         U8 *d = (U8*) SvPVX(sv) + invariant_head;
3423                         STRLEN n = (U32)pos - invariant_head;
3424                         while (n > 0) {
3425                             if (UTF8_IS_START(*d))
3426                                 d++;
3427                             d++;
3428                             n--;
3429                         }
3430                         mg->mg_len  = d - (U8*)SvPVX(sv);
3431                     }
3432                 }
3433                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3434                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3435             }
3436         }
3437     }
3438
3439     /* Mark as UTF-8 even if no variant - saves scanning loop */
3440     SvUTF8_on(sv);
3441     return SvCUR(sv);
3442 }
3443
3444 /*
3445 =for apidoc sv_utf8_downgrade
3446
3447 Attempts to convert the PV of an SV from characters to bytes.
3448 If the PV contains a character that cannot fit
3449 in a byte, this conversion will fail;
3450 in this case, either returns false or, if C<fail_ok> is not
3451 true, croaks.
3452
3453 This is not as a general purpose Unicode to byte encoding interface:
3454 use the Encode extension for that.
3455
3456 =cut
3457 */
3458
3459 bool
3460 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3461 {
3462     dVAR;
3463
3464     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3465
3466     if (SvPOKp(sv) && SvUTF8(sv)) {
3467         if (SvCUR(sv)) {
3468             U8 *s;
3469             STRLEN len;
3470             int mg_flags = SV_GMAGIC;
3471
3472             if (SvIsCOW(sv)) {
3473                 sv_force_normal_flags(sv, 0);
3474             }
3475             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3476                 /* update pos */
3477                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3478                 if (mg) {
3479                     I32 pos = mg->mg_len;
3480                     if (pos > 0) {
3481                         sv_pos_b2u(sv, &pos);
3482                         mg_flags = 0; /* sv_pos_b2u does get magic */
3483                         mg->mg_len  = pos;
3484                     }
3485                 }
3486                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3487                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3488
3489             }
3490             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3491
3492             if (!utf8_to_bytes(s, &len)) {
3493                 if (fail_ok)
3494                     return FALSE;
3495                 else {
3496                     if (PL_op)
3497                         Perl_croak(aTHX_ "Wide character in %s",
3498                                    OP_DESC(PL_op));
3499                     else
3500                         Perl_croak(aTHX_ "Wide character");
3501                 }
3502             }
3503             SvCUR_set(sv, len);
3504         }
3505     }
3506     SvUTF8_off(sv);
3507     return TRUE;
3508 }
3509
3510 /*
3511 =for apidoc sv_utf8_encode
3512
3513 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3514 flag off so that it looks like octets again.
3515
3516 =cut
3517 */
3518
3519 void
3520 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3521 {
3522     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3523
3524     if (SvIsCOW(sv)) {
3525         sv_force_normal_flags(sv, 0);
3526     }
3527     if (SvREADONLY(sv)) {
3528         Perl_croak_no_modify(aTHX);
3529     }
3530     (void) sv_utf8_upgrade(sv);
3531     SvUTF8_off(sv);
3532 }
3533
3534 /*
3535 =for apidoc sv_utf8_decode
3536
3537 If the PV of the SV is an octet sequence in UTF-8
3538 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3539 so that it looks like a character.  If the PV contains only single-byte
3540 characters, the C<SvUTF8> flag stays off.
3541 Scans PV for validity and returns false if the PV is invalid UTF-8.
3542
3543 =cut
3544 */
3545
3546 bool
3547 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3548 {
3549     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3550
3551     if (SvPOKp(sv)) {
3552         const U8 *start, *c;
3553         const U8 *e;
3554
3555         /* The octets may have got themselves encoded - get them back as
3556          * bytes
3557          */
3558         if (!sv_utf8_downgrade(sv, TRUE))
3559             return FALSE;
3560
3561         /* it is actually just a matter of turning the utf8 flag on, but
3562          * we want to make sure everything inside is valid utf8 first.
3563          */
3564         c = start = (const U8 *) SvPVX_const(sv);
3565         if (!is_utf8_string(c, SvCUR(sv)+1))
3566             return FALSE;
3567         e = (const U8 *) SvEND(sv);
3568         while (c < e) {
3569             const U8 ch = *c++;
3570             if (!UTF8_IS_INVARIANT(ch)) {
3571                 SvUTF8_on(sv);
3572                 break;
3573             }
3574         }
3575         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3576             /* adjust pos to the start of a UTF8 char sequence */
3577             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3578             if (mg) {
3579                 I32 pos = mg->mg_len;
3580                 if (pos > 0) {
3581                     for (c = start + pos; c > start; c--) {
3582                         if (UTF8_IS_START(*c))
3583                             break;
3584                     }
3585                     mg->mg_len  = c - start;
3586                 }
3587             }
3588             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3589                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3590         }
3591     }
3592     return TRUE;
3593 }
3594
3595 /*
3596 =for apidoc sv_setsv
3597
3598 Copies the contents of the source SV C<ssv> into the destination SV
3599 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3600 function if the source SV needs to be reused.  Does not handle 'set' magic.
3601 Loosely speaking, it performs a copy-by-value, obliterating any previous
3602 content of the destination.
3603
3604 You probably want to use one of the assortment of wrappers, such as
3605 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3606 C<SvSetMagicSV_nosteal>.
3607
3608 =for apidoc sv_setsv_flags
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 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3616 C<ssv> if appropriate, else not.  If the C<flags>
3617 parameter has the C<NOSTEAL> bit set then the
3618 buffers of temps will not be stolen.  <sv_setsv>
3619 and C<sv_setsv_nomg> are implemented in terms of this function.
3620
3621 You probably want to use one of the assortment of wrappers, such as
3622 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3623 C<SvSetMagicSV_nosteal>.
3624
3625 This is the primary function for copying scalars, and most other
3626 copy-ish functions and macros use this underneath.
3627
3628 =cut
3629 */
3630
3631 static void
3632 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3633 {
3634     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3635     HV *old_stash = NULL;
3636
3637     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3638
3639     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3640         const char * const name = GvNAME(sstr);
3641         const STRLEN len = GvNAMELEN(sstr);
3642         {
3643             if (dtype >= SVt_PV) {
3644                 SvPV_free(dstr);
3645                 SvPV_set(dstr, 0);
3646                 SvLEN_set(dstr, 0);
3647                 SvCUR_set(dstr, 0);
3648             }
3649             SvUPGRADE(dstr, SVt_PVGV);
3650             (void)SvOK_off(dstr);
3651             /* We have to turn this on here, even though we turn it off
3652                below, as GvSTASH will fail an assertion otherwise. */
3653             isGV_with_GP_on(dstr);
3654         }
3655         GvSTASH(dstr) = GvSTASH(sstr);
3656         if (GvSTASH(dstr))
3657             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3658         gv_name_set(MUTABLE_GV(dstr), name, len,
3659                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3660         SvFAKE_on(dstr);        /* can coerce to non-glob */
3661     }
3662
3663     if(GvGP(MUTABLE_GV(sstr))) {
3664         /* If source has method cache entry, clear it */
3665         if(GvCVGEN(sstr)) {
3666             SvREFCNT_dec(GvCV(sstr));
3667             GvCV_set(sstr, NULL);
3668             GvCVGEN(sstr) = 0;
3669         }
3670         /* If source has a real method, then a method is
3671            going to change */
3672         else if(
3673          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3674         ) {
3675             mro_changes = 1;
3676         }
3677     }
3678
3679     /* If dest already had a real method, that's a change as well */
3680     if(
3681         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3682      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3683     ) {
3684         mro_changes = 1;
3685     }
3686
3687     /* We don't need to check the name of the destination if it was not a
3688        glob to begin with. */
3689     if(dtype == SVt_PVGV) {
3690         const char * const name = GvNAME((const GV *)dstr);
3691         if(
3692             strEQ(name,"ISA")
3693          /* The stash may have been detached from the symbol table, so
3694             check its name. */
3695          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3696          && GvAV((const GV *)sstr)
3697         )
3698             mro_changes = 2;
3699         else {
3700             const STRLEN len = GvNAMELEN(dstr);
3701             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3702              || (len == 1 && name[0] == ':')) {
3703                 mro_changes = 3;
3704
3705                 /* Set aside the old stash, so we can reset isa caches on
3706                    its subclasses. */
3707                 if((old_stash = GvHV(dstr)))
3708                     /* Make sure we do not lose it early. */
3709                     SvREFCNT_inc_simple_void_NN(
3710                      sv_2mortal((SV *)old_stash)
3711                     );
3712             }
3713         }
3714     }
3715
3716     gp_free(MUTABLE_GV(dstr));
3717     isGV_with_GP_off(dstr); /* SvOK_off does not like globs. */
3718     (void)SvOK_off(dstr);
3719     isGV_with_GP_on(dstr);
3720     GvINTRO_off(dstr);          /* one-shot flag */
3721     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3722     if (SvTAINTED(sstr))
3723         SvTAINT(dstr);
3724     if (GvIMPORTED(dstr) != GVf_IMPORTED
3725         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3726         {
3727             GvIMPORTED_on(dstr);
3728         }
3729     GvMULTI_on(dstr);
3730     if(mro_changes == 2) {
3731         MAGIC *mg;
3732         SV * const sref = (SV *)GvAV((const GV *)dstr);
3733         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3734             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3735                 AV * const ary = newAV();
3736                 av_push(ary, mg->mg_obj); /* takes the refcount */
3737                 mg->mg_obj = (SV *)ary;
3738             }
3739             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3740         }
3741         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3742         mro_isa_changed_in(GvSTASH(dstr));
3743     }
3744     else if(mro_changes == 3) {
3745         HV * const stash = GvHV(dstr);
3746         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3747             mro_package_moved(
3748                 stash, old_stash,
3749                 (GV *)dstr, 0
3750             );
3751     }
3752     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3753     return;
3754 }
3755
3756 static void
3757 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3758 {
3759     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3760     SV *dref = NULL;
3761     const int intro = GvINTRO(dstr);
3762     SV **location;
3763     U8 import_flag = 0;
3764     const U32 stype = SvTYPE(sref);
3765
3766     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3767
3768     if (intro) {
3769         GvINTRO_off(dstr);      /* one-shot flag */
3770         GvLINE(dstr) = CopLINE(PL_curcop);
3771         GvEGV(dstr) = MUTABLE_GV(dstr);
3772     }
3773     GvMULTI_on(dstr);
3774     switch (stype) {
3775     case SVt_PVCV:
3776         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
3777         import_flag = GVf_IMPORTED_CV;
3778         goto common;
3779     case SVt_PVHV:
3780         location = (SV **) &GvHV(dstr);
3781         import_flag = GVf_IMPORTED_HV;
3782         goto common;
3783     case SVt_PVAV:
3784         location = (SV **) &GvAV(dstr);
3785         import_flag = GVf_IMPORTED_AV;
3786         goto common;
3787     case SVt_PVIO:
3788         location = (SV **) &GvIOp(dstr);
3789         goto common;
3790     case SVt_PVFM:
3791         location = (SV **) &GvFORM(dstr);
3792         goto common;
3793     default:
3794         location = &GvSV(dstr);
3795         import_flag = GVf_IMPORTED_SV;
3796     common:
3797         if (intro) {
3798             if (stype == SVt_PVCV) {
3799                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3800                 if (GvCVGEN(dstr)) {
3801                     SvREFCNT_dec(GvCV(dstr));
3802                     GvCV_set(dstr, NULL);
3803                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3804                 }
3805             }
3806             SAVEGENERICSV(*location);
3807         }
3808         else
3809             dref = *location;
3810         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3811             CV* const cv = MUTABLE_CV(*location);
3812             if (cv) {
3813                 if (!GvCVGEN((const GV *)dstr) &&
3814                     (CvROOT(cv) || CvXSUB(cv)) &&
3815                     /* redundant check that avoids creating the extra SV
3816                        most of the time: */
3817                     (CvCONST(cv) || ckWARN(WARN_REDEFINE)))
3818                     {
3819                         SV * const new_const_sv =
3820                             CvCONST((const CV *)sref)
3821                                  ? cv_const_sv((const CV *)sref)
3822                                  : NULL;
3823                         report_redefined_cv(
3824                            sv_2mortal(Perl_newSVpvf(aTHX_
3825                                 "%"HEKf"::%"HEKf,
3826                                 HEKfARG(
3827                                  HvNAME_HEK(GvSTASH((const GV *)dstr))
3828                                 ),
3829                                 HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr)))
3830                            )),
3831                            cv,
3832                            CvCONST((const CV *)sref) ? &new_const_sv : NULL
3833                         );
3834                     }
3835                 if (!intro)
3836                     cv_ckproto_len_flags(cv, (const GV *)dstr,
3837                                    SvPOK(sref) ? CvPROTO(sref) : NULL,
3838                                    SvPOK(sref) ? CvPROTOLEN(sref) : 0,
3839                                    SvPOK(sref) ? SvUTF8(sref) : 0);
3840             }
3841             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3842             GvASSUMECV_on(dstr);
3843             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3844         }
3845         *location = sref;
3846         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3847             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3848             GvFLAGS(dstr) |= import_flag;
3849         }
3850         if (stype == SVt_PVHV) {
3851             const char * const name = GvNAME((GV*)dstr);
3852             const STRLEN len = GvNAMELEN(dstr);
3853             if (
3854                 (
3855                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
3856                 || (len == 1 && name[0] == ':')
3857                 )
3858              && (!dref || HvENAME_get(dref))
3859             ) {
3860                 mro_package_moved(
3861                     (HV *)sref, (HV *)dref,
3862                     (GV *)dstr, 0
3863                 );
3864             }
3865         }
3866         else if (
3867             stype == SVt_PVAV && sref != dref
3868          && strEQ(GvNAME((GV*)dstr), "ISA")
3869          /* The stash may have been detached from the symbol table, so
3870             check its name before doing anything. */
3871          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3872         ) {
3873             MAGIC *mg;
3874             MAGIC * const omg = dref && SvSMAGICAL(dref)
3875                                  ? mg_find(dref, PERL_MAGIC_isa)
3876                                  : NULL;
3877             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3878                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3879                     AV * const ary = newAV();
3880                     av_push(ary, mg->mg_obj); /* takes the refcount */
3881                     mg->mg_obj = (SV *)ary;
3882                 }
3883                 if (omg) {
3884                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
3885                         SV **svp = AvARRAY((AV *)omg->mg_obj);
3886                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
3887                         while (items--)
3888                             av_push(
3889                              (AV *)mg->mg_obj,
3890                              SvREFCNT_inc_simple_NN(*svp++)
3891                             );
3892                     }
3893                     else
3894                         av_push(
3895                          (AV *)mg->mg_obj,
3896                          SvREFCNT_inc_simple_NN(omg->mg_obj)
3897                         );
3898                 }
3899                 else
3900                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
3901             }
3902             else
3903             {
3904                 sv_magic(
3905                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
3906                 );
3907                 mg = mg_find(sref, PERL_MAGIC_isa);
3908             }
3909             /* Since the *ISA assignment could have affected more than
3910                one stash, don't call mro_isa_changed_in directly, but let
3911                magic_clearisa do it for us, as it already has the logic for
3912                dealing with globs vs arrays of globs. */
3913             assert(mg);
3914             Perl_magic_clearisa(aTHX_ NULL, mg);
3915         }
3916         break;
3917     }
3918     SvREFCNT_dec(dref);
3919     if (SvTAINTED(sstr))
3920         SvTAINT(dstr);
3921     return;
3922 }
3923
3924 void
3925 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3926 {
3927     dVAR;
3928     register U32 sflags;
3929     register int dtype;
3930     register svtype stype;
3931
3932     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3933
3934     if (sstr == dstr)
3935         return;
3936
3937     if (SvIS_FREED(dstr)) {
3938         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3939                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3940     }
3941     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3942     if (!sstr)
3943         sstr = &PL_sv_undef;
3944     if (SvIS_FREED(sstr)) {
3945         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3946                    (void*)sstr, (void*)dstr);
3947     }
3948     stype = SvTYPE(sstr);
3949     dtype = SvTYPE(dstr);
3950
3951     (void)SvAMAGIC_off(dstr);
3952     if ( SvVOK(dstr) )
3953     {
3954         /* need to nuke the magic */
3955         sv_unmagic(dstr, PERL_MAGIC_vstring);
3956     }
3957
3958     /* There's a lot of redundancy below but we're going for speed here */
3959
3960     switch (stype) {
3961     case SVt_NULL:
3962       undef_sstr:
3963         if (dtype != SVt_PVGV && dtype != SVt_PVLV) {
3964             (void)SvOK_off(dstr);
3965             return;
3966         }
3967         break;
3968     case SVt_IV:
3969         if (SvIOK(sstr)) {
3970             switch (dtype) {
3971             case SVt_NULL:
3972                 sv_upgrade(dstr, SVt_IV);
3973                 break;
3974             case SVt_NV:
3975             case SVt_PV:
3976                 sv_upgrade(dstr, SVt_PVIV);
3977                 break;
3978             case SVt_PVGV:
3979             case SVt_PVLV:
3980                 goto end_of_first_switch;
3981             }
3982             (void)SvIOK_only(dstr);
3983             SvIV_set(dstr,  SvIVX(sstr));
3984             if (SvIsUV(sstr))
3985                 SvIsUV_on(dstr);
3986             /* SvTAINTED can only be true if the SV has taint magic, which in
3987                turn means that the SV type is PVMG (or greater). This is the
3988                case statement for SVt_IV, so this cannot be true (whatever gcov
3989                may say).  */
3990             assert(!SvTAINTED(sstr));
3991             return;
3992         }
3993         if (!SvROK(sstr))
3994             goto undef_sstr;
3995         if (dtype < SVt_PV && dtype != SVt_IV)
3996             sv_upgrade(dstr, SVt_IV);
3997         break;
3998
3999     case SVt_NV:
4000         if (SvNOK(sstr)) {
4001             switch (dtype) {
4002             case SVt_NULL:
4003             case SVt_IV:
4004                 sv_upgrade(dstr, SVt_NV);
4005                 break;
4006             case SVt_PV:
4007             case SVt_PVIV:
4008                 sv_upgrade(dstr, SVt_PVNV);
4009                 break;
4010             case SVt_PVGV:
4011             case SVt_PVLV:
4012                 goto end_of_first_switch;
4013             }
4014             SvNV_set(dstr, SvNVX(sstr));
4015             (void)SvNOK_only(dstr);
4016             /* SvTAINTED can only be true if the SV has taint magic, which in
4017                turn means that the SV type is PVMG (or greater). This is the
4018                case statement for SVt_NV, so this cannot be true (whatever gcov
4019                may say).  */
4020             assert(!SvTAINTED(sstr));
4021             return;
4022         }
4023         goto undef_sstr;
4024
4025     case SVt_PVFM:
4026 #ifdef PERL_OLD_COPY_ON_WRITE
4027         if ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS) {
4028             if (dtype < SVt_PVIV)
4029                 sv_upgrade(dstr, SVt_PVIV);
4030             break;
4031         }
4032         /* Fall through */
4033 #endif
4034     case SVt_PV:
4035         if (dtype < SVt_PV)
4036             sv_upgrade(dstr, SVt_PV);
4037         break;
4038     case SVt_PVIV:
4039         if (dtype < SVt_PVIV)
4040             sv_upgrade(dstr, SVt_PVIV);
4041         break;
4042     case SVt_PVNV:
4043         if (dtype < SVt_PVNV)
4044             sv_upgrade(dstr, SVt_PVNV);
4045         break;
4046     default:
4047         {
4048         const char * const type = sv_reftype(sstr,0);
4049         if (PL_op)
4050             /* diag_listed_as: Bizarre copy of %s */
4051             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4052         else
4053             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4054         }
4055         break;
4056
4057     case SVt_REGEXP:
4058         if (dtype < SVt_REGEXP)
4059             sv_upgrade(dstr, SVt_REGEXP);
4060         break;
4061
4062         /* case SVt_BIND: */
4063     case SVt_PVLV:
4064     case SVt_PVGV:
4065     case SVt_PVMG:
4066         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4067             mg_get(sstr);
4068             if (SvTYPE(sstr) != stype)
4069                 stype = SvTYPE(sstr);
4070         }
4071         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4072                     glob_assign_glob(dstr, sstr, dtype);
4073                     return;
4074         }
4075         if (stype == SVt_PVLV)
4076             SvUPGRADE(dstr, SVt_PVNV);
4077         else
4078             SvUPGRADE(dstr, (svtype)stype);
4079     }
4080  end_of_first_switch:
4081
4082     /* dstr may have been upgraded.  */
4083     dtype = SvTYPE(dstr);
4084     sflags = SvFLAGS(sstr);
4085
4086     if (dtype == SVt_PVCV || dtype == SVt_PVFM) {
4087         /* Assigning to a subroutine sets the prototype.  */
4088         if (SvOK(sstr)) {
4089             STRLEN len;
4090             const char *const ptr = SvPV_const(sstr, len);
4091
4092             SvGROW(dstr, len + 1);
4093             Copy(ptr, SvPVX(dstr), len + 1, char);
4094             SvCUR_set(dstr, len);
4095             SvPOK_only(dstr);
4096             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4097             CvAUTOLOAD_off(dstr);
4098         } else {
4099             SvOK_off(dstr);
4100         }
4101     } else if (dtype == SVt_PVAV || dtype == SVt_PVHV) {
4102         const char * const type = sv_reftype(dstr,0);
4103         if (PL_op)
4104             /* diag_listed_as: Cannot copy to %s */
4105             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4106         else
4107             Perl_croak(aTHX_ "Cannot copy to %s", type);
4108     } else if (sflags & SVf_ROK) {
4109         if (isGV_with_GP(dstr)
4110             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4111             sstr = SvRV(sstr);
4112             if (sstr == dstr) {
4113                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4114                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4115                 {
4116                     GvIMPORTED_on(dstr);
4117                 }
4118                 GvMULTI_on(dstr);
4119                 return;
4120             }
4121             glob_assign_glob(dstr, sstr, dtype);
4122             return;
4123         }
4124
4125         if (dtype >= SVt_PV) {
4126             if (isGV_with_GP(dstr)) {
4127                 glob_assign_ref(dstr, sstr);
4128                 return;
4129             }
4130             if (SvPVX_const(dstr)) {
4131                 SvPV_free(dstr);
4132                 SvLEN_set(dstr, 0);
4133                 SvCUR_set(dstr, 0);
4134             }
4135         }
4136         (void)SvOK_off(dstr);
4137         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4138         SvFLAGS(dstr) |= sflags & SVf_ROK;
4139         assert(!(sflags & SVp_NOK));
4140         assert(!(sflags & SVp_IOK));
4141         assert(!(sflags & SVf_NOK));
4142         assert(!(sflags & SVf_IOK));
4143     }
4144     else if (isGV_with_GP(dstr)) {
4145         if (!(sflags & SVf_OK)) {
4146             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4147                            "Undefined value assigned to typeglob");
4148         }
4149         else {
4150             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4151             if (dstr != (const SV *)gv) {
4152                 const char * const name = GvNAME((const GV *)dstr);
4153                 const STRLEN len = GvNAMELEN(dstr);
4154                 HV *old_stash = NULL;
4155                 bool reset_isa = FALSE;
4156                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4157                  || (len == 1 && name[0] == ':')) {
4158                     /* Set aside the old stash, so we can reset isa caches
4159                        on its subclasses. */
4160                     if((old_stash = GvHV(dstr))) {
4161                         /* Make sure we do not lose it early. */
4162                         SvREFCNT_inc_simple_void_NN(
4163                          sv_2mortal((SV *)old_stash)
4164                         );
4165                     }
4166                     reset_isa = TRUE;
4167                 }
4168
4169                 if (GvGP(dstr))
4170                     gp_free(MUTABLE_GV(dstr));
4171                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4172
4173                 if (reset_isa) {
4174                     HV * const stash = GvHV(dstr);
4175                     if(
4176                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4177                     )
4178                         mro_package_moved(
4179                          stash, old_stash,
4180                          (GV *)dstr, 0
4181                         );
4182                 }
4183             }
4184         }
4185     }
4186     else if (dtype == SVt_REGEXP && stype == SVt_REGEXP) {
4187         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4188     }
4189     else if (sflags & SVp_POK) {
4190         bool isSwipe = 0;
4191
4192         /*
4193          * Check to see if we can just swipe the string.  If so, it's a
4194          * possible small lose on short strings, but a big win on long ones.
4195          * It might even be a win on short strings if SvPVX_const(dstr)
4196          * has to be allocated and SvPVX_const(sstr) has to be freed.
4197          * Likewise if we can set up COW rather than doing an actual copy, we
4198          * drop to the else clause, as the swipe code and the COW setup code
4199          * have much in common.
4200          */
4201
4202         /* Whichever path we take through the next code, we want this true,
4203            and doing it now facilitates the COW check.  */
4204         (void)SvPOK_only(dstr);
4205
4206         if (
4207             /* If we're already COW then this clause is not true, and if COW
4208                is allowed then we drop down to the else and make dest COW 
4209                with us.  If caller hasn't said that we're allowed to COW
4210                shared hash keys then we don't do the COW setup, even if the
4211                source scalar is a shared hash key scalar.  */
4212             (((flags & SV_COW_SHARED_HASH_KEYS)
4213                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
4214                : 1 /* If making a COW copy is forbidden then the behaviour we
4215                        desire is as if the source SV isn't actually already
4216                        COW, even if it is.  So we act as if the source flags
4217                        are not COW, rather than actually testing them.  */
4218               )
4219 #ifndef PERL_OLD_COPY_ON_WRITE
4220              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4221                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4222                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4223                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4224                 but in turn, it's somewhat dead code, never expected to go
4225                 live, but more kept as a placeholder on how to do it better
4226                 in a newer implementation.  */
4227              /* If we are COW and dstr is a suitable target then we drop down
4228                 into the else and make dest a COW of us.  */
4229              || (SvFLAGS(dstr) & CAN_COW_MASK) != CAN_COW_FLAGS
4230 #endif
4231              )
4232             &&
4233             !(isSwipe =
4234                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4235                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4236                  (!(flags & SV_NOSTEAL)) &&
4237                                         /* and we're allowed to steal temps */
4238                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4239                  SvLEN(sstr))             /* and really is a string */
4240 #ifdef PERL_OLD_COPY_ON_WRITE
4241             && ((flags & SV_COW_SHARED_HASH_KEYS)
4242                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4243                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4244                      && SvTYPE(sstr) >= SVt_PVIV && SvTYPE(sstr) != SVt_PVFM))
4245                 : 1)
4246 #endif
4247             ) {
4248             /* Failed the swipe test, and it's not a shared hash key either.
4249                Have to copy the string.  */
4250             STRLEN len = SvCUR(sstr);
4251             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4252             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
4253             SvCUR_set(dstr, len);
4254             *SvEND(dstr) = '\0';
4255         } else {
4256             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4257                be true in here.  */
4258             /* Either it's a shared hash key, or it's suitable for
4259                copy-on-write or we can swipe the string.  */
4260             if (DEBUG_C_TEST) {
4261                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4262                 sv_dump(sstr);
4263                 sv_dump(dstr);
4264             }
4265 #ifdef PERL_OLD_COPY_ON_WRITE
4266             if (!isSwipe) {
4267                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4268                     != (SVf_FAKE | SVf_READONLY)) {
4269                     SvREADONLY_on(sstr);
4270                     SvFAKE_on(sstr);
4271                     /* Make the source SV into a loop of 1.
4272                        (about to become 2) */
4273                     SV_COW_NEXT_SV_SET(sstr, sstr);
4274                 }
4275             }
4276 #endif
4277             /* Initial code is common.  */
4278             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4279                 SvPV_free(dstr);
4280             }
4281
4282             if (!isSwipe) {
4283                 /* making another shared SV.  */
4284                 STRLEN cur = SvCUR(sstr);
4285                 STRLEN len = SvLEN(sstr);
4286 #ifdef PERL_OLD_COPY_ON_WRITE
4287                 if (len) {
4288                     assert (SvTYPE(dstr) >= SVt_PVIV);
4289                     /* SvIsCOW_normal */
4290                     /* splice us in between source and next-after-source.  */
4291                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4292                     SV_COW_NEXT_SV_SET(sstr, dstr);
4293                     SvPV_set(dstr, SvPVX_mutable(sstr));
4294                 } else
4295 #endif
4296                 {
4297                     /* SvIsCOW_shared_hash */
4298                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4299                                           "Copy on write: Sharing hash\n"));
4300
4301                     assert (SvTYPE(dstr) >= SVt_PV);
4302                     SvPV_set(dstr,
4303                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4304                 }
4305                 SvLEN_set(dstr, len);
4306                 SvCUR_set(dstr, cur);
4307                 SvREADONLY_on(dstr);
4308                 SvFAKE_on(dstr);
4309             }
4310             else
4311                 {       /* Passes the swipe test.  */
4312                 SvPV_set(dstr, SvPVX_mutable(sstr));
4313                 SvLEN_set(dstr, SvLEN(sstr));
4314                 SvCUR_set(dstr, SvCUR(sstr));
4315
4316                 SvTEMP_off(dstr);
4317                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4318                 SvPV_set(sstr, NULL);
4319                 SvLEN_set(sstr, 0);
4320                 SvCUR_set(sstr, 0);
4321                 SvTEMP_off(sstr);
4322             }
4323         }
4324         if (sflags & SVp_NOK) {
4325             SvNV_set(dstr, SvNVX(sstr));
4326         }
4327         if (sflags & SVp_IOK) {
4328             SvIV_set(dstr, SvIVX(sstr));
4329             /* Must do this otherwise some other overloaded use of 0x80000000
4330                gets confused. I guess SVpbm_VALID */
4331             if (sflags & SVf_IVisUV)
4332                 SvIsUV_on(dstr);
4333         }
4334         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4335         {
4336             const MAGIC * const smg = SvVSTRING_mg(sstr);
4337             if (smg) {
4338                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4339                          smg->mg_ptr, smg->mg_len);
4340                 SvRMAGICAL_on(dstr);
4341             }
4342         }
4343     }
4344     else if (sflags & (SVp_IOK|SVp_NOK)) {
4345         (void)SvOK_off(dstr);
4346         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4347         if (sflags & SVp_IOK) {
4348             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4349             SvIV_set(dstr, SvIVX(sstr));
4350         }
4351         if (sflags & SVp_NOK) {
4352             SvNV_set(dstr, SvNVX(sstr));
4353         }
4354     }
4355     else {
4356         if (isGV_with_GP(sstr)) {
4357             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4358         }
4359         else
4360             (void)SvOK_off(dstr);
4361     }
4362     if (SvTAINTED(sstr))
4363         SvTAINT(dstr);
4364 }
4365
4366 /*
4367 =for apidoc sv_setsv_mg
4368
4369 Like C<sv_setsv>, but also handles 'set' magic.
4370
4371 =cut
4372 */
4373
4374 void
4375 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
4376 {
4377     PERL_ARGS_ASSERT_SV_SETSV_MG;
4378
4379     sv_setsv(dstr,sstr);
4380     SvSETMAGIC(dstr);
4381 }
4382
4383 #ifdef PERL_OLD_COPY_ON_WRITE
4384 SV *
4385 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4386 {
4387     STRLEN cur = SvCUR(sstr);
4388     STRLEN len = SvLEN(sstr);
4389     register char *new_pv;
4390
4391     PERL_ARGS_ASSERT_SV_SETSV_COW;
4392
4393     if (DEBUG_C_TEST) {
4394         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4395                       (void*)sstr, (void*)dstr);
4396         sv_dump(sstr);
4397         if (dstr)
4398                     sv_dump(dstr);
4399     }
4400
4401     if (dstr) {
4402         if (SvTHINKFIRST(dstr))
4403             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4404         else if (SvPVX_const(dstr))
4405             Safefree(SvPVX_const(dstr));
4406     }
4407     else
4408         new_SV(dstr);
4409     SvUPGRADE(dstr, SVt_PVIV);
4410
4411     assert (SvPOK(sstr));
4412     assert (SvPOKp(sstr));
4413     assert (!SvIOK(sstr));
4414     assert (!SvIOKp(sstr));
4415     assert (!SvNOK(sstr));
4416     assert (!SvNOKp(sstr));
4417
4418     if (SvIsCOW(sstr)) {
4419
4420         if (SvLEN(sstr) == 0) {
4421             /* source is a COW shared hash key.  */
4422             DEBUG_C(PerlIO_printf(Perl_debug_log,
4423                                   "Fast copy on write: Sharing hash\n"));
4424             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4425             goto common_exit;
4426         }
4427         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4428     } else {
4429         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4430         SvUPGRADE(sstr, SVt_PVIV);
4431         SvREADONLY_on(sstr);
4432         SvFAKE_on(sstr);
4433         DEBUG_C(PerlIO_printf(Perl_debug_log,
4434                               "Fast copy on write: Converting sstr to COW\n"));
4435         SV_COW_NEXT_SV_SET(dstr, sstr);
4436     }
4437     SV_COW_NEXT_SV_SET(sstr, dstr);
4438     new_pv = SvPVX_mutable(sstr);
4439
4440   common_exit:
4441     SvPV_set(dstr, new_pv);
4442     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4443     if (SvUTF8(sstr))
4444         SvUTF8_on(dstr);
4445     SvLEN_set(dstr, len);
4446     SvCUR_set(dstr, cur);
4447     if (DEBUG_C_TEST) {
4448         sv_dump(dstr);
4449     }
4450     return dstr;
4451 }
4452 #endif
4453
4454 /*
4455 =for apidoc sv_setpvn
4456
4457 Copies a string into an SV.  The C<len> parameter indicates the number of
4458 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4459 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4460
4461 =cut
4462 */
4463
4464 void
4465 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4466 {
4467     dVAR;
4468     register char *dptr;
4469
4470     PERL_ARGS_ASSERT_SV_SETPVN;
4471
4472     SV_CHECK_THINKFIRST_COW_DROP(sv);
4473     if (!ptr) {
4474         (void)SvOK_off(sv);
4475         return;
4476     }
4477     else {
4478         /* len is STRLEN which is unsigned, need to copy to signed */
4479         const IV iv = len;
4480         if (iv < 0)
4481             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen");
4482     }
4483     SvUPGRADE(sv, SVt_PV);
4484
4485     dptr = SvGROW(sv, len + 1);
4486     Move(ptr,dptr,len,char);
4487     dptr[len] = '\0';
4488     SvCUR_set(sv, len);
4489     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4490     SvTAINT(sv);
4491     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4492 }
4493
4494 /*
4495 =for apidoc sv_setpvn_mg
4496
4497 Like C<sv_setpvn>, but also handles 'set' magic.
4498
4499 =cut
4500 */
4501
4502 void
4503 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4504 {
4505     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4506
4507     sv_setpvn(sv,ptr,len);
4508     SvSETMAGIC(sv);
4509 }
4510
4511 /*
4512 =for apidoc sv_setpv
4513
4514 Copies a string into an SV.  The string must be null-terminated.  Does not
4515 handle 'set' magic.  See C<sv_setpv_mg>.
4516
4517 =cut
4518 */
4519
4520 void
4521 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4522 {
4523     dVAR;
4524     register STRLEN len;
4525
4526     PERL_ARGS_ASSERT_SV_SETPV;
4527
4528     SV_CHECK_THINKFIRST_COW_DROP(sv);
4529     if (!ptr) {
4530         (void)SvOK_off(sv);
4531         return;
4532     }
4533     len = strlen(ptr);
4534     SvUPGRADE(sv, SVt_PV);
4535
4536     SvGROW(sv, len + 1);
4537     Move(ptr,SvPVX(sv),len+1,char);
4538     SvCUR_set(sv, len);
4539     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4540     SvTAINT(sv);
4541     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4542 }
4543
4544 /*
4545 =for apidoc sv_setpv_mg
4546
4547 Like C<sv_setpv>, but also handles 'set' magic.
4548
4549 =cut
4550 */
4551
4552 void
4553 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4554 {
4555     PERL_ARGS_ASSERT_SV_SETPV_MG;
4556
4557     sv_setpv(sv,ptr);
4558     SvSETMAGIC(sv);
4559 }
4560
4561 void
4562 Perl_sv_sethek(pTHX_ register SV *const sv, const HEK *const hek)
4563 {
4564     dVAR;
4565
4566     PERL_ARGS_ASSERT_SV_SETHEK;
4567
4568     if (!hek) {
4569         return;
4570     }
4571
4572     if (HEK_LEN(hek) == HEf_SVKEY) {
4573         sv_setsv(sv, *(SV**)HEK_KEY(hek));
4574         return;
4575     } else {
4576         const int flags = HEK_FLAGS(hek);
4577         if (flags & HVhek_WASUTF8) {
4578             STRLEN utf8_len = HEK_LEN(hek);
4579             char *as_utf8 = (char *)bytes_to_utf8((U8*)HEK_KEY(hek), &utf8_len);
4580             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
4581             SvUTF8_on(sv);
4582             return;
4583         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
4584             sv_setpvn(sv, HEK_KEY(hek), HEK_LEN(hek));
4585             if (HEK_UTF8(hek))
4586                 SvUTF8_on(sv);
4587             else SvUTF8_off(sv);
4588             return;
4589         }
4590         {
4591             SV_CHECK_THINKFIRST_COW_DROP(sv);
4592             SvUPGRADE(sv, SVt_PV);
4593             SvPV_set(sv,(char *)HEK_KEY(share_hek_hek(hek)));
4594             SvCUR_set(sv, HEK_LEN(hek));
4595             SvLEN_set(sv, 0);
4596             SvREADONLY_on(sv);
4597             SvFAKE_on(sv);
4598             SvPOK_on(sv);
4599             if (HEK_UTF8(hek))
4600                 SvUTF8_on(sv);
4601             else SvUTF8_off(sv);
4602             return;
4603         }
4604     }
4605 }
4606
4607
4608 /*
4609 =for apidoc sv_usepvn_flags
4610
4611 Tells an SV to use C<ptr> to find its string value.  Normally the
4612 string is stored inside the SV but sv_usepvn allows the SV to use an
4613 outside string.  The C<ptr> should point to memory that was allocated
4614 by C<malloc>.  It must be the start of a mallocked block
4615 of memory, and not a pointer to the middle of it.  The
4616 string length, C<len>, must be supplied.  By default
4617 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4618 so that pointer should not be freed or used by the programmer after
4619 giving it to sv_usepvn, and neither should any pointers from "behind"
4620 that pointer (e.g. ptr + 1) be used.
4621
4622 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC.  If C<flags> &
4623 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4624 will be skipped (i.e. the buffer is actually at least 1 byte longer than
4625 C<len>, and already meets the requirements for storing in C<SvPVX>).
4626
4627 =cut
4628 */
4629
4630 void
4631 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4632 {
4633     dVAR;
4634     STRLEN allocate;
4635
4636     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4637
4638     SV_CHECK_THINKFIRST_COW_DROP(sv);
4639     SvUPGRADE(sv, SVt_PV);
4640     if (!ptr) {
4641         (void)SvOK_off(sv);
4642         if (flags & SV_SMAGIC)
4643             SvSETMAGIC(sv);
4644         return;
4645     }
4646     if (SvPVX_const(sv))
4647         SvPV_free(sv);
4648
4649 #ifdef DEBUGGING
4650     if (flags & SV_HAS_TRAILING_NUL)
4651         assert(ptr[len] == '\0');
4652 #endif
4653
4654     allocate = (flags & SV_HAS_TRAILING_NUL)
4655         ? len + 1 :
4656 #ifdef Perl_safesysmalloc_size
4657         len + 1;
4658 #else 
4659         PERL_STRLEN_ROUNDUP(len + 1);
4660 #endif
4661     if (flags & SV_HAS_TRAILING_NUL) {
4662         /* It's long enough - do nothing.
4663            Specifically Perl_newCONSTSUB is relying on this.  */
4664     } else {
4665 #ifdef DEBUGGING
4666         /* Force a move to shake out bugs in callers.  */
4667         char *new_ptr = (char*)safemalloc(allocate);
4668         Copy(ptr, new_ptr, len, char);
4669         PoisonFree(ptr,len,char);
4670         Safefree(ptr);
4671         ptr = new_ptr;
4672 #else
4673         ptr = (char*) saferealloc (ptr, allocate);
4674 #endif
4675     }
4676 #ifdef Perl_safesysmalloc_size
4677     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4678 #else
4679     SvLEN_set(sv, allocate);
4680 #endif
4681     SvCUR_set(sv, len);
4682     SvPV_set(sv, ptr);
4683     if (!(flags & SV_HAS_TRAILING_NUL)) {
4684         ptr[len] = '\0';
4685     }
4686     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4687     SvTAINT(sv);
4688     if (flags & SV_SMAGIC)
4689         SvSETMAGIC(sv);
4690 }
4691
4692 #ifdef PERL_OLD_COPY_ON_WRITE
4693 /* Need to do this *after* making the SV normal, as we need the buffer
4694    pointer to remain valid until after we've copied it.  If we let go too early,
4695    another thread could invalidate it by unsharing last of the same hash key
4696    (which it can do by means other than releasing copy-on-write Svs)
4697    or by changing the other copy-on-write SVs in the loop.  */
4698 STATIC void
4699 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4700 {
4701     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4702
4703     { /* this SV was SvIsCOW_normal(sv) */
4704          /* we need to find the SV pointing to us.  */
4705         SV *current = SV_COW_NEXT_SV(after);
4706
4707         if (current == sv) {
4708             /* The SV we point to points back to us (there were only two of us
4709                in the loop.)
4710                Hence other SV is no longer copy on write either.  */
4711             SvFAKE_off(after);
4712             SvREADONLY_off(after);
4713         } else {
4714             /* We need to follow the pointers around the loop.  */
4715             SV *next;
4716             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4717                 assert (next);
4718                 current = next;
4719                  /* don't loop forever if the structure is bust, and we have
4720                     a pointer into a closed loop.  */
4721                 assert (current != after);
4722                 assert (SvPVX_const(current) == pvx);
4723             }
4724             /* Make the SV before us point to the SV after us.  */
4725             SV_COW_NEXT_SV_SET(current, after);
4726         }
4727     }
4728 }
4729 #endif
4730 /*
4731 =for apidoc sv_force_normal_flags
4732
4733 Undo various types of fakery on an SV: if the PV is a shared string, make
4734 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4735 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4736 we do the copy, and is also used locally.  If C<SV_COW_DROP_PV> is set
4737 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4738 SvPOK_off rather than making a copy.  (Used where this
4739 scalar is about to be set to some other value.)  In addition,
4740 the C<flags> parameter gets passed to C<sv_unref_flags()>
4741 when unreffing.  C<sv_force_normal> calls this function
4742 with flags set to 0.
4743
4744 =cut
4745 */
4746
4747 void
4748 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4749 {
4750     dVAR;
4751
4752     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4753
4754 #ifdef PERL_OLD_COPY_ON_WRITE
4755     if (SvREADONLY(sv)) {
4756         if (SvFAKE(sv)) {
4757             const char * const pvx = SvPVX_const(sv);
4758             const STRLEN len = SvLEN(sv);
4759             const STRLEN cur = SvCUR(sv);
4760             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4761                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4762                we'll fail an assertion.  */
4763             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4764
4765             if (DEBUG_C_TEST) {
4766                 PerlIO_printf(Perl_debug_log,
4767                               "Copy on write: Force normal %ld\n",
4768                               (long) flags);
4769                 sv_dump(sv);
4770             }
4771             SvFAKE_off(sv);
4772             SvREADONLY_off(sv);
4773             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4774             SvPV_set(sv, NULL);
4775             SvLEN_set(sv, 0);
4776             if (flags & SV_COW_DROP_PV) {
4777                 /* OK, so we don't need to copy our buffer.  */
4778                 SvPOK_off(sv);
4779             } else {
4780                 SvGROW(sv, cur + 1);
4781                 Move(pvx,SvPVX(sv),cur,char);
4782                 SvCUR_set(sv, cur);
4783                 *SvEND(sv) = '\0';
4784             }
4785             if (len) {
4786                 sv_release_COW(sv, pvx, next);
4787             } else {
4788                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4789             }
4790             if (DEBUG_C_TEST) {
4791                 sv_dump(sv);
4792             }
4793         }
4794         else if (IN_PERL_RUNTIME)
4795             Perl_croak_no_modify(aTHX);
4796     }
4797 #else
4798     if (SvREADONLY(sv)) {
4799         if (SvFAKE(sv) && !isGV_with_GP(sv)) {
4800             const char * const pvx = SvPVX_const(sv);
4801             const STRLEN len = SvCUR(sv);
4802             SvFAKE_off(sv);
4803             SvREADONLY_off(sv);
4804             SvPV_set(sv, NULL);
4805             SvLEN_set(sv, 0);
4806             if (flags & SV_COW_DROP_PV) {
4807                 /* OK, so we don't need to copy our buffer.  */
4808                 SvPOK_off(sv);
4809             } else {
4810                 SvGROW(sv, len + 1);
4811                 Move(pvx,SvPVX(sv),len,char);
4812                 *SvEND(sv) = '\0';
4813             }
4814             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4815         }
4816         else if (IN_PERL_RUNTIME)
4817             Perl_croak_no_modify(aTHX);
4818     }
4819 #endif
4820     if (SvROK(sv))
4821         sv_unref_flags(sv, flags);
4822     else if (SvFAKE(sv) && isGV_with_GP(sv))
4823         sv_unglob(sv, flags);
4824     else if (SvFAKE(sv) && SvTYPE(sv) == SVt_REGEXP) {
4825         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
4826            to sv_unglob. We only need it here, so inline it.  */
4827         const svtype new_type = SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
4828         SV *const temp = newSV_type(new_type);
4829         void *const temp_p = SvANY(sv);
4830
4831         if (new_type == SVt_PVMG) {
4832             SvMAGIC_set(temp, SvMAGIC(sv));
4833             SvMAGIC_set(sv, NULL);
4834             SvSTASH_set(temp, SvSTASH(sv));
4835             SvSTASH_set(sv, NULL);
4836         }
4837         SvCUR_set(temp, SvCUR(sv));
4838         /* Remember that SvPVX is in the head, not the body. */
4839         if (SvLEN(temp)) {
4840             SvLEN_set(temp, SvLEN(sv));
4841             /* This signals "buffer is owned by someone else" in sv_clear,
4842                which is the least effort way to stop it freeing the buffer.
4843             */
4844             SvLEN_set(sv, SvLEN(sv)+1);
4845         } else {
4846             /* Their buffer is already owned by someone else. */
4847             SvPVX(sv) = savepvn(SvPVX(sv), SvCUR(sv));
4848             SvLEN_set(temp, SvCUR(sv)+1);
4849         }
4850
4851         /* Now swap the rest of the bodies. */
4852
4853         SvFLAGS(sv) &= ~(SVf_FAKE|SVTYPEMASK);
4854         SvFLAGS(sv) |= new_type;
4855         SvANY(sv) = SvANY(temp);
4856
4857         SvFLAGS(temp) &= ~(SVTYPEMASK);
4858         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
4859         SvANY(temp) = temp_p;
4860
4861         SvREFCNT_dec(temp);
4862     }
4863 }
4864
4865 /*
4866 =for apidoc sv_chop
4867
4868 Efficient removal of characters from the beginning of the string buffer.
4869 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
4870 the string buffer.  The C<ptr> becomes the first character of the adjusted
4871 string.  Uses the "OOK hack".
4872
4873 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4874 refer to the same chunk of data.
4875
4876 The unfortunate similarity of this function's name to that of Perl's C<chop>
4877 operator is strictly coincidental.  This function works from the left;
4878 C<chop> works from the right.
4879
4880 =cut
4881 */
4882
4883 void
4884 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4885 {
4886     STRLEN delta;
4887     STRLEN old_delta;
4888     U8 *p;
4889 #ifdef DEBUGGING
4890     const U8 *evacp;
4891     STRLEN evacn;
4892 #endif
4893     STRLEN max_delta;
4894
4895     PERL_ARGS_ASSERT_SV_CHOP;
4896
4897     if (!ptr || !SvPOKp(sv))
4898         return;
4899     delta = ptr - SvPVX_const(sv);
4900     if (!delta) {
4901         /* Nothing to do.  */
4902         return;
4903     }
4904     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4905     if (delta > max_delta)
4906         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4907                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4908     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), so don't use ptr any more */
4909     SV_CHECK_THINKFIRST(sv);
4910
4911     if (!SvOOK(sv)) {
4912         if (!SvLEN(sv)) { /* make copy of shared string */
4913             const char *pvx = SvPVX_const(sv);
4914             const STRLEN len = SvCUR(sv);
4915             SvGROW(sv, len + 1);
4916             Move(pvx,SvPVX(sv),len,char);
4917             *SvEND(sv) = '\0';
4918         }
4919         SvOOK_on(sv);
4920         old_delta = 0;
4921     } else {
4922         SvOOK_offset(sv, old_delta);
4923     }
4924     SvLEN_set(sv, SvLEN(sv) - delta);
4925     SvCUR_set(sv, SvCUR(sv) - delta);
4926     SvPV_set(sv, SvPVX(sv) + delta);
4927
4928     p = (U8 *)SvPVX_const(sv);
4929
4930 #ifdef DEBUGGING
4931     /* how many bytes were evacuated?  we will fill them with sentinel
4932        bytes, except for the part holding the new offset of course. */
4933     evacn = delta;
4934     if (old_delta)
4935         evacn += (old_delta < 0x100 ? 1 : 1 + sizeof(STRLEN));
4936     assert(evacn);
4937     assert(evacn <= delta + old_delta);
4938     evacp = p - evacn;
4939 #endif
4940
4941     delta += old_delta;
4942     assert(delta);
4943     if (delta < 0x100) {
4944         *--p = (U8) delta;
4945     } else {
4946         *--p = 0;
4947         p -= sizeof(STRLEN);
4948         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4949     }
4950
4951 #ifdef DEBUGGING
4952     /* Fill the preceding buffer with sentinals to verify that no-one is
4953        using it.  */
4954     while (p > evacp) {
4955         --p;
4956         *p = (U8)PTR2UV(p);
4957     }
4958 #endif
4959 }
4960
4961 /*
4962 =for apidoc sv_catpvn
4963
4964 Concatenates the string onto the end of the string which is in the SV.  The
4965 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4966 status set, then the bytes appended should be valid UTF-8.
4967 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4968
4969 =for apidoc sv_catpvn_flags
4970
4971 Concatenates the string onto the end of the string which is in the SV.  The
4972 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4973 status set, then the bytes appended should be valid UTF-8.
4974 If C<flags> has the C<SV_SMAGIC> bit set, will
4975 C<mg_set> on C<dsv> afterwards if appropriate.
4976 C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4977 in terms of this function.
4978
4979 =cut
4980 */
4981
4982 void
4983 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
4984 {
4985     dVAR;
4986     STRLEN dlen;
4987     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4988
4989     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
4990     assert((flags & (SV_CATBYTES|SV_CATUTF8)) != (SV_CATBYTES|SV_CATUTF8));
4991
4992     if (!(flags & SV_CATBYTES) || !SvUTF8(dsv)) {
4993       if (flags & SV_CATUTF8 && !SvUTF8(dsv)) {
4994          sv_utf8_upgrade_flags_grow(dsv, 0, slen + 1);
4995          dlen = SvCUR(dsv);
4996       }
4997       else SvGROW(dsv, dlen + slen + 1);
4998       if (sstr == dstr)
4999         sstr = SvPVX_const(dsv);
5000       Move(sstr, SvPVX(dsv) + dlen, slen, char);
5001       SvCUR_set(dsv, SvCUR(dsv) + slen);
5002     }
5003     else {
5004         /* We inline bytes_to_utf8, to avoid an extra malloc. */
5005         const char * const send = sstr + slen;
5006         U8 *d;
5007
5008         /* Something this code does not account for, which I think is
5009            impossible; it would require the same pv to be treated as
5010            bytes *and* utf8, which would indicate a bug elsewhere. */
5011         assert(sstr != dstr);
5012
5013         SvGROW(dsv, dlen + slen * 2 + 1);
5014         d = (U8 *)SvPVX(dsv) + dlen;
5015
5016         while (sstr < send) {
5017             const UV uv = NATIVE_TO_ASCII((U8)*sstr++);
5018             if (UNI_IS_INVARIANT(uv))
5019                 *d++ = (U8)UTF_TO_NATIVE(uv);
5020             else {
5021                 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
5022                 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
5023             }
5024         }
5025         SvCUR_set(dsv, d-(const U8 *)SvPVX(dsv));
5026     }
5027     *SvEND(dsv) = '\0';
5028     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5029     SvTAINT(dsv);
5030     if (flags & SV_SMAGIC)
5031         SvSETMAGIC(dsv);
5032 }
5033
5034 /*
5035 =for apidoc sv_catsv
5036
5037 Concatenates the string from SV C<ssv> onto the end of the string in
5038 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
5039 not 'set' magic.  See C<sv_catsv_mg>.
5040
5041 =for apidoc sv_catsv_flags
5042
5043 Concatenates the string from SV C<ssv> onto the end of the string in
5044 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
5045 bit set, will C<mg_get> on the C<ssv>, if appropriate, before
5046 reading it.  If the C<flags> contain C<SV_SMAGIC>, C<mg_set> will be
5047 called on the modified SV afterward, if appropriate.  C<sv_catsv>
5048 and C<sv_catsv_nomg> are implemented in terms of this function.
5049
5050 =cut */
5051
5052 void
5053 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
5054 {
5055     dVAR;
5056  
5057     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
5058
5059    if (ssv) {
5060         STRLEN slen;
5061         const char *spv = SvPV_flags_const(ssv, slen, flags);
5062         if (spv) {
5063             if (SvGMAGICAL(dsv) && (flags & SV_GMAGIC))
5064                 mg_get(dsv);
5065             sv_catpvn_flags(dsv, spv, slen,
5066                             DO_UTF8(ssv) ? SV_CATUTF8 : SV_CATBYTES);
5067         }
5068     }
5069     if (flags & SV_SMAGIC)
5070         SvSETMAGIC(dsv);
5071 }
5072
5073 /*
5074 =for apidoc sv_catpv
5075
5076 Concatenates the string onto the end of the string which is in the SV.
5077 If the SV has the UTF-8 status set, then the bytes appended should be
5078 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5079
5080 =cut */
5081
5082 void
5083 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
5084 {
5085     dVAR;
5086     register STRLEN len;
5087     STRLEN tlen;
5088     char *junk;
5089
5090     PERL_ARGS_ASSERT_SV_CATPV;
5091
5092     if (!ptr)
5093         return;
5094     junk = SvPV_force(sv, tlen);
5095     len = strlen(ptr);
5096     SvGROW(sv, tlen + len + 1);
5097     if (ptr == junk)
5098         ptr = SvPVX_const(sv);
5099     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5100     SvCUR_set(sv, SvCUR(sv) + len);
5101     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5102     SvTAINT(sv);
5103 }
5104
5105 /*
5106 =for apidoc sv_catpv_flags
5107
5108 Concatenates the string onto the end of the string which is in the SV.
5109 If the SV has the UTF-8 status set, then the bytes appended should
5110 be valid UTF-8.  If C<flags> has the C<SV_SMAGIC> bit set, will C<mg_set>
5111 on the modified SV if appropriate.
5112
5113 =cut
5114 */
5115
5116 void
5117 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5118 {
5119     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5120     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5121 }
5122
5123 /*
5124 =for apidoc sv_catpv_mg
5125
5126 Like C<sv_catpv>, but also handles 'set' magic.
5127
5128 =cut
5129 */
5130
5131 void
5132 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
5133 {
5134     PERL_ARGS_ASSERT_SV_CATPV_MG;
5135
5136     sv_catpv(sv,ptr);
5137     SvSETMAGIC(sv);
5138 }
5139
5140 /*
5141 =for apidoc newSV
5142
5143 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5144 bytes of preallocated string space the SV should have.  An extra byte for a
5145 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
5146 space is allocated.)  The reference count for the new SV is set to 1.
5147
5148 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5149 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5150 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5151 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5152 modules supporting older perls.
5153
5154 =cut
5155 */
5156
5157 SV *
5158 Perl_newSV(pTHX_ const STRLEN len)
5159 {
5160     dVAR;
5161     register SV *sv;
5162
5163     new_SV(sv);
5164     if (len) {
5165         sv_upgrade(sv, SVt_PV);
5166         SvGROW(sv, len + 1);
5167     }
5168     return sv;
5169 }
5170 /*
5171 =for apidoc sv_magicext
5172
5173 Adds magic to an SV, upgrading it if necessary.  Applies the
5174 supplied vtable and returns a pointer to the magic added.
5175
5176 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5177 In particular, you can add magic to SvREADONLY SVs, and add more than
5178 one instance of the same 'how'.
5179
5180 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5181 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5182 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5183 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5184
5185 (This is now used as a subroutine by C<sv_magic>.)
5186
5187 =cut
5188 */
5189 MAGIC * 
5190 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5191                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5192 {
5193     dVAR;
5194     MAGIC* mg;
5195
5196     PERL_ARGS_ASSERT_SV_MAGICEXT;
5197
5198     SvUPGRADE(sv, SVt_PVMG);
5199     Newxz(mg, 1, MAGIC);
5200     mg->mg_moremagic = SvMAGIC(sv);
5201     SvMAGIC_set(sv, mg);
5202
5203     /* Sometimes a magic contains a reference loop, where the sv and
5204        object refer to each other.  To prevent a reference loop that
5205        would prevent such objects being freed, we look for such loops
5206        and if we find one we avoid incrementing the object refcount.
5207
5208        Note we cannot do this to avoid self-tie loops as intervening RV must
5209        have its REFCNT incremented to keep it in existence.
5210
5211     */
5212     if (!obj || obj == sv ||
5213         how == PERL_MAGIC_arylen ||
5214         how == PERL_MAGIC_symtab ||
5215         (SvTYPE(obj) == SVt_PVGV &&
5216             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5217              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5218              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5219     {
5220         mg->mg_obj = obj;
5221     }
5222     else {
5223         mg->mg_obj = SvREFCNT_inc_simple(obj);
5224         mg->mg_flags |= MGf_REFCOUNTED;
5225     }
5226
5227     /* Normal self-ties simply pass a null object, and instead of
5228        using mg_obj directly, use the SvTIED_obj macro to produce a
5229        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5230        with an RV obj pointing to the glob containing the PVIO.  In
5231        this case, to avoid a reference loop, we need to weaken the
5232        reference.
5233     */
5234
5235     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5236         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5237     {
5238       sv_rvweaken(obj);
5239     }
5240
5241     mg->mg_type = how;
5242     mg->mg_len = namlen;
5243     if (name) {
5244         if (namlen > 0)
5245             mg->mg_ptr = savepvn(name, namlen);
5246         else if (namlen == HEf_SVKEY) {
5247             /* Yes, this is casting away const. This is only for the case of
5248                HEf_SVKEY. I think we need to document this aberation of the
5249                constness of the API, rather than making name non-const, as
5250                that change propagating outwards a long way.  */
5251             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5252         } else
5253             mg->mg_ptr = (char *) name;
5254     }
5255     mg->mg_virtual = (MGVTBL *) vtable;
5256
5257     mg_magical(sv);
5258     if (SvGMAGICAL(sv))
5259         SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5260     return mg;
5261 }
5262
5263 /*
5264 =for apidoc sv_magic
5265
5266 Adds magic to an SV.  First upgrades C<sv> to type C<SVt_PVMG> if
5267 necessary, then adds a new magic item of type C<how> to the head of the
5268 magic list.
5269
5270 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5271 handling of the C<name> and C<namlen> arguments.
5272
5273 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5274 to add more than one instance of the same 'how'.
5275
5276 =cut
5277 */
5278
5279 void
5280 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
5281              const char *const name, const I32 namlen)
5282 {
5283     dVAR;
5284     const MGVTBL *vtable;
5285     MAGIC* mg;
5286     unsigned int flags;
5287     unsigned int vtable_index;
5288
5289     PERL_ARGS_ASSERT_SV_MAGIC;
5290
5291     if (how < 0 || (unsigned)how > C_ARRAY_LENGTH(PL_magic_data)
5292         || ((flags = PL_magic_data[how]),
5293             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5294             > magic_vtable_max))
5295         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5296
5297     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5298        Useful for attaching extension internal data to perl vars.
5299        Note that multiple extensions may clash if magical scalars
5300        etc holding private data from one are passed to another. */
5301
5302     vtable = (vtable_index == magic_vtable_max)
5303         ? NULL : PL_magic_vtables + vtable_index;
5304
5305 #ifdef PERL_OLD_COPY_ON_WRITE
5306     if (SvIsCOW(sv))
5307         sv_force_normal_flags(sv, 0);
5308 #endif
5309     if (SvREADONLY(sv)) {
5310         if (
5311             /* its okay to attach magic to shared strings */
5312             (!SvFAKE(sv) || isGV_with_GP(sv))
5313
5314             && IN_PERL_RUNTIME
5315             && !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5316            )
5317         {
5318             Perl_croak_no_modify(aTHX);
5319         }
5320     }
5321     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5322         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5323             /* sv_magic() refuses to add a magic of the same 'how' as an
5324                existing one
5325              */
5326             if (how == PERL_MAGIC_taint) {
5327                 mg->mg_len |= 1;
5328                 /* Any scalar which already had taint magic on which someone
5329                    (erroneously?) did SvIOK_on() or similar will now be
5330                    incorrectly sporting public "OK" flags.  */
5331                 SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK|SVf_POK);
5332             }
5333             return;
5334         }
5335     }
5336
5337     /* Rest of work is done else where */
5338     mg = sv_magicext(sv,obj,how,vtable,name,namlen);
5339
5340     switch (how) {
5341     case PERL_MAGIC_taint:
5342         mg->mg_len = 1;
5343         break;
5344     case PERL_MAGIC_ext:
5345     case PERL_MAGIC_dbfile:
5346         SvRMAGICAL_on(sv);
5347         break;
5348     }
5349 }
5350
5351 static int
5352 S_sv_unmagicext_flags(pTHX_ SV *const sv, const int type, MGVTBL *vtbl, const U32 flags)
5353 {
5354     MAGIC* mg;
5355     MAGIC** mgp;
5356
5357     assert(flags <= 1);
5358
5359     if (SvTYPE(sv) < SVt_PVMG || !SvMAGIC(sv))
5360         return 0;
5361     mgp = &(((XPVMG*) SvANY(sv))->xmg_u.xmg_magic);
5362     for (mg = *mgp; mg; mg = *mgp) {
5363         const MGVTBL* const virt = mg->mg_virtual;
5364         if (mg->mg_type == type && (!flags || virt == vtbl)) {
5365             *mgp = mg->mg_moremagic;
5366             if (virt && virt->svt_free)
5367                 virt->svt_free(aTHX_ sv, mg);
5368             if (mg->mg_ptr && mg->mg_type != PERL_MAGIC_regex_global) {
5369                 if (mg->mg_len > 0)
5370                     Safefree(mg->mg_ptr);
5371                 else if (mg->mg_len == HEf_SVKEY)
5372                     SvREFCNT_dec(MUTABLE_SV(mg->mg_ptr));
5373                 else if (mg->mg_type == PERL_MAGIC_utf8)
5374                     Safefree(mg->mg_ptr);
5375             }
5376             if (mg->mg_flags & MGf_REFCOUNTED)
5377                 SvREFCNT_dec(mg->mg_obj);
5378             Safefree(mg);
5379         }
5380         else
5381             mgp = &mg->mg_moremagic;
5382     }
5383     if (SvMAGIC(sv)) {
5384         if (SvMAGICAL(sv))      /* if we're under save_magic, wait for restore_magic; */
5385             mg_magical(sv);     /*    else fix the flags now */
5386     }
5387     else {
5388         SvMAGICAL_off(sv);
5389         SvFLAGS(sv) |= (SvFLAGS(sv) & (SVp_IOK|SVp_NOK|SVp_POK)) >> PRIVSHIFT;
5390     }
5391     return 0;
5392 }
5393
5394 /*
5395 =for apidoc sv_unmagic
5396
5397 Removes all magic of type C<type> from an SV.
5398
5399 =cut
5400 */
5401
5402 int
5403 Perl_sv_unmagic(pTHX_ SV *const sv, const int type)
5404 {
5405     PERL_ARGS_ASSERT_SV_UNMAGIC;
5406     return S_sv_unmagicext_flags(aTHX_ sv, type, NULL, 0);
5407 }
5408
5409 /*
5410 =for apidoc sv_unmagicext
5411
5412 Removes all magic of type C<type> with the specified C<vtbl> from an SV.
5413
5414 =cut
5415 */
5416
5417 int
5418 Perl_sv_unmagicext(pTHX_ SV *const sv, const int type, MGVTBL *vtbl)
5419 {
5420     PERL_ARGS_ASSERT_SV_UNMAGICEXT;
5421     return S_sv_unmagicext_flags(aTHX_ sv, type, vtbl, 1);
5422 }
5423
5424 /*
5425 =for apidoc sv_rvweaken
5426
5427 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5428 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5429 push a back-reference to this RV onto the array of backreferences
5430 associated with that magic.  If the RV is magical, set magic will be
5431 called after the RV is cleared.
5432
5433 =cut
5434 */
5435
5436 SV *
5437 Perl_sv_rvweaken(pTHX_ SV *const sv)
5438 {
5439     SV *tsv;
5440
5441     PERL_ARGS_ASSERT_SV_RVWEAKEN;
5442
5443     if (!SvOK(sv))  /* let undefs pass */
5444         return sv;
5445     if (!SvROK(sv))
5446         Perl_croak(aTHX_ "Can't weaken a nonreference");
5447     else if (SvWEAKREF(sv)) {
5448         Perl_ck_warner(aTHX_ packWARN(WARN_MISC), "Reference is already weak");
5449         return sv;
5450     }
5451     else if (SvREADONLY(sv)) croak_no_modify();
5452     tsv = SvRV(sv);
5453     Perl_sv_add_backref(aTHX_ tsv, sv);
5454     SvWEAKREF_on(sv);
5455     SvREFCNT_dec(tsv);
5456     return sv;
5457 }
5458
5459 /* Give tsv backref magic if it hasn't already got it, then push a
5460  * back-reference to sv onto the array associated with the backref magic.
5461  *
5462  * As an optimisation, if there's only one backref and it's not an AV,
5463  * store it directly in the HvAUX or mg_obj slot, avoiding the need to
5464  * allocate an AV. (Whether the slot holds an AV tells us whether this is
5465  * active.)
5466  */
5467
5468 /* A discussion about the backreferences array and its refcount:
5469  *
5470  * The AV holding the backreferences is pointed to either as the mg_obj of
5471  * PERL_MAGIC_backref, or in the specific case of a HV, from the
5472  * xhv_backreferences field. The array is created with a refcount
5473  * of 2. This means that if during global destruction the array gets
5474  * picked on before its parent to have its refcount decremented by the
5475  * random zapper, it won't actually be freed, meaning it's still there for
5476  * when its parent gets freed.
5477  *
5478  * When the parent SV is freed, the extra ref is killed by
5479  * Perl_sv_kill_backrefs.  The other ref is killed, in the case of magic,
5480  * by mg_free() / MGf_REFCOUNTED, or for a hash, by Perl_hv_kill_backrefs.
5481  *
5482  * When a single backref SV is stored directly, it is not reference
5483  * counted.
5484  */
5485
5486 void
5487 Perl_sv_add_backref(pTHX_ SV *const tsv, SV *const sv)
5488 {
5489     dVAR;
5490     SV **svp;
5491     AV *av = NULL;
5492     MAGIC *mg = NULL;
5493
5494     PERL_ARGS_ASSERT_SV_ADD_BACKREF;
5495
5496     /* find slot to store array or singleton backref */
5497
5498     if (SvTYPE(tsv) == SVt_PVHV) {
5499         svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5500     } else {
5501         if (! ((mg =
5502             (SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL))))
5503         {
5504             sv_magic(tsv, NULL, PERL_MAGIC_backref, NULL, 0);
5505             mg = mg_find(tsv, PERL_MAGIC_backref);
5506         }
5507         svp = &(mg->mg_obj);
5508     }
5509
5510     /* create or retrieve the array */
5511
5512     if (   (!*svp && SvTYPE(sv) == SVt_PVAV)
5513         || (*svp && SvTYPE(*svp) != SVt_PVAV)
5514     ) {
5515         /* create array */
5516         av = newAV();
5517         AvREAL_off(av);
5518         SvREFCNT_inc_simple_void(av);
5519         /* av now has a refcnt of 2; see discussion above */
5520         if (*svp) {
5521             /* move single existing backref to the array */
5522             av_extend(av, 1);
5523             AvARRAY(av)[++AvFILLp(av)] = *svp; /* av_push() */
5524         }
5525         *svp = (SV*)av;
5526         if (mg)
5527             mg->mg_flags |= MGf_REFCOUNTED;
5528     }
5529     else
5530         av = MUTABLE_AV(*svp);
5531
5532     if (!av) {
5533         /* optimisation: store single backref directly in HvAUX or mg_obj */
5534         *svp = sv;
5535         return;
5536     }
5537     /* push new backref */
5538     assert(SvTYPE(av) == SVt_PVAV);
5539     if (AvFILLp(av) >= AvMAX(av)) {
5540         av_extend(av, AvFILLp(av)+1);
5541     }
5542     AvARRAY(av)[++AvFILLp(av)] = sv; /* av_push() */
5543 }
5544
5545 /* delete a back-reference to ourselves from the backref magic associated
5546  * with the SV we point to.
5547  */
5548
5549 void
5550 Perl_sv_del_backref(pTHX_ SV *const tsv, SV *const sv)
5551 {
5552     dVAR;
5553     SV **svp = NULL;
5554
5555     PERL_ARGS_ASSERT_SV_DEL_BACKREF;
5556
5557     if (SvTYPE(tsv) == SVt_PVHV) {
5558         if (SvOOK(tsv))
5559             svp = (SV**)Perl_hv_backreferences_p(aTHX_ MUTABLE_HV(tsv));
5560     }
5561     else {
5562         MAGIC *const mg
5563             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5564         svp =  mg ? &(mg->mg_obj) : NULL;
5565     }
5566
5567     if (!svp || !*svp)
5568         Perl_croak(aTHX_ "panic: del_backref");
5569
5570     if (SvTYPE(*svp) == SVt_PVAV) {
5571 #ifdef DEBUGGING
5572         int count = 1;
5573 #endif
5574         AV * const av = (AV*)*svp;
5575         SSize_t fill;
5576         assert(!SvIS_FREED(av));
5577         fill = AvFILLp(av);
5578         assert(fill > -1);
5579         svp = AvARRAY(av);
5580         /* for an SV with N weak references to it, if all those
5581          * weak refs are deleted, then sv_del_backref will be called
5582          * N times and O(N^2) compares will be done within the backref
5583          * array. To ameliorate this potential slowness, we:
5584          * 1) make sure this code is as tight as possible;
5585          * 2) when looking for SV, look for it at both the head and tail of the
5586          *    array first before searching the rest, since some create/destroy
5587          *    patterns will cause the backrefs to be freed in order.
5588          */
5589         if (*svp == sv) {
5590             AvARRAY(av)++;
5591             AvMAX(av)--;
5592         }
5593         else {
5594             SV **p = &svp[fill];
5595             SV *const topsv = *p;
5596             if (topsv != sv) {
5597 #ifdef DEBUGGING
5598                 count = 0;
5599 #endif
5600                 while (--p > svp) {
5601                     if (*p == sv) {
5602                         /* We weren't the last entry.
5603                            An unordered list has this property that you
5604                            can take the last element off the end to fill
5605                            the hole, and it's still an unordered list :-)
5606                         */
5607                         *p = topsv;
5608 #ifdef DEBUGGING
5609                         count++;
5610 #else
5611                         break; /* should only be one */
5612 #endif
5613                     }
5614                 }
5615             }
5616         }
5617         assert(count ==1);
5618         AvFILLp(av) = fill-1;
5619     }
5620     else {
5621         /* optimisation: only a single backref, stored directly */
5622         if (*svp != sv)
5623             Perl_croak(aTHX_ "panic: del_backref");
5624         *svp = NULL;
5625     }
5626
5627 }
5628
5629 void
5630 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5631 {
5632     SV **svp;
5633     SV **last;
5634     bool is_array;
5635
5636     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5637
5638     if (!av)
5639         return;
5640
5641     /* after multiple passes through Perl_sv_clean_all() for a thinngy
5642      * that has badly leaked, the backref array may have gotten freed,
5643      * since we only protect it against 1 round of cleanup */
5644     if (SvIS_FREED(av)) {
5645         if (PL_in_clean_all) /* All is fair */
5646             return;
5647         Perl_croak(aTHX_
5648                    "panic: magic_killbackrefs (freed backref AV/SV)");
5649     }
5650
5651
5652     is_array = (SvTYPE(av) == SVt_PVAV);
5653     if (is_array) {
5654         assert(!SvIS_FREED(av));
5655         svp = AvARRAY(av);
5656         if (svp)
5657             last = svp + AvFILLp(av);
5658     }
5659     else {
5660         /* optimisation: only a single backref, stored directly */
5661         svp = (SV**)&av;
5662         last = svp;
5663     }
5664
5665     if (svp) {
5666         while (svp <= last) {
5667             if (*svp) {
5668                 SV *const referrer = *svp;
5669                 if (SvWEAKREF(referrer)) {
5670                     /* XXX Should we check that it hasn't changed? */
5671                     assert(SvROK(referrer));
5672                     SvRV_set(referrer, 0);
5673                     SvOK_off(referrer);
5674                     SvWEAKREF_off(referrer);
5675                     SvSETMAGIC(referrer);
5676                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5677                            SvTYPE(referrer) == SVt_PVLV) {
5678                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
5679                     /* You lookin' at me?  */
5680                     assert(GvSTASH(referrer));
5681                     assert(GvSTASH(referrer) == (const HV *)sv);
5682                     GvSTASH(referrer) = 0;
5683                 } else if (SvTYPE(referrer) == SVt_PVCV ||
5684                            SvTYPE(referrer) == SVt_PVFM) {
5685                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
5686                         /* You lookin' at me?  */
5687                         assert(CvSTASH(referrer));
5688                         assert(CvSTASH(referrer) == (const HV *)sv);
5689                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
5690                     }
5691                     else {
5692                         assert(SvTYPE(sv) == SVt_PVGV);
5693                         /* You lookin' at me?  */
5694                         assert(CvGV(referrer));
5695                         assert(CvGV(referrer) == (const GV *)sv);
5696                         anonymise_cv_maybe(MUTABLE_GV(sv),
5697                                                 MUTABLE_CV(referrer));
5698                     }
5699
5700                 } else {
5701                     Perl_croak(aTHX_
5702                                "panic: magic_killbackrefs (flags=%"UVxf")",
5703                                (UV)SvFLAGS(referrer));
5704                 }
5705
5706                 if (is_array)
5707                     *svp = NULL;
5708             }
5709             svp++;
5710         }
5711     }
5712     if (is_array) {
5713         AvFILLp(av) = -1;
5714         SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5715     }
5716     return;
5717 }
5718
5719 /*
5720 =for apidoc sv_insert
5721
5722 Inserts a string at the specified offset/length within the SV.  Similar to
5723 the Perl substr() function.  Handles get magic.
5724
5725 =for apidoc sv_insert_flags
5726
5727 Same as C<sv_insert>, but the extra C<flags> are passed to the
5728 C<SvPV_force_flags> that applies to C<bigstr>.
5729
5730 =cut
5731 */
5732
5733 void
5734 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5735 {
5736     dVAR;
5737     register char *big;
5738     register char *mid;
5739     register char *midend;
5740     register char *bigend;
5741     register SSize_t i;         /* better be sizeof(STRLEN) or bad things happen */
5742     STRLEN curlen;
5743
5744     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5745
5746     if (!bigstr)
5747         Perl_croak(aTHX_ "Can't modify nonexistent substring");
5748     SvPV_force_flags(bigstr, curlen, flags);
5749     (void)SvPOK_only_UTF8(bigstr);
5750     if (offset + len > curlen) {
5751         SvGROW(bigstr, offset+len+1);
5752         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5753         SvCUR_set(bigstr, offset+len);
5754     }
5755
5756     SvTAINT(bigstr);
5757     i = littlelen - len;
5758     if (i > 0) {                        /* string might grow */
5759         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5760         mid = big + offset + len;
5761         midend = bigend = big + SvCUR(bigstr);
5762         bigend += i;
5763         *bigend = '\0';
5764         while (midend > mid)            /* shove everything down */
5765             *--bigend = *--midend;
5766         Move(little,big+offset,littlelen,char);
5767         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5768         SvSETMAGIC(bigstr);
5769         return;
5770     }
5771     else if (i == 0) {
5772         Move(little,SvPVX(bigstr)+offset,len,char);
5773         SvSETMAGIC(bigstr);
5774         return;
5775     }
5776
5777     big = SvPVX(bigstr);
5778     mid = big + offset;
5779     midend = mid + len;
5780     bigend = big + SvCUR(bigstr);
5781
5782     if (midend > bigend)
5783         Perl_croak(aTHX_ "panic: sv_insert");
5784
5785     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5786         if (littlelen) {
5787             Move(little, mid, littlelen,char);
5788             mid += littlelen;
5789         }
5790         i = bigend - midend;
5791         if (i > 0) {
5792             Move(midend, mid, i,char);
5793             mid += i;
5794         }
5795         *mid = '\0';
5796         SvCUR_set(bigstr, mid - big);
5797     }
5798     else if ((i = mid - big)) { /* faster from front */
5799         midend -= littlelen;
5800         mid = midend;
5801         Move(big, midend - i, i, char);
5802         sv_chop(bigstr,midend-i);
5803         if (littlelen)
5804             Move(little, mid, littlelen,char);
5805     }
5806     else if (littlelen) {
5807         midend -= littlelen;
5808         sv_chop(bigstr,midend);
5809         Move(little,midend,littlelen,char);
5810     }
5811     else {
5812         sv_chop(bigstr,midend);
5813     }
5814     SvSETMAGIC(bigstr);
5815 }
5816
5817 /*
5818 =for apidoc sv_replace
5819
5820 Make the first argument a copy of the second, then delete the original.
5821 The target SV physically takes over ownership of the body of the source SV
5822 and inherits its flags; however, the target keeps any magic it owns,
5823 and any magic in the source is discarded.
5824 Note that this is a rather specialist SV copying operation; most of the
5825 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5826
5827 =cut
5828 */
5829
5830 void
5831 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5832 {
5833     dVAR;
5834     const U32 refcnt = SvREFCNT(sv);
5835
5836     PERL_ARGS_ASSERT_SV_REPLACE;
5837
5838     SV_CHECK_THINKFIRST_COW_DROP(sv);
5839     if (SvREFCNT(nsv) != 1) {
5840         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
5841                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
5842     }
5843     if (SvMAGICAL(sv)) {
5844         if (SvMAGICAL(nsv))
5845             mg_free(nsv);
5846         else
5847             sv_upgrade(nsv, SVt_PVMG);
5848         SvMAGIC_set(nsv, SvMAGIC(sv));
5849         SvFLAGS(nsv) |= SvMAGICAL(sv);
5850         SvMAGICAL_off(sv);
5851         SvMAGIC_set(sv, NULL);
5852     }
5853     SvREFCNT(sv) = 0;
5854     sv_clear(sv);
5855     assert(!SvREFCNT(sv));
5856 #ifdef DEBUG_LEAKING_SCALARS
5857     sv->sv_flags  = nsv->sv_flags;
5858     sv->sv_any    = nsv->sv_any;
5859     sv->sv_refcnt = nsv->sv_refcnt;
5860     sv->sv_u      = nsv->sv_u;
5861 #else
5862     StructCopy(nsv,sv,SV);
5863 #endif
5864     if(SvTYPE(sv) == SVt_IV) {
5865         SvANY(sv)
5866             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5867     }
5868         
5869
5870 #ifdef PERL_OLD_COPY_ON_WRITE
5871     if (SvIsCOW_normal(nsv)) {
5872         /* We need to follow the pointers around the loop to make the
5873            previous SV point to sv, rather than nsv.  */
5874         SV *next;
5875         SV *current = nsv;
5876         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5877             assert(next);
5878             current = next;
5879             assert(SvPVX_const(current) == SvPVX_const(nsv));
5880         }
5881         /* Make the SV before us point to the SV after us.  */
5882         if (DEBUG_C_TEST) {
5883             PerlIO_printf(Perl_debug_log, "previous is\n");
5884             sv_dump(current);
5885             PerlIO_printf(Perl_debug_log,
5886                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5887                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5888         }
5889         SV_COW_NEXT_SV_SET(current, sv);
5890     }
5891 #endif
5892     SvREFCNT(sv) = refcnt;
5893     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5894     SvREFCNT(nsv) = 0;
5895     del_SV(nsv);
5896 }
5897
5898 /* We're about to free a GV which has a CV that refers back to us.
5899  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
5900  * field) */
5901
5902 STATIC void
5903 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
5904 {
5905     SV *gvname;
5906     GV *anongv;
5907
5908     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
5909
5910     /* be assertive! */
5911     assert(SvREFCNT(gv) == 0);
5912     assert(isGV(gv) && isGV_with_GP(gv));
5913     assert(GvGP(gv));
5914     assert(!CvANON(cv));
5915     assert(CvGV(cv) == gv);
5916
5917     /* will the CV shortly be freed by gp_free() ? */
5918     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
5919         SvANY(cv)->xcv_gv = NULL;
5920         return;
5921     }
5922
5923     /* if not, anonymise: */
5924     gvname = (GvSTASH(gv) && HvNAME(GvSTASH(gv)) && HvENAME(GvSTASH(gv)))
5925                     ? newSVhek(HvENAME_HEK(GvSTASH(gv)))
5926                     : newSVpvn_flags( "__ANON__", 8, 0 );
5927     sv_catpvs(gvname, "::__ANON__");
5928     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
5929     SvREFCNT_dec(gvname);
5930
5931     CvANON_on(cv);
5932     CvCVGV_RC_on(cv);
5933     SvANY(cv)->xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
5934 }
5935
5936
5937 /*
5938 =for apidoc sv_clear
5939
5940 Clear an SV: call any destructors, free up any memory used by the body,
5941 and free the body itself.  The SV's head is I<not> freed, although
5942 its type is set to all 1's so that it won't inadvertently be assumed
5943 to be live during global destruction etc.
5944 This function should only be called when REFCNT is zero.  Most of the time
5945 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5946 instead.
5947
5948 =cut
5949 */
5950
5951 void
5952 Perl_sv_clear(pTHX_ SV *const orig_sv)
5953 {
5954     dVAR;
5955     HV *stash;
5956     U32 type;
5957     const struct body_details *sv_type_details;
5958     SV* iter_sv = NULL;
5959     SV* next_sv = NULL;
5960     register SV *sv = orig_sv;
5961     STRLEN hash_index;
5962
5963     PERL_ARGS_ASSERT_SV_CLEAR;
5964
5965     /* within this loop, sv is the SV currently being freed, and
5966      * iter_sv is the most recent AV or whatever that's being iterated
5967      * over to provide more SVs */
5968
5969     while (sv) {
5970
5971         type = SvTYPE(sv);
5972
5973         assert(SvREFCNT(sv) == 0);
5974         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
5975
5976         if (type <= SVt_IV) {
5977             /* See the comment in sv.h about the collusion between this
5978              * early return and the overloading of the NULL slots in the
5979              * size table.  */
5980             if (SvROK(sv))
5981                 goto free_rv;
5982             SvFLAGS(sv) &= SVf_BREAK;
5983             SvFLAGS(sv) |= SVTYPEMASK;
5984             goto free_head;
5985         }
5986
5987         assert(!SvOBJECT(sv) || type >= SVt_PVMG); /* objs are always >= MG */
5988
5989         if (type >= SVt_PVMG) {
5990             if (SvOBJECT(sv)) {
5991                 if (!curse(sv, 1)) goto get_next_sv;
5992                 type = SvTYPE(sv); /* destructor may have changed it */
5993             }
5994             /* Free back-references before magic, in case the magic calls
5995              * Perl code that has weak references to sv. */
5996             if (type == SVt_PVHV) {
5997                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
5998                 if (SvMAGIC(sv))
5999                     mg_free(sv);
6000             }
6001             else if (type == SVt_PVMG && SvPAD_OUR(sv)) {
6002                 SvREFCNT_dec(SvOURSTASH(sv));
6003             } else if (SvMAGIC(sv)) {
6004                 /* Free back-references before other types of magic. */
6005                 sv_unmagic(sv, PERL_MAGIC_backref);
6006                 mg_free(sv);
6007             }
6008             if (type == SVt_PVMG && SvPAD_TYPED(sv))
6009                 SvREFCNT_dec(SvSTASH(sv));
6010         }
6011         switch (type) {
6012             /* case SVt_BIND: */
6013         case SVt_PVIO:
6014             if (IoIFP(sv) &&
6015                 IoIFP(sv) != PerlIO_stdin() &&
6016                 IoIFP(sv) != PerlIO_stdout() &&
6017                 IoIFP(sv) != PerlIO_stderr() &&
6018                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6019             {
6020                 io_close(MUTABLE_IO(sv), FALSE);
6021             }
6022             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6023                 PerlDir_close(IoDIRP(sv));
6024             IoDIRP(sv) = (DIR*)NULL;
6025             Safefree(IoTOP_NAME(sv));
6026             Safefree(IoFMT_NAME(sv));
6027             Safefree(IoBOTTOM_NAME(sv));
6028             goto freescalar;
6029         case SVt_REGEXP:
6030             /* FIXME for plugins */
6031             pregfree2((REGEXP*) sv);
6032             goto freescalar;
6033         case SVt_PVCV:
6034         case SVt_PVFM:
6035             cv_undef(MUTABLE_CV(sv));
6036             /* If we're in a stash, we don't own a reference to it.
6037              * However it does have a back reference to us, which needs to
6038              * be cleared.  */
6039             if ((stash = CvSTASH(sv)))
6040                 sv_del_backref(MUTABLE_SV(stash), sv);
6041             goto freescalar;
6042         case SVt_PVHV:
6043             if (PL_last_swash_hv == (const HV *)sv) {
6044                 PL_last_swash_hv = NULL;
6045             }
6046             if (HvTOTALKEYS((HV*)sv) > 0) {
6047                 const char *name;
6048                 /* this statement should match the one at the beginning of
6049                  * hv_undef_flags() */
6050                 if (   PL_phase != PERL_PHASE_DESTRUCT
6051                     && (name = HvNAME((HV*)sv)))
6052                 {
6053                     if (PL_stashcache)
6054                         (void)hv_delete(PL_stashcache, name,
6055                             HvNAMEUTF8((HV*)sv) ? -HvNAMELEN_get((HV*)sv) : HvNAMELEN_get((HV*)sv), G_DISCARD);
6056                     hv_name_set((HV*)sv, NULL, 0, 0);
6057                 }
6058
6059                 /* save old iter_sv in unused SvSTASH field */
6060                 assert(!SvOBJECT(sv));
6061                 SvSTASH(sv) = (HV*)iter_sv;
6062                 iter_sv = sv;
6063
6064                 /* XXX ideally we should save the old value of hash_index
6065                  * too, but I can't think of any place to hide it. The
6066                  * effect of not saving it is that for freeing hashes of
6067                  * hashes, we become quadratic in scanning the HvARRAY of
6068                  * the top hash looking for new entries to free; but
6069                  * hopefully this will be dwarfed by the freeing of all
6070                  * the nested hashes. */
6071                 hash_index = 0;
6072                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6073                 goto get_next_sv; /* process this new sv */
6074             }
6075             /* free empty hash */
6076             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6077             assert(!HvARRAY((HV*)sv));
6078             break;
6079         case SVt_PVAV:
6080             {
6081                 AV* av = MUTABLE_AV(sv);
6082                 if (PL_comppad == av) {
6083                     PL_comppad = NULL;
6084                     PL_curpad = NULL;
6085                 }
6086                 if (AvREAL(av) && AvFILLp(av) > -1) {
6087                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6088                     /* save old iter_sv in top-most slot of AV,
6089                      * and pray that it doesn't get wiped in the meantime */
6090                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6091                     iter_sv = sv;
6092                     goto get_next_sv; /* process this new sv */
6093                 }
6094                 Safefree(AvALLOC(av));
6095             }
6096
6097             break;
6098         case SVt_PVLV:
6099             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6100                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6101                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6102                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6103             }
6104             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6105                 SvREFCNT_dec(LvTARG(sv));
6106         case SVt_PVGV:
6107             if (isGV_with_GP(sv)) {
6108                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6109                    && HvENAME_get(stash))
6110                     mro_method_changed_in(stash);
6111                 gp_free(MUTABLE_GV(sv));
6112                 if (GvNAME_HEK(sv))
6113                     unshare_hek(GvNAME_HEK(sv));
6114                 /* If we're in a stash, we don't own a reference to it.
6115                  * However it does have a back reference to us, which
6116                  * needs to be cleared.  */
6117                 if (!SvVALID(sv) && (stash = GvSTASH(sv)))
6118                         sv_del_backref(MUTABLE_SV(stash), sv);
6119             }
6120             /* FIXME. There are probably more unreferenced pointers to SVs
6121              * in the interpreter struct that we should check and tidy in
6122              * a similar fashion to this:  */
6123             /* See also S_sv_unglob, which does the same thing. */
6124             if ((const GV *)sv == PL_last_in_gv)
6125                 PL_last_in_gv = NULL;
6126         case SVt_PVMG:
6127         case SVt_PVNV:
6128         case SVt_PVIV:
6129         case SVt_PV:
6130           freescalar:
6131             /* Don't bother with SvOOK_off(sv); as we're only going to
6132              * free it.  */
6133             if (SvOOK(sv)) {
6134                 STRLEN offset;
6135                 SvOOK_offset(sv, offset);
6136                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6137                 /* Don't even bother with turning off the OOK flag.  */
6138             }
6139             if (SvROK(sv)) {
6140             free_rv:
6141                 {
6142                     SV * const target = SvRV(sv);
6143                     if (SvWEAKREF(sv))
6144                         sv_del_backref(target, sv);
6145                     else
6146                         next_sv = target;
6147                 }
6148             }
6149 #ifdef PERL_OLD_COPY_ON_WRITE
6150             else if (SvPVX_const(sv)
6151                      && !(SvTYPE(sv) == SVt_PVIO
6152                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6153             {
6154                 if (SvIsCOW(sv)) {
6155                     if (DEBUG_C_TEST) {
6156                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6157                         sv_dump(sv);
6158                     }
6159                     if (SvLEN(sv)) {
6160                         sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6161                     } else {
6162                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6163                     }
6164
6165                     SvFAKE_off(sv);
6166                 } else if (SvLEN(sv)) {
6167                     Safefree(SvPVX_const(sv));
6168                 }
6169             }
6170 #else
6171             else if (SvPVX_const(sv) && SvLEN(sv)
6172                      && !(SvTYPE(sv) == SVt_PVIO
6173                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6174                 Safefree(SvPVX_mutable(sv));
6175             else if (SvPVX_const(sv) && SvREADONLY(sv) && SvFAKE(sv)) {
6176                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6177                 SvFAKE_off(sv);
6178             }
6179 #endif
6180             break;
6181         case SVt_NV:
6182             break;
6183         }
6184
6185       free_body:
6186
6187         SvFLAGS(sv) &= SVf_BREAK;
6188         SvFLAGS(sv) |= SVTYPEMASK;
6189
6190         sv_type_details = bodies_by_type + type;
6191         if (sv_type_details->arena) {
6192             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6193                      &PL_body_roots[type]);
6194         }
6195         else if (sv_type_details->body_size) {
6196             safefree(SvANY(sv));
6197         }
6198
6199       free_head:
6200         /* caller is responsible for freeing the head of the original sv */
6201         if (sv != orig_sv && !SvREFCNT(sv))
6202             del_SV(sv);
6203
6204         /* grab and free next sv, if any */
6205       get_next_sv:
6206         while (1) {
6207             sv = NULL;
6208             if (next_sv) {
6209                 sv = next_sv;
6210                 next_sv = NULL;
6211             }
6212             else if (!iter_sv) {
6213                 break;
6214             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6215                 AV *const av = (AV*)iter_sv;
6216                 if (AvFILLp(av) > -1) {
6217                     sv = AvARRAY(av)[AvFILLp(av)--];
6218                 }
6219                 else { /* no more elements of current AV to free */
6220                     sv = iter_sv;
6221                     type = SvTYPE(sv);
6222                     /* restore previous value, squirrelled away */
6223                     iter_sv = AvARRAY(av)[AvMAX(av)];
6224                     Safefree(AvALLOC(av));
6225                     goto free_body;
6226                 }
6227             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6228                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6229                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6230                     /* no more elements of current HV to free */
6231                     sv = iter_sv;
6232                     type = SvTYPE(sv);
6233                     /* Restore previous value of iter_sv, squirrelled away */
6234                     assert(!SvOBJECT(sv));
6235                     iter_sv = (SV*)SvSTASH(sv);
6236
6237                     /* ideally we should restore the old hash_index here,
6238                      * but we don't currently save the old value */
6239                     hash_index = 0;
6240
6241                     /* free any remaining detritus from the hash struct */
6242                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6243                     assert(!HvARRAY((HV*)sv));
6244                     goto free_body;
6245                 }
6246             }
6247
6248             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6249
6250             if (!sv)
6251                 continue;
6252             if (!SvREFCNT(sv)) {
6253                 sv_free(sv);
6254                 continue;
6255             }
6256             if (--(SvREFCNT(sv)))
6257                 continue;
6258 #ifdef DEBUGGING
6259             if (SvTEMP(sv)) {
6260                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6261                          "Attempt to free temp prematurely: SV 0x%"UVxf
6262                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6263                 continue;
6264             }
6265 #endif
6266             if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6267                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6268                 SvREFCNT(sv) = (~(U32)0)/2;
6269                 continue;
6270             }
6271             break;
6272         } /* while 1 */
6273
6274     } /* while sv */
6275 }
6276
6277 /* This routine curses the sv itself, not the object referenced by sv. So
6278    sv does not have to be ROK. */
6279
6280 static bool
6281 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6282     dVAR;
6283
6284     PERL_ARGS_ASSERT_CURSE;
6285     assert(SvOBJECT(sv));
6286
6287     if (PL_defstash &&  /* Still have a symbol table? */
6288         SvDESTROYABLE(sv))
6289     {
6290         dSP;
6291         HV* stash;
6292         do {
6293             CV* destructor;
6294             stash = SvSTASH(sv);
6295             destructor = StashHANDLER(stash,DESTROY);
6296             if (destructor
6297                 /* A constant subroutine can have no side effects, so
6298                    don't bother calling it.  */
6299                 && !CvCONST(destructor)
6300                 /* Don't bother calling an empty destructor or one that
6301                    returns immediately. */
6302                 && (CvISXSUB(destructor)
6303                 || (CvSTART(destructor)
6304                     && (CvSTART(destructor)->op_next->op_type
6305                                         != OP_LEAVESUB)
6306                     && (CvSTART(destructor)->op_next->op_type
6307                                         != OP_PUSHMARK
6308                         || CvSTART(destructor)->op_next->op_next->op_type
6309                                         != OP_RETURN
6310                        )
6311                    ))
6312                )
6313             {
6314                 SV* const tmpref = newRV(sv);
6315                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
6316                 ENTER;
6317                 PUSHSTACKi(PERLSI_DESTROY);
6318                 EXTEND(SP, 2);
6319                 PUSHMARK(SP);
6320                 PUSHs(tmpref);
6321                 PUTBACK;
6322                 call_sv(MUTABLE_SV(destructor),
6323                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
6324                 POPSTACK;
6325                 SPAGAIN;
6326                 LEAVE;
6327                 if(SvREFCNT(tmpref) < 2) {
6328                     /* tmpref is not kept alive! */
6329                     SvREFCNT(sv)--;
6330                     SvRV_set(tmpref, NULL);
6331                     SvROK_off(tmpref);
6332                 }
6333                 SvREFCNT_dec(tmpref);
6334             }
6335         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
6336
6337
6338         if (check_refcnt && SvREFCNT(sv)) {
6339             if (PL_in_clean_objs)
6340                 Perl_croak(aTHX_
6341                   "DESTROY created new reference to dead object '%"HEKf"'",
6342                    HEKfARG(HvNAME_HEK(stash)));
6343             /* DESTROY gave object new lease on life */
6344             return FALSE;
6345         }
6346     }
6347
6348     if (SvOBJECT(sv)) {
6349         SvREFCNT_dec(SvSTASH(sv)); /* possibly of changed persuasion */
6350         SvOBJECT_off(sv);       /* Curse the object. */
6351         if (SvTYPE(sv) != SVt_PVIO)
6352             --PL_sv_objcount;/* XXX Might want something more general */
6353     }
6354     return TRUE;
6355 }
6356
6357 /*
6358 =for apidoc sv_newref
6359
6360 Increment an SV's reference count.  Use the C<SvREFCNT_inc()> wrapper
6361 instead.
6362
6363 =cut
6364 */
6365
6366 SV *
6367 Perl_sv_newref(pTHX_ SV *const sv)
6368 {
6369     PERL_UNUSED_CONTEXT;
6370     if (sv)
6371         (SvREFCNT(sv))++;
6372     return sv;
6373 }
6374
6375 /*
6376 =for apidoc sv_free
6377
6378 Decrement an SV's reference count, and if it drops to zero, call
6379 C<sv_clear> to invoke destructors and free up any memory used by
6380 the body; finally, deallocate the SV's head itself.
6381 Normally called via a wrapper macro C<SvREFCNT_dec>.
6382
6383 =cut
6384 */
6385
6386 void
6387 Perl_sv_free(pTHX_ SV *const sv)
6388 {
6389     dVAR;
6390     if (!sv)
6391         return;
6392     if (SvREFCNT(sv) == 0) {
6393         if (SvFLAGS(sv) & SVf_BREAK)
6394             /* this SV's refcnt has been artificially decremented to
6395              * trigger cleanup */
6396             return;
6397         if (PL_in_clean_all) /* All is fair */
6398             return;
6399         if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6400             /* make sure SvREFCNT(sv)==0 happens very seldom */
6401             SvREFCNT(sv) = (~(U32)0)/2;
6402             return;
6403         }
6404         if (ckWARN_d(WARN_INTERNAL)) {
6405 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6406             Perl_dump_sv_child(aTHX_ sv);
6407 #else
6408   #ifdef DEBUG_LEAKING_SCALARS
6409             sv_dump(sv);
6410   #endif
6411 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6412             if (PL_warnhook == PERL_WARNHOOK_FATAL
6413                 || ckDEAD(packWARN(WARN_INTERNAL))) {
6414                 /* Don't let Perl_warner cause us to escape our fate:  */
6415                 abort();
6416             }
6417 #endif
6418             /* This may not return:  */
6419             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6420                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
6421                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6422 #endif
6423         }
6424 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6425         abort();
6426 #endif
6427         return;
6428     }
6429     if (--(SvREFCNT(sv)) > 0)
6430         return;
6431     Perl_sv_free2(aTHX_ sv);
6432 }
6433
6434 void
6435 Perl_sv_free2(pTHX_ SV *const sv)
6436 {
6437     dVAR;
6438
6439     PERL_ARGS_ASSERT_SV_FREE2;
6440
6441 #ifdef DEBUGGING
6442     if (SvTEMP(sv)) {
6443         Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6444                          "Attempt to free temp prematurely: SV 0x%"UVxf
6445                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6446         return;
6447     }
6448 #endif
6449     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6450         /* make sure SvREFCNT(sv)==0 happens very seldom */
6451         SvREFCNT(sv) = (~(U32)0)/2;
6452         return;
6453     }
6454     sv_clear(sv);
6455     if (! SvREFCNT(sv))
6456         del_SV(sv);
6457 }
6458
6459 /*
6460 =for apidoc sv_len
6461
6462 Returns the length of the string in the SV.  Handles magic and type
6463 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
6464
6465 =cut
6466 */
6467
6468 STRLEN
6469 Perl_sv_len(pTHX_ register SV *const sv)
6470 {
6471     STRLEN len;
6472
6473     if (!sv)
6474         return 0;
6475
6476     if (SvGMAGICAL(sv))
6477         len = mg_length(sv);
6478     else
6479         (void)SvPV_const(sv, len);
6480     return len;
6481 }
6482
6483 /*
6484 =for apidoc sv_len_utf8
6485
6486 Returns the number of characters in the string in an SV, counting wide
6487 UTF-8 bytes as a single character.  Handles magic and type coercion.
6488
6489 =cut
6490 */
6491
6492 /*
6493  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
6494  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
6495  * (Note that the mg_len is not the length of the mg_ptr field.
6496  * This allows the cache to store the character length of the string without
6497  * needing to malloc() extra storage to attach to the mg_ptr.)
6498  *
6499  */
6500
6501 STRLEN
6502 Perl_sv_len_utf8(pTHX_ register SV *const sv)
6503 {
6504     if (!sv)
6505         return 0;
6506
6507     if (SvGMAGICAL(sv))
6508         return mg_length(sv);
6509     else
6510     {
6511         STRLEN len;
6512         const U8 *s = (U8*)SvPV_const(sv, len);
6513
6514         if (PL_utf8cache) {
6515             STRLEN ulen;
6516             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
6517
6518             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
6519                 if (mg->mg_len != -1)
6520                     ulen = mg->mg_len;
6521                 else {
6522                     /* We can use the offset cache for a headstart.
6523                        The longer value is stored in the first pair.  */
6524                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
6525
6526                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
6527                                                        s + len);
6528                 }
6529                 
6530                 if (PL_utf8cache < 0) {
6531                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6532                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
6533                 }
6534             }
6535             else {
6536                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6537                 utf8_mg_len_cache_update(sv, &mg, ulen);
6538             }
6539             return ulen;
6540         }
6541         return Perl_utf8_length(aTHX_ s, s + len);
6542     }
6543 }
6544
6545 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6546    offset.  */
6547 static STRLEN
6548 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6549                       STRLEN *const uoffset_p, bool *const at_end)
6550 {
6551     const U8 *s = start;
6552     STRLEN uoffset = *uoffset_p;
6553
6554     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6555
6556     while (s < send && uoffset) {
6557         --uoffset;
6558         s += UTF8SKIP(s);
6559     }
6560     if (s == send) {
6561         *at_end = TRUE;
6562     }
6563     else if (s > send) {
6564         *at_end = TRUE;
6565         /* This is the existing behaviour. Possibly it should be a croak, as
6566            it's actually a bounds error  */
6567         s = send;
6568     }
6569     *uoffset_p -= uoffset;
6570     return s - start;
6571 }
6572
6573 /* Given the length of the string in both bytes and UTF-8 characters, decide
6574    whether to walk forwards or backwards to find the byte corresponding to
6575    the passed in UTF-8 offset.  */
6576 static STRLEN
6577 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6578                     STRLEN uoffset, const STRLEN uend)
6579 {
6580     STRLEN backw = uend - uoffset;
6581
6582     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6583
6584     if (uoffset < 2 * backw) {
6585         /* The assumption is that going forwards is twice the speed of going
6586            forward (that's where the 2 * backw comes from).
6587            (The real figure of course depends on the UTF-8 data.)  */
6588         const U8 *s = start;
6589
6590         while (s < send && uoffset--)
6591             s += UTF8SKIP(s);
6592         assert (s <= send);
6593         if (s > send)
6594             s = send;
6595         return s - start;
6596     }
6597
6598     while (backw--) {
6599         send--;
6600         while (UTF8_IS_CONTINUATION(*send))
6601             send--;
6602     }
6603     return send - start;
6604 }
6605
6606 /* For the string representation of the given scalar, find the byte
6607    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6608    give another position in the string, *before* the sought offset, which
6609    (which is always true, as 0, 0 is a valid pair of positions), which should
6610    help reduce the amount of linear searching.
6611    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6612    will be used to reduce the amount of linear searching. The cache will be
6613    created if necessary, and the found value offered to it for update.  */
6614 static STRLEN
6615 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6616                     const U8 *const send, STRLEN uoffset,
6617                     STRLEN uoffset0, STRLEN boffset0)
6618 {
6619     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6620     bool found = FALSE;
6621     bool at_end = FALSE;
6622
6623     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6624
6625     assert (uoffset >= uoffset0);
6626
6627     if (!uoffset)
6628         return 0;
6629
6630     if (!SvREADONLY(sv)
6631         && PL_utf8cache
6632         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
6633                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
6634         if ((*mgp)->mg_ptr) {
6635             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6636             if (cache[0] == uoffset) {
6637                 /* An exact match. */
6638                 return cache[1];
6639             }
6640             if (cache[2] == uoffset) {
6641                 /* An exact match. */
6642                 return cache[3];
6643             }
6644
6645             if (cache[0] < uoffset) {
6646                 /* The cache already knows part of the way.   */
6647                 if (cache[0] > uoffset0) {
6648                     /* The cache knows more than the passed in pair  */
6649                     uoffset0 = cache[0];
6650                     boffset0 = cache[1];
6651                 }
6652                 if ((*mgp)->mg_len != -1) {
6653                     /* And we know the end too.  */
6654                     boffset = boffset0
6655                         + sv_pos_u2b_midway(start + boffset0, send,
6656                                               uoffset - uoffset0,
6657                                               (*mgp)->mg_len - uoffset0);
6658                 } else {
6659                     uoffset -= uoffset0;
6660                     boffset = boffset0
6661                         + sv_pos_u2b_forwards(start + boffset0,
6662                                               send, &uoffset, &at_end);
6663                     uoffset += uoffset0;
6664                 }
6665             }
6666             else if (cache[2] < uoffset) {
6667                 /* We're between the two cache entries.  */
6668                 if (cache[2] > uoffset0) {
6669                     /* and the cache knows more than the passed in pair  */
6670                     uoffset0 = cache[2];
6671                     boffset0 = cache[3];
6672                 }
6673
6674                 boffset = boffset0
6675                     + sv_pos_u2b_midway(start + boffset0,
6676                                           start + cache[1],
6677                                           uoffset - uoffset0,
6678                                           cache[0] - uoffset0);
6679             } else {
6680                 boffset = boffset0
6681                     + sv_pos_u2b_midway(start + boffset0,
6682                                           start + cache[3],
6683                                           uoffset - uoffset0,
6684                                           cache[2] - uoffset0);
6685             }
6686             found = TRUE;
6687         }
6688         else if ((*mgp)->mg_len != -1) {
6689             /* If we can take advantage of a passed in offset, do so.  */
6690             /* In fact, offset0 is either 0, or less than offset, so don't
6691                need to worry about the other possibility.  */
6692             boffset = boffset0
6693                 + sv_pos_u2b_midway(start + boffset0, send,
6694                                       uoffset - uoffset0,
6695                                       (*mgp)->mg_len - uoffset0);
6696             found = TRUE;
6697         }
6698     }
6699
6700     if (!found || PL_utf8cache < 0) {
6701         STRLEN real_boffset;
6702         uoffset -= uoffset0;
6703         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
6704                                                       send, &uoffset, &at_end);
6705         uoffset += uoffset0;
6706
6707         if (found && PL_utf8cache < 0)
6708             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
6709                                        real_boffset, sv);
6710         boffset = real_boffset;
6711     }
6712
6713     if (PL_utf8cache) {
6714         if (at_end)
6715             utf8_mg_len_cache_update(sv, mgp, uoffset);
6716         else
6717             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
6718     }
6719     return boffset;
6720 }
6721
6722
6723 /*
6724 =for apidoc sv_pos_u2b_flags
6725
6726 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6727 the start of the string, to a count of the equivalent number of bytes; if
6728 lenp is non-zero, it does the same to lenp, but this time starting from
6729 the offset, rather than from the start
6730 of the string.  Handles type coercion.
6731 I<flags> is passed to C<SvPV_flags>, and usually should be
6732 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
6733
6734 =cut
6735 */
6736
6737 /*
6738  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
6739  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6740  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6741  *
6742  */
6743
6744 STRLEN
6745 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
6746                       U32 flags)
6747 {
6748     const U8 *start;
6749     STRLEN len;
6750     STRLEN boffset;
6751
6752     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
6753
6754     start = (U8*)SvPV_flags(sv, len, flags);
6755     if (len) {
6756         const U8 * const send = start + len;
6757         MAGIC *mg = NULL;
6758         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
6759
6760         if (lenp
6761             && *lenp /* don't bother doing work for 0, as its bytes equivalent
6762                         is 0, and *lenp is already set to that.  */) {
6763             /* Convert the relative offset to absolute.  */
6764             const STRLEN uoffset2 = uoffset + *lenp;
6765             const STRLEN boffset2
6766                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
6767                                       uoffset, boffset) - boffset;
6768
6769             *lenp = boffset2;
6770         }
6771     } else {
6772         if (lenp)
6773             *lenp = 0;
6774         boffset = 0;
6775     }
6776
6777     return boffset;
6778 }
6779
6780 /*
6781 =for apidoc sv_pos_u2b
6782
6783 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6784 the start of the string, to a count of the equivalent number of bytes; if
6785 lenp is non-zero, it does the same to lenp, but this time starting from
6786 the offset, rather than from the start of the string.  Handles magic and
6787 type coercion.
6788
6789 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
6790 than 2Gb.
6791
6792 =cut
6793 */
6794
6795 /*
6796  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6797  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6798  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6799  *
6800  */
6801
6802 /* This function is subject to size and sign problems */
6803
6804 void
6805 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
6806 {
6807     PERL_ARGS_ASSERT_SV_POS_U2B;
6808
6809     if (lenp) {
6810         STRLEN ulen = (STRLEN)*lenp;
6811         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
6812                                          SV_GMAGIC|SV_CONST_RETURN);
6813         *lenp = (I32)ulen;
6814     } else {
6815         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
6816                                          SV_GMAGIC|SV_CONST_RETURN);
6817     }
6818 }
6819
6820 static void
6821 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
6822                            const STRLEN ulen)
6823 {
6824     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
6825     if (SvREADONLY(sv))
6826         return;
6827
6828     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6829                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6830         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
6831     }
6832     assert(*mgp);
6833
6834     (*mgp)->mg_len = ulen;
6835     /* For now, treat "overflowed" as "still unknown". See RT #72924.  */
6836     if (ulen != (STRLEN) (*mgp)->mg_len)
6837         (*mgp)->mg_len = -1;
6838 }
6839
6840 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
6841    byte length pairing. The (byte) length of the total SV is passed in too,
6842    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
6843    may not have updated SvCUR, so we can't rely on reading it directly.
6844
6845    The proffered utf8/byte length pairing isn't used if the cache already has
6846    two pairs, and swapping either for the proffered pair would increase the
6847    RMS of the intervals between known byte offsets.
6848
6849    The cache itself consists of 4 STRLEN values
6850    0: larger UTF-8 offset
6851    1: corresponding byte offset
6852    2: smaller UTF-8 offset
6853    3: corresponding byte offset
6854
6855    Unused cache pairs have the value 0, 0.
6856    Keeping the cache "backwards" means that the invariant of
6857    cache[0] >= cache[2] is maintained even with empty slots, which means that
6858    the code that uses it doesn't need to worry if only 1 entry has actually
6859    been set to non-zero.  It also makes the "position beyond the end of the
6860    cache" logic much simpler, as the first slot is always the one to start
6861    from.   
6862 */
6863 static void
6864 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6865                            const STRLEN utf8, const STRLEN blen)
6866 {
6867     STRLEN *cache;
6868
6869     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6870
6871     if (SvREADONLY(sv))
6872         return;
6873
6874     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6875                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6876         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6877                            0);
6878         (*mgp)->mg_len = -1;
6879     }
6880     assert(*mgp);
6881
6882     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6883         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6884         (*mgp)->mg_ptr = (char *) cache;
6885     }
6886     assert(cache);
6887
6888     if (PL_utf8cache < 0 && SvPOKp(sv)) {
6889         /* SvPOKp() because it's possible that sv has string overloading, and
6890            therefore is a reference, hence SvPVX() is actually a pointer.
6891            This cures the (very real) symptoms of RT 69422, but I'm not actually
6892            sure whether we should even be caching the results of UTF-8
6893            operations on overloading, given that nothing stops overloading
6894            returning a different value every time it's called.  */
6895         const U8 *start = (const U8 *) SvPVX_const(sv);
6896         const STRLEN realutf8 = utf8_length(start, start + byte);
6897
6898         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
6899                                    sv);
6900     }
6901
6902     /* Cache is held with the later position first, to simplify the code
6903        that deals with unbounded ends.  */
6904        
6905     ASSERT_UTF8_CACHE(cache);
6906     if (cache[1] == 0) {
6907         /* Cache is totally empty  */
6908         cache[0] = utf8;
6909         cache[1] = byte;
6910     } else if (cache[3] == 0) {
6911         if (byte > cache[1]) {
6912             /* New one is larger, so goes first.  */
6913             cache[2] = cache[0];
6914             cache[3] = cache[1];
6915             cache[0] = utf8;
6916             cache[1] = byte;
6917         } else {
6918             cache[2] = utf8;
6919             cache[3] = byte;
6920         }
6921     } else {
6922 #define THREEWAY_SQUARE(a,b,c,d) \
6923             ((float)((d) - (c))) * ((float)((d) - (c))) \
6924             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6925                + ((float)((b) - (a))) * ((float)((b) - (a)))
6926
6927         /* Cache has 2 slots in use, and we know three potential pairs.
6928            Keep the two that give the lowest RMS distance. Do the
6929            calculation in bytes simply because we always know the byte
6930            length.  squareroot has the same ordering as the positive value,
6931            so don't bother with the actual square root.  */
6932         const float existing = THREEWAY_SQUARE(0, cache[3], cache[1], blen);
6933         if (byte > cache[1]) {
6934             /* New position is after the existing pair of pairs.  */
6935             const float keep_earlier
6936                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6937             const float keep_later
6938                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6939
6940             if (keep_later < keep_earlier) {
6941                 if (keep_later < existing) {
6942                     cache[2] = cache[0];
6943                     cache[3] = cache[1];
6944                     cache[0] = utf8;
6945                     cache[1] = byte;
6946                 }
6947             }
6948             else {
6949                 if (keep_earlier < existing) {
6950                     cache[0] = utf8;
6951                     cache[1] = byte;
6952                 }
6953             }
6954         }
6955         else if (byte > cache[3]) {
6956             /* New position is between the existing pair of pairs.  */
6957             const float keep_earlier
6958                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6959             const float keep_later
6960                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6961
6962             if (keep_later < keep_earlier) {
6963                 if (keep_later < existing) {
6964                     cache[2] = utf8;
6965                     cache[3] = byte;
6966                 }
6967             }
6968             else {
6969                 if (keep_earlier < existing) {
6970                     cache[0] = utf8;
6971                     cache[1] = byte;
6972                 }
6973             }
6974         }
6975         else {
6976             /* New position is before the existing pair of pairs.  */
6977             const float keep_earlier
6978                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
6979             const float keep_later
6980                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
6981
6982             if (keep_later < keep_earlier) {
6983                 if (keep_later < existing) {
6984                     cache[2] = utf8;
6985                     cache[3] = byte;
6986                 }
6987             }
6988             else {
6989                 if (keep_earlier < existing) {
6990                     cache[0] = cache[2];
6991                     cache[1] = cache[3];
6992                     cache[2] = utf8;
6993                     cache[3] = byte;
6994                 }
6995             }
6996         }
6997     }
6998     ASSERT_UTF8_CACHE(cache);
6999 }
7000
7001 /* We already know all of the way, now we may be able to walk back.  The same
7002    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
7003    backward is half the speed of walking forward. */
7004 static STRLEN
7005 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
7006                     const U8 *end, STRLEN endu)
7007 {
7008     const STRLEN forw = target - s;
7009     STRLEN backw = end - target;
7010
7011     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
7012
7013     if (forw < 2 * backw) {
7014         return utf8_length(s, target);
7015     }
7016
7017     while (end > target) {
7018         end--;
7019         while (UTF8_IS_CONTINUATION(*end)) {
7020             end--;
7021         }
7022         endu--;
7023     }
7024     return endu;
7025 }
7026
7027 /*
7028 =for apidoc sv_pos_b2u
7029
7030 Converts the value pointed to by offsetp from a count of bytes from the
7031 start of the string, to a count of the equivalent number of UTF-8 chars.
7032 Handles magic and type coercion.
7033
7034 =cut
7035 */
7036
7037 /*
7038  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
7039  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7040  * byte offsets.
7041  *
7042  */
7043 void
7044 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
7045 {
7046     const U8* s;
7047     const STRLEN byte = *offsetp;
7048     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
7049     STRLEN blen;
7050     MAGIC* mg = NULL;
7051     const U8* send;
7052     bool found = FALSE;
7053
7054     PERL_ARGS_ASSERT_SV_POS_B2U;
7055
7056     if (!sv)
7057         return;
7058
7059     s = (const U8*)SvPV_const(sv, blen);
7060
7061     if (blen < byte)
7062         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset");
7063
7064     send = s + byte;
7065
7066     if (!SvREADONLY(sv)
7067         && PL_utf8cache
7068         && SvTYPE(sv) >= SVt_PVMG
7069         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7070     {
7071         if (mg->mg_ptr) {
7072             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7073             if (cache[1] == byte) {
7074                 /* An exact match. */
7075                 *offsetp = cache[0];
7076                 return;
7077             }
7078             if (cache[3] == byte) {
7079                 /* An exact match. */
7080                 *offsetp = cache[2];
7081                 return;
7082             }
7083
7084             if (cache[1] < byte) {
7085                 /* We already know part of the way. */
7086                 if (mg->mg_len != -1) {
7087                     /* Actually, we know the end too.  */
7088                     len = cache[0]
7089                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7090                                               s + blen, mg->mg_len - cache[0]);
7091                 } else {
7092                     len = cache[0] + utf8_length(s + cache[1], send);
7093                 }
7094             }
7095             else if (cache[3] < byte) {
7096                 /* We're between the two cached pairs, so we do the calculation
7097                    offset by the byte/utf-8 positions for the earlier pair,
7098                    then add the utf-8 characters from the string start to
7099                    there.  */
7100                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7101                                           s + cache[1], cache[0] - cache[2])
7102                     + cache[2];
7103
7104             }
7105             else { /* cache[3] > byte */
7106                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7107                                           cache[2]);
7108
7109             }
7110             ASSERT_UTF8_CACHE(cache);
7111             found = TRUE;
7112         } else if (mg->mg_len != -1) {
7113             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7114             found = TRUE;
7115         }
7116     }
7117     if (!found || PL_utf8cache < 0) {
7118         const STRLEN real_len = utf8_length(s, send);
7119
7120         if (found && PL_utf8cache < 0)
7121             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7122         len = real_len;
7123     }
7124     *offsetp = len;
7125
7126     if (PL_utf8cache) {
7127         if (blen == byte)
7128             utf8_mg_len_cache_update(sv, &mg, len);
7129         else
7130             utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
7131     }
7132 }
7133
7134 static void
7135 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7136                              STRLEN real, SV *const sv)
7137 {
7138     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7139
7140     /* As this is debugging only code, save space by keeping this test here,
7141        rather than inlining it in all the callers.  */
7142     if (from_cache == real)
7143         return;
7144
7145     /* Need to turn the assertions off otherwise we may recurse infinitely
7146        while printing error messages.  */
7147     SAVEI8(PL_utf8cache);
7148     PL_utf8cache = 0;
7149     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
7150                func, (UV) from_cache, (UV) real, SVfARG(sv));
7151 }
7152
7153 /*
7154 =for apidoc sv_eq
7155
7156 Returns a boolean indicating whether the strings in the two SVs are
7157 identical.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7158 coerce its args to strings if necessary.
7159
7160 =for apidoc sv_eq_flags
7161
7162 Returns a boolean indicating whether the strings in the two SVs are
7163 identical.  Is UTF-8 and 'use bytes' aware and coerces its args to strings
7164 if necessary.  If the flags include SV_GMAGIC, it handles get-magic, too.
7165
7166 =cut
7167 */
7168
7169 I32
7170 Perl_sv_eq_flags(pTHX_ register SV *sv1, register SV *sv2, const U32 flags)
7171 {
7172     dVAR;
7173     const char *pv1;
7174     STRLEN cur1;
7175     const char *pv2;
7176     STRLEN cur2;
7177     I32  eq     = 0;
7178     SV* svrecode = NULL;
7179
7180     if (!sv1) {
7181         pv1 = "";
7182         cur1 = 0;
7183     }
7184     else {
7185         /* if pv1 and pv2 are the same, second SvPV_const call may
7186          * invalidate pv1 (if we are handling magic), so we may need to
7187          * make a copy */
7188         if (sv1 == sv2 && flags & SV_GMAGIC
7189          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7190             pv1 = SvPV_const(sv1, cur1);
7191             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7192         }
7193         pv1 = SvPV_flags_const(sv1, cur1, flags);
7194     }
7195
7196     if (!sv2){
7197         pv2 = "";
7198         cur2 = 0;
7199     }
7200     else
7201         pv2 = SvPV_flags_const(sv2, cur2, flags);
7202
7203     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7204         /* Differing utf8ness.
7205          * Do not UTF8size the comparands as a side-effect. */
7206          if (PL_encoding) {
7207               if (SvUTF8(sv1)) {
7208                    svrecode = newSVpvn(pv2, cur2);
7209                    sv_recode_to_utf8(svrecode, PL_encoding);
7210                    pv2 = SvPV_const(svrecode, cur2);
7211               }
7212               else {
7213                    svrecode = newSVpvn(pv1, cur1);
7214                    sv_recode_to_utf8(svrecode, PL_encoding);
7215                    pv1 = SvPV_const(svrecode, cur1);
7216               }
7217               /* Now both are in UTF-8. */
7218               if (cur1 != cur2) {
7219                    SvREFCNT_dec(svrecode);
7220                    return FALSE;
7221               }
7222          }
7223          else {
7224               if (SvUTF8(sv1)) {
7225                   /* sv1 is the UTF-8 one  */
7226                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7227                                         (const U8*)pv1, cur1) == 0;
7228               }
7229               else {
7230                   /* sv2 is the UTF-8 one  */
7231                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7232                                         (const U8*)pv2, cur2) == 0;
7233               }
7234          }
7235     }
7236
7237     if (cur1 == cur2)
7238         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7239         
7240     SvREFCNT_dec(svrecode);
7241
7242     return eq;
7243 }
7244
7245 /*
7246 =for apidoc sv_cmp
7247
7248 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7249 string in C<sv1> is less than, equal to, or greater than the string in
7250 C<sv2>.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7251 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
7252
7253 =for apidoc sv_cmp_flags
7254
7255 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7256 string in C<sv1> is less than, equal to, or greater than the string in
7257 C<sv2>.  Is UTF-8 and 'use bytes' aware and will coerce its args to strings
7258 if necessary.  If the flags include SV_GMAGIC, it handles get magic.  See
7259 also C<sv_cmp_locale_flags>.
7260
7261 =cut
7262 */
7263
7264 I32
7265 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
7266 {
7267     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7268 }
7269
7270 I32
7271 Perl_sv_cmp_flags(pTHX_ register SV *const sv1, register SV *const sv2,
7272                   const U32 flags)
7273 {
7274     dVAR;
7275     STRLEN cur1, cur2;
7276     const char *pv1, *pv2;
7277     char *tpv = NULL;
7278     I32  cmp;
7279     SV *svrecode = NULL;
7280
7281     if (!sv1) {
7282         pv1 = "";
7283         cur1 = 0;
7284     }
7285     else
7286         pv1 = SvPV_flags_const(sv1, cur1, flags);
7287
7288     if (!sv2) {
7289         pv2 = "";
7290         cur2 = 0;
7291     }
7292     else
7293         pv2 = SvPV_flags_const(sv2, cur2, flags);
7294
7295     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7296         /* Differing utf8ness.
7297          * Do not UTF8size the comparands as a side-effect. */
7298         if (SvUTF8(sv1)) {
7299             if (PL_encoding) {
7300                  svrecode = newSVpvn(pv2, cur2);
7301                  sv_recode_to_utf8(svrecode, PL_encoding);
7302                  pv2 = SvPV_const(svrecode, cur2);
7303             }
7304             else {
7305                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
7306                                                    (const U8*)pv1, cur1);
7307                 return retval ? retval < 0 ? -1 : +1 : 0;
7308             }
7309         }
7310         else {
7311             if (PL_encoding) {
7312                  svrecode = newSVpvn(pv1, cur1);
7313                  sv_recode_to_utf8(svrecode, PL_encoding);
7314                  pv1 = SvPV_const(svrecode, cur1);
7315             }
7316             else {
7317                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
7318                                                   (const U8*)pv2, cur2);
7319                 return retval ? retval < 0 ? -1 : +1 : 0;
7320             }
7321         }
7322     }
7323
7324     if (!cur1) {
7325         cmp = cur2 ? -1 : 0;
7326     } else if (!cur2) {
7327         cmp = 1;
7328     } else {
7329         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7330
7331         if (retval) {
7332             cmp = retval < 0 ? -1 : 1;
7333         } else if (cur1 == cur2) {
7334             cmp = 0;
7335         } else {
7336             cmp = cur1 < cur2 ? -1 : 1;
7337         }
7338     }
7339
7340     SvREFCNT_dec(svrecode);
7341     if (tpv)
7342         Safefree(tpv);
7343
7344     return cmp;
7345 }
7346
7347 /*
7348 =for apidoc sv_cmp_locale
7349
7350 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7351 'use bytes' aware, handles get magic, and will coerce its args to strings
7352 if necessary.  See also C<sv_cmp>.
7353
7354 =for apidoc sv_cmp_locale_flags
7355
7356 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7357 'use bytes' aware and will coerce its args to strings if necessary.  If the
7358 flags contain SV_GMAGIC, it handles get magic.  See also C<sv_cmp_flags>.
7359
7360 =cut
7361 */
7362
7363 I32
7364 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
7365 {
7366     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7367 }
7368
7369 I32
7370 Perl_sv_cmp_locale_flags(pTHX_ register SV *const sv1, register SV *const sv2,
7371                          const U32 flags)
7372 {
7373     dVAR;
7374 #ifdef USE_LOCALE_COLLATE
7375
7376     char *pv1, *pv2;
7377     STRLEN len1, len2;
7378     I32 retval;
7379
7380     if (PL_collation_standard)
7381         goto raw_compare;
7382
7383     len1 = 0;
7384     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7385     len2 = 0;
7386     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7387
7388     if (!pv1 || !len1) {
7389         if (pv2 && len2)
7390             return -1;
7391         else
7392             goto raw_compare;
7393     }
7394     else {
7395         if (!pv2 || !len2)
7396             return 1;
7397     }
7398
7399     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7400
7401     if (retval)
7402         return retval < 0 ? -1 : 1;
7403
7404     /*
7405      * When the result of collation is equality, that doesn't mean
7406      * that there are no differences -- some locales exclude some
7407      * characters from consideration.  So to avoid false equalities,
7408      * we use the raw string as a tiebreaker.
7409      */
7410
7411   raw_compare:
7412     /*FALLTHROUGH*/
7413
7414 #endif /* USE_LOCALE_COLLATE */
7415
7416     return sv_cmp(sv1, sv2);
7417 }
7418
7419
7420 #ifdef USE_LOCALE_COLLATE
7421
7422 /*
7423 =for apidoc sv_collxfrm
7424
7425 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag.  See
7426 C<sv_collxfrm_flags>.
7427
7428 =for apidoc sv_collxfrm_flags
7429
7430 Add Collate Transform magic to an SV if it doesn't already have it.  If the
7431 flags contain SV_GMAGIC, it handles get-magic.
7432
7433 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7434 scalar data of the variable, but transformed to such a format that a normal
7435 memory comparison can be used to compare the data according to the locale
7436 settings.
7437
7438 =cut
7439 */
7440
7441 char *
7442 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
7443 {
7444     dVAR;
7445     MAGIC *mg;
7446
7447     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
7448
7449     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
7450     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
7451         const char *s;
7452         char *xf;
7453         STRLEN len, xlen;
7454
7455         if (mg)
7456             Safefree(mg->mg_ptr);
7457         s = SvPV_flags_const(sv, len, flags);
7458         if ((xf = mem_collxfrm(s, len, &xlen))) {
7459             if (! mg) {
7460 #ifdef PERL_OLD_COPY_ON_WRITE
7461                 if (SvIsCOW(sv))
7462                     sv_force_normal_flags(sv, 0);
7463 #endif
7464                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7465                                  0, 0);
7466                 assert(mg);
7467             }
7468             mg->mg_ptr = xf;
7469             mg->mg_len = xlen;
7470         }
7471         else {
7472             if (mg) {
7473                 mg->mg_ptr = NULL;
7474                 mg->mg_len = -1;
7475             }
7476         }
7477     }
7478     if (mg && mg->mg_ptr) {
7479         *nxp = mg->mg_len;
7480         return mg->mg_ptr + sizeof(PL_collation_ix);
7481     }
7482     else {
7483         *nxp = 0;
7484         return NULL;
7485     }
7486 }
7487
7488 #endif /* USE_LOCALE_COLLATE */
7489
7490 static char *
7491 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7492 {
7493     SV * const tsv = newSV(0);
7494     ENTER;
7495     SAVEFREESV(tsv);
7496     sv_gets(tsv, fp, 0);
7497     sv_utf8_upgrade_nomg(tsv);
7498     SvCUR_set(sv,append);
7499     sv_catsv(sv,tsv);
7500     LEAVE;
7501     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7502 }
7503
7504 static char *
7505 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7506 {
7507     I32 bytesread;
7508     const U32 recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
7509       /* Grab the size of the record we're getting */
7510     char *const buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
7511 #ifdef VMS
7512     int fd;
7513 #endif
7514
7515     /* Go yank in */
7516 #ifdef VMS
7517     /* VMS wants read instead of fread, because fread doesn't respect */
7518     /* RMS record boundaries. This is not necessarily a good thing to be */
7519     /* doing, but we've got no other real choice - except avoid stdio
7520        as implementation - perhaps write a :vms layer ?
7521     */
7522     fd = PerlIO_fileno(fp);
7523     if (fd != -1) {
7524         bytesread = PerlLIO_read(fd, buffer, recsize);
7525     }
7526     else /* in-memory file from PerlIO::Scalar */
7527 #endif
7528     {
7529         bytesread = PerlIO_read(fp, buffer, recsize);
7530     }
7531
7532     if (bytesread < 0)
7533         bytesread = 0;
7534     SvCUR_set(sv, bytesread + append);
7535     buffer[bytesread] = '\0';
7536     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7537 }
7538
7539 /*
7540 =for apidoc sv_gets
7541
7542 Get a line from the filehandle and store it into the SV, optionally
7543 appending to the currently-stored string.
7544
7545 =cut
7546 */
7547
7548 char *
7549 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
7550 {
7551     dVAR;
7552     const char *rsptr;
7553     STRLEN rslen;
7554     register STDCHAR rslast;
7555     register STDCHAR *bp;
7556     register I32 cnt;
7557     I32 i = 0;
7558     I32 rspara = 0;
7559
7560     PERL_ARGS_ASSERT_SV_GETS;
7561
7562     if (SvTHINKFIRST(sv))
7563         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
7564     /* XXX. If you make this PVIV, then copy on write can copy scalars read
7565        from <>.
7566        However, perlbench says it's slower, because the existing swipe code
7567        is faster than copy on write.
7568        Swings and roundabouts.  */
7569     SvUPGRADE(sv, SVt_PV);
7570
7571     SvSCREAM_off(sv);
7572
7573     if (append) {
7574         if (PerlIO_isutf8(fp)) {
7575             if (!SvUTF8(sv)) {
7576                 sv_utf8_upgrade_nomg(sv);
7577                 sv_pos_u2b(sv,&append,0);
7578             }
7579         } else if (SvUTF8(sv)) {
7580             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
7581         }
7582     }
7583
7584     SvPOK_only(sv);
7585     if (!append) {
7586         SvCUR_set(sv,0);
7587     }
7588     if (PerlIO_isutf8(fp))
7589         SvUTF8_on(sv);
7590
7591     if (IN_PERL_COMPILETIME) {
7592         /* we always read code in line mode */
7593         rsptr = "\n";
7594         rslen = 1;
7595     }
7596     else if (RsSNARF(PL_rs)) {
7597         /* If it is a regular disk file use size from stat() as estimate
7598            of amount we are going to read -- may result in mallocing
7599            more memory than we really need if the layers below reduce
7600            the size we read (e.g. CRLF or a gzip layer).
7601          */
7602         Stat_t st;
7603         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
7604             const Off_t offset = PerlIO_tell(fp);
7605             if (offset != (Off_t) -1 && st.st_size + append > offset) {
7606                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
7607             }
7608         }
7609         rsptr = NULL;
7610         rslen = 0;
7611     }
7612     else if (RsRECORD(PL_rs)) {
7613         return S_sv_gets_read_record(aTHX_ sv, fp, append);
7614     }
7615     else if (RsPARA(PL_rs)) {
7616         rsptr = "\n\n";
7617         rslen = 2;
7618         rspara = 1;
7619     }
7620     else {
7621         /* Get $/ i.e. PL_rs into same encoding as stream wants */
7622         if (PerlIO_isutf8(fp)) {
7623             rsptr = SvPVutf8(PL_rs, rslen);
7624         }
7625         else {
7626             if (SvUTF8(PL_rs)) {
7627                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
7628                     Perl_croak(aTHX_ "Wide character in $/");
7629                 }
7630             }
7631             rsptr = SvPV_const(PL_rs, rslen);
7632         }
7633     }
7634
7635     rslast = rslen ? rsptr[rslen - 1] : '\0';
7636
7637     if (rspara) {               /* have to do this both before and after */
7638         do {                    /* to make sure file boundaries work right */
7639             if (PerlIO_eof(fp))
7640                 return 0;
7641             i = PerlIO_getc(fp);
7642             if (i != '\n') {
7643                 if (i == -1)
7644                     return 0;
7645                 PerlIO_ungetc(fp,i);
7646                 break;
7647             }
7648         } while (i != EOF);
7649     }
7650
7651     /* See if we know enough about I/O mechanism to cheat it ! */
7652
7653     /* This used to be #ifdef test - it is made run-time test for ease
7654        of abstracting out stdio interface. One call should be cheap
7655        enough here - and may even be a macro allowing compile
7656        time optimization.
7657      */
7658
7659     if (PerlIO_fast_gets(fp)) {
7660
7661     /*
7662      * We're going to steal some values from the stdio struct
7663      * and put EVERYTHING in the innermost loop into registers.
7664      */
7665     register STDCHAR *ptr;
7666     STRLEN bpx;
7667     I32 shortbuffered;
7668
7669 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7670     /* An ungetc()d char is handled separately from the regular
7671      * buffer, so we getc() it back out and stuff it in the buffer.
7672      */
7673     i = PerlIO_getc(fp);
7674     if (i == EOF) return 0;
7675     *(--((*fp)->_ptr)) = (unsigned char) i;
7676     (*fp)->_cnt++;
7677 #endif
7678
7679     /* Here is some breathtakingly efficient cheating */
7680
7681     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7682     /* make sure we have the room */
7683     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7684         /* Not room for all of it
7685            if we are looking for a separator and room for some
7686          */
7687         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7688             /* just process what we have room for */
7689             shortbuffered = cnt - SvLEN(sv) + append + 1;
7690             cnt -= shortbuffered;
7691         }
7692         else {
7693             shortbuffered = 0;
7694             /* remember that cnt can be negative */
7695             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7696         }
7697     }
7698     else
7699         shortbuffered = 0;
7700     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
7701     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7702     DEBUG_P(PerlIO_printf(Perl_debug_log,
7703         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7704     DEBUG_P(PerlIO_printf(Perl_debug_log,
7705         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7706                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7707                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7708     for (;;) {
7709       screamer:
7710         if (cnt > 0) {
7711             if (rslen) {
7712                 while (cnt > 0) {                    /* this     |  eat */
7713                     cnt--;
7714                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7715                         goto thats_all_folks;        /* screams  |  sed :-) */
7716                 }
7717             }
7718             else {
7719                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7720                 bp += cnt;                           /* screams  |  dust */
7721                 ptr += cnt;                          /* louder   |  sed :-) */
7722                 cnt = 0;
7723                 assert (!shortbuffered);
7724                 goto cannot_be_shortbuffered;
7725             }
7726         }
7727         
7728         if (shortbuffered) {            /* oh well, must extend */
7729             cnt = shortbuffered;
7730             shortbuffered = 0;
7731             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
7732             SvCUR_set(sv, bpx);
7733             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7734             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
7735             continue;
7736         }
7737
7738     cannot_be_shortbuffered:
7739         DEBUG_P(PerlIO_printf(Perl_debug_log,
7740                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7741                               PTR2UV(ptr),(long)cnt));
7742         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7743
7744         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
7745             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7746             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7747             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7748
7749         /* This used to call 'filbuf' in stdio form, but as that behaves like
7750            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7751            another abstraction.  */
7752         i   = PerlIO_getc(fp);          /* get more characters */
7753
7754         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
7755             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7756             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7757             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7758
7759         cnt = PerlIO_get_cnt(fp);
7760         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7761         DEBUG_P(PerlIO_printf(Perl_debug_log,
7762             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7763
7764         if (i == EOF)                   /* all done for ever? */
7765             goto thats_really_all_folks;
7766
7767         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
7768         SvCUR_set(sv, bpx);
7769         SvGROW(sv, bpx + cnt + 2);
7770         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
7771
7772         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7773
7774         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7775             goto thats_all_folks;
7776     }
7777
7778 thats_all_folks:
7779     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
7780           memNE((char*)bp - rslen, rsptr, rslen))
7781         goto screamer;                          /* go back to the fray */
7782 thats_really_all_folks:
7783     if (shortbuffered)
7784         cnt += shortbuffered;
7785         DEBUG_P(PerlIO_printf(Perl_debug_log,
7786             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7787     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7788     DEBUG_P(PerlIO_printf(Perl_debug_log,
7789         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7790         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7791         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7792     *bp = '\0';
7793     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
7794     DEBUG_P(PerlIO_printf(Perl_debug_log,
7795         "Screamer: done, len=%ld, string=|%.*s|\n",
7796         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
7797     }
7798    else
7799     {
7800        /*The big, slow, and stupid way. */
7801 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7802         STDCHAR *buf = NULL;
7803         Newx(buf, 8192, STDCHAR);
7804         assert(buf);
7805 #else
7806         STDCHAR buf[8192];
7807 #endif
7808
7809 screamer2:
7810         if (rslen) {
7811             register const STDCHAR * const bpe = buf + sizeof(buf);
7812             bp = buf;
7813             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7814                 ; /* keep reading */
7815             cnt = bp - buf;
7816         }
7817         else {
7818             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7819             /* Accommodate broken VAXC compiler, which applies U8 cast to
7820              * both args of ?: operator, causing EOF to change into 255
7821              */
7822             if (cnt > 0)
7823                  i = (U8)buf[cnt - 1];
7824             else
7825                  i = EOF;
7826         }
7827
7828         if (cnt < 0)
7829             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7830         if (append)
7831              sv_catpvn(sv, (char *) buf, cnt);
7832         else
7833              sv_setpvn(sv, (char *) buf, cnt);
7834
7835         if (i != EOF &&                 /* joy */
7836             (!rslen ||
7837              SvCUR(sv) < rslen ||
7838              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7839         {
7840             append = -1;
7841             /*
7842              * If we're reading from a TTY and we get a short read,
7843              * indicating that the user hit his EOF character, we need
7844              * to notice it now, because if we try to read from the TTY
7845              * again, the EOF condition will disappear.
7846              *
7847              * The comparison of cnt to sizeof(buf) is an optimization
7848              * that prevents unnecessary calls to feof().
7849              *
7850              * - jik 9/25/96
7851              */
7852             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
7853                 goto screamer2;
7854         }
7855
7856 #ifdef USE_HEAP_INSTEAD_OF_STACK
7857         Safefree(buf);
7858 #endif
7859     }
7860
7861     if (rspara) {               /* have to do this both before and after */
7862         while (i != EOF) {      /* to make sure file boundaries work right */
7863             i = PerlIO_getc(fp);
7864             if (i != '\n') {
7865                 PerlIO_ungetc(fp,i);
7866                 break;
7867             }
7868         }
7869     }
7870
7871     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7872 }
7873
7874 /*
7875 =for apidoc sv_inc
7876
7877 Auto-increment of the value in the SV, doing string to numeric conversion
7878 if necessary.  Handles 'get' magic and operator overloading.
7879
7880 =cut
7881 */
7882
7883 void
7884 Perl_sv_inc(pTHX_ register SV *const sv)
7885 {
7886     if (!sv)
7887         return;
7888     SvGETMAGIC(sv);
7889     sv_inc_nomg(sv);
7890 }
7891
7892 /*
7893 =for apidoc sv_inc_nomg
7894
7895 Auto-increment of the value in the SV, doing string to numeric conversion
7896 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
7897
7898 =cut
7899 */
7900
7901 void
7902 Perl_sv_inc_nomg(pTHX_ register SV *const sv)
7903 {
7904     dVAR;
7905     register char *d;
7906     int flags;
7907
7908     if (!sv)
7909         return;
7910     if (SvTHINKFIRST(sv)) {
7911         if (SvIsCOW(sv) || isGV_with_GP(sv))
7912             sv_force_normal_flags(sv, 0);
7913         if (SvREADONLY(sv)) {
7914             if (IN_PERL_RUNTIME)
7915                 Perl_croak_no_modify(aTHX);
7916         }
7917         if (SvROK(sv)) {
7918             IV i;
7919             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
7920                 return;
7921             i = PTR2IV(SvRV(sv));
7922             sv_unref(sv);
7923             sv_setiv(sv, i);
7924         }
7925     }
7926     flags = SvFLAGS(sv);
7927     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7928         /* It's (privately or publicly) a float, but not tested as an
7929            integer, so test it to see. */
7930         (void) SvIV(sv);
7931         flags = SvFLAGS(sv);
7932     }
7933     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7934         /* It's publicly an integer, or privately an integer-not-float */
7935 #ifdef PERL_PRESERVE_IVUV
7936       oops_its_int:
7937 #endif
7938         if (SvIsUV(sv)) {
7939             if (SvUVX(sv) == UV_MAX)
7940                 sv_setnv(sv, UV_MAX_P1);
7941             else
7942                 (void)SvIOK_only_UV(sv);
7943                 SvUV_set(sv, SvUVX(sv) + 1);
7944         } else {
7945             if (SvIVX(sv) == IV_MAX)
7946                 sv_setuv(sv, (UV)IV_MAX + 1);
7947             else {
7948                 (void)SvIOK_only(sv);
7949                 SvIV_set(sv, SvIVX(sv) + 1);
7950             }   
7951         }
7952         return;
7953     }
7954     if (flags & SVp_NOK) {
7955         const NV was = SvNVX(sv);
7956         if (NV_OVERFLOWS_INTEGERS_AT &&
7957             was >= NV_OVERFLOWS_INTEGERS_AT) {
7958             /* diag_listed_as: Lost precision when %s %f by 1 */
7959             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
7960                            "Lost precision when incrementing %" NVff " by 1",
7961                            was);
7962         }
7963         (void)SvNOK_only(sv);
7964         SvNV_set(sv, was + 1.0);
7965         return;
7966     }
7967
7968     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
7969         if ((flags & SVTYPEMASK) < SVt_PVIV)
7970             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
7971         (void)SvIOK_only(sv);
7972         SvIV_set(sv, 1);
7973         return;
7974     }
7975     d = SvPVX(sv);
7976     while (isALPHA(*d)) d++;
7977     while (isDIGIT(*d)) d++;
7978     if (d < SvEND(sv)) {
7979 #ifdef PERL_PRESERVE_IVUV
7980         /* Got to punt this as an integer if needs be, but we don't issue
7981            warnings. Probably ought to make the sv_iv_please() that does
7982            the conversion if possible, and silently.  */
7983         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
7984         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
7985             /* Need to try really hard to see if it's an integer.
7986                9.22337203685478e+18 is an integer.
7987                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
7988                so $a="9.22337203685478e+18"; $a+0; $a++
7989                needs to be the same as $a="9.22337203685478e+18"; $a++
7990                or we go insane. */
7991         
7992             (void) sv_2iv(sv);
7993             if (SvIOK(sv))
7994                 goto oops_its_int;
7995
7996             /* sv_2iv *should* have made this an NV */
7997             if (flags & SVp_NOK) {
7998                 (void)SvNOK_only(sv);
7999                 SvNV_set(sv, SvNVX(sv) + 1.0);
8000                 return;
8001             }
8002             /* I don't think we can get here. Maybe I should assert this
8003                And if we do get here I suspect that sv_setnv will croak. NWC
8004                Fall through. */
8005 #if defined(USE_LONG_DOUBLE)
8006             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",
8007                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8008 #else
8009             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8010                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8011 #endif
8012         }
8013 #endif /* PERL_PRESERVE_IVUV */
8014         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
8015         return;
8016     }
8017     d--;
8018     while (d >= SvPVX_const(sv)) {
8019         if (isDIGIT(*d)) {
8020             if (++*d <= '9')
8021                 return;
8022             *(d--) = '0';
8023         }
8024         else {
8025 #ifdef EBCDIC
8026             /* MKS: The original code here died if letters weren't consecutive.
8027              * at least it didn't have to worry about non-C locales.  The
8028              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
8029              * arranged in order (although not consecutively) and that only
8030              * [A-Za-z] are accepted by isALPHA in the C locale.
8031              */
8032             if (*d != 'z' && *d != 'Z') {
8033                 do { ++*d; } while (!isALPHA(*d));
8034                 return;
8035             }
8036             *(d--) -= 'z' - 'a';
8037 #else
8038             ++*d;
8039             if (isALPHA(*d))
8040                 return;
8041             *(d--) -= 'z' - 'a' + 1;
8042 #endif
8043         }
8044     }
8045     /* oh,oh, the number grew */
8046     SvGROW(sv, SvCUR(sv) + 2);
8047     SvCUR_set(sv, SvCUR(sv) + 1);
8048     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
8049         *d = d[-1];
8050     if (isDIGIT(d[1]))
8051         *d = '1';
8052     else
8053         *d = d[1];
8054 }
8055
8056 /*
8057 =for apidoc sv_dec
8058
8059 Auto-decrement of the value in the SV, doing string to numeric conversion
8060 if necessary.  Handles 'get' magic and operator overloading.
8061
8062 =cut
8063 */
8064
8065 void
8066 Perl_sv_dec(pTHX_ register SV *const sv)
8067 {
8068     dVAR;
8069     if (!sv)
8070         return;
8071     SvGETMAGIC(sv);
8072     sv_dec_nomg(sv);
8073 }
8074
8075 /*
8076 =for apidoc sv_dec_nomg
8077
8078 Auto-decrement of the value in the SV, doing string to numeric conversion
8079 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8080
8081 =cut
8082 */
8083
8084 void
8085 Perl_sv_dec_nomg(pTHX_ register SV *const sv)
8086 {
8087     dVAR;
8088     int flags;
8089
8090     if (!sv)
8091         return;
8092     if (SvTHINKFIRST(sv)) {
8093         if (SvIsCOW(sv) || isGV_with_GP(sv))
8094             sv_force_normal_flags(sv, 0);
8095         if (SvREADONLY(sv)) {
8096             if (IN_PERL_RUNTIME)
8097                 Perl_croak_no_modify(aTHX);
8098         }
8099         if (SvROK(sv)) {
8100             IV i;
8101             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
8102                 return;
8103             i = PTR2IV(SvRV(sv));
8104             sv_unref(sv);
8105             sv_setiv(sv, i);
8106         }
8107     }
8108     /* Unlike sv_inc we don't have to worry about string-never-numbers
8109        and keeping them magic. But we mustn't warn on punting */
8110     flags = SvFLAGS(sv);
8111     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8112         /* It's publicly an integer, or privately an integer-not-float */
8113 #ifdef PERL_PRESERVE_IVUV
8114       oops_its_int:
8115 #endif
8116         if (SvIsUV(sv)) {
8117             if (SvUVX(sv) == 0) {
8118                 (void)SvIOK_only(sv);
8119                 SvIV_set(sv, -1);
8120             }
8121             else {
8122                 (void)SvIOK_only_UV(sv);
8123                 SvUV_set(sv, SvUVX(sv) - 1);
8124             }   
8125         } else {
8126             if (SvIVX(sv) == IV_MIN) {
8127                 sv_setnv(sv, (NV)IV_MIN);
8128                 goto oops_its_num;
8129             }
8130             else {
8131                 (void)SvIOK_only(sv);
8132                 SvIV_set(sv, SvIVX(sv) - 1);
8133             }   
8134         }
8135         return;
8136     }
8137     if (flags & SVp_NOK) {
8138     oops_its_num:
8139         {
8140             const NV was = SvNVX(sv);
8141             if (NV_OVERFLOWS_INTEGERS_AT &&
8142                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
8143                 /* diag_listed_as: Lost precision when %s %f by 1 */
8144                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8145                                "Lost precision when decrementing %" NVff " by 1",
8146                                was);
8147             }
8148             (void)SvNOK_only(sv);
8149             SvNV_set(sv, was - 1.0);
8150             return;
8151         }
8152     }
8153     if (!(flags & SVp_POK)) {
8154         if ((flags & SVTYPEMASK) < SVt_PVIV)
8155             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
8156         SvIV_set(sv, -1);
8157         (void)SvIOK_only(sv);
8158         return;
8159     }
8160 #ifdef PERL_PRESERVE_IVUV
8161     {
8162         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8163         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8164             /* Need to try really hard to see if it's an integer.
8165                9.22337203685478e+18 is an integer.
8166                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8167                so $a="9.22337203685478e+18"; $a+0; $a--
8168                needs to be the same as $a="9.22337203685478e+18"; $a--
8169                or we go insane. */
8170         
8171             (void) sv_2iv(sv);
8172             if (SvIOK(sv))
8173                 goto oops_its_int;
8174
8175             /* sv_2iv *should* have made this an NV */
8176             if (flags & SVp_NOK) {
8177                 (void)SvNOK_only(sv);
8178                 SvNV_set(sv, SvNVX(sv) - 1.0);
8179                 return;
8180             }
8181             /* I don't think we can get here. Maybe I should assert this
8182                And if we do get here I suspect that sv_setnv will croak. NWC
8183                Fall through. */
8184 #if defined(USE_LONG_DOUBLE)
8185             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",
8186                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8187 #else
8188             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8189                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8190 #endif
8191         }
8192     }
8193 #endif /* PERL_PRESERVE_IVUV */
8194     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
8195 }
8196
8197 /* this define is used to eliminate a chunk of duplicated but shared logic
8198  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
8199  * used anywhere but here - yves
8200  */
8201 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
8202     STMT_START {      \
8203         EXTEND_MORTAL(1); \
8204         PL_tmps_stack[++PL_tmps_ix] = (AnSv); \
8205     } STMT_END
8206
8207 /*
8208 =for apidoc sv_mortalcopy
8209
8210 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
8211 The new SV is marked as mortal.  It will be destroyed "soon", either by an
8212 explicit call to FREETMPS, or by an implicit call at places such as
8213 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
8214
8215 =cut
8216 */
8217
8218 /* Make a string that will exist for the duration of the expression
8219  * evaluation.  Actually, it may have to last longer than that, but
8220  * hopefully we won't free it until it has been assigned to a
8221  * permanent location. */
8222
8223 SV *
8224 Perl_sv_mortalcopy(pTHX_ SV *const oldstr)
8225 {
8226     dVAR;
8227     register SV *sv;
8228
8229     new_SV(sv);
8230     sv_setsv(sv,oldstr);
8231     PUSH_EXTEND_MORTAL__SV_C(sv);
8232     SvTEMP_on(sv);
8233     return sv;
8234 }
8235
8236 /*
8237 =for apidoc sv_newmortal
8238
8239 Creates a new null SV which is mortal.  The reference count of the SV is
8240 set to 1.  It will be destroyed "soon", either by an explicit call to
8241 FREETMPS, or by an implicit call at places such as statement boundaries.
8242 See also C<sv_mortalcopy> and C<sv_2mortal>.
8243
8244 =cut
8245 */
8246
8247 SV *
8248 Perl_sv_newmortal(pTHX)
8249 {
8250     dVAR;
8251     register SV *sv;
8252
8253     new_SV(sv);
8254     SvFLAGS(sv) = SVs_TEMP;
8255     PUSH_EXTEND_MORTAL__SV_C(sv);
8256     return sv;
8257 }
8258
8259
8260 /*
8261 =for apidoc newSVpvn_flags
8262
8263 Creates a new SV and copies a string into it.  The reference count for the
8264 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8265 string.  You are responsible for ensuring that the source string is at least
8266 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8267 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
8268 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
8269 returning.  If C<SVf_UTF8> is set, C<s>
8270 is considered to be in UTF-8 and the
8271 C<SVf_UTF8> flag will be set on the new SV.
8272 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
8273
8274     #define newSVpvn_utf8(s, len, u)                    \
8275         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
8276
8277 =cut
8278 */
8279
8280 SV *
8281 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
8282 {
8283     dVAR;
8284     register SV *sv;
8285
8286     /* All the flags we don't support must be zero.
8287        And we're new code so I'm going to assert this from the start.  */
8288     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
8289     new_SV(sv);
8290     sv_setpvn(sv,s,len);
8291
8292     /* This code used to a sv_2mortal(), however we now unroll the call to sv_2mortal()
8293      * and do what it does ourselves here.
8294      * Since we have asserted that flags can only have the SVf_UTF8 and/or SVs_TEMP flags
8295      * set above we can use it to enable the sv flags directly (bypassing SvTEMP_on), which
8296      * in turn means we dont need to mask out the SVf_UTF8 flag below, which means that we
8297      * eliminate quite a few steps than it looks - Yves (explaining patch by gfx)
8298      */
8299
8300     SvFLAGS(sv) |= flags;
8301
8302     if(flags & SVs_TEMP){
8303         PUSH_EXTEND_MORTAL__SV_C(sv);
8304     }
8305
8306     return sv;
8307 }
8308
8309 /*
8310 =for apidoc sv_2mortal
8311
8312 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
8313 by an explicit call to FREETMPS, or by an implicit call at places such as
8314 statement boundaries.  SvTEMP() is turned on which means that the SV's
8315 string buffer can be "stolen" if this SV is copied.  See also C<sv_newmortal>
8316 and C<sv_mortalcopy>.
8317
8318 =cut
8319 */
8320
8321 SV *
8322 Perl_sv_2mortal(pTHX_ register SV *const sv)
8323 {
8324     dVAR;
8325     if (!sv)
8326         return NULL;
8327     if (SvREADONLY(sv) && SvIMMORTAL(sv))
8328         return sv;
8329     PUSH_EXTEND_MORTAL__SV_C(sv);
8330     SvTEMP_on(sv);
8331     return sv;
8332 }
8333
8334 /*
8335 =for apidoc newSVpv
8336
8337 Creates a new SV and copies a string into it.  The reference count for the
8338 SV is set to 1.  If C<len> is zero, Perl will compute the length using
8339 strlen().  For efficiency, consider using C<newSVpvn> instead.
8340
8341 =cut
8342 */
8343
8344 SV *
8345 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
8346 {
8347     dVAR;
8348     register SV *sv;
8349
8350     new_SV(sv);
8351     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
8352     return sv;
8353 }
8354
8355 /*
8356 =for apidoc newSVpvn
8357
8358 Creates a new SV and copies a string into it.  The reference count for the
8359 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8360 string.  You are responsible for ensuring that the source string is at least
8361 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8362
8363 =cut
8364 */
8365
8366 SV *
8367 Perl_newSVpvn(pTHX_ const char *const s, const STRLEN len)
8368 {
8369     dVAR;
8370     register SV *sv;
8371
8372     new_SV(sv);
8373     sv_setpvn(sv,s,len);
8374     return sv;
8375 }
8376
8377 /*
8378 =for apidoc newSVhek
8379
8380 Creates a new SV from the hash key structure.  It will generate scalars that
8381 point to the shared string table where possible.  Returns a new (undefined)
8382 SV if the hek is NULL.
8383
8384 =cut
8385 */
8386
8387 SV *
8388 Perl_newSVhek(pTHX_ const HEK *const hek)
8389 {
8390     dVAR;
8391     if (!hek) {
8392         SV *sv;
8393
8394         new_SV(sv);
8395         return sv;
8396     }
8397
8398     if (HEK_LEN(hek) == HEf_SVKEY) {
8399         return newSVsv(*(SV**)HEK_KEY(hek));
8400     } else {
8401         const int flags = HEK_FLAGS(hek);
8402         if (flags & HVhek_WASUTF8) {
8403             /* Trouble :-)
8404                Andreas would like keys he put in as utf8 to come back as utf8
8405             */
8406             STRLEN utf8_len = HEK_LEN(hek);
8407             SV * const sv = newSV_type(SVt_PV);
8408             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
8409             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
8410             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
8411             SvUTF8_on (sv);
8412             return sv;
8413         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
8414             /* We don't have a pointer to the hv, so we have to replicate the
8415                flag into every HEK. This hv is using custom a hasing
8416                algorithm. Hence we can't return a shared string scalar, as
8417                that would contain the (wrong) hash value, and might get passed
8418                into an hv routine with a regular hash.
8419                Similarly, a hash that isn't using shared hash keys has to have
8420                the flag in every key so that we know not to try to call
8421                share_hek_hek on it.  */
8422
8423             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
8424             if (HEK_UTF8(hek))
8425                 SvUTF8_on (sv);
8426             return sv;
8427         }
8428         /* This will be overwhelminly the most common case.  */
8429         {
8430             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
8431                more efficient than sharepvn().  */
8432             SV *sv;
8433
8434             new_SV(sv);
8435             sv_upgrade(sv, SVt_PV);
8436             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
8437             SvCUR_set(sv, HEK_LEN(hek));
8438             SvLEN_set(sv, 0);
8439             SvREADONLY_on(sv);
8440             SvFAKE_on(sv);
8441             SvPOK_on(sv);
8442             if (HEK_UTF8(hek))
8443                 SvUTF8_on(sv);
8444             return sv;
8445         }
8446     }
8447 }
8448
8449 /*
8450 =for apidoc newSVpvn_share
8451
8452 Creates a new SV with its SvPVX_const pointing to a shared string in the string
8453 table.  If the string does not already exist in the table, it is
8454 created first.  Turns on READONLY and FAKE.  If the C<hash> parameter
8455 is non-zero, that value is used; otherwise the hash is computed.
8456 The string's hash can later be retrieved from the SV
8457 with the C<SvSHARED_HASH()> macro.  The idea here is
8458 that as the string table is used for shared hash keys these strings will have
8459 SvPVX_const == HeKEY and hash lookup will avoid string compare.
8460
8461 =cut
8462 */
8463
8464 SV *
8465 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
8466 {
8467     dVAR;
8468     register SV *sv;
8469     bool is_utf8 = FALSE;
8470     const char *const orig_src = src;
8471
8472     if (len < 0) {
8473         STRLEN tmplen = -len;
8474         is_utf8 = TRUE;
8475         /* See the note in hv.c:hv_fetch() --jhi */
8476         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
8477         len = tmplen;
8478     }
8479     if (!hash)
8480         PERL_HASH(hash, src, len);
8481     new_SV(sv);
8482     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
8483        changes here, update it there too.  */
8484     sv_upgrade(sv, SVt_PV);
8485     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
8486     SvCUR_set(sv, len);
8487     SvLEN_set(sv, 0);
8488     SvREADONLY_on(sv);
8489     SvFAKE_on(sv);
8490     SvPOK_on(sv);
8491     if (is_utf8)
8492         SvUTF8_on(sv);
8493     if (src != orig_src)
8494         Safefree(src);
8495     return sv;
8496 }
8497
8498 /*
8499 =for apidoc newSVpv_share
8500
8501 Like C<newSVpvn_share>, but takes a nul-terminated string instead of a
8502 string/length pair.
8503
8504 =cut
8505 */
8506
8507 SV *
8508 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
8509 {
8510     return newSVpvn_share(src, strlen(src), hash);
8511 }
8512
8513 #if defined(PERL_IMPLICIT_CONTEXT)
8514
8515 /* pTHX_ magic can't cope with varargs, so this is a no-context
8516  * version of the main function, (which may itself be aliased to us).
8517  * Don't access this version directly.
8518  */
8519
8520 SV *
8521 Perl_newSVpvf_nocontext(const char *const pat, ...)
8522 {
8523     dTHX;
8524     register SV *sv;
8525     va_list args;
8526
8527     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
8528
8529     va_start(args, pat);
8530     sv = vnewSVpvf(pat, &args);
8531     va_end(args);
8532     return sv;
8533 }
8534 #endif
8535
8536 /*
8537 =for apidoc newSVpvf
8538
8539 Creates a new SV and initializes it with the string formatted like
8540 C<sprintf>.
8541
8542 =cut
8543 */
8544
8545 SV *
8546 Perl_newSVpvf(pTHX_ const char *const pat, ...)
8547 {
8548     register SV *sv;
8549     va_list args;
8550
8551     PERL_ARGS_ASSERT_NEWSVPVF;
8552
8553     va_start(args, pat);
8554     sv = vnewSVpvf(pat, &args);
8555     va_end(args);
8556     return sv;
8557 }
8558
8559 /* backend for newSVpvf() and newSVpvf_nocontext() */
8560
8561 SV *
8562 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
8563 {
8564     dVAR;
8565     register SV *sv;
8566
8567     PERL_ARGS_ASSERT_VNEWSVPVF;
8568
8569     new_SV(sv);
8570     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8571     return sv;
8572 }
8573
8574 /*
8575 =for apidoc newSVnv
8576
8577 Creates a new SV and copies a floating point value into it.
8578 The reference count for the SV is set to 1.
8579
8580 =cut
8581 */
8582
8583 SV *
8584 Perl_newSVnv(pTHX_ const NV n)
8585 {
8586     dVAR;
8587     register SV *sv;
8588
8589     new_SV(sv);
8590     sv_setnv(sv,n);
8591     return sv;
8592 }
8593
8594 /*
8595 =for apidoc newSViv
8596
8597 Creates a new SV and copies an integer into it.  The reference count for the
8598 SV is set to 1.
8599
8600 =cut
8601 */
8602
8603 SV *
8604 Perl_newSViv(pTHX_ const IV i)
8605 {
8606     dVAR;
8607     register SV *sv;
8608
8609     new_SV(sv);
8610     sv_setiv(sv,i);
8611     return sv;
8612 }
8613
8614 /*
8615 =for apidoc newSVuv
8616
8617 Creates a new SV and copies an unsigned integer into it.
8618 The reference count for the SV is set to 1.
8619
8620 =cut
8621 */
8622
8623 SV *
8624 Perl_newSVuv(pTHX_ const UV u)
8625 {
8626     dVAR;
8627     register SV *sv;
8628
8629     new_SV(sv);
8630     sv_setuv(sv,u);
8631     return sv;
8632 }
8633
8634 /*
8635 =for apidoc newSV_type
8636
8637 Creates a new SV, of the type specified.  The reference count for the new SV
8638 is set to 1.
8639
8640 =cut
8641 */
8642
8643 SV *
8644 Perl_newSV_type(pTHX_ const svtype type)
8645 {
8646     register SV *sv;
8647
8648     new_SV(sv);
8649     sv_upgrade(sv, type);
8650     return sv;
8651 }
8652
8653 /*
8654 =for apidoc newRV_noinc
8655
8656 Creates an RV wrapper for an SV.  The reference count for the original
8657 SV is B<not> incremented.
8658
8659 =cut
8660 */
8661
8662 SV *
8663 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
8664 {
8665     dVAR;
8666     register SV *sv = newSV_type(SVt_IV);
8667
8668     PERL_ARGS_ASSERT_NEWRV_NOINC;
8669
8670     SvTEMP_off(tmpRef);
8671     SvRV_set(sv, tmpRef);
8672     SvROK_on(sv);
8673     return sv;
8674 }
8675
8676 /* newRV_inc is the official function name to use now.
8677  * newRV_inc is in fact #defined to newRV in sv.h
8678  */
8679
8680 SV *
8681 Perl_newRV(pTHX_ SV *const sv)
8682 {
8683     dVAR;
8684
8685     PERL_ARGS_ASSERT_NEWRV;
8686
8687     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
8688 }
8689
8690 /*
8691 =for apidoc newSVsv
8692
8693 Creates a new SV which is an exact duplicate of the original SV.
8694 (Uses C<sv_setsv>.)
8695
8696 =cut
8697 */
8698
8699 SV *
8700 Perl_newSVsv(pTHX_ register SV *const old)
8701 {
8702     dVAR;
8703     register SV *sv;
8704
8705     if (!old)
8706         return NULL;
8707     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
8708         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
8709         return NULL;
8710     }
8711     new_SV(sv);
8712     /* SV_GMAGIC is the default for sv_setv()
8713        SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
8714        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
8715     sv_setsv_flags(sv, old, SV_GMAGIC | SV_NOSTEAL);
8716     return sv;
8717 }
8718
8719 /*
8720 =for apidoc sv_reset
8721
8722 Underlying implementation for the C<reset> Perl function.
8723 Note that the perl-level function is vaguely deprecated.
8724
8725 =cut
8726 */
8727
8728 void
8729 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
8730 {
8731     dVAR;
8732     char todo[PERL_UCHAR_MAX+1];
8733
8734     PERL_ARGS_ASSERT_SV_RESET;
8735
8736     if (!stash)
8737         return;
8738
8739     if (!*s) {          /* reset ?? searches */
8740         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
8741         if (mg) {
8742             const U32 count = mg->mg_len / sizeof(PMOP**);
8743             PMOP **pmp = (PMOP**) mg->mg_ptr;
8744             PMOP *const *const end = pmp + count;
8745
8746             while (pmp < end) {
8747 #ifdef USE_ITHREADS
8748                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
8749 #else
8750                 (*pmp)->op_pmflags &= ~PMf_USED;
8751 #endif
8752                 ++pmp;
8753             }
8754         }
8755         return;
8756     }
8757
8758     /* reset variables */
8759
8760     if (!HvARRAY(stash))
8761         return;
8762
8763     Zero(todo, 256, char);
8764     while (*s) {
8765         I32 max;
8766         I32 i = (unsigned char)*s;
8767         if (s[1] == '-') {
8768             s += 2;
8769         }
8770         max = (unsigned char)*s++;
8771         for ( ; i <= max; i++) {
8772             todo[i] = 1;
8773         }
8774         for (i = 0; i <= (I32) HvMAX(stash); i++) {
8775             HE *entry;
8776             for (entry = HvARRAY(stash)[i];
8777                  entry;
8778                  entry = HeNEXT(entry))
8779             {
8780                 register GV *gv;
8781                 register SV *sv;
8782
8783                 if (!todo[(U8)*HeKEY(entry)])
8784                     continue;
8785                 gv = MUTABLE_GV(HeVAL(entry));
8786                 sv = GvSV(gv);
8787                 if (sv) {
8788                     if (SvTHINKFIRST(sv)) {
8789                         if (!SvREADONLY(sv) && SvROK(sv))
8790                             sv_unref(sv);
8791                         /* XXX Is this continue a bug? Why should THINKFIRST
8792                            exempt us from resetting arrays and hashes?  */
8793                         continue;
8794                     }
8795                     SvOK_off(sv);
8796                     if (SvTYPE(sv) >= SVt_PV) {
8797                         SvCUR_set(sv, 0);
8798                         if (SvPVX_const(sv) != NULL)
8799                             *SvPVX(sv) = '\0';
8800                         SvTAINT(sv);
8801                     }
8802                 }
8803                 if (GvAV(gv)) {
8804                     av_clear(GvAV(gv));
8805                 }
8806                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
8807 #if defined(VMS)
8808                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
8809 #else /* ! VMS */
8810                     hv_clear(GvHV(gv));
8811 #  if defined(USE_ENVIRON_ARRAY)
8812                     if (gv == PL_envgv)
8813                         my_clearenv();
8814 #  endif /* USE_ENVIRON_ARRAY */
8815 #endif /* VMS */
8816                 }
8817             }
8818         }
8819     }
8820 }
8821
8822 /*
8823 =for apidoc sv_2io
8824
8825 Using various gambits, try to get an IO from an SV: the IO slot if its a
8826 GV; or the recursive result if we're an RV; or the IO slot of the symbol
8827 named after the PV if we're a string.
8828
8829 'Get' magic is ignored on the sv passed in, but will be called on
8830 C<SvRV(sv)> if sv is an RV.
8831
8832 =cut
8833 */
8834
8835 IO*
8836 Perl_sv_2io(pTHX_ SV *const sv)
8837 {
8838     IO* io;
8839     GV* gv;
8840
8841     PERL_ARGS_ASSERT_SV_2IO;
8842
8843     switch (SvTYPE(sv)) {
8844     case SVt_PVIO:
8845         io = MUTABLE_IO(sv);
8846         break;
8847     case SVt_PVGV:
8848     case SVt_PVLV:
8849         if (isGV_with_GP(sv)) {
8850             gv = MUTABLE_GV(sv);
8851             io = GvIO(gv);
8852             if (!io)
8853                 Perl_croak(aTHX_ "Bad filehandle: %"HEKf,
8854                                     HEKfARG(GvNAME_HEK(gv)));
8855             break;
8856         }
8857         /* FALL THROUGH */
8858     default:
8859         if (!SvOK(sv))
8860             Perl_croak(aTHX_ PL_no_usym, "filehandle");
8861         if (SvROK(sv)) {
8862             SvGETMAGIC(SvRV(sv));
8863             return sv_2io(SvRV(sv));
8864         }
8865         gv = gv_fetchsv_nomg(sv, 0, SVt_PVIO);
8866         if (gv)
8867             io = GvIO(gv);
8868         else
8869             io = 0;
8870         if (!io) {
8871             SV *newsv = sv;
8872             if (SvGMAGICAL(sv)) {
8873                 newsv = sv_newmortal();
8874                 sv_setsv_nomg(newsv, sv);
8875             }
8876             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(newsv));
8877         }
8878         break;
8879     }
8880     return io;
8881 }
8882
8883 /*
8884 =for apidoc sv_2cv
8885
8886 Using various gambits, try to get a CV from an SV; in addition, try if
8887 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
8888 The flags in C<lref> are passed to gv_fetchsv.
8889
8890 =cut
8891 */
8892
8893 CV *
8894 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
8895 {
8896     dVAR;
8897     GV *gv = NULL;
8898     CV *cv = NULL;
8899
8900     PERL_ARGS_ASSERT_SV_2CV;
8901
8902     if (!sv) {
8903         *st = NULL;
8904         *gvp = NULL;
8905         return NULL;
8906     }
8907     switch (SvTYPE(sv)) {
8908     case SVt_PVCV:
8909         *st = CvSTASH(sv);
8910         *gvp = NULL;
8911         return MUTABLE_CV(sv);
8912     case SVt_PVHV:
8913     case SVt_PVAV:
8914         *st = NULL;
8915         *gvp = NULL;
8916         return NULL;
8917     default:
8918         SvGETMAGIC(sv);
8919         if (SvROK(sv)) {
8920             if (SvAMAGIC(sv))
8921                 sv = amagic_deref_call(sv, to_cv_amg);
8922
8923             sv = SvRV(sv);
8924             if (SvTYPE(sv) == SVt_PVCV) {
8925                 cv = MUTABLE_CV(sv);
8926                 *gvp = NULL;
8927                 *st = CvSTASH(cv);
8928                 return cv;
8929             }
8930             else if(SvGETMAGIC(sv), isGV_with_GP(sv))
8931                 gv = MUTABLE_GV(sv);
8932             else
8933                 Perl_croak(aTHX_ "Not a subroutine reference");
8934         }
8935         else if (isGV_with_GP(sv)) {
8936             gv = MUTABLE_GV(sv);
8937         }
8938         else {
8939             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
8940         }
8941         *gvp = gv;
8942         if (!gv) {
8943             *st = NULL;
8944             return NULL;
8945         }
8946         /* Some flags to gv_fetchsv mean don't really create the GV  */
8947         if (!isGV_with_GP(gv)) {
8948             *st = NULL;
8949             return NULL;
8950         }
8951         *st = GvESTASH(gv);
8952         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
8953             SV *tmpsv;
8954             ENTER;
8955             tmpsv = newSV(0);
8956             gv_efullname3(tmpsv, gv, NULL);
8957             /* XXX this is probably not what they think they're getting.
8958              * It has the same effect as "sub name;", i.e. just a forward
8959              * declaration! */
8960             newSUB(start_subparse(FALSE, 0),
8961                    newSVOP(OP_CONST, 0, tmpsv),
8962                    NULL, NULL);
8963             LEAVE;
8964             if (!GvCVu(gv))
8965                 Perl_croak(aTHX_ "Unable to create sub named \"%"SVf"\"",
8966                            SVfARG(SvOK(sv) ? sv : &PL_sv_no));
8967         }
8968         return GvCVu(gv);
8969     }
8970 }
8971
8972 /*
8973 =for apidoc sv_true
8974
8975 Returns true if the SV has a true value by Perl's rules.
8976 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
8977 instead use an in-line version.
8978
8979 =cut
8980 */
8981
8982 I32
8983 Perl_sv_true(pTHX_ register SV *const sv)
8984 {
8985     if (!sv)
8986         return 0;
8987     if (SvPOK(sv)) {
8988         register const XPV* const tXpv = (XPV*)SvANY(sv);
8989         if (tXpv &&
8990                 (tXpv->xpv_cur > 1 ||
8991                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
8992             return 1;
8993         else
8994             return 0;
8995     }
8996     else {
8997         if (SvIOK(sv))
8998             return SvIVX(sv) != 0;
8999         else {
9000             if (SvNOK(sv))
9001                 return SvNVX(sv) != 0.0;
9002             else
9003                 return sv_2bool(sv);
9004         }
9005     }
9006 }
9007
9008 /*
9009 =for apidoc sv_pvn_force
9010
9011 Get a sensible string out of the SV somehow.
9012 A private implementation of the C<SvPV_force> macro for compilers which
9013 can't cope with complex macro expressions.  Always use the macro instead.
9014
9015 =for apidoc sv_pvn_force_flags
9016
9017 Get a sensible string out of the SV somehow.
9018 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
9019 appropriate, else not.  C<sv_pvn_force> and C<sv_pvn_force_nomg> are
9020 implemented in terms of this function.
9021 You normally want to use the various wrapper macros instead: see
9022 C<SvPV_force> and C<SvPV_force_nomg>
9023
9024 =cut
9025 */
9026
9027 char *
9028 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
9029 {
9030     dVAR;
9031
9032     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
9033
9034     if (flags & SV_GMAGIC) SvGETMAGIC(sv);
9035     if (SvTHINKFIRST(sv) && !SvROK(sv))
9036         sv_force_normal_flags(sv, 0);
9037
9038     if (SvPOK(sv)) {
9039         if (lp)
9040             *lp = SvCUR(sv);
9041     }
9042     else {
9043         char *s;
9044         STRLEN len;
9045  
9046         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
9047             const char * const ref = sv_reftype(sv,0);
9048             if (PL_op)
9049                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
9050                            ref, OP_DESC(PL_op));
9051             else
9052                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
9053         }
9054         if ((SvTYPE(sv) > SVt_PVLV && SvTYPE(sv) != SVt_PVFM)
9055             || isGV_with_GP(sv))
9056             /* diag_listed_as: Can't coerce %s to %s in %s */
9057             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
9058                 OP_DESC(PL_op));
9059         s = sv_2pv_flags(sv, &len, flags &~ SV_GMAGIC);
9060         if (lp)
9061             *lp = len;
9062
9063         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
9064             if (SvROK(sv))
9065                 sv_unref(sv);
9066             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
9067             SvGROW(sv, len + 1);
9068             Move(s,SvPVX(sv),len,char);
9069             SvCUR_set(sv, len);
9070             SvPVX(sv)[len] = '\0';
9071         }
9072         if (!SvPOK(sv)) {
9073             SvPOK_on(sv);               /* validate pointer */
9074             SvTAINT(sv);
9075             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9076                                   PTR2UV(sv),SvPVX_const(sv)));
9077         }
9078     }
9079     return SvPVX_mutable(sv);
9080 }
9081
9082 /*
9083 =for apidoc sv_pvbyten_force
9084
9085 The backend for the C<SvPVbytex_force> macro.  Always use the macro
9086 instead.
9087
9088 =cut
9089 */
9090
9091 char *
9092 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9093 {
9094     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9095
9096     sv_pvn_force(sv,lp);
9097     sv_utf8_downgrade(sv,0);
9098     *lp = SvCUR(sv);
9099     return SvPVX(sv);
9100 }
9101
9102 /*
9103 =for apidoc sv_pvutf8n_force
9104
9105 The backend for the C<SvPVutf8x_force> macro.  Always use the macro
9106 instead.
9107
9108 =cut
9109 */
9110
9111 char *
9112 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9113 {
9114     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9115
9116     sv_pvn_force(sv,lp);
9117     sv_utf8_upgrade(sv);
9118     *lp = SvCUR(sv);
9119     return SvPVX(sv);
9120 }
9121
9122 /*
9123 =for apidoc sv_reftype
9124
9125 Returns a string describing what the SV is a reference to.
9126
9127 =cut
9128 */
9129
9130 const char *
9131 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9132 {
9133     PERL_ARGS_ASSERT_SV_REFTYPE;
9134     if (ob && SvOBJECT(sv)) {
9135         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
9136     }
9137     else {
9138         switch (SvTYPE(sv)) {
9139         case SVt_NULL:
9140         case SVt_IV:
9141         case SVt_NV:
9142         case SVt_PV:
9143         case SVt_PVIV:
9144         case SVt_PVNV:
9145         case SVt_PVMG:
9146                                 if (SvVOK(sv))
9147                                     return "VSTRING";
9148                                 if (SvROK(sv))
9149                                     return "REF";
9150                                 else
9151                                     return "SCALAR";
9152
9153         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9154                                 /* tied lvalues should appear to be
9155                                  * scalars for backwards compatibility */
9156                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
9157                                     ? "SCALAR" : "LVALUE");
9158         case SVt_PVAV:          return "ARRAY";
9159         case SVt_PVHV:          return "HASH";
9160         case SVt_PVCV:          return "CODE";
9161         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9162                                     ? "GLOB" : "SCALAR");
9163         case SVt_PVFM:          return "FORMAT";
9164         case SVt_PVIO:          return "IO";
9165         case SVt_BIND:          return "BIND";
9166         case SVt_REGEXP:        return "REGEXP";
9167         default:                return "UNKNOWN";
9168         }
9169     }
9170 }
9171
9172 /*
9173 =for apidoc sv_ref
9174
9175 Returns a SV describing what the SV passed in is a reference to.
9176
9177 =cut
9178 */
9179
9180 SV *
9181 Perl_sv_ref(pTHX_ register SV *dst, const SV *const sv, const int ob)
9182 {
9183     PERL_ARGS_ASSERT_SV_REF;
9184
9185     if (!dst)
9186         dst = sv_newmortal();
9187
9188     if (ob && SvOBJECT(sv)) {
9189         HvNAME_get(SvSTASH(sv))
9190                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
9191                     : sv_setpvn(dst, "__ANON__", 8);
9192     }
9193     else {
9194         const char * reftype = sv_reftype(sv, 0);
9195         sv_setpv(dst, reftype);
9196     }
9197     return dst;
9198 }
9199
9200 /*
9201 =for apidoc sv_isobject
9202
9203 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9204 object.  If the SV is not an RV, or if the object is not blessed, then this
9205 will return false.
9206
9207 =cut
9208 */
9209
9210 int
9211 Perl_sv_isobject(pTHX_ SV *sv)
9212 {
9213     if (!sv)
9214         return 0;
9215     SvGETMAGIC(sv);
9216     if (!SvROK(sv))
9217         return 0;
9218     sv = SvRV(sv);
9219     if (!SvOBJECT(sv))
9220         return 0;
9221     return 1;
9222 }
9223
9224 /*
9225 =for apidoc sv_isa
9226
9227 Returns a boolean indicating whether the SV is blessed into the specified
9228 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9229 an inheritance relationship.
9230
9231 =cut
9232 */
9233
9234 int
9235 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
9236 {
9237     const char *hvname;
9238
9239     PERL_ARGS_ASSERT_SV_ISA;
9240
9241     if (!sv)
9242         return 0;
9243     SvGETMAGIC(sv);
9244     if (!SvROK(sv))
9245         return 0;
9246     sv = SvRV(sv);
9247     if (!SvOBJECT(sv))
9248         return 0;
9249     hvname = HvNAME_get(SvSTASH(sv));
9250     if (!hvname)
9251         return 0;
9252
9253     return strEQ(hvname, name);
9254 }
9255
9256 /*
9257 =for apidoc newSVrv
9258
9259 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
9260 it will be upgraded to one.  If C<classname> is non-null then the new SV will
9261 be blessed in the specified package.  The new SV is returned and its
9262 reference count is 1.
9263
9264 =cut
9265 */
9266
9267 SV*
9268 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
9269 {
9270     dVAR;
9271     SV *sv;
9272
9273     PERL_ARGS_ASSERT_NEWSVRV;
9274
9275     new_SV(sv);
9276
9277     SV_CHECK_THINKFIRST_COW_DROP(rv);
9278     (void)SvAMAGIC_off(rv);
9279
9280     if (SvTYPE(rv) >= SVt_PVMG) {
9281         const U32 refcnt = SvREFCNT(rv);
9282         SvREFCNT(rv) = 0;
9283         sv_clear(rv);
9284         SvFLAGS(rv) = 0;
9285         SvREFCNT(rv) = refcnt;
9286
9287         sv_upgrade(rv, SVt_IV);
9288     } else if (SvROK(rv)) {
9289         SvREFCNT_dec(SvRV(rv));
9290     } else {
9291         prepare_SV_for_RV(rv);
9292     }
9293
9294     SvOK_off(rv);
9295     SvRV_set(rv, sv);
9296     SvROK_on(rv);
9297
9298     if (classname) {
9299         HV* const stash = gv_stashpv(classname, GV_ADD);
9300         (void)sv_bless(rv, stash);
9301     }
9302     return sv;
9303 }
9304
9305 /*
9306 =for apidoc sv_setref_pv
9307
9308 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
9309 argument will be upgraded to an RV.  That RV will be modified to point to
9310 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
9311 into the SV.  The C<classname> argument indicates the package for the
9312 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9313 will have a reference count of 1, and the RV will be returned.
9314
9315 Do not use with other Perl types such as HV, AV, SV, CV, because those
9316 objects will become corrupted by the pointer copy process.
9317
9318 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
9319
9320 =cut
9321 */
9322
9323 SV*
9324 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
9325 {
9326     dVAR;
9327
9328     PERL_ARGS_ASSERT_SV_SETREF_PV;
9329
9330     if (!pv) {
9331         sv_setsv(rv, &PL_sv_undef);
9332         SvSETMAGIC(rv);
9333     }
9334     else
9335         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
9336     return rv;
9337 }
9338
9339 /*
9340 =for apidoc sv_setref_iv
9341
9342 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
9343 argument will be upgraded to an RV.  That RV will be modified to point to
9344 the new SV.  The C<classname> argument indicates the package for the
9345 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9346 will have a reference count of 1, and the RV will be returned.
9347
9348 =cut
9349 */
9350
9351 SV*
9352 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
9353 {
9354     PERL_ARGS_ASSERT_SV_SETREF_IV;
9355
9356     sv_setiv(newSVrv(rv,classname), iv);
9357     return rv;
9358 }
9359
9360 /*
9361 =for apidoc sv_setref_uv
9362
9363 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
9364 argument will be upgraded to an RV.  That RV will be modified to point to
9365 the new SV.  The C<classname> argument indicates the package for the
9366 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9367 will have a reference count of 1, and the RV will be returned.
9368
9369 =cut
9370 */
9371
9372 SV*
9373 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
9374 {
9375     PERL_ARGS_ASSERT_SV_SETREF_UV;
9376
9377     sv_setuv(newSVrv(rv,classname), uv);
9378     return rv;
9379 }
9380
9381 /*
9382 =for apidoc sv_setref_nv
9383
9384 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
9385 argument will be upgraded to an RV.  That RV will be modified to point to
9386 the new SV.  The C<classname> argument indicates the package for the
9387 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9388 will have a reference count of 1, and the RV will be returned.
9389
9390 =cut
9391 */
9392
9393 SV*
9394 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
9395 {
9396     PERL_ARGS_ASSERT_SV_SETREF_NV;
9397
9398     sv_setnv(newSVrv(rv,classname), nv);
9399     return rv;
9400 }
9401
9402 /*
9403 =for apidoc sv_setref_pvn
9404
9405 Copies a string into a new SV, optionally blessing the SV.  The length of the
9406 string must be specified with C<n>.  The C<rv> argument will be upgraded to
9407 an RV.  That RV will be modified to point to the new SV.  The C<classname>
9408 argument indicates the package for the blessing.  Set C<classname> to
9409 C<NULL> to avoid the blessing.  The new SV will have a reference count
9410 of 1, and the RV will be returned.
9411
9412 Note that C<sv_setref_pv> copies the pointer while this copies the string.
9413
9414 =cut
9415 */
9416
9417 SV*
9418 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
9419                    const char *const pv, const STRLEN n)
9420 {
9421     PERL_ARGS_ASSERT_SV_SETREF_PVN;
9422
9423     sv_setpvn(newSVrv(rv,classname), pv, n);
9424     return rv;
9425 }
9426
9427 /*
9428 =for apidoc sv_bless
9429
9430 Blesses an SV into a specified package.  The SV must be an RV.  The package
9431 must be designated by its stash (see C<gv_stashpv()>).  The reference count
9432 of the SV is unaffected.
9433
9434 =cut
9435 */
9436
9437 SV*
9438 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
9439 {
9440     dVAR;
9441     SV *tmpRef;
9442
9443     PERL_ARGS_ASSERT_SV_BLESS;
9444
9445     if (!SvROK(sv))
9446         Perl_croak(aTHX_ "Can't bless non-reference value");
9447     tmpRef = SvRV(sv);
9448     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
9449         if (SvIsCOW(tmpRef))
9450             sv_force_normal_flags(tmpRef, 0);
9451         if (SvREADONLY(tmpRef))
9452             Perl_croak_no_modify(aTHX);
9453         if (SvOBJECT(tmpRef)) {
9454             if (SvTYPE(tmpRef) != SVt_PVIO)
9455                 --PL_sv_objcount;
9456             SvREFCNT_dec(SvSTASH(tmpRef));
9457         }
9458     }
9459     SvOBJECT_on(tmpRef);
9460     if (SvTYPE(tmpRef) != SVt_PVIO)
9461         ++PL_sv_objcount;
9462     SvUPGRADE(tmpRef, SVt_PVMG);
9463     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
9464
9465     if (Gv_AMG(stash))
9466         SvAMAGIC_on(sv);
9467     else
9468         (void)SvAMAGIC_off(sv);
9469
9470     if(SvSMAGICAL(tmpRef))
9471         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
9472             mg_set(tmpRef);
9473
9474
9475
9476     return sv;
9477 }
9478
9479 /* Downgrades a PVGV to a PVMG. If it's actually a PVLV, we leave the type
9480  * as it is after unglobbing it.
9481  */
9482
9483 PERL_STATIC_INLINE void
9484 S_sv_unglob(pTHX_ SV *const sv, U32 flags)
9485 {
9486     dVAR;
9487     void *xpvmg;
9488     HV *stash;
9489     SV * const temp = flags & SV_COW_DROP_PV ? NULL : sv_newmortal();
9490
9491     PERL_ARGS_ASSERT_SV_UNGLOB;
9492
9493     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
9494     SvFAKE_off(sv);
9495     if (!(flags & SV_COW_DROP_PV))
9496         gv_efullname3(temp, MUTABLE_GV(sv), "*");
9497
9498     if (GvGP(sv)) {
9499         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
9500            && HvNAME_get(stash))
9501             mro_method_changed_in(stash);
9502         gp_free(MUTABLE_GV(sv));
9503     }
9504     if (GvSTASH(sv)) {
9505         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
9506         GvSTASH(sv) = NULL;
9507     }
9508     GvMULTI_off(sv);
9509     if (GvNAME_HEK(sv)) {
9510         unshare_hek(GvNAME_HEK(sv));
9511     }
9512     isGV_with_GP_off(sv);
9513
9514     if(SvTYPE(sv) == SVt_PVGV) {
9515         /* need to keep SvANY(sv) in the right arena */
9516         xpvmg = new_XPVMG();
9517         StructCopy(SvANY(sv), xpvmg, XPVMG);
9518         del_XPVGV(SvANY(sv));
9519         SvANY(sv) = xpvmg;
9520
9521         SvFLAGS(sv) &= ~SVTYPEMASK;
9522         SvFLAGS(sv) |= SVt_PVMG;
9523     }
9524
9525     /* Intentionally not calling any local SET magic, as this isn't so much a
9526        set operation as merely an internal storage change.  */
9527     if (flags & SV_COW_DROP_PV) SvOK_off(sv);
9528     else sv_setsv_flags(sv, temp, 0);
9529
9530     if ((const GV *)sv == PL_last_in_gv)
9531         PL_last_in_gv = NULL;
9532 }
9533
9534 /*
9535 =for apidoc sv_unref_flags
9536
9537 Unsets the RV status of the SV, and decrements the reference count of
9538 whatever was being referenced by the RV.  This can almost be thought of
9539 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9540 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
9541 (otherwise the decrementing is conditional on the reference count being
9542 different from one or the reference being a readonly SV).
9543 See C<SvROK_off>.
9544
9545 =cut
9546 */
9547
9548 void
9549 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
9550 {
9551     SV* const target = SvRV(ref);
9552
9553     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
9554
9555     if (SvWEAKREF(ref)) {
9556         sv_del_backref(target, ref);
9557         SvWEAKREF_off(ref);
9558         SvRV_set(ref, NULL);
9559         return;
9560     }
9561     SvRV_set(ref, NULL);
9562     SvROK_off(ref);
9563     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
9564        assigned to as BEGIN {$a = \"Foo"} will fail.  */
9565     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
9566         SvREFCNT_dec(target);
9567     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
9568         sv_2mortal(target);     /* Schedule for freeing later */
9569 }
9570
9571 /*
9572 =for apidoc sv_untaint
9573
9574 Untaint an SV.  Use C<SvTAINTED_off> instead.
9575
9576 =cut
9577 */
9578
9579 void
9580 Perl_sv_untaint(pTHX_ SV *const sv)
9581 {
9582     PERL_ARGS_ASSERT_SV_UNTAINT;
9583
9584     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9585         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9586         if (mg)
9587             mg->mg_len &= ~1;
9588     }
9589 }
9590
9591 /*
9592 =for apidoc sv_tainted
9593
9594 Test an SV for taintedness.  Use C<SvTAINTED> instead.
9595
9596 =cut
9597 */
9598
9599 bool
9600 Perl_sv_tainted(pTHX_ SV *const sv)
9601 {
9602     PERL_ARGS_ASSERT_SV_TAINTED;
9603
9604     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9605         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9606         if (mg && (mg->mg_len & 1) )
9607             return TRUE;
9608     }
9609     return FALSE;
9610 }
9611
9612 /*
9613 =for apidoc sv_setpviv
9614
9615 Copies an integer into the given SV, also updating its string value.
9616 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
9617
9618 =cut
9619 */
9620
9621 void
9622 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
9623 {
9624     char buf[TYPE_CHARS(UV)];
9625     char *ebuf;
9626     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
9627
9628     PERL_ARGS_ASSERT_SV_SETPVIV;
9629
9630     sv_setpvn(sv, ptr, ebuf - ptr);
9631 }
9632
9633 /*
9634 =for apidoc sv_setpviv_mg
9635
9636 Like C<sv_setpviv>, but also handles 'set' magic.
9637
9638 =cut
9639 */
9640
9641 void
9642 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
9643 {
9644     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
9645
9646     sv_setpviv(sv, iv);
9647     SvSETMAGIC(sv);
9648 }
9649
9650 #if defined(PERL_IMPLICIT_CONTEXT)
9651
9652 /* pTHX_ magic can't cope with varargs, so this is a no-context
9653  * version of the main function, (which may itself be aliased to us).
9654  * Don't access this version directly.
9655  */
9656
9657 void
9658 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
9659 {
9660     dTHX;
9661     va_list args;
9662
9663     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
9664
9665     va_start(args, pat);
9666     sv_vsetpvf(sv, pat, &args);
9667     va_end(args);
9668 }
9669
9670 /* pTHX_ magic can't cope with varargs, so this is a no-context
9671  * version of the main function, (which may itself be aliased to us).
9672  * Don't access this version directly.
9673  */
9674
9675 void
9676 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9677 {
9678     dTHX;
9679     va_list args;
9680
9681     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
9682
9683     va_start(args, pat);
9684     sv_vsetpvf_mg(sv, pat, &args);
9685     va_end(args);
9686 }
9687 #endif
9688
9689 /*
9690 =for apidoc sv_setpvf
9691
9692 Works like C<sv_catpvf> but copies the text into the SV instead of
9693 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
9694
9695 =cut
9696 */
9697
9698 void
9699 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
9700 {
9701     va_list args;
9702
9703     PERL_ARGS_ASSERT_SV_SETPVF;
9704
9705     va_start(args, pat);
9706     sv_vsetpvf(sv, pat, &args);
9707     va_end(args);
9708 }
9709
9710 /*
9711 =for apidoc sv_vsetpvf
9712
9713 Works like C<sv_vcatpvf> but copies the text into the SV instead of
9714 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
9715
9716 Usually used via its frontend C<sv_setpvf>.
9717
9718 =cut
9719 */
9720
9721 void
9722 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9723 {
9724     PERL_ARGS_ASSERT_SV_VSETPVF;
9725
9726     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9727 }
9728
9729 /*
9730 =for apidoc sv_setpvf_mg
9731
9732 Like C<sv_setpvf>, but also handles 'set' magic.
9733
9734 =cut
9735 */
9736
9737 void
9738 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9739 {
9740     va_list args;
9741
9742     PERL_ARGS_ASSERT_SV_SETPVF_MG;
9743
9744     va_start(args, pat);
9745     sv_vsetpvf_mg(sv, pat, &args);
9746     va_end(args);
9747 }
9748
9749 /*
9750 =for apidoc sv_vsetpvf_mg
9751
9752 Like C<sv_vsetpvf>, but also handles 'set' magic.
9753
9754 Usually used via its frontend C<sv_setpvf_mg>.
9755
9756 =cut
9757 */
9758
9759 void
9760 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9761 {
9762     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
9763
9764     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9765     SvSETMAGIC(sv);
9766 }
9767
9768 #if defined(PERL_IMPLICIT_CONTEXT)
9769
9770 /* pTHX_ magic can't cope with varargs, so this is a no-context
9771  * version of the main function, (which may itself be aliased to us).
9772  * Don't access this version directly.
9773  */
9774
9775 void
9776 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
9777 {
9778     dTHX;
9779     va_list args;
9780
9781     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
9782
9783     va_start(args, pat);
9784     sv_vcatpvf(sv, pat, &args);
9785     va_end(args);
9786 }
9787
9788 /* pTHX_ magic can't cope with varargs, so this is a no-context
9789  * version of the main function, (which may itself be aliased to us).
9790  * Don't access this version directly.
9791  */
9792
9793 void
9794 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9795 {
9796     dTHX;
9797     va_list args;
9798
9799     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
9800
9801     va_start(args, pat);
9802     sv_vcatpvf_mg(sv, pat, &args);
9803     va_end(args);
9804 }
9805 #endif
9806
9807 /*
9808 =for apidoc sv_catpvf
9809
9810 Processes its arguments like C<sprintf> and appends the formatted
9811 output to an SV.  If the appended data contains "wide" characters
9812 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
9813 and characters >255 formatted with %c), the original SV might get
9814 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
9815 C<sv_catpvf_mg>.  If the original SV was UTF-8, the pattern should be
9816 valid UTF-8; if the original SV was bytes, the pattern should be too.
9817
9818 =cut */
9819
9820 void
9821 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
9822 {
9823     va_list args;
9824
9825     PERL_ARGS_ASSERT_SV_CATPVF;
9826
9827     va_start(args, pat);
9828     sv_vcatpvf(sv, pat, &args);
9829     va_end(args);
9830 }
9831
9832 /*
9833 =for apidoc sv_vcatpvf
9834
9835 Processes its arguments like C<vsprintf> and appends the formatted output
9836 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
9837
9838 Usually used via its frontend C<sv_catpvf>.
9839
9840 =cut
9841 */
9842
9843 void
9844 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9845 {
9846     PERL_ARGS_ASSERT_SV_VCATPVF;
9847
9848     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9849 }
9850
9851 /*
9852 =for apidoc sv_catpvf_mg
9853
9854 Like C<sv_catpvf>, but also handles 'set' magic.
9855
9856 =cut
9857 */
9858
9859 void
9860 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9861 {
9862     va_list args;
9863
9864     PERL_ARGS_ASSERT_SV_CATPVF_MG;
9865
9866     va_start(args, pat);
9867     sv_vcatpvf_mg(sv, pat, &args);
9868     va_end(args);
9869 }
9870
9871 /*
9872 =for apidoc sv_vcatpvf_mg
9873
9874 Like C<sv_vcatpvf>, but also handles 'set' magic.
9875
9876 Usually used via its frontend C<sv_catpvf_mg>.
9877
9878 =cut
9879 */
9880
9881 void
9882 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9883 {
9884     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
9885
9886     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9887     SvSETMAGIC(sv);
9888 }
9889
9890 /*
9891 =for apidoc sv_vsetpvfn
9892
9893 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9894 appending it.
9895
9896 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9897
9898 =cut
9899 */
9900
9901 void
9902 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9903                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9904 {
9905     PERL_ARGS_ASSERT_SV_VSETPVFN;
9906
9907     sv_setpvs(sv, "");
9908     sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, maybe_tainted);
9909 }
9910
9911
9912 /*
9913  * Warn of missing argument to sprintf, and then return a defined value
9914  * to avoid inappropriate "use of uninit" warnings [perl #71000].
9915  */
9916 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
9917 STATIC SV*
9918 S_vcatpvfn_missing_argument(pTHX) {
9919     if (ckWARN(WARN_MISSING)) {
9920         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
9921                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
9922     }
9923     return &PL_sv_no;
9924 }
9925
9926
9927 STATIC I32
9928 S_expect_number(pTHX_ char **const pattern)
9929 {
9930     dVAR;
9931     I32 var = 0;
9932
9933     PERL_ARGS_ASSERT_EXPECT_NUMBER;
9934
9935     switch (**pattern) {
9936     case '1': case '2': case '3':
9937     case '4': case '5': case '6':
9938     case '7': case '8': case '9':
9939         var = *(*pattern)++ - '0';
9940         while (isDIGIT(**pattern)) {
9941             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
9942             if (tmp < var)
9943                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
9944             var = tmp;
9945         }
9946     }
9947     return var;
9948 }
9949
9950 STATIC char *
9951 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
9952 {
9953     const int neg = nv < 0;
9954     UV uv;
9955
9956     PERL_ARGS_ASSERT_F0CONVERT;
9957
9958     if (neg)
9959         nv = -nv;
9960     if (nv < UV_MAX) {
9961         char *p = endbuf;
9962         nv += 0.5;
9963         uv = (UV)nv;
9964         if (uv & 1 && uv == nv)
9965             uv--;                       /* Round to even */
9966         do {
9967             const unsigned dig = uv % 10;
9968             *--p = '0' + dig;
9969         } while (uv /= 10);
9970         if (neg)
9971             *--p = '-';
9972         *len = endbuf - p;
9973         return p;
9974     }
9975     return NULL;
9976 }
9977
9978
9979 /*
9980 =for apidoc sv_vcatpvfn
9981
9982 Processes its arguments like C<vsprintf> and appends the formatted output
9983 to an SV.  Uses an array of SVs if the C style variable argument list is
9984 missing (NULL).  When running with taint checks enabled, indicates via
9985 C<maybe_tainted> if results are untrustworthy (often due to the use of
9986 locales).
9987
9988 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
9989
9990 =cut
9991 */
9992
9993
9994 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
9995                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
9996                         vec_utf8 = DO_UTF8(vecsv);
9997
9998 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
9999
10000 void
10001 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10002                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10003 {
10004     dVAR;
10005     char *p;
10006     char *q;
10007     const char *patend;
10008     STRLEN origlen;
10009     I32 svix = 0;
10010     static const char nullstr[] = "(null)";
10011     SV *argsv = NULL;
10012     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
10013     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
10014     SV *nsv = NULL;
10015     /* Times 4: a decimal digit takes more than 3 binary digits.
10016      * NV_DIG: mantissa takes than many decimal digits.
10017      * Plus 32: Playing safe. */
10018     char ebuf[IV_DIG * 4 + NV_DIG + 32];
10019     /* large enough for "%#.#f" --chip */
10020     /* what about long double NVs? --jhi */
10021
10022     PERL_ARGS_ASSERT_SV_VCATPVFN;
10023     PERL_UNUSED_ARG(maybe_tainted);
10024
10025     /* no matter what, this is a string now */
10026     (void)SvPV_force(sv, origlen);
10027
10028     /* special-case "", "%s", and "%-p" (SVf - see below) */
10029     if (patlen == 0)
10030         return;
10031     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
10032         if (args) {
10033             const char * const s = va_arg(*args, char*);
10034             sv_catpv(sv, s ? s : nullstr);
10035         }
10036         else if (svix < svmax) {
10037             sv_catsv(sv, *svargs);
10038         }
10039         else
10040             S_vcatpvfn_missing_argument(aTHX);
10041         return;
10042     }
10043     if (args && patlen == 3 && pat[0] == '%' &&
10044                 pat[1] == '-' && pat[2] == 'p') {
10045         argsv = MUTABLE_SV(va_arg(*args, void*));
10046         sv_catsv(sv, argsv);
10047         return;
10048     }
10049
10050 #ifndef USE_LONG_DOUBLE
10051     /* special-case "%.<number>[gf]" */
10052     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
10053          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
10054         unsigned digits = 0;
10055         const char *pp;
10056
10057         pp = pat + 2;
10058         while (*pp >= '0' && *pp <= '9')
10059             digits = 10 * digits + (*pp++ - '0');
10060         if (pp - pat == (int)patlen - 1 && svix < svmax) {
10061             const NV nv = SvNV(*svargs);
10062             if (*pp == 'g') {
10063                 /* Add check for digits != 0 because it seems that some
10064                    gconverts are buggy in this case, and we don't yet have
10065                    a Configure test for this.  */
10066                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
10067                      /* 0, point, slack */
10068                     Gconvert(nv, (int)digits, 0, ebuf);
10069                     sv_catpv(sv, ebuf);
10070                     if (*ebuf)  /* May return an empty string for digits==0 */
10071                         return;
10072                 }
10073             } else if (!digits) {
10074                 STRLEN l;
10075
10076                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
10077                     sv_catpvn(sv, p, l);
10078                     return;
10079                 }
10080             }
10081         }
10082     }
10083 #endif /* !USE_LONG_DOUBLE */
10084
10085     if (!args && svix < svmax && DO_UTF8(*svargs))
10086         has_utf8 = TRUE;
10087
10088     patend = (char*)pat + patlen;
10089     for (p = (char*)pat; p < patend; p = q) {
10090         bool alt = FALSE;
10091         bool left = FALSE;
10092         bool vectorize = FALSE;
10093         bool vectorarg = FALSE;
10094         bool vec_utf8 = FALSE;
10095         char fill = ' ';
10096         char plus = 0;
10097         char intsize = 0;
10098         STRLEN width = 0;
10099         STRLEN zeros = 0;
10100         bool has_precis = FALSE;
10101         STRLEN precis = 0;
10102         const I32 osvix = svix;
10103         bool is_utf8 = FALSE;  /* is this item utf8?   */
10104 #ifdef HAS_LDBL_SPRINTF_BUG
10105         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10106            with sfio - Allen <allens@cpan.org> */
10107         bool fix_ldbl_sprintf_bug = FALSE;
10108 #endif
10109
10110         char esignbuf[4];
10111         U8 utf8buf[UTF8_MAXBYTES+1];
10112         STRLEN esignlen = 0;
10113
10114         const char *eptr = NULL;
10115         const char *fmtstart;
10116         STRLEN elen = 0;
10117         SV *vecsv = NULL;
10118         const U8 *vecstr = NULL;
10119         STRLEN veclen = 0;
10120         char c = 0;
10121         int i;
10122         unsigned base = 0;
10123         IV iv = 0;
10124         UV uv = 0;
10125         /* we need a long double target in case HAS_LONG_DOUBLE but
10126            not USE_LONG_DOUBLE
10127         */
10128 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
10129         long double nv;
10130 #else
10131         NV nv;
10132 #endif
10133         STRLEN have;
10134         STRLEN need;
10135         STRLEN gap;
10136         const char *dotstr = ".";
10137         STRLEN dotstrlen = 1;
10138         I32 efix = 0; /* explicit format parameter index */
10139         I32 ewix = 0; /* explicit width index */
10140         I32 epix = 0; /* explicit precision index */
10141         I32 evix = 0; /* explicit vector index */
10142         bool asterisk = FALSE;
10143
10144         /* echo everything up to the next format specification */
10145         for (q = p; q < patend && *q != '%'; ++q) ;
10146         if (q > p) {
10147             if (has_utf8 && !pat_utf8)
10148                 sv_catpvn_utf8_upgrade(sv, p, q - p, nsv);
10149             else
10150                 sv_catpvn(sv, p, q - p);
10151             p = q;
10152         }
10153         if (q++ >= patend)
10154             break;
10155
10156         fmtstart = q;
10157
10158 /*
10159     We allow format specification elements in this order:
10160         \d+\$              explicit format parameter index
10161         [-+ 0#]+           flags
10162         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
10163         0                  flag (as above): repeated to allow "v02"     
10164         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
10165         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
10166         [hlqLV]            size
10167     [%bcdefginopsuxDFOUX] format (mandatory)
10168 */
10169
10170         if (args) {
10171 /*  
10172         As of perl5.9.3, printf format checking is on by default.
10173         Internally, perl uses %p formats to provide an escape to
10174         some extended formatting.  This block deals with those
10175         extensions: if it does not match, (char*)q is reset and
10176         the normal format processing code is used.
10177
10178         Currently defined extensions are:
10179                 %p              include pointer address (standard)      
10180                 %-p     (SVf)   include an SV (previously %_)
10181                 %-<num>p        include an SV with precision <num>      
10182                 %2p             include a HEK
10183                 %3p             include a HEK with precision of 256
10184                 %<num>p         (where num != 2 or 3) reserved for future
10185                                 extensions
10186
10187         Robin Barker 2005-07-14 (but modified since)
10188
10189                 %1p     (VDf)   removed.  RMB 2007-10-19
10190 */
10191             char* r = q; 
10192             bool sv = FALSE;    
10193             STRLEN n = 0;
10194             if (*q == '-')
10195                 sv = *q++;
10196             n = expect_number(&q);
10197             if (*q++ == 'p') {
10198                 if (sv) {                       /* SVf */
10199                     if (n) {
10200                         precis = n;
10201                         has_precis = TRUE;
10202                     }
10203                     argsv = MUTABLE_SV(va_arg(*args, void*));
10204                     eptr = SvPV_const(argsv, elen);
10205                     if (DO_UTF8(argsv))
10206                         is_utf8 = TRUE;
10207                     goto string;
10208                 }
10209                 else if (n==2 || n==3) {        /* HEKf */
10210                     HEK * const hek = va_arg(*args, HEK *);
10211                     eptr = HEK_KEY(hek);
10212                     elen = HEK_LEN(hek);
10213                     if (HEK_UTF8(hek)) is_utf8 = TRUE;
10214                     if (n==3) precis = 256, has_precis = TRUE;
10215                     goto string;
10216                 }
10217                 else if (n) {
10218                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
10219                                      "internal %%<num>p might conflict with future printf extensions");
10220                 }
10221             }
10222             q = r; 
10223         }
10224
10225         if ( (width = expect_number(&q)) ) {
10226             if (*q == '$') {
10227                 ++q;
10228                 efix = width;
10229             } else {
10230                 goto gotwidth;
10231             }
10232         }
10233
10234         /* FLAGS */
10235
10236         while (*q) {
10237             switch (*q) {
10238             case ' ':
10239             case '+':
10240                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
10241                     q++;
10242                 else
10243                     plus = *q++;
10244                 continue;
10245
10246             case '-':
10247                 left = TRUE;
10248                 q++;
10249                 continue;
10250
10251             case '0':
10252                 fill = *q++;
10253                 continue;
10254
10255             case '#':
10256                 alt = TRUE;
10257                 q++;
10258                 continue;
10259
10260             default:
10261                 break;
10262             }
10263             break;
10264         }
10265
10266       tryasterisk:
10267         if (*q == '*') {
10268             q++;
10269             if ( (ewix = expect_number(&q)) )
10270                 if (*q++ != '$')
10271                     goto unknown;
10272             asterisk = TRUE;
10273         }
10274         if (*q == 'v') {
10275             q++;
10276             if (vectorize)
10277                 goto unknown;
10278             if ((vectorarg = asterisk)) {
10279                 evix = ewix;
10280                 ewix = 0;
10281                 asterisk = FALSE;
10282             }
10283             vectorize = TRUE;
10284             goto tryasterisk;
10285         }
10286
10287         if (!asterisk)
10288         {
10289             if( *q == '0' )
10290                 fill = *q++;
10291             width = expect_number(&q);
10292         }
10293
10294         if (vectorize && vectorarg) {
10295             /* vectorizing, but not with the default "." */
10296             if (args)
10297                 vecsv = va_arg(*args, SV*);
10298             else if (evix) {
10299                 vecsv = (evix > 0 && evix <= svmax)
10300                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
10301             } else {
10302                 vecsv = svix < svmax
10303                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10304             }
10305             dotstr = SvPV_const(vecsv, dotstrlen);
10306             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
10307                bad with tied or overloaded values that return UTF8.  */
10308             if (DO_UTF8(vecsv))
10309                 is_utf8 = TRUE;
10310             else if (has_utf8) {
10311                 vecsv = sv_mortalcopy(vecsv);
10312                 sv_utf8_upgrade(vecsv);
10313                 dotstr = SvPV_const(vecsv, dotstrlen);
10314                 is_utf8 = TRUE;
10315             }               
10316         }
10317
10318         if (asterisk) {
10319             if (args)
10320                 i = va_arg(*args, int);
10321             else
10322                 i = (ewix ? ewix <= svmax : svix < svmax) ?
10323                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10324             left |= (i < 0);
10325             width = (i < 0) ? -i : i;
10326         }
10327       gotwidth:
10328
10329         /* PRECISION */
10330
10331         if (*q == '.') {
10332             q++;
10333             if (*q == '*') {
10334                 q++;
10335                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
10336                     goto unknown;
10337                 /* XXX: todo, support specified precision parameter */
10338                 if (epix)
10339                     goto unknown;
10340                 if (args)
10341                     i = va_arg(*args, int);
10342                 else
10343                     i = (ewix ? ewix <= svmax : svix < svmax)
10344                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10345                 precis = i;
10346                 has_precis = !(i < 0);
10347             }
10348             else {
10349                 precis = 0;
10350                 while (isDIGIT(*q))
10351                     precis = precis * 10 + (*q++ - '0');
10352                 has_precis = TRUE;
10353             }
10354         }
10355
10356         if (vectorize) {
10357             if (args) {
10358                 VECTORIZE_ARGS
10359             }
10360             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
10361                 vecsv = svargs[efix ? efix-1 : svix++];
10362                 vecstr = (U8*)SvPV_const(vecsv,veclen);
10363                 vec_utf8 = DO_UTF8(vecsv);
10364
10365                 /* if this is a version object, we need to convert
10366                  * back into v-string notation and then let the
10367                  * vectorize happen normally
10368                  */
10369                 if (sv_isobject(vecsv) && sv_derived_from(vecsv, "version")) {
10370                     char *version = savesvpv(vecsv);
10371                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
10372                         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
10373                         "vector argument not supported with alpha versions");
10374                         goto unknown;
10375                     }
10376                     vecsv = sv_newmortal();
10377                     scan_vstring(version, version + veclen, vecsv);
10378                     vecstr = (U8*)SvPV_const(vecsv, veclen);
10379                     vec_utf8 = DO_UTF8(vecsv);
10380                     Safefree(version);
10381                 }
10382             }
10383             else {
10384                 vecstr = (U8*)"";
10385                 veclen = 0;
10386             }
10387         }
10388
10389         /* SIZE */
10390
10391         switch (*q) {
10392 #ifdef WIN32
10393         case 'I':                       /* Ix, I32x, and I64x */
10394 #  ifdef WIN64
10395             if (q[1] == '6' && q[2] == '4') {
10396                 q += 3;
10397                 intsize = 'q';
10398                 break;
10399             }
10400 #  endif
10401             if (q[1] == '3' && q[2] == '2') {
10402                 q += 3;
10403                 break;
10404             }
10405 #  ifdef WIN64
10406             intsize = 'q';
10407 #  endif
10408             q++;
10409             break;
10410 #endif
10411 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10412         case 'L':                       /* Ld */
10413             /*FALLTHROUGH*/
10414 #ifdef HAS_QUAD
10415         case 'q':                       /* qd */
10416 #endif
10417             intsize = 'q';
10418             q++;
10419             break;
10420 #endif
10421         case 'l':
10422             ++q;
10423 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10424             if (*q == 'l') {    /* lld, llf */
10425                 intsize = 'q';
10426                 ++q;
10427             }
10428             else
10429 #endif
10430                 intsize = 'l';
10431             break;
10432         case 'h':
10433             if (*++q == 'h') {  /* hhd, hhu */
10434                 intsize = 'c';
10435                 ++q;
10436             }
10437             else
10438                 intsize = 'h';
10439             break;
10440         case 'V':
10441         case 'z':
10442         case 't':
10443 #if HAS_C99
10444         case 'j':
10445 #endif
10446             intsize = *q++;
10447             break;
10448         }
10449
10450         /* CONVERSION */
10451
10452         if (*q == '%') {
10453             eptr = q++;
10454             elen = 1;
10455             if (vectorize) {
10456                 c = '%';
10457                 goto unknown;
10458             }
10459             goto string;
10460         }
10461
10462         if (!vectorize && !args) {
10463             if (efix) {
10464                 const I32 i = efix-1;
10465                 argsv = (i >= 0 && i < svmax)
10466                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
10467             } else {
10468                 argsv = (svix >= 0 && svix < svmax)
10469                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10470             }
10471         }
10472
10473         switch (c = *q++) {
10474
10475             /* STRINGS */
10476
10477         case 'c':
10478             if (vectorize)
10479                 goto unknown;
10480             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
10481             if ((uv > 255 ||
10482                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
10483                 && !IN_BYTES) {
10484                 eptr = (char*)utf8buf;
10485                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
10486                 is_utf8 = TRUE;
10487             }
10488             else {
10489                 c = (char)uv;
10490                 eptr = &c;
10491                 elen = 1;
10492             }
10493             goto string;
10494
10495         case 's':
10496             if (vectorize)
10497                 goto unknown;
10498             if (args) {
10499                 eptr = va_arg(*args, char*);
10500                 if (eptr)
10501                     elen = strlen(eptr);
10502                 else {
10503                     eptr = (char *)nullstr;
10504                     elen = sizeof nullstr - 1;
10505                 }
10506             }
10507             else {
10508                 eptr = SvPV_const(argsv, elen);
10509                 if (DO_UTF8(argsv)) {
10510                     STRLEN old_precis = precis;
10511                     if (has_precis && precis < elen) {
10512                         STRLEN ulen = sv_len_utf8(argsv);
10513                         I32 p = precis > ulen ? ulen : precis;
10514                         sv_pos_u2b(argsv, &p, 0); /* sticks at end */
10515                         precis = p;
10516                     }
10517                     if (width) { /* fudge width (can't fudge elen) */
10518                         if (has_precis && precis < elen)
10519                             width += precis - old_precis;
10520                         else
10521                             width += elen - sv_len_utf8(argsv);
10522                     }
10523                     is_utf8 = TRUE;
10524                 }
10525             }
10526
10527         string:
10528             if (has_precis && precis < elen)
10529                 elen = precis;
10530             break;
10531
10532             /* INTEGERS */
10533
10534         case 'p':
10535             if (alt || vectorize)
10536                 goto unknown;
10537             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
10538             base = 16;
10539             goto integer;
10540
10541         case 'D':
10542 #ifdef IV_IS_QUAD
10543             intsize = 'q';
10544 #else
10545             intsize = 'l';
10546 #endif
10547             /*FALLTHROUGH*/
10548         case 'd':
10549         case 'i':
10550 #if vdNUMBER
10551         format_vd:
10552 #endif
10553             if (vectorize) {
10554                 STRLEN ulen;
10555                 if (!veclen)
10556                     continue;
10557                 if (vec_utf8)
10558                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10559                                         UTF8_ALLOW_ANYUV);
10560                 else {
10561                     uv = *vecstr;
10562                     ulen = 1;
10563                 }
10564                 vecstr += ulen;
10565                 veclen -= ulen;
10566                 if (plus)
10567                      esignbuf[esignlen++] = plus;
10568             }
10569             else if (args) {
10570                 switch (intsize) {
10571                 case 'c':       iv = (char)va_arg(*args, int); break;
10572                 case 'h':       iv = (short)va_arg(*args, int); break;
10573                 case 'l':       iv = va_arg(*args, long); break;
10574                 case 'V':       iv = va_arg(*args, IV); break;
10575                 case 'z':       iv = va_arg(*args, SSize_t); break;
10576                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
10577                 default:        iv = va_arg(*args, int); break;
10578 #if HAS_C99
10579                 case 'j':       iv = va_arg(*args, intmax_t); break;
10580 #endif
10581                 case 'q':
10582 #ifdef HAS_QUAD
10583                                 iv = va_arg(*args, Quad_t); break;
10584 #else
10585                                 goto unknown;
10586 #endif
10587                 }
10588             }
10589             else {
10590                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
10591                 switch (intsize) {
10592                 case 'c':       iv = (char)tiv; break;
10593                 case 'h':       iv = (short)tiv; break;
10594                 case 'l':       iv = (long)tiv; break;
10595                 case 'V':
10596                 default:        iv = tiv; break;
10597                 case 'q':
10598 #ifdef HAS_QUAD
10599                                 iv = (Quad_t)tiv; break;
10600 #else
10601                                 goto unknown;
10602 #endif
10603                 }
10604             }
10605             if ( !vectorize )   /* we already set uv above */
10606             {
10607                 if (iv >= 0) {
10608                     uv = iv;
10609                     if (plus)
10610                         esignbuf[esignlen++] = plus;
10611                 }
10612                 else {
10613                     uv = -iv;
10614                     esignbuf[esignlen++] = '-';
10615                 }
10616             }
10617             base = 10;
10618             goto integer;
10619
10620         case 'U':
10621 #ifdef IV_IS_QUAD
10622             intsize = 'q';
10623 #else
10624             intsize = 'l';
10625 #endif
10626             /*FALLTHROUGH*/
10627         case 'u':
10628             base = 10;
10629             goto uns_integer;
10630
10631         case 'B':
10632         case 'b':
10633             base = 2;
10634             goto uns_integer;
10635
10636         case 'O':
10637 #ifdef IV_IS_QUAD
10638             intsize = 'q';
10639 #else
10640             intsize = 'l';
10641 #endif
10642             /*FALLTHROUGH*/
10643         case 'o':
10644             base = 8;
10645             goto uns_integer;
10646
10647         case 'X':
10648         case 'x':
10649             base = 16;
10650
10651         uns_integer:
10652             if (vectorize) {
10653                 STRLEN ulen;
10654         vector:
10655                 if (!veclen)
10656                     continue;
10657                 if (vec_utf8)
10658                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10659                                         UTF8_ALLOW_ANYUV);
10660                 else {
10661                     uv = *vecstr;
10662                     ulen = 1;
10663                 }
10664                 vecstr += ulen;
10665                 veclen -= ulen;
10666             }
10667             else if (args) {
10668                 switch (intsize) {
10669                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
10670                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
10671                 case 'l':  uv = va_arg(*args, unsigned long); break;
10672                 case 'V':  uv = va_arg(*args, UV); break;
10673                 case 'z':  uv = va_arg(*args, Size_t); break;
10674                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
10675 #if HAS_C99
10676                 case 'j':  uv = va_arg(*args, uintmax_t); break;
10677 #endif
10678                 default:   uv = va_arg(*args, unsigned); break;
10679                 case 'q':
10680 #ifdef HAS_QUAD
10681                            uv = va_arg(*args, Uquad_t); break;
10682 #else
10683                            goto unknown;
10684 #endif
10685                 }
10686             }
10687             else {
10688                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
10689                 switch (intsize) {
10690                 case 'c':       uv = (unsigned char)tuv; break;
10691                 case 'h':       uv = (unsigned short)tuv; break;
10692                 case 'l':       uv = (unsigned long)tuv; break;
10693                 case 'V':
10694                 default:        uv = tuv; break;
10695                 case 'q':
10696 #ifdef HAS_QUAD
10697                                 uv = (Uquad_t)tuv; break;
10698 #else
10699                                 goto unknown;
10700 #endif
10701                 }
10702             }
10703
10704         integer:
10705             {
10706                 char *ptr = ebuf + sizeof ebuf;
10707                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
10708                 zeros = 0;
10709
10710                 switch (base) {
10711                     unsigned dig;
10712                 case 16:
10713                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
10714                     do {
10715                         dig = uv & 15;
10716                         *--ptr = p[dig];
10717                     } while (uv >>= 4);
10718                     if (tempalt) {
10719                         esignbuf[esignlen++] = '0';
10720                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
10721                     }
10722                     break;
10723                 case 8:
10724                     do {
10725                         dig = uv & 7;
10726                         *--ptr = '0' + dig;
10727                     } while (uv >>= 3);
10728                     if (alt && *ptr != '0')
10729                         *--ptr = '0';
10730                     break;
10731                 case 2:
10732                     do {
10733                         dig = uv & 1;
10734                         *--ptr = '0' + dig;
10735                     } while (uv >>= 1);
10736                     if (tempalt) {
10737                         esignbuf[esignlen++] = '0';
10738                         esignbuf[esignlen++] = c;
10739                     }
10740                     break;
10741                 default:                /* it had better be ten or less */
10742                     do {
10743                         dig = uv % base;
10744                         *--ptr = '0' + dig;
10745                     } while (uv /= base);
10746                     break;
10747                 }
10748                 elen = (ebuf + sizeof ebuf) - ptr;
10749                 eptr = ptr;
10750                 if (has_precis) {
10751                     if (precis > elen)
10752                         zeros = precis - elen;
10753                     else if (precis == 0 && elen == 1 && *eptr == '0'
10754                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
10755                         elen = 0;
10756
10757                 /* a precision nullifies the 0 flag. */
10758                     if (fill == '0')
10759                         fill = ' ';
10760                 }
10761             }
10762             break;
10763
10764             /* FLOATING POINT */
10765
10766         case 'F':
10767             c = 'f';            /* maybe %F isn't supported here */
10768             /*FALLTHROUGH*/
10769         case 'e': case 'E':
10770         case 'f':
10771         case 'g': case 'G':
10772             if (vectorize)
10773                 goto unknown;
10774
10775             /* This is evil, but floating point is even more evil */
10776
10777             /* for SV-style calling, we can only get NV
10778                for C-style calling, we assume %f is double;
10779                for simplicity we allow any of %Lf, %llf, %qf for long double
10780             */
10781             switch (intsize) {
10782             case 'V':
10783 #if defined(USE_LONG_DOUBLE)
10784                 intsize = 'q';
10785 #endif
10786                 break;
10787 /* [perl #20339] - we should accept and ignore %lf rather than die */
10788             case 'l':
10789                 /*FALLTHROUGH*/
10790             default:
10791 #if defined(USE_LONG_DOUBLE)
10792                 intsize = args ? 0 : 'q';
10793 #endif
10794                 break;
10795             case 'q':
10796 #if defined(HAS_LONG_DOUBLE)
10797                 break;
10798 #else
10799                 /*FALLTHROUGH*/
10800 #endif
10801             case 'c':
10802             case 'h':
10803             case 'z':
10804             case 't':
10805             case 'j':
10806                 goto unknown;
10807             }
10808
10809             /* now we need (long double) if intsize == 'q', else (double) */
10810             nv = (args) ?
10811 #if LONG_DOUBLESIZE > DOUBLESIZE
10812                 intsize == 'q' ?
10813                     va_arg(*args, long double) :
10814                     va_arg(*args, double)
10815 #else
10816                     va_arg(*args, double)
10817 #endif
10818                 : SvNV(argsv);
10819
10820             need = 0;
10821             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
10822                else. frexp() has some unspecified behaviour for those three */
10823             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
10824                 i = PERL_INT_MIN;
10825                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
10826                    will cast our (long double) to (double) */
10827                 (void)Perl_frexp(nv, &i);
10828                 if (i == PERL_INT_MIN)
10829                     Perl_die(aTHX_ "panic: frexp");
10830                 if (i > 0)
10831                     need = BIT_DIGITS(i);
10832             }
10833             need += has_precis ? precis : 6; /* known default */
10834
10835             if (need < width)
10836                 need = width;
10837
10838 #ifdef HAS_LDBL_SPRINTF_BUG
10839             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10840                with sfio - Allen <allens@cpan.org> */
10841
10842 #  ifdef DBL_MAX
10843 #    define MY_DBL_MAX DBL_MAX
10844 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
10845 #    if DOUBLESIZE >= 8
10846 #      define MY_DBL_MAX 1.7976931348623157E+308L
10847 #    else
10848 #      define MY_DBL_MAX 3.40282347E+38L
10849 #    endif
10850 #  endif
10851
10852 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
10853 #    define MY_DBL_MAX_BUG 1L
10854 #  else
10855 #    define MY_DBL_MAX_BUG MY_DBL_MAX
10856 #  endif
10857
10858 #  ifdef DBL_MIN
10859 #    define MY_DBL_MIN DBL_MIN
10860 #  else  /* XXX guessing! -Allen */
10861 #    if DOUBLESIZE >= 8
10862 #      define MY_DBL_MIN 2.2250738585072014E-308L
10863 #    else
10864 #      define MY_DBL_MIN 1.17549435E-38L
10865 #    endif
10866 #  endif
10867
10868             if ((intsize == 'q') && (c == 'f') &&
10869                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
10870                 (need < DBL_DIG)) {
10871                 /* it's going to be short enough that
10872                  * long double precision is not needed */
10873
10874                 if ((nv <= 0L) && (nv >= -0L))
10875                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
10876                 else {
10877                     /* would use Perl_fp_class as a double-check but not
10878                      * functional on IRIX - see perl.h comments */
10879
10880                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
10881                         /* It's within the range that a double can represent */
10882 #if defined(DBL_MAX) && !defined(DBL_MIN)
10883                         if ((nv >= ((long double)1/DBL_MAX)) ||
10884                             (nv <= (-(long double)1/DBL_MAX)))
10885 #endif
10886                         fix_ldbl_sprintf_bug = TRUE;
10887                     }
10888                 }
10889                 if (fix_ldbl_sprintf_bug == TRUE) {
10890                     double temp;
10891
10892                     intsize = 0;
10893                     temp = (double)nv;
10894                     nv = (NV)temp;
10895                 }
10896             }
10897
10898 #  undef MY_DBL_MAX
10899 #  undef MY_DBL_MAX_BUG
10900 #  undef MY_DBL_MIN
10901
10902 #endif /* HAS_LDBL_SPRINTF_BUG */
10903
10904             need += 20; /* fudge factor */
10905             if (PL_efloatsize < need) {
10906                 Safefree(PL_efloatbuf);
10907                 PL_efloatsize = need + 20; /* more fudge */
10908                 Newx(PL_efloatbuf, PL_efloatsize, char);
10909                 PL_efloatbuf[0] = '\0';
10910             }
10911
10912             if ( !(width || left || plus || alt) && fill != '0'
10913                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
10914                 /* See earlier comment about buggy Gconvert when digits,
10915                    aka precis is 0  */
10916                 if ( c == 'g' && precis) {
10917                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
10918                     /* May return an empty string for digits==0 */
10919                     if (*PL_efloatbuf) {
10920                         elen = strlen(PL_efloatbuf);
10921                         goto float_converted;
10922                     }
10923                 } else if ( c == 'f' && !precis) {
10924                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
10925                         break;
10926                 }
10927             }
10928             {
10929                 char *ptr = ebuf + sizeof ebuf;
10930                 *--ptr = '\0';
10931                 *--ptr = c;
10932                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
10933 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
10934                 if (intsize == 'q') {
10935                     /* Copy the one or more characters in a long double
10936                      * format before the 'base' ([efgEFG]) character to
10937                      * the format string. */
10938                     static char const prifldbl[] = PERL_PRIfldbl;
10939                     char const *p = prifldbl + sizeof(prifldbl) - 3;
10940                     while (p >= prifldbl) { *--ptr = *p--; }
10941                 }
10942 #endif
10943                 if (has_precis) {
10944                     base = precis;
10945                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10946                     *--ptr = '.';
10947                 }
10948                 if (width) {
10949                     base = width;
10950                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
10951                 }
10952                 if (fill == '0')
10953                     *--ptr = fill;
10954                 if (left)
10955                     *--ptr = '-';
10956                 if (plus)
10957                     *--ptr = plus;
10958                 if (alt)
10959                     *--ptr = '#';
10960                 *--ptr = '%';
10961
10962                 /* No taint.  Otherwise we are in the strange situation
10963                  * where printf() taints but print($float) doesn't.
10964                  * --jhi */
10965 #if defined(HAS_LONG_DOUBLE)
10966                 elen = ((intsize == 'q')
10967                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
10968                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
10969 #else
10970                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
10971 #endif
10972             }
10973         float_converted:
10974             eptr = PL_efloatbuf;
10975             break;
10976
10977             /* SPECIAL */
10978
10979         case 'n':
10980             if (vectorize)
10981                 goto unknown;
10982             i = SvCUR(sv) - origlen;
10983             if (args) {
10984                 switch (intsize) {
10985                 case 'c':       *(va_arg(*args, char*)) = i; break;
10986                 case 'h':       *(va_arg(*args, short*)) = i; break;
10987                 default:        *(va_arg(*args, int*)) = i; break;
10988                 case 'l':       *(va_arg(*args, long*)) = i; break;
10989                 case 'V':       *(va_arg(*args, IV*)) = i; break;
10990                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
10991                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
10992 #if HAS_C99
10993                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
10994 #endif
10995                 case 'q':
10996 #ifdef HAS_QUAD
10997                                 *(va_arg(*args, Quad_t*)) = i; break;
10998 #else
10999                                 goto unknown;
11000 #endif
11001                 }
11002             }
11003             else
11004                 sv_setuv_mg(argsv, (UV)i);
11005             continue;   /* not "break" */
11006
11007             /* UNKNOWN */
11008
11009         default:
11010       unknown:
11011             if (!args
11012                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
11013                 && ckWARN(WARN_PRINTF))
11014             {
11015                 SV * const msg = sv_newmortal();
11016                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
11017                           (PL_op->op_type == OP_PRTF) ? "" : "s");
11018                 if (fmtstart < patend) {
11019                     const char * const fmtend = q < patend ? q : patend;
11020                     const char * f;
11021                     sv_catpvs(msg, "\"%");
11022                     for (f = fmtstart; f < fmtend; f++) {
11023                         if (isPRINT(*f)) {
11024                             sv_catpvn(msg, f, 1);
11025                         } else {
11026                             Perl_sv_catpvf(aTHX_ msg,
11027                                            "\\%03"UVof, (UV)*f & 0xFF);
11028                         }
11029                     }
11030                     sv_catpvs(msg, "\"");
11031                 } else {
11032                     sv_catpvs(msg, "end of string");
11033                 }
11034                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
11035             }
11036
11037             /* output mangled stuff ... */
11038             if (c == '\0')
11039                 --q;
11040             eptr = p;
11041             elen = q - p;
11042
11043             /* ... right here, because formatting flags should not apply */
11044             SvGROW(sv, SvCUR(sv) + elen + 1);
11045             p = SvEND(sv);
11046             Copy(eptr, p, elen, char);
11047             p += elen;
11048             *p = '\0';
11049             SvCUR_set(sv, p - SvPVX_const(sv));
11050             svix = osvix;
11051             continue;   /* not "break" */
11052         }
11053
11054         if (is_utf8 != has_utf8) {
11055             if (is_utf8) {
11056                 if (SvCUR(sv))
11057                     sv_utf8_upgrade(sv);
11058             }
11059             else {
11060                 const STRLEN old_elen = elen;
11061                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
11062                 sv_utf8_upgrade(nsv);
11063                 eptr = SvPVX_const(nsv);
11064                 elen = SvCUR(nsv);
11065
11066                 if (width) { /* fudge width (can't fudge elen) */
11067                     width += elen - old_elen;
11068                 }
11069                 is_utf8 = TRUE;
11070             }
11071         }
11072
11073         have = esignlen + zeros + elen;
11074         if (have < zeros)
11075             Perl_croak_nocontext("%s", PL_memory_wrap);
11076
11077         need = (have > width ? have : width);
11078         gap = need - have;
11079
11080         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
11081             Perl_croak_nocontext("%s", PL_memory_wrap);
11082         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
11083         p = SvEND(sv);
11084         if (esignlen && fill == '0') {
11085             int i;
11086             for (i = 0; i < (int)esignlen; i++)
11087                 *p++ = esignbuf[i];
11088         }
11089         if (gap && !left) {
11090             memset(p, fill, gap);
11091             p += gap;
11092         }
11093         if (esignlen && fill != '0') {
11094             int i;
11095             for (i = 0; i < (int)esignlen; i++)
11096                 *p++ = esignbuf[i];
11097         }
11098         if (zeros) {
11099             int i;
11100             for (i = zeros; i; i--)
11101                 *p++ = '0';
11102         }
11103         if (elen) {
11104             Copy(eptr, p, elen, char);
11105             p += elen;
11106         }
11107         if (gap && left) {
11108             memset(p, ' ', gap);
11109             p += gap;
11110         }
11111         if (vectorize) {
11112             if (veclen) {
11113                 Copy(dotstr, p, dotstrlen, char);
11114                 p += dotstrlen;
11115             }
11116             else
11117                 vectorize = FALSE;              /* done iterating over vecstr */
11118         }
11119         if (is_utf8)
11120             has_utf8 = TRUE;
11121         if (has_utf8)
11122             SvUTF8_on(sv);
11123         *p = '\0';
11124         SvCUR_set(sv, p - SvPVX_const(sv));
11125         if (vectorize) {
11126             esignlen = 0;
11127             goto vector;
11128         }
11129     }
11130     SvTAINT(sv);
11131 }
11132
11133 /* =========================================================================
11134
11135 =head1 Cloning an interpreter
11136
11137 All the macros and functions in this section are for the private use of
11138 the main function, perl_clone().
11139
11140 The foo_dup() functions make an exact copy of an existing foo thingy.
11141 During the course of a cloning, a hash table is used to map old addresses
11142 to new addresses.  The table is created and manipulated with the
11143 ptr_table_* functions.
11144
11145 =cut
11146
11147  * =========================================================================*/
11148
11149
11150 #if defined(USE_ITHREADS)
11151
11152 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
11153 #ifndef GpREFCNT_inc
11154 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
11155 #endif
11156
11157
11158 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
11159    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
11160    If this changes, please unmerge ss_dup.
11161    Likewise, sv_dup_inc_multiple() relies on this fact.  */
11162 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
11163 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
11164 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
11165 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
11166 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
11167 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
11168 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
11169 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
11170 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
11171 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
11172 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
11173 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
11174 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
11175
11176 /* clone a parser */
11177
11178 yy_parser *
11179 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
11180 {
11181     yy_parser *parser;
11182
11183     PERL_ARGS_ASSERT_PARSER_DUP;
11184
11185     if (!proto)
11186         return NULL;
11187
11188     /* look for it in the table first */
11189     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
11190     if (parser)
11191         return parser;
11192
11193     /* create anew and remember what it is */
11194     Newxz(parser, 1, yy_parser);
11195     ptr_table_store(PL_ptr_table, proto, parser);
11196
11197     /* XXX these not yet duped */
11198     parser->old_parser = NULL;
11199     parser->stack = NULL;
11200     parser->ps = NULL;
11201     parser->stack_size = 0;
11202     /* XXX parser->stack->state = 0; */
11203
11204     /* XXX eventually, just Copy() most of the parser struct ? */
11205
11206     parser->lex_brackets = proto->lex_brackets;
11207     parser->lex_casemods = proto->lex_casemods;
11208     parser->lex_brackstack = savepvn(proto->lex_brackstack,
11209                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
11210     parser->lex_casestack = savepvn(proto->lex_casestack,
11211                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
11212     parser->lex_defer   = proto->lex_defer;
11213     parser->lex_dojoin  = proto->lex_dojoin;
11214     parser->lex_expect  = proto->lex_expect;
11215     parser->lex_formbrack = proto->lex_formbrack;
11216     parser->lex_inpat   = proto->lex_inpat;
11217     parser->lex_inwhat  = proto->lex_inwhat;
11218     parser->lex_op      = proto->lex_op;
11219     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
11220     parser->lex_starts  = proto->lex_starts;
11221     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
11222     parser->multi_close = proto->multi_close;
11223     parser->multi_open  = proto->multi_open;
11224     parser->multi_start = proto->multi_start;
11225     parser->multi_end   = proto->multi_end;
11226     parser->pending_ident = proto->pending_ident;
11227     parser->preambled   = proto->preambled;
11228     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
11229     parser->linestr     = sv_dup_inc(proto->linestr, param);
11230     parser->expect      = proto->expect;
11231     parser->copline     = proto->copline;
11232     parser->last_lop_op = proto->last_lop_op;
11233     parser->lex_state   = proto->lex_state;
11234     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
11235     /* rsfp_filters entries have fake IoDIRP() */
11236     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
11237     parser->in_my       = proto->in_my;
11238     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
11239     parser->error_count = proto->error_count;
11240
11241
11242     parser->linestr     = sv_dup_inc(proto->linestr, param);
11243
11244     {
11245         char * const ols = SvPVX(proto->linestr);
11246         char * const ls  = SvPVX(parser->linestr);
11247
11248         parser->bufptr      = ls + (proto->bufptr >= ols ?
11249                                     proto->bufptr -  ols : 0);
11250         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
11251                                     proto->oldbufptr -  ols : 0);
11252         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
11253                                     proto->oldoldbufptr -  ols : 0);
11254         parser->linestart   = ls + (proto->linestart >= ols ?
11255                                     proto->linestart -  ols : 0);
11256         parser->last_uni    = ls + (proto->last_uni >= ols ?
11257                                     proto->last_uni -  ols : 0);
11258         parser->last_lop    = ls + (proto->last_lop >= ols ?
11259                                     proto->last_lop -  ols : 0);
11260
11261         parser->bufend      = ls + SvCUR(parser->linestr);
11262     }
11263
11264     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
11265
11266
11267 #ifdef PERL_MAD
11268     parser->endwhite    = proto->endwhite;
11269     parser->faketokens  = proto->faketokens;
11270     parser->lasttoke    = proto->lasttoke;
11271     parser->nextwhite   = proto->nextwhite;
11272     parser->realtokenstart = proto->realtokenstart;
11273     parser->skipwhite   = proto->skipwhite;
11274     parser->thisclose   = proto->thisclose;
11275     parser->thismad     = proto->thismad;
11276     parser->thisopen    = proto->thisopen;
11277     parser->thisstuff   = proto->thisstuff;
11278     parser->thistoken   = proto->thistoken;
11279     parser->thiswhite   = proto->thiswhite;
11280
11281     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
11282     parser->curforce    = proto->curforce;
11283 #else
11284     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
11285     Copy(proto->nexttype, parser->nexttype, 5,  I32);
11286     parser->nexttoke    = proto->nexttoke;
11287 #endif
11288
11289     /* XXX should clone saved_curcop here, but we aren't passed
11290      * proto_perl; so do it in perl_clone_using instead */
11291
11292     return parser;
11293 }
11294
11295
11296 /* duplicate a file handle */
11297
11298 PerlIO *
11299 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
11300 {
11301     PerlIO *ret;
11302
11303     PERL_ARGS_ASSERT_FP_DUP;
11304     PERL_UNUSED_ARG(type);
11305
11306     if (!fp)
11307         return (PerlIO*)NULL;
11308
11309     /* look for it in the table first */
11310     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
11311     if (ret)
11312         return ret;
11313
11314     /* create anew and remember what it is */
11315     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
11316     ptr_table_store(PL_ptr_table, fp, ret);
11317     return ret;
11318 }
11319
11320 /* duplicate a directory handle */
11321
11322 DIR *
11323 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
11324 {
11325     DIR *ret;
11326
11327 #ifdef HAS_FCHDIR
11328     DIR *pwd;
11329     register const Direntry_t *dirent;
11330     char smallbuf[256];
11331     char *name = NULL;
11332     STRLEN len = 0;
11333     long pos;
11334 #endif
11335
11336     PERL_UNUSED_CONTEXT;
11337     PERL_ARGS_ASSERT_DIRP_DUP;
11338
11339     if (!dp)
11340         return (DIR*)NULL;
11341
11342     /* look for it in the table first */
11343     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
11344     if (ret)
11345         return ret;
11346
11347 #ifdef HAS_FCHDIR
11348
11349     PERL_UNUSED_ARG(param);
11350
11351     /* create anew */
11352
11353     /* open the current directory (so we can switch back) */
11354     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
11355
11356     /* chdir to our dir handle and open the present working directory */
11357     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
11358         PerlDir_close(pwd);
11359         return (DIR *)NULL;
11360     }
11361     /* Now we should have two dir handles pointing to the same dir. */
11362
11363     /* Be nice to the calling code and chdir back to where we were. */
11364     fchdir(my_dirfd(pwd)); /* If this fails, then what? */
11365
11366     /* We have no need of the pwd handle any more. */
11367     PerlDir_close(pwd);
11368
11369 #ifdef DIRNAMLEN
11370 # define d_namlen(d) (d)->d_namlen
11371 #else
11372 # define d_namlen(d) strlen((d)->d_name)
11373 #endif
11374     /* Iterate once through dp, to get the file name at the current posi-
11375        tion. Then step back. */
11376     pos = PerlDir_tell(dp);
11377     if ((dirent = PerlDir_read(dp))) {
11378         len = d_namlen(dirent);
11379         if (len <= sizeof smallbuf) name = smallbuf;
11380         else Newx(name, len, char);
11381         Move(dirent->d_name, name, len, char);
11382     }
11383     PerlDir_seek(dp, pos);
11384
11385     /* Iterate through the new dir handle, till we find a file with the
11386        right name. */
11387     if (!dirent) /* just before the end */
11388         for(;;) {
11389             pos = PerlDir_tell(ret);
11390             if (PerlDir_read(ret)) continue; /* not there yet */
11391             PerlDir_seek(ret, pos); /* step back */
11392             break;
11393         }
11394     else {
11395         const long pos0 = PerlDir_tell(ret);
11396         for(;;) {
11397             pos = PerlDir_tell(ret);
11398             if ((dirent = PerlDir_read(ret))) {
11399                 if (len == d_namlen(dirent)
11400                  && memEQ(name, dirent->d_name, len)) {
11401                     /* found it */
11402                     PerlDir_seek(ret, pos); /* step back */
11403                     break;
11404                 }
11405                 /* else we are not there yet; keep iterating */
11406             }
11407             else { /* This is not meant to happen. The best we can do is
11408                       reset the iterator to the beginning. */
11409                 PerlDir_seek(ret, pos0);
11410                 break;
11411             }
11412         }
11413     }
11414 #undef d_namlen
11415
11416     if (name && name != smallbuf)
11417         Safefree(name);
11418 #endif
11419
11420 #ifdef WIN32
11421     ret = win32_dirp_dup(dp, param);
11422 #endif
11423
11424     /* pop it in the pointer table */
11425     if (ret)
11426         ptr_table_store(PL_ptr_table, dp, ret);
11427
11428     return ret;
11429 }
11430
11431 /* duplicate a typeglob */
11432
11433 GP *
11434 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
11435 {
11436     GP *ret;
11437
11438     PERL_ARGS_ASSERT_GP_DUP;
11439
11440     if (!gp)
11441         return (GP*)NULL;
11442     /* look for it in the table first */
11443     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
11444     if (ret)
11445         return ret;
11446
11447     /* create anew and remember what it is */
11448     Newxz(ret, 1, GP);
11449     ptr_table_store(PL_ptr_table, gp, ret);
11450
11451     /* clone */
11452     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
11453        on Newxz() to do this for us.  */
11454     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
11455     ret->gp_io          = io_dup_inc(gp->gp_io, param);
11456     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
11457     ret->gp_av          = av_dup_inc(gp->gp_av, param);
11458     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
11459     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
11460     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
11461     ret->gp_cvgen       = gp->gp_cvgen;
11462     ret->gp_line        = gp->gp_line;
11463     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
11464     return ret;
11465 }
11466
11467 /* duplicate a chain of magic */
11468
11469 MAGIC *
11470 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
11471 {
11472     MAGIC *mgret = NULL;
11473     MAGIC **mgprev_p = &mgret;
11474
11475     PERL_ARGS_ASSERT_MG_DUP;
11476
11477     for (; mg; mg = mg->mg_moremagic) {
11478         MAGIC *nmg;
11479
11480         if ((param->flags & CLONEf_JOIN_IN)
11481                 && mg->mg_type == PERL_MAGIC_backref)
11482             /* when joining, we let the individual SVs add themselves to
11483              * backref as needed. */
11484             continue;
11485
11486         Newx(nmg, 1, MAGIC);
11487         *mgprev_p = nmg;
11488         mgprev_p = &(nmg->mg_moremagic);
11489
11490         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
11491            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
11492            from the original commit adding Perl_mg_dup() - revision 4538.
11493            Similarly there is the annotation "XXX random ptr?" next to the
11494            assignment to nmg->mg_ptr.  */
11495         *nmg = *mg;
11496
11497         /* FIXME for plugins
11498         if (nmg->mg_type == PERL_MAGIC_qr) {
11499             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
11500         }
11501         else
11502         */
11503         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
11504                           ? nmg->mg_type == PERL_MAGIC_backref
11505                                 /* The backref AV has its reference
11506                                  * count deliberately bumped by 1 */
11507                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
11508                                                     nmg->mg_obj, param))
11509                                 : sv_dup_inc(nmg->mg_obj, param)
11510                           : sv_dup(nmg->mg_obj, param);
11511
11512         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
11513             if (nmg->mg_len > 0) {
11514                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
11515                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
11516                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
11517                 {
11518                     AMT * const namtp = (AMT*)nmg->mg_ptr;
11519                     sv_dup_inc_multiple((SV**)(namtp->table),
11520                                         (SV**)(namtp->table), NofAMmeth, param);
11521                 }
11522             }
11523             else if (nmg->mg_len == HEf_SVKEY)
11524                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
11525         }
11526         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
11527             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
11528         }
11529     }
11530     return mgret;
11531 }
11532
11533 #endif /* USE_ITHREADS */
11534
11535 struct ptr_tbl_arena {
11536     struct ptr_tbl_arena *next;
11537     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
11538 };
11539
11540 /* create a new pointer-mapping table */
11541
11542 PTR_TBL_t *
11543 Perl_ptr_table_new(pTHX)
11544 {
11545     PTR_TBL_t *tbl;
11546     PERL_UNUSED_CONTEXT;
11547
11548     Newx(tbl, 1, PTR_TBL_t);
11549     tbl->tbl_max        = 511;
11550     tbl->tbl_items      = 0;
11551     tbl->tbl_arena      = NULL;
11552     tbl->tbl_arena_next = NULL;
11553     tbl->tbl_arena_end  = NULL;
11554     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
11555     return tbl;
11556 }
11557
11558 #define PTR_TABLE_HASH(ptr) \
11559   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
11560
11561 /* map an existing pointer using a table */
11562
11563 STATIC PTR_TBL_ENT_t *
11564 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
11565 {
11566     PTR_TBL_ENT_t *tblent;
11567     const UV hash = PTR_TABLE_HASH(sv);
11568
11569     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
11570
11571     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
11572     for (; tblent; tblent = tblent->next) {
11573         if (tblent->oldval == sv)
11574             return tblent;
11575     }
11576     return NULL;
11577 }
11578
11579 void *
11580 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
11581 {
11582     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
11583
11584     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
11585     PERL_UNUSED_CONTEXT;
11586
11587     return tblent ? tblent->newval : NULL;
11588 }
11589
11590 /* add a new entry to a pointer-mapping table */
11591
11592 void
11593 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
11594 {
11595     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
11596
11597     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
11598     PERL_UNUSED_CONTEXT;
11599
11600     if (tblent) {
11601         tblent->newval = newsv;
11602     } else {
11603         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
11604
11605         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
11606             struct ptr_tbl_arena *new_arena;
11607
11608             Newx(new_arena, 1, struct ptr_tbl_arena);
11609             new_arena->next = tbl->tbl_arena;
11610             tbl->tbl_arena = new_arena;
11611             tbl->tbl_arena_next = new_arena->array;
11612             tbl->tbl_arena_end = new_arena->array
11613                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
11614         }
11615
11616         tblent = tbl->tbl_arena_next++;
11617
11618         tblent->oldval = oldsv;
11619         tblent->newval = newsv;
11620         tblent->next = tbl->tbl_ary[entry];
11621         tbl->tbl_ary[entry] = tblent;
11622         tbl->tbl_items++;
11623         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
11624             ptr_table_split(tbl);
11625     }
11626 }
11627
11628 /* double the hash bucket size of an existing ptr table */
11629
11630 void
11631 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
11632 {
11633     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
11634     const UV oldsize = tbl->tbl_max + 1;
11635     UV newsize = oldsize * 2;
11636     UV i;
11637
11638     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
11639     PERL_UNUSED_CONTEXT;
11640
11641     Renew(ary, newsize, PTR_TBL_ENT_t*);
11642     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
11643     tbl->tbl_max = --newsize;
11644     tbl->tbl_ary = ary;
11645     for (i=0; i < oldsize; i++, ary++) {
11646         PTR_TBL_ENT_t **entp = ary;
11647         PTR_TBL_ENT_t *ent = *ary;
11648         PTR_TBL_ENT_t **curentp;
11649         if (!ent)
11650             continue;
11651         curentp = ary + oldsize;
11652         do {
11653             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
11654                 *entp = ent->next;
11655                 ent->next = *curentp;
11656                 *curentp = ent;
11657             }
11658             else
11659                 entp = &ent->next;
11660             ent = *entp;
11661         } while (ent);
11662     }
11663 }
11664
11665 /* remove all the entries from a ptr table */
11666 /* Deprecated - will be removed post 5.14 */
11667
11668 void
11669 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
11670 {
11671     if (tbl && tbl->tbl_items) {
11672         struct ptr_tbl_arena *arena = tbl->tbl_arena;
11673
11674         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
11675
11676         while (arena) {
11677             struct ptr_tbl_arena *next = arena->next;
11678
11679             Safefree(arena);
11680             arena = next;
11681         };
11682
11683         tbl->tbl_items = 0;
11684         tbl->tbl_arena = NULL;
11685         tbl->tbl_arena_next = NULL;
11686         tbl->tbl_arena_end = NULL;
11687     }
11688 }
11689
11690 /* clear and free a ptr table */
11691
11692 void
11693 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
11694 {
11695     struct ptr_tbl_arena *arena;
11696
11697     if (!tbl) {
11698         return;
11699     }
11700
11701     arena = tbl->tbl_arena;
11702
11703     while (arena) {
11704         struct ptr_tbl_arena *next = arena->next;
11705
11706         Safefree(arena);
11707         arena = next;
11708     }
11709
11710     Safefree(tbl->tbl_ary);
11711     Safefree(tbl);
11712 }
11713
11714 #if defined(USE_ITHREADS)
11715
11716 void
11717 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
11718 {
11719     PERL_ARGS_ASSERT_RVPV_DUP;
11720
11721     if (SvROK(sstr)) {
11722         if (SvWEAKREF(sstr)) {
11723             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
11724             if (param->flags & CLONEf_JOIN_IN) {
11725                 /* if joining, we add any back references individually rather
11726                  * than copying the whole backref array */
11727                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
11728             }
11729         }
11730         else
11731             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
11732     }
11733     else if (SvPVX_const(sstr)) {
11734         /* Has something there */
11735         if (SvLEN(sstr)) {
11736             /* Normal PV - clone whole allocated space */
11737             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
11738             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
11739                 /* Not that normal - actually sstr is copy on write.
11740                    But we are a true, independent SV, so:  */
11741                 SvREADONLY_off(dstr);
11742                 SvFAKE_off(dstr);
11743             }
11744         }
11745         else {
11746             /* Special case - not normally malloced for some reason */
11747             if (isGV_with_GP(sstr)) {
11748                 /* Don't need to do anything here.  */
11749             }
11750             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
11751                 /* A "shared" PV - clone it as "shared" PV */
11752                 SvPV_set(dstr,
11753                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
11754                                          param)));
11755             }
11756             else {
11757                 /* Some other special case - random pointer */
11758                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
11759             }
11760         }
11761     }
11762     else {
11763         /* Copy the NULL */
11764         SvPV_set(dstr, NULL);
11765     }
11766 }
11767
11768 /* duplicate a list of SVs. source and dest may point to the same memory.  */
11769 static SV **
11770 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
11771                       SSize_t items, CLONE_PARAMS *const param)
11772 {
11773     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
11774
11775     while (items-- > 0) {
11776         *dest++ = sv_dup_inc(*source++, param);
11777     }
11778
11779     return dest;
11780 }
11781
11782 /* duplicate an SV of any type (including AV, HV etc) */
11783
11784 static SV *
11785 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11786 {
11787     dVAR;
11788     SV *dstr;
11789
11790     PERL_ARGS_ASSERT_SV_DUP_COMMON;
11791
11792     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
11793 #ifdef DEBUG_LEAKING_SCALARS_ABORT
11794         abort();
11795 #endif
11796         return NULL;
11797     }
11798     /* look for it in the table first */
11799     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
11800     if (dstr)
11801         return dstr;
11802
11803     if(param->flags & CLONEf_JOIN_IN) {
11804         /** We are joining here so we don't want do clone
11805             something that is bad **/
11806         if (SvTYPE(sstr) == SVt_PVHV) {
11807             const HEK * const hvname = HvNAME_HEK(sstr);
11808             if (hvname) {
11809                 /** don't clone stashes if they already exist **/
11810                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
11811                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
11812                 ptr_table_store(PL_ptr_table, sstr, dstr);
11813                 return dstr;
11814             }
11815         }
11816     }
11817
11818     /* create anew and remember what it is */
11819     new_SV(dstr);
11820
11821 #ifdef DEBUG_LEAKING_SCALARS
11822     dstr->sv_debug_optype = sstr->sv_debug_optype;
11823     dstr->sv_debug_line = sstr->sv_debug_line;
11824     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
11825     dstr->sv_debug_parent = (SV*)sstr;
11826     FREE_SV_DEBUG_FILE(dstr);
11827     dstr->sv_debug_file = savepv(sstr->sv_debug_file);
11828 #endif
11829
11830     ptr_table_store(PL_ptr_table, sstr, dstr);
11831
11832     /* clone */
11833     SvFLAGS(dstr)       = SvFLAGS(sstr);
11834     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
11835     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
11836
11837 #ifdef DEBUGGING
11838     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
11839         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
11840                       (void*)PL_watch_pvx, SvPVX_const(sstr));
11841 #endif
11842
11843     /* don't clone objects whose class has asked us not to */
11844     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
11845         SvFLAGS(dstr) = 0;
11846         return dstr;
11847     }
11848
11849     switch (SvTYPE(sstr)) {
11850     case SVt_NULL:
11851         SvANY(dstr)     = NULL;
11852         break;
11853     case SVt_IV:
11854         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
11855         if(SvROK(sstr)) {
11856             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11857         } else {
11858             SvIV_set(dstr, SvIVX(sstr));
11859         }
11860         break;
11861     case SVt_NV:
11862         SvANY(dstr)     = new_XNV();
11863         SvNV_set(dstr, SvNVX(sstr));
11864         break;
11865         /* case SVt_BIND: */
11866     default:
11867         {
11868             /* These are all the types that need complex bodies allocating.  */
11869             void *new_body;
11870             const svtype sv_type = SvTYPE(sstr);
11871             const struct body_details *const sv_type_details
11872                 = bodies_by_type + sv_type;
11873
11874             switch (sv_type) {
11875             default:
11876                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
11877                 break;
11878
11879             case SVt_PVGV:
11880             case SVt_PVIO:
11881             case SVt_PVFM:
11882             case SVt_PVHV:
11883             case SVt_PVAV:
11884             case SVt_PVCV:
11885             case SVt_PVLV:
11886             case SVt_REGEXP:
11887             case SVt_PVMG:
11888             case SVt_PVNV:
11889             case SVt_PVIV:
11890             case SVt_PV:
11891                 assert(sv_type_details->body_size);
11892                 if (sv_type_details->arena) {
11893                     new_body_inline(new_body, sv_type);
11894                     new_body
11895                         = (void*)((char*)new_body - sv_type_details->offset);
11896                 } else {
11897                     new_body = new_NOARENA(sv_type_details);
11898                 }
11899             }
11900             assert(new_body);
11901             SvANY(dstr) = new_body;
11902
11903 #ifndef PURIFY
11904             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
11905                  ((char*)SvANY(dstr)) + sv_type_details->offset,
11906                  sv_type_details->copy, char);
11907 #else
11908             Copy(((char*)SvANY(sstr)),
11909                  ((char*)SvANY(dstr)),
11910                  sv_type_details->body_size + sv_type_details->offset, char);
11911 #endif
11912
11913             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
11914                 && !isGV_with_GP(dstr)
11915                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
11916                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11917
11918             /* The Copy above means that all the source (unduplicated) pointers
11919                are now in the destination.  We can check the flags and the
11920                pointers in either, but it's possible that there's less cache
11921                missing by always going for the destination.
11922                FIXME - instrument and check that assumption  */
11923             if (sv_type >= SVt_PVMG) {
11924                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
11925                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
11926                 } else if (SvMAGIC(dstr))
11927                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
11928                 if (SvSTASH(dstr))
11929                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
11930             }
11931
11932             /* The cast silences a GCC warning about unhandled types.  */
11933             switch ((int)sv_type) {
11934             case SVt_PV:
11935                 break;
11936             case SVt_PVIV:
11937                 break;
11938             case SVt_PVNV:
11939                 break;
11940             case SVt_PVMG:
11941                 break;
11942             case SVt_REGEXP:
11943                 /* FIXME for plugins */
11944                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
11945                 break;
11946             case SVt_PVLV:
11947                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
11948                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
11949                     LvTARG(dstr) = dstr;
11950                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
11951                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
11952                 else
11953                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
11954             case SVt_PVGV:
11955                 /* non-GP case already handled above */
11956                 if(isGV_with_GP(sstr)) {
11957                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
11958                     /* Don't call sv_add_backref here as it's going to be
11959                        created as part of the magic cloning of the symbol
11960                        table--unless this is during a join and the stash
11961                        is not actually being cloned.  */
11962                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
11963                        at the point of this comment.  */
11964                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
11965                     if (param->flags & CLONEf_JOIN_IN)
11966                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
11967                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
11968                     (void)GpREFCNT_inc(GvGP(dstr));
11969                 }
11970                 break;
11971             case SVt_PVIO:
11972                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
11973                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
11974                     /* I have no idea why fake dirp (rsfps)
11975                        should be treated differently but otherwise
11976                        we end up with leaks -- sky*/
11977                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
11978                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
11979                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
11980                 } else {
11981                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
11982                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
11983                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
11984                     if (IoDIRP(dstr)) {
11985                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
11986                     } else {
11987                         NOOP;
11988                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
11989                     }
11990                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
11991                 }
11992                 if (IoOFP(dstr) == IoIFP(sstr))
11993                     IoOFP(dstr) = IoIFP(dstr);
11994                 else
11995                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
11996                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
11997                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
11998                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
11999                 break;
12000             case SVt_PVAV:
12001                 /* avoid cloning an empty array */
12002                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
12003                     SV **dst_ary, **src_ary;
12004                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
12005
12006                     src_ary = AvARRAY((const AV *)sstr);
12007                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
12008                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
12009                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
12010                     AvALLOC((const AV *)dstr) = dst_ary;
12011                     if (AvREAL((const AV *)sstr)) {
12012                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
12013                                                       param);
12014                     }
12015                     else {
12016                         while (items-- > 0)
12017                             *dst_ary++ = sv_dup(*src_ary++, param);
12018                     }
12019                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
12020                     while (items-- > 0) {
12021                         *dst_ary++ = &PL_sv_undef;
12022                     }
12023                 }
12024                 else {
12025                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
12026                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
12027                     AvMAX(  (const AV *)dstr)   = -1;
12028                     AvFILLp((const AV *)dstr)   = -1;
12029                 }
12030                 break;
12031             case SVt_PVHV:
12032                 if (HvARRAY((const HV *)sstr)) {
12033                     STRLEN i = 0;
12034                     const bool sharekeys = !!HvSHAREKEYS(sstr);
12035                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
12036                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
12037                     char *darray;
12038                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
12039                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
12040                         char);
12041                     HvARRAY(dstr) = (HE**)darray;
12042                     while (i <= sxhv->xhv_max) {
12043                         const HE * const source = HvARRAY(sstr)[i];
12044                         HvARRAY(dstr)[i] = source
12045                             ? he_dup(source, sharekeys, param) : 0;
12046                         ++i;
12047                     }
12048                     if (SvOOK(sstr)) {
12049                         const struct xpvhv_aux * const saux = HvAUX(sstr);
12050                         struct xpvhv_aux * const daux = HvAUX(dstr);
12051                         /* This flag isn't copied.  */
12052                         SvOOK_on(dstr);
12053
12054                         if (saux->xhv_name_count) {
12055                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
12056                             const I32 count
12057                              = saux->xhv_name_count < 0
12058                                 ? -saux->xhv_name_count
12059                                 :  saux->xhv_name_count;
12060                             HEK **shekp = sname + count;
12061                             HEK **dhekp;
12062                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
12063                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
12064                             while (shekp-- > sname) {
12065                                 dhekp--;
12066                                 *dhekp = hek_dup(*shekp, param);
12067                             }
12068                         }
12069                         else {
12070                             daux->xhv_name_u.xhvnameu_name
12071                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
12072                                           param);
12073                         }
12074                         daux->xhv_name_count = saux->xhv_name_count;
12075
12076                         daux->xhv_riter = saux->xhv_riter;
12077                         daux->xhv_eiter = saux->xhv_eiter
12078                             ? he_dup(saux->xhv_eiter,
12079                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
12080                         /* backref array needs refcnt=2; see sv_add_backref */
12081                         daux->xhv_backreferences =
12082                             (param->flags & CLONEf_JOIN_IN)
12083                                 /* when joining, we let the individual GVs and
12084                                  * CVs add themselves to backref as
12085                                  * needed. This avoids pulling in stuff
12086                                  * that isn't required, and simplifies the
12087                                  * case where stashes aren't cloned back
12088                                  * if they already exist in the parent
12089                                  * thread */
12090                             ? NULL
12091                             : saux->xhv_backreferences
12092                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
12093                                     ? MUTABLE_AV(SvREFCNT_inc(
12094                                           sv_dup_inc((const SV *)
12095                                             saux->xhv_backreferences, param)))
12096                                     : MUTABLE_AV(sv_dup((const SV *)
12097                                             saux->xhv_backreferences, param))
12098                                 : 0;
12099
12100                         daux->xhv_mro_meta = saux->xhv_mro_meta
12101                             ? mro_meta_dup(saux->xhv_mro_meta, param)
12102                             : 0;
12103
12104                         /* Record stashes for possible cloning in Perl_clone(). */
12105                         if (HvNAME(sstr))
12106                             av_push(param->stashes, dstr);
12107                     }
12108                 }
12109                 else
12110                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
12111                 break;
12112             case SVt_PVCV:
12113                 if (!(param->flags & CLONEf_COPY_STACKS)) {
12114                     CvDEPTH(dstr) = 0;
12115                 }
12116                 /*FALLTHROUGH*/
12117             case SVt_PVFM:
12118                 /* NOTE: not refcounted */
12119                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
12120                     hv_dup(CvSTASH(dstr), param);
12121                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
12122                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
12123                 if (!CvISXSUB(dstr)) {
12124                     OP_REFCNT_LOCK;
12125                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
12126                     OP_REFCNT_UNLOCK;
12127                 } else if (CvCONST(dstr)) {
12128                     CvXSUBANY(dstr).any_ptr =
12129                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
12130                 }
12131                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
12132                 /* don't dup if copying back - CvGV isn't refcounted, so the
12133                  * duped GV may never be freed. A bit of a hack! DAPM */
12134                 SvANY(MUTABLE_CV(dstr))->xcv_gv =
12135                     CvCVGV_RC(dstr)
12136                     ? gv_dup_inc(CvGV(sstr), param)
12137                     : (param->flags & CLONEf_JOIN_IN)
12138                         ? NULL
12139                         : gv_dup(CvGV(sstr), param);
12140
12141                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
12142                 CvOUTSIDE(dstr) =
12143                     CvWEAKOUTSIDE(sstr)
12144                     ? cv_dup(    CvOUTSIDE(dstr), param)
12145                     : cv_dup_inc(CvOUTSIDE(dstr), param);
12146                 break;
12147             }
12148         }
12149     }
12150
12151     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
12152         ++PL_sv_objcount;
12153
12154     return dstr;
12155  }
12156
12157 SV *
12158 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12159 {
12160     PERL_ARGS_ASSERT_SV_DUP_INC;
12161     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
12162 }
12163
12164 SV *
12165 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12166 {
12167     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
12168     PERL_ARGS_ASSERT_SV_DUP;
12169
12170     /* Track every SV that (at least initially) had a reference count of 0.
12171        We need to do this by holding an actual reference to it in this array.
12172        If we attempt to cheat, turn AvREAL_off(), and store only pointers
12173        (akin to the stashes hash, and the perl stack), we come unstuck if
12174        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
12175        thread) is manipulated in a CLONE method, because CLONE runs before the
12176        unreferenced array is walked to find SVs still with SvREFCNT() == 0
12177        (and fix things up by giving each a reference via the temps stack).
12178        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
12179        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
12180        before the walk of unreferenced happens and a reference to that is SV
12181        added to the temps stack. At which point we have the same SV considered
12182        to be in use, and free to be re-used. Not good.
12183     */
12184     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
12185         assert(param->unreferenced);
12186         av_push(param->unreferenced, SvREFCNT_inc(dstr));
12187     }
12188
12189     return dstr;
12190 }
12191
12192 /* duplicate a context */
12193
12194 PERL_CONTEXT *
12195 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
12196 {
12197     PERL_CONTEXT *ncxs;
12198
12199     PERL_ARGS_ASSERT_CX_DUP;
12200
12201     if (!cxs)
12202         return (PERL_CONTEXT*)NULL;
12203
12204     /* look for it in the table first */
12205     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
12206     if (ncxs)
12207         return ncxs;
12208
12209     /* create anew and remember what it is */
12210     Newx(ncxs, max + 1, PERL_CONTEXT);
12211     ptr_table_store(PL_ptr_table, cxs, ncxs);
12212     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
12213
12214     while (ix >= 0) {
12215         PERL_CONTEXT * const ncx = &ncxs[ix];
12216         if (CxTYPE(ncx) == CXt_SUBST) {
12217             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
12218         }
12219         else {
12220             switch (CxTYPE(ncx)) {
12221             case CXt_SUB:
12222                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
12223                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
12224                                            : cv_dup(ncx->blk_sub.cv,param));
12225                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
12226                                            ? av_dup_inc(ncx->blk_sub.argarray,
12227                                                         param)
12228                                            : NULL);
12229                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
12230                                                      param);
12231                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
12232                                            ncx->blk_sub.oldcomppad);
12233                 break;
12234             case CXt_EVAL:
12235                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
12236                                                       param);
12237                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
12238                 break;
12239             case CXt_LOOP_LAZYSV:
12240                 ncx->blk_loop.state_u.lazysv.end
12241                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
12242                 /* We are taking advantage of av_dup_inc and sv_dup_inc
12243                    actually being the same function, and order equivalence of
12244                    the two unions.
12245                    We can assert the later [but only at run time :-(]  */
12246                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
12247                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
12248             case CXt_LOOP_FOR:
12249                 ncx->blk_loop.state_u.ary.ary
12250                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
12251             case CXt_LOOP_LAZYIV:
12252             case CXt_LOOP_PLAIN:
12253                 if (CxPADLOOP(ncx)) {
12254                     ncx->blk_loop.itervar_u.oldcomppad
12255                         = (PAD*)ptr_table_fetch(PL_ptr_table,
12256                                         ncx->blk_loop.itervar_u.oldcomppad);
12257                 } else {
12258                     ncx->blk_loop.itervar_u.gv
12259                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
12260                                     param);
12261                 }
12262                 break;
12263             case CXt_FORMAT:
12264                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
12265                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
12266                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
12267                                                      param);
12268                 break;
12269             case CXt_BLOCK:
12270             case CXt_NULL:
12271                 break;
12272             }
12273         }
12274         --ix;
12275     }
12276     return ncxs;
12277 }
12278
12279 /* duplicate a stack info structure */
12280
12281 PERL_SI *
12282 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
12283 {
12284     PERL_SI *nsi;
12285
12286     PERL_ARGS_ASSERT_SI_DUP;
12287
12288     if (!si)
12289         return (PERL_SI*)NULL;
12290
12291     /* look for it in the table first */
12292     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
12293     if (nsi)
12294         return nsi;
12295
12296     /* create anew and remember what it is */
12297     Newxz(nsi, 1, PERL_SI);
12298     ptr_table_store(PL_ptr_table, si, nsi);
12299
12300     nsi->si_stack       = av_dup_inc(si->si_stack, param);
12301     nsi->si_cxix        = si->si_cxix;
12302     nsi->si_cxmax       = si->si_cxmax;
12303     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
12304     nsi->si_type        = si->si_type;
12305     nsi->si_prev        = si_dup(si->si_prev, param);
12306     nsi->si_next        = si_dup(si->si_next, param);
12307     nsi->si_markoff     = si->si_markoff;
12308
12309     return nsi;
12310 }
12311
12312 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
12313 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
12314 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
12315 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
12316 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
12317 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
12318 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
12319 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
12320 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
12321 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
12322 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
12323 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
12324 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
12325 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
12326 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
12327 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
12328
12329 /* XXXXX todo */
12330 #define pv_dup_inc(p)   SAVEPV(p)
12331 #define pv_dup(p)       SAVEPV(p)
12332 #define svp_dup_inc(p,pp)       any_dup(p,pp)
12333
12334 /* map any object to the new equivent - either something in the
12335  * ptr table, or something in the interpreter structure
12336  */
12337
12338 void *
12339 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
12340 {
12341     void *ret;
12342
12343     PERL_ARGS_ASSERT_ANY_DUP;
12344
12345     if (!v)
12346         return (void*)NULL;
12347
12348     /* look for it in the table first */
12349     ret = ptr_table_fetch(PL_ptr_table, v);
12350     if (ret)
12351         return ret;
12352
12353     /* see if it is part of the interpreter structure */
12354     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
12355         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
12356     else {
12357         ret = v;
12358     }
12359
12360     return ret;
12361 }
12362
12363 /* duplicate the save stack */
12364
12365 ANY *
12366 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
12367 {
12368     dVAR;
12369     ANY * const ss      = proto_perl->Isavestack;
12370     const I32 max       = proto_perl->Isavestack_max;
12371     I32 ix              = proto_perl->Isavestack_ix;
12372     ANY *nss;
12373     const SV *sv;
12374     const GV *gv;
12375     const AV *av;
12376     const HV *hv;
12377     void* ptr;
12378     int intval;
12379     long longval;
12380     GP *gp;
12381     IV iv;
12382     I32 i;
12383     char *c = NULL;
12384     void (*dptr) (void*);
12385     void (*dxptr) (pTHX_ void*);
12386
12387     PERL_ARGS_ASSERT_SS_DUP;
12388
12389     Newxz(nss, max, ANY);
12390
12391     while (ix > 0) {
12392         const UV uv = POPUV(ss,ix);
12393         const U8 type = (U8)uv & SAVE_MASK;
12394
12395         TOPUV(nss,ix) = uv;
12396         switch (type) {
12397         case SAVEt_CLEARSV:
12398             break;
12399         case SAVEt_HELEM:               /* hash element */
12400             sv = (const SV *)POPPTR(ss,ix);
12401             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12402             /* fall through */
12403         case SAVEt_ITEM:                        /* normal string */
12404         case SAVEt_GVSV:                        /* scalar slot in GV */
12405         case SAVEt_SV:                          /* scalar reference */
12406             sv = (const SV *)POPPTR(ss,ix);
12407             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12408             /* fall through */
12409         case SAVEt_FREESV:
12410         case SAVEt_MORTALIZESV:
12411             sv = (const SV *)POPPTR(ss,ix);
12412             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12413             break;
12414         case SAVEt_SHARED_PVREF:                /* char* in shared space */
12415             c = (char*)POPPTR(ss,ix);
12416             TOPPTR(nss,ix) = savesharedpv(c);
12417             ptr = POPPTR(ss,ix);
12418             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12419             break;
12420         case SAVEt_GENERIC_SVREF:               /* generic sv */
12421         case SAVEt_SVREF:                       /* scalar reference */
12422             sv = (const SV *)POPPTR(ss,ix);
12423             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12424             ptr = POPPTR(ss,ix);
12425             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12426             break;
12427         case SAVEt_HV:                          /* hash reference */
12428         case SAVEt_AV:                          /* array reference */
12429             sv = (const SV *) POPPTR(ss,ix);
12430             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12431             /* fall through */
12432         case SAVEt_COMPPAD:
12433         case SAVEt_NSTAB:
12434             sv = (const SV *) POPPTR(ss,ix);
12435             TOPPTR(nss,ix) = sv_dup(sv, param);
12436             break;
12437         case SAVEt_INT:                         /* int reference */
12438             ptr = POPPTR(ss,ix);
12439             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12440             intval = (int)POPINT(ss,ix);
12441             TOPINT(nss,ix) = intval;
12442             break;
12443         case SAVEt_LONG:                        /* long reference */
12444             ptr = POPPTR(ss,ix);
12445             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12446             longval = (long)POPLONG(ss,ix);
12447             TOPLONG(nss,ix) = longval;
12448             break;
12449         case SAVEt_I32:                         /* I32 reference */
12450             ptr = POPPTR(ss,ix);
12451             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12452             i = POPINT(ss,ix);
12453             TOPINT(nss,ix) = i;
12454             break;
12455         case SAVEt_IV:                          /* IV reference */
12456             ptr = POPPTR(ss,ix);
12457             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12458             iv = POPIV(ss,ix);
12459             TOPIV(nss,ix) = iv;
12460             break;
12461         case SAVEt_HPTR:                        /* HV* reference */
12462         case SAVEt_APTR:                        /* AV* reference */
12463         case SAVEt_SPTR:                        /* SV* reference */
12464             ptr = POPPTR(ss,ix);
12465             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12466             sv = (const SV *)POPPTR(ss,ix);
12467             TOPPTR(nss,ix) = sv_dup(sv, param);
12468             break;
12469         case SAVEt_VPTR:                        /* random* reference */
12470             ptr = POPPTR(ss,ix);
12471             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12472             /* Fall through */
12473         case SAVEt_INT_SMALL:
12474         case SAVEt_I32_SMALL:
12475         case SAVEt_I16:                         /* I16 reference */
12476         case SAVEt_I8:                          /* I8 reference */
12477         case SAVEt_BOOL:
12478             ptr = POPPTR(ss,ix);
12479             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12480             break;
12481         case SAVEt_GENERIC_PVREF:               /* generic char* */
12482         case SAVEt_PPTR:                        /* char* reference */
12483             ptr = POPPTR(ss,ix);
12484             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12485             c = (char*)POPPTR(ss,ix);
12486             TOPPTR(nss,ix) = pv_dup(c);
12487             break;
12488         case SAVEt_GP:                          /* scalar reference */
12489             gp = (GP*)POPPTR(ss,ix);
12490             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
12491             (void)GpREFCNT_inc(gp);
12492             gv = (const GV *)POPPTR(ss,ix);
12493             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
12494             break;
12495         case SAVEt_FREEOP:
12496             ptr = POPPTR(ss,ix);
12497             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
12498                 /* these are assumed to be refcounted properly */
12499                 OP *o;
12500                 switch (((OP*)ptr)->op_type) {
12501                 case OP_LEAVESUB:
12502                 case OP_LEAVESUBLV:
12503                 case OP_LEAVEEVAL:
12504                 case OP_LEAVE:
12505                 case OP_SCOPE:
12506                 case OP_LEAVEWRITE:
12507                     TOPPTR(nss,ix) = ptr;
12508                     o = (OP*)ptr;
12509                     OP_REFCNT_LOCK;
12510                     (void) OpREFCNT_inc(o);
12511                     OP_REFCNT_UNLOCK;
12512                     break;
12513                 default:
12514                     TOPPTR(nss,ix) = NULL;
12515                     break;
12516                 }
12517             }
12518             else
12519                 TOPPTR(nss,ix) = NULL;
12520             break;
12521         case SAVEt_FREECOPHH:
12522             ptr = POPPTR(ss,ix);
12523             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
12524             break;
12525         case SAVEt_DELETE:
12526             hv = (const HV *)POPPTR(ss,ix);
12527             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12528             i = POPINT(ss,ix);
12529             TOPINT(nss,ix) = i;
12530             /* Fall through */
12531         case SAVEt_FREEPV:
12532             c = (char*)POPPTR(ss,ix);
12533             TOPPTR(nss,ix) = pv_dup_inc(c);
12534             break;
12535         case SAVEt_STACK_POS:           /* Position on Perl stack */
12536             i = POPINT(ss,ix);
12537             TOPINT(nss,ix) = i;
12538             break;
12539         case SAVEt_DESTRUCTOR:
12540             ptr = POPPTR(ss,ix);
12541             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12542             dptr = POPDPTR(ss,ix);
12543             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
12544                                         any_dup(FPTR2DPTR(void *, dptr),
12545                                                 proto_perl));
12546             break;
12547         case SAVEt_DESTRUCTOR_X:
12548             ptr = POPPTR(ss,ix);
12549             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12550             dxptr = POPDXPTR(ss,ix);
12551             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
12552                                          any_dup(FPTR2DPTR(void *, dxptr),
12553                                                  proto_perl));
12554             break;
12555         case SAVEt_REGCONTEXT:
12556         case SAVEt_ALLOC:
12557             ix -= uv >> SAVE_TIGHT_SHIFT;
12558             break;
12559         case SAVEt_AELEM:               /* array element */
12560             sv = (const SV *)POPPTR(ss,ix);
12561             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12562             i = POPINT(ss,ix);
12563             TOPINT(nss,ix) = i;
12564             av = (const AV *)POPPTR(ss,ix);
12565             TOPPTR(nss,ix) = av_dup_inc(av, param);
12566             break;
12567         case SAVEt_OP:
12568             ptr = POPPTR(ss,ix);
12569             TOPPTR(nss,ix) = ptr;
12570             break;
12571         case SAVEt_HINTS:
12572             ptr = POPPTR(ss,ix);
12573             ptr = cophh_copy((COPHH*)ptr);
12574             TOPPTR(nss,ix) = ptr;
12575             i = POPINT(ss,ix);
12576             TOPINT(nss,ix) = i;
12577             if (i & HINT_LOCALIZE_HH) {
12578                 hv = (const HV *)POPPTR(ss,ix);
12579                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12580             }
12581             break;
12582         case SAVEt_PADSV_AND_MORTALIZE:
12583             longval = (long)POPLONG(ss,ix);
12584             TOPLONG(nss,ix) = longval;
12585             ptr = POPPTR(ss,ix);
12586             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12587             sv = (const SV *)POPPTR(ss,ix);
12588             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12589             break;
12590         case SAVEt_SET_SVFLAGS:
12591             i = POPINT(ss,ix);
12592             TOPINT(nss,ix) = i;
12593             i = POPINT(ss,ix);
12594             TOPINT(nss,ix) = i;
12595             sv = (const SV *)POPPTR(ss,ix);
12596             TOPPTR(nss,ix) = sv_dup(sv, param);
12597             break;
12598         case SAVEt_RE_STATE:
12599             {
12600                 const struct re_save_state *const old_state
12601                     = (struct re_save_state *)
12602                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12603                 struct re_save_state *const new_state
12604                     = (struct re_save_state *)
12605                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12606
12607                 Copy(old_state, new_state, 1, struct re_save_state);
12608                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
12609
12610                 new_state->re_state_bostr
12611                     = pv_dup(old_state->re_state_bostr);
12612                 new_state->re_state_reginput
12613                     = pv_dup(old_state->re_state_reginput);
12614                 new_state->re_state_regeol
12615                     = pv_dup(old_state->re_state_regeol);
12616                 new_state->re_state_regoffs
12617                     = (regexp_paren_pair*)
12618                         any_dup(old_state->re_state_regoffs, proto_perl);
12619                 new_state->re_state_reglastparen
12620                     = (U32*) any_dup(old_state->re_state_reglastparen, 
12621                               proto_perl);
12622                 new_state->re_state_reglastcloseparen
12623                     = (U32*)any_dup(old_state->re_state_reglastcloseparen,
12624                               proto_perl);
12625                 /* XXX This just has to be broken. The old save_re_context
12626                    code did SAVEGENERICPV(PL_reg_start_tmp);
12627                    PL_reg_start_tmp is char **.
12628                    Look above to what the dup code does for
12629                    SAVEt_GENERIC_PVREF
12630                    It can never have worked.
12631                    So this is merely a faithful copy of the exiting bug:  */
12632                 new_state->re_state_reg_start_tmp
12633                     = (char **) pv_dup((char *)
12634                                       old_state->re_state_reg_start_tmp);
12635                 /* I assume that it only ever "worked" because no-one called
12636                    (pseudo)fork while the regexp engine had re-entered itself.
12637                 */
12638 #ifdef PERL_OLD_COPY_ON_WRITE
12639                 new_state->re_state_nrs
12640                     = sv_dup(old_state->re_state_nrs, param);
12641 #endif
12642                 new_state->re_state_reg_magic
12643                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
12644                                proto_perl);
12645                 new_state->re_state_reg_oldcurpm
12646                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
12647                               proto_perl);
12648                 new_state->re_state_reg_curpm
12649                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
12650                                proto_perl);
12651                 new_state->re_state_reg_oldsaved
12652                     = pv_dup(old_state->re_state_reg_oldsaved);
12653                 new_state->re_state_reg_poscache
12654                     = pv_dup(old_state->re_state_reg_poscache);
12655                 new_state->re_state_reg_starttry
12656                     = pv_dup(old_state->re_state_reg_starttry);
12657                 break;
12658             }
12659         case SAVEt_COMPILE_WARNINGS:
12660             ptr = POPPTR(ss,ix);
12661             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
12662             break;
12663         case SAVEt_PARSER:
12664             ptr = POPPTR(ss,ix);
12665             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
12666             break;
12667         default:
12668             Perl_croak(aTHX_
12669                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
12670         }
12671     }
12672
12673     return nss;
12674 }
12675
12676
12677 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
12678  * flag to the result. This is done for each stash before cloning starts,
12679  * so we know which stashes want their objects cloned */
12680
12681 static void
12682 do_mark_cloneable_stash(pTHX_ SV *const sv)
12683 {
12684     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
12685     if (hvname) {
12686         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
12687         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
12688         if (cloner && GvCV(cloner)) {
12689             dSP;
12690             UV status;
12691
12692             ENTER;
12693             SAVETMPS;
12694             PUSHMARK(SP);
12695             mXPUSHs(newSVhek(hvname));
12696             PUTBACK;
12697             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
12698             SPAGAIN;
12699             status = POPu;
12700             PUTBACK;
12701             FREETMPS;
12702             LEAVE;
12703             if (status)
12704                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
12705         }
12706     }
12707 }
12708
12709
12710
12711 /*
12712 =for apidoc perl_clone
12713
12714 Create and return a new interpreter by cloning the current one.
12715
12716 perl_clone takes these flags as parameters:
12717
12718 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
12719 without it we only clone the data and zero the stacks,
12720 with it we copy the stacks and the new perl interpreter is
12721 ready to run at the exact same point as the previous one.
12722 The pseudo-fork code uses COPY_STACKS while the
12723 threads->create doesn't.
12724
12725 CLONEf_KEEP_PTR_TABLE -
12726 perl_clone keeps a ptr_table with the pointer of the old
12727 variable as a key and the new variable as a value,
12728 this allows it to check if something has been cloned and not
12729 clone it again but rather just use the value and increase the
12730 refcount.  If KEEP_PTR_TABLE is not set then perl_clone will kill
12731 the ptr_table using the function
12732 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
12733 reason to keep it around is if you want to dup some of your own
12734 variable who are outside the graph perl scans, example of this
12735 code is in threads.xs create.
12736
12737 CLONEf_CLONE_HOST -
12738 This is a win32 thing, it is ignored on unix, it tells perls
12739 win32host code (which is c++) to clone itself, this is needed on
12740 win32 if you want to run two threads at the same time,
12741 if you just want to do some stuff in a separate perl interpreter
12742 and then throw it away and return to the original one,
12743 you don't need to do anything.
12744
12745 =cut
12746 */
12747
12748 /* XXX the above needs expanding by someone who actually understands it ! */
12749 EXTERN_C PerlInterpreter *
12750 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
12751
12752 PerlInterpreter *
12753 perl_clone(PerlInterpreter *proto_perl, UV flags)
12754 {
12755    dVAR;
12756 #ifdef PERL_IMPLICIT_SYS
12757
12758     PERL_ARGS_ASSERT_PERL_CLONE;
12759
12760    /* perlhost.h so we need to call into it
12761    to clone the host, CPerlHost should have a c interface, sky */
12762
12763    if (flags & CLONEf_CLONE_HOST) {
12764        return perl_clone_host(proto_perl,flags);
12765    }
12766    return perl_clone_using(proto_perl, flags,
12767                             proto_perl->IMem,
12768                             proto_perl->IMemShared,
12769                             proto_perl->IMemParse,
12770                             proto_perl->IEnv,
12771                             proto_perl->IStdIO,
12772                             proto_perl->ILIO,
12773                             proto_perl->IDir,
12774                             proto_perl->ISock,
12775                             proto_perl->IProc);
12776 }
12777
12778 PerlInterpreter *
12779 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
12780                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
12781                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
12782                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
12783                  struct IPerlDir* ipD, struct IPerlSock* ipS,
12784                  struct IPerlProc* ipP)
12785 {
12786     /* XXX many of the string copies here can be optimized if they're
12787      * constants; they need to be allocated as common memory and just
12788      * their pointers copied. */
12789
12790     IV i;
12791     CLONE_PARAMS clone_params;
12792     CLONE_PARAMS* const param = &clone_params;
12793
12794     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
12795
12796     PERL_ARGS_ASSERT_PERL_CLONE_USING;
12797 #else           /* !PERL_IMPLICIT_SYS */
12798     IV i;
12799     CLONE_PARAMS clone_params;
12800     CLONE_PARAMS* param = &clone_params;
12801     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
12802
12803     PERL_ARGS_ASSERT_PERL_CLONE;
12804 #endif          /* PERL_IMPLICIT_SYS */
12805
12806     /* for each stash, determine whether its objects should be cloned */
12807     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
12808     PERL_SET_THX(my_perl);
12809
12810 #ifdef DEBUGGING
12811     PoisonNew(my_perl, 1, PerlInterpreter);
12812     PL_op = NULL;
12813     PL_curcop = NULL;
12814     PL_defstash = NULL; /* may be used by perl malloc() */
12815     PL_markstack = 0;
12816     PL_scopestack = 0;
12817     PL_scopestack_name = 0;
12818     PL_savestack = 0;
12819     PL_savestack_ix = 0;
12820     PL_savestack_max = -1;
12821     PL_sig_pending = 0;
12822     PL_parser = NULL;
12823     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
12824 #  ifdef DEBUG_LEAKING_SCALARS
12825     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
12826 #  endif
12827 #else   /* !DEBUGGING */
12828     Zero(my_perl, 1, PerlInterpreter);
12829 #endif  /* DEBUGGING */
12830
12831 #ifdef PERL_IMPLICIT_SYS
12832     /* host pointers */
12833     PL_Mem              = ipM;
12834     PL_MemShared        = ipMS;
12835     PL_MemParse         = ipMP;
12836     PL_Env              = ipE;
12837     PL_StdIO            = ipStd;
12838     PL_LIO              = ipLIO;
12839     PL_Dir              = ipD;
12840     PL_Sock             = ipS;
12841     PL_Proc             = ipP;
12842 #endif          /* PERL_IMPLICIT_SYS */
12843
12844     param->flags = flags;
12845     /* Nothing in the core code uses this, but we make it available to
12846        extensions (using mg_dup).  */
12847     param->proto_perl = proto_perl;
12848     /* Likely nothing will use this, but it is initialised to be consistent
12849        with Perl_clone_params_new().  */
12850     param->new_perl = my_perl;
12851     param->unreferenced = NULL;
12852
12853     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
12854
12855     PL_body_arenas = NULL;
12856     Zero(&PL_body_roots, 1, PL_body_roots);
12857     
12858     PL_sv_count         = 0;
12859     PL_sv_objcount      = 0;
12860     PL_sv_root          = NULL;
12861     PL_sv_arenaroot     = NULL;
12862
12863     PL_debug            = proto_perl->Idebug;
12864
12865     PL_hash_seed        = proto_perl->Ihash_seed;
12866     PL_rehash_seed      = proto_perl->Irehash_seed;
12867
12868     SvANY(&PL_sv_undef)         = NULL;
12869     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
12870     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
12871     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
12872     SvFLAGS(&PL_sv_no)          = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12873                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12874
12875     SvANY(&PL_sv_yes)           = new_XPVNV();
12876     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
12877     SvFLAGS(&PL_sv_yes)         = SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
12878                                   |SVp_POK|SVf_POK|SVf_READONLY|SVt_PVNV;
12879
12880     /* dbargs array probably holds garbage */
12881     PL_dbargs           = NULL;
12882
12883     PL_compiling = proto_perl->Icompiling;
12884
12885 #ifdef PERL_DEBUG_READONLY_OPS
12886     PL_slabs = NULL;
12887     PL_slab_count = 0;
12888 #endif
12889
12890     /* pseudo environmental stuff */
12891     PL_origargc         = proto_perl->Iorigargc;
12892     PL_origargv         = proto_perl->Iorigargv;
12893
12894     /* Set tainting stuff before PerlIO_debug can possibly get called */
12895     PL_tainting         = proto_perl->Itainting;
12896     PL_taint_warn       = proto_perl->Itaint_warn;
12897
12898     PL_minus_c          = proto_perl->Iminus_c;
12899
12900     PL_localpatches     = proto_perl->Ilocalpatches;
12901     PL_splitstr         = proto_perl->Isplitstr;
12902     PL_minus_n          = proto_perl->Iminus_n;
12903     PL_minus_p          = proto_perl->Iminus_p;
12904     PL_minus_l          = proto_perl->Iminus_l;
12905     PL_minus_a          = proto_perl->Iminus_a;
12906     PL_minus_E          = proto_perl->Iminus_E;
12907     PL_minus_F          = proto_perl->Iminus_F;
12908     PL_doswitches       = proto_perl->Idoswitches;
12909     PL_dowarn           = proto_perl->Idowarn;
12910     PL_sawampersand     = proto_perl->Isawampersand;
12911     PL_unsafe           = proto_perl->Iunsafe;
12912     PL_perldb           = proto_perl->Iperldb;
12913     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
12914     PL_exit_flags       = proto_perl->Iexit_flags;
12915
12916     /* XXX time(&PL_basetime) when asked for? */
12917     PL_basetime         = proto_perl->Ibasetime;
12918
12919     PL_maxsysfd         = proto_perl->Imaxsysfd;
12920     PL_statusvalue      = proto_perl->Istatusvalue;
12921 #ifdef VMS
12922     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
12923 #else
12924     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
12925 #endif
12926
12927     /* RE engine related */
12928     Zero(&PL_reg_state, 1, struct re_save_state);
12929     PL_reginterp_cnt    = 0;
12930     PL_regmatch_slab    = NULL;
12931
12932     PL_sub_generation   = proto_perl->Isub_generation;
12933
12934     /* funky return mechanisms */
12935     PL_forkprocess      = proto_perl->Iforkprocess;
12936
12937     /* internal state */
12938     PL_maxo             = proto_perl->Imaxo;
12939
12940     PL_main_start       = proto_perl->Imain_start;
12941     PL_eval_root        = proto_perl->Ieval_root;
12942     PL_eval_start       = proto_perl->Ieval_start;
12943
12944     PL_filemode         = proto_perl->Ifilemode;
12945     PL_lastfd           = proto_perl->Ilastfd;
12946     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
12947     PL_Argv             = NULL;
12948     PL_Cmd              = NULL;
12949     PL_gensym           = proto_perl->Igensym;
12950
12951     PL_laststatval      = proto_perl->Ilaststatval;
12952     PL_laststype        = proto_perl->Ilaststype;
12953     PL_mess_sv          = NULL;
12954
12955     PL_profiledata      = NULL;
12956
12957     PL_generation       = proto_perl->Igeneration;
12958
12959     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
12960     PL_in_clean_all     = proto_perl->Iin_clean_all;
12961
12962     PL_uid              = proto_perl->Iuid;
12963     PL_euid             = proto_perl->Ieuid;
12964     PL_gid              = proto_perl->Igid;
12965     PL_egid             = proto_perl->Iegid;
12966     PL_nomemok          = proto_perl->Inomemok;
12967     PL_an               = proto_perl->Ian;
12968     PL_evalseq          = proto_perl->Ievalseq;
12969     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
12970     PL_origalen         = proto_perl->Iorigalen;
12971
12972     PL_sighandlerp      = proto_perl->Isighandlerp;
12973
12974     PL_runops           = proto_perl->Irunops;
12975
12976     PL_subline          = proto_perl->Isubline;
12977
12978 #ifdef FCRYPT
12979     PL_cryptseen        = proto_perl->Icryptseen;
12980 #endif
12981
12982     PL_hints            = proto_perl->Ihints;
12983
12984     PL_amagic_generation        = proto_perl->Iamagic_generation;
12985
12986 #ifdef USE_LOCALE_COLLATE
12987     PL_collation_ix     = proto_perl->Icollation_ix;
12988     PL_collation_standard       = proto_perl->Icollation_standard;
12989     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
12990     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
12991 #endif /* USE_LOCALE_COLLATE */
12992
12993 #ifdef USE_LOCALE_NUMERIC
12994     PL_numeric_standard = proto_perl->Inumeric_standard;
12995     PL_numeric_local    = proto_perl->Inumeric_local;
12996 #endif /* !USE_LOCALE_NUMERIC */
12997
12998     /* Did the locale setup indicate UTF-8? */
12999     PL_utf8locale       = proto_perl->Iutf8locale;
13000     /* Unicode features (see perlrun/-C) */
13001     PL_unicode          = proto_perl->Iunicode;
13002
13003     /* Pre-5.8 signals control */
13004     PL_signals          = proto_perl->Isignals;
13005
13006     /* times() ticks per second */
13007     PL_clocktick        = proto_perl->Iclocktick;
13008
13009     /* Recursion stopper for PerlIO_find_layer */
13010     PL_in_load_module   = proto_perl->Iin_load_module;
13011
13012     /* sort() routine */
13013     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
13014
13015     /* Not really needed/useful since the reenrant_retint is "volatile",
13016      * but do it for consistency's sake. */
13017     PL_reentrant_retint = proto_perl->Ireentrant_retint;
13018
13019     /* Hooks to shared SVs and locks. */
13020     PL_sharehook        = proto_perl->Isharehook;
13021     PL_lockhook         = proto_perl->Ilockhook;
13022     PL_unlockhook       = proto_perl->Iunlockhook;
13023     PL_threadhook       = proto_perl->Ithreadhook;
13024     PL_destroyhook      = proto_perl->Idestroyhook;
13025     PL_signalhook       = proto_perl->Isignalhook;
13026
13027     PL_globhook         = proto_perl->Iglobhook;
13028
13029 #ifdef THREADS_HAVE_PIDS
13030     PL_ppid             = proto_perl->Ippid;
13031 #endif
13032
13033     /* swatch cache */
13034     PL_last_swash_hv    = NULL; /* reinits on demand */
13035     PL_last_swash_klen  = 0;
13036     PL_last_swash_key[0]= '\0';
13037     PL_last_swash_tmps  = (U8*)NULL;
13038     PL_last_swash_slen  = 0;
13039
13040     PL_glob_index       = proto_perl->Iglob_index;
13041     PL_srand_called     = proto_perl->Isrand_called;
13042
13043     if (flags & CLONEf_COPY_STACKS) {
13044         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
13045         PL_tmps_ix              = proto_perl->Itmps_ix;
13046         PL_tmps_max             = proto_perl->Itmps_max;
13047         PL_tmps_floor           = proto_perl->Itmps_floor;
13048
13049         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13050          * NOTE: unlike the others! */
13051         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
13052         PL_scopestack_max       = proto_perl->Iscopestack_max;
13053
13054         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
13055          * NOTE: unlike the others! */
13056         PL_savestack_ix         = proto_perl->Isavestack_ix;
13057         PL_savestack_max        = proto_perl->Isavestack_max;
13058     }
13059
13060     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
13061     PL_top_env          = &PL_start_env;
13062
13063     PL_op               = proto_perl->Iop;
13064
13065     PL_Sv               = NULL;
13066     PL_Xpv              = (XPV*)NULL;
13067     my_perl->Ina        = proto_perl->Ina;
13068
13069     PL_statbuf          = proto_perl->Istatbuf;
13070     PL_statcache        = proto_perl->Istatcache;
13071
13072 #ifdef HAS_TIMES
13073     PL_timesbuf         = proto_perl->Itimesbuf;
13074 #endif
13075
13076     PL_tainted          = proto_perl->Itainted;
13077     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
13078
13079     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
13080
13081     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
13082     PL_restartop        = proto_perl->Irestartop;
13083     PL_in_eval          = proto_perl->Iin_eval;
13084     PL_delaymagic       = proto_perl->Idelaymagic;
13085     PL_phase            = proto_perl->Iphase;
13086     PL_localizing       = proto_perl->Ilocalizing;
13087
13088     PL_hv_fetch_ent_mh  = NULL;
13089     PL_modcount         = proto_perl->Imodcount;
13090     PL_lastgotoprobe    = NULL;
13091     PL_dumpindent       = proto_perl->Idumpindent;
13092
13093     PL_efloatbuf        = NULL;         /* reinits on demand */
13094     PL_efloatsize       = 0;                    /* reinits on demand */
13095
13096     /* regex stuff */
13097
13098     PL_regdummy         = proto_perl->Iregdummy;
13099     PL_colorset         = 0;            /* reinits PL_colors[] */
13100     /*PL_colors[6]      = {0,0,0,0,0,0};*/
13101
13102     /* Pluggable optimizer */
13103     PL_peepp            = proto_perl->Ipeepp;
13104     PL_rpeepp           = proto_perl->Irpeepp;
13105     /* op_free() hook */
13106     PL_opfreehook       = proto_perl->Iopfreehook;
13107
13108 #ifdef USE_REENTRANT_API
13109     /* XXX: things like -Dm will segfault here in perlio, but doing
13110      *  PERL_SET_CONTEXT(proto_perl);
13111      * breaks too many other things
13112      */
13113     Perl_reentrant_init(aTHX);
13114 #endif
13115
13116     /* create SV map for pointer relocation */
13117     PL_ptr_table = ptr_table_new();
13118
13119     /* initialize these special pointers as early as possible */
13120     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
13121
13122     SvANY(&PL_sv_no)            = new_XPVNV();
13123     SvPV_set(&PL_sv_no, savepvn(PL_No, 0));
13124     SvCUR_set(&PL_sv_no, 0);
13125     SvLEN_set(&PL_sv_no, 1);
13126     SvIV_set(&PL_sv_no, 0);
13127     SvNV_set(&PL_sv_no, 0);
13128     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
13129
13130     SvPV_set(&PL_sv_yes, savepvn(PL_Yes, 1));
13131     SvCUR_set(&PL_sv_yes, 1);
13132     SvLEN_set(&PL_sv_yes, 2);
13133     SvIV_set(&PL_sv_yes, 1);
13134     SvNV_set(&PL_sv_yes, 1);
13135     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
13136
13137     /* create (a non-shared!) shared string table */
13138     PL_strtab           = newHV();
13139     HvSHAREKEYS_off(PL_strtab);
13140     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
13141     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
13142
13143     /* These two PVs will be free'd special way so must set them same way op.c does */
13144     PL_compiling.cop_stashpv = savesharedpv(PL_compiling.cop_stashpv);
13145     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_stashpv, PL_compiling.cop_stashpv);
13146
13147     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
13148     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
13149
13150     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
13151     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
13152     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
13153     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
13154
13155     param->stashes      = newAV();  /* Setup array of objects to call clone on */
13156     /* This makes no difference to the implementation, as it always pushes
13157        and shifts pointers to other SVs without changing their reference
13158        count, with the array becoming empty before it is freed. However, it
13159        makes it conceptually clear what is going on, and will avoid some
13160        work inside av.c, filling slots between AvFILL() and AvMAX() with
13161        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
13162     AvREAL_off(param->stashes);
13163
13164     if (!(flags & CLONEf_COPY_STACKS)) {
13165         param->unreferenced = newAV();
13166     }
13167
13168 #ifdef PERLIO_LAYERS
13169     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
13170     PerlIO_clone(aTHX_ proto_perl, param);
13171 #endif
13172
13173     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
13174     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
13175     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
13176     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
13177     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
13178     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
13179
13180     /* switches */
13181     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
13182     PL_apiversion       = sv_dup_inc(proto_perl->Iapiversion, param);
13183     PL_inplace          = SAVEPV(proto_perl->Iinplace);
13184     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
13185
13186     /* magical thingies */
13187     PL_formfeed         = sv_dup(proto_perl->Iformfeed, param);
13188
13189     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
13190
13191     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
13192     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
13193     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
13194
13195    
13196     /* Clone the regex array */
13197     /* ORANGE FIXME for plugins, probably in the SV dup code.
13198        newSViv(PTR2IV(CALLREGDUPE(
13199        INT2PTR(REGEXP *, SvIVX(regex)), param))))
13200     */
13201     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
13202     PL_regex_pad = AvARRAY(PL_regex_padav);
13203
13204     /* shortcuts to various I/O objects */
13205     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
13206     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
13207     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
13208     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
13209     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
13210     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
13211     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
13212
13213     /* shortcuts to regexp stuff */
13214     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
13215
13216     /* shortcuts to misc objects */
13217     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
13218
13219     /* shortcuts to debugging objects */
13220     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
13221     PL_DBline           = gv_dup(proto_perl->IDBline, param);
13222     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
13223     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
13224     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
13225     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
13226
13227     /* symbol tables */
13228     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
13229     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
13230     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
13231     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
13232     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
13233
13234     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
13235     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
13236     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
13237     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
13238     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
13239     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
13240     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
13241     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
13242
13243     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
13244
13245     /* subprocess state */
13246     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
13247
13248     if (proto_perl->Iop_mask)
13249         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
13250     else
13251         PL_op_mask      = NULL;
13252     /* PL_asserting        = proto_perl->Iasserting; */
13253
13254     /* current interpreter roots */
13255     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
13256     OP_REFCNT_LOCK;
13257     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
13258     OP_REFCNT_UNLOCK;
13259
13260     /* runtime control stuff */
13261     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
13262
13263     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
13264
13265     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
13266
13267     /* interpreter atexit processing */
13268     PL_exitlistlen      = proto_perl->Iexitlistlen;
13269     if (PL_exitlistlen) {
13270         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13271         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13272     }
13273     else
13274         PL_exitlist     = (PerlExitListEntry*)NULL;
13275
13276     PL_my_cxt_size = proto_perl->Imy_cxt_size;
13277     if (PL_my_cxt_size) {
13278         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
13279         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
13280 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13281         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
13282         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
13283 #endif
13284     }
13285     else {
13286         PL_my_cxt_list  = (void**)NULL;
13287 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13288         PL_my_cxt_keys  = (const char**)NULL;
13289 #endif
13290     }
13291     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
13292     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
13293     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
13294     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
13295
13296     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
13297
13298     PAD_CLONE_VARS(proto_perl, param);
13299
13300 #ifdef HAVE_INTERP_INTERN
13301     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
13302 #endif
13303
13304     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
13305
13306 #ifdef PERL_USES_PL_PIDSTATUS
13307     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
13308 #endif
13309     PL_osname           = SAVEPV(proto_perl->Iosname);
13310     PL_parser           = parser_dup(proto_perl->Iparser, param);
13311
13312     /* XXX this only works if the saved cop has already been cloned */
13313     if (proto_perl->Iparser) {
13314         PL_parser->saved_curcop = (COP*)any_dup(
13315                                     proto_perl->Iparser->saved_curcop,
13316                                     proto_perl);
13317     }
13318
13319     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
13320
13321 #ifdef USE_LOCALE_COLLATE
13322     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
13323 #endif /* USE_LOCALE_COLLATE */
13324
13325 #ifdef USE_LOCALE_NUMERIC
13326     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
13327     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
13328 #endif /* !USE_LOCALE_NUMERIC */
13329
13330     /* utf8 character classes */
13331     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
13332     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
13333     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
13334     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
13335     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
13336     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
13337     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
13338     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
13339     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
13340     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
13341     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
13342     PL_utf8_X_begin     = sv_dup_inc(proto_perl->Iutf8_X_begin, param);
13343     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
13344     PL_utf8_X_prepend   = sv_dup_inc(proto_perl->Iutf8_X_prepend, param);
13345     PL_utf8_X_non_hangul        = sv_dup_inc(proto_perl->Iutf8_X_non_hangul, param);
13346     PL_utf8_X_L = sv_dup_inc(proto_perl->Iutf8_X_L, param);
13347     PL_utf8_X_LV        = sv_dup_inc(proto_perl->Iutf8_X_LV, param);
13348     PL_utf8_X_LVT       = sv_dup_inc(proto_perl->Iutf8_X_LVT, param);
13349     PL_utf8_X_T = sv_dup_inc(proto_perl->Iutf8_X_T, param);
13350     PL_utf8_X_V = sv_dup_inc(proto_perl->Iutf8_X_V, param);
13351     PL_utf8_X_LV_LVT_V  = sv_dup_inc(proto_perl->Iutf8_X_LV_LVT_V, param);
13352     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
13353     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
13354     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
13355     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
13356     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
13357     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
13358     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
13359     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
13360     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
13361     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
13362
13363
13364     if (proto_perl->Ipsig_pend) {
13365         Newxz(PL_psig_pend, SIG_SIZE, int);
13366     }
13367     else {
13368         PL_psig_pend    = (int*)NULL;
13369     }
13370
13371     if (proto_perl->Ipsig_name) {
13372         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
13373         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
13374                             param);
13375         PL_psig_ptr = PL_psig_name + SIG_SIZE;
13376     }
13377     else {
13378         PL_psig_ptr     = (SV**)NULL;
13379         PL_psig_name    = (SV**)NULL;
13380     }
13381
13382     if (flags & CLONEf_COPY_STACKS) {
13383         Newx(PL_tmps_stack, PL_tmps_max, SV*);
13384         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
13385                             PL_tmps_ix+1, param);
13386
13387         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
13388         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
13389         Newxz(PL_markstack, i, I32);
13390         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
13391                                                   - proto_perl->Imarkstack);
13392         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
13393                                                   - proto_perl->Imarkstack);
13394         Copy(proto_perl->Imarkstack, PL_markstack,
13395              PL_markstack_ptr - PL_markstack + 1, I32);
13396
13397         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13398          * NOTE: unlike the others! */
13399         Newxz(PL_scopestack, PL_scopestack_max, I32);
13400         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
13401
13402 #ifdef DEBUGGING
13403         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
13404         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
13405 #endif
13406         /* NOTE: si_dup() looks at PL_markstack */
13407         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
13408
13409         /* PL_curstack          = PL_curstackinfo->si_stack; */
13410         PL_curstack             = av_dup(proto_perl->Icurstack, param);
13411         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
13412
13413         /* next PUSHs() etc. set *(PL_stack_sp+1) */
13414         PL_stack_base           = AvARRAY(PL_curstack);
13415         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
13416                                                    - proto_perl->Istack_base);
13417         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
13418
13419         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
13420         PL_savestack            = ss_dup(proto_perl, param);
13421     }
13422     else {
13423         init_stacks();
13424         ENTER;                  /* perl_destruct() wants to LEAVE; */
13425     }
13426
13427     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
13428     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
13429
13430     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
13431     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
13432     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
13433     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
13434     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
13435     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
13436
13437     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
13438
13439     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
13440     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
13441     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
13442     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
13443
13444     PL_stashcache       = newHV();
13445
13446     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
13447                                             proto_perl->Iwatchaddr);
13448     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
13449     if (PL_debug && PL_watchaddr) {
13450         PerlIO_printf(Perl_debug_log,
13451           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
13452           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
13453           PTR2UV(PL_watchok));
13454     }
13455
13456     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
13457     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
13458     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
13459
13460     /* Call the ->CLONE method, if it exists, for each of the stashes
13461        identified by sv_dup() above.
13462     */
13463     while(av_len(param->stashes) != -1) {
13464         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
13465         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
13466         if (cloner && GvCV(cloner)) {
13467             dSP;
13468             ENTER;
13469             SAVETMPS;
13470             PUSHMARK(SP);
13471             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
13472             PUTBACK;
13473             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
13474             FREETMPS;
13475             LEAVE;
13476         }
13477     }
13478
13479     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
13480         ptr_table_free(PL_ptr_table);
13481         PL_ptr_table = NULL;
13482     }
13483
13484     if (!(flags & CLONEf_COPY_STACKS)) {
13485         unreferenced_to_tmp_stack(param->unreferenced);
13486     }
13487
13488     SvREFCNT_dec(param->stashes);
13489
13490     /* orphaned? eg threads->new inside BEGIN or use */
13491     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
13492         SvREFCNT_inc_simple_void(PL_compcv);
13493         SAVEFREESV(PL_compcv);
13494     }
13495
13496     return my_perl;
13497 }
13498
13499 static void
13500 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
13501 {
13502     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
13503     
13504     if (AvFILLp(unreferenced) > -1) {
13505         SV **svp = AvARRAY(unreferenced);
13506         SV **const last = svp + AvFILLp(unreferenced);
13507         SSize_t count = 0;
13508
13509         do {
13510             if (SvREFCNT(*svp) == 1)
13511                 ++count;
13512         } while (++svp <= last);
13513
13514         EXTEND_MORTAL(count);
13515         svp = AvARRAY(unreferenced);
13516
13517         do {
13518             if (SvREFCNT(*svp) == 1) {
13519                 /* Our reference is the only one to this SV. This means that
13520                    in this thread, the scalar effectively has a 0 reference.
13521                    That doesn't work (cleanup never happens), so donate our
13522                    reference to it onto the save stack. */
13523                 PL_tmps_stack[++PL_tmps_ix] = *svp;
13524             } else {
13525                 /* As an optimisation, because we are already walking the
13526                    entire array, instead of above doing either
13527                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
13528                    release our reference to the scalar, so that at the end of
13529                    the array owns zero references to the scalars it happens to
13530                    point to. We are effectively converting the array from
13531                    AvREAL() on to AvREAL() off. This saves the av_clear()
13532                    (triggered by the SvREFCNT_dec(unreferenced) below) from
13533                    walking the array a second time.  */
13534                 SvREFCNT_dec(*svp);
13535             }
13536
13537         } while (++svp <= last);
13538         AvREAL_off(unreferenced);
13539     }
13540     SvREFCNT_dec(unreferenced);
13541 }
13542
13543 void
13544 Perl_clone_params_del(CLONE_PARAMS *param)
13545 {
13546     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
13547        happy: */
13548     PerlInterpreter *const to = param->new_perl;
13549     dTHXa(to);
13550     PerlInterpreter *const was = PERL_GET_THX;
13551
13552     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
13553
13554     if (was != to) {
13555         PERL_SET_THX(to);
13556     }
13557
13558     SvREFCNT_dec(param->stashes);
13559     if (param->unreferenced)
13560         unreferenced_to_tmp_stack(param->unreferenced);
13561
13562     Safefree(param);
13563
13564     if (was != to) {
13565         PERL_SET_THX(was);
13566     }
13567 }
13568
13569 CLONE_PARAMS *
13570 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
13571 {
13572     dVAR;
13573     /* Need to play this game, as newAV() can call safesysmalloc(), and that
13574        does a dTHX; to get the context from thread local storage.
13575        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
13576        a version that passes in my_perl.  */
13577     PerlInterpreter *const was = PERL_GET_THX;
13578     CLONE_PARAMS *param;
13579
13580     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
13581
13582     if (was != to) {
13583         PERL_SET_THX(to);
13584     }
13585
13586     /* Given that we've set the context, we can do this unshared.  */
13587     Newx(param, 1, CLONE_PARAMS);
13588
13589     param->flags = 0;
13590     param->proto_perl = from;
13591     param->new_perl = to;
13592     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
13593     AvREAL_off(param->stashes);
13594     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
13595
13596     if (was != to) {
13597         PERL_SET_THX(was);
13598     }
13599     return param;
13600 }
13601
13602 #endif /* USE_ITHREADS */
13603
13604 /*
13605 =head1 Unicode Support
13606
13607 =for apidoc sv_recode_to_utf8
13608
13609 The encoding is assumed to be an Encode object, on entry the PV
13610 of the sv is assumed to be octets in that encoding, and the sv
13611 will be converted into Unicode (and UTF-8).
13612
13613 If the sv already is UTF-8 (or if it is not POK), or if the encoding
13614 is not a reference, nothing is done to the sv.  If the encoding is not
13615 an C<Encode::XS> Encoding object, bad things will happen.
13616 (See F<lib/encoding.pm> and L<Encode>.)
13617
13618 The PV of the sv is returned.
13619
13620 =cut */
13621
13622 char *
13623 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
13624 {
13625     dVAR;
13626
13627     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
13628
13629     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
13630         SV *uni;
13631         STRLEN len;
13632         const char *s;
13633         dSP;
13634         ENTER;
13635         SAVETMPS;
13636         save_re_context();
13637         PUSHMARK(sp);
13638         EXTEND(SP, 3);
13639         XPUSHs(encoding);
13640         XPUSHs(sv);
13641 /*
13642   NI-S 2002/07/09
13643   Passing sv_yes is wrong - it needs to be or'ed set of constants
13644   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
13645   remove converted chars from source.
13646
13647   Both will default the value - let them.
13648
13649         XPUSHs(&PL_sv_yes);
13650 */
13651         PUTBACK;
13652         call_method("decode", G_SCALAR);
13653         SPAGAIN;
13654         uni = POPs;
13655         PUTBACK;
13656         s = SvPV_const(uni, len);
13657         if (s != SvPVX_const(sv)) {
13658             SvGROW(sv, len + 1);
13659             Move(s, SvPVX(sv), len + 1, char);
13660             SvCUR_set(sv, len);
13661         }
13662         FREETMPS;
13663         LEAVE;
13664         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
13665             /* clear pos and any utf8 cache */
13666             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
13667             if (mg)
13668                 mg->mg_len = -1;
13669             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
13670                 magic_setutf8(sv,mg); /* clear UTF8 cache */
13671         }
13672         SvUTF8_on(sv);
13673         return SvPVX(sv);
13674     }
13675     return SvPOKp(sv) ? SvPVX(sv) : NULL;
13676 }
13677
13678 /*
13679 =for apidoc sv_cat_decode
13680
13681 The encoding is assumed to be an Encode object, the PV of the ssv is
13682 assumed to be octets in that encoding and decoding the input starts
13683 from the position which (PV + *offset) pointed to.  The dsv will be
13684 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
13685 when the string tstr appears in decoding output or the input ends on
13686 the PV of the ssv.  The value which the offset points will be modified
13687 to the last input position on the ssv.
13688
13689 Returns TRUE if the terminator was found, else returns FALSE.
13690
13691 =cut */
13692
13693 bool
13694 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
13695                    SV *ssv, int *offset, char *tstr, int tlen)
13696 {
13697     dVAR;
13698     bool ret = FALSE;
13699
13700     PERL_ARGS_ASSERT_SV_CAT_DECODE;
13701
13702     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
13703         SV *offsv;
13704         dSP;
13705         ENTER;
13706         SAVETMPS;
13707         save_re_context();
13708         PUSHMARK(sp);
13709         EXTEND(SP, 6);
13710         XPUSHs(encoding);
13711         XPUSHs(dsv);
13712         XPUSHs(ssv);
13713         offsv = newSViv(*offset);
13714         mXPUSHs(offsv);
13715         mXPUSHp(tstr, tlen);
13716         PUTBACK;
13717         call_method("cat_decode", G_SCALAR);
13718         SPAGAIN;
13719         ret = SvTRUE(TOPs);
13720         *offset = SvIV(offsv);
13721         PUTBACK;
13722         FREETMPS;
13723         LEAVE;
13724     }
13725     else
13726         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
13727     return ret;
13728
13729 }
13730
13731 /* ---------------------------------------------------------------------
13732  *
13733  * support functions for report_uninit()
13734  */
13735
13736 /* the maxiumum size of array or hash where we will scan looking
13737  * for the undefined element that triggered the warning */
13738
13739 #define FUV_MAX_SEARCH_SIZE 1000
13740
13741 /* Look for an entry in the hash whose value has the same SV as val;
13742  * If so, return a mortal copy of the key. */
13743
13744 STATIC SV*
13745 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
13746 {
13747     dVAR;
13748     register HE **array;
13749     I32 i;
13750
13751     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
13752
13753     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
13754                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
13755         return NULL;
13756
13757     array = HvARRAY(hv);
13758
13759     for (i=HvMAX(hv); i>0; i--) {
13760         register HE *entry;
13761         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
13762             if (HeVAL(entry) != val)
13763                 continue;
13764             if (    HeVAL(entry) == &PL_sv_undef ||
13765                     HeVAL(entry) == &PL_sv_placeholder)
13766                 continue;
13767             if (!HeKEY(entry))
13768                 return NULL;
13769             if (HeKLEN(entry) == HEf_SVKEY)
13770                 return sv_mortalcopy(HeKEY_sv(entry));
13771             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
13772         }
13773     }
13774     return NULL;
13775 }
13776
13777 /* Look for an entry in the array whose value has the same SV as val;
13778  * If so, return the index, otherwise return -1. */
13779
13780 STATIC I32
13781 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
13782 {
13783     dVAR;
13784
13785     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
13786
13787     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
13788                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
13789         return -1;
13790
13791     if (val != &PL_sv_undef) {
13792         SV ** const svp = AvARRAY(av);
13793         I32 i;
13794
13795         for (i=AvFILLp(av); i>=0; i--)
13796             if (svp[i] == val)
13797                 return i;
13798     }
13799     return -1;
13800 }
13801
13802 /* S_varname(): return the name of a variable, optionally with a subscript.
13803  * If gv is non-zero, use the name of that global, along with gvtype (one
13804  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
13805  * targ.  Depending on the value of the subscript_type flag, return:
13806  */
13807
13808 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
13809 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
13810 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
13811 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
13812
13813 SV*
13814 Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
13815         const SV *const keyname, I32 aindex, int subscript_type)
13816 {
13817
13818     SV * const name = sv_newmortal();
13819     if (gv) {
13820         char buffer[2];
13821         buffer[0] = gvtype;
13822         buffer[1] = 0;
13823
13824         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
13825
13826         gv_fullname4(name, gv, buffer, 0);
13827
13828         if ((unsigned int)SvPVX(name)[1] <= 26) {
13829             buffer[0] = '^';
13830             buffer[1] = SvPVX(name)[1] + 'A' - 1;
13831
13832             /* Swap the 1 unprintable control character for the 2 byte pretty
13833                version - ie substr($name, 1, 1) = $buffer; */
13834             sv_insert(name, 1, 1, buffer, 2);
13835         }
13836     }
13837     else {
13838         CV * const cv = find_runcv(NULL);
13839         SV *sv;
13840         AV *av;
13841
13842         if (!cv || !CvPADLIST(cv))
13843             return NULL;
13844         av = MUTABLE_AV((*av_fetch(CvPADLIST(cv), 0, FALSE)));
13845         sv = *av_fetch(av, targ, FALSE);
13846         sv_setsv(name, sv);
13847     }
13848
13849     if (subscript_type == FUV_SUBSCRIPT_HASH) {
13850         SV * const sv = newSV(0);
13851         *SvPVX(name) = '$';
13852         Perl_sv_catpvf(aTHX_ name, "{%s}",
13853             pv_display(sv,SvPVX_const(keyname), SvCUR(keyname), 0, 32));
13854         SvREFCNT_dec(sv);
13855     }
13856     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
13857         *SvPVX(name) = '$';
13858         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
13859     }
13860     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
13861         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
13862         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
13863     }
13864
13865     return name;
13866 }
13867
13868
13869 /*
13870 =for apidoc find_uninit_var
13871
13872 Find the name of the undefined variable (if any) that caused the operator
13873 to issue a "Use of uninitialized value" warning.
13874 If match is true, only return a name if its value matches uninit_sv.
13875 So roughly speaking, if a unary operator (such as OP_COS) generates a
13876 warning, then following the direct child of the op may yield an
13877 OP_PADSV or OP_GV that gives the name of the undefined variable.  On the
13878 other hand, with OP_ADD there are two branches to follow, so we only print
13879 the variable name if we get an exact match.
13880
13881 The name is returned as a mortal SV.
13882
13883 Assumes that PL_op is the op that originally triggered the error, and that
13884 PL_comppad/PL_curpad points to the currently executing pad.
13885
13886 =cut
13887 */
13888
13889 STATIC SV *
13890 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
13891                   bool match)
13892 {
13893     dVAR;
13894     SV *sv;
13895     const GV *gv;
13896     const OP *o, *o2, *kid;
13897
13898     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
13899                             uninit_sv == &PL_sv_placeholder)))
13900         return NULL;
13901
13902     switch (obase->op_type) {
13903
13904     case OP_RV2AV:
13905     case OP_RV2HV:
13906     case OP_PADAV:
13907     case OP_PADHV:
13908       {
13909         const bool pad  = (obase->op_type == OP_PADAV || obase->op_type == OP_PADHV);
13910         const bool hash = (obase->op_type == OP_PADHV || obase->op_type == OP_RV2HV);
13911         I32 index = 0;
13912         SV *keysv = NULL;
13913         int subscript_type = FUV_SUBSCRIPT_WITHIN;
13914
13915         if (pad) { /* @lex, %lex */
13916             sv = PAD_SVl(obase->op_targ);
13917             gv = NULL;
13918         }
13919         else {
13920             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
13921             /* @global, %global */
13922                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
13923                 if (!gv)
13924                     break;
13925                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
13926             }
13927             else if (obase == PL_op) /* @{expr}, %{expr} */
13928                 return find_uninit_var(cUNOPx(obase)->op_first,
13929                                                     uninit_sv, match);
13930             else /* @{expr}, %{expr} as a sub-expression */
13931                 return NULL;
13932         }
13933
13934         /* attempt to find a match within the aggregate */
13935         if (hash) {
13936             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
13937             if (keysv)
13938                 subscript_type = FUV_SUBSCRIPT_HASH;
13939         }
13940         else {
13941             index = find_array_subscript((const AV *)sv, uninit_sv);
13942             if (index >= 0)
13943                 subscript_type = FUV_SUBSCRIPT_ARRAY;
13944         }
13945
13946         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
13947             break;
13948
13949         return varname(gv, hash ? '%' : '@', obase->op_targ,
13950                                     keysv, index, subscript_type);
13951       }
13952
13953     case OP_RV2SV:
13954         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
13955             /* $global */
13956             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
13957             if (!gv || !GvSTASH(gv))
13958                 break;
13959             if (match && (GvSV(gv) != uninit_sv))
13960                 break;
13961             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
13962         }
13963         /* ${expr} */
13964         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
13965
13966     case OP_PADSV:
13967         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
13968             break;
13969         return varname(NULL, '$', obase->op_targ,
13970                                     NULL, 0, FUV_SUBSCRIPT_NONE);
13971
13972     case OP_GVSV:
13973         gv = cGVOPx_gv(obase);
13974         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
13975             break;
13976         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
13977
13978     case OP_AELEMFAST_LEX:
13979         if (match) {
13980             SV **svp;
13981             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
13982             if (!av || SvRMAGICAL(av))
13983                 break;
13984             svp = av_fetch(av, (I32)obase->op_private, FALSE);
13985             if (!svp || *svp != uninit_sv)
13986                 break;
13987         }
13988         return varname(NULL, '$', obase->op_targ,
13989                        NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
13990     case OP_AELEMFAST:
13991         {
13992             gv = cGVOPx_gv(obase);
13993             if (!gv)
13994                 break;
13995             if (match) {
13996                 SV **svp;
13997                 AV *const av = GvAV(gv);
13998                 if (!av || SvRMAGICAL(av))
13999                     break;
14000                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
14001                 if (!svp || *svp != uninit_sv)
14002                     break;
14003             }
14004             return varname(gv, '$', 0,
14005                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14006         }
14007         break;
14008
14009     case OP_EXISTS:
14010         o = cUNOPx(obase)->op_first;
14011         if (!o || o->op_type != OP_NULL ||
14012                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
14013             break;
14014         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
14015
14016     case OP_AELEM:
14017     case OP_HELEM:
14018     {
14019         bool negate = FALSE;
14020
14021         if (PL_op == obase)
14022             /* $a[uninit_expr] or $h{uninit_expr} */
14023             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
14024
14025         gv = NULL;
14026         o = cBINOPx(obase)->op_first;
14027         kid = cBINOPx(obase)->op_last;
14028
14029         /* get the av or hv, and optionally the gv */
14030         sv = NULL;
14031         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
14032             sv = PAD_SV(o->op_targ);
14033         }
14034         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
14035                 && cUNOPo->op_first->op_type == OP_GV)
14036         {
14037             gv = cGVOPx_gv(cUNOPo->op_first);
14038             if (!gv)
14039                 break;
14040             sv = o->op_type
14041                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
14042         }
14043         if (!sv)
14044             break;
14045
14046         if (kid && kid->op_type == OP_NEGATE) {
14047             negate = TRUE;
14048             kid = cUNOPx(kid)->op_first;
14049         }
14050
14051         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
14052             /* index is constant */
14053             SV* kidsv;
14054             if (negate) {
14055                 kidsv = sv_2mortal(newSVpvs("-"));
14056                 sv_catsv(kidsv, cSVOPx_sv(kid));
14057             }
14058             else
14059                 kidsv = cSVOPx_sv(kid);
14060             if (match) {
14061                 if (SvMAGICAL(sv))
14062                     break;
14063                 if (obase->op_type == OP_HELEM) {
14064                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
14065                     if (!he || HeVAL(he) != uninit_sv)
14066                         break;
14067                 }
14068                 else {
14069                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
14070                         negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14071                         FALSE);
14072                     if (!svp || *svp != uninit_sv)
14073                         break;
14074                 }
14075             }
14076             if (obase->op_type == OP_HELEM)
14077                 return varname(gv, '%', o->op_targ,
14078                             kidsv, 0, FUV_SUBSCRIPT_HASH);
14079             else
14080                 return varname(gv, '@', o->op_targ, NULL,
14081                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14082                     FUV_SUBSCRIPT_ARRAY);
14083         }
14084         else  {
14085             /* index is an expression;
14086              * attempt to find a match within the aggregate */
14087             if (obase->op_type == OP_HELEM) {
14088                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14089                 if (keysv)
14090                     return varname(gv, '%', o->op_targ,
14091                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
14092             }
14093             else {
14094                 const I32 index
14095                     = find_array_subscript((const AV *)sv, uninit_sv);
14096                 if (index >= 0)
14097                     return varname(gv, '@', o->op_targ,
14098                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
14099             }
14100             if (match)
14101                 break;
14102             return varname(gv,
14103                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
14104                 ? '@' : '%',
14105                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
14106         }
14107         break;
14108     }
14109
14110     case OP_AASSIGN:
14111         /* only examine RHS */
14112         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
14113
14114     case OP_OPEN:
14115         o = cUNOPx(obase)->op_first;
14116         if (o->op_type == OP_PUSHMARK)
14117             o = o->op_sibling;
14118
14119         if (!o->op_sibling) {
14120             /* one-arg version of open is highly magical */
14121
14122             if (o->op_type == OP_GV) { /* open FOO; */
14123                 gv = cGVOPx_gv(o);
14124                 if (match && GvSV(gv) != uninit_sv)
14125                     break;
14126                 return varname(gv, '$', 0,
14127                             NULL, 0, FUV_SUBSCRIPT_NONE);
14128             }
14129             /* other possibilities not handled are:
14130              * open $x; or open my $x;  should return '${*$x}'
14131              * open expr;               should return '$'.expr ideally
14132              */
14133              break;
14134         }
14135         goto do_op;
14136
14137     /* ops where $_ may be an implicit arg */
14138     case OP_TRANS:
14139     case OP_TRANSR:
14140     case OP_SUBST:
14141     case OP_MATCH:
14142         if ( !(obase->op_flags & OPf_STACKED)) {
14143             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
14144                                  ? PAD_SVl(obase->op_targ)
14145                                  : DEFSV))
14146             {
14147                 sv = sv_newmortal();
14148                 sv_setpvs(sv, "$_");
14149                 return sv;
14150             }
14151         }
14152         goto do_op;
14153
14154     case OP_PRTF:
14155     case OP_PRINT:
14156     case OP_SAY:
14157         match = 1; /* print etc can return undef on defined args */
14158         /* skip filehandle as it can't produce 'undef' warning  */
14159         o = cUNOPx(obase)->op_first;
14160         if ((obase->op_flags & OPf_STACKED) && o->op_type == OP_PUSHMARK)
14161             o = o->op_sibling->op_sibling;
14162         goto do_op2;
14163
14164
14165     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
14166     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
14167
14168         /* the following ops are capable of returning PL_sv_undef even for
14169          * defined arg(s) */
14170
14171     case OP_BACKTICK:
14172     case OP_PIPE_OP:
14173     case OP_FILENO:
14174     case OP_BINMODE:
14175     case OP_TIED:
14176     case OP_GETC:
14177     case OP_SYSREAD:
14178     case OP_SEND:
14179     case OP_IOCTL:
14180     case OP_SOCKET:
14181     case OP_SOCKPAIR:
14182     case OP_BIND:
14183     case OP_CONNECT:
14184     case OP_LISTEN:
14185     case OP_ACCEPT:
14186     case OP_SHUTDOWN:
14187     case OP_SSOCKOPT:
14188     case OP_GETPEERNAME:
14189     case OP_FTRREAD:
14190     case OP_FTRWRITE:
14191     case OP_FTREXEC:
14192     case OP_FTROWNED:
14193     case OP_FTEREAD:
14194     case OP_FTEWRITE:
14195     case OP_FTEEXEC:
14196     case OP_FTEOWNED:
14197     case OP_FTIS:
14198     case OP_FTZERO:
14199     case OP_FTSIZE:
14200     case OP_FTFILE:
14201     case OP_FTDIR:
14202     case OP_FTLINK:
14203     case OP_FTPIPE:
14204     case OP_FTSOCK:
14205     case OP_FTBLK:
14206     case OP_FTCHR:
14207     case OP_FTTTY:
14208     case OP_FTSUID:
14209     case OP_FTSGID:
14210     case OP_FTSVTX:
14211     case OP_FTTEXT:
14212     case OP_FTBINARY:
14213     case OP_FTMTIME:
14214     case OP_FTATIME:
14215     case OP_FTCTIME:
14216     case OP_READLINK:
14217     case OP_OPEN_DIR:
14218     case OP_READDIR:
14219     case OP_TELLDIR:
14220     case OP_SEEKDIR:
14221     case OP_REWINDDIR:
14222     case OP_CLOSEDIR:
14223     case OP_GMTIME:
14224     case OP_ALARM:
14225     case OP_SEMGET:
14226     case OP_GETLOGIN:
14227     case OP_UNDEF:
14228     case OP_SUBSTR:
14229     case OP_AEACH:
14230     case OP_EACH:
14231     case OP_SORT:
14232     case OP_CALLER:
14233     case OP_DOFILE:
14234     case OP_PROTOTYPE:
14235     case OP_NCMP:
14236     case OP_SMARTMATCH:
14237     case OP_UNPACK:
14238     case OP_SYSOPEN:
14239     case OP_SYSSEEK:
14240         match = 1;
14241         goto do_op;
14242
14243     case OP_ENTERSUB:
14244     case OP_GOTO:
14245         /* XXX tmp hack: these two may call an XS sub, and currently
14246           XS subs don't have a SUB entry on the context stack, so CV and
14247           pad determination goes wrong, and BAD things happen. So, just
14248           don't try to determine the value under those circumstances.
14249           Need a better fix at dome point. DAPM 11/2007 */
14250         break;
14251
14252     case OP_FLIP:
14253     case OP_FLOP:
14254     {
14255         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
14256         if (gv && GvSV(gv) == uninit_sv)
14257             return newSVpvs_flags("$.", SVs_TEMP);
14258         goto do_op;
14259     }
14260
14261     case OP_POS:
14262         /* def-ness of rval pos() is independent of the def-ness of its arg */
14263         if ( !(obase->op_flags & OPf_MOD))
14264             break;
14265
14266     case OP_SCHOMP:
14267     case OP_CHOMP:
14268         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
14269             return newSVpvs_flags("${$/}", SVs_TEMP);
14270         /*FALLTHROUGH*/
14271
14272     default:
14273     do_op:
14274         if (!(obase->op_flags & OPf_KIDS))
14275             break;
14276         o = cUNOPx(obase)->op_first;
14277         
14278     do_op2:
14279         if (!o)
14280             break;
14281
14282         /* This loop checks all the kid ops, skipping any that cannot pos-
14283          * sibly be responsible for the uninitialized value; i.e., defined
14284          * constants and ops that return nothing.  If there is only one op
14285          * left that is not skipped, then we *know* it is responsible for
14286          * the uninitialized value.  If there is more than one op left, we
14287          * have to look for an exact match in the while() loop below.
14288          */
14289         o2 = NULL;
14290         for (kid=o; kid; kid = kid->op_sibling) {
14291             if (kid) {
14292                 const OPCODE type = kid->op_type;
14293                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
14294                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
14295                   || (type == OP_PUSHMARK)
14296                 )
14297                 continue;
14298             }
14299             if (o2) { /* more than one found */
14300                 o2 = NULL;
14301                 break;
14302             }
14303             o2 = kid;
14304         }
14305         if (o2)
14306             return find_uninit_var(o2, uninit_sv, match);
14307
14308         /* scan all args */
14309         while (o) {
14310             sv = find_uninit_var(o, uninit_sv, 1);
14311             if (sv)
14312                 return sv;
14313             o = o->op_sibling;
14314         }
14315         break;
14316     }
14317     return NULL;
14318 }
14319
14320
14321 /*
14322 =for apidoc report_uninit
14323
14324 Print appropriate "Use of uninitialized variable" warning.
14325
14326 =cut
14327 */
14328
14329 void
14330 Perl_report_uninit(pTHX_ const SV *uninit_sv)
14331 {
14332     dVAR;
14333     if (PL_op) {
14334         SV* varname = NULL;
14335         if (uninit_sv && PL_curpad) {
14336             varname = find_uninit_var(PL_op, uninit_sv,0);
14337             if (varname)
14338                 sv_insert(varname, 0, 0, " ", 1);
14339         }
14340         /* diag_listed_as: Use of uninitialized value%s */
14341         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
14342                 SVfARG(varname ? varname : &PL_sv_no),
14343                 " in ", OP_DESC(PL_op));
14344     }
14345     else
14346         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
14347                     "", "", "");
14348 }
14349
14350 /*
14351  * Local variables:
14352  * c-indentation-style: bsd
14353  * c-basic-offset: 4
14354  * indent-tabs-mode: t
14355  * End:
14356  *
14357  * ex: set ts=8 sts=4 sw=4 noet:
14358  */