This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Consolidate any single pad ops after a padrange
[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) STMT_START { \
186         if ((sv)->sv_debug_file) PerlMemShared_free((sv)->sv_debug_file); \
187     } STMT_END
188 #  define DEBUG_SV_SERIAL(sv)                                               \
189     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) del_SV\n",    \
190             PTR2UV(sv), (long)(sv)->sv_debug_serial))
191 #else
192 #  define FREE_SV_DEBUG_FILE(sv)
193 #  define DEBUG_SV_SERIAL(sv)   NOOP
194 #endif
195
196 #ifdef PERL_POISON
197 #  define SvARENA_CHAIN(sv)     ((sv)->sv_u.svu_rv)
198 #  define SvARENA_CHAIN_SET(sv,val)     (sv)->sv_u.svu_rv = MUTABLE_SV((val))
199 /* Whilst I'd love to do this, it seems that things like to check on
200    unreferenced scalars
201 #  define POSION_SV_HEAD(sv)    PoisonNew(sv, 1, struct STRUCT_SV)
202 */
203 #  define POSION_SV_HEAD(sv)    PoisonNew(&SvANY(sv), 1, void *), \
204                                 PoisonNew(&SvREFCNT(sv), 1, U32)
205 #else
206 #  define SvARENA_CHAIN(sv)     SvANY(sv)
207 #  define SvARENA_CHAIN_SET(sv,val)     SvANY(sv) = (void *)(val)
208 #  define POSION_SV_HEAD(sv)
209 #endif
210
211 /* Mark an SV head as unused, and add to free list.
212  *
213  * If SVf_BREAK is set, skip adding it to the free list, as this SV had
214  * its refcount artificially decremented during global destruction, so
215  * there may be dangling pointers to it. The last thing we want in that
216  * case is for it to be reused. */
217
218 #define plant_SV(p) \
219     STMT_START {                                        \
220         const U32 old_flags = SvFLAGS(p);                       \
221         MEM_LOG_DEL_SV(p, __FILE__, __LINE__, FUNCTION__);  \
222         DEBUG_SV_SERIAL(p);                             \
223         FREE_SV_DEBUG_FILE(p);                          \
224         POSION_SV_HEAD(p);                              \
225         SvFLAGS(p) = SVTYPEMASK;                        \
226         if (!(old_flags & SVf_BREAK)) {         \
227             SvARENA_CHAIN_SET(p, PL_sv_root);   \
228             PL_sv_root = (p);                           \
229         }                                               \
230         --PL_sv_count;                                  \
231     } STMT_END
232
233 #define uproot_SV(p) \
234     STMT_START {                                        \
235         (p) = PL_sv_root;                               \
236         PL_sv_root = MUTABLE_SV(SvARENA_CHAIN(p));              \
237         ++PL_sv_count;                                  \
238     } STMT_END
239
240
241 /* make some more SVs by adding another arena */
242
243 STATIC SV*
244 S_more_sv(pTHX)
245 {
246     dVAR;
247     SV* sv;
248     char *chunk;                /* must use New here to match call to */
249     Newx(chunk,PERL_ARENA_SIZE,char);  /* Safefree() in sv_free_arenas() */
250     sv_add_arena(chunk, PERL_ARENA_SIZE, 0);
251     uproot_SV(sv);
252     return sv;
253 }
254
255 /* new_SV(): return a new, empty SV head */
256
257 #ifdef DEBUG_LEAKING_SCALARS
258 /* provide a real function for a debugger to play with */
259 STATIC SV*
260 S_new_SV(pTHX_ const char *file, int line, const char *func)
261 {
262     SV* sv;
263
264     if (PL_sv_root)
265         uproot_SV(sv);
266     else
267         sv = S_more_sv(aTHX);
268     SvANY(sv) = 0;
269     SvREFCNT(sv) = 1;
270     SvFLAGS(sv) = 0;
271     sv->sv_debug_optype = PL_op ? PL_op->op_type : 0;
272     sv->sv_debug_line = (U16) (PL_parser && PL_parser->copline != NOLINE
273                 ? PL_parser->copline
274                 :  PL_curcop
275                     ? CopLINE(PL_curcop)
276                     : 0
277             );
278     sv->sv_debug_inpad = 0;
279     sv->sv_debug_parent = NULL;
280     sv->sv_debug_file = PL_curcop ? savesharedpv(CopFILE(PL_curcop)): NULL;
281
282     sv->sv_debug_serial = PL_sv_serial++;
283
284     MEM_LOG_NEW_SV(sv, file, line, func);
285     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%"UVxf": (%05ld) new_SV (from %s:%d [%s])\n",
286             PTR2UV(sv), (long)sv->sv_debug_serial, file, line, func));
287
288     return sv;
289 }
290 #  define new_SV(p) (p)=S_new_SV(aTHX_ __FILE__, __LINE__, FUNCTION__)
291
292 #else
293 #  define new_SV(p) \
294     STMT_START {                                        \
295         if (PL_sv_root)                                 \
296             uproot_SV(p);                               \
297         else                                            \
298             (p) = S_more_sv(aTHX);                      \
299         SvANY(p) = 0;                                   \
300         SvREFCNT(p) = 1;                                \
301         SvFLAGS(p) = 0;                                 \
302         MEM_LOG_NEW_SV(p, __FILE__, __LINE__, FUNCTION__);  \
303     } STMT_END
304 #endif
305
306
307 /* del_SV(): return an empty SV head to the free list */
308
309 #ifdef DEBUGGING
310
311 #define del_SV(p) \
312     STMT_START {                                        \
313         if (DEBUG_D_TEST)                               \
314             del_sv(p);                                  \
315         else                                            \
316             plant_SV(p);                                \
317     } STMT_END
318
319 STATIC void
320 S_del_sv(pTHX_ SV *p)
321 {
322     dVAR;
323
324     PERL_ARGS_ASSERT_DEL_SV;
325
326     if (DEBUG_D_TEST) {
327         SV* sva;
328         bool ok = 0;
329         for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
330             const SV * const sv = sva + 1;
331             const SV * const svend = &sva[SvREFCNT(sva)];
332             if (p >= sv && p < svend) {
333                 ok = 1;
334                 break;
335             }
336         }
337         if (!ok) {
338             Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
339                              "Attempt to free non-arena SV: 0x%"UVxf
340                              pTHX__FORMAT, PTR2UV(p) pTHX__VALUE);
341             return;
342         }
343     }
344     plant_SV(p);
345 }
346
347 #else /* ! DEBUGGING */
348
349 #define del_SV(p)   plant_SV(p)
350
351 #endif /* DEBUGGING */
352
353
354 /*
355 =head1 SV Manipulation Functions
356
357 =for apidoc sv_add_arena
358
359 Given a chunk of memory, link it to the head of the list of arenas,
360 and split it into a list of free SVs.
361
362 =cut
363 */
364
365 static void
366 S_sv_add_arena(pTHX_ char *const ptr, const U32 size, const U32 flags)
367 {
368     dVAR;
369     SV *const sva = MUTABLE_SV(ptr);
370     SV* sv;
371     SV* svend;
372
373     PERL_ARGS_ASSERT_SV_ADD_ARENA;
374
375     /* The first SV in an arena isn't an SV. */
376     SvANY(sva) = (void *) PL_sv_arenaroot;              /* ptr to next arena */
377     SvREFCNT(sva) = size / sizeof(SV);          /* number of SV slots */
378     SvFLAGS(sva) = flags;                       /* FAKE if not to be freed */
379
380     PL_sv_arenaroot = sva;
381     PL_sv_root = sva + 1;
382
383     svend = &sva[SvREFCNT(sva) - 1];
384     sv = sva + 1;
385     while (sv < svend) {
386         SvARENA_CHAIN_SET(sv, (sv + 1));
387 #ifdef DEBUGGING
388         SvREFCNT(sv) = 0;
389 #endif
390         /* Must always set typemask because it's always checked in on cleanup
391            when the arenas are walked looking for objects.  */
392         SvFLAGS(sv) = SVTYPEMASK;
393         sv++;
394     }
395     SvARENA_CHAIN_SET(sv, 0);
396 #ifdef DEBUGGING
397     SvREFCNT(sv) = 0;
398 #endif
399     SvFLAGS(sv) = SVTYPEMASK;
400 }
401
402 /* visit(): call the named function for each non-free SV in the arenas
403  * whose flags field matches the flags/mask args. */
404
405 STATIC I32
406 S_visit(pTHX_ SVFUNC_t f, const U32 flags, const U32 mask)
407 {
408     dVAR;
409     SV* sva;
410     I32 visited = 0;
411
412     PERL_ARGS_ASSERT_VISIT;
413
414     for (sva = PL_sv_arenaroot; sva; sva = MUTABLE_SV(SvANY(sva))) {
415         const SV * const svend = &sva[SvREFCNT(sva)];
416         SV* sv;
417         for (sv = sva + 1; sv < svend; ++sv) {
418             if (SvTYPE(sv) != (svtype)SVTYPEMASK
419                     && (sv->sv_flags & mask) == flags
420                     && SvREFCNT(sv))
421             {
422                 (FCALL)(aTHX_ sv);
423                 ++visited;
424             }
425         }
426     }
427     return visited;
428 }
429
430 #ifdef DEBUGGING
431
432 /* called by sv_report_used() for each live SV */
433
434 static void
435 do_report_used(pTHX_ SV *const sv)
436 {
437     if (SvTYPE(sv) != (svtype)SVTYPEMASK) {
438         PerlIO_printf(Perl_debug_log, "****\n");
439         sv_dump(sv);
440     }
441 }
442 #endif
443
444 /*
445 =for apidoc sv_report_used
446
447 Dump the contents of all SVs not yet freed (debugging aid).
448
449 =cut
450 */
451
452 void
453 Perl_sv_report_used(pTHX)
454 {
455 #ifdef DEBUGGING
456     visit(do_report_used, 0, 0);
457 #else
458     PERL_UNUSED_CONTEXT;
459 #endif
460 }
461
462 /* called by sv_clean_objs() for each live SV */
463
464 static void
465 do_clean_objs(pTHX_ SV *const ref)
466 {
467     dVAR;
468     assert (SvROK(ref));
469     {
470         SV * const target = SvRV(ref);
471         if (SvOBJECT(target)) {
472             DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning object ref:\n "), sv_dump(ref)));
473             if (SvWEAKREF(ref)) {
474                 sv_del_backref(target, ref);
475                 SvWEAKREF_off(ref);
476                 SvRV_set(ref, NULL);
477             } else {
478                 SvROK_off(ref);
479                 SvRV_set(ref, NULL);
480                 SvREFCNT_dec(target);
481             }
482         }
483     }
484
485     /* XXX Might want to check arrays, etc. */
486 }
487
488
489 /* clear any slots in a GV which hold objects - except IO;
490  * called by sv_clean_objs() for each live GV */
491
492 static void
493 do_clean_named_objs(pTHX_ SV *const sv)
494 {
495     dVAR;
496     SV *obj;
497     assert(SvTYPE(sv) == SVt_PVGV);
498     assert(isGV_with_GP(sv));
499     if (!GvGP(sv))
500         return;
501
502     /* freeing GP entries may indirectly free the current GV;
503      * hold onto it while we mess with the GP slots */
504     SvREFCNT_inc(sv);
505
506     if ( ((obj = GvSV(sv) )) && SvOBJECT(obj)) {
507         DEBUG_D((PerlIO_printf(Perl_debug_log,
508                 "Cleaning named glob SV object:\n "), sv_dump(obj)));
509         GvSV(sv) = NULL;
510         SvREFCNT_dec(obj);
511     }
512     if ( ((obj = MUTABLE_SV(GvAV(sv)) )) && SvOBJECT(obj)) {
513         DEBUG_D((PerlIO_printf(Perl_debug_log,
514                 "Cleaning named glob AV object:\n "), sv_dump(obj)));
515         GvAV(sv) = NULL;
516         SvREFCNT_dec(obj);
517     }
518     if ( ((obj = MUTABLE_SV(GvHV(sv)) )) && SvOBJECT(obj)) {
519         DEBUG_D((PerlIO_printf(Perl_debug_log,
520                 "Cleaning named glob HV object:\n "), sv_dump(obj)));
521         GvHV(sv) = NULL;
522         SvREFCNT_dec(obj);
523     }
524     if ( ((obj = MUTABLE_SV(GvCV(sv)) )) && SvOBJECT(obj)) {
525         DEBUG_D((PerlIO_printf(Perl_debug_log,
526                 "Cleaning named glob CV object:\n "), sv_dump(obj)));
527         GvCV_set(sv, NULL);
528         SvREFCNT_dec(obj);
529     }
530     SvREFCNT_dec(sv); /* undo the inc above */
531 }
532
533 /* clear any IO slots in a GV which hold objects (except stderr, defout);
534  * called by sv_clean_objs() for each live GV */
535
536 static void
537 do_clean_named_io_objs(pTHX_ SV *const sv)
538 {
539     dVAR;
540     SV *obj;
541     assert(SvTYPE(sv) == SVt_PVGV);
542     assert(isGV_with_GP(sv));
543     if (!GvGP(sv) || sv == (SV*)PL_stderrgv || sv == (SV*)PL_defoutgv)
544         return;
545
546     SvREFCNT_inc(sv);
547     if ( ((obj = MUTABLE_SV(GvIO(sv)) )) && SvOBJECT(obj)) {
548         DEBUG_D((PerlIO_printf(Perl_debug_log,
549                 "Cleaning named glob IO object:\n "), sv_dump(obj)));
550         GvIOp(sv) = NULL;
551         SvREFCNT_dec(obj);
552     }
553     SvREFCNT_dec(sv); /* undo the inc above */
554 }
555
556 /* Void wrapper to pass to visit() */
557 static void
558 do_curse(pTHX_ SV * const sv) {
559     if ((PL_stderrgv && GvGP(PL_stderrgv) && (SV*)GvIO(PL_stderrgv) == sv)
560      || (PL_defoutgv && GvGP(PL_defoutgv) && (SV*)GvIO(PL_defoutgv) == sv))
561         return;
562     (void)curse(sv, 0);
563 }
564
565 /*
566 =for apidoc sv_clean_objs
567
568 Attempt to destroy all objects not yet freed.
569
570 =cut
571 */
572
573 void
574 Perl_sv_clean_objs(pTHX)
575 {
576     dVAR;
577     GV *olddef, *olderr;
578     PL_in_clean_objs = TRUE;
579     visit(do_clean_objs, SVf_ROK, SVf_ROK);
580     /* Some barnacles may yet remain, clinging to typeglobs.
581      * Run the non-IO destructors first: they may want to output
582      * error messages, close files etc */
583     visit(do_clean_named_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
584     visit(do_clean_named_io_objs, SVt_PVGV|SVpgv_GP, SVTYPEMASK|SVp_POK|SVpgv_GP);
585     /* And if there are some very tenacious barnacles clinging to arrays,
586        closures, or what have you.... */
587     visit(do_curse, SVs_OBJECT, SVs_OBJECT);
588     olddef = PL_defoutgv;
589     PL_defoutgv = NULL; /* disable skip of PL_defoutgv */
590     if (olddef && isGV_with_GP(olddef))
591         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olddef));
592     olderr = PL_stderrgv;
593     PL_stderrgv = NULL; /* disable skip of PL_stderrgv */
594     if (olderr && isGV_with_GP(olderr))
595         do_clean_named_io_objs(aTHX_ MUTABLE_SV(olderr));
596     SvREFCNT_dec(olddef);
597     PL_in_clean_objs = FALSE;
598 }
599
600 /* called by sv_clean_all() for each live SV */
601
602 static void
603 do_clean_all(pTHX_ SV *const sv)
604 {
605     dVAR;
606     if (sv == (const SV *) PL_fdpid || sv == (const SV *)PL_strtab) {
607         /* don't clean pid table and strtab */
608         return;
609     }
610     DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) ));
611     SvFLAGS(sv) |= SVf_BREAK;
612     SvREFCNT_dec(sv);
613 }
614
615 /*
616 =for apidoc sv_clean_all
617
618 Decrement the refcnt of each remaining SV, possibly triggering a
619 cleanup.  This function may have to be called multiple times to free
620 SVs which are in complex self-referential hierarchies.
621
622 =cut
623 */
624
625 I32
626 Perl_sv_clean_all(pTHX)
627 {
628     dVAR;
629     I32 cleaned;
630     PL_in_clean_all = TRUE;
631     cleaned = visit(do_clean_all, 0,0);
632     return cleaned;
633 }
634
635 /*
636   ARENASETS: a meta-arena implementation which separates arena-info
637   into struct arena_set, which contains an array of struct
638   arena_descs, each holding info for a single arena.  By separating
639   the meta-info from the arena, we recover the 1st slot, formerly
640   borrowed for list management.  The arena_set is about the size of an
641   arena, avoiding the needless malloc overhead of a naive linked-list.
642
643   The cost is 1 arena-set malloc per ~320 arena-mallocs, + the unused
644   memory in the last arena-set (1/2 on average).  In trade, we get
645   back the 1st slot in each arena (ie 1.7% of a CV-arena, less for
646   smaller types).  The recovery of the wasted space allows use of
647   small arenas for large, rare body types, by changing array* fields
648   in body_details_by_type[] below.
649 */
650 struct arena_desc {
651     char       *arena;          /* the raw storage, allocated aligned */
652     size_t      size;           /* its size ~4k typ */
653     svtype      utype;          /* bodytype stored in arena */
654 };
655
656 struct arena_set;
657
658 /* Get the maximum number of elements in set[] such that struct arena_set
659    will fit within PERL_ARENA_SIZE, which is probably just under 4K, and
660    therefore likely to be 1 aligned memory page.  */
661
662 #define ARENAS_PER_SET  ((PERL_ARENA_SIZE - sizeof(struct arena_set*) \
663                           - 2 * sizeof(int)) / sizeof (struct arena_desc))
664
665 struct arena_set {
666     struct arena_set* next;
667     unsigned int   set_size;    /* ie ARENAS_PER_SET */
668     unsigned int   curr;        /* index of next available arena-desc */
669     struct arena_desc set[ARENAS_PER_SET];
670 };
671
672 /*
673 =for apidoc sv_free_arenas
674
675 Deallocate the memory used by all arenas.  Note that all the individual SV
676 heads and bodies within the arenas must already have been freed.
677
678 =cut
679 */
680 void
681 Perl_sv_free_arenas(pTHX)
682 {
683     dVAR;
684     SV* sva;
685     SV* svanext;
686     unsigned int i;
687
688     /* Free arenas here, but be careful about fake ones.  (We assume
689        contiguity of the fake ones with the corresponding real ones.) */
690
691     for (sva = PL_sv_arenaroot; sva; sva = svanext) {
692         svanext = MUTABLE_SV(SvANY(sva));
693         while (svanext && SvFAKE(svanext))
694             svanext = MUTABLE_SV(SvANY(svanext));
695
696         if (!SvFAKE(sva))
697             Safefree(sva);
698     }
699
700     {
701         struct arena_set *aroot = (struct arena_set*) PL_body_arenas;
702
703         while (aroot) {
704             struct arena_set *current = aroot;
705             i = aroot->curr;
706             while (i--) {
707                 assert(aroot->set[i].arena);
708                 Safefree(aroot->set[i].arena);
709             }
710             aroot = aroot->next;
711             Safefree(current);
712         }
713     }
714     PL_body_arenas = 0;
715
716     i = PERL_ARENA_ROOTS_SIZE;
717     while (i--)
718         PL_body_roots[i] = 0;
719
720     PL_sv_arenaroot = 0;
721     PL_sv_root = 0;
722 }
723
724 /*
725   Here are mid-level routines that manage the allocation of bodies out
726   of the various arenas.  There are 5 kinds of arenas:
727
728   1. SV-head arenas, which are discussed and handled above
729   2. regular body arenas
730   3. arenas for reduced-size bodies
731   4. Hash-Entry arenas
732
733   Arena types 2 & 3 are chained by body-type off an array of
734   arena-root pointers, which is indexed by svtype.  Some of the
735   larger/less used body types are malloced singly, since a large
736   unused block of them is wasteful.  Also, several svtypes dont have
737   bodies; the data fits into the sv-head itself.  The arena-root
738   pointer thus has a few unused root-pointers (which may be hijacked
739   later for arena types 4,5)
740
741   3 differs from 2 as an optimization; some body types have several
742   unused fields in the front of the structure (which are kept in-place
743   for consistency).  These bodies can be allocated in smaller chunks,
744   because the leading fields arent accessed.  Pointers to such bodies
745   are decremented to point at the unused 'ghost' memory, knowing that
746   the pointers are used with offsets to the real memory.
747
748
749 =head1 SV-Body Allocation
750
751 Allocation of SV-bodies is similar to SV-heads, differing as follows;
752 the allocation mechanism is used for many body types, so is somewhat
753 more complicated, it uses arena-sets, and has no need for still-live
754 SV detection.
755
756 At the outermost level, (new|del)_X*V macros return bodies of the
757 appropriate type.  These macros call either (new|del)_body_type or
758 (new|del)_body_allocated macro pairs, depending on specifics of the
759 type.  Most body types use the former pair, the latter pair is used to
760 allocate body types with "ghost fields".
761
762 "ghost fields" are fields that are unused in certain types, and
763 consequently don't need to actually exist.  They are declared because
764 they're part of a "base type", which allows use of functions as
765 methods.  The simplest examples are AVs and HVs, 2 aggregate types
766 which don't use the fields which support SCALAR semantics.
767
768 For these types, the arenas are carved up into appropriately sized
769 chunks, we thus avoid wasted memory for those unaccessed members.
770 When bodies are allocated, we adjust the pointer back in memory by the
771 size of the part not allocated, so it's as if we allocated the full
772 structure.  (But things will all go boom if you write to the part that
773 is "not there", because you'll be overwriting the last members of the
774 preceding structure in memory.)
775
776 We calculate the correction using the STRUCT_OFFSET macro on the first
777 member present. If the allocated structure is smaller (no initial NV
778 actually allocated) then the net effect is to subtract the size of the NV
779 from the pointer, to return a new pointer as if an initial NV were actually
780 allocated. (We were using structures named *_allocated for this, but
781 this turned out to be a subtle bug, because a structure without an NV
782 could have a lower alignment constraint, but the compiler is allowed to
783 optimised accesses based on the alignment constraint of the actual pointer
784 to the full structure, for example, using a single 64 bit load instruction
785 because it "knows" that two adjacent 32 bit members will be 8-byte aligned.)
786
787 This is the same trick as was used for NV and IV bodies. Ironically it
788 doesn't need to be used for NV bodies any more, because NV is now at
789 the start of the structure. IV bodies don't need it either, because
790 they are no longer allocated.
791
792 In turn, the new_body_* allocators call S_new_body(), which invokes
793 new_body_inline macro, which takes a lock, and takes a body off the
794 linked list at PL_body_roots[sv_type], calling Perl_more_bodies() if
795 necessary to refresh an empty list.  Then the lock is released, and
796 the body is returned.
797
798 Perl_more_bodies allocates a new arena, and carves it up into an array of N
799 bodies, which it strings into a linked list.  It looks up arena-size
800 and body-size from the body_details table described below, thus
801 supporting the multiple body-types.
802
803 If PURIFY is defined, or PERL_ARENA_SIZE=0, arenas are not used, and
804 the (new|del)_X*V macros are mapped directly to malloc/free.
805
806 For each sv-type, struct body_details bodies_by_type[] carries
807 parameters which control these aspects of SV handling:
808
809 Arena_size determines whether arenas are used for this body type, and if
810 so, how big they are.  PURIFY or PERL_ARENA_SIZE=0 set this field to
811 zero, forcing individual mallocs and frees.
812
813 Body_size determines how big a body is, and therefore how many fit into
814 each arena.  Offset carries the body-pointer adjustment needed for
815 "ghost fields", and is used in *_allocated macros.
816
817 But its main purpose is to parameterize info needed in
818 Perl_sv_upgrade().  The info here dramatically simplifies the function
819 vs the implementation in 5.8.8, making it table-driven.  All fields
820 are used for this, except for arena_size.
821
822 For the sv-types that have no bodies, arenas are not used, so those
823 PL_body_roots[sv_type] are unused, and can be overloaded.  In
824 something of a special case, SVt_NULL is borrowed for HE arenas;
825 PL_body_roots[HE_SVSLOT=SVt_NULL] is filled by S_more_he, but the
826 bodies_by_type[SVt_NULL] slot is not used, as the table is not
827 available in hv.c.
828
829 */
830
831 struct body_details {
832     U8 body_size;       /* Size to allocate  */
833     U8 copy;            /* Size of structure to copy (may be shorter)  */
834     U8 offset;
835     unsigned int type : 4;          /* We have space for a sanity check.  */
836     unsigned int cant_upgrade : 1;  /* Cannot upgrade this type */
837     unsigned int zero_nv : 1;       /* zero the NV when upgrading from this */
838     unsigned int arena : 1;         /* Allocated from an arena */
839     size_t arena_size;              /* Size of arena to allocate */
840 };
841
842 #define HADNV FALSE
843 #define NONV TRUE
844
845
846 #ifdef PURIFY
847 /* With -DPURFIY we allocate everything directly, and don't use arenas.
848    This seems a rather elegant way to simplify some of the code below.  */
849 #define HASARENA FALSE
850 #else
851 #define HASARENA TRUE
852 #endif
853 #define NOARENA FALSE
854
855 /* Size the arenas to exactly fit a given number of bodies.  A count
856    of 0 fits the max number bodies into a PERL_ARENA_SIZE.block,
857    simplifying the default.  If count > 0, the arena is sized to fit
858    only that many bodies, allowing arenas to be used for large, rare
859    bodies (XPVFM, XPVIO) without undue waste.  The arena size is
860    limited by PERL_ARENA_SIZE, so we can safely oversize the
861    declarations.
862  */
863 #define FIT_ARENA0(body_size)                           \
864     ((size_t)(PERL_ARENA_SIZE / body_size) * body_size)
865 #define FIT_ARENAn(count,body_size)                     \
866     ( count * body_size <= PERL_ARENA_SIZE)             \
867     ? count * body_size                                 \
868     : FIT_ARENA0 (body_size)
869 #define FIT_ARENA(count,body_size)                      \
870     count                                               \
871     ? FIT_ARENAn (count, body_size)                     \
872     : FIT_ARENA0 (body_size)
873
874 /* Calculate the length to copy. Specifically work out the length less any
875    final padding the compiler needed to add.  See the comment in sv_upgrade
876    for why copying the padding proved to be a bug.  */
877
878 #define copy_length(type, last_member) \
879         STRUCT_OFFSET(type, last_member) \
880         + sizeof (((type*)SvANY((const SV *)0))->last_member)
881
882 static const struct body_details bodies_by_type[] = {
883     /* HEs use this offset for their arena.  */
884     { 0, 0, 0, SVt_NULL, FALSE, NONV, NOARENA, 0 },
885
886     /* The bind placeholder pretends to be an RV for now.
887        Also it's marked as "can't upgrade" to stop anyone using it before it's
888        implemented.  */
889     { 0, 0, 0, SVt_BIND, TRUE, NONV, NOARENA, 0 },
890
891     /* IVs are in the head, so the allocation size is 0.  */
892     { 0,
893       sizeof(IV), /* This is used to copy out the IV body.  */
894       STRUCT_OFFSET(XPVIV, xiv_iv), SVt_IV, FALSE, NONV,
895       NOARENA /* IVS don't need an arena  */, 0
896     },
897
898     { sizeof(NV), sizeof(NV),
899       STRUCT_OFFSET(XPVNV, xnv_u),
900       SVt_NV, FALSE, HADNV, HASARENA, FIT_ARENA(0, sizeof(NV)) },
901
902     { sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur),
903       copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
904       + STRUCT_OFFSET(XPV, xpv_cur),
905       SVt_PV, FALSE, NONV, HASARENA,
906       FIT_ARENA(0, sizeof(XPV) - STRUCT_OFFSET(XPV, xpv_cur)) },
907
908     { sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur),
909       copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
910       + STRUCT_OFFSET(XPV, xpv_cur),
911       SVt_PVIV, FALSE, NONV, HASARENA,
912       FIT_ARENA(0, sizeof(XPVIV) - STRUCT_OFFSET(XPV, xpv_cur)) },
913
914     { sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur),
915       copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
916       + STRUCT_OFFSET(XPV, xpv_cur),
917       SVt_PVNV, FALSE, HADNV, HASARENA,
918       FIT_ARENA(0, sizeof(XPVNV) - STRUCT_OFFSET(XPV, xpv_cur)) },
919
920     { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
921       HASARENA, FIT_ARENA(0, sizeof(XPVMG)) },
922
923     { sizeof(regexp),
924       sizeof(regexp),
925       0,
926       SVt_REGEXP, FALSE, NONV, HASARENA,
927       FIT_ARENA(0, sizeof(regexp))
928     },
929
930     { sizeof(XPVGV), sizeof(XPVGV), 0, SVt_PVGV, TRUE, HADNV,
931       HASARENA, FIT_ARENA(0, sizeof(XPVGV)) },
932     
933     { sizeof(XPVLV), sizeof(XPVLV), 0, SVt_PVLV, TRUE, HADNV,
934       HASARENA, FIT_ARENA(0, sizeof(XPVLV)) },
935
936     { sizeof(XPVAV),
937       copy_length(XPVAV, xav_alloc),
938       0,
939       SVt_PVAV, TRUE, NONV, HASARENA,
940       FIT_ARENA(0, sizeof(XPVAV)) },
941
942     { sizeof(XPVHV),
943       copy_length(XPVHV, xhv_max),
944       0,
945       SVt_PVHV, TRUE, NONV, HASARENA,
946       FIT_ARENA(0, sizeof(XPVHV)) },
947
948     { sizeof(XPVCV),
949       sizeof(XPVCV),
950       0,
951       SVt_PVCV, TRUE, NONV, HASARENA,
952       FIT_ARENA(0, sizeof(XPVCV)) },
953
954     { sizeof(XPVFM),
955       sizeof(XPVFM),
956       0,
957       SVt_PVFM, TRUE, NONV, NOARENA,
958       FIT_ARENA(20, sizeof(XPVFM)) },
959
960     { sizeof(XPVIO),
961       sizeof(XPVIO),
962       0,
963       SVt_PVIO, TRUE, NONV, HASARENA,
964       FIT_ARENA(24, sizeof(XPVIO)) },
965 };
966
967 #define new_body_allocated(sv_type)             \
968     (void *)((char *)S_new_body(aTHX_ sv_type)  \
969              - bodies_by_type[sv_type].offset)
970
971 /* return a thing to the free list */
972
973 #define del_body(thing, root)                           \
974     STMT_START {                                        \
975         void ** const thing_copy = (void **)thing;      \
976         *thing_copy = *root;                            \
977         *root = (void*)thing_copy;                      \
978     } STMT_END
979
980 #ifdef PURIFY
981
982 #define new_XNV()       safemalloc(sizeof(XPVNV))
983 #define new_XPVNV()     safemalloc(sizeof(XPVNV))
984 #define new_XPVMG()     safemalloc(sizeof(XPVMG))
985
986 #define del_XPVGV(p)    safefree(p)
987
988 #else /* !PURIFY */
989
990 #define new_XNV()       new_body_allocated(SVt_NV)
991 #define new_XPVNV()     new_body_allocated(SVt_PVNV)
992 #define new_XPVMG()     new_body_allocated(SVt_PVMG)
993
994 #define del_XPVGV(p)    del_body(p + bodies_by_type[SVt_PVGV].offset,   \
995                                  &PL_body_roots[SVt_PVGV])
996
997 #endif /* PURIFY */
998
999 /* no arena for you! */
1000
1001 #define new_NOARENA(details) \
1002         safemalloc((details)->body_size + (details)->offset)
1003 #define new_NOARENAZ(details) \
1004         safecalloc((details)->body_size + (details)->offset, 1)
1005
1006 void *
1007 Perl_more_bodies (pTHX_ const svtype sv_type, const size_t body_size,
1008                   const size_t arena_size)
1009 {
1010     dVAR;
1011     void ** const root = &PL_body_roots[sv_type];
1012     struct arena_desc *adesc;
1013     struct arena_set *aroot = (struct arena_set *) PL_body_arenas;
1014     unsigned int curr;
1015     char *start;
1016     const char *end;
1017     const size_t good_arena_size = Perl_malloc_good_size(arena_size);
1018 #if defined(DEBUGGING) && !defined(PERL_GLOBAL_STRUCT_PRIVATE)
1019     static bool done_sanity_check;
1020
1021     /* PERL_GLOBAL_STRUCT_PRIVATE cannot coexist with global
1022      * variables like done_sanity_check. */
1023     if (!done_sanity_check) {
1024         unsigned int i = SVt_LAST;
1025
1026         done_sanity_check = TRUE;
1027
1028         while (i--)
1029             assert (bodies_by_type[i].type == i);
1030     }
1031 #endif
1032
1033     assert(arena_size);
1034
1035     /* may need new arena-set to hold new arena */
1036     if (!aroot || aroot->curr >= aroot->set_size) {
1037         struct arena_set *newroot;
1038         Newxz(newroot, 1, struct arena_set);
1039         newroot->set_size = ARENAS_PER_SET;
1040         newroot->next = aroot;
1041         aroot = newroot;
1042         PL_body_arenas = (void *) newroot;
1043         DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", (void*)aroot));
1044     }
1045
1046     /* ok, now have arena-set with at least 1 empty/available arena-desc */
1047     curr = aroot->curr++;
1048     adesc = &(aroot->set[curr]);
1049     assert(!adesc->arena);
1050     
1051     Newx(adesc->arena, good_arena_size, char);
1052     adesc->size = good_arena_size;
1053     adesc->utype = sv_type;
1054     DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %d added: %p size %"UVuf"\n", 
1055                           curr, (void*)adesc->arena, (UV)good_arena_size));
1056
1057     start = (char *) adesc->arena;
1058
1059     /* Get the address of the byte after the end of the last body we can fit.
1060        Remember, this is integer division:  */
1061     end = start + good_arena_size / body_size * body_size;
1062
1063     /* computed count doesn't reflect the 1st slot reservation */
1064 #if defined(MYMALLOC) || defined(HAS_MALLOC_GOOD_SIZE)
1065     DEBUG_m(PerlIO_printf(Perl_debug_log,
1066                           "arena %p end %p arena-size %d (from %d) type %d "
1067                           "size %d ct %d\n",
1068                           (void*)start, (void*)end, (int)good_arena_size,
1069                           (int)arena_size, sv_type, (int)body_size,
1070                           (int)good_arena_size / (int)body_size));
1071 #else
1072     DEBUG_m(PerlIO_printf(Perl_debug_log,
1073                           "arena %p end %p arena-size %d type %d size %d ct %d\n",
1074                           (void*)start, (void*)end,
1075                           (int)arena_size, sv_type, (int)body_size,
1076                           (int)good_arena_size / (int)body_size));
1077 #endif
1078     *root = (void *)start;
1079
1080     while (1) {
1081         /* Where the next body would start:  */
1082         char * const next = start + body_size;
1083
1084         if (next >= end) {
1085             /* This is the last body:  */
1086             assert(next == end);
1087
1088             *(void **)start = 0;
1089             return *root;
1090         }
1091
1092         *(void**) start = (void *)next;
1093         start = next;
1094     }
1095 }
1096
1097 /* grab a new thing from the free list, allocating more if necessary.
1098    The inline version is used for speed in hot routines, and the
1099    function using it serves the rest (unless PURIFY).
1100 */
1101 #define new_body_inline(xpv, sv_type) \
1102     STMT_START { \
1103         void ** const r3wt = &PL_body_roots[sv_type]; \
1104         xpv = (PTR_TBL_ENT_t*) (*((void **)(r3wt))      \
1105           ? *((void **)(r3wt)) : Perl_more_bodies(aTHX_ sv_type, \
1106                                              bodies_by_type[sv_type].body_size,\
1107                                              bodies_by_type[sv_type].arena_size)); \
1108         *(r3wt) = *(void**)(xpv); \
1109     } STMT_END
1110
1111 #ifndef PURIFY
1112
1113 STATIC void *
1114 S_new_body(pTHX_ const svtype sv_type)
1115 {
1116     dVAR;
1117     void *xpv;
1118     new_body_inline(xpv, sv_type);
1119     return xpv;
1120 }
1121
1122 #endif
1123
1124 static const struct body_details fake_rv =
1125     { 0, 0, 0, SVt_IV, FALSE, NONV, NOARENA, 0 };
1126
1127 /*
1128 =for apidoc sv_upgrade
1129
1130 Upgrade an SV to a more complex form.  Generally adds a new body type to the
1131 SV, then copies across as much information as possible from the old body.
1132 It croaks if the SV is already in a more complex form than requested.  You
1133 generally want to use the C<SvUPGRADE> macro wrapper, which checks the type
1134 before calling C<sv_upgrade>, and hence does not croak.  See also
1135 C<svtype>.
1136
1137 =cut
1138 */
1139
1140 void
1141 Perl_sv_upgrade(pTHX_ register SV *const sv, svtype new_type)
1142 {
1143     dVAR;
1144     void*       old_body;
1145     void*       new_body;
1146     const svtype old_type = SvTYPE(sv);
1147     const struct body_details *new_type_details;
1148     const struct body_details *old_type_details
1149         = bodies_by_type + old_type;
1150     SV *referant = NULL;
1151
1152     PERL_ARGS_ASSERT_SV_UPGRADE;
1153
1154     if (old_type == new_type)
1155         return;
1156
1157     /* This clause was purposefully added ahead of the early return above to
1158        the shared string hackery for (sort {$a <=> $b} keys %hash), with the
1159        inference by Nick I-S that it would fix other troublesome cases. See
1160        changes 7162, 7163 (f130fd4589cf5fbb24149cd4db4137c8326f49c1 and parent)
1161
1162        Given that shared hash key scalars are no longer PVIV, but PV, there is
1163        no longer need to unshare so as to free up the IVX slot for its proper
1164        purpose. So it's safe to move the early return earlier.  */
1165
1166     if (new_type > SVt_PVMG && SvIsCOW(sv)) {
1167         sv_force_normal_flags(sv, 0);
1168     }
1169
1170     old_body = SvANY(sv);
1171
1172     /* Copying structures onto other structures that have been neatly zeroed
1173        has a subtle gotcha. Consider XPVMG
1174
1175        +------+------+------+------+------+-------+-------+
1176        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |
1177        +------+------+------+------+------+-------+-------+
1178        0      4      8     12     16     20      24      28
1179
1180        where NVs are aligned to 8 bytes, so that sizeof that structure is
1181        actually 32 bytes long, with 4 bytes of padding at the end:
1182
1183        +------+------+------+------+------+-------+-------+------+
1184        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH | ???  |
1185        +------+------+------+------+------+-------+-------+------+
1186        0      4      8     12     16     20      24      28     32
1187
1188        so what happens if you allocate memory for this structure:
1189
1190        +------+------+------+------+------+-------+-------+------+------+...
1191        |     NV      | CUR  | LEN  |  IV  | MAGIC | STASH |  GP  | NAME |
1192        +------+------+------+------+------+-------+-------+------+------+...
1193        0      4      8     12     16     20      24      28     32     36
1194
1195        zero it, then copy sizeof(XPVMG) bytes on top of it? Not quite what you
1196        expect, because you copy the area marked ??? onto GP. Now, ??? may have
1197        started out as zero once, but it's quite possible that it isn't. So now,
1198        rather than a nicely zeroed GP, you have it pointing somewhere random.
1199        Bugs ensue.
1200
1201        (In fact, GP ends up pointing at a previous GP structure, because the
1202        principle cause of the padding in XPVMG getting garbage is a copy of
1203        sizeof(XPVMG) bytes from a XPVGV structure in sv_unglob. Right now
1204        this happens to be moot because XPVGV has been re-ordered, with GP
1205        no longer after STASH)
1206
1207        So we are careful and work out the size of used parts of all the
1208        structures.  */
1209
1210     switch (old_type) {
1211     case SVt_NULL:
1212         break;
1213     case SVt_IV:
1214         if (SvROK(sv)) {
1215             referant = SvRV(sv);
1216             old_type_details = &fake_rv;
1217             if (new_type == SVt_NV)
1218                 new_type = SVt_PVNV;
1219         } else {
1220             if (new_type < SVt_PVIV) {
1221                 new_type = (new_type == SVt_NV)
1222                     ? SVt_PVNV : SVt_PVIV;
1223             }
1224         }
1225         break;
1226     case SVt_NV:
1227         if (new_type < SVt_PVNV) {
1228             new_type = SVt_PVNV;
1229         }
1230         break;
1231     case SVt_PV:
1232         assert(new_type > SVt_PV);
1233         assert(SVt_IV < SVt_PV);
1234         assert(SVt_NV < SVt_PV);
1235         break;
1236     case SVt_PVIV:
1237         break;
1238     case SVt_PVNV:
1239         break;
1240     case SVt_PVMG:
1241         /* Because the XPVMG of PL_mess_sv isn't allocated from the arena,
1242            there's no way that it can be safely upgraded, because perl.c
1243            expects to Safefree(SvANY(PL_mess_sv))  */
1244         assert(sv != PL_mess_sv);
1245         /* This flag bit is used to mean other things in other scalar types.
1246            Given that it only has meaning inside the pad, it shouldn't be set
1247            on anything that can get upgraded.  */
1248         assert(!SvPAD_TYPED(sv));
1249         break;
1250     default:
1251         if (old_type_details->cant_upgrade)
1252             Perl_croak(aTHX_ "Can't upgrade %s (%" UVuf ") to %" UVuf,
1253                        sv_reftype(sv, 0), (UV) old_type, (UV) new_type);
1254     }
1255
1256     if (old_type > new_type)
1257         Perl_croak(aTHX_ "sv_upgrade from type %d down to type %d",
1258                 (int)old_type, (int)new_type);
1259
1260     new_type_details = bodies_by_type + new_type;
1261
1262     SvFLAGS(sv) &= ~SVTYPEMASK;
1263     SvFLAGS(sv) |= new_type;
1264
1265     /* This can't happen, as SVt_NULL is <= all values of new_type, so one of
1266        the return statements above will have triggered.  */
1267     assert (new_type != SVt_NULL);
1268     switch (new_type) {
1269     case SVt_IV:
1270         assert(old_type == SVt_NULL);
1271         SvANY(sv) = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
1272         SvIV_set(sv, 0);
1273         return;
1274     case SVt_NV:
1275         assert(old_type == SVt_NULL);
1276         SvANY(sv) = new_XNV();
1277         SvNV_set(sv, 0);
1278         return;
1279     case SVt_PVHV:
1280     case SVt_PVAV:
1281         assert(new_type_details->body_size);
1282
1283 #ifndef PURIFY  
1284         assert(new_type_details->arena);
1285         assert(new_type_details->arena_size);
1286         /* This points to the start of the allocated area.  */
1287         new_body_inline(new_body, new_type);
1288         Zero(new_body, new_type_details->body_size, char);
1289         new_body = ((char *)new_body) - new_type_details->offset;
1290 #else
1291         /* We always allocated the full length item with PURIFY. To do this
1292            we fake things so that arena is false for all 16 types..  */
1293         new_body = new_NOARENAZ(new_type_details);
1294 #endif
1295         SvANY(sv) = new_body;
1296         if (new_type == SVt_PVAV) {
1297             AvMAX(sv)   = -1;
1298             AvFILLp(sv) = -1;
1299             AvREAL_only(sv);
1300             if (old_type_details->body_size) {
1301                 AvALLOC(sv) = 0;
1302             } else {
1303                 /* It will have been zeroed when the new body was allocated.
1304                    Lets not write to it, in case it confuses a write-back
1305                    cache.  */
1306             }
1307         } else {
1308             assert(!SvOK(sv));
1309             SvOK_off(sv);
1310 #ifndef NODEFAULT_SHAREKEYS
1311             HvSHAREKEYS_on(sv);         /* key-sharing on by default */
1312 #endif
1313             HvMAX(sv) = 7; /* (start with 8 buckets) */
1314         }
1315
1316         /* SVt_NULL isn't the only thing upgraded to AV or HV.
1317            The target created by newSVrv also is, and it can have magic.
1318            However, it never has SvPVX set.
1319         */
1320         if (old_type == SVt_IV) {
1321             assert(!SvROK(sv));
1322         } else if (old_type >= SVt_PV) {
1323             assert(SvPVX_const(sv) == 0);
1324         }
1325
1326         if (old_type >= SVt_PVMG) {
1327             SvMAGIC_set(sv, ((XPVMG*)old_body)->xmg_u.xmg_magic);
1328             SvSTASH_set(sv, ((XPVMG*)old_body)->xmg_stash);
1329         } else {
1330             sv->sv_u.svu_array = NULL; /* or svu_hash  */
1331         }
1332         break;
1333
1334     case SVt_PVIV:
1335         /* XXX Is this still needed?  Was it ever needed?   Surely as there is
1336            no route from NV to PVIV, NOK can never be true  */
1337         assert(!SvNOKp(sv));
1338         assert(!SvNOK(sv));
1339     case SVt_PVIO:
1340     case SVt_PVFM:
1341     case SVt_PVGV:
1342     case SVt_PVCV:
1343     case SVt_PVLV:
1344     case SVt_REGEXP:
1345     case SVt_PVMG:
1346     case SVt_PVNV:
1347     case SVt_PV:
1348
1349         assert(new_type_details->body_size);
1350         /* We always allocated the full length item with PURIFY. To do this
1351            we fake things so that arena is false for all 16 types..  */
1352         if(new_type_details->arena) {
1353             /* This points to the start of the allocated area.  */
1354             new_body_inline(new_body, new_type);
1355             Zero(new_body, new_type_details->body_size, char);
1356             new_body = ((char *)new_body) - new_type_details->offset;
1357         } else {
1358             new_body = new_NOARENAZ(new_type_details);
1359         }
1360         SvANY(sv) = new_body;
1361
1362         if (old_type_details->copy) {
1363             /* There is now the potential for an upgrade from something without
1364                an offset (PVNV or PVMG) to something with one (PVCV, PVFM)  */
1365             int offset = old_type_details->offset;
1366             int length = old_type_details->copy;
1367
1368             if (new_type_details->offset > old_type_details->offset) {
1369                 const int difference
1370                     = new_type_details->offset - old_type_details->offset;
1371                 offset += difference;
1372                 length -= difference;
1373             }
1374             assert (length >= 0);
1375                 
1376             Copy((char *)old_body + offset, (char *)new_body + offset, length,
1377                  char);
1378         }
1379
1380 #ifndef NV_ZERO_IS_ALLBITS_ZERO
1381         /* If NV 0.0 is stores as all bits 0 then Zero() already creates a
1382          * correct 0.0 for us.  Otherwise, if the old body didn't have an
1383          * NV slot, but the new one does, then we need to initialise the
1384          * freshly created NV slot with whatever the correct bit pattern is
1385          * for 0.0  */
1386         if (old_type_details->zero_nv && !new_type_details->zero_nv
1387             && !isGV_with_GP(sv))
1388             SvNV_set(sv, 0);
1389 #endif
1390
1391         if (new_type == SVt_PVIO) {
1392             IO * const io = MUTABLE_IO(sv);
1393             GV *iogv = gv_fetchpvs("IO::File::", GV_ADD, SVt_PVHV);
1394
1395             SvOBJECT_on(io);
1396             /* Clear the stashcache because a new IO could overrule a package
1397                name */
1398             DEBUG_o(Perl_deb(aTHX_ "sv_upgrade clearing PL_stashcache\n"));
1399             hv_clear(PL_stashcache);
1400
1401             SvSTASH_set(io, MUTABLE_HV(SvREFCNT_inc(GvHV(iogv))));
1402             IoPAGE_LEN(sv) = 60;
1403         }
1404         if (new_type == SVt_REGEXP)
1405             sv->sv_u.svu_rx = (regexp *)new_body;
1406         else if (old_type < SVt_PV) {
1407             /* referant will be NULL unless the old type was SVt_IV emulating
1408                SVt_RV */
1409             sv->sv_u.svu_rv = referant;
1410         }
1411         break;
1412     default:
1413         Perl_croak(aTHX_ "panic: sv_upgrade to unknown type %lu",
1414                    (unsigned long)new_type);
1415     }
1416
1417     if (old_type > SVt_IV) {
1418 #ifdef PURIFY
1419         safefree(old_body);
1420 #else
1421         /* Note that there is an assumption that all bodies of types that
1422            can be upgraded came from arenas. Only the more complex non-
1423            upgradable types are allowed to be directly malloc()ed.  */
1424         assert(old_type_details->arena);
1425         del_body((void*)((char*)old_body + old_type_details->offset),
1426                  &PL_body_roots[old_type]);
1427 #endif
1428     }
1429 }
1430
1431 /*
1432 =for apidoc sv_backoff
1433
1434 Remove any string offset.  You should normally use the C<SvOOK_off> macro
1435 wrapper instead.
1436
1437 =cut
1438 */
1439
1440 int
1441 Perl_sv_backoff(pTHX_ register SV *const sv)
1442 {
1443     STRLEN delta;
1444     const char * const s = SvPVX_const(sv);
1445
1446     PERL_ARGS_ASSERT_SV_BACKOFF;
1447     PERL_UNUSED_CONTEXT;
1448
1449     assert(SvOOK(sv));
1450     assert(SvTYPE(sv) != SVt_PVHV);
1451     assert(SvTYPE(sv) != SVt_PVAV);
1452
1453     SvOOK_offset(sv, delta);
1454     
1455     SvLEN_set(sv, SvLEN(sv) + delta);
1456     SvPV_set(sv, SvPVX(sv) - delta);
1457     Move(s, SvPVX(sv), SvCUR(sv)+1, char);
1458     SvFLAGS(sv) &= ~SVf_OOK;
1459     return 0;
1460 }
1461
1462 /*
1463 =for apidoc sv_grow
1464
1465 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
1466 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
1467 Use the C<SvGROW> wrapper instead.
1468
1469 =cut
1470 */
1471
1472 char *
1473 Perl_sv_grow(pTHX_ register SV *const sv, register STRLEN newlen)
1474 {
1475     char *s;
1476
1477     PERL_ARGS_ASSERT_SV_GROW;
1478
1479     if (PL_madskills && newlen >= 0x100000) {
1480         PerlIO_printf(Perl_debug_log,
1481                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1482     }
1483 #ifdef HAS_64K_LIMIT
1484     if (newlen >= 0x10000) {
1485         PerlIO_printf(Perl_debug_log,
1486                       "Allocation too large: %"UVxf"\n", (UV)newlen);
1487         my_exit(1);
1488     }
1489 #endif /* HAS_64K_LIMIT */
1490     if (SvROK(sv))
1491         sv_unref(sv);
1492     if (SvTYPE(sv) < SVt_PV) {
1493         sv_upgrade(sv, SVt_PV);
1494         s = SvPVX_mutable(sv);
1495     }
1496     else if (SvOOK(sv)) {       /* pv is offset? */
1497         sv_backoff(sv);
1498         s = SvPVX_mutable(sv);
1499         if (newlen > SvLEN(sv))
1500             newlen += 10 * (newlen - SvCUR(sv)); /* avoid copy each time */
1501 #ifdef HAS_64K_LIMIT
1502         if (newlen >= 0x10000)
1503             newlen = 0xFFFF;
1504 #endif
1505     }
1506     else
1507         s = SvPVX_mutable(sv);
1508
1509     if (newlen > SvLEN(sv)) {           /* need more room? */
1510         STRLEN minlen = SvCUR(sv);
1511         minlen += (minlen >> PERL_STRLEN_EXPAND_SHIFT) + 10;
1512         if (newlen < minlen)
1513             newlen = minlen;
1514 #ifndef Perl_safesysmalloc_size
1515         newlen = PERL_STRLEN_ROUNDUP(newlen);
1516 #endif
1517         if (SvLEN(sv) && s) {
1518             s = (char*)saferealloc(s, newlen);
1519         }
1520         else {
1521             s = (char*)safemalloc(newlen);
1522             if (SvPVX_const(sv) && SvCUR(sv)) {
1523                 Move(SvPVX_const(sv), s, (newlen < SvCUR(sv)) ? newlen : SvCUR(sv), char);
1524             }
1525         }
1526         SvPV_set(sv, s);
1527 #ifdef Perl_safesysmalloc_size
1528         /* Do this here, do it once, do it right, and then we will never get
1529            called back into sv_grow() unless there really is some growing
1530            needed.  */
1531         SvLEN_set(sv, Perl_safesysmalloc_size(s));
1532 #else
1533         SvLEN_set(sv, newlen);
1534 #endif
1535     }
1536     return s;
1537 }
1538
1539 /*
1540 =for apidoc sv_setiv
1541
1542 Copies an integer into the given SV, upgrading first if necessary.
1543 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
1544
1545 =cut
1546 */
1547
1548 void
1549 Perl_sv_setiv(pTHX_ register SV *const sv, const IV i)
1550 {
1551     dVAR;
1552
1553     PERL_ARGS_ASSERT_SV_SETIV;
1554
1555     SV_CHECK_THINKFIRST_COW_DROP(sv);
1556     switch (SvTYPE(sv)) {
1557     case SVt_NULL:
1558     case SVt_NV:
1559         sv_upgrade(sv, SVt_IV);
1560         break;
1561     case SVt_PV:
1562         sv_upgrade(sv, SVt_PVIV);
1563         break;
1564
1565     case SVt_PVGV:
1566         if (!isGV_with_GP(sv))
1567             break;
1568     case SVt_PVAV:
1569     case SVt_PVHV:
1570     case SVt_PVCV:
1571     case SVt_PVFM:
1572     case SVt_PVIO:
1573         /* diag_listed_as: Can't coerce %s to %s in %s */
1574         Perl_croak(aTHX_ "Can't coerce %s to integer in %s", sv_reftype(sv,0),
1575                    OP_DESC(PL_op));
1576     default: NOOP;
1577     }
1578     (void)SvIOK_only(sv);                       /* validate number */
1579     SvIV_set(sv, i);
1580     SvTAINT(sv);
1581 }
1582
1583 /*
1584 =for apidoc sv_setiv_mg
1585
1586 Like C<sv_setiv>, but also handles 'set' magic.
1587
1588 =cut
1589 */
1590
1591 void
1592 Perl_sv_setiv_mg(pTHX_ register SV *const sv, const IV i)
1593 {
1594     PERL_ARGS_ASSERT_SV_SETIV_MG;
1595
1596     sv_setiv(sv,i);
1597     SvSETMAGIC(sv);
1598 }
1599
1600 /*
1601 =for apidoc sv_setuv
1602
1603 Copies an unsigned integer into the given SV, upgrading first if necessary.
1604 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
1605
1606 =cut
1607 */
1608
1609 void
1610 Perl_sv_setuv(pTHX_ register SV *const sv, const UV u)
1611 {
1612     PERL_ARGS_ASSERT_SV_SETUV;
1613
1614     /* With the if statement to ensure that integers are stored as IVs whenever
1615        possible:
1616        u=1.49  s=0.52  cu=72.49  cs=10.64  scripts=270  tests=20865
1617
1618        without
1619        u=1.35  s=0.47  cu=73.45  cs=11.43  scripts=270  tests=20865
1620
1621        If you wish to remove the following if statement, so that this routine
1622        (and its callers) always return UVs, please benchmark to see what the
1623        effect is. Modern CPUs may be different. Or may not :-)
1624     */
1625     if (u <= (UV)IV_MAX) {
1626        sv_setiv(sv, (IV)u);
1627        return;
1628     }
1629     sv_setiv(sv, 0);
1630     SvIsUV_on(sv);
1631     SvUV_set(sv, u);
1632 }
1633
1634 /*
1635 =for apidoc sv_setuv_mg
1636
1637 Like C<sv_setuv>, but also handles 'set' magic.
1638
1639 =cut
1640 */
1641
1642 void
1643 Perl_sv_setuv_mg(pTHX_ register SV *const sv, const UV u)
1644 {
1645     PERL_ARGS_ASSERT_SV_SETUV_MG;
1646
1647     sv_setuv(sv,u);
1648     SvSETMAGIC(sv);
1649 }
1650
1651 /*
1652 =for apidoc sv_setnv
1653
1654 Copies a double into the given SV, upgrading first if necessary.
1655 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
1656
1657 =cut
1658 */
1659
1660 void
1661 Perl_sv_setnv(pTHX_ register SV *const sv, const NV num)
1662 {
1663     dVAR;
1664
1665     PERL_ARGS_ASSERT_SV_SETNV;
1666
1667     SV_CHECK_THINKFIRST_COW_DROP(sv);
1668     switch (SvTYPE(sv)) {
1669     case SVt_NULL:
1670     case SVt_IV:
1671         sv_upgrade(sv, SVt_NV);
1672         break;
1673     case SVt_PV:
1674     case SVt_PVIV:
1675         sv_upgrade(sv, SVt_PVNV);
1676         break;
1677
1678     case SVt_PVGV:
1679         if (!isGV_with_GP(sv))
1680             break;
1681     case SVt_PVAV:
1682     case SVt_PVHV:
1683     case SVt_PVCV:
1684     case SVt_PVFM:
1685     case SVt_PVIO:
1686         /* diag_listed_as: Can't coerce %s to %s in %s */
1687         Perl_croak(aTHX_ "Can't coerce %s to number in %s", sv_reftype(sv,0),
1688                    OP_DESC(PL_op));
1689     default: NOOP;
1690     }
1691     SvNV_set(sv, num);
1692     (void)SvNOK_only(sv);                       /* validate number */
1693     SvTAINT(sv);
1694 }
1695
1696 /*
1697 =for apidoc sv_setnv_mg
1698
1699 Like C<sv_setnv>, but also handles 'set' magic.
1700
1701 =cut
1702 */
1703
1704 void
1705 Perl_sv_setnv_mg(pTHX_ register SV *const sv, const NV num)
1706 {
1707     PERL_ARGS_ASSERT_SV_SETNV_MG;
1708
1709     sv_setnv(sv,num);
1710     SvSETMAGIC(sv);
1711 }
1712
1713 /* Print an "isn't numeric" warning, using a cleaned-up,
1714  * printable version of the offending string
1715  */
1716
1717 STATIC void
1718 S_not_a_number(pTHX_ SV *const sv)
1719 {
1720      dVAR;
1721      SV *dsv;
1722      char tmpbuf[64];
1723      const char *pv;
1724
1725      PERL_ARGS_ASSERT_NOT_A_NUMBER;
1726
1727      if (DO_UTF8(sv)) {
1728           dsv = newSVpvs_flags("", SVs_TEMP);
1729           pv = sv_uni_display(dsv, sv, 10, UNI_DISPLAY_ISPRINT);
1730      } else {
1731           char *d = tmpbuf;
1732           const char * const limit = tmpbuf + sizeof(tmpbuf) - 8;
1733           /* each *s can expand to 4 chars + "...\0",
1734              i.e. need room for 8 chars */
1735         
1736           const char *s = SvPVX_const(sv);
1737           const char * const end = s + SvCUR(sv);
1738           for ( ; s < end && d < limit; s++ ) {
1739                int ch = *s & 0xFF;
1740                if (ch & 128 && !isPRINT_LC(ch)) {
1741                     *d++ = 'M';
1742                     *d++ = '-';
1743                     ch &= 127;
1744                }
1745                if (ch == '\n') {
1746                     *d++ = '\\';
1747                     *d++ = 'n';
1748                }
1749                else if (ch == '\r') {
1750                     *d++ = '\\';
1751                     *d++ = 'r';
1752                }
1753                else if (ch == '\f') {
1754                     *d++ = '\\';
1755                     *d++ = 'f';
1756                }
1757                else if (ch == '\\') {
1758                     *d++ = '\\';
1759                     *d++ = '\\';
1760                }
1761                else if (ch == '\0') {
1762                     *d++ = '\\';
1763                     *d++ = '0';
1764                }
1765                else if (isPRINT_LC(ch))
1766                     *d++ = ch;
1767                else {
1768                     *d++ = '^';
1769                     *d++ = toCTRL(ch);
1770                }
1771           }
1772           if (s < end) {
1773                *d++ = '.';
1774                *d++ = '.';
1775                *d++ = '.';
1776           }
1777           *d = '\0';
1778           pv = tmpbuf;
1779     }
1780
1781     if (PL_op)
1782         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1783                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1784                     "Argument \"%s\" isn't numeric in %s", pv,
1785                     OP_DESC(PL_op));
1786     else
1787         Perl_warner(aTHX_ packWARN(WARN_NUMERIC),
1788                     /* diag_listed_as: Argument "%s" isn't numeric%s */
1789                     "Argument \"%s\" isn't numeric", pv);
1790 }
1791
1792 /*
1793 =for apidoc looks_like_number
1794
1795 Test if the content of an SV looks like a number (or is a number).
1796 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
1797 non-numeric warning), even if your atof() doesn't grok them.  Get-magic is
1798 ignored.
1799
1800 =cut
1801 */
1802
1803 I32
1804 Perl_looks_like_number(pTHX_ SV *const sv)
1805 {
1806     const char *sbegin;
1807     STRLEN len;
1808
1809     PERL_ARGS_ASSERT_LOOKS_LIKE_NUMBER;
1810
1811     if (SvPOK(sv) || SvPOKp(sv)) {
1812         sbegin = SvPV_nomg_const(sv, len);
1813     }
1814     else
1815         return SvFLAGS(sv) & (SVf_NOK|SVp_NOK|SVf_IOK|SVp_IOK);
1816     return grok_number(sbegin, len, NULL);
1817 }
1818
1819 STATIC bool
1820 S_glob_2number(pTHX_ GV * const gv)
1821 {
1822     PERL_ARGS_ASSERT_GLOB_2NUMBER;
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     {
1828         SV *const buffer = sv_newmortal();
1829         gv_efullname3(buffer, gv, "*");
1830         not_a_number(buffer);
1831     }
1832     /* We just want something true to return, so that S_sv_2iuv_common
1833         can tail call us and return true.  */
1834     return TRUE;
1835 }
1836
1837 /* Actually, ISO C leaves conversion of UV to IV undefined, but
1838    until proven guilty, assume that things are not that bad... */
1839
1840 /*
1841    NV_PRESERVES_UV:
1842
1843    As 64 bit platforms often have an NV that doesn't preserve all bits of
1844    an IV (an assumption perl has been based on to date) it becomes necessary
1845    to remove the assumption that the NV always carries enough precision to
1846    recreate the IV whenever needed, and that the NV is the canonical form.
1847    Instead, IV/UV and NV need to be given equal rights. So as to not lose
1848    precision as a side effect of conversion (which would lead to insanity
1849    and the dragon(s) in t/op/numconvert.t getting very angry) the intent is
1850    1) to distinguish between IV/UV/NV slots that have cached a valid
1851       conversion where precision was lost and IV/UV/NV slots that have a
1852       valid conversion which has lost no precision
1853    2) to ensure that if a numeric conversion to one form is requested that
1854       would lose precision, the precise conversion (or differently
1855       imprecise conversion) is also performed and cached, to prevent
1856       requests for different numeric formats on the same SV causing
1857       lossy conversion chains. (lossless conversion chains are perfectly
1858       acceptable (still))
1859
1860
1861    flags are used:
1862    SvIOKp is true if the IV slot contains a valid value
1863    SvIOK  is true only if the IV value is accurate (UV if SvIOK_UV true)
1864    SvNOKp is true if the NV slot contains a valid value
1865    SvNOK  is true only if the NV value is accurate
1866
1867    so
1868    while converting from PV to NV, check to see if converting that NV to an
1869    IV(or UV) would lose accuracy over a direct conversion from PV to
1870    IV(or UV). If it would, cache both conversions, return NV, but mark
1871    SV as IOK NOKp (ie not NOK).
1872
1873    While converting from PV to IV, check to see if converting that IV to an
1874    NV would lose accuracy over a direct conversion from PV to NV. If it
1875    would, cache both conversions, flag similarly.
1876
1877    Before, the SV value "3.2" could become NV=3.2 IV=3 NOK, IOK quite
1878    correctly because if IV & NV were set NV *always* overruled.
1879    Now, "3.2" will become NV=3.2 IV=3 NOK, IOKp, because the flag's meaning
1880    changes - now IV and NV together means that the two are interchangeable:
1881    SvIVX == (IV) SvNVX && SvNVX == (NV) SvIVX;
1882
1883    The benefit of this is that operations such as pp_add know that if
1884    SvIOK is true for both left and right operands, then integer addition
1885    can be used instead of floating point (for cases where the result won't
1886    overflow). Before, floating point was always used, which could lead to
1887    loss of precision compared with integer addition.
1888
1889    * making IV and NV equal status should make maths accurate on 64 bit
1890      platforms
1891    * may speed up maths somewhat if pp_add and friends start to use
1892      integers when possible instead of fp. (Hopefully the overhead in
1893      looking for SvIOK and checking for overflow will not outweigh the
1894      fp to integer speedup)
1895    * will slow down integer operations (callers of SvIV) on "inaccurate"
1896      values, as the change from SvIOK to SvIOKp will cause a call into
1897      sv_2iv each time rather than a macro access direct to the IV slot
1898    * should speed up number->string conversion on integers as IV is
1899      favoured when IV and NV are equally accurate
1900
1901    ####################################################################
1902    You had better be using SvIOK_notUV if you want an IV for arithmetic:
1903    SvIOK is true if (IV or UV), so you might be getting (IV)SvUV.
1904    On the other hand, SvUOK is true iff UV.
1905    ####################################################################
1906
1907    Your mileage will vary depending your CPU's relative fp to integer
1908    performance ratio.
1909 */
1910
1911 #ifndef NV_PRESERVES_UV
1912 #  define IS_NUMBER_UNDERFLOW_IV 1
1913 #  define IS_NUMBER_UNDERFLOW_UV 2
1914 #  define IS_NUMBER_IV_AND_UV    2
1915 #  define IS_NUMBER_OVERFLOW_IV  4
1916 #  define IS_NUMBER_OVERFLOW_UV  5
1917
1918 /* sv_2iuv_non_preserve(): private routine for use by sv_2iv() and sv_2uv() */
1919
1920 /* For sv_2nv these three cases are "SvNOK and don't bother casting"  */
1921 STATIC int
1922 S_sv_2iuv_non_preserve(pTHX_ register SV *const sv
1923 #  ifdef DEBUGGING
1924                        , I32 numtype
1925 #  endif
1926                        )
1927 {
1928     dVAR;
1929
1930     PERL_ARGS_ASSERT_SV_2IUV_NON_PRESERVE;
1931
1932     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));
1933     if (SvNVX(sv) < (NV)IV_MIN) {
1934         (void)SvIOKp_on(sv);
1935         (void)SvNOK_on(sv);
1936         SvIV_set(sv, IV_MIN);
1937         return IS_NUMBER_UNDERFLOW_IV;
1938     }
1939     if (SvNVX(sv) > (NV)UV_MAX) {
1940         (void)SvIOKp_on(sv);
1941         (void)SvNOK_on(sv);
1942         SvIsUV_on(sv);
1943         SvUV_set(sv, UV_MAX);
1944         return IS_NUMBER_OVERFLOW_UV;
1945     }
1946     (void)SvIOKp_on(sv);
1947     (void)SvNOK_on(sv);
1948     /* Can't use strtol etc to convert this string.  (See truth table in
1949        sv_2iv  */
1950     if (SvNVX(sv) <= (UV)IV_MAX) {
1951         SvIV_set(sv, I_V(SvNVX(sv)));
1952         if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
1953             SvIOK_on(sv); /* Integer is precise. NOK, IOK */
1954         } else {
1955             /* Integer is imprecise. NOK, IOKp */
1956         }
1957         return SvNVX(sv) < 0 ? IS_NUMBER_UNDERFLOW_UV : IS_NUMBER_IV_AND_UV;
1958     }
1959     SvIsUV_on(sv);
1960     SvUV_set(sv, U_V(SvNVX(sv)));
1961     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
1962         if (SvUVX(sv) == UV_MAX) {
1963             /* As we know that NVs don't preserve UVs, UV_MAX cannot
1964                possibly be preserved by NV. Hence, it must be overflow.
1965                NOK, IOKp */
1966             return IS_NUMBER_OVERFLOW_UV;
1967         }
1968         SvIOK_on(sv); /* Integer is precise. NOK, UOK */
1969     } else {
1970         /* Integer is imprecise. NOK, IOKp */
1971     }
1972     return IS_NUMBER_OVERFLOW_IV;
1973 }
1974 #endif /* !NV_PRESERVES_UV*/
1975
1976 STATIC bool
1977 S_sv_2iuv_common(pTHX_ SV *const sv)
1978 {
1979     dVAR;
1980
1981     PERL_ARGS_ASSERT_SV_2IUV_COMMON;
1982
1983     if (SvNOKp(sv)) {
1984         /* erm. not sure. *should* never get NOKp (without NOK) from sv_2nv
1985          * without also getting a cached IV/UV from it at the same time
1986          * (ie PV->NV conversion should detect loss of accuracy and cache
1987          * IV or UV at same time to avoid this. */
1988         /* IV-over-UV optimisation - choose to cache IV if possible */
1989
1990         if (SvTYPE(sv) == SVt_NV)
1991             sv_upgrade(sv, SVt_PVNV);
1992
1993         (void)SvIOKp_on(sv);    /* Must do this first, to clear any SvOOK */
1994         /* < not <= as for NV doesn't preserve UV, ((NV)IV_MAX+1) will almost
1995            certainly cast into the IV range at IV_MAX, whereas the correct
1996            answer is the UV IV_MAX +1. Hence < ensures that dodgy boundary
1997            cases go to UV */
1998 #if defined(NAN_COMPARE_BROKEN) && defined(Perl_isnan)
1999         if (Perl_isnan(SvNVX(sv))) {
2000             SvUV_set(sv, 0);
2001             SvIsUV_on(sv);
2002             return FALSE;
2003         }
2004 #endif
2005         if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2006             SvIV_set(sv, I_V(SvNVX(sv)));
2007             if (SvNVX(sv) == (NV) SvIVX(sv)
2008 #ifndef NV_PRESERVES_UV
2009                 && (((UV)1 << NV_PRESERVES_UV_BITS) >
2010                     (UV)(SvIVX(sv) > 0 ? SvIVX(sv) : -SvIVX(sv)))
2011                 /* Don't flag it as "accurately an integer" if the number
2012                    came from a (by definition imprecise) NV operation, and
2013                    we're outside the range of NV integer precision */
2014 #endif
2015                 ) {
2016                 if (SvNOK(sv))
2017                     SvIOK_on(sv);  /* Can this go wrong with rounding? NWC */
2018                 else {
2019                     /* scalar has trailing garbage, eg "42a" */
2020                 }
2021                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2022                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (precise)\n",
2023                                       PTR2UV(sv),
2024                                       SvNVX(sv),
2025                                       SvIVX(sv)));
2026
2027             } else {
2028                 /* IV not precise.  No need to convert from PV, as NV
2029                    conversion would already have cached IV if it detected
2030                    that PV->IV would be better than PV->NV->IV
2031                    flags already correct - don't set public IOK.  */
2032                 DEBUG_c(PerlIO_printf(Perl_debug_log,
2033                                       "0x%"UVxf" iv(%"NVgf" => %"IVdf") (imprecise)\n",
2034                                       PTR2UV(sv),
2035                                       SvNVX(sv),
2036                                       SvIVX(sv)));
2037             }
2038             /* Can the above go wrong if SvIVX == IV_MIN and SvNVX < IV_MIN,
2039                but the cast (NV)IV_MIN rounds to a the value less (more
2040                negative) than IV_MIN which happens to be equal to SvNVX ??
2041                Analogous to 0xFFFFFFFFFFFFFFFF rounding up to NV (2**64) and
2042                NV rounding back to 0xFFFFFFFFFFFFFFFF, so UVX == UV(NVX) and
2043                (NV)UVX == NVX are both true, but the values differ. :-(
2044                Hopefully for 2s complement IV_MIN is something like
2045                0x8000000000000000 which will be exact. NWC */
2046         }
2047         else {
2048             SvUV_set(sv, U_V(SvNVX(sv)));
2049             if (
2050                 (SvNVX(sv) == (NV) SvUVX(sv))
2051 #ifndef  NV_PRESERVES_UV
2052                 /* Make sure it's not 0xFFFFFFFFFFFFFFFF */
2053                 /*&& (SvUVX(sv) != UV_MAX) irrelevant with code below */
2054                 && (((UV)1 << NV_PRESERVES_UV_BITS) > SvUVX(sv))
2055                 /* Don't flag it as "accurately an integer" if the number
2056                    came from a (by definition imprecise) NV operation, and
2057                    we're outside the range of NV integer precision */
2058 #endif
2059                 && SvNOK(sv)
2060                 )
2061                 SvIOK_on(sv);
2062             SvIsUV_on(sv);
2063             DEBUG_c(PerlIO_printf(Perl_debug_log,
2064                                   "0x%"UVxf" 2iv(%"UVuf" => %"IVdf") (as unsigned)\n",
2065                                   PTR2UV(sv),
2066                                   SvUVX(sv),
2067                                   SvUVX(sv)));
2068         }
2069     }
2070     else if (SvPOKp(sv)) {
2071         UV value;
2072         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2073         /* We want to avoid a possible problem when we cache an IV/ a UV which
2074            may be later translated to an NV, and the resulting NV is not
2075            the same as the direct translation of the initial string
2076            (eg 123.456 can shortcut to the IV 123 with atol(), but we must
2077            be careful to ensure that the value with the .456 is around if the
2078            NV value is requested in the future).
2079         
2080            This means that if we cache such an IV/a UV, we need to cache the
2081            NV as well.  Moreover, we trade speed for space, and do not
2082            cache the NV if we are sure it's not needed.
2083          */
2084
2085         /* SVt_PVNV is one higher than SVt_PVIV, hence this order  */
2086         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2087              == IS_NUMBER_IN_UV) {
2088             /* It's definitely an integer, only upgrade to PVIV */
2089             if (SvTYPE(sv) < SVt_PVIV)
2090                 sv_upgrade(sv, SVt_PVIV);
2091             (void)SvIOK_on(sv);
2092         } else if (SvTYPE(sv) < SVt_PVNV)
2093             sv_upgrade(sv, SVt_PVNV);
2094
2095         /* If NVs preserve UVs then we only use the UV value if we know that
2096            we aren't going to call atof() below. If NVs don't preserve UVs
2097            then the value returned may have more precision than atof() will
2098            return, even though value isn't perfectly accurate.  */
2099         if ((numtype & (IS_NUMBER_IN_UV
2100 #ifdef NV_PRESERVES_UV
2101                         | IS_NUMBER_NOT_INT
2102 #endif
2103             )) == IS_NUMBER_IN_UV) {
2104             /* This won't turn off the public IOK flag if it was set above  */
2105             (void)SvIOKp_on(sv);
2106
2107             if (!(numtype & IS_NUMBER_NEG)) {
2108                 /* positive */;
2109                 if (value <= (UV)IV_MAX) {
2110                     SvIV_set(sv, (IV)value);
2111                 } else {
2112                     /* it didn't overflow, and it was positive. */
2113                     SvUV_set(sv, value);
2114                     SvIsUV_on(sv);
2115                 }
2116             } else {
2117                 /* 2s complement assumption  */
2118                 if (value <= (UV)IV_MIN) {
2119                     SvIV_set(sv, -(IV)value);
2120                 } else {
2121                     /* Too negative for an IV.  This is a double upgrade, but
2122                        I'm assuming it will be rare.  */
2123                     if (SvTYPE(sv) < SVt_PVNV)
2124                         sv_upgrade(sv, SVt_PVNV);
2125                     SvNOK_on(sv);
2126                     SvIOK_off(sv);
2127                     SvIOKp_on(sv);
2128                     SvNV_set(sv, -(NV)value);
2129                     SvIV_set(sv, IV_MIN);
2130                 }
2131             }
2132         }
2133         /* For !NV_PRESERVES_UV and IS_NUMBER_IN_UV and IS_NUMBER_NOT_INT we
2134            will be in the previous block to set the IV slot, and the next
2135            block to set the NV slot.  So no else here.  */
2136         
2137         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2138             != IS_NUMBER_IN_UV) {
2139             /* It wasn't an (integer that doesn't overflow the UV). */
2140             SvNV_set(sv, Atof(SvPVX_const(sv)));
2141
2142             if (! numtype && ckWARN(WARN_NUMERIC))
2143                 not_a_number(sv);
2144
2145 #if defined(USE_LONG_DOUBLE)
2146             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%" PERL_PRIgldbl ")\n",
2147                                   PTR2UV(sv), SvNVX(sv)));
2148 #else
2149             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"NVgf")\n",
2150                                   PTR2UV(sv), SvNVX(sv)));
2151 #endif
2152
2153 #ifdef NV_PRESERVES_UV
2154             (void)SvIOKp_on(sv);
2155             (void)SvNOK_on(sv);
2156             if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2157                 SvIV_set(sv, I_V(SvNVX(sv)));
2158                 if ((NV)(SvIVX(sv)) == SvNVX(sv)) {
2159                     SvIOK_on(sv);
2160                 } else {
2161                     NOOP;  /* Integer is imprecise. NOK, IOKp */
2162                 }
2163                 /* UV will not work better than IV */
2164             } else {
2165                 if (SvNVX(sv) > (NV)UV_MAX) {
2166                     SvIsUV_on(sv);
2167                     /* Integer is inaccurate. NOK, IOKp, is UV */
2168                     SvUV_set(sv, UV_MAX);
2169                 } else {
2170                     SvUV_set(sv, U_V(SvNVX(sv)));
2171                     /* 0xFFFFFFFFFFFFFFFF not an issue in here, NVs
2172                        NV preservse UV so can do correct comparison.  */
2173                     if ((NV)(SvUVX(sv)) == SvNVX(sv)) {
2174                         SvIOK_on(sv);
2175                     } else {
2176                         NOOP;   /* Integer is imprecise. NOK, IOKp, is UV */
2177                     }
2178                 }
2179                 SvIsUV_on(sv);
2180             }
2181 #else /* NV_PRESERVES_UV */
2182             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2183                 == (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT)) {
2184                 /* The IV/UV slot will have been set from value returned by
2185                    grok_number above.  The NV slot has just been set using
2186                    Atof.  */
2187                 SvNOK_on(sv);
2188                 assert (SvIOKp(sv));
2189             } else {
2190                 if (((UV)1 << NV_PRESERVES_UV_BITS) >
2191                     U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2192                     /* Small enough to preserve all bits. */
2193                     (void)SvIOKp_on(sv);
2194                     SvNOK_on(sv);
2195                     SvIV_set(sv, I_V(SvNVX(sv)));
2196                     if ((NV)(SvIVX(sv)) == SvNVX(sv))
2197                         SvIOK_on(sv);
2198                     /* Assumption: first non-preserved integer is < IV_MAX,
2199                        this NV is in the preserved range, therefore: */
2200                     if (!(U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))
2201                           < (UV)IV_MAX)) {
2202                         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);
2203                     }
2204                 } else {
2205                     /* IN_UV NOT_INT
2206                          0      0       already failed to read UV.
2207                          0      1       already failed to read UV.
2208                          1      0       you won't get here in this case. IV/UV
2209                                         slot set, public IOK, Atof() unneeded.
2210                          1      1       already read UV.
2211                        so there's no point in sv_2iuv_non_preserve() attempting
2212                        to use atol, strtol, strtoul etc.  */
2213 #  ifdef DEBUGGING
2214                     sv_2iuv_non_preserve (sv, numtype);
2215 #  else
2216                     sv_2iuv_non_preserve (sv);
2217 #  endif
2218                 }
2219             }
2220 #endif /* NV_PRESERVES_UV */
2221         /* It might be more code efficient to go through the entire logic above
2222            and conditionally set with SvIOKp_on() rather than SvIOK(), but it
2223            gets complex and potentially buggy, so more programmer efficient
2224            to do it this way, by turning off the public flags:  */
2225         if (!numtype)
2226             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2227         }
2228     }
2229     else  {
2230         if (isGV_with_GP(sv))
2231             return glob_2number(MUTABLE_GV(sv));
2232
2233         if (!SvPADTMP(sv)) {
2234             if (!PL_localizing && ckWARN(WARN_UNINITIALIZED))
2235                 report_uninit(sv);
2236         }
2237         if (SvTYPE(sv) < SVt_IV)
2238             /* Typically the caller expects that sv_any is not NULL now.  */
2239             sv_upgrade(sv, SVt_IV);
2240         /* Return 0 from the caller.  */
2241         return TRUE;
2242     }
2243     return FALSE;
2244 }
2245
2246 /*
2247 =for apidoc sv_2iv_flags
2248
2249 Return the integer value of an SV, doing any necessary string
2250 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2251 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
2252
2253 =cut
2254 */
2255
2256 IV
2257 Perl_sv_2iv_flags(pTHX_ register SV *const sv, const I32 flags)
2258 {
2259     dVAR;
2260
2261     if (!sv)
2262         return 0;
2263
2264     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2265         mg_get(sv);
2266
2267     if (SvROK(sv)) {
2268         if (SvAMAGIC(sv)) {
2269             SV * tmpstr;
2270             if (flags & SV_SKIP_OVERLOAD)
2271                 return 0;
2272             tmpstr = AMG_CALLunary(sv, numer_amg);
2273             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2274                 return SvIV(tmpstr);
2275             }
2276         }
2277         return PTR2IV(SvRV(sv));
2278     }
2279
2280     if (SvVALID(sv) || isREGEXP(sv)) {
2281         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2282            the same flag bit as SVf_IVisUV, so must not let them cache IVs.
2283            In practice they are extremely unlikely to actually get anywhere
2284            accessible by user Perl code - the only way that I'm aware of is when
2285            a constant subroutine which is used as the second argument to index.
2286
2287            Regexps have no SvIVX and SvNVX fields.
2288         */
2289         assert(isREGEXP(sv) || SvPOKp(sv));
2290         {
2291             UV value;
2292             const char * const ptr =
2293                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2294             const int numtype
2295                 = grok_number(ptr, SvCUR(sv), &value);
2296
2297             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2298                 == IS_NUMBER_IN_UV) {
2299                 /* It's definitely an integer */
2300                 if (numtype & IS_NUMBER_NEG) {
2301                     if (value < (UV)IV_MIN)
2302                         return -(IV)value;
2303                 } else {
2304                     if (value < (UV)IV_MAX)
2305                         return (IV)value;
2306                 }
2307             }
2308             if (!numtype) {
2309                 if (ckWARN(WARN_NUMERIC))
2310                     not_a_number(sv);
2311             }
2312             return I_V(Atof(ptr));
2313         }
2314     }
2315
2316     if (SvTHINKFIRST(sv)) {
2317 #ifdef PERL_OLD_COPY_ON_WRITE
2318         if (SvIsCOW(sv)) {
2319             sv_force_normal_flags(sv, 0);
2320         }
2321 #endif
2322         if (SvREADONLY(sv) && !SvOK(sv)) {
2323             if (ckWARN(WARN_UNINITIALIZED))
2324                 report_uninit(sv);
2325             return 0;
2326         }
2327     }
2328
2329     if (!SvIOKp(sv)) {
2330         if (S_sv_2iuv_common(aTHX_ sv))
2331             return 0;
2332     }
2333
2334     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2iv(%"IVdf")\n",
2335         PTR2UV(sv),SvIVX(sv)));
2336     return SvIsUV(sv) ? (IV)SvUVX(sv) : SvIVX(sv);
2337 }
2338
2339 /*
2340 =for apidoc sv_2uv_flags
2341
2342 Return the unsigned integer value of an SV, doing any necessary string
2343 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2344 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
2345
2346 =cut
2347 */
2348
2349 UV
2350 Perl_sv_2uv_flags(pTHX_ register SV *const sv, const I32 flags)
2351 {
2352     dVAR;
2353
2354     if (!sv)
2355         return 0;
2356
2357     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2358         mg_get(sv);
2359
2360     if (SvROK(sv)) {
2361         if (SvAMAGIC(sv)) {
2362             SV *tmpstr;
2363             if (flags & SV_SKIP_OVERLOAD)
2364                 return 0;
2365             tmpstr = AMG_CALLunary(sv, numer_amg);
2366             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2367                 return SvUV(tmpstr);
2368             }
2369         }
2370         return PTR2UV(SvRV(sv));
2371     }
2372
2373     if (SvVALID(sv) || isREGEXP(sv)) {
2374         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2375            the same flag bit as SVf_IVisUV, so must not let them cache IVs.  
2376            Regexps have no SvIVX and SvNVX fields. */
2377         assert(isREGEXP(sv) || SvPOKp(sv));
2378         {
2379             UV value;
2380             const char * const ptr =
2381                 isREGEXP(sv) ? RX_WRAPPED((REGEXP*)sv) : SvPVX_const(sv);
2382             const int numtype
2383                 = grok_number(ptr, SvCUR(sv), &value);
2384
2385             if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2386                 == IS_NUMBER_IN_UV) {
2387                 /* It's definitely an integer */
2388                 if (!(numtype & IS_NUMBER_NEG))
2389                     return value;
2390             }
2391             if (!numtype) {
2392                 if (ckWARN(WARN_NUMERIC))
2393                     not_a_number(sv);
2394             }
2395             return U_V(Atof(ptr));
2396         }
2397     }
2398
2399     if (SvTHINKFIRST(sv)) {
2400 #ifdef PERL_OLD_COPY_ON_WRITE
2401         if (SvIsCOW(sv)) {
2402             sv_force_normal_flags(sv, 0);
2403         }
2404 #endif
2405         if (SvREADONLY(sv) && !SvOK(sv)) {
2406             if (ckWARN(WARN_UNINITIALIZED))
2407                 report_uninit(sv);
2408             return 0;
2409         }
2410     }
2411
2412     if (!SvIOKp(sv)) {
2413         if (S_sv_2iuv_common(aTHX_ sv))
2414             return 0;
2415     }
2416
2417     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
2418                           PTR2UV(sv),SvUVX(sv)));
2419     return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
2420 }
2421
2422 /*
2423 =for apidoc sv_2nv_flags
2424
2425 Return the num value of an SV, doing any necessary string or integer
2426 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
2427 Normally used via the C<SvNV(sv)> and C<SvNVx(sv)> macros.
2428
2429 =cut
2430 */
2431
2432 NV
2433 Perl_sv_2nv_flags(pTHX_ register SV *const sv, const I32 flags)
2434 {
2435     dVAR;
2436     if (!sv)
2437         return 0.0;
2438     if (SvGMAGICAL(sv) || SvVALID(sv) || isREGEXP(sv)) {
2439         /* FBMs use the space for SvIVX and SvNVX for other purposes, and use
2440            the same flag bit as SVf_IVisUV, so must not let them cache NVs.
2441            Regexps have no SvIVX and SvNVX fields.  */
2442         const char *ptr;
2443         if (flags & SV_GMAGIC)
2444             mg_get(sv);
2445         if (SvNOKp(sv))
2446             return SvNVX(sv);
2447         if (SvPOKp(sv) && !SvIOKp(sv)) {
2448             ptr = SvPVX_const(sv);
2449           grokpv:
2450             if (!SvIOKp(sv) && ckWARN(WARN_NUMERIC) &&
2451                 !grok_number(ptr, SvCUR(sv), NULL))
2452                 not_a_number(sv);
2453             return Atof(ptr);
2454         }
2455         if (SvIOKp(sv)) {
2456             if (SvIsUV(sv))
2457                 return (NV)SvUVX(sv);
2458             else
2459                 return (NV)SvIVX(sv);
2460         }
2461         if (SvROK(sv)) {
2462             goto return_rok;
2463         }
2464         if (isREGEXP(sv)) {
2465             ptr = RX_WRAPPED((REGEXP *)sv);
2466             goto grokpv;
2467         }
2468         assert(SvTYPE(sv) >= SVt_PVMG);
2469         /* This falls through to the report_uninit near the end of the
2470            function. */
2471     } else if (SvTHINKFIRST(sv)) {
2472         if (SvROK(sv)) {
2473         return_rok:
2474             if (SvAMAGIC(sv)) {
2475                 SV *tmpstr;
2476                 if (flags & SV_SKIP_OVERLOAD)
2477                     return 0;
2478                 tmpstr = AMG_CALLunary(sv, numer_amg);
2479                 if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2480                     return SvNV(tmpstr);
2481                 }
2482             }
2483             return PTR2NV(SvRV(sv));
2484         }
2485 #ifdef PERL_OLD_COPY_ON_WRITE
2486         if (SvIsCOW(sv)) {
2487             sv_force_normal_flags(sv, 0);
2488         }
2489 #endif
2490         if (SvREADONLY(sv) && !SvOK(sv)) {
2491             if (ckWARN(WARN_UNINITIALIZED))
2492                 report_uninit(sv);
2493             return 0.0;
2494         }
2495     }
2496     if (SvTYPE(sv) < SVt_NV) {
2497         /* The logic to use SVt_PVNV if necessary is in sv_upgrade.  */
2498         sv_upgrade(sv, SVt_NV);
2499 #ifdef USE_LONG_DOUBLE
2500         DEBUG_c({
2501             STORE_NUMERIC_LOCAL_SET_STANDARD();
2502             PerlIO_printf(Perl_debug_log,
2503                           "0x%"UVxf" num(%" PERL_PRIgldbl ")\n",
2504                           PTR2UV(sv), SvNVX(sv));
2505             RESTORE_NUMERIC_LOCAL();
2506         });
2507 #else
2508         DEBUG_c({
2509             STORE_NUMERIC_LOCAL_SET_STANDARD();
2510             PerlIO_printf(Perl_debug_log, "0x%"UVxf" num(%"NVgf")\n",
2511                           PTR2UV(sv), SvNVX(sv));
2512             RESTORE_NUMERIC_LOCAL();
2513         });
2514 #endif
2515     }
2516     else if (SvTYPE(sv) < SVt_PVNV)
2517         sv_upgrade(sv, SVt_PVNV);
2518     if (SvNOKp(sv)) {
2519         return SvNVX(sv);
2520     }
2521     if (SvIOKp(sv)) {
2522         SvNV_set(sv, SvIsUV(sv) ? (NV)SvUVX(sv) : (NV)SvIVX(sv));
2523 #ifdef NV_PRESERVES_UV
2524         if (SvIOK(sv))
2525             SvNOK_on(sv);
2526         else
2527             SvNOKp_on(sv);
2528 #else
2529         /* Only set the public NV OK flag if this NV preserves the IV  */
2530         /* Check it's not 0xFFFFFFFFFFFFFFFF */
2531         if (SvIOK(sv) &&
2532             SvIsUV(sv) ? ((SvUVX(sv) != UV_MAX)&&(SvUVX(sv) == U_V(SvNVX(sv))))
2533                        : (SvIVX(sv) == I_V(SvNVX(sv))))
2534             SvNOK_on(sv);
2535         else
2536             SvNOKp_on(sv);
2537 #endif
2538     }
2539     else if (SvPOKp(sv)) {
2540         UV value;
2541         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), &value);
2542         if (!SvIOKp(sv) && !numtype && ckWARN(WARN_NUMERIC))
2543             not_a_number(sv);
2544 #ifdef NV_PRESERVES_UV
2545         if ((numtype & (IS_NUMBER_IN_UV | IS_NUMBER_NOT_INT))
2546             == IS_NUMBER_IN_UV) {
2547             /* It's definitely an integer */
2548             SvNV_set(sv, (numtype & IS_NUMBER_NEG) ? -(NV)value : (NV)value);
2549         } else
2550             SvNV_set(sv, Atof(SvPVX_const(sv)));
2551         if (numtype)
2552             SvNOK_on(sv);
2553         else
2554             SvNOKp_on(sv);
2555 #else
2556         SvNV_set(sv, Atof(SvPVX_const(sv)));
2557         /* Only set the public NV OK flag if this NV preserves the value in
2558            the PV at least as well as an IV/UV would.
2559            Not sure how to do this 100% reliably. */
2560         /* if that shift count is out of range then Configure's test is
2561            wonky. We shouldn't be in here with NV_PRESERVES_UV_BITS ==
2562            UV_BITS */
2563         if (((UV)1 << NV_PRESERVES_UV_BITS) >
2564             U_V(SvNVX(sv) > 0 ? SvNVX(sv) : -SvNVX(sv))) {
2565             SvNOK_on(sv); /* Definitely small enough to preserve all bits */
2566         } else if (!(numtype & IS_NUMBER_IN_UV)) {
2567             /* Can't use strtol etc to convert this string, so don't try.
2568                sv_2iv and sv_2uv will use the NV to convert, not the PV.  */
2569             SvNOK_on(sv);
2570         } else {
2571             /* value has been set.  It may not be precise.  */
2572             if ((numtype & IS_NUMBER_NEG) && (value > (UV)IV_MIN)) {
2573                 /* 2s complement assumption for (UV)IV_MIN  */
2574                 SvNOK_on(sv); /* Integer is too negative.  */
2575             } else {
2576                 SvNOKp_on(sv);
2577                 SvIOKp_on(sv);
2578
2579                 if (numtype & IS_NUMBER_NEG) {
2580                     SvIV_set(sv, -(IV)value);
2581                 } else if (value <= (UV)IV_MAX) {
2582                     SvIV_set(sv, (IV)value);
2583                 } else {
2584                     SvUV_set(sv, value);
2585                     SvIsUV_on(sv);
2586                 }
2587
2588                 if (numtype & IS_NUMBER_NOT_INT) {
2589                     /* I believe that even if the original PV had decimals,
2590                        they are lost beyond the limit of the FP precision.
2591                        However, neither is canonical, so both only get p
2592                        flags.  NWC, 2000/11/25 */
2593                     /* Both already have p flags, so do nothing */
2594                 } else {
2595                     const NV nv = SvNVX(sv);
2596                     if (SvNVX(sv) < (NV)IV_MAX + 0.5) {
2597                         if (SvIVX(sv) == I_V(nv)) {
2598                             SvNOK_on(sv);
2599                         } else {
2600                             /* It had no "." so it must be integer.  */
2601                         }
2602                         SvIOK_on(sv);
2603                     } else {
2604                         /* between IV_MAX and NV(UV_MAX).
2605                            Could be slightly > UV_MAX */
2606
2607                         if (numtype & IS_NUMBER_NOT_INT) {
2608                             /* UV and NV both imprecise.  */
2609                         } else {
2610                             const UV nv_as_uv = U_V(nv);
2611
2612                             if (value == nv_as_uv && SvUVX(sv) != UV_MAX) {
2613                                 SvNOK_on(sv);
2614                             }
2615                             SvIOK_on(sv);
2616                         }
2617                     }
2618                 }
2619             }
2620         }
2621         /* It might be more code efficient to go through the entire logic above
2622            and conditionally set with SvNOKp_on() rather than SvNOK(), but it
2623            gets complex and potentially buggy, so more programmer efficient
2624            to do it this way, by turning off the public flags:  */
2625         if (!numtype)
2626             SvFLAGS(sv) &= ~(SVf_IOK|SVf_NOK);
2627 #endif /* NV_PRESERVES_UV */
2628     }
2629     else  {
2630         if (isGV_with_GP(sv)) {
2631             glob_2number(MUTABLE_GV(sv));
2632             return 0.0;
2633         }
2634
2635         if (!PL_localizing && !SvPADTMP(sv) && ckWARN(WARN_UNINITIALIZED))
2636             report_uninit(sv);
2637         assert (SvTYPE(sv) >= SVt_NV);
2638         /* Typically the caller expects that sv_any is not NULL now.  */
2639         /* XXX Ilya implies that this is a bug in callers that assume this
2640            and ideally should be fixed.  */
2641         return 0.0;
2642     }
2643 #if defined(USE_LONG_DOUBLE)
2644     DEBUG_c({
2645         STORE_NUMERIC_LOCAL_SET_STANDARD();
2646         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2nv(%" PERL_PRIgldbl ")\n",
2647                       PTR2UV(sv), SvNVX(sv));
2648         RESTORE_NUMERIC_LOCAL();
2649     });
2650 #else
2651     DEBUG_c({
2652         STORE_NUMERIC_LOCAL_SET_STANDARD();
2653         PerlIO_printf(Perl_debug_log, "0x%"UVxf" 1nv(%"NVgf")\n",
2654                       PTR2UV(sv), SvNVX(sv));
2655         RESTORE_NUMERIC_LOCAL();
2656     });
2657 #endif
2658     return SvNVX(sv);
2659 }
2660
2661 /*
2662 =for apidoc sv_2num
2663
2664 Return an SV with the numeric value of the source SV, doing any necessary
2665 reference or overload conversion.  You must use the C<SvNUM(sv)> macro to
2666 access this function.
2667
2668 =cut
2669 */
2670
2671 SV *
2672 Perl_sv_2num(pTHX_ register SV *const sv)
2673 {
2674     PERL_ARGS_ASSERT_SV_2NUM;
2675
2676     if (!SvROK(sv))
2677         return sv;
2678     if (SvAMAGIC(sv)) {
2679         SV * const tmpsv = AMG_CALLunary(sv, numer_amg);
2680         TAINT_IF(tmpsv && SvTAINTED(tmpsv));
2681         if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
2682             return sv_2num(tmpsv);
2683     }
2684     return sv_2mortal(newSVuv(PTR2UV(SvRV(sv))));
2685 }
2686
2687 /* uiv_2buf(): private routine for use by sv_2pv_flags(): print an IV or
2688  * UV as a string towards the end of buf, and return pointers to start and
2689  * end of it.
2690  *
2691  * We assume that buf is at least TYPE_CHARS(UV) long.
2692  */
2693
2694 static char *
2695 S_uiv_2buf(char *const buf, const IV iv, UV uv, const int is_uv, char **const peob)
2696 {
2697     char *ptr = buf + TYPE_CHARS(UV);
2698     char * const ebuf = ptr;
2699     int sign;
2700
2701     PERL_ARGS_ASSERT_UIV_2BUF;
2702
2703     if (is_uv)
2704         sign = 0;
2705     else if (iv >= 0) {
2706         uv = iv;
2707         sign = 0;
2708     } else {
2709         uv = -iv;
2710         sign = 1;
2711     }
2712     do {
2713         *--ptr = '0' + (char)(uv % 10);
2714     } while (uv /= 10);
2715     if (sign)
2716         *--ptr = '-';
2717     *peob = ebuf;
2718     return ptr;
2719 }
2720
2721 /*
2722 =for apidoc sv_2pv_flags
2723
2724 Returns a pointer to the string value of an SV, and sets *lp to its length.
2725 If flags includes SV_GMAGIC, does an mg_get() first.  Coerces sv to a
2726 string if necessary.  Normally invoked via the C<SvPV_flags> macro.
2727 C<sv_2pv()> and C<sv_2pv_nomg> usually end up here too.
2728
2729 =cut
2730 */
2731
2732 char *
2733 Perl_sv_2pv_flags(pTHX_ register SV *const sv, STRLEN *const lp, const I32 flags)
2734 {
2735     dVAR;
2736     char *s;
2737
2738     if (!sv) {
2739         if (lp)
2740             *lp = 0;
2741         return (char *)"";
2742     }
2743     if (SvGMAGICAL(sv) && (flags & SV_GMAGIC))
2744         mg_get(sv);
2745     if (SvROK(sv)) {
2746         if (SvAMAGIC(sv)) {
2747             SV *tmpstr;
2748             if (flags & SV_SKIP_OVERLOAD)
2749                 return NULL;
2750             tmpstr = AMG_CALLunary(sv, string_amg);
2751             TAINT_IF(tmpstr && SvTAINTED(tmpstr));
2752             if (tmpstr && (!SvROK(tmpstr) || (SvRV(tmpstr) != SvRV(sv)))) {
2753                 /* Unwrap this:  */
2754                 /* char *pv = lp ? SvPV(tmpstr, *lp) : SvPV_nolen(tmpstr);
2755                  */
2756
2757                 char *pv;
2758                 if ((SvFLAGS(tmpstr) & (SVf_POK)) == SVf_POK) {
2759                     if (flags & SV_CONST_RETURN) {
2760                         pv = (char *) SvPVX_const(tmpstr);
2761                     } else {
2762                         pv = (flags & SV_MUTABLE_RETURN)
2763                             ? SvPVX_mutable(tmpstr) : SvPVX(tmpstr);
2764                     }
2765                     if (lp)
2766                         *lp = SvCUR(tmpstr);
2767                 } else {
2768                     pv = sv_2pv_flags(tmpstr, lp, flags);
2769                 }
2770                 if (SvUTF8(tmpstr))
2771                     SvUTF8_on(sv);
2772                 else
2773                     SvUTF8_off(sv);
2774                 return pv;
2775             }
2776         }
2777         {
2778             STRLEN len;
2779             char *retval;
2780             char *buffer;
2781             SV *const referent = SvRV(sv);
2782
2783             if (!referent) {
2784                 len = 7;
2785                 retval = buffer = savepvn("NULLREF", len);
2786             } else if (SvTYPE(referent) == SVt_REGEXP &&
2787                        (!(PL_curcop->cop_hints & HINT_NO_AMAGIC) ||
2788                         amagic_is_enabled(string_amg))) {
2789                 REGEXP * const re = (REGEXP *)MUTABLE_PTR(referent);
2790
2791                 assert(re);
2792                         
2793                 /* If the regex is UTF-8 we want the containing scalar to
2794                    have an UTF-8 flag too */
2795                 if (RX_UTF8(re))
2796                     SvUTF8_on(sv);
2797                 else
2798                     SvUTF8_off(sv);     
2799
2800                 if (lp)
2801                     *lp = RX_WRAPLEN(re);
2802  
2803                 return RX_WRAPPED(re);
2804             } else {
2805                 const char *const typestr = sv_reftype(referent, 0);
2806                 const STRLEN typelen = strlen(typestr);
2807                 UV addr = PTR2UV(referent);
2808                 const char *stashname = NULL;
2809                 STRLEN stashnamelen = 0; /* hush, gcc */
2810                 const char *buffer_end;
2811
2812                 if (SvOBJECT(referent)) {
2813                     const HEK *const name = HvNAME_HEK(SvSTASH(referent));
2814
2815                     if (name) {
2816                         stashname = HEK_KEY(name);
2817                         stashnamelen = HEK_LEN(name);
2818
2819                         if (HEK_UTF8(name)) {
2820                             SvUTF8_on(sv);
2821                         } else {
2822                             SvUTF8_off(sv);
2823                         }
2824                     } else {
2825                         stashname = "__ANON__";
2826                         stashnamelen = 8;
2827                     }
2828                     len = stashnamelen + 1 /* = */ + typelen + 3 /* (0x */
2829                         + 2 * sizeof(UV) + 2 /* )\0 */;
2830                 } else {
2831                     len = typelen + 3 /* (0x */
2832                         + 2 * sizeof(UV) + 2 /* )\0 */;
2833                 }
2834
2835                 Newx(buffer, len, char);
2836                 buffer_end = retval = buffer + len;
2837
2838                 /* Working backwards  */
2839                 *--retval = '\0';
2840                 *--retval = ')';
2841                 do {
2842                     *--retval = PL_hexdigit[addr & 15];
2843                 } while (addr >>= 4);
2844                 *--retval = 'x';
2845                 *--retval = '0';
2846                 *--retval = '(';
2847
2848                 retval -= typelen;
2849                 memcpy(retval, typestr, typelen);
2850
2851                 if (stashname) {
2852                     *--retval = '=';
2853                     retval -= stashnamelen;
2854                     memcpy(retval, stashname, stashnamelen);
2855                 }
2856                 /* retval may not necessarily have reached the start of the
2857                    buffer here.  */
2858                 assert (retval >= buffer);
2859
2860                 len = buffer_end - retval - 1; /* -1 for that \0  */
2861             }
2862             if (lp)
2863                 *lp = len;
2864             SAVEFREEPV(buffer);
2865             return retval;
2866         }
2867     }
2868
2869     if (SvPOKp(sv)) {
2870         if (lp)
2871             *lp = SvCUR(sv);
2872         if (flags & SV_MUTABLE_RETURN)
2873             return SvPVX_mutable(sv);
2874         if (flags & SV_CONST_RETURN)
2875             return (char *)SvPVX_const(sv);
2876         return SvPVX(sv);
2877     }
2878
2879     if (SvIOK(sv)) {
2880         /* I'm assuming that if both IV and NV are equally valid then
2881            converting the IV is going to be more efficient */
2882         const U32 isUIOK = SvIsUV(sv);
2883         char buf[TYPE_CHARS(UV)];
2884         char *ebuf, *ptr;
2885         STRLEN len;
2886
2887         if (SvTYPE(sv) < SVt_PVIV)
2888             sv_upgrade(sv, SVt_PVIV);
2889         ptr = uiv_2buf(buf, SvIVX(sv), SvUVX(sv), isUIOK, &ebuf);
2890         len = ebuf - ptr;
2891         /* inlined from sv_setpvn */
2892         s = SvGROW_mutable(sv, len + 1);
2893         Move(ptr, s, len, char);
2894         s += len;
2895         *s = '\0';
2896     }
2897     else if (SvNOK(sv)) {
2898         if (SvTYPE(sv) < SVt_PVNV)
2899             sv_upgrade(sv, SVt_PVNV);
2900         if (SvNVX(sv) == 0.0) {
2901             s = SvGROW_mutable(sv, 2);
2902             *s++ = '0';
2903             *s = '\0';
2904         } else {
2905             dSAVE_ERRNO;
2906             /* The +20 is pure guesswork.  Configure test needed. --jhi */
2907             s = SvGROW_mutable(sv, NV_DIG + 20);
2908             /* some Xenix systems wipe out errno here */
2909             Gconvert(SvNVX(sv), NV_DIG, 0, s);
2910             RESTORE_ERRNO;
2911             while (*s) s++;
2912         }
2913 #ifdef hcx
2914         if (s[-1] == '.')
2915             *--s = '\0';
2916 #endif
2917     }
2918     else if (isGV_with_GP(sv)) {
2919         GV *const gv = MUTABLE_GV(sv);
2920         SV *const buffer = sv_newmortal();
2921
2922         gv_efullname3(buffer, gv, "*");
2923
2924         assert(SvPOK(buffer));
2925         if (SvUTF8(buffer))
2926             SvUTF8_on(sv);
2927         if (lp)
2928             *lp = SvCUR(buffer);
2929         return SvPVX(buffer);
2930     }
2931     else if (isREGEXP(sv)) {
2932         if (lp) *lp = RX_WRAPLEN((REGEXP *)sv);
2933         return RX_WRAPPED((REGEXP *)sv);
2934     }
2935     else {
2936         if (lp)
2937             *lp = 0;
2938         if (flags & SV_UNDEF_RETURNS_NULL)
2939             return NULL;
2940         if (!PL_localizing && !SvPADTMP(sv) && ckWARN(WARN_UNINITIALIZED))
2941             report_uninit(sv);
2942         /* Typically the caller expects that sv_any is not NULL now.  */
2943         if (!SvREADONLY(sv) && SvTYPE(sv) < SVt_PV)
2944             sv_upgrade(sv, SVt_PV);
2945         return (char *)"";
2946     }
2947
2948     {
2949         const STRLEN len = s - SvPVX_const(sv);
2950         if (lp) 
2951             *lp = len;
2952         SvCUR_set(sv, len);
2953     }
2954     SvPOK_on(sv);
2955     DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
2956                           PTR2UV(sv),SvPVX_const(sv)));
2957     if (flags & SV_CONST_RETURN)
2958         return (char *)SvPVX_const(sv);
2959     if (flags & SV_MUTABLE_RETURN)
2960         return SvPVX_mutable(sv);
2961     return SvPVX(sv);
2962 }
2963
2964 /*
2965 =for apidoc sv_copypv
2966
2967 Copies a stringified representation of the source SV into the
2968 destination SV.  Automatically performs any necessary mg_get and
2969 coercion of numeric values into strings.  Guaranteed to preserve
2970 UTF8 flag even from overloaded objects.  Similar in nature to
2971 sv_2pv[_flags] but operates directly on an SV instead of just the
2972 string.  Mostly uses sv_2pv_flags to do its work, except when that
2973 would lose the UTF-8'ness of the PV.
2974
2975 =for apidoc sv_copypv_nomg
2976
2977 Like sv_copypv, but doesn't invoke get magic first.
2978
2979 =for apidoc sv_copypv_flags
2980
2981 Implementation of sv_copypv and sv_copypv_nomg.  Calls get magic iff flags
2982 include SV_GMAGIC.
2983
2984 =cut
2985 */
2986
2987 void
2988 Perl_sv_copypv(pTHX_ SV *const dsv, register SV *const ssv)
2989 {
2990     PERL_ARGS_ASSERT_SV_COPYPV;
2991
2992     sv_copypv_flags(dsv, ssv, 0);
2993 }
2994
2995 void
2996 Perl_sv_copypv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
2997 {
2998     STRLEN len;
2999     const char *s;
3000
3001     PERL_ARGS_ASSERT_SV_COPYPV_FLAGS;
3002
3003     if ((flags & SV_GMAGIC) && SvGMAGICAL(ssv))
3004         mg_get(ssv);
3005     s = SvPV_nomg_const(ssv,len);
3006     sv_setpvn(dsv,s,len);
3007     if (SvUTF8(ssv))
3008         SvUTF8_on(dsv);
3009     else
3010         SvUTF8_off(dsv);
3011 }
3012
3013 /*
3014 =for apidoc sv_2pvbyte
3015
3016 Return a pointer to the byte-encoded representation of the SV, and set *lp
3017 to its length.  May cause the SV to be downgraded from UTF-8 as a
3018 side-effect.
3019
3020 Usually accessed via the C<SvPVbyte> macro.
3021
3022 =cut
3023 */
3024
3025 char *
3026 Perl_sv_2pvbyte(pTHX_ register SV *sv, STRLEN *const lp)
3027 {
3028     PERL_ARGS_ASSERT_SV_2PVBYTE;
3029
3030     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3031      || isGV_with_GP(sv) || SvROK(sv)) {
3032         SV *sv2 = sv_newmortal();
3033         sv_copypv(sv2,sv);
3034         sv = sv2;
3035     }
3036     else SvGETMAGIC(sv);
3037     sv_utf8_downgrade(sv,0);
3038     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3039 }
3040
3041 /*
3042 =for apidoc sv_2pvutf8
3043
3044 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
3045 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
3046
3047 Usually accessed via the C<SvPVutf8> macro.
3048
3049 =cut
3050 */
3051
3052 char *
3053 Perl_sv_2pvutf8(pTHX_ register SV *sv, STRLEN *const lp)
3054 {
3055     PERL_ARGS_ASSERT_SV_2PVUTF8;
3056
3057     if (((SvREADONLY(sv) || SvFAKE(sv)) && !SvIsCOW(sv))
3058      || isGV_with_GP(sv) || SvROK(sv))
3059         sv = sv_mortalcopy(sv);
3060     else
3061         SvGETMAGIC(sv);
3062     sv_utf8_upgrade_nomg(sv);
3063     return lp ? SvPV_nomg(sv,*lp) : SvPV_nomg_nolen(sv);
3064 }
3065
3066
3067 /*
3068 =for apidoc sv_2bool
3069
3070 This macro is only used by sv_true() or its macro equivalent, and only if
3071 the latter's argument is neither SvPOK, SvIOK nor SvNOK.
3072 It calls sv_2bool_flags with the SV_GMAGIC flag.
3073
3074 =for apidoc sv_2bool_flags
3075
3076 This function is only used by sv_true() and friends,  and only if
3077 the latter's argument is neither SvPOK, SvIOK nor SvNOK.  If the flags
3078 contain SV_GMAGIC, then it does an mg_get() first.
3079
3080
3081 =cut
3082 */
3083
3084 bool
3085 Perl_sv_2bool_flags(pTHX_ register SV *const sv, const I32 flags)
3086 {
3087     dVAR;
3088
3089     PERL_ARGS_ASSERT_SV_2BOOL_FLAGS;
3090
3091     if(flags & SV_GMAGIC) SvGETMAGIC(sv);
3092
3093     if (!SvOK(sv))
3094         return 0;
3095     if (SvROK(sv)) {
3096         if (SvAMAGIC(sv)) {
3097             SV * const tmpsv = AMG_CALLunary(sv, bool__amg);
3098             if (tmpsv && (!SvROK(tmpsv) || (SvRV(tmpsv) != SvRV(sv))))
3099                 return cBOOL(SvTRUE(tmpsv));
3100         }
3101         return SvRV(sv) != 0;
3102     }
3103     return SvTRUE_common(sv, isGV_with_GP(sv) ? 1 : 0);
3104 }
3105
3106 /*
3107 =for apidoc sv_utf8_upgrade
3108
3109 Converts the PV of an SV to its UTF-8-encoded form.
3110 Forces the SV to string form if it is not already.
3111 Will C<mg_get> on C<sv> if appropriate.
3112 Always sets the SvUTF8 flag to avoid future validity checks even
3113 if the whole string is the same in UTF-8 as not.
3114 Returns the number of bytes in the converted string
3115
3116 This is not a general purpose byte encoding to Unicode interface:
3117 use the Encode extension for that.
3118
3119 =for apidoc sv_utf8_upgrade_nomg
3120
3121 Like sv_utf8_upgrade, but doesn't do magic on C<sv>.
3122
3123 =for apidoc sv_utf8_upgrade_flags
3124
3125 Converts the PV of an SV to its UTF-8-encoded form.
3126 Forces the SV to string form if it is not already.
3127 Always sets the SvUTF8 flag to avoid future validity checks even
3128 if all the bytes are invariant in UTF-8.
3129 If C<flags> has C<SV_GMAGIC> bit set,
3130 will C<mg_get> on C<sv> if appropriate, else not.
3131 Returns the number of bytes in the converted string
3132 C<sv_utf8_upgrade> and
3133 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
3134
3135 This is not a general purpose byte encoding to Unicode interface:
3136 use the Encode extension for that.
3137
3138 =cut
3139
3140 The grow version is currently not externally documented.  It adds a parameter,
3141 extra, which is the number of unused bytes the string of 'sv' is guaranteed to
3142 have free after it upon return.  This allows the caller to reserve extra space
3143 that it intends to fill, to avoid extra grows.
3144
3145 Also externally undocumented for the moment is the flag SV_FORCE_UTF8_UPGRADE,
3146 which can be used to tell this function to not first check to see if there are
3147 any characters that are different in UTF-8 (variant characters) which would
3148 force it to allocate a new string to sv, but to assume there are.  Typically
3149 this flag is used by a routine that has already parsed the string to find that
3150 there are such characters, and passes this information on so that the work
3151 doesn't have to be repeated.
3152
3153 (One might think that the calling routine could pass in the position of the
3154 first such variant, so it wouldn't have to be found again.  But that is not the
3155 case, because typically when the caller is likely to use this flag, it won't be
3156 calling this routine unless it finds something that won't fit into a byte.
3157 Otherwise it tries to not upgrade and just use bytes.  But some things that
3158 do fit into a byte are variants in utf8, and the caller may not have been
3159 keeping track of these.)
3160
3161 If the routine itself changes the string, it adds a trailing NUL.  Such a NUL
3162 isn't guaranteed due to having other routines do the work in some input cases,
3163 or if the input is already flagged as being in utf8.
3164
3165 The speed of this could perhaps be improved for many cases if someone wanted to
3166 write a fast function that counts the number of variant characters in a string,
3167 especially if it could return the position of the first one.
3168
3169 */
3170
3171 STRLEN
3172 Perl_sv_utf8_upgrade_flags_grow(pTHX_ register SV *const sv, const I32 flags, STRLEN extra)
3173 {
3174     dVAR;
3175
3176     PERL_ARGS_ASSERT_SV_UTF8_UPGRADE_FLAGS_GROW;
3177
3178     if (sv == &PL_sv_undef)
3179         return 0;
3180     if (!SvPOK_nog(sv)) {
3181         STRLEN len = 0;
3182         if (SvREADONLY(sv) && (SvPOKp(sv) || SvIOKp(sv) || SvNOKp(sv))) {
3183             (void) sv_2pv_flags(sv,&len, flags);
3184             if (SvUTF8(sv)) {
3185                 if (extra) SvGROW(sv, SvCUR(sv) + extra);
3186                 return len;
3187             }
3188         } else {
3189             (void) SvPV_force_flags(sv,len,flags & SV_GMAGIC);
3190         }
3191     }
3192
3193     if (SvUTF8(sv)) {
3194         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3195         return SvCUR(sv);
3196     }
3197
3198     if (SvIsCOW(sv)) {
3199         sv_force_normal_flags(sv, 0);
3200     }
3201
3202     if (PL_encoding && !(flags & SV_UTF8_NO_ENCODING)) {
3203         sv_recode_to_utf8(sv, PL_encoding);
3204         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3205         return SvCUR(sv);
3206     }
3207
3208     if (SvCUR(sv) == 0) {
3209         if (extra) SvGROW(sv, extra);
3210     } else { /* Assume Latin-1/EBCDIC */
3211         /* This function could be much more efficient if we
3212          * had a FLAG in SVs to signal if there are any variant
3213          * chars in the PV.  Given that there isn't such a flag
3214          * make the loop as fast as possible (although there are certainly ways
3215          * to speed this up, eg. through vectorization) */
3216         U8 * s = (U8 *) SvPVX_const(sv);
3217         U8 * e = (U8 *) SvEND(sv);
3218         U8 *t = s;
3219         STRLEN two_byte_count = 0;
3220         
3221         if (flags & SV_FORCE_UTF8_UPGRADE) goto must_be_utf8;
3222
3223         /* See if really will need to convert to utf8.  We mustn't rely on our
3224          * incoming SV being well formed and having a trailing '\0', as certain
3225          * code in pp_formline can send us partially built SVs. */
3226
3227         while (t < e) {
3228             const U8 ch = *t++;
3229             if (NATIVE_IS_INVARIANT(ch)) continue;
3230
3231             t--;    /* t already incremented; re-point to first variant */
3232             two_byte_count = 1;
3233             goto must_be_utf8;
3234         }
3235
3236         /* utf8 conversion not needed because all are invariants.  Mark as
3237          * UTF-8 even if no variant - saves scanning loop */
3238         SvUTF8_on(sv);
3239         if (extra) SvGROW(sv, SvCUR(sv) + extra);
3240         return SvCUR(sv);
3241
3242 must_be_utf8:
3243
3244         /* Here, the string should be converted to utf8, either because of an
3245          * input flag (two_byte_count = 0), or because a character that
3246          * requires 2 bytes was found (two_byte_count = 1).  t points either to
3247          * the beginning of the string (if we didn't examine anything), or to
3248          * the first variant.  In either case, everything from s to t - 1 will
3249          * occupy only 1 byte each on output.
3250          *
3251          * There are two main ways to convert.  One is to create a new string
3252          * and go through the input starting from the beginning, appending each
3253          * converted value onto the new string as we go along.  It's probably
3254          * best to allocate enough space in the string for the worst possible
3255          * case rather than possibly running out of space and having to
3256          * reallocate and then copy what we've done so far.  Since everything
3257          * from s to t - 1 is invariant, the destination can be initialized
3258          * with these using a fast memory copy
3259          *
3260          * The other way is to figure out exactly how big the string should be
3261          * by parsing the entire input.  Then you don't have to make it big
3262          * enough to handle the worst possible case, and more importantly, if
3263          * the string you already have is large enough, you don't have to
3264          * allocate a new string, you can copy the last character in the input
3265          * string to the final position(s) that will be occupied by the
3266          * converted string and go backwards, stopping at t, since everything
3267          * before that is invariant.
3268          *
3269          * There are advantages and disadvantages to each method.
3270          *
3271          * In the first method, we can allocate a new string, do the memory
3272          * copy from the s to t - 1, and then proceed through the rest of the
3273          * string byte-by-byte.
3274          *
3275          * In the second method, we proceed through the rest of the input
3276          * string just calculating how big the converted string will be.  Then
3277          * there are two cases:
3278          *  1)  if the string has enough extra space to handle the converted
3279          *      value.  We go backwards through the string, converting until we
3280          *      get to the position we are at now, and then stop.  If this
3281          *      position is far enough along in the string, this method is
3282          *      faster than the other method.  If the memory copy were the same
3283          *      speed as the byte-by-byte loop, that position would be about
3284          *      half-way, as at the half-way mark, parsing to the end and back
3285          *      is one complete string's parse, the same amount as starting
3286          *      over and going all the way through.  Actually, it would be
3287          *      somewhat less than half-way, as it's faster to just count bytes
3288          *      than to also copy, and we don't have the overhead of allocating
3289          *      a new string, changing the scalar to use it, and freeing the
3290          *      existing one.  But if the memory copy is fast, the break-even
3291          *      point is somewhere after half way.  The counting loop could be
3292          *      sped up by vectorization, etc, to move the break-even point
3293          *      further towards the beginning.
3294          *  2)  if the string doesn't have enough space to handle the converted
3295          *      value.  A new string will have to be allocated, and one might
3296          *      as well, given that, start from the beginning doing the first
3297          *      method.  We've spent extra time parsing the string and in
3298          *      exchange all we've gotten is that we know precisely how big to
3299          *      make the new one.  Perl is more optimized for time than space,
3300          *      so this case is a loser.
3301          * So what I've decided to do is not use the 2nd method unless it is
3302          * guaranteed that a new string won't have to be allocated, assuming
3303          * the worst case.  I also decided not to put any more conditions on it
3304          * than this, for now.  It seems likely that, since the worst case is
3305          * twice as big as the unknown portion of the string (plus 1), we won't
3306          * be guaranteed enough space, causing us to go to the first method,
3307          * unless the string is short, or the first variant character is near
3308          * the end of it.  In either of these cases, it seems best to use the
3309          * 2nd method.  The only circumstance I can think of where this would
3310          * be really slower is if the string had once had much more data in it
3311          * than it does now, but there is still a substantial amount in it  */
3312
3313         {
3314             STRLEN invariant_head = t - s;
3315             STRLEN size = invariant_head + (e - t) * 2 + 1 + extra;
3316             if (SvLEN(sv) < size) {
3317
3318                 /* Here, have decided to allocate a new string */
3319
3320                 U8 *dst;
3321                 U8 *d;
3322
3323                 Newx(dst, size, U8);
3324
3325                 /* If no known invariants at the beginning of the input string,
3326                  * set so starts from there.  Otherwise, can use memory copy to
3327                  * get up to where we are now, and then start from here */
3328
3329                 if (invariant_head <= 0) {
3330                     d = dst;
3331                 } else {
3332                     Copy(s, dst, invariant_head, char);
3333                     d = dst + invariant_head;
3334                 }
3335
3336                 while (t < e) {
3337                     const UV uv = NATIVE8_TO_UNI(*t++);
3338                     if (UNI_IS_INVARIANT(uv))
3339                         *d++ = (U8)UNI_TO_NATIVE(uv);
3340                     else {
3341                         *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
3342                         *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
3343                     }
3344                 }
3345                 *d = '\0';
3346                 SvPV_free(sv); /* No longer using pre-existing string */
3347                 SvPV_set(sv, (char*)dst);
3348                 SvCUR_set(sv, d - dst);
3349                 SvLEN_set(sv, size);
3350             } else {
3351
3352                 /* Here, have decided to get the exact size of the string.
3353                  * Currently this happens only when we know that there is
3354                  * guaranteed enough space to fit the converted string, so
3355                  * don't have to worry about growing.  If two_byte_count is 0,
3356                  * then t points to the first byte of the string which hasn't
3357                  * been examined yet.  Otherwise two_byte_count is 1, and t
3358                  * points to the first byte in the string that will expand to
3359                  * two.  Depending on this, start examining at t or 1 after t.
3360                  * */
3361
3362                 U8 *d = t + two_byte_count;
3363
3364
3365                 /* Count up the remaining bytes that expand to two */
3366
3367                 while (d < e) {
3368                     const U8 chr = *d++;
3369                     if (! NATIVE_IS_INVARIANT(chr)) two_byte_count++;
3370                 }
3371
3372                 /* The string will expand by just the number of bytes that
3373                  * occupy two positions.  But we are one afterwards because of
3374                  * the increment just above.  This is the place to put the
3375                  * trailing NUL, and to set the length before we decrement */
3376
3377                 d += two_byte_count;
3378                 SvCUR_set(sv, d - s);
3379                 *d-- = '\0';
3380
3381
3382                 /* Having decremented d, it points to the position to put the
3383                  * very last byte of the expanded string.  Go backwards through
3384                  * the string, copying and expanding as we go, stopping when we
3385                  * get to the part that is invariant the rest of the way down */
3386
3387                 e--;
3388                 while (e >= t) {
3389                     const U8 ch = NATIVE8_TO_UNI(*e--);
3390                     if (UNI_IS_INVARIANT(ch)) {
3391                         *d-- = UNI_TO_NATIVE(ch);
3392                     } else {
3393                         *d-- = (U8)UTF8_EIGHT_BIT_LO(ch);
3394                         *d-- = (U8)UTF8_EIGHT_BIT_HI(ch);
3395                     }
3396                 }
3397             }
3398
3399             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3400                 /* Update pos. We do it at the end rather than during
3401                  * the upgrade, to avoid slowing down the common case
3402                  * (upgrade without pos) */
3403                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3404                 if (mg) {
3405                     I32 pos = mg->mg_len;
3406                     if (pos > 0 && (U32)pos > invariant_head) {
3407                         U8 *d = (U8*) SvPVX(sv) + invariant_head;
3408                         STRLEN n = (U32)pos - invariant_head;
3409                         while (n > 0) {
3410                             if (UTF8_IS_START(*d))
3411                                 d++;
3412                             d++;
3413                             n--;
3414                         }
3415                         mg->mg_len  = d - (U8*)SvPVX(sv);
3416                     }
3417                 }
3418                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3419                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3420             }
3421         }
3422     }
3423
3424     /* Mark as UTF-8 even if no variant - saves scanning loop */
3425     SvUTF8_on(sv);
3426     return SvCUR(sv);
3427 }
3428
3429 /*
3430 =for apidoc sv_utf8_downgrade
3431
3432 Attempts to convert the PV of an SV from characters to bytes.
3433 If the PV contains a character that cannot fit
3434 in a byte, this conversion will fail;
3435 in this case, either returns false or, if C<fail_ok> is not
3436 true, croaks.
3437
3438 This is not a general purpose Unicode to byte encoding interface:
3439 use the Encode extension for that.
3440
3441 =cut
3442 */
3443
3444 bool
3445 Perl_sv_utf8_downgrade(pTHX_ register SV *const sv, const bool fail_ok)
3446 {
3447     dVAR;
3448
3449     PERL_ARGS_ASSERT_SV_UTF8_DOWNGRADE;
3450
3451     if (SvPOKp(sv) && SvUTF8(sv)) {
3452         if (SvCUR(sv)) {
3453             U8 *s;
3454             STRLEN len;
3455             int mg_flags = SV_GMAGIC;
3456
3457             if (SvIsCOW(sv)) {
3458                 sv_force_normal_flags(sv, 0);
3459             }
3460             if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3461                 /* update pos */
3462                 MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3463                 if (mg) {
3464                     I32 pos = mg->mg_len;
3465                     if (pos > 0) {
3466                         sv_pos_b2u(sv, &pos);
3467                         mg_flags = 0; /* sv_pos_b2u does get magic */
3468                         mg->mg_len  = pos;
3469                     }
3470                 }
3471                 if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3472                     magic_setutf8(sv,mg); /* clear UTF8 cache */
3473
3474             }
3475             s = (U8 *) SvPV_flags(sv, len, mg_flags);
3476
3477             if (!utf8_to_bytes(s, &len)) {
3478                 if (fail_ok)
3479                     return FALSE;
3480                 else {
3481                     if (PL_op)
3482                         Perl_croak(aTHX_ "Wide character in %s",
3483                                    OP_DESC(PL_op));
3484                     else
3485                         Perl_croak(aTHX_ "Wide character");
3486                 }
3487             }
3488             SvCUR_set(sv, len);
3489         }
3490     }
3491     SvUTF8_off(sv);
3492     return TRUE;
3493 }
3494
3495 /*
3496 =for apidoc sv_utf8_encode
3497
3498 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
3499 flag off so that it looks like octets again.
3500
3501 =cut
3502 */
3503
3504 void
3505 Perl_sv_utf8_encode(pTHX_ register SV *const sv)
3506 {
3507     PERL_ARGS_ASSERT_SV_UTF8_ENCODE;
3508
3509     if (SvREADONLY(sv)) {
3510         sv_force_normal_flags(sv, 0);
3511     }
3512     (void) sv_utf8_upgrade(sv);
3513     SvUTF8_off(sv);
3514 }
3515
3516 /*
3517 =for apidoc sv_utf8_decode
3518
3519 If the PV of the SV is an octet sequence in UTF-8
3520 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
3521 so that it looks like a character.  If the PV contains only single-byte
3522 characters, the C<SvUTF8> flag stays off.
3523 Scans PV for validity and returns false if the PV is invalid UTF-8.
3524
3525 =cut
3526 */
3527
3528 bool
3529 Perl_sv_utf8_decode(pTHX_ register SV *const sv)
3530 {
3531     PERL_ARGS_ASSERT_SV_UTF8_DECODE;
3532
3533     if (SvPOKp(sv)) {
3534         const U8 *start, *c;
3535         const U8 *e;
3536
3537         /* The octets may have got themselves encoded - get them back as
3538          * bytes
3539          */
3540         if (!sv_utf8_downgrade(sv, TRUE))
3541             return FALSE;
3542
3543         /* it is actually just a matter of turning the utf8 flag on, but
3544          * we want to make sure everything inside is valid utf8 first.
3545          */
3546         c = start = (const U8 *) SvPVX_const(sv);
3547         if (!is_utf8_string(c, SvCUR(sv)))
3548             return FALSE;
3549         e = (const U8 *) SvEND(sv);
3550         while (c < e) {
3551             const U8 ch = *c++;
3552             if (!UTF8_IS_INVARIANT(ch)) {
3553                 SvUTF8_on(sv);
3554                 break;
3555             }
3556         }
3557         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
3558             /* adjust pos to the start of a UTF8 char sequence */
3559             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
3560             if (mg) {
3561                 I32 pos = mg->mg_len;
3562                 if (pos > 0) {
3563                     for (c = start + pos; c > start; c--) {
3564                         if (UTF8_IS_START(*c))
3565                             break;
3566                     }
3567                     mg->mg_len  = c - start;
3568                 }
3569             }
3570             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
3571                 magic_setutf8(sv,mg); /* clear UTF8 cache */
3572         }
3573     }
3574     return TRUE;
3575 }
3576
3577 /*
3578 =for apidoc sv_setsv
3579
3580 Copies the contents of the source SV C<ssv> into the destination SV
3581 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3582 function if the source SV needs to be reused.  Does not handle 'set' magic.
3583 Loosely speaking, it performs a copy-by-value, obliterating any previous
3584 content of the destination.
3585
3586 You probably want to use one of the assortment of wrappers, such as
3587 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3588 C<SvSetMagicSV_nosteal>.
3589
3590 =for apidoc sv_setsv_flags
3591
3592 Copies the contents of the source SV C<ssv> into the destination SV
3593 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
3594 function if the source SV needs to be reused.  Does not handle 'set' magic.
3595 Loosely speaking, it performs a copy-by-value, obliterating any previous
3596 content of the destination.
3597 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
3598 C<ssv> if appropriate, else not.  If the C<flags>
3599 parameter has the C<NOSTEAL> bit set then the
3600 buffers of temps will not be stolen.  <sv_setsv>
3601 and C<sv_setsv_nomg> are implemented in terms of this function.
3602
3603 You probably want to use one of the assortment of wrappers, such as
3604 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
3605 C<SvSetMagicSV_nosteal>.
3606
3607 This is the primary function for copying scalars, and most other
3608 copy-ish functions and macros use this underneath.
3609
3610 =cut
3611 */
3612
3613 static void
3614 S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype)
3615 {
3616     I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */
3617     HV *old_stash = NULL;
3618
3619     PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB;
3620
3621     if (dtype != SVt_PVGV && !isGV_with_GP(dstr)) {
3622         const char * const name = GvNAME(sstr);
3623         const STRLEN len = GvNAMELEN(sstr);
3624         {
3625             if (dtype >= SVt_PV) {
3626                 SvPV_free(dstr);
3627                 SvPV_set(dstr, 0);
3628                 SvLEN_set(dstr, 0);
3629                 SvCUR_set(dstr, 0);
3630             }
3631             SvUPGRADE(dstr, SVt_PVGV);
3632             (void)SvOK_off(dstr);
3633             /* We have to turn this on here, even though we turn it off
3634                below, as GvSTASH will fail an assertion otherwise. */
3635             isGV_with_GP_on(dstr);
3636         }
3637         GvSTASH(dstr) = GvSTASH(sstr);
3638         if (GvSTASH(dstr))
3639             Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
3640         gv_name_set(MUTABLE_GV(dstr), name, len,
3641                         GV_ADD | (GvNAMEUTF8(sstr) ? SVf_UTF8 : 0 ));
3642         SvFAKE_on(dstr);        /* can coerce to non-glob */
3643     }
3644
3645     if(GvGP(MUTABLE_GV(sstr))) {
3646         /* If source has method cache entry, clear it */
3647         if(GvCVGEN(sstr)) {
3648             SvREFCNT_dec(GvCV(sstr));
3649             GvCV_set(sstr, NULL);
3650             GvCVGEN(sstr) = 0;
3651         }
3652         /* If source has a real method, then a method is
3653            going to change */
3654         else if(
3655          GvCV((const GV *)sstr) && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3656         ) {
3657             mro_changes = 1;
3658         }
3659     }
3660
3661     /* If dest already had a real method, that's a change as well */
3662     if(
3663         !mro_changes && GvGP(MUTABLE_GV(dstr)) && GvCVu((const GV *)dstr)
3664      && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3665     ) {
3666         mro_changes = 1;
3667     }
3668
3669     /* We don't need to check the name of the destination if it was not a
3670        glob to begin with. */
3671     if(dtype == SVt_PVGV) {
3672         const char * const name = GvNAME((const GV *)dstr);
3673         if(
3674             strEQ(name,"ISA")
3675          /* The stash may have been detached from the symbol table, so
3676             check its name. */
3677          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3678         )
3679             mro_changes = 2;
3680         else {
3681             const STRLEN len = GvNAMELEN(dstr);
3682             if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
3683              || (len == 1 && name[0] == ':')) {
3684                 mro_changes = 3;
3685
3686                 /* Set aside the old stash, so we can reset isa caches on
3687                    its subclasses. */
3688                 if((old_stash = GvHV(dstr)))
3689                     /* Make sure we do not lose it early. */
3690                     SvREFCNT_inc_simple_void_NN(
3691                      sv_2mortal((SV *)old_stash)
3692                     );
3693             }
3694         }
3695     }
3696
3697     gp_free(MUTABLE_GV(dstr));
3698     isGV_with_GP_off(dstr); /* SvOK_off does not like globs. */
3699     (void)SvOK_off(dstr);
3700     isGV_with_GP_on(dstr);
3701     GvINTRO_off(dstr);          /* one-shot flag */
3702     GvGP_set(dstr, gp_ref(GvGP(sstr)));
3703     if (SvTAINTED(sstr))
3704         SvTAINT(dstr);
3705     if (GvIMPORTED(dstr) != GVf_IMPORTED
3706         && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
3707         {
3708             GvIMPORTED_on(dstr);
3709         }
3710     GvMULTI_on(dstr);
3711     if(mro_changes == 2) {
3712       if (GvAV((const GV *)sstr)) {
3713         MAGIC *mg;
3714         SV * const sref = (SV *)GvAV((const GV *)dstr);
3715         if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3716             if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3717                 AV * const ary = newAV();
3718                 av_push(ary, mg->mg_obj); /* takes the refcount */
3719                 mg->mg_obj = (SV *)ary;
3720             }
3721             av_push((AV *)mg->mg_obj, SvREFCNT_inc_simple_NN(dstr));
3722         }
3723         else sv_magic(sref, dstr, PERL_MAGIC_isa, NULL, 0);
3724       }
3725       mro_isa_changed_in(GvSTASH(dstr));
3726     }
3727     else if(mro_changes == 3) {
3728         HV * const stash = GvHV(dstr);
3729         if(old_stash ? (HV *)HvENAME_get(old_stash) : stash)
3730             mro_package_moved(
3731                 stash, old_stash,
3732                 (GV *)dstr, 0
3733             );
3734     }
3735     else if(mro_changes) mro_method_changed_in(GvSTASH(dstr));
3736     return;
3737 }
3738
3739 static void
3740 S_glob_assign_ref(pTHX_ SV *const dstr, SV *const sstr)
3741 {
3742     SV * const sref = SvREFCNT_inc(SvRV(sstr));
3743     SV *dref = NULL;
3744     const int intro = GvINTRO(dstr);
3745     SV **location;
3746     U8 import_flag = 0;
3747     const U32 stype = SvTYPE(sref);
3748
3749     PERL_ARGS_ASSERT_GLOB_ASSIGN_REF;
3750
3751     if (intro) {
3752         GvINTRO_off(dstr);      /* one-shot flag */
3753         GvLINE(dstr) = CopLINE(PL_curcop);
3754         GvEGV(dstr) = MUTABLE_GV(dstr);
3755     }
3756     GvMULTI_on(dstr);
3757     switch (stype) {
3758     case SVt_PVCV:
3759         location = (SV **) &(GvGP(dstr)->gp_cv); /* XXX bypassing GvCV_set */
3760         import_flag = GVf_IMPORTED_CV;
3761         goto common;
3762     case SVt_PVHV:
3763         location = (SV **) &GvHV(dstr);
3764         import_flag = GVf_IMPORTED_HV;
3765         goto common;
3766     case SVt_PVAV:
3767         location = (SV **) &GvAV(dstr);
3768         import_flag = GVf_IMPORTED_AV;
3769         goto common;
3770     case SVt_PVIO:
3771         location = (SV **) &GvIOp(dstr);
3772         goto common;
3773     case SVt_PVFM:
3774         location = (SV **) &GvFORM(dstr);
3775         goto common;
3776     default:
3777         location = &GvSV(dstr);
3778         import_flag = GVf_IMPORTED_SV;
3779     common:
3780         if (intro) {
3781             if (stype == SVt_PVCV) {
3782                 /*if (GvCVGEN(dstr) && (GvCV(dstr) != (const CV *)sref || GvCVGEN(dstr))) {*/
3783                 if (GvCVGEN(dstr)) {
3784                     SvREFCNT_dec(GvCV(dstr));
3785                     GvCV_set(dstr, NULL);
3786                     GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3787                 }
3788             }
3789             SAVEGENERICSV(*location);
3790         }
3791         else
3792             dref = *location;
3793         if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dstr))) {
3794             CV* const cv = MUTABLE_CV(*location);
3795             if (cv) {
3796                 if (!GvCVGEN((const GV *)dstr) &&
3797                     (CvROOT(cv) || CvXSUB(cv)) &&
3798                     /* redundant check that avoids creating the extra SV
3799                        most of the time: */
3800                     (CvCONST(cv) || ckWARN(WARN_REDEFINE)))
3801                     {
3802                         SV * const new_const_sv =
3803                             CvCONST((const CV *)sref)
3804                                  ? cv_const_sv((const CV *)sref)
3805                                  : NULL;
3806                         report_redefined_cv(
3807                            sv_2mortal(Perl_newSVpvf(aTHX_
3808                                 "%"HEKf"::%"HEKf,
3809                                 HEKfARG(
3810                                  HvNAME_HEK(GvSTASH((const GV *)dstr))
3811                                 ),
3812                                 HEKfARG(GvENAME_HEK(MUTABLE_GV(dstr)))
3813                            )),
3814                            cv,
3815                            CvCONST((const CV *)sref) ? &new_const_sv : NULL
3816                         );
3817                     }
3818                 if (!intro)
3819                     cv_ckproto_len_flags(cv, (const GV *)dstr,
3820                                    SvPOK(sref) ? CvPROTO(sref) : NULL,
3821                                    SvPOK(sref) ? CvPROTOLEN(sref) : 0,
3822                                    SvPOK(sref) ? SvUTF8(sref) : 0);
3823             }
3824             GvCVGEN(dstr) = 0; /* Switch off cacheness. */
3825             GvASSUMECV_on(dstr);
3826             if(GvSTASH(dstr)) mro_method_changed_in(GvSTASH(dstr)); /* sub foo { 1 } sub bar { 2 } *bar = \&foo */
3827         }
3828         *location = sref;
3829         if (import_flag && !(GvFLAGS(dstr) & import_flag)
3830             && CopSTASH_ne(PL_curcop, GvSTASH(dstr))) {
3831             GvFLAGS(dstr) |= import_flag;
3832         }
3833         if (stype == SVt_PVHV) {
3834             const char * const name = GvNAME((GV*)dstr);
3835             const STRLEN len = GvNAMELEN(dstr);
3836             if (
3837                 (
3838                    (len > 1 && name[len-2] == ':' && name[len-1] == ':')
3839                 || (len == 1 && name[0] == ':')
3840                 )
3841              && (!dref || HvENAME_get(dref))
3842             ) {
3843                 mro_package_moved(
3844                     (HV *)sref, (HV *)dref,
3845                     (GV *)dstr, 0
3846                 );
3847             }
3848         }
3849         else if (
3850             stype == SVt_PVAV && sref != dref
3851          && strEQ(GvNAME((GV*)dstr), "ISA")
3852          /* The stash may have been detached from the symbol table, so
3853             check its name before doing anything. */
3854          && GvSTASH(dstr) && HvENAME(GvSTASH(dstr))
3855         ) {
3856             MAGIC *mg;
3857             MAGIC * const omg = dref && SvSMAGICAL(dref)
3858                                  ? mg_find(dref, PERL_MAGIC_isa)
3859                                  : NULL;
3860             if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) {
3861                 if (SvTYPE(mg->mg_obj) != SVt_PVAV) {
3862                     AV * const ary = newAV();
3863                     av_push(ary, mg->mg_obj); /* takes the refcount */
3864                     mg->mg_obj = (SV *)ary;
3865                 }
3866                 if (omg) {
3867                     if (SvTYPE(omg->mg_obj) == SVt_PVAV) {
3868                         SV **svp = AvARRAY((AV *)omg->mg_obj);
3869                         I32 items = AvFILLp((AV *)omg->mg_obj) + 1;
3870                         while (items--)
3871                             av_push(
3872                              (AV *)mg->mg_obj,
3873                              SvREFCNT_inc_simple_NN(*svp++)
3874                             );
3875                     }
3876                     else
3877                         av_push(
3878                          (AV *)mg->mg_obj,
3879                          SvREFCNT_inc_simple_NN(omg->mg_obj)
3880                         );
3881                 }
3882                 else
3883                     av_push((AV *)mg->mg_obj,SvREFCNT_inc_simple_NN(dstr));
3884             }
3885             else
3886             {
3887                 sv_magic(
3888                  sref, omg ? omg->mg_obj : dstr, PERL_MAGIC_isa, NULL, 0
3889                 );
3890                 mg = mg_find(sref, PERL_MAGIC_isa);
3891             }
3892             /* Since the *ISA assignment could have affected more than
3893                one stash, don't call mro_isa_changed_in directly, but let
3894                magic_clearisa do it for us, as it already has the logic for
3895                dealing with globs vs arrays of globs. */
3896             assert(mg);
3897             Perl_magic_clearisa(aTHX_ NULL, mg);
3898         }
3899         else if (stype == SVt_PVIO) {
3900             DEBUG_o(Perl_deb(aTHX_ "glob_assign_ref clearing PL_stashcache\n"));
3901             /* It's a cache. It will rebuild itself quite happily.
3902                It's a lot of effort to work out exactly which key (or keys)
3903                might be invalidated by the creation of the this file handle.
3904             */
3905             hv_clear(PL_stashcache);
3906         }
3907         break;
3908     }
3909     SvREFCNT_dec(dref);
3910     if (SvTAINTED(sstr))
3911         SvTAINT(dstr);
3912     return;
3913 }
3914
3915 void
3916 Perl_sv_setsv_flags(pTHX_ SV *dstr, register SV* sstr, const I32 flags)
3917 {
3918     dVAR;
3919     U32 sflags;
3920     int dtype;
3921     svtype stype;
3922
3923     PERL_ARGS_ASSERT_SV_SETSV_FLAGS;
3924
3925     if (sstr == dstr)
3926         return;
3927
3928     if (SvIS_FREED(dstr)) {
3929         Perl_croak(aTHX_ "panic: attempt to copy value %" SVf
3930                    " to a freed scalar %p", SVfARG(sstr), (void *)dstr);
3931     }
3932     SV_CHECK_THINKFIRST_COW_DROP(dstr);
3933     if (!sstr)
3934         sstr = &PL_sv_undef;
3935     if (SvIS_FREED(sstr)) {
3936         Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p to %p",
3937                    (void*)sstr, (void*)dstr);
3938     }
3939     stype = SvTYPE(sstr);
3940     dtype = SvTYPE(dstr);
3941
3942     /* There's a lot of redundancy below but we're going for speed here */
3943
3944     switch (stype) {
3945     case SVt_NULL:
3946       undef_sstr:
3947         if (dtype != SVt_PVGV && dtype != SVt_PVLV) {
3948             (void)SvOK_off(dstr);
3949             return;
3950         }
3951         break;
3952     case SVt_IV:
3953         if (SvIOK(sstr)) {
3954             switch (dtype) {
3955             case SVt_NULL:
3956                 sv_upgrade(dstr, SVt_IV);
3957                 break;
3958             case SVt_NV:
3959             case SVt_PV:
3960                 sv_upgrade(dstr, SVt_PVIV);
3961                 break;
3962             case SVt_PVGV:
3963             case SVt_PVLV:
3964                 goto end_of_first_switch;
3965             }
3966             (void)SvIOK_only(dstr);
3967             SvIV_set(dstr,  SvIVX(sstr));
3968             if (SvIsUV(sstr))
3969                 SvIsUV_on(dstr);
3970             /* SvTAINTED can only be true if the SV has taint magic, which in
3971                turn means that the SV type is PVMG (or greater). This is the
3972                case statement for SVt_IV, so this cannot be true (whatever gcov
3973                may say).  */
3974             assert(!SvTAINTED(sstr));
3975             return;
3976         }
3977         if (!SvROK(sstr))
3978             goto undef_sstr;
3979         if (dtype < SVt_PV && dtype != SVt_IV)
3980             sv_upgrade(dstr, SVt_IV);
3981         break;
3982
3983     case SVt_NV:
3984         if (SvNOK(sstr)) {
3985             switch (dtype) {
3986             case SVt_NULL:
3987             case SVt_IV:
3988                 sv_upgrade(dstr, SVt_NV);
3989                 break;
3990             case SVt_PV:
3991             case SVt_PVIV:
3992                 sv_upgrade(dstr, SVt_PVNV);
3993                 break;
3994             case SVt_PVGV:
3995             case SVt_PVLV:
3996                 goto end_of_first_switch;
3997             }
3998             SvNV_set(dstr, SvNVX(sstr));
3999             (void)SvNOK_only(dstr);
4000             /* SvTAINTED can only be true if the SV has taint magic, which in
4001                turn means that the SV type is PVMG (or greater). This is the
4002                case statement for SVt_NV, so this cannot be true (whatever gcov
4003                may say).  */
4004             assert(!SvTAINTED(sstr));
4005             return;
4006         }
4007         goto undef_sstr;
4008
4009     case SVt_PV:
4010         if (dtype < SVt_PV)
4011             sv_upgrade(dstr, SVt_PV);
4012         break;
4013     case SVt_PVIV:
4014         if (dtype < SVt_PVIV)
4015             sv_upgrade(dstr, SVt_PVIV);
4016         break;
4017     case SVt_PVNV:
4018         if (dtype < SVt_PVNV)
4019             sv_upgrade(dstr, SVt_PVNV);
4020         break;
4021     default:
4022         {
4023         const char * const type = sv_reftype(sstr,0);
4024         if (PL_op)
4025             /* diag_listed_as: Bizarre copy of %s */
4026             Perl_croak(aTHX_ "Bizarre copy of %s in %s", type, OP_DESC(PL_op));
4027         else
4028             Perl_croak(aTHX_ "Bizarre copy of %s", type);
4029         }
4030         break;
4031
4032     case SVt_REGEXP:
4033       upgregexp:
4034         if (dtype < SVt_REGEXP)
4035         {
4036             if (dtype >= SVt_PV) {
4037                 SvPV_free(dstr);
4038                 SvPV_set(dstr, 0);
4039                 SvLEN_set(dstr, 0);
4040                 SvCUR_set(dstr, 0);
4041             }
4042             sv_upgrade(dstr, SVt_REGEXP);
4043         }
4044         break;
4045
4046         /* case SVt_BIND: */
4047     case SVt_PVLV:
4048     case SVt_PVGV:
4049     case SVt_PVMG:
4050         if (SvGMAGICAL(sstr) && (flags & SV_GMAGIC)) {
4051             mg_get(sstr);
4052             if (SvTYPE(sstr) != stype)
4053                 stype = SvTYPE(sstr);
4054         }
4055         if (isGV_with_GP(sstr) && dtype <= SVt_PVLV) {
4056                     glob_assign_glob(dstr, sstr, dtype);
4057                     return;
4058         }
4059         if (stype == SVt_PVLV)
4060         {
4061             if (isREGEXP(sstr)) goto upgregexp;
4062             SvUPGRADE(dstr, SVt_PVNV);
4063         }
4064         else
4065             SvUPGRADE(dstr, (svtype)stype);
4066     }
4067  end_of_first_switch:
4068
4069     /* dstr may have been upgraded.  */
4070     dtype = SvTYPE(dstr);
4071     sflags = SvFLAGS(sstr);
4072
4073     if (dtype == SVt_PVCV) {
4074         /* Assigning to a subroutine sets the prototype.  */
4075         if (SvOK(sstr)) {
4076             STRLEN len;
4077             const char *const ptr = SvPV_const(sstr, len);
4078
4079             SvGROW(dstr, len + 1);
4080             Copy(ptr, SvPVX(dstr), len + 1, char);
4081             SvCUR_set(dstr, len);
4082             SvPOK_only(dstr);
4083             SvFLAGS(dstr) |= sflags & SVf_UTF8;
4084             CvAUTOLOAD_off(dstr);
4085         } else {
4086             SvOK_off(dstr);
4087         }
4088     }
4089     else if (dtype == SVt_PVAV || dtype == SVt_PVHV || dtype == SVt_PVFM) {
4090         const char * const type = sv_reftype(dstr,0);
4091         if (PL_op)
4092             /* diag_listed_as: Cannot copy to %s */
4093             Perl_croak(aTHX_ "Cannot copy to %s in %s", type, OP_DESC(PL_op));
4094         else
4095             Perl_croak(aTHX_ "Cannot copy to %s", type);
4096     } else if (sflags & SVf_ROK) {
4097         if (isGV_with_GP(dstr)
4098             && SvTYPE(SvRV(sstr)) == SVt_PVGV && isGV_with_GP(SvRV(sstr))) {
4099             sstr = SvRV(sstr);
4100             if (sstr == dstr) {
4101                 if (GvIMPORTED(dstr) != GVf_IMPORTED
4102                     && CopSTASH_ne(PL_curcop, GvSTASH(dstr)))
4103                 {
4104                     GvIMPORTED_on(dstr);
4105                 }
4106                 GvMULTI_on(dstr);
4107                 return;
4108             }
4109             glob_assign_glob(dstr, sstr, dtype);
4110             return;
4111         }
4112
4113         if (dtype >= SVt_PV) {
4114             if (isGV_with_GP(dstr)) {
4115                 glob_assign_ref(dstr, sstr);
4116                 return;
4117             }
4118             if (SvPVX_const(dstr)) {
4119                 SvPV_free(dstr);
4120                 SvLEN_set(dstr, 0);
4121                 SvCUR_set(dstr, 0);
4122             }
4123         }
4124         (void)SvOK_off(dstr);
4125         SvRV_set(dstr, SvREFCNT_inc(SvRV(sstr)));
4126         SvFLAGS(dstr) |= sflags & SVf_ROK;
4127         assert(!(sflags & SVp_NOK));
4128         assert(!(sflags & SVp_IOK));
4129         assert(!(sflags & SVf_NOK));
4130         assert(!(sflags & SVf_IOK));
4131     }
4132     else if (isGV_with_GP(dstr)) {
4133         if (!(sflags & SVf_OK)) {
4134             Perl_ck_warner(aTHX_ packWARN(WARN_MISC),
4135                            "Undefined value assigned to typeglob");
4136         }
4137         else {
4138             GV *gv = gv_fetchsv_nomg(sstr, GV_ADD, SVt_PVGV);
4139             if (dstr != (const SV *)gv) {
4140                 const char * const name = GvNAME((const GV *)dstr);
4141                 const STRLEN len = GvNAMELEN(dstr);
4142                 HV *old_stash = NULL;
4143                 bool reset_isa = FALSE;
4144                 if ((len > 1 && name[len-2] == ':' && name[len-1] == ':')
4145                  || (len == 1 && name[0] == ':')) {
4146                     /* Set aside the old stash, so we can reset isa caches
4147                        on its subclasses. */
4148                     if((old_stash = GvHV(dstr))) {
4149                         /* Make sure we do not lose it early. */
4150                         SvREFCNT_inc_simple_void_NN(
4151                          sv_2mortal((SV *)old_stash)
4152                         );
4153                     }
4154                     reset_isa = TRUE;
4155                 }
4156
4157                 if (GvGP(dstr))
4158                     gp_free(MUTABLE_GV(dstr));
4159                 GvGP_set(dstr, gp_ref(GvGP(gv)));
4160
4161                 if (reset_isa) {
4162                     HV * const stash = GvHV(dstr);
4163                     if(
4164                         old_stash ? (HV *)HvENAME_get(old_stash) : stash
4165                     )
4166                         mro_package_moved(
4167                          stash, old_stash,
4168                          (GV *)dstr, 0
4169                         );
4170                 }
4171             }
4172         }
4173     }
4174     else if ((dtype == SVt_REGEXP || dtype == SVt_PVLV)
4175           && (stype == SVt_REGEXP || isREGEXP(sstr))) {
4176         reg_temp_copy((REGEXP*)dstr, (REGEXP*)sstr);
4177     }
4178     else if (sflags & SVp_POK) {
4179         bool isSwipe = 0;
4180
4181         /*
4182          * Check to see if we can just swipe the string.  If so, it's a
4183          * possible small lose on short strings, but a big win on long ones.
4184          * It might even be a win on short strings if SvPVX_const(dstr)
4185          * has to be allocated and SvPVX_const(sstr) has to be freed.
4186          * Likewise if we can set up COW rather than doing an actual copy, we
4187          * drop to the else clause, as the swipe code and the COW setup code
4188          * have much in common.
4189          */
4190
4191         /* Whichever path we take through the next code, we want this true,
4192            and doing it now facilitates the COW check.  */
4193         (void)SvPOK_only(dstr);
4194
4195         if (
4196             /* If we're already COW then this clause is not true, and if COW
4197                is allowed then we drop down to the else and make dest COW 
4198                with us.  If caller hasn't said that we're allowed to COW
4199                shared hash keys then we don't do the COW setup, even if the
4200                source scalar is a shared hash key scalar.  */
4201             (((flags & SV_COW_SHARED_HASH_KEYS)
4202                ? (sflags & (SVf_FAKE|SVf_READONLY)) != (SVf_FAKE|SVf_READONLY)
4203                : 1 /* If making a COW copy is forbidden then the behaviour we
4204                        desire is as if the source SV isn't actually already
4205                        COW, even if it is.  So we act as if the source flags
4206                        are not COW, rather than actually testing them.  */
4207               )
4208 #ifndef PERL_OLD_COPY_ON_WRITE
4209              /* The change that added SV_COW_SHARED_HASH_KEYS makes the logic
4210                 when PERL_OLD_COPY_ON_WRITE is defined a little wrong.
4211                 Conceptually PERL_OLD_COPY_ON_WRITE being defined should
4212                 override SV_COW_SHARED_HASH_KEYS, because it means "always COW"
4213                 but in turn, it's somewhat dead code, never expected to go
4214                 live, but more kept as a placeholder on how to do it better
4215                 in a newer implementation.  */
4216              /* If we are COW and dstr is a suitable target then we drop down
4217                 into the else and make dest a COW of us.  */
4218              || (SvFLAGS(dstr) & SVf_BREAK)
4219 #endif
4220              )
4221             &&
4222             !(isSwipe =
4223                  (sflags & SVs_TEMP) &&   /* slated for free anyway? */
4224                  !(sflags & SVf_OOK) &&   /* and not involved in OOK hack? */
4225                  (!(flags & SV_NOSTEAL)) &&
4226                                         /* and we're allowed to steal temps */
4227                  SvREFCNT(sstr) == 1 &&   /* and no other references to it? */
4228                  SvLEN(sstr))             /* and really is a string */
4229 #ifdef PERL_OLD_COPY_ON_WRITE
4230             && ((flags & SV_COW_SHARED_HASH_KEYS)
4231                 ? (!((sflags & CAN_COW_MASK) == CAN_COW_FLAGS
4232                      && (SvFLAGS(dstr) & CAN_COW_MASK) == CAN_COW_FLAGS
4233                      && SvTYPE(sstr) >= SVt_PVIV))
4234                 : 1)
4235 #endif
4236             ) {
4237             /* Failed the swipe test, and it's not a shared hash key either.
4238                Have to copy the string.  */
4239             STRLEN len = SvCUR(sstr);
4240             SvGROW(dstr, len + 1);      /* inlined from sv_setpvn */
4241             Move(SvPVX_const(sstr),SvPVX(dstr),len,char);
4242             SvCUR_set(dstr, len);
4243             *SvEND(dstr) = '\0';
4244         } else {
4245             /* If PERL_OLD_COPY_ON_WRITE is not defined, then isSwipe will always
4246                be true in here.  */
4247             /* Either it's a shared hash key, or it's suitable for
4248                copy-on-write or we can swipe the string.  */
4249             if (DEBUG_C_TEST) {
4250                 PerlIO_printf(Perl_debug_log, "Copy on write: sstr --> dstr\n");
4251                 sv_dump(sstr);
4252                 sv_dump(dstr);
4253             }
4254 #ifdef PERL_OLD_COPY_ON_WRITE
4255             if (!isSwipe) {
4256                 if ((sflags & (SVf_FAKE | SVf_READONLY))
4257                     != (SVf_FAKE | SVf_READONLY)) {
4258                     SvREADONLY_on(sstr);
4259                     SvFAKE_on(sstr);
4260                     /* Make the source SV into a loop of 1.
4261                        (about to become 2) */
4262                     SV_COW_NEXT_SV_SET(sstr, sstr);
4263                 }
4264             }
4265 #endif
4266             /* Initial code is common.  */
4267             if (SvPVX_const(dstr)) {    /* we know that dtype >= SVt_PV */
4268                 SvPV_free(dstr);
4269             }
4270
4271             if (!isSwipe) {
4272                 /* making another shared SV.  */
4273                 STRLEN cur = SvCUR(sstr);
4274                 STRLEN len = SvLEN(sstr);
4275 #ifdef PERL_OLD_COPY_ON_WRITE
4276                 if (len) {
4277                     assert (SvTYPE(dstr) >= SVt_PVIV);
4278                     /* SvIsCOW_normal */
4279                     /* splice us in between source and next-after-source.  */
4280                     SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4281                     SV_COW_NEXT_SV_SET(sstr, dstr);
4282                     SvPV_set(dstr, SvPVX_mutable(sstr));
4283                 } else
4284 #endif
4285                 {
4286                     /* SvIsCOW_shared_hash */
4287                     DEBUG_C(PerlIO_printf(Perl_debug_log,
4288                                           "Copy on write: Sharing hash\n"));
4289
4290                     assert (SvTYPE(dstr) >= SVt_PV);
4291                     SvPV_set(dstr,
4292                              HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)))));
4293                 }
4294                 SvLEN_set(dstr, len);
4295                 SvCUR_set(dstr, cur);
4296                 SvREADONLY_on(dstr);
4297                 SvFAKE_on(dstr);
4298             }
4299             else
4300                 {       /* Passes the swipe test.  */
4301                 SvPV_set(dstr, SvPVX_mutable(sstr));
4302                 SvLEN_set(dstr, SvLEN(sstr));
4303                 SvCUR_set(dstr, SvCUR(sstr));
4304
4305                 SvTEMP_off(dstr);
4306                 (void)SvOK_off(sstr);   /* NOTE: nukes most SvFLAGS on sstr */
4307                 SvPV_set(sstr, NULL);
4308                 SvLEN_set(sstr, 0);
4309                 SvCUR_set(sstr, 0);
4310                 SvTEMP_off(sstr);
4311             }
4312         }
4313         if (sflags & SVp_NOK) {
4314             SvNV_set(dstr, SvNVX(sstr));
4315         }
4316         if (sflags & SVp_IOK) {
4317             SvIV_set(dstr, SvIVX(sstr));
4318             /* Must do this otherwise some other overloaded use of 0x80000000
4319                gets confused. I guess SVpbm_VALID */
4320             if (sflags & SVf_IVisUV)
4321                 SvIsUV_on(dstr);
4322         }
4323         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_NOK|SVp_NOK|SVf_UTF8);
4324         {
4325             const MAGIC * const smg = SvVSTRING_mg(sstr);
4326             if (smg) {
4327                 sv_magic(dstr, NULL, PERL_MAGIC_vstring,
4328                          smg->mg_ptr, smg->mg_len);
4329                 SvRMAGICAL_on(dstr);
4330             }
4331         }
4332     }
4333     else if (sflags & (SVp_IOK|SVp_NOK)) {
4334         (void)SvOK_off(dstr);
4335         SvFLAGS(dstr) |= sflags & (SVf_IOK|SVp_IOK|SVf_IVisUV|SVf_NOK|SVp_NOK);
4336         if (sflags & SVp_IOK) {
4337             /* XXXX Do we want to set IsUV for IV(ROK)?  Be extra safe... */
4338             SvIV_set(dstr, SvIVX(sstr));
4339         }
4340         if (sflags & SVp_NOK) {
4341             SvNV_set(dstr, SvNVX(sstr));
4342         }
4343     }
4344     else {
4345         if (isGV_with_GP(sstr)) {
4346             gv_efullname3(dstr, MUTABLE_GV(sstr), "*");
4347         }
4348         else
4349             (void)SvOK_off(dstr);
4350     }
4351     if (SvTAINTED(sstr))
4352         SvTAINT(dstr);
4353 }
4354
4355 /*
4356 =for apidoc sv_setsv_mg
4357
4358 Like C<sv_setsv>, but also handles 'set' magic.
4359
4360 =cut
4361 */
4362
4363 void
4364 Perl_sv_setsv_mg(pTHX_ SV *const dstr, register SV *const sstr)
4365 {
4366     PERL_ARGS_ASSERT_SV_SETSV_MG;
4367
4368     sv_setsv(dstr,sstr);
4369     SvSETMAGIC(dstr);
4370 }
4371
4372 #ifdef PERL_OLD_COPY_ON_WRITE
4373 SV *
4374 Perl_sv_setsv_cow(pTHX_ SV *dstr, SV *sstr)
4375 {
4376     STRLEN cur = SvCUR(sstr);
4377     STRLEN len = SvLEN(sstr);
4378     char *new_pv;
4379
4380     PERL_ARGS_ASSERT_SV_SETSV_COW;
4381
4382     if (DEBUG_C_TEST) {
4383         PerlIO_printf(Perl_debug_log, "Fast copy on write: %p -> %p\n",
4384                       (void*)sstr, (void*)dstr);
4385         sv_dump(sstr);
4386         if (dstr)
4387                     sv_dump(dstr);
4388     }
4389
4390     if (dstr) {
4391         if (SvTHINKFIRST(dstr))
4392             sv_force_normal_flags(dstr, SV_COW_DROP_PV);
4393         else if (SvPVX_const(dstr))
4394             Safefree(SvPVX_mutable(dstr));
4395     }
4396     else
4397         new_SV(dstr);
4398     SvUPGRADE(dstr, SVt_PVIV);
4399
4400     assert (SvPOK(sstr));
4401     assert (SvPOKp(sstr));
4402     assert (!SvIOK(sstr));
4403     assert (!SvIOKp(sstr));
4404     assert (!SvNOK(sstr));
4405     assert (!SvNOKp(sstr));
4406
4407     if (SvIsCOW(sstr)) {
4408
4409         if (SvLEN(sstr) == 0) {
4410             /* source is a COW shared hash key.  */
4411             DEBUG_C(PerlIO_printf(Perl_debug_log,
4412                                   "Fast copy on write: Sharing hash\n"));
4413             new_pv = HEK_KEY(share_hek_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr))));
4414             goto common_exit;
4415         }
4416         SV_COW_NEXT_SV_SET(dstr, SV_COW_NEXT_SV(sstr));
4417     } else {
4418         assert ((SvFLAGS(sstr) & CAN_COW_MASK) == CAN_COW_FLAGS);
4419         SvUPGRADE(sstr, SVt_PVIV);
4420         SvREADONLY_on(sstr);
4421         SvFAKE_on(sstr);
4422         DEBUG_C(PerlIO_printf(Perl_debug_log,
4423                               "Fast copy on write: Converting sstr to COW\n"));
4424         SV_COW_NEXT_SV_SET(dstr, sstr);
4425     }
4426     SV_COW_NEXT_SV_SET(sstr, dstr);
4427     new_pv = SvPVX_mutable(sstr);
4428
4429   common_exit:
4430     SvPV_set(dstr, new_pv);
4431     SvFLAGS(dstr) = (SVt_PVIV|SVf_POK|SVp_POK|SVf_FAKE|SVf_READONLY);
4432     if (SvUTF8(sstr))
4433         SvUTF8_on(dstr);
4434     SvLEN_set(dstr, len);
4435     SvCUR_set(dstr, cur);
4436     if (DEBUG_C_TEST) {
4437         sv_dump(dstr);
4438     }
4439     return dstr;
4440 }
4441 #endif
4442
4443 /*
4444 =for apidoc sv_setpvn
4445
4446 Copies a string into an SV.  The C<len> parameter indicates the number of
4447 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
4448 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
4449
4450 =cut
4451 */
4452
4453 void
4454 Perl_sv_setpvn(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4455 {
4456     dVAR;
4457     char *dptr;
4458
4459     PERL_ARGS_ASSERT_SV_SETPVN;
4460
4461     SV_CHECK_THINKFIRST_COW_DROP(sv);
4462     if (!ptr) {
4463         (void)SvOK_off(sv);
4464         return;
4465     }
4466     else {
4467         /* len is STRLEN which is unsigned, need to copy to signed */
4468         const IV iv = len;
4469         if (iv < 0)
4470             Perl_croak(aTHX_ "panic: sv_setpvn called with negative strlen %"
4471                        IVdf, iv);
4472     }
4473     SvUPGRADE(sv, SVt_PV);
4474
4475     dptr = SvGROW(sv, len + 1);
4476     Move(ptr,dptr,len,char);
4477     dptr[len] = '\0';
4478     SvCUR_set(sv, len);
4479     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4480     SvTAINT(sv);
4481     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4482 }
4483
4484 /*
4485 =for apidoc sv_setpvn_mg
4486
4487 Like C<sv_setpvn>, but also handles 'set' magic.
4488
4489 =cut
4490 */
4491
4492 void
4493 Perl_sv_setpvn_mg(pTHX_ register SV *const sv, register const char *const ptr, register const STRLEN len)
4494 {
4495     PERL_ARGS_ASSERT_SV_SETPVN_MG;
4496
4497     sv_setpvn(sv,ptr,len);
4498     SvSETMAGIC(sv);
4499 }
4500
4501 /*
4502 =for apidoc sv_setpv
4503
4504 Copies a string into an SV.  The string must be null-terminated.  Does not
4505 handle 'set' magic.  See C<sv_setpv_mg>.
4506
4507 =cut
4508 */
4509
4510 void
4511 Perl_sv_setpv(pTHX_ register SV *const sv, register const char *const ptr)
4512 {
4513     dVAR;
4514     STRLEN len;
4515
4516     PERL_ARGS_ASSERT_SV_SETPV;
4517
4518     SV_CHECK_THINKFIRST_COW_DROP(sv);
4519     if (!ptr) {
4520         (void)SvOK_off(sv);
4521         return;
4522     }
4523     len = strlen(ptr);
4524     SvUPGRADE(sv, SVt_PV);
4525
4526     SvGROW(sv, len + 1);
4527     Move(ptr,SvPVX(sv),len+1,char);
4528     SvCUR_set(sv, len);
4529     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4530     SvTAINT(sv);
4531     if (SvTYPE(sv) == SVt_PVCV) CvAUTOLOAD_off(sv);
4532 }
4533
4534 /*
4535 =for apidoc sv_setpv_mg
4536
4537 Like C<sv_setpv>, but also handles 'set' magic.
4538
4539 =cut
4540 */
4541
4542 void
4543 Perl_sv_setpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
4544 {
4545     PERL_ARGS_ASSERT_SV_SETPV_MG;
4546
4547     sv_setpv(sv,ptr);
4548     SvSETMAGIC(sv);
4549 }
4550
4551 void
4552 Perl_sv_sethek(pTHX_ register SV *const sv, const HEK *const hek)
4553 {
4554     dVAR;
4555
4556     PERL_ARGS_ASSERT_SV_SETHEK;
4557
4558     if (!hek) {
4559         return;
4560     }
4561
4562     if (HEK_LEN(hek) == HEf_SVKEY) {
4563         sv_setsv(sv, *(SV**)HEK_KEY(hek));
4564         return;
4565     } else {
4566         const int flags = HEK_FLAGS(hek);
4567         if (flags & HVhek_WASUTF8) {
4568             STRLEN utf8_len = HEK_LEN(hek);
4569             char *as_utf8 = (char *)bytes_to_utf8((U8*)HEK_KEY(hek), &utf8_len);
4570             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
4571             SvUTF8_on(sv);
4572             return;
4573         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
4574             sv_setpvn(sv, HEK_KEY(hek), HEK_LEN(hek));
4575             if (HEK_UTF8(hek))
4576                 SvUTF8_on(sv);
4577             else SvUTF8_off(sv);
4578             return;
4579         }
4580         {
4581             SV_CHECK_THINKFIRST_COW_DROP(sv);
4582             SvUPGRADE(sv, SVt_PV);
4583             Safefree(SvPVX(sv));
4584             SvPV_set(sv,(char *)HEK_KEY(share_hek_hek(hek)));
4585             SvCUR_set(sv, HEK_LEN(hek));
4586             SvLEN_set(sv, 0);
4587             SvREADONLY_on(sv);
4588             SvFAKE_on(sv);
4589             SvPOK_on(sv);
4590             if (HEK_UTF8(hek))
4591                 SvUTF8_on(sv);
4592             else SvUTF8_off(sv);
4593             return;
4594         }
4595     }
4596 }
4597
4598
4599 /*
4600 =for apidoc sv_usepvn_flags
4601
4602 Tells an SV to use C<ptr> to find its string value.  Normally the
4603 string is stored inside the SV but sv_usepvn allows the SV to use an
4604 outside string.  The C<ptr> should point to memory that was allocated
4605 by C<malloc>.  It must be the start of a mallocked block
4606 of memory, and not a pointer to the middle of it.  The
4607 string length, C<len>, must be supplied.  By default
4608 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
4609 so that pointer should not be freed or used by the programmer after
4610 giving it to sv_usepvn, and neither should any pointers from "behind"
4611 that pointer (e.g. ptr + 1) be used.
4612
4613 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC.  If C<flags> &
4614 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
4615 will be skipped (i.e. the buffer is actually at least 1 byte longer than
4616 C<len>, and already meets the requirements for storing in C<SvPVX>).
4617
4618 =cut
4619 */
4620
4621 void
4622 Perl_sv_usepvn_flags(pTHX_ SV *const sv, char *ptr, const STRLEN len, const U32 flags)
4623 {
4624     dVAR;
4625     STRLEN allocate;
4626
4627     PERL_ARGS_ASSERT_SV_USEPVN_FLAGS;
4628
4629     SV_CHECK_THINKFIRST_COW_DROP(sv);
4630     SvUPGRADE(sv, SVt_PV);
4631     if (!ptr) {
4632         (void)SvOK_off(sv);
4633         if (flags & SV_SMAGIC)
4634             SvSETMAGIC(sv);
4635         return;
4636     }
4637     if (SvPVX_const(sv))
4638         SvPV_free(sv);
4639
4640 #ifdef DEBUGGING
4641     if (flags & SV_HAS_TRAILING_NUL)
4642         assert(ptr[len] == '\0');
4643 #endif
4644
4645     allocate = (flags & SV_HAS_TRAILING_NUL)
4646         ? len + 1 :
4647 #ifdef Perl_safesysmalloc_size
4648         len + 1;
4649 #else 
4650         PERL_STRLEN_ROUNDUP(len + 1);
4651 #endif
4652     if (flags & SV_HAS_TRAILING_NUL) {
4653         /* It's long enough - do nothing.
4654            Specifically Perl_newCONSTSUB is relying on this.  */
4655     } else {
4656 #ifdef DEBUGGING
4657         /* Force a move to shake out bugs in callers.  */
4658         char *new_ptr = (char*)safemalloc(allocate);
4659         Copy(ptr, new_ptr, len, char);
4660         PoisonFree(ptr,len,char);
4661         Safefree(ptr);
4662         ptr = new_ptr;
4663 #else
4664         ptr = (char*) saferealloc (ptr, allocate);
4665 #endif
4666     }
4667 #ifdef Perl_safesysmalloc_size
4668     SvLEN_set(sv, Perl_safesysmalloc_size(ptr));
4669 #else
4670     SvLEN_set(sv, allocate);
4671 #endif
4672     SvCUR_set(sv, len);
4673     SvPV_set(sv, ptr);
4674     if (!(flags & SV_HAS_TRAILING_NUL)) {
4675         ptr[len] = '\0';
4676     }
4677     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
4678     SvTAINT(sv);
4679     if (flags & SV_SMAGIC)
4680         SvSETMAGIC(sv);
4681 }
4682
4683 #ifdef PERL_OLD_COPY_ON_WRITE
4684 /* Need to do this *after* making the SV normal, as we need the buffer
4685    pointer to remain valid until after we've copied it.  If we let go too early,
4686    another thread could invalidate it by unsharing last of the same hash key
4687    (which it can do by means other than releasing copy-on-write Svs)
4688    or by changing the other copy-on-write SVs in the loop.  */
4689 STATIC void
4690 S_sv_release_COW(pTHX_ register SV *sv, const char *pvx, SV *after)
4691 {
4692     PERL_ARGS_ASSERT_SV_RELEASE_COW;
4693
4694     { /* this SV was SvIsCOW_normal(sv) */
4695          /* we need to find the SV pointing to us.  */
4696         SV *current = SV_COW_NEXT_SV(after);
4697
4698         if (current == sv) {
4699             /* The SV we point to points back to us (there were only two of us
4700                in the loop.)
4701                Hence other SV is no longer copy on write either.  */
4702             SvFAKE_off(after);
4703             SvREADONLY_off(after);
4704         } else {
4705             /* We need to follow the pointers around the loop.  */
4706             SV *next;
4707             while ((next = SV_COW_NEXT_SV(current)) != sv) {
4708                 assert (next);
4709                 current = next;
4710                  /* don't loop forever if the structure is bust, and we have
4711                     a pointer into a closed loop.  */
4712                 assert (current != after);
4713                 assert (SvPVX_const(current) == pvx);
4714             }
4715             /* Make the SV before us point to the SV after us.  */
4716             SV_COW_NEXT_SV_SET(current, after);
4717         }
4718     }
4719 }
4720 #endif
4721 /*
4722 =for apidoc sv_force_normal_flags
4723
4724 Undo various types of fakery on an SV, where fakery means
4725 "more than" a string: if the PV is a shared string, make
4726 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
4727 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
4728 we do the copy, and is also used locally; if this is a
4729 vstring, drop the vstring magic.  If C<SV_COW_DROP_PV> is set
4730 then a copy-on-write scalar drops its PV buffer (if any) and becomes
4731 SvPOK_off rather than making a copy.  (Used where this
4732 scalar is about to be set to some other value.)  In addition,
4733 the C<flags> parameter gets passed to C<sv_unref_flags()>
4734 when unreffing.  C<sv_force_normal> calls this function
4735 with flags set to 0.
4736
4737 =cut
4738 */
4739
4740 void
4741 Perl_sv_force_normal_flags(pTHX_ register SV *const sv, const U32 flags)
4742 {
4743     dVAR;
4744
4745     PERL_ARGS_ASSERT_SV_FORCE_NORMAL_FLAGS;
4746
4747 #ifdef PERL_OLD_COPY_ON_WRITE
4748     if (SvREADONLY(sv)) {
4749         if (SvIsCOW(sv)) {
4750             const char * const pvx = SvPVX_const(sv);
4751             const STRLEN len = SvLEN(sv);
4752             const STRLEN cur = SvCUR(sv);
4753             /* next COW sv in the loop.  If len is 0 then this is a shared-hash
4754                key scalar, so we mustn't attempt to call SV_COW_NEXT_SV(), as
4755                we'll fail an assertion.  */
4756             SV * const next = len ? SV_COW_NEXT_SV(sv) : 0;
4757
4758             if (DEBUG_C_TEST) {
4759                 PerlIO_printf(Perl_debug_log,
4760                               "Copy on write: Force normal %ld\n",
4761                               (long) flags);
4762                 sv_dump(sv);
4763             }
4764             SvFAKE_off(sv);
4765             SvREADONLY_off(sv);
4766             /* This SV doesn't own the buffer, so need to Newx() a new one:  */
4767             SvPV_set(sv, NULL);
4768             SvLEN_set(sv, 0);
4769             if (flags & SV_COW_DROP_PV) {
4770                 /* OK, so we don't need to copy our buffer.  */
4771                 SvPOK_off(sv);
4772             } else {
4773                 SvGROW(sv, cur + 1);
4774                 Move(pvx,SvPVX(sv),cur,char);
4775                 SvCUR_set(sv, cur);
4776                 *SvEND(sv) = '\0';
4777             }
4778             if (len) {
4779                 sv_release_COW(sv, pvx, next);
4780             } else {
4781                 unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4782             }
4783             if (DEBUG_C_TEST) {
4784                 sv_dump(sv);
4785             }
4786         }
4787         else if (IN_PERL_RUNTIME)
4788             Perl_croak_no_modify(aTHX);
4789     }
4790 #else
4791     if (SvREADONLY(sv)) {
4792         if (SvIsCOW(sv)) {
4793             const char * const pvx = SvPVX_const(sv);
4794             const STRLEN len = SvCUR(sv);
4795             SvFAKE_off(sv);
4796             SvREADONLY_off(sv);
4797             SvPV_set(sv, NULL);
4798             SvLEN_set(sv, 0);
4799             if (flags & SV_COW_DROP_PV) {
4800                 /* OK, so we don't need to copy our buffer.  */
4801                 SvPOK_off(sv);
4802             } else {
4803                 SvGROW(sv, len + 1);
4804                 Move(pvx,SvPVX(sv),len,char);
4805                 *SvEND(sv) = '\0';
4806             }
4807             unshare_hek(SvSHARED_HEK_FROM_PV(pvx));
4808         }
4809         else if (IN_PERL_RUNTIME)
4810             Perl_croak_no_modify(aTHX);
4811     }
4812 #endif
4813     if (SvROK(sv))
4814         sv_unref_flags(sv, flags);
4815     else if (SvFAKE(sv) && isGV_with_GP(sv))
4816         sv_unglob(sv, flags);
4817     else if (SvFAKE(sv) && isREGEXP(sv)) {
4818         /* Need to downgrade the REGEXP to a simple(r) scalar. This is analogous
4819            to sv_unglob. We only need it here, so inline it.  */
4820         const bool islv = SvTYPE(sv) == SVt_PVLV;
4821         const svtype new_type =
4822           islv ? SVt_NULL : SvMAGIC(sv) || SvSTASH(sv) ? SVt_PVMG : SVt_PV;
4823         SV *const temp = newSV_type(new_type);
4824         regexp *const temp_p = ReANY((REGEXP *)sv);
4825
4826         if (new_type == SVt_PVMG) {
4827             SvMAGIC_set(temp, SvMAGIC(sv));
4828             SvMAGIC_set(sv, NULL);
4829             SvSTASH_set(temp, SvSTASH(sv));
4830             SvSTASH_set(sv, NULL);
4831         }
4832         if (!islv) SvCUR_set(temp, SvCUR(sv));
4833         /* Remember that SvPVX is in the head, not the body.  But
4834            RX_WRAPPED is in the body. */
4835         assert(ReANY((REGEXP *)sv)->mother_re);
4836         /* Their buffer is already owned by someone else. */
4837         if (flags & SV_COW_DROP_PV) {
4838             /* SvLEN is already 0.  For SVt_REGEXP, we have a brand new
4839                zeroed body.  For SVt_PVLV, it should have been set to 0
4840                before turning into a regexp. */
4841             assert(!SvLEN(islv ? sv : temp));
4842             sv->sv_u.svu_pv = 0;
4843         }
4844         else {
4845             sv->sv_u.svu_pv = savepvn(RX_WRAPPED((REGEXP *)sv), SvCUR(sv));
4846             SvLEN_set(islv ? sv : temp, SvCUR(sv)+1);
4847             SvPOK_on(sv);
4848         }
4849
4850         /* Now swap the rest of the bodies. */
4851
4852         SvFAKE_off(sv);
4853         if (!islv) {
4854             SvFLAGS(sv) &= ~SVTYPEMASK;
4855             SvFLAGS(sv) |= new_type;
4856             SvANY(sv) = SvANY(temp);
4857         }
4858
4859         SvFLAGS(temp) &= ~(SVTYPEMASK);
4860         SvFLAGS(temp) |= SVt_REGEXP|SVf_FAKE;
4861         SvANY(temp) = temp_p;
4862         temp->sv_u.svu_rx = (regexp *)temp_p;
4863
4864         SvREFCNT_dec(temp);
4865     }
4866     else if (SvVOK(sv)) sv_unmagic(sv, PERL_MAGIC_vstring);
4867 }
4868
4869 /*
4870 =for apidoc sv_chop
4871
4872 Efficient removal of characters from the beginning of the string buffer.
4873 SvPOK(sv), or at least SvPOKp(sv), must be true and the C<ptr> must be a
4874 pointer to somewhere inside the string buffer.  The C<ptr> becomes the first
4875 character of the adjusted string.  Uses the "OOK hack".  On return, only
4876 SvPOK(sv) and SvPOKp(sv) among the OK flags will be true.
4877
4878 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
4879 refer to the same chunk of data.
4880
4881 The unfortunate similarity of this function's name to that of Perl's C<chop>
4882 operator is strictly coincidental.  This function works from the left;
4883 C<chop> works from the right.
4884
4885 =cut
4886 */
4887
4888 void
4889 Perl_sv_chop(pTHX_ register SV *const sv, register const char *const ptr)
4890 {
4891     STRLEN delta;
4892     STRLEN old_delta;
4893     U8 *p;
4894 #ifdef DEBUGGING
4895     const U8 *evacp;
4896     STRLEN evacn;
4897 #endif
4898     STRLEN max_delta;
4899
4900     PERL_ARGS_ASSERT_SV_CHOP;
4901
4902     if (!ptr || !SvPOKp(sv))
4903         return;
4904     delta = ptr - SvPVX_const(sv);
4905     if (!delta) {
4906         /* Nothing to do.  */
4907         return;
4908     }
4909     max_delta = SvLEN(sv) ? SvLEN(sv) : SvCUR(sv);
4910     if (delta > max_delta)
4911         Perl_croak(aTHX_ "panic: sv_chop ptr=%p, start=%p, end=%p",
4912                    ptr, SvPVX_const(sv), SvPVX_const(sv) + max_delta);
4913     /* SvPVX(sv) may move in SV_CHECK_THINKFIRST(sv), so don't use ptr any more */
4914     SV_CHECK_THINKFIRST(sv);
4915     SvPOK_only_UTF8(sv);
4916
4917     if (!SvOOK(sv)) {
4918         if (!SvLEN(sv)) { /* make copy of shared string */
4919             const char *pvx = SvPVX_const(sv);
4920             const STRLEN len = SvCUR(sv);
4921             SvGROW(sv, len + 1);
4922             Move(pvx,SvPVX(sv),len,char);
4923             *SvEND(sv) = '\0';
4924         }
4925         SvOOK_on(sv);
4926         old_delta = 0;
4927     } else {
4928         SvOOK_offset(sv, old_delta);
4929     }
4930     SvLEN_set(sv, SvLEN(sv) - delta);
4931     SvCUR_set(sv, SvCUR(sv) - delta);
4932     SvPV_set(sv, SvPVX(sv) + delta);
4933
4934     p = (U8 *)SvPVX_const(sv);
4935
4936 #ifdef DEBUGGING
4937     /* how many bytes were evacuated?  we will fill them with sentinel
4938        bytes, except for the part holding the new offset of course. */
4939     evacn = delta;
4940     if (old_delta)
4941         evacn += (old_delta < 0x100 ? 1 : 1 + sizeof(STRLEN));
4942     assert(evacn);
4943     assert(evacn <= delta + old_delta);
4944     evacp = p - evacn;
4945 #endif
4946
4947     delta += old_delta;
4948     assert(delta);
4949     if (delta < 0x100) {
4950         *--p = (U8) delta;
4951     } else {
4952         *--p = 0;
4953         p -= sizeof(STRLEN);
4954         Copy((U8*)&delta, p, sizeof(STRLEN), U8);
4955     }
4956
4957 #ifdef DEBUGGING
4958     /* Fill the preceding buffer with sentinals to verify that no-one is
4959        using it.  */
4960     while (p > evacp) {
4961         --p;
4962         *p = (U8)PTR2UV(p);
4963     }
4964 #endif
4965 }
4966
4967 /*
4968 =for apidoc sv_catpvn
4969
4970 Concatenates the string onto the end of the string which is in the SV.  The
4971 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4972 status set, then the bytes appended should be valid UTF-8.
4973 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
4974
4975 =for apidoc sv_catpvn_flags
4976
4977 Concatenates the string onto the end of the string which is in the SV.  The
4978 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
4979 status set, then the bytes appended should be valid UTF-8.
4980 If C<flags> has the C<SV_SMAGIC> bit set, will
4981 C<mg_set> on C<dsv> afterwards if appropriate.
4982 C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
4983 in terms of this function.
4984
4985 =cut
4986 */
4987
4988 void
4989 Perl_sv_catpvn_flags(pTHX_ register SV *const dsv, register const char *sstr, register const STRLEN slen, const I32 flags)
4990 {
4991     dVAR;
4992     STRLEN dlen;
4993     const char * const dstr = SvPV_force_flags(dsv, dlen, flags);
4994
4995     PERL_ARGS_ASSERT_SV_CATPVN_FLAGS;
4996     assert((flags & (SV_CATBYTES|SV_CATUTF8)) != (SV_CATBYTES|SV_CATUTF8));
4997
4998     if (!(flags & SV_CATBYTES) || !SvUTF8(dsv)) {
4999       if (flags & SV_CATUTF8 && !SvUTF8(dsv)) {
5000          sv_utf8_upgrade_flags_grow(dsv, 0, slen + 1);
5001          dlen = SvCUR(dsv);
5002       }
5003       else SvGROW(dsv, dlen + slen + 1);
5004       if (sstr == dstr)
5005         sstr = SvPVX_const(dsv);
5006       Move(sstr, SvPVX(dsv) + dlen, slen, char);
5007       SvCUR_set(dsv, SvCUR(dsv) + slen);
5008     }
5009     else {
5010         /* We inline bytes_to_utf8, to avoid an extra malloc. */
5011         const char * const send = sstr + slen;
5012         U8 *d;
5013
5014         /* Something this code does not account for, which I think is
5015            impossible; it would require the same pv to be treated as
5016            bytes *and* utf8, which would indicate a bug elsewhere. */
5017         assert(sstr != dstr);
5018
5019         SvGROW(dsv, dlen + slen * 2 + 1);
5020         d = (U8 *)SvPVX(dsv) + dlen;
5021
5022         while (sstr < send) {
5023             const UV uv = NATIVE_TO_ASCII((U8)*sstr++);
5024             if (UNI_IS_INVARIANT(uv))
5025                 *d++ = (U8)UTF_TO_NATIVE(uv);
5026             else {
5027                 *d++ = (U8)UTF8_EIGHT_BIT_HI(uv);
5028                 *d++ = (U8)UTF8_EIGHT_BIT_LO(uv);
5029             }
5030         }
5031         SvCUR_set(dsv, d-(const U8 *)SvPVX(dsv));
5032     }
5033     *SvEND(dsv) = '\0';
5034     (void)SvPOK_only_UTF8(dsv);         /* validate pointer */
5035     SvTAINT(dsv);
5036     if (flags & SV_SMAGIC)
5037         SvSETMAGIC(dsv);
5038 }
5039
5040 /*
5041 =for apidoc sv_catsv
5042
5043 Concatenates the string from SV C<ssv> onto the end of the string in SV
5044 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5045 Handles 'get' magic on both SVs, but no 'set' magic.  See C<sv_catsv_mg> and
5046 C<sv_catsv_nomg>.
5047
5048 =for apidoc sv_catsv_flags
5049
5050 Concatenates the string from SV C<ssv> onto the end of the string in SV
5051 C<dsv>.  If C<ssv> is null, does nothing; otherwise modifies only C<dsv>.
5052 If C<flags> include C<SV_GMAGIC> bit set, will call C<mg_get> on both SVs if
5053 appropriate.  If C<flags> include C<SV_SMAGIC>, C<mg_set> will be called on
5054 the modified SV afterward, if appropriate.  C<sv_catsv>, C<sv_catsv_nomg>,
5055 and C<sv_catsv_mg> are implemented in terms of this function.
5056
5057 =cut */
5058
5059 void
5060 Perl_sv_catsv_flags(pTHX_ SV *const dsv, register SV *const ssv, const I32 flags)
5061 {
5062     dVAR;
5063  
5064     PERL_ARGS_ASSERT_SV_CATSV_FLAGS;
5065
5066     if (ssv) {
5067         STRLEN slen;
5068         const char *spv = SvPV_flags_const(ssv, slen, flags);
5069         if (spv) {
5070             if (flags & SV_GMAGIC)
5071                 SvGETMAGIC(dsv);
5072             sv_catpvn_flags(dsv, spv, slen,
5073                             DO_UTF8(ssv) ? SV_CATUTF8 : SV_CATBYTES);
5074             if (flags & SV_SMAGIC)
5075                 SvSETMAGIC(dsv);
5076         }
5077     }
5078 }
5079
5080 /*
5081 =for apidoc sv_catpv
5082
5083 Concatenates the string onto the end of the string which is in the SV.
5084 If the SV has the UTF-8 status set, then the bytes appended should be
5085 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5086
5087 =cut */
5088
5089 void
5090 Perl_sv_catpv(pTHX_ register SV *const sv, register const char *ptr)
5091 {
5092     dVAR;
5093     STRLEN len;
5094     STRLEN tlen;
5095     char *junk;
5096
5097     PERL_ARGS_ASSERT_SV_CATPV;
5098
5099     if (!ptr)
5100         return;
5101     junk = SvPV_force(sv, tlen);
5102     len = strlen(ptr);
5103     SvGROW(sv, tlen + len + 1);
5104     if (ptr == junk)
5105         ptr = SvPVX_const(sv);
5106     Move(ptr,SvPVX(sv)+tlen,len+1,char);
5107     SvCUR_set(sv, SvCUR(sv) + len);
5108     (void)SvPOK_only_UTF8(sv);          /* validate pointer */
5109     SvTAINT(sv);
5110 }
5111
5112 /*
5113 =for apidoc sv_catpv_flags
5114
5115 Concatenates the string onto the end of the string which is in the SV.
5116 If the SV has the UTF-8 status set, then the bytes appended should
5117 be valid UTF-8.  If C<flags> has the C<SV_SMAGIC> bit set, will C<mg_set>
5118 on the modified SV if appropriate.
5119
5120 =cut
5121 */
5122
5123 void
5124 Perl_sv_catpv_flags(pTHX_ SV *dstr, const char *sstr, const I32 flags)
5125 {
5126     PERL_ARGS_ASSERT_SV_CATPV_FLAGS;
5127     sv_catpvn_flags(dstr, sstr, strlen(sstr), flags);
5128 }
5129
5130 /*
5131 =for apidoc sv_catpv_mg
5132
5133 Like C<sv_catpv>, but also handles 'set' magic.
5134
5135 =cut
5136 */
5137
5138 void
5139 Perl_sv_catpv_mg(pTHX_ register SV *const sv, register const char *const ptr)
5140 {
5141     PERL_ARGS_ASSERT_SV_CATPV_MG;
5142
5143     sv_catpv(sv,ptr);
5144     SvSETMAGIC(sv);
5145 }
5146
5147 /*
5148 =for apidoc newSV
5149
5150 Creates a new SV.  A non-zero C<len> parameter indicates the number of
5151 bytes of preallocated string space the SV should have.  An extra byte for a
5152 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
5153 space is allocated.)  The reference count for the new SV is set to 1.
5154
5155 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
5156 parameter, I<x>, a debug aid which allowed callers to identify themselves.
5157 This aid has been superseded by a new build option, PERL_MEM_LOG (see
5158 L<perlhacktips/PERL_MEM_LOG>).  The older API is still there for use in XS
5159 modules supporting older perls.
5160
5161 =cut
5162 */
5163
5164 SV *
5165 Perl_newSV(pTHX_ const STRLEN len)
5166 {
5167     dVAR;
5168     SV *sv;
5169
5170     new_SV(sv);
5171     if (len) {
5172         sv_upgrade(sv, SVt_PV);
5173         SvGROW(sv, len + 1);
5174     }
5175     return sv;
5176 }
5177 /*
5178 =for apidoc sv_magicext
5179
5180 Adds magic to an SV, upgrading it if necessary.  Applies the
5181 supplied vtable and returns a pointer to the magic added.
5182
5183 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5184 In particular, you can add magic to SvREADONLY SVs, and add more than
5185 one instance of the same 'how'.
5186
5187 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5188 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5189 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5190 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5191
5192 (This is now used as a subroutine by C<sv_magic>.)
5193
5194 =cut
5195 */
5196 MAGIC * 
5197 Perl_sv_magicext(pTHX_ SV *const sv, SV *const obj, const int how, 
5198                 const MGVTBL *const vtable, const char *const name, const I32 namlen)
5199 {
5200     dVAR;
5201     MAGIC* mg;
5202
5203     PERL_ARGS_ASSERT_SV_MAGICEXT;
5204
5205     SvUPGRADE(sv, SVt_PVMG);
5206     Newxz(mg, 1, MAGIC);
5207     mg->mg_moremagic = SvMAGIC(sv);
5208     SvMAGIC_set(sv, mg);
5209
5210     /* Sometimes a magic contains a reference loop, where the sv and
5211        object refer to each other.  To prevent a reference loop that
5212        would prevent such objects being freed, we look for such loops
5213        and if we find one we avoid incrementing the object refcount.
5214
5215        Note we cannot do this to avoid self-tie loops as intervening RV must
5216        have its REFCNT incremented to keep it in existence.
5217
5218     */
5219     if (!obj || obj == sv ||
5220         how == PERL_MAGIC_arylen ||
5221         how == PERL_MAGIC_symtab ||
5222         (SvTYPE(obj) == SVt_PVGV &&
5223             (GvSV(obj) == sv || GvHV(obj) == (const HV *)sv
5224              || GvAV(obj) == (const AV *)sv || GvCV(obj) == (const CV *)sv
5225              || GvIOp(obj) == (const IO *)sv || GvFORM(obj) == (const CV *)sv)))
5226     {
5227         mg->mg_obj = obj;
5228     }
5229     else {
5230         mg->mg_obj = SvREFCNT_inc_simple(obj);
5231         mg->mg_flags |= MGf_REFCOUNTED;
5232     }
5233
5234     /* Normal self-ties simply pass a null object, and instead of
5235        using mg_obj directly, use the SvTIED_obj macro to produce a
5236        new RV as needed.  For glob "self-ties", we are tieing the PVIO
5237        with an RV obj pointing to the glob containing the PVIO.  In
5238        this case, to avoid a reference loop, we need to weaken the
5239        reference.
5240     */
5241
5242     if (how == PERL_MAGIC_tiedscalar && SvTYPE(sv) == SVt_PVIO &&
5243         obj && SvROK(obj) && GvIO(SvRV(obj)) == (const IO *)sv)
5244     {
5245       sv_rvweaken(obj);
5246     }
5247
5248     mg->mg_type = how;
5249     mg->mg_len = namlen;
5250     if (name) {
5251         if (namlen > 0)
5252             mg->mg_ptr = savepvn(name, namlen);
5253         else if (namlen == HEf_SVKEY) {
5254             /* Yes, this is casting away const. This is only for the case of
5255                HEf_SVKEY. I think we need to document this aberation of the
5256                constness of the API, rather than making name non-const, as
5257                that change propagating outwards a long way.  */
5258             mg->mg_ptr = (char*)SvREFCNT_inc_simple_NN((SV *)name);
5259         } else
5260             mg->mg_ptr = (char *) name;
5261     }
5262     mg->mg_virtual = (MGVTBL *) vtable;
5263
5264     mg_magical(sv);
5265     return mg;
5266 }
5267
5268 /*
5269 =for apidoc sv_magic
5270
5271 Adds magic to an SV.  First upgrades C<sv> to type C<SVt_PVMG> if
5272 necessary, then adds a new magic item of type C<how> to the head of the
5273 magic list.
5274
5275 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5276 handling of the C<name> and C<namlen> arguments.
5277
5278 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5279 to add more than one instance of the same 'how'.
5280
5281 =cut
5282 */
5283
5284 void
5285 Perl_sv_magic(pTHX_ register SV *const sv, SV *const obj, const int how, 
5286              const char *const name, const I32 namlen)
5287 {
5288     dVAR;
5289     const MGVTBL *vtable;
5290     MAGIC* mg;
5291     unsigned int flags;
5292     unsigned int vtable_index;
5293
5294     PERL_ARGS_ASSERT_SV_MAGIC;
5295
5296     if (how < 0 || (unsigned)how > C_ARRAY_LENGTH(PL_magic_data)
5297         || ((flags = PL_magic_data[how]),
5298             (vtable_index = flags & PERL_MAGIC_VTABLE_MASK)
5299             > magic_vtable_max))
5300         Perl_croak(aTHX_ "Don't know how to handle magic of type \\%o", how);
5301
5302     /* PERL_MAGIC_ext is reserved for use by extensions not perl internals.
5303        Useful for attaching extension internal data to perl vars.
5304        Note that multiple extensions may clash if magical scalars
5305        etc holding private data from one are passed to another. */
5306
5307     vtable = (vtable_index == magic_vtable_max)
5308         ? NULL : PL_magic_vtables + vtable_index;
5309
5310 #ifdef PERL_OLD_COPY_ON_WRITE
5311     if (SvIsCOW(sv))
5312         sv_force_normal_flags(sv, 0);
5313 #endif
5314     if (SvREADONLY(sv)) {
5315         if (
5316             /* its okay to attach magic to shared strings */
5317             !SvIsCOW(sv)
5318
5319             && IN_PERL_RUNTIME
5320             && !PERL_MAGIC_TYPE_READONLY_ACCEPTABLE(how)
5321            )
5322         {
5323             Perl_croak_no_modify(aTHX);
5324         }
5325     }
5326     if (SvMAGICAL(sv) || (how == PERL_MAGIC_taint && SvTYPE(sv) >= SVt_PVMG)) {
5327         if (SvMAGIC(sv) && (mg = mg_find(sv, how))) {
5328             /* sv_magic() refuses to add a magic of the same 'how' as an
5329                existing one
5330              */
5331             if (how == PERL_MAGIC_taint)
5332                 mg->mg_len |= 1;
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 if (SvIS_FREED(tsv) && PL_phase == PERL_PHASE_DESTRUCT) {
5562         /* It's possible for the the last (strong) reference to tsv to have
5563            become freed *before* the last thing holding a weak reference.
5564            If both survive longer than the backreferences array, then when
5565            the referent's reference count drops to 0 and it is freed, it's
5566            not able to chase the backreferences, so they aren't NULLed.
5567
5568            For example, a CV holds a weak reference to its stash. If both the
5569            CV and the stash survive longer than the backreferences array,
5570            and the CV gets picked for the SvBREAK() treatment first,
5571            *and* it turns out that the stash is only being kept alive because
5572            of an our variable in the pad of the CV, then midway during CV
5573            destruction the stash gets freed, but CvSTASH() isn't set to NULL.
5574            It ends up pointing to the freed HV. Hence it's chased in here, and
5575            if this block wasn't here, it would hit the !svp panic just below.
5576
5577            I don't believe that "better" destruction ordering is going to help
5578            here - during global destruction there's always going to be the
5579            chance that something goes out of order. We've tried to make it
5580            foolproof before, and it only resulted in evolutionary pressure on
5581            fools. Which made us look foolish for our hubris. :-(
5582         */
5583         return;
5584     }
5585     else {
5586         MAGIC *const mg
5587             = SvMAGICAL(tsv) ? mg_find(tsv, PERL_MAGIC_backref) : NULL;
5588         svp =  mg ? &(mg->mg_obj) : NULL;
5589     }
5590
5591     if (!svp)
5592         Perl_croak(aTHX_ "panic: del_backref, svp=0");
5593     if (!*svp) {
5594         /* It's possible that sv is being freed recursively part way through the
5595            freeing of tsv. If this happens, the backreferences array of tsv has
5596            already been freed, and so svp will be NULL. If this is the case,
5597            we should not panic. Instead, nothing needs doing, so return.  */
5598         if (PL_phase == PERL_PHASE_DESTRUCT && SvREFCNT(tsv) == 0)
5599             return;
5600         Perl_croak(aTHX_ "panic: del_backref, *svp=%p phase=%s refcnt=%" UVuf,
5601                    *svp, PL_phase_names[PL_phase], (UV)SvREFCNT(tsv));
5602     }
5603
5604     if (SvTYPE(*svp) == SVt_PVAV) {
5605 #ifdef DEBUGGING
5606         int count = 1;
5607 #endif
5608         AV * const av = (AV*)*svp;
5609         SSize_t fill;
5610         assert(!SvIS_FREED(av));
5611         fill = AvFILLp(av);
5612         assert(fill > -1);
5613         svp = AvARRAY(av);
5614         /* for an SV with N weak references to it, if all those
5615          * weak refs are deleted, then sv_del_backref will be called
5616          * N times and O(N^2) compares will be done within the backref
5617          * array. To ameliorate this potential slowness, we:
5618          * 1) make sure this code is as tight as possible;
5619          * 2) when looking for SV, look for it at both the head and tail of the
5620          *    array first before searching the rest, since some create/destroy
5621          *    patterns will cause the backrefs to be freed in order.
5622          */
5623         if (*svp == sv) {
5624             AvARRAY(av)++;
5625             AvMAX(av)--;
5626         }
5627         else {
5628             SV **p = &svp[fill];
5629             SV *const topsv = *p;
5630             if (topsv != sv) {
5631 #ifdef DEBUGGING
5632                 count = 0;
5633 #endif
5634                 while (--p > svp) {
5635                     if (*p == sv) {
5636                         /* We weren't the last entry.
5637                            An unordered list has this property that you
5638                            can take the last element off the end to fill
5639                            the hole, and it's still an unordered list :-)
5640                         */
5641                         *p = topsv;
5642 #ifdef DEBUGGING
5643                         count++;
5644 #else
5645                         break; /* should only be one */
5646 #endif
5647                     }
5648                 }
5649             }
5650         }
5651         assert(count ==1);
5652         AvFILLp(av) = fill-1;
5653     }
5654     else if (SvIS_FREED(*svp) && PL_phase == PERL_PHASE_DESTRUCT) {
5655         /* freed AV; skip */
5656     }
5657     else {
5658         /* optimisation: only a single backref, stored directly */
5659         if (*svp != sv)
5660             Perl_croak(aTHX_ "panic: del_backref, *svp=%p, sv=%p", *svp, sv);
5661         *svp = NULL;
5662     }
5663
5664 }
5665
5666 void
5667 Perl_sv_kill_backrefs(pTHX_ SV *const sv, AV *const av)
5668 {
5669     SV **svp;
5670     SV **last;
5671     bool is_array;
5672
5673     PERL_ARGS_ASSERT_SV_KILL_BACKREFS;
5674
5675     if (!av)
5676         return;
5677
5678     /* after multiple passes through Perl_sv_clean_all() for a thingy
5679      * that has badly leaked, the backref array may have gotten freed,
5680      * since we only protect it against 1 round of cleanup */
5681     if (SvIS_FREED(av)) {
5682         if (PL_in_clean_all) /* All is fair */
5683             return;
5684         Perl_croak(aTHX_
5685                    "panic: magic_killbackrefs (freed backref AV/SV)");
5686     }
5687
5688
5689     is_array = (SvTYPE(av) == SVt_PVAV);
5690     if (is_array) {
5691         assert(!SvIS_FREED(av));
5692         svp = AvARRAY(av);
5693         if (svp)
5694             last = svp + AvFILLp(av);
5695     }
5696     else {
5697         /* optimisation: only a single backref, stored directly */
5698         svp = (SV**)&av;
5699         last = svp;
5700     }
5701
5702     if (svp) {
5703         while (svp <= last) {
5704             if (*svp) {
5705                 SV *const referrer = *svp;
5706                 if (SvWEAKREF(referrer)) {
5707                     /* XXX Should we check that it hasn't changed? */
5708                     assert(SvROK(referrer));
5709                     SvRV_set(referrer, 0);
5710                     SvOK_off(referrer);
5711                     SvWEAKREF_off(referrer);
5712                     SvSETMAGIC(referrer);
5713                 } else if (SvTYPE(referrer) == SVt_PVGV ||
5714                            SvTYPE(referrer) == SVt_PVLV) {
5715                     assert(SvTYPE(sv) == SVt_PVHV); /* stash backref */
5716                     /* You lookin' at me?  */
5717                     assert(GvSTASH(referrer));
5718                     assert(GvSTASH(referrer) == (const HV *)sv);
5719                     GvSTASH(referrer) = 0;
5720                 } else if (SvTYPE(referrer) == SVt_PVCV ||
5721                            SvTYPE(referrer) == SVt_PVFM) {
5722                     if (SvTYPE(sv) == SVt_PVHV) { /* stash backref */
5723                         /* You lookin' at me?  */
5724                         assert(CvSTASH(referrer));
5725                         assert(CvSTASH(referrer) == (const HV *)sv);
5726                         SvANY(MUTABLE_CV(referrer))->xcv_stash = 0;
5727                     }
5728                     else {
5729                         assert(SvTYPE(sv) == SVt_PVGV);
5730                         /* You lookin' at me?  */
5731                         assert(CvGV(referrer));
5732                         assert(CvGV(referrer) == (const GV *)sv);
5733                         anonymise_cv_maybe(MUTABLE_GV(sv),
5734                                                 MUTABLE_CV(referrer));
5735                     }
5736
5737                 } else {
5738                     Perl_croak(aTHX_
5739                                "panic: magic_killbackrefs (flags=%"UVxf")",
5740                                (UV)SvFLAGS(referrer));
5741                 }
5742
5743                 if (is_array)
5744                     *svp = NULL;
5745             }
5746             svp++;
5747         }
5748     }
5749     if (is_array) {
5750         AvFILLp(av) = -1;
5751         SvREFCNT_dec(av); /* remove extra count added by sv_add_backref() */
5752     }
5753     return;
5754 }
5755
5756 /*
5757 =for apidoc sv_insert
5758
5759 Inserts a string at the specified offset/length within the SV.  Similar to
5760 the Perl substr() function.  Handles get magic.
5761
5762 =for apidoc sv_insert_flags
5763
5764 Same as C<sv_insert>, but the extra C<flags> are passed to the
5765 C<SvPV_force_flags> that applies to C<bigstr>.
5766
5767 =cut
5768 */
5769
5770 void
5771 Perl_sv_insert_flags(pTHX_ SV *const bigstr, const STRLEN offset, const STRLEN len, const char *const little, const STRLEN littlelen, const U32 flags)
5772 {
5773     dVAR;
5774     char *big;
5775     char *mid;
5776     char *midend;
5777     char *bigend;
5778     SSize_t i;          /* better be sizeof(STRLEN) or bad things happen */
5779     STRLEN curlen;
5780
5781     PERL_ARGS_ASSERT_SV_INSERT_FLAGS;
5782
5783     if (!bigstr)
5784         Perl_croak(aTHX_ "Can't modify nonexistent substring");
5785     SvPV_force_flags(bigstr, curlen, flags);
5786     (void)SvPOK_only_UTF8(bigstr);
5787     if (offset + len > curlen) {
5788         SvGROW(bigstr, offset+len+1);
5789         Zero(SvPVX(bigstr)+curlen, offset+len-curlen, char);
5790         SvCUR_set(bigstr, offset+len);
5791     }
5792
5793     SvTAINT(bigstr);
5794     i = littlelen - len;
5795     if (i > 0) {                        /* string might grow */
5796         big = SvGROW(bigstr, SvCUR(bigstr) + i + 1);
5797         mid = big + offset + len;
5798         midend = bigend = big + SvCUR(bigstr);
5799         bigend += i;
5800         *bigend = '\0';
5801         while (midend > mid)            /* shove everything down */
5802             *--bigend = *--midend;
5803         Move(little,big+offset,littlelen,char);
5804         SvCUR_set(bigstr, SvCUR(bigstr) + i);
5805         SvSETMAGIC(bigstr);
5806         return;
5807     }
5808     else if (i == 0) {
5809         Move(little,SvPVX(bigstr)+offset,len,char);
5810         SvSETMAGIC(bigstr);
5811         return;
5812     }
5813
5814     big = SvPVX(bigstr);
5815     mid = big + offset;
5816     midend = mid + len;
5817     bigend = big + SvCUR(bigstr);
5818
5819     if (midend > bigend)
5820         Perl_croak(aTHX_ "panic: sv_insert, midend=%p, bigend=%p",
5821                    midend, bigend);
5822
5823     if (mid - big > bigend - midend) {  /* faster to shorten from end */
5824         if (littlelen) {
5825             Move(little, mid, littlelen,char);
5826             mid += littlelen;
5827         }
5828         i = bigend - midend;
5829         if (i > 0) {
5830             Move(midend, mid, i,char);
5831             mid += i;
5832         }
5833         *mid = '\0';
5834         SvCUR_set(bigstr, mid - big);
5835     }
5836     else if ((i = mid - big)) { /* faster from front */
5837         midend -= littlelen;
5838         mid = midend;
5839         Move(big, midend - i, i, char);
5840         sv_chop(bigstr,midend-i);
5841         if (littlelen)
5842             Move(little, mid, littlelen,char);
5843     }
5844     else if (littlelen) {
5845         midend -= littlelen;
5846         sv_chop(bigstr,midend);
5847         Move(little,midend,littlelen,char);
5848     }
5849     else {
5850         sv_chop(bigstr,midend);
5851     }
5852     SvSETMAGIC(bigstr);
5853 }
5854
5855 /*
5856 =for apidoc sv_replace
5857
5858 Make the first argument a copy of the second, then delete the original.
5859 The target SV physically takes over ownership of the body of the source SV
5860 and inherits its flags; however, the target keeps any magic it owns,
5861 and any magic in the source is discarded.
5862 Note that this is a rather specialist SV copying operation; most of the
5863 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5864
5865 =cut
5866 */
5867
5868 void
5869 Perl_sv_replace(pTHX_ register SV *const sv, register SV *const nsv)
5870 {
5871     dVAR;
5872     const U32 refcnt = SvREFCNT(sv);
5873
5874     PERL_ARGS_ASSERT_SV_REPLACE;
5875
5876     SV_CHECK_THINKFIRST_COW_DROP(sv);
5877     if (SvREFCNT(nsv) != 1) {
5878         Perl_croak(aTHX_ "panic: reference miscount on nsv in sv_replace()"
5879                    " (%" UVuf " != 1)", (UV) SvREFCNT(nsv));
5880     }
5881     if (SvMAGICAL(sv)) {
5882         if (SvMAGICAL(nsv))
5883             mg_free(nsv);
5884         else
5885             sv_upgrade(nsv, SVt_PVMG);
5886         SvMAGIC_set(nsv, SvMAGIC(sv));
5887         SvFLAGS(nsv) |= SvMAGICAL(sv);
5888         SvMAGICAL_off(sv);
5889         SvMAGIC_set(sv, NULL);
5890     }
5891     SvREFCNT(sv) = 0;
5892     sv_clear(sv);
5893     assert(!SvREFCNT(sv));
5894 #ifdef DEBUG_LEAKING_SCALARS
5895     sv->sv_flags  = nsv->sv_flags;
5896     sv->sv_any    = nsv->sv_any;
5897     sv->sv_refcnt = nsv->sv_refcnt;
5898     sv->sv_u      = nsv->sv_u;
5899 #else
5900     StructCopy(nsv,sv,SV);
5901 #endif
5902     if(SvTYPE(sv) == SVt_IV) {
5903         SvANY(sv)
5904             = (XPVIV*)((char*)&(sv->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
5905     }
5906         
5907
5908 #ifdef PERL_OLD_COPY_ON_WRITE
5909     if (SvIsCOW_normal(nsv)) {
5910         /* We need to follow the pointers around the loop to make the
5911            previous SV point to sv, rather than nsv.  */
5912         SV *next;
5913         SV *current = nsv;
5914         while ((next = SV_COW_NEXT_SV(current)) != nsv) {
5915             assert(next);
5916             current = next;
5917             assert(SvPVX_const(current) == SvPVX_const(nsv));
5918         }
5919         /* Make the SV before us point to the SV after us.  */
5920         if (DEBUG_C_TEST) {
5921             PerlIO_printf(Perl_debug_log, "previous is\n");
5922             sv_dump(current);
5923             PerlIO_printf(Perl_debug_log,
5924                           "move it from 0x%"UVxf" to 0x%"UVxf"\n",
5925                           (UV) SV_COW_NEXT_SV(current), (UV) sv);
5926         }
5927         SV_COW_NEXT_SV_SET(current, sv);
5928     }
5929 #endif
5930     SvREFCNT(sv) = refcnt;
5931     SvFLAGS(nsv) |= SVTYPEMASK;         /* Mark as freed */
5932     SvREFCNT(nsv) = 0;
5933     del_SV(nsv);
5934 }
5935
5936 /* We're about to free a GV which has a CV that refers back to us.
5937  * If that CV will outlive us, make it anonymous (i.e. fix up its CvGV
5938  * field) */
5939
5940 STATIC void
5941 S_anonymise_cv_maybe(pTHX_ GV *gv, CV* cv)
5942 {
5943     SV *gvname;
5944     GV *anongv;
5945
5946     PERL_ARGS_ASSERT_ANONYMISE_CV_MAYBE;
5947
5948     /* be assertive! */
5949     assert(SvREFCNT(gv) == 0);
5950     assert(isGV(gv) && isGV_with_GP(gv));
5951     assert(GvGP(gv));
5952     assert(!CvANON(cv));
5953     assert(CvGV(cv) == gv);
5954     assert(!CvNAMED(cv));
5955
5956     /* will the CV shortly be freed by gp_free() ? */
5957     if (GvCV(gv) == cv && GvGP(gv)->gp_refcnt < 2 && SvREFCNT(cv) < 2) {
5958         SvANY(cv)->xcv_gv_u.xcv_gv = NULL;
5959         return;
5960     }
5961
5962     /* if not, anonymise: */
5963     gvname = (GvSTASH(gv) && HvNAME(GvSTASH(gv)) && HvENAME(GvSTASH(gv)))
5964                     ? newSVhek(HvENAME_HEK(GvSTASH(gv)))
5965                     : newSVpvn_flags( "__ANON__", 8, 0 );
5966     sv_catpvs(gvname, "::__ANON__");
5967     anongv = gv_fetchsv(gvname, GV_ADDMULTI, SVt_PVCV);
5968     SvREFCNT_dec(gvname);
5969
5970     CvANON_on(cv);
5971     CvCVGV_RC_on(cv);
5972     SvANY(cv)->xcv_gv_u.xcv_gv = MUTABLE_GV(SvREFCNT_inc(anongv));
5973 }
5974
5975
5976 /*
5977 =for apidoc sv_clear
5978
5979 Clear an SV: call any destructors, free up any memory used by the body,
5980 and free the body itself.  The SV's head is I<not> freed, although
5981 its type is set to all 1's so that it won't inadvertently be assumed
5982 to be live during global destruction etc.
5983 This function should only be called when REFCNT is zero.  Most of the time
5984 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5985 instead.
5986
5987 =cut
5988 */
5989
5990 void
5991 Perl_sv_clear(pTHX_ SV *const orig_sv)
5992 {
5993     dVAR;
5994     HV *stash;
5995     U32 type;
5996     const struct body_details *sv_type_details;
5997     SV* iter_sv = NULL;
5998     SV* next_sv = NULL;
5999     SV *sv = orig_sv;
6000     STRLEN hash_index;
6001
6002     PERL_ARGS_ASSERT_SV_CLEAR;
6003
6004     /* within this loop, sv is the SV currently being freed, and
6005      * iter_sv is the most recent AV or whatever that's being iterated
6006      * over to provide more SVs */
6007
6008     while (sv) {
6009
6010         type = SvTYPE(sv);
6011
6012         assert(SvREFCNT(sv) == 0);
6013         assert(SvTYPE(sv) != (svtype)SVTYPEMASK);
6014
6015         if (type <= SVt_IV) {
6016             /* See the comment in sv.h about the collusion between this
6017              * early return and the overloading of the NULL slots in the
6018              * size table.  */
6019             if (SvROK(sv))
6020                 goto free_rv;
6021             SvFLAGS(sv) &= SVf_BREAK;
6022             SvFLAGS(sv) |= SVTYPEMASK;
6023             goto free_head;
6024         }
6025
6026         assert(!SvOBJECT(sv) || type >= SVt_PVMG); /* objs are always >= MG */
6027
6028         if (type >= SVt_PVMG) {
6029             if (SvOBJECT(sv)) {
6030                 if (!curse(sv, 1)) goto get_next_sv;
6031                 type = SvTYPE(sv); /* destructor may have changed it */
6032             }
6033             /* Free back-references before magic, in case the magic calls
6034              * Perl code that has weak references to sv. */
6035             if (type == SVt_PVHV) {
6036                 Perl_hv_kill_backrefs(aTHX_ MUTABLE_HV(sv));
6037                 if (SvMAGIC(sv))
6038                     mg_free(sv);
6039             }
6040             else if (type == SVt_PVMG && SvPAD_OUR(sv)) {
6041                 SvREFCNT_dec(SvOURSTASH(sv));
6042             } else if (SvMAGIC(sv)) {
6043                 /* Free back-references before other types of magic. */
6044                 sv_unmagic(sv, PERL_MAGIC_backref);
6045                 mg_free(sv);
6046             }
6047             SvMAGICAL_off(sv);
6048             if (type == SVt_PVMG && SvPAD_TYPED(sv))
6049                 SvREFCNT_dec(SvSTASH(sv));
6050         }
6051         switch (type) {
6052             /* case SVt_BIND: */
6053         case SVt_PVIO:
6054             if (IoIFP(sv) &&
6055                 IoIFP(sv) != PerlIO_stdin() &&
6056                 IoIFP(sv) != PerlIO_stdout() &&
6057                 IoIFP(sv) != PerlIO_stderr() &&
6058                 !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6059             {
6060                 io_close(MUTABLE_IO(sv), FALSE);
6061             }
6062             if (IoDIRP(sv) && !(IoFLAGS(sv) & IOf_FAKE_DIRP))
6063                 PerlDir_close(IoDIRP(sv));
6064             IoDIRP(sv) = (DIR*)NULL;
6065             Safefree(IoTOP_NAME(sv));
6066             Safefree(IoFMT_NAME(sv));
6067             Safefree(IoBOTTOM_NAME(sv));
6068             if ((const GV *)sv == PL_statgv)
6069                 PL_statgv = NULL;
6070             goto freescalar;
6071         case SVt_REGEXP:
6072             /* FIXME for plugins */
6073           freeregexp:
6074             pregfree2((REGEXP*) sv);
6075             goto freescalar;
6076         case SVt_PVCV:
6077         case SVt_PVFM:
6078             cv_undef(MUTABLE_CV(sv));
6079             /* If we're in a stash, we don't own a reference to it.
6080              * However it does have a back reference to us, which needs to
6081              * be cleared.  */
6082             if ((stash = CvSTASH(sv)))
6083                 sv_del_backref(MUTABLE_SV(stash), sv);
6084             goto freescalar;
6085         case SVt_PVHV:
6086             if (PL_last_swash_hv == (const HV *)sv) {
6087                 PL_last_swash_hv = NULL;
6088             }
6089             if (HvTOTALKEYS((HV*)sv) > 0) {
6090                 const char *name;
6091                 /* this statement should match the one at the beginning of
6092                  * hv_undef_flags() */
6093                 if (   PL_phase != PERL_PHASE_DESTRUCT
6094                     && (name = HvNAME((HV*)sv)))
6095                 {
6096                     if (PL_stashcache) {
6097                     DEBUG_o(Perl_deb(aTHX_ "sv_clear clearing PL_stashcache for '%"SVf"'\n",
6098                                      sv));
6099                         (void)hv_delete(PL_stashcache, name,
6100                             HvNAMEUTF8((HV*)sv) ? -HvNAMELEN_get((HV*)sv) : HvNAMELEN_get((HV*)sv), G_DISCARD);
6101                     }
6102                     hv_name_set((HV*)sv, NULL, 0, 0);
6103                 }
6104
6105                 /* save old iter_sv in unused SvSTASH field */
6106                 assert(!SvOBJECT(sv));
6107                 SvSTASH(sv) = (HV*)iter_sv;
6108                 iter_sv = sv;
6109
6110                 /* save old hash_index in unused SvMAGIC field */
6111                 assert(!SvMAGICAL(sv));
6112                 assert(!SvMAGIC(sv));
6113                 ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index = hash_index;
6114                 hash_index = 0;
6115
6116                 next_sv = Perl_hfree_next_entry(aTHX_ (HV*)sv, &hash_index);
6117                 goto get_next_sv; /* process this new sv */
6118             }
6119             /* free empty hash */
6120             Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6121             assert(!HvARRAY((HV*)sv));
6122             break;
6123         case SVt_PVAV:
6124             {
6125                 AV* av = MUTABLE_AV(sv);
6126                 if (PL_comppad == av) {
6127                     PL_comppad = NULL;
6128                     PL_curpad = NULL;
6129                 }
6130                 if (AvREAL(av) && AvFILLp(av) > -1) {
6131                     next_sv = AvARRAY(av)[AvFILLp(av)--];
6132                     /* save old iter_sv in top-most slot of AV,
6133                      * and pray that it doesn't get wiped in the meantime */
6134                     AvARRAY(av)[AvMAX(av)] = iter_sv;
6135                     iter_sv = sv;
6136                     goto get_next_sv; /* process this new sv */
6137                 }
6138                 Safefree(AvALLOC(av));
6139             }
6140
6141             break;
6142         case SVt_PVLV:
6143             if (LvTYPE(sv) == 'T') { /* for tie: return HE to pool */
6144                 SvREFCNT_dec(HeKEY_sv((HE*)LvTARG(sv)));
6145                 HeNEXT((HE*)LvTARG(sv)) = PL_hv_fetch_ent_mh;
6146                 PL_hv_fetch_ent_mh = (HE*)LvTARG(sv);
6147             }
6148             else if (LvTYPE(sv) != 't') /* unless tie: unrefcnted fake SV**  */
6149                 SvREFCNT_dec(LvTARG(sv));
6150             if (isREGEXP(sv)) goto freeregexp;
6151         case SVt_PVGV:
6152             if (isGV_with_GP(sv)) {
6153                 if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
6154                    && HvENAME_get(stash))
6155                     mro_method_changed_in(stash);
6156                 gp_free(MUTABLE_GV(sv));
6157                 if (GvNAME_HEK(sv))
6158                     unshare_hek(GvNAME_HEK(sv));
6159                 /* If we're in a stash, we don't own a reference to it.
6160                  * However it does have a back reference to us, which
6161                  * needs to be cleared.  */
6162                 if (!SvVALID(sv) && (stash = GvSTASH(sv)))
6163                         sv_del_backref(MUTABLE_SV(stash), sv);
6164             }
6165             /* FIXME. There are probably more unreferenced pointers to SVs
6166              * in the interpreter struct that we should check and tidy in
6167              * a similar fashion to this:  */
6168             /* See also S_sv_unglob, which does the same thing. */
6169             if ((const GV *)sv == PL_last_in_gv)
6170                 PL_last_in_gv = NULL;
6171             else if ((const GV *)sv == PL_statgv)
6172                 PL_statgv = NULL;
6173         case SVt_PVMG:
6174         case SVt_PVNV:
6175         case SVt_PVIV:
6176         case SVt_PV:
6177           freescalar:
6178             /* Don't bother with SvOOK_off(sv); as we're only going to
6179              * free it.  */
6180             if (SvOOK(sv)) {
6181                 STRLEN offset;
6182                 SvOOK_offset(sv, offset);
6183                 SvPV_set(sv, SvPVX_mutable(sv) - offset);
6184                 /* Don't even bother with turning off the OOK flag.  */
6185             }
6186             if (SvROK(sv)) {
6187             free_rv:
6188                 {
6189                     SV * const target = SvRV(sv);
6190                     if (SvWEAKREF(sv))
6191                         sv_del_backref(target, sv);
6192                     else
6193                         next_sv = target;
6194                 }
6195             }
6196 #ifdef PERL_OLD_COPY_ON_WRITE
6197             else if (SvPVX_const(sv)
6198                      && !(SvTYPE(sv) == SVt_PVIO
6199                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6200             {
6201                 if (SvIsCOW(sv)) {
6202                     if (DEBUG_C_TEST) {
6203                         PerlIO_printf(Perl_debug_log, "Copy on write: clear\n");
6204                         sv_dump(sv);
6205                     }
6206                     if (SvLEN(sv)) {
6207                         sv_release_COW(sv, SvPVX_const(sv), SV_COW_NEXT_SV(sv));
6208                     } else {
6209                         unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6210                     }
6211
6212                     SvFAKE_off(sv);
6213                 } else if (SvLEN(sv)) {
6214                     Safefree(SvPVX_mutable(sv));
6215                 }
6216             }
6217 #else
6218             else if (SvPVX_const(sv) && SvLEN(sv)
6219                      && !(SvTYPE(sv) == SVt_PVIO
6220                      && !(IoFLAGS(sv) & IOf_FAKE_DIRP)))
6221                 Safefree(SvPVX_mutable(sv));
6222             else if (SvPVX_const(sv) && SvIsCOW(sv)) {
6223                 unshare_hek(SvSHARED_HEK_FROM_PV(SvPVX_const(sv)));
6224                 SvFAKE_off(sv);
6225             }
6226 #endif
6227             break;
6228         case SVt_NV:
6229             break;
6230         }
6231
6232       free_body:
6233
6234         SvFLAGS(sv) &= SVf_BREAK;
6235         SvFLAGS(sv) |= SVTYPEMASK;
6236
6237         sv_type_details = bodies_by_type + type;
6238         if (sv_type_details->arena) {
6239             del_body(((char *)SvANY(sv) + sv_type_details->offset),
6240                      &PL_body_roots[type]);
6241         }
6242         else if (sv_type_details->body_size) {
6243             safefree(SvANY(sv));
6244         }
6245
6246       free_head:
6247         /* caller is responsible for freeing the head of the original sv */
6248         if (sv != orig_sv && !SvREFCNT(sv))
6249             del_SV(sv);
6250
6251         /* grab and free next sv, if any */
6252       get_next_sv:
6253         while (1) {
6254             sv = NULL;
6255             if (next_sv) {
6256                 sv = next_sv;
6257                 next_sv = NULL;
6258             }
6259             else if (!iter_sv) {
6260                 break;
6261             } else if (SvTYPE(iter_sv) == SVt_PVAV) {
6262                 AV *const av = (AV*)iter_sv;
6263                 if (AvFILLp(av) > -1) {
6264                     sv = AvARRAY(av)[AvFILLp(av)--];
6265                 }
6266                 else { /* no more elements of current AV to free */
6267                     sv = iter_sv;
6268                     type = SvTYPE(sv);
6269                     /* restore previous value, squirrelled away */
6270                     iter_sv = AvARRAY(av)[AvMAX(av)];
6271                     Safefree(AvALLOC(av));
6272                     goto free_body;
6273                 }
6274             } else if (SvTYPE(iter_sv) == SVt_PVHV) {
6275                 sv = Perl_hfree_next_entry(aTHX_ (HV*)iter_sv, &hash_index);
6276                 if (!sv && !HvTOTALKEYS((HV *)iter_sv)) {
6277                     /* no more elements of current HV to free */
6278                     sv = iter_sv;
6279                     type = SvTYPE(sv);
6280                     /* Restore previous values of iter_sv and hash_index,
6281                      * squirrelled away */
6282                     assert(!SvOBJECT(sv));
6283                     iter_sv = (SV*)SvSTASH(sv);
6284                     assert(!SvMAGICAL(sv));
6285                     hash_index = ((XPVMG*) SvANY(sv))->xmg_u.xmg_hash_index;
6286 #ifdef DEBUGGING
6287                     /* perl -DA does not like rubbish in SvMAGIC. */
6288                     SvMAGIC_set(sv, 0);
6289 #endif
6290
6291                     /* free any remaining detritus from the hash struct */
6292                     Perl_hv_undef_flags(aTHX_ MUTABLE_HV(sv), HV_NAME_SETALL);
6293                     assert(!HvARRAY((HV*)sv));
6294                     goto free_body;
6295                 }
6296             }
6297
6298             /* unrolled SvREFCNT_dec and sv_free2 follows: */
6299
6300             if (!sv)
6301                 continue;
6302             if (!SvREFCNT(sv)) {
6303                 sv_free(sv);
6304                 continue;
6305             }
6306             if (--(SvREFCNT(sv)))
6307                 continue;
6308 #ifdef DEBUGGING
6309             if (SvTEMP(sv)) {
6310                 Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6311                          "Attempt to free temp prematurely: SV 0x%"UVxf
6312                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6313                 continue;
6314             }
6315 #endif
6316             if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6317                 /* make sure SvREFCNT(sv)==0 happens very seldom */
6318                 SvREFCNT(sv) = (~(U32)0)/2;
6319                 continue;
6320             }
6321             break;
6322         } /* while 1 */
6323
6324     } /* while sv */
6325 }
6326
6327 /* This routine curses the sv itself, not the object referenced by sv. So
6328    sv does not have to be ROK. */
6329
6330 static bool
6331 S_curse(pTHX_ SV * const sv, const bool check_refcnt) {
6332     dVAR;
6333
6334     PERL_ARGS_ASSERT_CURSE;
6335     assert(SvOBJECT(sv));
6336
6337     if (PL_defstash &&  /* Still have a symbol table? */
6338         SvDESTROYABLE(sv))
6339     {
6340         dSP;
6341         HV* stash;
6342         do {
6343             CV* destructor;
6344             stash = SvSTASH(sv);
6345             destructor = StashHANDLER(stash,DESTROY);
6346             if (destructor
6347                 /* A constant subroutine can have no side effects, so
6348                    don't bother calling it.  */
6349                 && !CvCONST(destructor)
6350                 /* Don't bother calling an empty destructor or one that
6351                    returns immediately. */
6352                 && (CvISXSUB(destructor)
6353                 || (CvSTART(destructor)
6354                     && (CvSTART(destructor)->op_next->op_type
6355                                         != OP_LEAVESUB)
6356                     && (CvSTART(destructor)->op_next->op_type
6357                                         != OP_PUSHMARK
6358                         || CvSTART(destructor)->op_next->op_next->op_type
6359                                         != OP_RETURN
6360                        )
6361                    ))
6362                )
6363             {
6364                 SV* const tmpref = newRV(sv);
6365                 SvREADONLY_on(tmpref); /* DESTROY() could be naughty */
6366                 ENTER;
6367                 PUSHSTACKi(PERLSI_DESTROY);
6368                 EXTEND(SP, 2);
6369                 PUSHMARK(SP);
6370                 PUSHs(tmpref);
6371                 PUTBACK;
6372                 call_sv(MUTABLE_SV(destructor),
6373                             G_DISCARD|G_EVAL|G_KEEPERR|G_VOID);
6374                 POPSTACK;
6375                 SPAGAIN;
6376                 LEAVE;
6377                 if(SvREFCNT(tmpref) < 2) {
6378                     /* tmpref is not kept alive! */
6379                     SvREFCNT(sv)--;
6380                     SvRV_set(tmpref, NULL);
6381                     SvROK_off(tmpref);
6382                 }
6383                 SvREFCNT_dec(tmpref);
6384             }
6385         } while (SvOBJECT(sv) && SvSTASH(sv) != stash);
6386
6387
6388         if (check_refcnt && SvREFCNT(sv)) {
6389             if (PL_in_clean_objs)
6390                 Perl_croak(aTHX_
6391                   "DESTROY created new reference to dead object '%"HEKf"'",
6392                    HEKfARG(HvNAME_HEK(stash)));
6393             /* DESTROY gave object new lease on life */
6394             return FALSE;
6395         }
6396     }
6397
6398     if (SvOBJECT(sv)) {
6399         SvREFCNT_dec(SvSTASH(sv)); /* possibly of changed persuasion */
6400         SvOBJECT_off(sv);       /* Curse the object. */
6401         if (SvTYPE(sv) != SVt_PVIO)
6402             --PL_sv_objcount;/* XXX Might want something more general */
6403     }
6404     return TRUE;
6405 }
6406
6407 /*
6408 =for apidoc sv_newref
6409
6410 Increment an SV's reference count.  Use the C<SvREFCNT_inc()> wrapper
6411 instead.
6412
6413 =cut
6414 */
6415
6416 SV *
6417 Perl_sv_newref(pTHX_ SV *const sv)
6418 {
6419     PERL_UNUSED_CONTEXT;
6420     if (sv)
6421         (SvREFCNT(sv))++;
6422     return sv;
6423 }
6424
6425 /*
6426 =for apidoc sv_free
6427
6428 Decrement an SV's reference count, and if it drops to zero, call
6429 C<sv_clear> to invoke destructors and free up any memory used by
6430 the body; finally, deallocate the SV's head itself.
6431 Normally called via a wrapper macro C<SvREFCNT_dec>.
6432
6433 =cut
6434 */
6435
6436 void
6437 Perl_sv_free(pTHX_ SV *const sv)
6438 {
6439     dVAR;
6440     if (!sv)
6441         return;
6442     if (SvREFCNT(sv) == 0) {
6443         if (SvFLAGS(sv) & SVf_BREAK)
6444             /* this SV's refcnt has been artificially decremented to
6445              * trigger cleanup */
6446             return;
6447         if (PL_in_clean_all) /* All is fair */
6448             return;
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         if (ckWARN_d(WARN_INTERNAL)) {
6455 #ifdef DEBUG_LEAKING_SCALARS_FORK_DUMP
6456             Perl_dump_sv_child(aTHX_ sv);
6457 #else
6458   #ifdef DEBUG_LEAKING_SCALARS
6459             sv_dump(sv);
6460   #endif
6461 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6462             if (PL_warnhook == PERL_WARNHOOK_FATAL
6463                 || ckDEAD(packWARN(WARN_INTERNAL))) {
6464                 /* Don't let Perl_warner cause us to escape our fate:  */
6465                 abort();
6466             }
6467 #endif
6468             /* This may not return:  */
6469             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
6470                         "Attempt to free unreferenced scalar: SV 0x%"UVxf
6471                         pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6472 #endif
6473         }
6474 #ifdef DEBUG_LEAKING_SCALARS_ABORT
6475         abort();
6476 #endif
6477         return;
6478     }
6479     if (--(SvREFCNT(sv)) > 0)
6480         return;
6481     Perl_sv_free2(aTHX_ sv);
6482 }
6483
6484 void
6485 Perl_sv_free2(pTHX_ SV *const sv)
6486 {
6487     dVAR;
6488
6489     PERL_ARGS_ASSERT_SV_FREE2;
6490
6491 #ifdef DEBUGGING
6492     if (SvTEMP(sv)) {
6493         Perl_ck_warner_d(aTHX_ packWARN(WARN_DEBUGGING),
6494                          "Attempt to free temp prematurely: SV 0x%"UVxf
6495                          pTHX__FORMAT, PTR2UV(sv) pTHX__VALUE);
6496         return;
6497     }
6498 #endif
6499     if (SvREADONLY(sv) && SvIMMORTAL(sv)) {
6500         /* make sure SvREFCNT(sv)==0 happens very seldom */
6501         SvREFCNT(sv) = (~(U32)0)/2;
6502         return;
6503     }
6504     sv_clear(sv);
6505     if (! SvREFCNT(sv))
6506         del_SV(sv);
6507 }
6508
6509 /*
6510 =for apidoc sv_len
6511
6512 Returns the length of the string in the SV.  Handles magic and type
6513 coercion and sets the UTF8 flag appropriately.  See also C<SvCUR>, which
6514 gives raw access to the xpv_cur slot.
6515
6516 =cut
6517 */
6518
6519 STRLEN
6520 Perl_sv_len(pTHX_ register SV *const sv)
6521 {
6522     STRLEN len;
6523
6524     if (!sv)
6525         return 0;
6526
6527     (void)SvPV_const(sv, len);
6528     return len;
6529 }
6530
6531 /*
6532 =for apidoc sv_len_utf8
6533
6534 Returns the number of characters in the string in an SV, counting wide
6535 UTF-8 bytes as a single character.  Handles magic and type coercion.
6536
6537 =cut
6538 */
6539
6540 /*
6541  * The length is cached in PERL_MAGIC_utf8, in the mg_len field.  Also the
6542  * mg_ptr is used, by sv_pos_u2b() and sv_pos_b2u() - see the comments below.
6543  * (Note that the mg_len is not the length of the mg_ptr field.
6544  * This allows the cache to store the character length of the string without
6545  * needing to malloc() extra storage to attach to the mg_ptr.)
6546  *
6547  */
6548
6549 STRLEN
6550 Perl_sv_len_utf8(pTHX_ register SV *const sv)
6551 {
6552     if (!sv)
6553         return 0;
6554
6555     SvGETMAGIC(sv);
6556     return sv_len_utf8_nomg(sv);
6557 }
6558
6559 STRLEN
6560 Perl_sv_len_utf8_nomg(pTHX_ SV * const sv)
6561 {
6562     dVAR;
6563     STRLEN len;
6564     const U8 *s = (U8*)SvPV_nomg_const(sv, len);
6565
6566     PERL_ARGS_ASSERT_SV_LEN_UTF8_NOMG;
6567
6568     if (PL_utf8cache && SvUTF8(sv)) {
6569             STRLEN ulen;
6570             MAGIC *mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_utf8) : NULL;
6571
6572             if (mg && (mg->mg_len != -1 || mg->mg_ptr)) {
6573                 if (mg->mg_len != -1)
6574                     ulen = mg->mg_len;
6575                 else {
6576                     /* We can use the offset cache for a headstart.
6577                        The longer value is stored in the first pair.  */
6578                     STRLEN *cache = (STRLEN *) mg->mg_ptr;
6579
6580                     ulen = cache[0] + Perl_utf8_length(aTHX_ s + cache[1],
6581                                                        s + len);
6582                 }
6583                 
6584                 if (PL_utf8cache < 0) {
6585                     const STRLEN real = Perl_utf8_length(aTHX_ s, s + len);
6586                     assert_uft8_cache_coherent("sv_len_utf8", ulen, real, sv);
6587                 }
6588             }
6589             else {
6590                 ulen = Perl_utf8_length(aTHX_ s, s + len);
6591                 utf8_mg_len_cache_update(sv, &mg, ulen);
6592             }
6593             return ulen;
6594     }
6595     return SvUTF8(sv) ? Perl_utf8_length(aTHX_ s, s + len) : len;
6596 }
6597
6598 /* Walk forwards to find the byte corresponding to the passed in UTF-8
6599    offset.  */
6600 static STRLEN
6601 S_sv_pos_u2b_forwards(const U8 *const start, const U8 *const send,
6602                       STRLEN *const uoffset_p, bool *const at_end)
6603 {
6604     const U8 *s = start;
6605     STRLEN uoffset = *uoffset_p;
6606
6607     PERL_ARGS_ASSERT_SV_POS_U2B_FORWARDS;
6608
6609     while (s < send && uoffset) {
6610         --uoffset;
6611         s += UTF8SKIP(s);
6612     }
6613     if (s == send) {
6614         *at_end = TRUE;
6615     }
6616     else if (s > send) {
6617         *at_end = TRUE;
6618         /* This is the existing behaviour. Possibly it should be a croak, as
6619            it's actually a bounds error  */
6620         s = send;
6621     }
6622     *uoffset_p -= uoffset;
6623     return s - start;
6624 }
6625
6626 /* Given the length of the string in both bytes and UTF-8 characters, decide
6627    whether to walk forwards or backwards to find the byte corresponding to
6628    the passed in UTF-8 offset.  */
6629 static STRLEN
6630 S_sv_pos_u2b_midway(const U8 *const start, const U8 *send,
6631                     STRLEN uoffset, const STRLEN uend)
6632 {
6633     STRLEN backw = uend - uoffset;
6634
6635     PERL_ARGS_ASSERT_SV_POS_U2B_MIDWAY;
6636
6637     if (uoffset < 2 * backw) {
6638         /* The assumption is that going forwards is twice the speed of going
6639            forward (that's where the 2 * backw comes from).
6640            (The real figure of course depends on the UTF-8 data.)  */
6641         const U8 *s = start;
6642
6643         while (s < send && uoffset--)
6644             s += UTF8SKIP(s);
6645         assert (s <= send);
6646         if (s > send)
6647             s = send;
6648         return s - start;
6649     }
6650
6651     while (backw--) {
6652         send--;
6653         while (UTF8_IS_CONTINUATION(*send))
6654             send--;
6655     }
6656     return send - start;
6657 }
6658
6659 /* For the string representation of the given scalar, find the byte
6660    corresponding to the passed in UTF-8 offset.  uoffset0 and boffset0
6661    give another position in the string, *before* the sought offset, which
6662    (which is always true, as 0, 0 is a valid pair of positions), which should
6663    help reduce the amount of linear searching.
6664    If *mgp is non-NULL, it should point to the UTF-8 cache magic, which
6665    will be used to reduce the amount of linear searching. The cache will be
6666    created if necessary, and the found value offered to it for update.  */
6667 static STRLEN
6668 S_sv_pos_u2b_cached(pTHX_ SV *const sv, MAGIC **const mgp, const U8 *const start,
6669                     const U8 *const send, STRLEN uoffset,
6670                     STRLEN uoffset0, STRLEN boffset0)
6671 {
6672     STRLEN boffset = 0; /* Actually always set, but let's keep gcc happy.  */
6673     bool found = FALSE;
6674     bool at_end = FALSE;
6675
6676     PERL_ARGS_ASSERT_SV_POS_U2B_CACHED;
6677
6678     assert (uoffset >= uoffset0);
6679
6680     if (!uoffset)
6681         return 0;
6682
6683     if (!SvREADONLY(sv) && !SvGMAGICAL(sv) && SvPOK(sv)
6684         && PL_utf8cache
6685         && (*mgp || (SvTYPE(sv) >= SVt_PVMG &&
6686                      (*mgp = mg_find(sv, PERL_MAGIC_utf8))))) {
6687         if ((*mgp)->mg_ptr) {
6688             STRLEN *cache = (STRLEN *) (*mgp)->mg_ptr;
6689             if (cache[0] == uoffset) {
6690                 /* An exact match. */
6691                 return cache[1];
6692             }
6693             if (cache[2] == uoffset) {
6694                 /* An exact match. */
6695                 return cache[3];
6696             }
6697
6698             if (cache[0] < uoffset) {
6699                 /* The cache already knows part of the way.   */
6700                 if (cache[0] > uoffset0) {
6701                     /* The cache knows more than the passed in pair  */
6702                     uoffset0 = cache[0];
6703                     boffset0 = cache[1];
6704                 }
6705                 if ((*mgp)->mg_len != -1) {
6706                     /* And we know the end too.  */
6707                     boffset = boffset0
6708                         + sv_pos_u2b_midway(start + boffset0, send,
6709                                               uoffset - uoffset0,
6710                                               (*mgp)->mg_len - uoffset0);
6711                 } else {
6712                     uoffset -= uoffset0;
6713                     boffset = boffset0
6714                         + sv_pos_u2b_forwards(start + boffset0,
6715                                               send, &uoffset, &at_end);
6716                     uoffset += uoffset0;
6717                 }
6718             }
6719             else if (cache[2] < uoffset) {
6720                 /* We're between the two cache entries.  */
6721                 if (cache[2] > uoffset0) {
6722                     /* and the cache knows more than the passed in pair  */
6723                     uoffset0 = cache[2];
6724                     boffset0 = cache[3];
6725                 }
6726
6727                 boffset = boffset0
6728                     + sv_pos_u2b_midway(start + boffset0,
6729                                           start + cache[1],
6730                                           uoffset - uoffset0,
6731                                           cache[0] - uoffset0);
6732             } else {
6733                 boffset = boffset0
6734                     + sv_pos_u2b_midway(start + boffset0,
6735                                           start + cache[3],
6736                                           uoffset - uoffset0,
6737                                           cache[2] - uoffset0);
6738             }
6739             found = TRUE;
6740         }
6741         else if ((*mgp)->mg_len != -1) {
6742             /* If we can take advantage of a passed in offset, do so.  */
6743             /* In fact, offset0 is either 0, or less than offset, so don't
6744                need to worry about the other possibility.  */
6745             boffset = boffset0
6746                 + sv_pos_u2b_midway(start + boffset0, send,
6747                                       uoffset - uoffset0,
6748                                       (*mgp)->mg_len - uoffset0);
6749             found = TRUE;
6750         }
6751     }
6752
6753     if (!found || PL_utf8cache < 0) {
6754         STRLEN real_boffset;
6755         uoffset -= uoffset0;
6756         real_boffset = boffset0 + sv_pos_u2b_forwards(start + boffset0,
6757                                                       send, &uoffset, &at_end);
6758         uoffset += uoffset0;
6759
6760         if (found && PL_utf8cache < 0)
6761             assert_uft8_cache_coherent("sv_pos_u2b_cache", boffset,
6762                                        real_boffset, sv);
6763         boffset = real_boffset;
6764     }
6765
6766     if (PL_utf8cache && !SvGMAGICAL(sv) && SvPOK(sv)) {
6767         if (at_end)
6768             utf8_mg_len_cache_update(sv, mgp, uoffset);
6769         else
6770             utf8_mg_pos_cache_update(sv, mgp, boffset, uoffset, send - start);
6771     }
6772     return boffset;
6773 }
6774
6775
6776 /*
6777 =for apidoc sv_pos_u2b_flags
6778
6779 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6780 the start of the string, to a count of the equivalent number of bytes; if
6781 lenp is non-zero, it does the same to lenp, but this time starting from
6782 the offset, rather than from the start
6783 of the string.  Handles type coercion.
6784 I<flags> is passed to C<SvPV_flags>, and usually should be
6785 C<SV_GMAGIC|SV_CONST_RETURN> to handle magic.
6786
6787 =cut
6788 */
6789
6790 /*
6791  * sv_pos_u2b_flags() uses, like sv_pos_b2u(), the mg_ptr of the potential
6792  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6793  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6794  *
6795  */
6796
6797 STRLEN
6798 Perl_sv_pos_u2b_flags(pTHX_ SV *const sv, STRLEN uoffset, STRLEN *const lenp,
6799                       U32 flags)
6800 {
6801     const U8 *start;
6802     STRLEN len;
6803     STRLEN boffset;
6804
6805     PERL_ARGS_ASSERT_SV_POS_U2B_FLAGS;
6806
6807     start = (U8*)SvPV_flags(sv, len, flags);
6808     if (len) {
6809         const U8 * const send = start + len;
6810         MAGIC *mg = NULL;
6811         boffset = sv_pos_u2b_cached(sv, &mg, start, send, uoffset, 0, 0);
6812
6813         if (lenp
6814             && *lenp /* don't bother doing work for 0, as its bytes equivalent
6815                         is 0, and *lenp is already set to that.  */) {
6816             /* Convert the relative offset to absolute.  */
6817             const STRLEN uoffset2 = uoffset + *lenp;
6818             const STRLEN boffset2
6819                 = sv_pos_u2b_cached(sv, &mg, start, send, uoffset2,
6820                                       uoffset, boffset) - boffset;
6821
6822             *lenp = boffset2;
6823         }
6824     } else {
6825         if (lenp)
6826             *lenp = 0;
6827         boffset = 0;
6828     }
6829
6830     return boffset;
6831 }
6832
6833 /*
6834 =for apidoc sv_pos_u2b
6835
6836 Converts the value pointed to by offsetp from a count of UTF-8 chars from
6837 the start of the string, to a count of the equivalent number of bytes; if
6838 lenp is non-zero, it does the same to lenp, but this time starting from
6839 the offset, rather than from the start of the string.  Handles magic and
6840 type coercion.
6841
6842 Use C<sv_pos_u2b_flags> in preference, which correctly handles strings longer
6843 than 2Gb.
6844
6845 =cut
6846 */
6847
6848 /*
6849  * sv_pos_u2b() uses, like sv_pos_b2u(), the mg_ptr of the potential
6850  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
6851  * byte offsets.  See also the comments of S_utf8_mg_pos_cache_update().
6852  *
6853  */
6854
6855 /* This function is subject to size and sign problems */
6856
6857 void
6858 Perl_sv_pos_u2b(pTHX_ register SV *const sv, I32 *const offsetp, I32 *const lenp)
6859 {
6860     PERL_ARGS_ASSERT_SV_POS_U2B;
6861
6862     if (lenp) {
6863         STRLEN ulen = (STRLEN)*lenp;
6864         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, &ulen,
6865                                          SV_GMAGIC|SV_CONST_RETURN);
6866         *lenp = (I32)ulen;
6867     } else {
6868         *offsetp = (I32)sv_pos_u2b_flags(sv, (STRLEN)*offsetp, NULL,
6869                                          SV_GMAGIC|SV_CONST_RETURN);
6870     }
6871 }
6872
6873 static void
6874 S_utf8_mg_len_cache_update(pTHX_ SV *const sv, MAGIC **const mgp,
6875                            const STRLEN ulen)
6876 {
6877     PERL_ARGS_ASSERT_UTF8_MG_LEN_CACHE_UPDATE;
6878     if (SvREADONLY(sv) || SvGMAGICAL(sv) || !SvPOK(sv))
6879         return;
6880
6881     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6882                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6883         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, &PL_vtbl_utf8, 0, 0);
6884     }
6885     assert(*mgp);
6886
6887     (*mgp)->mg_len = ulen;
6888     /* For now, treat "overflowed" as "still unknown". See RT #72924.  */
6889     if (ulen != (STRLEN) (*mgp)->mg_len)
6890         (*mgp)->mg_len = -1;
6891 }
6892
6893 /* Create and update the UTF8 magic offset cache, with the proffered utf8/
6894    byte length pairing. The (byte) length of the total SV is passed in too,
6895    as blen, because for some (more esoteric) SVs, the call to SvPV_const()
6896    may not have updated SvCUR, so we can't rely on reading it directly.
6897
6898    The proffered utf8/byte length pairing isn't used if the cache already has
6899    two pairs, and swapping either for the proffered pair would increase the
6900    RMS of the intervals between known byte offsets.
6901
6902    The cache itself consists of 4 STRLEN values
6903    0: larger UTF-8 offset
6904    1: corresponding byte offset
6905    2: smaller UTF-8 offset
6906    3: corresponding byte offset
6907
6908    Unused cache pairs have the value 0, 0.
6909    Keeping the cache "backwards" means that the invariant of
6910    cache[0] >= cache[2] is maintained even with empty slots, which means that
6911    the code that uses it doesn't need to worry if only 1 entry has actually
6912    been set to non-zero.  It also makes the "position beyond the end of the
6913    cache" logic much simpler, as the first slot is always the one to start
6914    from.   
6915 */
6916 static void
6917 S_utf8_mg_pos_cache_update(pTHX_ SV *const sv, MAGIC **const mgp, const STRLEN byte,
6918                            const STRLEN utf8, const STRLEN blen)
6919 {
6920     STRLEN *cache;
6921
6922     PERL_ARGS_ASSERT_UTF8_MG_POS_CACHE_UPDATE;
6923
6924     if (SvREADONLY(sv))
6925         return;
6926
6927     if (!*mgp && (SvTYPE(sv) < SVt_PVMG ||
6928                   !(*mgp = mg_find(sv, PERL_MAGIC_utf8)))) {
6929         *mgp = sv_magicext(sv, 0, PERL_MAGIC_utf8, (MGVTBL*)&PL_vtbl_utf8, 0,
6930                            0);
6931         (*mgp)->mg_len = -1;
6932     }
6933     assert(*mgp);
6934
6935     if (!(cache = (STRLEN *)(*mgp)->mg_ptr)) {
6936         Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
6937         (*mgp)->mg_ptr = (char *) cache;
6938     }
6939     assert(cache);
6940
6941     if (PL_utf8cache < 0 && SvPOKp(sv)) {
6942         /* SvPOKp() because it's possible that sv has string overloading, and
6943            therefore is a reference, hence SvPVX() is actually a pointer.
6944            This cures the (very real) symptoms of RT 69422, but I'm not actually
6945            sure whether we should even be caching the results of UTF-8
6946            operations on overloading, given that nothing stops overloading
6947            returning a different value every time it's called.  */
6948         const U8 *start = (const U8 *) SvPVX_const(sv);
6949         const STRLEN realutf8 = utf8_length(start, start + byte);
6950
6951         assert_uft8_cache_coherent("utf8_mg_pos_cache_update", utf8, realutf8,
6952                                    sv);
6953     }
6954
6955     /* Cache is held with the later position first, to simplify the code
6956        that deals with unbounded ends.  */
6957        
6958     ASSERT_UTF8_CACHE(cache);
6959     if (cache[1] == 0) {
6960         /* Cache is totally empty  */
6961         cache[0] = utf8;
6962         cache[1] = byte;
6963     } else if (cache[3] == 0) {
6964         if (byte > cache[1]) {
6965             /* New one is larger, so goes first.  */
6966             cache[2] = cache[0];
6967             cache[3] = cache[1];
6968             cache[0] = utf8;
6969             cache[1] = byte;
6970         } else {
6971             cache[2] = utf8;
6972             cache[3] = byte;
6973         }
6974     } else {
6975 #define THREEWAY_SQUARE(a,b,c,d) \
6976             ((float)((d) - (c))) * ((float)((d) - (c))) \
6977             + ((float)((c) - (b))) * ((float)((c) - (b))) \
6978                + ((float)((b) - (a))) * ((float)((b) - (a)))
6979
6980         /* Cache has 2 slots in use, and we know three potential pairs.
6981            Keep the two that give the lowest RMS distance. Do the
6982            calculation in bytes simply because we always know the byte
6983            length.  squareroot has the same ordering as the positive value,
6984            so don't bother with the actual square root.  */
6985         if (byte > cache[1]) {
6986             /* New position is after the existing pair of pairs.  */
6987             const float keep_earlier
6988                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
6989             const float keep_later
6990                 = THREEWAY_SQUARE(0, cache[1], byte, blen);
6991
6992             if (keep_later < keep_earlier) {
6993                 cache[2] = cache[0];
6994                 cache[3] = cache[1];
6995                 cache[0] = utf8;
6996                 cache[1] = byte;
6997             }
6998             else {
6999                 cache[0] = utf8;
7000                 cache[1] = byte;
7001             }
7002         }
7003         else if (byte > cache[3]) {
7004             /* New position is between the existing pair of pairs.  */
7005             const float keep_earlier
7006                 = THREEWAY_SQUARE(0, cache[3], byte, blen);
7007             const float keep_later
7008                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
7009
7010             if (keep_later < keep_earlier) {
7011                 cache[2] = utf8;
7012                 cache[3] = byte;
7013             }
7014             else {
7015                 cache[0] = utf8;
7016                 cache[1] = byte;
7017             }
7018         }
7019         else {
7020             /* New position is before the existing pair of pairs.  */
7021             const float keep_earlier
7022                 = THREEWAY_SQUARE(0, byte, cache[3], blen);
7023             const float keep_later
7024                 = THREEWAY_SQUARE(0, byte, cache[1], blen);
7025
7026             if (keep_later < keep_earlier) {
7027                 cache[2] = utf8;
7028                 cache[3] = byte;
7029             }
7030             else {
7031                 cache[0] = cache[2];
7032                 cache[1] = cache[3];
7033                 cache[2] = utf8;
7034                 cache[3] = byte;
7035             }
7036         }
7037     }
7038     ASSERT_UTF8_CACHE(cache);
7039 }
7040
7041 /* We already know all of the way, now we may be able to walk back.  The same
7042    assumption is made as in S_sv_pos_u2b_midway(), namely that walking
7043    backward is half the speed of walking forward. */
7044 static STRLEN
7045 S_sv_pos_b2u_midway(pTHX_ const U8 *const s, const U8 *const target,
7046                     const U8 *end, STRLEN endu)
7047 {
7048     const STRLEN forw = target - s;
7049     STRLEN backw = end - target;
7050
7051     PERL_ARGS_ASSERT_SV_POS_B2U_MIDWAY;
7052
7053     if (forw < 2 * backw) {
7054         return utf8_length(s, target);
7055     }
7056
7057     while (end > target) {
7058         end--;
7059         while (UTF8_IS_CONTINUATION(*end)) {
7060             end--;
7061         }
7062         endu--;
7063     }
7064     return endu;
7065 }
7066
7067 /*
7068 =for apidoc sv_pos_b2u
7069
7070 Converts the value pointed to by offsetp from a count of bytes from the
7071 start of the string, to a count of the equivalent number of UTF-8 chars.
7072 Handles magic and type coercion.
7073
7074 =cut
7075 */
7076
7077 /*
7078  * sv_pos_b2u() uses, like sv_pos_u2b(), the mg_ptr of the potential
7079  * PERL_MAGIC_utf8 of the sv to store the mapping between UTF-8 and
7080  * byte offsets.
7081  *
7082  */
7083 void
7084 Perl_sv_pos_b2u(pTHX_ register SV *const sv, I32 *const offsetp)
7085 {
7086     const U8* s;
7087     const STRLEN byte = *offsetp;
7088     STRLEN len = 0; /* Actually always set, but let's keep gcc happy.  */
7089     STRLEN blen;
7090     MAGIC* mg = NULL;
7091     const U8* send;
7092     bool found = FALSE;
7093
7094     PERL_ARGS_ASSERT_SV_POS_B2U;
7095
7096     if (!sv)
7097         return;
7098
7099     s = (const U8*)SvPV_const(sv, blen);
7100
7101     if (blen < byte)
7102         Perl_croak(aTHX_ "panic: sv_pos_b2u: bad byte offset, blen=%"UVuf
7103                    ", byte=%"UVuf, (UV)blen, (UV)byte);
7104
7105     send = s + byte;
7106
7107     if (!SvREADONLY(sv)
7108         && PL_utf8cache
7109         && SvTYPE(sv) >= SVt_PVMG
7110         && (mg = mg_find(sv, PERL_MAGIC_utf8)))
7111     {
7112         if (mg->mg_ptr) {
7113             STRLEN * const cache = (STRLEN *) mg->mg_ptr;
7114             if (cache[1] == byte) {
7115                 /* An exact match. */
7116                 *offsetp = cache[0];
7117                 return;
7118             }
7119             if (cache[3] == byte) {
7120                 /* An exact match. */
7121                 *offsetp = cache[2];
7122                 return;
7123             }
7124
7125             if (cache[1] < byte) {
7126                 /* We already know part of the way. */
7127                 if (mg->mg_len != -1) {
7128                     /* Actually, we know the end too.  */
7129                     len = cache[0]
7130                         + S_sv_pos_b2u_midway(aTHX_ s + cache[1], send,
7131                                               s + blen, mg->mg_len - cache[0]);
7132                 } else {
7133                     len = cache[0] + utf8_length(s + cache[1], send);
7134                 }
7135             }
7136             else if (cache[3] < byte) {
7137                 /* We're between the two cached pairs, so we do the calculation
7138                    offset by the byte/utf-8 positions for the earlier pair,
7139                    then add the utf-8 characters from the string start to
7140                    there.  */
7141                 len = S_sv_pos_b2u_midway(aTHX_ s + cache[3], send,
7142                                           s + cache[1], cache[0] - cache[2])
7143                     + cache[2];
7144
7145             }
7146             else { /* cache[3] > byte */
7147                 len = S_sv_pos_b2u_midway(aTHX_ s, send, s + cache[3],
7148                                           cache[2]);
7149
7150             }
7151             ASSERT_UTF8_CACHE(cache);
7152             found = TRUE;
7153         } else if (mg->mg_len != -1) {
7154             len = S_sv_pos_b2u_midway(aTHX_ s, send, s + blen, mg->mg_len);
7155             found = TRUE;
7156         }
7157     }
7158     if (!found || PL_utf8cache < 0) {
7159         const STRLEN real_len = utf8_length(s, send);
7160
7161         if (found && PL_utf8cache < 0)
7162             assert_uft8_cache_coherent("sv_pos_b2u", len, real_len, sv);
7163         len = real_len;
7164     }
7165     *offsetp = len;
7166
7167     if (PL_utf8cache) {
7168         if (blen == byte)
7169             utf8_mg_len_cache_update(sv, &mg, len);
7170         else
7171             utf8_mg_pos_cache_update(sv, &mg, byte, len, blen);
7172     }
7173 }
7174
7175 static void
7176 S_assert_uft8_cache_coherent(pTHX_ const char *const func, STRLEN from_cache,
7177                              STRLEN real, SV *const sv)
7178 {
7179     PERL_ARGS_ASSERT_ASSERT_UFT8_CACHE_COHERENT;
7180
7181     /* As this is debugging only code, save space by keeping this test here,
7182        rather than inlining it in all the callers.  */
7183     if (from_cache == real)
7184         return;
7185
7186     /* Need to turn the assertions off otherwise we may recurse infinitely
7187        while printing error messages.  */
7188     SAVEI8(PL_utf8cache);
7189     PL_utf8cache = 0;
7190     Perl_croak(aTHX_ "panic: %s cache %"UVuf" real %"UVuf" for %"SVf,
7191                func, (UV) from_cache, (UV) real, SVfARG(sv));
7192 }
7193
7194 /*
7195 =for apidoc sv_eq
7196
7197 Returns a boolean indicating whether the strings in the two SVs are
7198 identical.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7199 coerce its args to strings if necessary.
7200
7201 =for apidoc sv_eq_flags
7202
7203 Returns a boolean indicating whether the strings in the two SVs are
7204 identical.  Is UTF-8 and 'use bytes' aware and coerces its args to strings
7205 if necessary.  If the flags include SV_GMAGIC, it handles get-magic, too.
7206
7207 =cut
7208 */
7209
7210 I32
7211 Perl_sv_eq_flags(pTHX_ register SV *sv1, register SV *sv2, const U32 flags)
7212 {
7213     dVAR;
7214     const char *pv1;
7215     STRLEN cur1;
7216     const char *pv2;
7217     STRLEN cur2;
7218     I32  eq     = 0;
7219     SV* svrecode = NULL;
7220
7221     if (!sv1) {
7222         pv1 = "";
7223         cur1 = 0;
7224     }
7225     else {
7226         /* if pv1 and pv2 are the same, second SvPV_const call may
7227          * invalidate pv1 (if we are handling magic), so we may need to
7228          * make a copy */
7229         if (sv1 == sv2 && flags & SV_GMAGIC
7230          && (SvTHINKFIRST(sv1) || SvGMAGICAL(sv1))) {
7231             pv1 = SvPV_const(sv1, cur1);
7232             sv1 = newSVpvn_flags(pv1, cur1, SVs_TEMP | SvUTF8(sv2));
7233         }
7234         pv1 = SvPV_flags_const(sv1, cur1, flags);
7235     }
7236
7237     if (!sv2){
7238         pv2 = "";
7239         cur2 = 0;
7240     }
7241     else
7242         pv2 = SvPV_flags_const(sv2, cur2, flags);
7243
7244     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7245         /* Differing utf8ness.
7246          * Do not UTF8size the comparands as a side-effect. */
7247          if (PL_encoding) {
7248               if (SvUTF8(sv1)) {
7249                    svrecode = newSVpvn(pv2, cur2);
7250                    sv_recode_to_utf8(svrecode, PL_encoding);
7251                    pv2 = SvPV_const(svrecode, cur2);
7252               }
7253               else {
7254                    svrecode = newSVpvn(pv1, cur1);
7255                    sv_recode_to_utf8(svrecode, PL_encoding);
7256                    pv1 = SvPV_const(svrecode, cur1);
7257               }
7258               /* Now both are in UTF-8. */
7259               if (cur1 != cur2) {
7260                    SvREFCNT_dec(svrecode);
7261                    return FALSE;
7262               }
7263          }
7264          else {
7265               if (SvUTF8(sv1)) {
7266                   /* sv1 is the UTF-8 one  */
7267                   return bytes_cmp_utf8((const U8*)pv2, cur2,
7268                                         (const U8*)pv1, cur1) == 0;
7269               }
7270               else {
7271                   /* sv2 is the UTF-8 one  */
7272                   return bytes_cmp_utf8((const U8*)pv1, cur1,
7273                                         (const U8*)pv2, cur2) == 0;
7274               }
7275          }
7276     }
7277
7278     if (cur1 == cur2)
7279         eq = (pv1 == pv2) || memEQ(pv1, pv2, cur1);
7280         
7281     SvREFCNT_dec(svrecode);
7282
7283     return eq;
7284 }
7285
7286 /*
7287 =for apidoc sv_cmp
7288
7289 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7290 string in C<sv1> is less than, equal to, or greater than the string in
7291 C<sv2>.  Is UTF-8 and 'use bytes' aware, handles get magic, and will
7292 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
7293
7294 =for apidoc sv_cmp_flags
7295
7296 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
7297 string in C<sv1> is less than, equal to, or greater than the string in
7298 C<sv2>.  Is UTF-8 and 'use bytes' aware and will coerce its args to strings
7299 if necessary.  If the flags include SV_GMAGIC, it handles get magic.  See
7300 also C<sv_cmp_locale_flags>.
7301
7302 =cut
7303 */
7304
7305 I32
7306 Perl_sv_cmp(pTHX_ register SV *const sv1, register SV *const sv2)
7307 {
7308     return sv_cmp_flags(sv1, sv2, SV_GMAGIC);
7309 }
7310
7311 I32
7312 Perl_sv_cmp_flags(pTHX_ register SV *const sv1, register SV *const sv2,
7313                   const U32 flags)
7314 {
7315     dVAR;
7316     STRLEN cur1, cur2;
7317     const char *pv1, *pv2;
7318     char *tpv = NULL;
7319     I32  cmp;
7320     SV *svrecode = NULL;
7321
7322     if (!sv1) {
7323         pv1 = "";
7324         cur1 = 0;
7325     }
7326     else
7327         pv1 = SvPV_flags_const(sv1, cur1, flags);
7328
7329     if (!sv2) {
7330         pv2 = "";
7331         cur2 = 0;
7332     }
7333     else
7334         pv2 = SvPV_flags_const(sv2, cur2, flags);
7335
7336     if (cur1 && cur2 && SvUTF8(sv1) != SvUTF8(sv2) && !IN_BYTES) {
7337         /* Differing utf8ness.
7338          * Do not UTF8size the comparands as a side-effect. */
7339         if (SvUTF8(sv1)) {
7340             if (PL_encoding) {
7341                  svrecode = newSVpvn(pv2, cur2);
7342                  sv_recode_to_utf8(svrecode, PL_encoding);
7343                  pv2 = SvPV_const(svrecode, cur2);
7344             }
7345             else {
7346                 const int retval = -bytes_cmp_utf8((const U8*)pv2, cur2,
7347                                                    (const U8*)pv1, cur1);
7348                 return retval ? retval < 0 ? -1 : +1 : 0;
7349             }
7350         }
7351         else {
7352             if (PL_encoding) {
7353                  svrecode = newSVpvn(pv1, cur1);
7354                  sv_recode_to_utf8(svrecode, PL_encoding);
7355                  pv1 = SvPV_const(svrecode, cur1);
7356             }
7357             else {
7358                 const int retval = bytes_cmp_utf8((const U8*)pv1, cur1,
7359                                                   (const U8*)pv2, cur2);
7360                 return retval ? retval < 0 ? -1 : +1 : 0;
7361             }
7362         }
7363     }
7364
7365     if (!cur1) {
7366         cmp = cur2 ? -1 : 0;
7367     } else if (!cur2) {
7368         cmp = 1;
7369     } else {
7370         const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
7371
7372         if (retval) {
7373             cmp = retval < 0 ? -1 : 1;
7374         } else if (cur1 == cur2) {
7375             cmp = 0;
7376         } else {
7377             cmp = cur1 < cur2 ? -1 : 1;
7378         }
7379     }
7380
7381     SvREFCNT_dec(svrecode);
7382     if (tpv)
7383         Safefree(tpv);
7384
7385     return cmp;
7386 }
7387
7388 /*
7389 =for apidoc sv_cmp_locale
7390
7391 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7392 'use bytes' aware, handles get magic, and will coerce its args to strings
7393 if necessary.  See also C<sv_cmp>.
7394
7395 =for apidoc sv_cmp_locale_flags
7396
7397 Compares the strings in two SVs in a locale-aware manner.  Is UTF-8 and
7398 'use bytes' aware and will coerce its args to strings if necessary.  If the
7399 flags contain SV_GMAGIC, it handles get magic.  See also C<sv_cmp_flags>.
7400
7401 =cut
7402 */
7403
7404 I32
7405 Perl_sv_cmp_locale(pTHX_ register SV *const sv1, register SV *const sv2)
7406 {
7407     return sv_cmp_locale_flags(sv1, sv2, SV_GMAGIC);
7408 }
7409
7410 I32
7411 Perl_sv_cmp_locale_flags(pTHX_ register SV *const sv1, register SV *const sv2,
7412                          const U32 flags)
7413 {
7414     dVAR;
7415 #ifdef USE_LOCALE_COLLATE
7416
7417     char *pv1, *pv2;
7418     STRLEN len1, len2;
7419     I32 retval;
7420
7421     if (PL_collation_standard)
7422         goto raw_compare;
7423
7424     len1 = 0;
7425     pv1 = sv1 ? sv_collxfrm_flags(sv1, &len1, flags) : (char *) NULL;
7426     len2 = 0;
7427     pv2 = sv2 ? sv_collxfrm_flags(sv2, &len2, flags) : (char *) NULL;
7428
7429     if (!pv1 || !len1) {
7430         if (pv2 && len2)
7431             return -1;
7432         else
7433             goto raw_compare;
7434     }
7435     else {
7436         if (!pv2 || !len2)
7437             return 1;
7438     }
7439
7440     retval = memcmp((void*)pv1, (void*)pv2, len1 < len2 ? len1 : len2);
7441
7442     if (retval)
7443         return retval < 0 ? -1 : 1;
7444
7445     /*
7446      * When the result of collation is equality, that doesn't mean
7447      * that there are no differences -- some locales exclude some
7448      * characters from consideration.  So to avoid false equalities,
7449      * we use the raw string as a tiebreaker.
7450      */
7451
7452   raw_compare:
7453     /*FALLTHROUGH*/
7454
7455 #endif /* USE_LOCALE_COLLATE */
7456
7457     return sv_cmp(sv1, sv2);
7458 }
7459
7460
7461 #ifdef USE_LOCALE_COLLATE
7462
7463 /*
7464 =for apidoc sv_collxfrm
7465
7466 This calls C<sv_collxfrm_flags> with the SV_GMAGIC flag.  See
7467 C<sv_collxfrm_flags>.
7468
7469 =for apidoc sv_collxfrm_flags
7470
7471 Add Collate Transform magic to an SV if it doesn't already have it.  If the
7472 flags contain SV_GMAGIC, it handles get-magic.
7473
7474 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
7475 scalar data of the variable, but transformed to such a format that a normal
7476 memory comparison can be used to compare the data according to the locale
7477 settings.
7478
7479 =cut
7480 */
7481
7482 char *
7483 Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
7484 {
7485     dVAR;
7486     MAGIC *mg;
7487
7488     PERL_ARGS_ASSERT_SV_COLLXFRM_FLAGS;
7489
7490     mg = SvMAGICAL(sv) ? mg_find(sv, PERL_MAGIC_collxfrm) : (MAGIC *) NULL;
7491     if (!mg || !mg->mg_ptr || *(U32*)mg->mg_ptr != PL_collation_ix) {
7492         const char *s;
7493         char *xf;
7494         STRLEN len, xlen;
7495
7496         if (mg)
7497             Safefree(mg->mg_ptr);
7498         s = SvPV_flags_const(sv, len, flags);
7499         if ((xf = mem_collxfrm(s, len, &xlen))) {
7500             if (! mg) {
7501 #ifdef PERL_OLD_COPY_ON_WRITE
7502                 if (SvIsCOW(sv))
7503                     sv_force_normal_flags(sv, 0);
7504 #endif
7505                 mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
7506                                  0, 0);
7507                 assert(mg);
7508             }
7509             mg->mg_ptr = xf;
7510             mg->mg_len = xlen;
7511         }
7512         else {
7513             if (mg) {
7514                 mg->mg_ptr = NULL;
7515                 mg->mg_len = -1;
7516             }
7517         }
7518     }
7519     if (mg && mg->mg_ptr) {
7520         *nxp = mg->mg_len;
7521         return mg->mg_ptr + sizeof(PL_collation_ix);
7522     }
7523     else {
7524         *nxp = 0;
7525         return NULL;
7526     }
7527 }
7528
7529 #endif /* USE_LOCALE_COLLATE */
7530
7531 static char *
7532 S_sv_gets_append_to_utf8(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7533 {
7534     SV * const tsv = newSV(0);
7535     ENTER;
7536     SAVEFREESV(tsv);
7537     sv_gets(tsv, fp, 0);
7538     sv_utf8_upgrade_nomg(tsv);
7539     SvCUR_set(sv,append);
7540     sv_catsv(sv,tsv);
7541     LEAVE;
7542     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7543 }
7544
7545 static char *
7546 S_sv_gets_read_record(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
7547 {
7548     I32 bytesread;
7549     const U32 recsize = SvUV(SvRV(PL_rs)); /* RsRECORD() guarantees > 0. */
7550       /* Grab the size of the record we're getting */
7551     char *const buffer = SvGROW(sv, (STRLEN)(recsize + append + 1)) + append;
7552 #ifdef VMS
7553     int fd;
7554 #endif
7555
7556     /* Go yank in */
7557 #ifdef VMS
7558     /* VMS wants read instead of fread, because fread doesn't respect */
7559     /* RMS record boundaries. This is not necessarily a good thing to be */
7560     /* doing, but we've got no other real choice - except avoid stdio
7561        as implementation - perhaps write a :vms layer ?
7562     */
7563     fd = PerlIO_fileno(fp);
7564     if (fd != -1) {
7565         bytesread = PerlLIO_read(fd, buffer, recsize);
7566     }
7567     else /* in-memory file from PerlIO::Scalar */
7568 #endif
7569     {
7570         bytesread = PerlIO_read(fp, buffer, recsize);
7571     }
7572
7573     if (bytesread < 0)
7574         bytesread = 0;
7575     SvCUR_set(sv, bytesread + append);
7576     buffer[bytesread] = '\0';
7577     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7578 }
7579
7580 /*
7581 =for apidoc sv_gets
7582
7583 Get a line from the filehandle and store it into the SV, optionally
7584 appending to the currently-stored string. If C<append> is not 0, the
7585 line is appended to the SV instead of overwriting it. C<append> should
7586 be set to the byte offset that the appended string should start at
7587 in the SV (typically, C<SvCUR(sv)> is a suitable choice).
7588
7589 =cut
7590 */
7591
7592 char *
7593 Perl_sv_gets(pTHX_ register SV *const sv, register PerlIO *const fp, I32 append)
7594 {
7595     dVAR;
7596     const char *rsptr;
7597     STRLEN rslen;
7598     STDCHAR rslast;
7599     STDCHAR *bp;
7600     I32 cnt;
7601     I32 i = 0;
7602     I32 rspara = 0;
7603
7604     PERL_ARGS_ASSERT_SV_GETS;
7605
7606     if (SvTHINKFIRST(sv))
7607         sv_force_normal_flags(sv, append ? 0 : SV_COW_DROP_PV);
7608     /* XXX. If you make this PVIV, then copy on write can copy scalars read
7609        from <>.
7610        However, perlbench says it's slower, because the existing swipe code
7611        is faster than copy on write.
7612        Swings and roundabouts.  */
7613     SvUPGRADE(sv, SVt_PV);
7614
7615     if (append) {
7616         if (PerlIO_isutf8(fp)) {
7617             if (!SvUTF8(sv)) {
7618                 sv_utf8_upgrade_nomg(sv);
7619                 sv_pos_u2b(sv,&append,0);
7620             }
7621         } else if (SvUTF8(sv)) {
7622             return S_sv_gets_append_to_utf8(aTHX_ sv, fp, append);
7623         }
7624     }
7625
7626     SvPOK_only(sv);
7627     if (!append) {
7628         SvCUR_set(sv,0);
7629     }
7630     if (PerlIO_isutf8(fp))
7631         SvUTF8_on(sv);
7632
7633     if (IN_PERL_COMPILETIME) {
7634         /* we always read code in line mode */
7635         rsptr = "\n";
7636         rslen = 1;
7637     }
7638     else if (RsSNARF(PL_rs)) {
7639         /* If it is a regular disk file use size from stat() as estimate
7640            of amount we are going to read -- may result in mallocing
7641            more memory than we really need if the layers below reduce
7642            the size we read (e.g. CRLF or a gzip layer).
7643          */
7644         Stat_t st;
7645         if (!PerlLIO_fstat(PerlIO_fileno(fp), &st) && S_ISREG(st.st_mode))  {
7646             const Off_t offset = PerlIO_tell(fp);
7647             if (offset != (Off_t) -1 && st.st_size + append > offset) {
7648                 (void) SvGROW(sv, (STRLEN)((st.st_size - offset) + append + 1));
7649             }
7650         }
7651         rsptr = NULL;
7652         rslen = 0;
7653     }
7654     else if (RsRECORD(PL_rs)) {
7655         return S_sv_gets_read_record(aTHX_ sv, fp, append);
7656     }
7657     else if (RsPARA(PL_rs)) {
7658         rsptr = "\n\n";
7659         rslen = 2;
7660         rspara = 1;
7661     }
7662     else {
7663         /* Get $/ i.e. PL_rs into same encoding as stream wants */
7664         if (PerlIO_isutf8(fp)) {
7665             rsptr = SvPVutf8(PL_rs, rslen);
7666         }
7667         else {
7668             if (SvUTF8(PL_rs)) {
7669                 if (!sv_utf8_downgrade(PL_rs, TRUE)) {
7670                     Perl_croak(aTHX_ "Wide character in $/");
7671                 }
7672             }
7673             rsptr = SvPV_const(PL_rs, rslen);
7674         }
7675     }
7676
7677     rslast = rslen ? rsptr[rslen - 1] : '\0';
7678
7679     if (rspara) {               /* have to do this both before and after */
7680         do {                    /* to make sure file boundaries work right */
7681             if (PerlIO_eof(fp))
7682                 return 0;
7683             i = PerlIO_getc(fp);
7684             if (i != '\n') {
7685                 if (i == -1)
7686                     return 0;
7687                 PerlIO_ungetc(fp,i);
7688                 break;
7689             }
7690         } while (i != EOF);
7691     }
7692
7693     /* See if we know enough about I/O mechanism to cheat it ! */
7694
7695     /* This used to be #ifdef test - it is made run-time test for ease
7696        of abstracting out stdio interface. One call should be cheap
7697        enough here - and may even be a macro allowing compile
7698        time optimization.
7699      */
7700
7701     if (PerlIO_fast_gets(fp)) {
7702
7703     /*
7704      * We're going to steal some values from the stdio struct
7705      * and put EVERYTHING in the innermost loop into registers.
7706      */
7707     STDCHAR *ptr;
7708     STRLEN bpx;
7709     I32 shortbuffered;
7710
7711 #if defined(VMS) && defined(PERLIO_IS_STDIO)
7712     /* An ungetc()d char is handled separately from the regular
7713      * buffer, so we getc() it back out and stuff it in the buffer.
7714      */
7715     i = PerlIO_getc(fp);
7716     if (i == EOF) return 0;
7717     *(--((*fp)->_ptr)) = (unsigned char) i;
7718     (*fp)->_cnt++;
7719 #endif
7720
7721     /* Here is some breathtakingly efficient cheating */
7722
7723     cnt = PerlIO_get_cnt(fp);                   /* get count into register */
7724     /* make sure we have the room */
7725     if ((I32)(SvLEN(sv) - append) <= cnt + 1) {
7726         /* Not room for all of it
7727            if we are looking for a separator and room for some
7728          */
7729         if (rslen && cnt > 80 && (I32)SvLEN(sv) > append) {
7730             /* just process what we have room for */
7731             shortbuffered = cnt - SvLEN(sv) + append + 1;
7732             cnt -= shortbuffered;
7733         }
7734         else {
7735             shortbuffered = 0;
7736             /* remember that cnt can be negative */
7737             SvGROW(sv, (STRLEN)(append + (cnt <= 0 ? 2 : (cnt + 1))));
7738         }
7739     }
7740     else
7741         shortbuffered = 0;
7742     bp = (STDCHAR*)SvPVX_const(sv) + append;  /* move these two too to registers */
7743     ptr = (STDCHAR*)PerlIO_get_ptr(fp);
7744     DEBUG_P(PerlIO_printf(Perl_debug_log,
7745         "Screamer: entering, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7746     DEBUG_P(PerlIO_printf(Perl_debug_log,
7747         "Screamer: entering: PerlIO * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7748                PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7749                PTR2UV(PerlIO_has_base(fp) ? PerlIO_get_base(fp) : 0)));
7750     for (;;) {
7751       screamer:
7752         if (cnt > 0) {
7753             if (rslen) {
7754                 while (cnt > 0) {                    /* this     |  eat */
7755                     cnt--;
7756                     if ((*bp++ = *ptr++) == rslast)  /* really   |  dust */
7757                         goto thats_all_folks;        /* screams  |  sed :-) */
7758                 }
7759             }
7760             else {
7761                 Copy(ptr, bp, cnt, char);            /* this     |  eat */
7762                 bp += cnt;                           /* screams  |  dust */
7763                 ptr += cnt;                          /* louder   |  sed :-) */
7764                 cnt = 0;
7765                 assert (!shortbuffered);
7766                 goto cannot_be_shortbuffered;
7767             }
7768         }
7769         
7770         if (shortbuffered) {            /* oh well, must extend */
7771             cnt = shortbuffered;
7772             shortbuffered = 0;
7773             bpx = bp - (STDCHAR*)SvPVX_const(sv); /* box up before relocation */
7774             SvCUR_set(sv, bpx);
7775             SvGROW(sv, SvLEN(sv) + append + cnt + 2);
7776             bp = (STDCHAR*)SvPVX_const(sv) + bpx; /* unbox after relocation */
7777             continue;
7778         }
7779
7780     cannot_be_shortbuffered:
7781         DEBUG_P(PerlIO_printf(Perl_debug_log,
7782                               "Screamer: going to getc, ptr=%"UVuf", cnt=%ld\n",
7783                               PTR2UV(ptr),(long)cnt));
7784         PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* deregisterize cnt and ptr */
7785
7786         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
7787             "Screamer: pre: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7788             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7789             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7790
7791         /* This used to call 'filbuf' in stdio form, but as that behaves like
7792            getc when cnt <= 0 we use PerlIO_getc here to avoid introducing
7793            another abstraction.  */
7794         i   = PerlIO_getc(fp);          /* get more characters */
7795
7796         DEBUG_Pv(PerlIO_printf(Perl_debug_log,
7797             "Screamer: post: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7798             PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7799             PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7800
7801         cnt = PerlIO_get_cnt(fp);
7802         ptr = (STDCHAR*)PerlIO_get_ptr(fp);     /* reregisterize cnt and ptr */
7803         DEBUG_P(PerlIO_printf(Perl_debug_log,
7804             "Screamer: after getc, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7805
7806         if (i == EOF)                   /* all done for ever? */
7807             goto thats_really_all_folks;
7808
7809         bpx = bp - (STDCHAR*)SvPVX_const(sv);   /* box up before relocation */
7810         SvCUR_set(sv, bpx);
7811         SvGROW(sv, bpx + cnt + 2);
7812         bp = (STDCHAR*)SvPVX_const(sv) + bpx;   /* unbox after relocation */
7813
7814         *bp++ = (STDCHAR)i;             /* store character from PerlIO_getc */
7815
7816         if (rslen && (STDCHAR)i == rslast)  /* all done for now? */
7817             goto thats_all_folks;
7818     }
7819
7820 thats_all_folks:
7821     if ((rslen > 1 && (STRLEN)(bp - (STDCHAR*)SvPVX_const(sv)) < rslen) ||
7822           memNE((char*)bp - rslen, rsptr, rslen))
7823         goto screamer;                          /* go back to the fray */
7824 thats_really_all_folks:
7825     if (shortbuffered)
7826         cnt += shortbuffered;
7827         DEBUG_P(PerlIO_printf(Perl_debug_log,
7828             "Screamer: quitting, ptr=%"UVuf", cnt=%ld\n",PTR2UV(ptr),(long)cnt));
7829     PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt);  /* put these back or we're in trouble */
7830     DEBUG_P(PerlIO_printf(Perl_debug_log,
7831         "Screamer: end: FILE * thinks ptr=%"UVuf", cnt=%ld, base=%"UVuf"\n",
7832         PTR2UV(PerlIO_get_ptr(fp)), (long)PerlIO_get_cnt(fp),
7833         PTR2UV(PerlIO_has_base (fp) ? PerlIO_get_base(fp) : 0)));
7834     *bp = '\0';
7835     SvCUR_set(sv, bp - (STDCHAR*)SvPVX_const(sv));      /* set length */
7836     DEBUG_P(PerlIO_printf(Perl_debug_log,
7837         "Screamer: done, len=%ld, string=|%.*s|\n",
7838         (long)SvCUR(sv),(int)SvCUR(sv),SvPVX_const(sv)));
7839     }
7840    else
7841     {
7842        /*The big, slow, and stupid way. */
7843 #ifdef USE_HEAP_INSTEAD_OF_STACK        /* Even slower way. */
7844         STDCHAR *buf = NULL;
7845         Newx(buf, 8192, STDCHAR);
7846         assert(buf);
7847 #else
7848         STDCHAR buf[8192];
7849 #endif
7850
7851 screamer2:
7852         if (rslen) {
7853             const STDCHAR * const bpe = buf + sizeof(buf);
7854             bp = buf;
7855             while ((i = PerlIO_getc(fp)) != EOF && (*bp++ = (STDCHAR)i) != rslast && bp < bpe)
7856                 ; /* keep reading */
7857             cnt = bp - buf;
7858         }
7859         else {
7860             cnt = PerlIO_read(fp,(char*)buf, sizeof(buf));
7861             /* Accommodate broken VAXC compiler, which applies U8 cast to
7862              * both args of ?: operator, causing EOF to change into 255
7863              */
7864             if (cnt > 0)
7865                  i = (U8)buf[cnt - 1];
7866             else
7867                  i = EOF;
7868         }
7869
7870         if (cnt < 0)
7871             cnt = 0;  /* we do need to re-set the sv even when cnt <= 0 */
7872         if (append)
7873             sv_catpvn_nomg(sv, (char *) buf, cnt);
7874         else
7875             sv_setpvn(sv, (char *) buf, cnt);   /* "nomg" is implied */
7876
7877         if (i != EOF &&                 /* joy */
7878             (!rslen ||
7879              SvCUR(sv) < rslen ||
7880              memNE(SvPVX_const(sv) + SvCUR(sv) - rslen, rsptr, rslen)))
7881         {
7882             append = -1;
7883             /*
7884              * If we're reading from a TTY and we get a short read,
7885              * indicating that the user hit his EOF character, we need
7886              * to notice it now, because if we try to read from the TTY
7887              * again, the EOF condition will disappear.
7888              *
7889              * The comparison of cnt to sizeof(buf) is an optimization
7890              * that prevents unnecessary calls to feof().
7891              *
7892              * - jik 9/25/96
7893              */
7894             if (!(cnt < (I32)sizeof(buf) && PerlIO_eof(fp)))
7895                 goto screamer2;
7896         }
7897
7898 #ifdef USE_HEAP_INSTEAD_OF_STACK
7899         Safefree(buf);
7900 #endif
7901     }
7902
7903     if (rspara) {               /* have to do this both before and after */
7904         while (i != EOF) {      /* to make sure file boundaries work right */
7905             i = PerlIO_getc(fp);
7906             if (i != '\n') {
7907                 PerlIO_ungetc(fp,i);
7908                 break;
7909             }
7910         }
7911     }
7912
7913     return (SvCUR(sv) - append) ? SvPVX(sv) : NULL;
7914 }
7915
7916 /*
7917 =for apidoc sv_inc
7918
7919 Auto-increment of the value in the SV, doing string to numeric conversion
7920 if necessary.  Handles 'get' magic and operator overloading.
7921
7922 =cut
7923 */
7924
7925 void
7926 Perl_sv_inc(pTHX_ register SV *const sv)
7927 {
7928     if (!sv)
7929         return;
7930     SvGETMAGIC(sv);
7931     sv_inc_nomg(sv);
7932 }
7933
7934 /*
7935 =for apidoc sv_inc_nomg
7936
7937 Auto-increment of the value in the SV, doing string to numeric conversion
7938 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
7939
7940 =cut
7941 */
7942
7943 void
7944 Perl_sv_inc_nomg(pTHX_ register SV *const sv)
7945 {
7946     dVAR;
7947     char *d;
7948     int flags;
7949
7950     if (!sv)
7951         return;
7952     if (SvTHINKFIRST(sv)) {
7953         if (SvIsCOW(sv) || isGV_with_GP(sv))
7954             sv_force_normal_flags(sv, 0);
7955         if (SvREADONLY(sv)) {
7956             if (IN_PERL_RUNTIME)
7957                 Perl_croak_no_modify(aTHX);
7958         }
7959         if (SvROK(sv)) {
7960             IV i;
7961             if (SvAMAGIC(sv) && AMG_CALLunary(sv, inc_amg))
7962                 return;
7963             i = PTR2IV(SvRV(sv));
7964             sv_unref(sv);
7965             sv_setiv(sv, i);
7966         }
7967     }
7968     flags = SvFLAGS(sv);
7969     if ((flags & (SVp_NOK|SVp_IOK)) == SVp_NOK) {
7970         /* It's (privately or publicly) a float, but not tested as an
7971            integer, so test it to see. */
7972         (void) SvIV(sv);
7973         flags = SvFLAGS(sv);
7974     }
7975     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
7976         /* It's publicly an integer, or privately an integer-not-float */
7977 #ifdef PERL_PRESERVE_IVUV
7978       oops_its_int:
7979 #endif
7980         if (SvIsUV(sv)) {
7981             if (SvUVX(sv) == UV_MAX)
7982                 sv_setnv(sv, UV_MAX_P1);
7983             else
7984                 (void)SvIOK_only_UV(sv);
7985                 SvUV_set(sv, SvUVX(sv) + 1);
7986         } else {
7987             if (SvIVX(sv) == IV_MAX)
7988                 sv_setuv(sv, (UV)IV_MAX + 1);
7989             else {
7990                 (void)SvIOK_only(sv);
7991                 SvIV_set(sv, SvIVX(sv) + 1);
7992             }   
7993         }
7994         return;
7995     }
7996     if (flags & SVp_NOK) {
7997         const NV was = SvNVX(sv);
7998         if (NV_OVERFLOWS_INTEGERS_AT &&
7999             was >= NV_OVERFLOWS_INTEGERS_AT) {
8000             /* diag_listed_as: Lost precision when %s %f by 1 */
8001             Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8002                            "Lost precision when incrementing %" NVff " by 1",
8003                            was);
8004         }
8005         (void)SvNOK_only(sv);
8006         SvNV_set(sv, was + 1.0);
8007         return;
8008     }
8009
8010     if (!(flags & SVp_POK) || !*SvPVX_const(sv)) {
8011         if ((flags & SVTYPEMASK) < SVt_PVIV)
8012             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV ? SVt_PVIV : SVt_IV));
8013         (void)SvIOK_only(sv);
8014         SvIV_set(sv, 1);
8015         return;
8016     }
8017     d = SvPVX(sv);
8018     while (isALPHA(*d)) d++;
8019     while (isDIGIT(*d)) d++;
8020     if (d < SvEND(sv)) {
8021 #ifdef PERL_PRESERVE_IVUV
8022         /* Got to punt this as an integer if needs be, but we don't issue
8023            warnings. Probably ought to make the sv_iv_please() that does
8024            the conversion if possible, and silently.  */
8025         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8026         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8027             /* Need to try really hard to see if it's an integer.
8028                9.22337203685478e+18 is an integer.
8029                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8030                so $a="9.22337203685478e+18"; $a+0; $a++
8031                needs to be the same as $a="9.22337203685478e+18"; $a++
8032                or we go insane. */
8033         
8034             (void) sv_2iv(sv);
8035             if (SvIOK(sv))
8036                 goto oops_its_int;
8037
8038             /* sv_2iv *should* have made this an NV */
8039             if (flags & SVp_NOK) {
8040                 (void)SvNOK_only(sv);
8041                 SvNV_set(sv, SvNVX(sv) + 1.0);
8042                 return;
8043             }
8044             /* I don't think we can get here. Maybe I should assert this
8045                And if we do get here I suspect that sv_setnv will croak. NWC
8046                Fall through. */
8047 #if defined(USE_LONG_DOUBLE)
8048             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",
8049                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8050 #else
8051             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_inc punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8052                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8053 #endif
8054         }
8055 #endif /* PERL_PRESERVE_IVUV */
8056         sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
8057         return;
8058     }
8059     d--;
8060     while (d >= SvPVX_const(sv)) {
8061         if (isDIGIT(*d)) {
8062             if (++*d <= '9')
8063                 return;
8064             *(d--) = '0';
8065         }
8066         else {
8067 #ifdef EBCDIC
8068             /* MKS: The original code here died if letters weren't consecutive.
8069              * at least it didn't have to worry about non-C locales.  The
8070              * new code assumes that ('z'-'a')==('Z'-'A'), letters are
8071              * arranged in order (although not consecutively) and that only
8072              * [A-Za-z] are accepted by isALPHA in the C locale.
8073              */
8074             if (*d != 'z' && *d != 'Z') {
8075                 do { ++*d; } while (!isALPHA(*d));
8076                 return;
8077             }
8078             *(d--) -= 'z' - 'a';
8079 #else
8080             ++*d;
8081             if (isALPHA(*d))
8082                 return;
8083             *(d--) -= 'z' - 'a' + 1;
8084 #endif
8085         }
8086     }
8087     /* oh,oh, the number grew */
8088     SvGROW(sv, SvCUR(sv) + 2);
8089     SvCUR_set(sv, SvCUR(sv) + 1);
8090     for (d = SvPVX(sv) + SvCUR(sv); d > SvPVX_const(sv); d--)
8091         *d = d[-1];
8092     if (isDIGIT(d[1]))
8093         *d = '1';
8094     else
8095         *d = d[1];
8096 }
8097
8098 /*
8099 =for apidoc sv_dec
8100
8101 Auto-decrement of the value in the SV, doing string to numeric conversion
8102 if necessary.  Handles 'get' magic and operator overloading.
8103
8104 =cut
8105 */
8106
8107 void
8108 Perl_sv_dec(pTHX_ register SV *const sv)
8109 {
8110     dVAR;
8111     if (!sv)
8112         return;
8113     SvGETMAGIC(sv);
8114     sv_dec_nomg(sv);
8115 }
8116
8117 /*
8118 =for apidoc sv_dec_nomg
8119
8120 Auto-decrement of the value in the SV, doing string to numeric conversion
8121 if necessary.  Handles operator overloading.  Skips handling 'get' magic.
8122
8123 =cut
8124 */
8125
8126 void
8127 Perl_sv_dec_nomg(pTHX_ register SV *const sv)
8128 {
8129     dVAR;
8130     int flags;
8131
8132     if (!sv)
8133         return;
8134     if (SvTHINKFIRST(sv)) {
8135         if (SvIsCOW(sv) || isGV_with_GP(sv))
8136             sv_force_normal_flags(sv, 0);
8137         if (SvREADONLY(sv)) {
8138             if (IN_PERL_RUNTIME)
8139                 Perl_croak_no_modify(aTHX);
8140         }
8141         if (SvROK(sv)) {
8142             IV i;
8143             if (SvAMAGIC(sv) && AMG_CALLunary(sv, dec_amg))
8144                 return;
8145             i = PTR2IV(SvRV(sv));
8146             sv_unref(sv);
8147             sv_setiv(sv, i);
8148         }
8149     }
8150     /* Unlike sv_inc we don't have to worry about string-never-numbers
8151        and keeping them magic. But we mustn't warn on punting */
8152     flags = SvFLAGS(sv);
8153     if ((flags & SVf_IOK) || ((flags & (SVp_IOK | SVp_NOK)) == SVp_IOK)) {
8154         /* It's publicly an integer, or privately an integer-not-float */
8155 #ifdef PERL_PRESERVE_IVUV
8156       oops_its_int:
8157 #endif
8158         if (SvIsUV(sv)) {
8159             if (SvUVX(sv) == 0) {
8160                 (void)SvIOK_only(sv);
8161                 SvIV_set(sv, -1);
8162             }
8163             else {
8164                 (void)SvIOK_only_UV(sv);
8165                 SvUV_set(sv, SvUVX(sv) - 1);
8166             }   
8167         } else {
8168             if (SvIVX(sv) == IV_MIN) {
8169                 sv_setnv(sv, (NV)IV_MIN);
8170                 goto oops_its_num;
8171             }
8172             else {
8173                 (void)SvIOK_only(sv);
8174                 SvIV_set(sv, SvIVX(sv) - 1);
8175             }   
8176         }
8177         return;
8178     }
8179     if (flags & SVp_NOK) {
8180     oops_its_num:
8181         {
8182             const NV was = SvNVX(sv);
8183             if (NV_OVERFLOWS_INTEGERS_AT &&
8184                 was <= -NV_OVERFLOWS_INTEGERS_AT) {
8185                 /* diag_listed_as: Lost precision when %s %f by 1 */
8186                 Perl_ck_warner(aTHX_ packWARN(WARN_IMPRECISION),
8187                                "Lost precision when decrementing %" NVff " by 1",
8188                                was);
8189             }
8190             (void)SvNOK_only(sv);
8191             SvNV_set(sv, was - 1.0);
8192             return;
8193         }
8194     }
8195     if (!(flags & SVp_POK)) {
8196         if ((flags & SVTYPEMASK) < SVt_PVIV)
8197             sv_upgrade(sv, ((flags & SVTYPEMASK) > SVt_IV) ? SVt_PVIV : SVt_IV);
8198         SvIV_set(sv, -1);
8199         (void)SvIOK_only(sv);
8200         return;
8201     }
8202 #ifdef PERL_PRESERVE_IVUV
8203     {
8204         const int numtype = grok_number(SvPVX_const(sv), SvCUR(sv), NULL);
8205         if (numtype && !(numtype & IS_NUMBER_INFINITY)) {
8206             /* Need to try really hard to see if it's an integer.
8207                9.22337203685478e+18 is an integer.
8208                but "9.22337203685478e+18" + 0 is UV=9223372036854779904
8209                so $a="9.22337203685478e+18"; $a+0; $a--
8210                needs to be the same as $a="9.22337203685478e+18"; $a--
8211                or we go insane. */
8212         
8213             (void) sv_2iv(sv);
8214             if (SvIOK(sv))
8215                 goto oops_its_int;
8216
8217             /* sv_2iv *should* have made this an NV */
8218             if (flags & SVp_NOK) {
8219                 (void)SvNOK_only(sv);
8220                 SvNV_set(sv, SvNVX(sv) - 1.0);
8221                 return;
8222             }
8223             /* I don't think we can get here. Maybe I should assert this
8224                And if we do get here I suspect that sv_setnv will croak. NWC
8225                Fall through. */
8226 #if defined(USE_LONG_DOUBLE)
8227             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",
8228                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8229 #else
8230             DEBUG_c(PerlIO_printf(Perl_debug_log,"sv_dec punt failed to convert '%s' to IOK or NOKp, UV=0x%"UVxf" NV=%"NVgf"\n",
8231                                   SvPVX_const(sv), SvIVX(sv), SvNVX(sv)));
8232 #endif
8233         }
8234     }
8235 #endif /* PERL_PRESERVE_IVUV */
8236     sv_setnv(sv,Atof(SvPVX_const(sv)) - 1.0);   /* punt */
8237 }
8238
8239 /* this define is used to eliminate a chunk of duplicated but shared logic
8240  * it has the suffix __SV_C to signal that it isnt API, and isnt meant to be
8241  * used anywhere but here - yves
8242  */
8243 #define PUSH_EXTEND_MORTAL__SV_C(AnSv) \
8244     STMT_START {      \
8245         EXTEND_MORTAL(1); \
8246         PL_tmps_stack[++PL_tmps_ix] = (AnSv); \
8247     } STMT_END
8248
8249 /*
8250 =for apidoc sv_mortalcopy
8251
8252 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
8253 The new SV is marked as mortal.  It will be destroyed "soon", either by an
8254 explicit call to FREETMPS, or by an implicit call at places such as
8255 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
8256
8257 =cut
8258 */
8259
8260 /* Make a string that will exist for the duration of the expression
8261  * evaluation.  Actually, it may have to last longer than that, but
8262  * hopefully we won't free it until it has been assigned to a
8263  * permanent location. */
8264
8265 SV *
8266 Perl_sv_mortalcopy_flags(pTHX_ SV *const oldstr, U32 flags)
8267 {
8268     dVAR;
8269     SV *sv;
8270
8271     if (flags & SV_GMAGIC)
8272         SvGETMAGIC(oldstr); /* before new_SV, in case it dies */
8273     new_SV(sv);
8274     sv_setsv_flags(sv,oldstr,flags & ~SV_GMAGIC);
8275     PUSH_EXTEND_MORTAL__SV_C(sv);
8276     SvTEMP_on(sv);
8277     return sv;
8278 }
8279
8280 /*
8281 =for apidoc sv_newmortal
8282
8283 Creates a new null SV which is mortal.  The reference count of the SV is
8284 set to 1.  It will be destroyed "soon", either by an explicit call to
8285 FREETMPS, or by an implicit call at places such as statement boundaries.
8286 See also C<sv_mortalcopy> and C<sv_2mortal>.
8287
8288 =cut
8289 */
8290
8291 SV *
8292 Perl_sv_newmortal(pTHX)
8293 {
8294     dVAR;
8295     SV *sv;
8296
8297     new_SV(sv);
8298     SvFLAGS(sv) = SVs_TEMP;
8299     PUSH_EXTEND_MORTAL__SV_C(sv);
8300     return sv;
8301 }
8302
8303
8304 /*
8305 =for apidoc newSVpvn_flags
8306
8307 Creates a new SV and copies a string into it.  The reference count for the
8308 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
8309 string.  You are responsible for ensuring that the source string is at least
8310 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
8311 Currently the only flag bits accepted are C<SVf_UTF8> and C<SVs_TEMP>.
8312 If C<SVs_TEMP> is set, then C<sv_2mortal()> is called on the result before
8313 returning.  If C<SVf_UTF8> is set, C<s>
8314 is considered to be in UTF-8 and the
8315 C<SVf_UTF8> flag will be set on the new SV.
8316 C<newSVpvn_utf8()> is a convenience wrapper for this function, defined as
8317
8318     #define newSVpvn_utf8(s, len, u)                    \
8319         newSVpvn_flags((s), (len), (u) ? SVf_UTF8 : 0)
8320
8321 =cut
8322 */
8323
8324 SV *
8325 Perl_newSVpvn_flags(pTHX_ const char *const s, const STRLEN len, const U32 flags)
8326 {
8327     dVAR;
8328     SV *sv;
8329
8330     /* All the flags we don't support must be zero.
8331        And we're new code so I'm going to assert this from the start.  */
8332     assert(!(flags & ~(SVf_UTF8|SVs_TEMP)));
8333     new_SV(sv);
8334     sv_setpvn(sv,s,len);
8335
8336     /* This code used to a sv_2mortal(), however we now unroll the call to sv_2mortal()
8337      * and do what it does ourselves here.
8338      * Since we have asserted that flags can only have the SVf_UTF8 and/or SVs_TEMP flags
8339      * set above we can use it to enable the sv flags directly (bypassing SvTEMP_on), which
8340      * in turn means we dont need to mask out the SVf_UTF8 flag below, which means that we
8341      * eliminate quite a few steps than it looks - Yves (explaining patch by gfx)
8342      */
8343
8344     SvFLAGS(sv) |= flags;
8345
8346     if(flags & SVs_TEMP){
8347         PUSH_EXTEND_MORTAL__SV_C(sv);
8348     }
8349
8350     return sv;
8351 }
8352
8353 /*
8354 =for apidoc sv_2mortal
8355
8356 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
8357 by an explicit call to FREETMPS, or by an implicit call at places such as
8358 statement boundaries.  SvTEMP() is turned on which means that the SV's
8359 string buffer can be "stolen" if this SV is copied.  See also C<sv_newmortal>
8360 and C<sv_mortalcopy>.
8361
8362 =cut
8363 */
8364
8365 SV *
8366 Perl_sv_2mortal(pTHX_ register SV *const sv)
8367 {
8368     dVAR;
8369     if (!sv)
8370         return NULL;
8371     if (SvREADONLY(sv) && SvIMMORTAL(sv))
8372         return sv;
8373     PUSH_EXTEND_MORTAL__SV_C(sv);
8374     SvTEMP_on(sv);
8375     return sv;
8376 }
8377
8378 /*
8379 =for apidoc newSVpv
8380
8381 Creates a new SV and copies a string into it.  The reference count for the
8382 SV is set to 1.  If C<len> is zero, Perl will compute the length using
8383 strlen().  For efficiency, consider using C<newSVpvn> instead.
8384
8385 =cut
8386 */
8387
8388 SV *
8389 Perl_newSVpv(pTHX_ const char *const s, const STRLEN len)
8390 {
8391     dVAR;
8392     SV *sv;
8393
8394     new_SV(sv);
8395     sv_setpvn(sv, s, len || s == NULL ? len : strlen(s));
8396     return sv;
8397 }
8398
8399 /*
8400 =for apidoc newSVpvn
8401
8402 Creates a new SV and copies a buffer into it, which may contain NUL characters
8403 (C<\0>) and other binary data.  The reference count for the SV is set to 1.
8404 Note that if C<len> is zero, Perl will create a zero length (Perl) string.  You
8405 are responsible for ensuring that the source buffer is at least
8406 C<len> bytes long.  If the C<buffer> argument is NULL the new SV will be
8407 undefined.
8408
8409 =cut
8410 */
8411
8412 SV *
8413 Perl_newSVpvn(pTHX_ const char *const buffer, const STRLEN len)
8414 {
8415     dVAR;
8416     SV *sv;
8417
8418     new_SV(sv);
8419     sv_setpvn(sv,buffer,len);
8420     return sv;
8421 }
8422
8423 /*
8424 =for apidoc newSVhek
8425
8426 Creates a new SV from the hash key structure.  It will generate scalars that
8427 point to the shared string table where possible.  Returns a new (undefined)
8428 SV if the hek is NULL.
8429
8430 =cut
8431 */
8432
8433 SV *
8434 Perl_newSVhek(pTHX_ const HEK *const hek)
8435 {
8436     dVAR;
8437     if (!hek) {
8438         SV *sv;
8439
8440         new_SV(sv);
8441         return sv;
8442     }
8443
8444     if (HEK_LEN(hek) == HEf_SVKEY) {
8445         return newSVsv(*(SV**)HEK_KEY(hek));
8446     } else {
8447         const int flags = HEK_FLAGS(hek);
8448         if (flags & HVhek_WASUTF8) {
8449             /* Trouble :-)
8450                Andreas would like keys he put in as utf8 to come back as utf8
8451             */
8452             STRLEN utf8_len = HEK_LEN(hek);
8453             SV * const sv = newSV_type(SVt_PV);
8454             char *as_utf8 = (char *)bytes_to_utf8 ((U8*)HEK_KEY(hek), &utf8_len);
8455             /* bytes_to_utf8() allocates a new string, which we can repurpose: */
8456             sv_usepvn_flags(sv, as_utf8, utf8_len, SV_HAS_TRAILING_NUL);
8457             SvUTF8_on (sv);
8458             return sv;
8459         } else if (flags & (HVhek_REHASH|HVhek_UNSHARED)) {
8460             /* We don't have a pointer to the hv, so we have to replicate the
8461                flag into every HEK. This hv is using custom a hasing
8462                algorithm. Hence we can't return a shared string scalar, as
8463                that would contain the (wrong) hash value, and might get passed
8464                into an hv routine with a regular hash.
8465                Similarly, a hash that isn't using shared hash keys has to have
8466                the flag in every key so that we know not to try to call
8467                share_hek_hek on it.  */
8468
8469             SV * const sv = newSVpvn (HEK_KEY(hek), HEK_LEN(hek));
8470             if (HEK_UTF8(hek))
8471                 SvUTF8_on (sv);
8472             return sv;
8473         }
8474         /* This will be overwhelminly the most common case.  */
8475         {
8476             /* Inline most of newSVpvn_share(), because share_hek_hek() is far
8477                more efficient than sharepvn().  */
8478             SV *sv;
8479
8480             new_SV(sv);
8481             sv_upgrade(sv, SVt_PV);
8482             SvPV_set(sv, (char *)HEK_KEY(share_hek_hek(hek)));
8483             SvCUR_set(sv, HEK_LEN(hek));
8484             SvLEN_set(sv, 0);
8485             SvREADONLY_on(sv);
8486             SvFAKE_on(sv);
8487             SvPOK_on(sv);
8488             if (HEK_UTF8(hek))
8489                 SvUTF8_on(sv);
8490             return sv;
8491         }
8492     }
8493 }
8494
8495 /*
8496 =for apidoc newSVpvn_share
8497
8498 Creates a new SV with its SvPVX_const pointing to a shared string in the string
8499 table.  If the string does not already exist in the table, it is
8500 created first.  Turns on READONLY and FAKE.  If the C<hash> parameter
8501 is non-zero, that value is used; otherwise the hash is computed.
8502 The string's hash can later be retrieved from the SV
8503 with the C<SvSHARED_HASH()> macro.  The idea here is
8504 that as the string table is used for shared hash keys these strings will have
8505 SvPVX_const == HeKEY and hash lookup will avoid string compare.
8506
8507 =cut
8508 */
8509
8510 SV *
8511 Perl_newSVpvn_share(pTHX_ const char *src, I32 len, U32 hash)
8512 {
8513     dVAR;
8514     SV *sv;
8515     bool is_utf8 = FALSE;
8516     const char *const orig_src = src;
8517
8518     if (len < 0) {
8519         STRLEN tmplen = -len;
8520         is_utf8 = TRUE;
8521         /* See the note in hv.c:hv_fetch() --jhi */
8522         src = (char*)bytes_from_utf8((const U8*)src, &tmplen, &is_utf8);
8523         len = tmplen;
8524     }
8525     if (!hash)
8526         PERL_HASH(hash, src, len);
8527     new_SV(sv);
8528     /* The logic for this is inlined in S_mro_get_linear_isa_dfs(), so if it
8529        changes here, update it there too.  */
8530     sv_upgrade(sv, SVt_PV);
8531     SvPV_set(sv, sharepvn(src, is_utf8?-len:len, hash));
8532     SvCUR_set(sv, len);
8533     SvLEN_set(sv, 0);
8534     SvREADONLY_on(sv);
8535     SvFAKE_on(sv);
8536     SvPOK_on(sv);
8537     if (is_utf8)
8538         SvUTF8_on(sv);
8539     if (src != orig_src)
8540         Safefree(src);
8541     return sv;
8542 }
8543
8544 /*
8545 =for apidoc newSVpv_share
8546
8547 Like C<newSVpvn_share>, but takes a nul-terminated string instead of a
8548 string/length pair.
8549
8550 =cut
8551 */
8552
8553 SV *
8554 Perl_newSVpv_share(pTHX_ const char *src, U32 hash)
8555 {
8556     return newSVpvn_share(src, strlen(src), hash);
8557 }
8558
8559 #if defined(PERL_IMPLICIT_CONTEXT)
8560
8561 /* pTHX_ magic can't cope with varargs, so this is a no-context
8562  * version of the main function, (which may itself be aliased to us).
8563  * Don't access this version directly.
8564  */
8565
8566 SV *
8567 Perl_newSVpvf_nocontext(const char *const pat, ...)
8568 {
8569     dTHX;
8570     SV *sv;
8571     va_list args;
8572
8573     PERL_ARGS_ASSERT_NEWSVPVF_NOCONTEXT;
8574
8575     va_start(args, pat);
8576     sv = vnewSVpvf(pat, &args);
8577     va_end(args);
8578     return sv;
8579 }
8580 #endif
8581
8582 /*
8583 =for apidoc newSVpvf
8584
8585 Creates a new SV and initializes it with the string formatted like
8586 C<sprintf>.
8587
8588 =cut
8589 */
8590
8591 SV *
8592 Perl_newSVpvf(pTHX_ const char *const pat, ...)
8593 {
8594     SV *sv;
8595     va_list args;
8596
8597     PERL_ARGS_ASSERT_NEWSVPVF;
8598
8599     va_start(args, pat);
8600     sv = vnewSVpvf(pat, &args);
8601     va_end(args);
8602     return sv;
8603 }
8604
8605 /* backend for newSVpvf() and newSVpvf_nocontext() */
8606
8607 SV *
8608 Perl_vnewSVpvf(pTHX_ const char *const pat, va_list *const args)
8609 {
8610     dVAR;
8611     SV *sv;
8612
8613     PERL_ARGS_ASSERT_VNEWSVPVF;
8614
8615     new_SV(sv);
8616     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
8617     return sv;
8618 }
8619
8620 /*
8621 =for apidoc newSVnv
8622
8623 Creates a new SV and copies a floating point value into it.
8624 The reference count for the SV is set to 1.
8625
8626 =cut
8627 */
8628
8629 SV *
8630 Perl_newSVnv(pTHX_ const NV n)
8631 {
8632     dVAR;
8633     SV *sv;
8634
8635     new_SV(sv);
8636     sv_setnv(sv,n);
8637     return sv;
8638 }
8639
8640 /*
8641 =for apidoc newSViv
8642
8643 Creates a new SV and copies an integer into it.  The reference count for the
8644 SV is set to 1.
8645
8646 =cut
8647 */
8648
8649 SV *
8650 Perl_newSViv(pTHX_ const IV i)
8651 {
8652     dVAR;
8653     SV *sv;
8654
8655     new_SV(sv);
8656     sv_setiv(sv,i);
8657     return sv;
8658 }
8659
8660 /*
8661 =for apidoc newSVuv
8662
8663 Creates a new SV and copies an unsigned integer into it.
8664 The reference count for the SV is set to 1.
8665
8666 =cut
8667 */
8668
8669 SV *
8670 Perl_newSVuv(pTHX_ const UV u)
8671 {
8672     dVAR;
8673     SV *sv;
8674
8675     new_SV(sv);
8676     sv_setuv(sv,u);
8677     return sv;
8678 }
8679
8680 /*
8681 =for apidoc newSV_type
8682
8683 Creates a new SV, of the type specified.  The reference count for the new SV
8684 is set to 1.
8685
8686 =cut
8687 */
8688
8689 SV *
8690 Perl_newSV_type(pTHX_ const svtype type)
8691 {
8692     SV *sv;
8693
8694     new_SV(sv);
8695     sv_upgrade(sv, type);
8696     return sv;
8697 }
8698
8699 /*
8700 =for apidoc newRV_noinc
8701
8702 Creates an RV wrapper for an SV.  The reference count for the original
8703 SV is B<not> incremented.
8704
8705 =cut
8706 */
8707
8708 SV *
8709 Perl_newRV_noinc(pTHX_ SV *const tmpRef)
8710 {
8711     dVAR;
8712     SV *sv = newSV_type(SVt_IV);
8713
8714     PERL_ARGS_ASSERT_NEWRV_NOINC;
8715
8716     SvTEMP_off(tmpRef);
8717     SvRV_set(sv, tmpRef);
8718     SvROK_on(sv);
8719     return sv;
8720 }
8721
8722 /* newRV_inc is the official function name to use now.
8723  * newRV_inc is in fact #defined to newRV in sv.h
8724  */
8725
8726 SV *
8727 Perl_newRV(pTHX_ SV *const sv)
8728 {
8729     dVAR;
8730
8731     PERL_ARGS_ASSERT_NEWRV;
8732
8733     return newRV_noinc(SvREFCNT_inc_simple_NN(sv));
8734 }
8735
8736 /*
8737 =for apidoc newSVsv
8738
8739 Creates a new SV which is an exact duplicate of the original SV.
8740 (Uses C<sv_setsv>.)
8741
8742 =cut
8743 */
8744
8745 SV *
8746 Perl_newSVsv(pTHX_ register SV *const old)
8747 {
8748     dVAR;
8749     SV *sv;
8750
8751     if (!old)
8752         return NULL;
8753     if (SvTYPE(old) == (svtype)SVTYPEMASK) {
8754         Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL), "semi-panic: attempt to dup freed string");
8755         return NULL;
8756     }
8757     /* Do this here, otherwise we leak the new SV if this croaks. */
8758     SvGETMAGIC(old);
8759     new_SV(sv);
8760     /* SV_NOSTEAL prevents TEMP buffers being, well, stolen, and saves games
8761        with SvTEMP_off and SvTEMP_on round a call to sv_setsv.  */
8762     sv_setsv_flags(sv, old, SV_NOSTEAL);
8763     return sv;
8764 }
8765
8766 /*
8767 =for apidoc sv_reset
8768
8769 Underlying implementation for the C<reset> Perl function.
8770 Note that the perl-level function is vaguely deprecated.
8771
8772 =cut
8773 */
8774
8775 void
8776 Perl_sv_reset(pTHX_ register const char *s, HV *const stash)
8777 {
8778     PERL_ARGS_ASSERT_SV_RESET;
8779
8780     sv_resetpvn(*s ? s : NULL, strlen(s), stash);
8781 }
8782
8783 void
8784 Perl_sv_resetpvn(pTHX_ const char *s, STRLEN len, HV * const stash)
8785 {
8786     dVAR;
8787     char todo[PERL_UCHAR_MAX+1];
8788     const char *send;
8789
8790     if (!stash)
8791         return;
8792
8793     if (!s) {           /* reset ?? searches */
8794         MAGIC * const mg = mg_find((const SV *)stash, PERL_MAGIC_symtab);
8795         if (mg) {
8796             const U32 count = mg->mg_len / sizeof(PMOP**);
8797             PMOP **pmp = (PMOP**) mg->mg_ptr;
8798             PMOP *const *const end = pmp + count;
8799
8800             while (pmp < end) {
8801 #ifdef USE_ITHREADS
8802                 SvREADONLY_off(PL_regex_pad[(*pmp)->op_pmoffset]);
8803 #else
8804                 (*pmp)->op_pmflags &= ~PMf_USED;
8805 #endif
8806                 ++pmp;
8807             }
8808         }
8809         return;
8810     }
8811
8812     /* reset variables */
8813
8814     if (!HvARRAY(stash))
8815         return;
8816
8817     Zero(todo, 256, char);
8818     send = s + len;
8819     while (s < send) {
8820         I32 max;
8821         I32 i = (unsigned char)*s;
8822         if (s[1] == '-') {
8823             s += 2;
8824         }
8825         max = (unsigned char)*s++;
8826         for ( ; i <= max; i++) {
8827             todo[i] = 1;
8828         }
8829         for (i = 0; i <= (I32) HvMAX(stash); i++) {
8830             HE *entry;
8831             for (entry = HvARRAY(stash)[i];
8832                  entry;
8833                  entry = HeNEXT(entry))
8834             {
8835                 GV *gv;
8836                 SV *sv;
8837
8838                 if (!todo[(U8)*HeKEY(entry)])
8839                     continue;
8840                 gv = MUTABLE_GV(HeVAL(entry));
8841                 sv = GvSV(gv);
8842                 if (sv) {
8843                     if (SvTHINKFIRST(sv)) {
8844                         if (!SvREADONLY(sv) && SvROK(sv))
8845                             sv_unref(sv);
8846                         /* XXX Is this continue a bug? Why should THINKFIRST
8847                            exempt us from resetting arrays and hashes?  */
8848                         continue;
8849                     }
8850                     SvOK_off(sv);
8851                     if (SvTYPE(sv) >= SVt_PV) {
8852                         SvCUR_set(sv, 0);
8853                         if (SvPVX_const(sv) != NULL)
8854                             *SvPVX(sv) = '\0';
8855                         SvTAINT(sv);
8856                     }
8857                 }
8858                 if (GvAV(gv)) {
8859                     av_clear(GvAV(gv));
8860                 }
8861                 if (GvHV(gv) && !HvNAME_get(GvHV(gv))) {
8862 #if defined(VMS)
8863                     Perl_die(aTHX_ "Can't reset %%ENV on this system");
8864 #else /* ! VMS */
8865                     hv_clear(GvHV(gv));
8866 #  if defined(USE_ENVIRON_ARRAY)
8867                     if (gv == PL_envgv)
8868                         my_clearenv();
8869 #  endif /* USE_ENVIRON_ARRAY */
8870 #endif /* VMS */
8871                 }
8872             }
8873         }
8874     }
8875 }
8876
8877 /*
8878 =for apidoc sv_2io
8879
8880 Using various gambits, try to get an IO from an SV: the IO slot if its a
8881 GV; or the recursive result if we're an RV; or the IO slot of the symbol
8882 named after the PV if we're a string.
8883
8884 'Get' magic is ignored on the sv passed in, but will be called on
8885 C<SvRV(sv)> if sv is an RV.
8886
8887 =cut
8888 */
8889
8890 IO*
8891 Perl_sv_2io(pTHX_ SV *const sv)
8892 {
8893     IO* io;
8894     GV* gv;
8895
8896     PERL_ARGS_ASSERT_SV_2IO;
8897
8898     switch (SvTYPE(sv)) {
8899     case SVt_PVIO:
8900         io = MUTABLE_IO(sv);
8901         break;
8902     case SVt_PVGV:
8903     case SVt_PVLV:
8904         if (isGV_with_GP(sv)) {
8905             gv = MUTABLE_GV(sv);
8906             io = GvIO(gv);
8907             if (!io)
8908                 Perl_croak(aTHX_ "Bad filehandle: %"HEKf,
8909                                     HEKfARG(GvNAME_HEK(gv)));
8910             break;
8911         }
8912         /* FALL THROUGH */
8913     default:
8914         if (!SvOK(sv))
8915             Perl_croak(aTHX_ PL_no_usym, "filehandle");
8916         if (SvROK(sv)) {
8917             SvGETMAGIC(SvRV(sv));
8918             return sv_2io(SvRV(sv));
8919         }
8920         gv = gv_fetchsv_nomg(sv, 0, SVt_PVIO);
8921         if (gv)
8922             io = GvIO(gv);
8923         else
8924             io = 0;
8925         if (!io) {
8926             SV *newsv = sv;
8927             if (SvGMAGICAL(sv)) {
8928                 newsv = sv_newmortal();
8929                 sv_setsv_nomg(newsv, sv);
8930             }
8931             Perl_croak(aTHX_ "Bad filehandle: %"SVf, SVfARG(newsv));
8932         }
8933         break;
8934     }
8935     return io;
8936 }
8937
8938 /*
8939 =for apidoc sv_2cv
8940
8941 Using various gambits, try to get a CV from an SV; in addition, try if
8942 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
8943 The flags in C<lref> are passed to gv_fetchsv.
8944
8945 =cut
8946 */
8947
8948 CV *
8949 Perl_sv_2cv(pTHX_ SV *sv, HV **const st, GV **const gvp, const I32 lref)
8950 {
8951     dVAR;
8952     GV *gv = NULL;
8953     CV *cv = NULL;
8954
8955     PERL_ARGS_ASSERT_SV_2CV;
8956
8957     if (!sv) {
8958         *st = NULL;
8959         *gvp = NULL;
8960         return NULL;
8961     }
8962     switch (SvTYPE(sv)) {
8963     case SVt_PVCV:
8964         *st = CvSTASH(sv);
8965         *gvp = NULL;
8966         return MUTABLE_CV(sv);
8967     case SVt_PVHV:
8968     case SVt_PVAV:
8969         *st = NULL;
8970         *gvp = NULL;
8971         return NULL;
8972     default:
8973         SvGETMAGIC(sv);
8974         if (SvROK(sv)) {
8975             if (SvAMAGIC(sv))
8976                 sv = amagic_deref_call(sv, to_cv_amg);
8977
8978             sv = SvRV(sv);
8979             if (SvTYPE(sv) == SVt_PVCV) {
8980                 cv = MUTABLE_CV(sv);
8981                 *gvp = NULL;
8982                 *st = CvSTASH(cv);
8983                 return cv;
8984             }
8985             else if(SvGETMAGIC(sv), isGV_with_GP(sv))
8986                 gv = MUTABLE_GV(sv);
8987             else
8988                 Perl_croak(aTHX_ "Not a subroutine reference");
8989         }
8990         else if (isGV_with_GP(sv)) {
8991             gv = MUTABLE_GV(sv);
8992         }
8993         else {
8994             gv = gv_fetchsv_nomg(sv, lref, SVt_PVCV);
8995         }
8996         *gvp = gv;
8997         if (!gv) {
8998             *st = NULL;
8999             return NULL;
9000         }
9001         /* Some flags to gv_fetchsv mean don't really create the GV  */
9002         if (!isGV_with_GP(gv)) {
9003             *st = NULL;
9004             return NULL;
9005         }
9006         *st = GvESTASH(gv);
9007         if (lref & ~GV_ADDMG && !GvCVu(gv)) {
9008             /* XXX this is probably not what they think they're getting.
9009              * It has the same effect as "sub name;", i.e. just a forward
9010              * declaration! */
9011             newSTUB(gv,0);
9012         }
9013         return GvCVu(gv);
9014     }
9015 }
9016
9017 /*
9018 =for apidoc sv_true
9019
9020 Returns true if the SV has a true value by Perl's rules.
9021 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
9022 instead use an in-line version.
9023
9024 =cut
9025 */
9026
9027 I32
9028 Perl_sv_true(pTHX_ register SV *const sv)
9029 {
9030     if (!sv)
9031         return 0;
9032     if (SvPOK(sv)) {
9033         const XPV* const tXpv = (XPV*)SvANY(sv);
9034         if (tXpv &&
9035                 (tXpv->xpv_cur > 1 ||
9036                 (tXpv->xpv_cur && *sv->sv_u.svu_pv != '0')))
9037             return 1;
9038         else
9039             return 0;
9040     }
9041     else {
9042         if (SvIOK(sv))
9043             return SvIVX(sv) != 0;
9044         else {
9045             if (SvNOK(sv))
9046                 return SvNVX(sv) != 0.0;
9047             else
9048                 return sv_2bool(sv);
9049         }
9050     }
9051 }
9052
9053 /*
9054 =for apidoc sv_pvn_force
9055
9056 Get a sensible string out of the SV somehow.
9057 A private implementation of the C<SvPV_force> macro for compilers which
9058 can't cope with complex macro expressions.  Always use the macro instead.
9059
9060 =for apidoc sv_pvn_force_flags
9061
9062 Get a sensible string out of the SV somehow.
9063 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
9064 appropriate, else not.  C<sv_pvn_force> and C<sv_pvn_force_nomg> are
9065 implemented in terms of this function.
9066 You normally want to use the various wrapper macros instead: see
9067 C<SvPV_force> and C<SvPV_force_nomg>
9068
9069 =cut
9070 */
9071
9072 char *
9073 Perl_sv_pvn_force_flags(pTHX_ SV *const sv, STRLEN *const lp, const I32 flags)
9074 {
9075     dVAR;
9076
9077     PERL_ARGS_ASSERT_SV_PVN_FORCE_FLAGS;
9078
9079     if (flags & SV_GMAGIC) SvGETMAGIC(sv);
9080     if (SvTHINKFIRST(sv) && !SvROK(sv))
9081         sv_force_normal_flags(sv, 0);
9082
9083     if (SvPOK(sv)) {
9084         if (lp)
9085             *lp = SvCUR(sv);
9086     }
9087     else {
9088         char *s;
9089         STRLEN len;
9090  
9091         if (SvREADONLY(sv) && !(flags & SV_MUTABLE_RETURN)) {
9092             const char * const ref = sv_reftype(sv,0);
9093             if (PL_op)
9094                 Perl_croak(aTHX_ "Can't coerce readonly %s to string in %s",
9095                            ref, OP_DESC(PL_op));
9096             else
9097                 Perl_croak(aTHX_ "Can't coerce readonly %s to string", ref);
9098         }
9099         if (SvTYPE(sv) > SVt_PVLV
9100             || isGV_with_GP(sv))
9101             /* diag_listed_as: Can't coerce %s to %s in %s */
9102             Perl_croak(aTHX_ "Can't coerce %s to string in %s", sv_reftype(sv,0),
9103                 OP_DESC(PL_op));
9104         s = sv_2pv_flags(sv, &len, flags &~ SV_GMAGIC);
9105         if (!s) {
9106           s = (char *)"";
9107         }
9108         if (lp)
9109             *lp = len;
9110
9111         if (s != SvPVX_const(sv)) {     /* Almost, but not quite, sv_setpvn() */
9112             if (SvROK(sv))
9113                 sv_unref(sv);
9114             SvUPGRADE(sv, SVt_PV);              /* Never FALSE */
9115             SvGROW(sv, len + 1);
9116             Move(s,SvPVX(sv),len,char);
9117             SvCUR_set(sv, len);
9118             SvPVX(sv)[len] = '\0';
9119         }
9120         if (!SvPOK(sv)) {
9121             SvPOK_on(sv);               /* validate pointer */
9122             SvTAINT(sv);
9123             DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2pv(%s)\n",
9124                                   PTR2UV(sv),SvPVX_const(sv)));
9125         }
9126     }
9127     (void)SvPOK_only_UTF8(sv);
9128     return SvPVX_mutable(sv);
9129 }
9130
9131 /*
9132 =for apidoc sv_pvbyten_force
9133
9134 The backend for the C<SvPVbytex_force> macro.  Always use the macro
9135 instead.
9136
9137 =cut
9138 */
9139
9140 char *
9141 Perl_sv_pvbyten_force(pTHX_ SV *const sv, STRLEN *const lp)
9142 {
9143     PERL_ARGS_ASSERT_SV_PVBYTEN_FORCE;
9144
9145     sv_pvn_force(sv,lp);
9146     sv_utf8_downgrade(sv,0);
9147     *lp = SvCUR(sv);
9148     return SvPVX(sv);
9149 }
9150
9151 /*
9152 =for apidoc sv_pvutf8n_force
9153
9154 The backend for the C<SvPVutf8x_force> macro.  Always use the macro
9155 instead.
9156
9157 =cut
9158 */
9159
9160 char *
9161 Perl_sv_pvutf8n_force(pTHX_ SV *const sv, STRLEN *const lp)
9162 {
9163     PERL_ARGS_ASSERT_SV_PVUTF8N_FORCE;
9164
9165     sv_pvn_force(sv,0);
9166     sv_utf8_upgrade_nomg(sv);
9167     *lp = SvCUR(sv);
9168     return SvPVX(sv);
9169 }
9170
9171 /*
9172 =for apidoc sv_reftype
9173
9174 Returns a string describing what the SV is a reference to.
9175
9176 =cut
9177 */
9178
9179 const char *
9180 Perl_sv_reftype(pTHX_ const SV *const sv, const int ob)
9181 {
9182     PERL_ARGS_ASSERT_SV_REFTYPE;
9183     if (ob && SvOBJECT(sv)) {
9184         return SvPV_nolen_const(sv_ref(NULL, sv, ob));
9185     }
9186     else {
9187         switch (SvTYPE(sv)) {
9188         case SVt_NULL:
9189         case SVt_IV:
9190         case SVt_NV:
9191         case SVt_PV:
9192         case SVt_PVIV:
9193         case SVt_PVNV:
9194         case SVt_PVMG:
9195                                 if (SvVOK(sv))
9196                                     return "VSTRING";
9197                                 if (SvROK(sv))
9198                                     return "REF";
9199                                 else
9200                                     return "SCALAR";
9201
9202         case SVt_PVLV:          return (char *)  (SvROK(sv) ? "REF"
9203                                 /* tied lvalues should appear to be
9204                                  * scalars for backwards compatibility */
9205                                 : (LvTYPE(sv) == 't' || LvTYPE(sv) == 'T')
9206                                     ? "SCALAR" : "LVALUE");
9207         case SVt_PVAV:          return "ARRAY";
9208         case SVt_PVHV:          return "HASH";
9209         case SVt_PVCV:          return "CODE";
9210         case SVt_PVGV:          return (char *) (isGV_with_GP(sv)
9211                                     ? "GLOB" : "SCALAR");
9212         case SVt_PVFM:          return "FORMAT";
9213         case SVt_PVIO:          return "IO";
9214         case SVt_BIND:          return "BIND";
9215         case SVt_REGEXP:        return "REGEXP";
9216         default:                return "UNKNOWN";
9217         }
9218     }
9219 }
9220
9221 /*
9222 =for apidoc sv_ref
9223
9224 Returns a SV describing what the SV passed in is a reference to.
9225
9226 =cut
9227 */
9228
9229 SV *
9230 Perl_sv_ref(pTHX_ register SV *dst, const SV *const sv, const int ob)
9231 {
9232     PERL_ARGS_ASSERT_SV_REF;
9233
9234     if (!dst)
9235         dst = sv_newmortal();
9236
9237     if (ob && SvOBJECT(sv)) {
9238         HvNAME_get(SvSTASH(sv))
9239                     ? sv_sethek(dst, HvNAME_HEK(SvSTASH(sv)))
9240                     : sv_setpvn(dst, "__ANON__", 8);
9241     }
9242     else {
9243         const char * reftype = sv_reftype(sv, 0);
9244         sv_setpv(dst, reftype);
9245     }
9246     return dst;
9247 }
9248
9249 /*
9250 =for apidoc sv_isobject
9251
9252 Returns a boolean indicating whether the SV is an RV pointing to a blessed
9253 object.  If the SV is not an RV, or if the object is not blessed, then this
9254 will return false.
9255
9256 =cut
9257 */
9258
9259 int
9260 Perl_sv_isobject(pTHX_ SV *sv)
9261 {
9262     if (!sv)
9263         return 0;
9264     SvGETMAGIC(sv);
9265     if (!SvROK(sv))
9266         return 0;
9267     sv = SvRV(sv);
9268     if (!SvOBJECT(sv))
9269         return 0;
9270     return 1;
9271 }
9272
9273 /*
9274 =for apidoc sv_isa
9275
9276 Returns a boolean indicating whether the SV is blessed into the specified
9277 class.  This does not check for subtypes; use C<sv_derived_from> to verify
9278 an inheritance relationship.
9279
9280 =cut
9281 */
9282
9283 int
9284 Perl_sv_isa(pTHX_ SV *sv, const char *const name)
9285 {
9286     const char *hvname;
9287
9288     PERL_ARGS_ASSERT_SV_ISA;
9289
9290     if (!sv)
9291         return 0;
9292     SvGETMAGIC(sv);
9293     if (!SvROK(sv))
9294         return 0;
9295     sv = SvRV(sv);
9296     if (!SvOBJECT(sv))
9297         return 0;
9298     hvname = HvNAME_get(SvSTASH(sv));
9299     if (!hvname)
9300         return 0;
9301
9302     return strEQ(hvname, name);
9303 }
9304
9305 /*
9306 =for apidoc newSVrv
9307
9308 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
9309 it will be upgraded to one.  If C<classname> is non-null then the new SV will
9310 be blessed in the specified package.  The new SV is returned and its
9311 reference count is 1.
9312
9313 =cut
9314 */
9315
9316 SV*
9317 Perl_newSVrv(pTHX_ SV *const rv, const char *const classname)
9318 {
9319     dVAR;
9320     SV *sv;
9321
9322     PERL_ARGS_ASSERT_NEWSVRV;
9323
9324     new_SV(sv);
9325
9326     SV_CHECK_THINKFIRST_COW_DROP(rv);
9327
9328     if (SvTYPE(rv) >= SVt_PVMG) {
9329         const U32 refcnt = SvREFCNT(rv);
9330         SvREFCNT(rv) = 0;
9331         sv_clear(rv);
9332         SvFLAGS(rv) = 0;
9333         SvREFCNT(rv) = refcnt;
9334
9335         sv_upgrade(rv, SVt_IV);
9336     } else if (SvROK(rv)) {
9337         SvREFCNT_dec(SvRV(rv));
9338     } else {
9339         prepare_SV_for_RV(rv);
9340     }
9341
9342     SvOK_off(rv);
9343     SvRV_set(rv, sv);
9344     SvROK_on(rv);
9345
9346     if (classname) {
9347         HV* const stash = gv_stashpv(classname, GV_ADD);
9348         (void)sv_bless(rv, stash);
9349     }
9350     return sv;
9351 }
9352
9353 /*
9354 =for apidoc sv_setref_pv
9355
9356 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
9357 argument will be upgraded to an RV.  That RV will be modified to point to
9358 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
9359 into the SV.  The C<classname> argument indicates the package for the
9360 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9361 will have a reference count of 1, and the RV will be returned.
9362
9363 Do not use with other Perl types such as HV, AV, SV, CV, because those
9364 objects will become corrupted by the pointer copy process.
9365
9366 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
9367
9368 =cut
9369 */
9370
9371 SV*
9372 Perl_sv_setref_pv(pTHX_ SV *const rv, const char *const classname, void *const pv)
9373 {
9374     dVAR;
9375
9376     PERL_ARGS_ASSERT_SV_SETREF_PV;
9377
9378     if (!pv) {
9379         sv_setsv(rv, &PL_sv_undef);
9380         SvSETMAGIC(rv);
9381     }
9382     else
9383         sv_setiv(newSVrv(rv,classname), PTR2IV(pv));
9384     return rv;
9385 }
9386
9387 /*
9388 =for apidoc sv_setref_iv
9389
9390 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
9391 argument will be upgraded to an RV.  That RV will be modified to point to
9392 the new SV.  The C<classname> argument indicates the package for the
9393 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9394 will have a reference count of 1, and the RV will be returned.
9395
9396 =cut
9397 */
9398
9399 SV*
9400 Perl_sv_setref_iv(pTHX_ SV *const rv, const char *const classname, const IV iv)
9401 {
9402     PERL_ARGS_ASSERT_SV_SETREF_IV;
9403
9404     sv_setiv(newSVrv(rv,classname), iv);
9405     return rv;
9406 }
9407
9408 /*
9409 =for apidoc sv_setref_uv
9410
9411 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
9412 argument will be upgraded to an RV.  That RV will be modified to point to
9413 the new SV.  The C<classname> argument indicates the package for the
9414 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9415 will have a reference count of 1, and the RV will be returned.
9416
9417 =cut
9418 */
9419
9420 SV*
9421 Perl_sv_setref_uv(pTHX_ SV *const rv, const char *const classname, const UV uv)
9422 {
9423     PERL_ARGS_ASSERT_SV_SETREF_UV;
9424
9425     sv_setuv(newSVrv(rv,classname), uv);
9426     return rv;
9427 }
9428
9429 /*
9430 =for apidoc sv_setref_nv
9431
9432 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
9433 argument will be upgraded to an RV.  That RV will be modified to point to
9434 the new SV.  The C<classname> argument indicates the package for the
9435 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
9436 will have a reference count of 1, and the RV will be returned.
9437
9438 =cut
9439 */
9440
9441 SV*
9442 Perl_sv_setref_nv(pTHX_ SV *const rv, const char *const classname, const NV nv)
9443 {
9444     PERL_ARGS_ASSERT_SV_SETREF_NV;
9445
9446     sv_setnv(newSVrv(rv,classname), nv);
9447     return rv;
9448 }
9449
9450 /*
9451 =for apidoc sv_setref_pvn
9452
9453 Copies a string into a new SV, optionally blessing the SV.  The length of the
9454 string must be specified with C<n>.  The C<rv> argument will be upgraded to
9455 an RV.  That RV will be modified to point to the new SV.  The C<classname>
9456 argument indicates the package for the blessing.  Set C<classname> to
9457 C<NULL> to avoid the blessing.  The new SV will have a reference count
9458 of 1, and the RV will be returned.
9459
9460 Note that C<sv_setref_pv> copies the pointer while this copies the string.
9461
9462 =cut
9463 */
9464
9465 SV*
9466 Perl_sv_setref_pvn(pTHX_ SV *const rv, const char *const classname,
9467                    const char *const pv, const STRLEN n)
9468 {
9469     PERL_ARGS_ASSERT_SV_SETREF_PVN;
9470
9471     sv_setpvn(newSVrv(rv,classname), pv, n);
9472     return rv;
9473 }
9474
9475 /*
9476 =for apidoc sv_bless
9477
9478 Blesses an SV into a specified package.  The SV must be an RV.  The package
9479 must be designated by its stash (see C<gv_stashpv()>).  The reference count
9480 of the SV is unaffected.
9481
9482 =cut
9483 */
9484
9485 SV*
9486 Perl_sv_bless(pTHX_ SV *const sv, HV *const stash)
9487 {
9488     dVAR;
9489     SV *tmpRef;
9490
9491     PERL_ARGS_ASSERT_SV_BLESS;
9492
9493     if (!SvROK(sv))
9494         Perl_croak(aTHX_ "Can't bless non-reference value");
9495     tmpRef = SvRV(sv);
9496     if (SvFLAGS(tmpRef) & (SVs_OBJECT|SVf_READONLY)) {
9497         if (SvREADONLY(tmpRef) && !SvIsCOW(tmpRef))
9498             Perl_croak_no_modify(aTHX);
9499         if (SvOBJECT(tmpRef)) {
9500             if (SvTYPE(tmpRef) != SVt_PVIO)
9501                 --PL_sv_objcount;
9502             SvREFCNT_dec(SvSTASH(tmpRef));
9503         }
9504     }
9505     SvOBJECT_on(tmpRef);
9506     if (SvTYPE(tmpRef) != SVt_PVIO)
9507         ++PL_sv_objcount;
9508     SvUPGRADE(tmpRef, SVt_PVMG);
9509     SvSTASH_set(tmpRef, MUTABLE_HV(SvREFCNT_inc_simple(stash)));
9510
9511     if(SvSMAGICAL(tmpRef))
9512         if(mg_find(tmpRef, PERL_MAGIC_ext) || mg_find(tmpRef, PERL_MAGIC_uvar))
9513             mg_set(tmpRef);
9514
9515
9516
9517     return sv;
9518 }
9519
9520 /* Downgrades a PVGV to a PVMG. If it's actually a PVLV, we leave the type
9521  * as it is after unglobbing it.
9522  */
9523
9524 PERL_STATIC_INLINE void
9525 S_sv_unglob(pTHX_ SV *const sv, U32 flags)
9526 {
9527     dVAR;
9528     void *xpvmg;
9529     HV *stash;
9530     SV * const temp = flags & SV_COW_DROP_PV ? NULL : sv_newmortal();
9531
9532     PERL_ARGS_ASSERT_SV_UNGLOB;
9533
9534     assert(SvTYPE(sv) == SVt_PVGV || SvTYPE(sv) == SVt_PVLV);
9535     SvFAKE_off(sv);
9536     if (!(flags & SV_COW_DROP_PV))
9537         gv_efullname3(temp, MUTABLE_GV(sv), "*");
9538
9539     if (GvGP(sv)) {
9540         if(GvCVu((const GV *)sv) && (stash = GvSTASH(MUTABLE_GV(sv)))
9541            && HvNAME_get(stash))
9542             mro_method_changed_in(stash);
9543         gp_free(MUTABLE_GV(sv));
9544     }
9545     if (GvSTASH(sv)) {
9546         sv_del_backref(MUTABLE_SV(GvSTASH(sv)), sv);
9547         GvSTASH(sv) = NULL;
9548     }
9549     GvMULTI_off(sv);
9550     if (GvNAME_HEK(sv)) {
9551         unshare_hek(GvNAME_HEK(sv));
9552     }
9553     isGV_with_GP_off(sv);
9554
9555     if(SvTYPE(sv) == SVt_PVGV) {
9556         /* need to keep SvANY(sv) in the right arena */
9557         xpvmg = new_XPVMG();
9558         StructCopy(SvANY(sv), xpvmg, XPVMG);
9559         del_XPVGV(SvANY(sv));
9560         SvANY(sv) = xpvmg;
9561
9562         SvFLAGS(sv) &= ~SVTYPEMASK;
9563         SvFLAGS(sv) |= SVt_PVMG;
9564     }
9565
9566     /* Intentionally not calling any local SET magic, as this isn't so much a
9567        set operation as merely an internal storage change.  */
9568     if (flags & SV_COW_DROP_PV) SvOK_off(sv);
9569     else sv_setsv_flags(sv, temp, 0);
9570
9571     if ((const GV *)sv == PL_last_in_gv)
9572         PL_last_in_gv = NULL;
9573     else if ((const GV *)sv == PL_statgv)
9574         PL_statgv = NULL;
9575 }
9576
9577 /*
9578 =for apidoc sv_unref_flags
9579
9580 Unsets the RV status of the SV, and decrements the reference count of
9581 whatever was being referenced by the RV.  This can almost be thought of
9582 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
9583 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
9584 (otherwise the decrementing is conditional on the reference count being
9585 different from one or the reference being a readonly SV).
9586 See C<SvROK_off>.
9587
9588 =cut
9589 */
9590
9591 void
9592 Perl_sv_unref_flags(pTHX_ SV *const ref, const U32 flags)
9593 {
9594     SV* const target = SvRV(ref);
9595
9596     PERL_ARGS_ASSERT_SV_UNREF_FLAGS;
9597
9598     if (SvWEAKREF(ref)) {
9599         sv_del_backref(target, ref);
9600         SvWEAKREF_off(ref);
9601         SvRV_set(ref, NULL);
9602         return;
9603     }
9604     SvRV_set(ref, NULL);
9605     SvROK_off(ref);
9606     /* You can't have a || SvREADONLY(target) here, as $a = $$a, where $a was
9607        assigned to as BEGIN {$a = \"Foo"} will fail.  */
9608     if (SvREFCNT(target) != 1 || (flags & SV_IMMEDIATE_UNREF))
9609         SvREFCNT_dec(target);
9610     else /* XXX Hack, but hard to make $a=$a->[1] work otherwise */
9611         sv_2mortal(target);     /* Schedule for freeing later */
9612 }
9613
9614 /*
9615 =for apidoc sv_untaint
9616
9617 Untaint an SV.  Use C<SvTAINTED_off> instead.
9618
9619 =cut
9620 */
9621
9622 void
9623 Perl_sv_untaint(pTHX_ SV *const sv)
9624 {
9625     PERL_ARGS_ASSERT_SV_UNTAINT;
9626
9627     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9628         MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9629         if (mg)
9630             mg->mg_len &= ~1;
9631     }
9632 }
9633
9634 /*
9635 =for apidoc sv_tainted
9636
9637 Test an SV for taintedness.  Use C<SvTAINTED> instead.
9638
9639 =cut
9640 */
9641
9642 bool
9643 Perl_sv_tainted(pTHX_ SV *const sv)
9644 {
9645     PERL_ARGS_ASSERT_SV_TAINTED;
9646
9647     if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
9648         const MAGIC * const mg = mg_find(sv, PERL_MAGIC_taint);
9649         if (mg && (mg->mg_len & 1) )
9650             return TRUE;
9651     }
9652     return FALSE;
9653 }
9654
9655 /*
9656 =for apidoc sv_setpviv
9657
9658 Copies an integer into the given SV, also updating its string value.
9659 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
9660
9661 =cut
9662 */
9663
9664 void
9665 Perl_sv_setpviv(pTHX_ SV *const sv, const IV iv)
9666 {
9667     char buf[TYPE_CHARS(UV)];
9668     char *ebuf;
9669     char * const ptr = uiv_2buf(buf, iv, 0, 0, &ebuf);
9670
9671     PERL_ARGS_ASSERT_SV_SETPVIV;
9672
9673     sv_setpvn(sv, ptr, ebuf - ptr);
9674 }
9675
9676 /*
9677 =for apidoc sv_setpviv_mg
9678
9679 Like C<sv_setpviv>, but also handles 'set' magic.
9680
9681 =cut
9682 */
9683
9684 void
9685 Perl_sv_setpviv_mg(pTHX_ SV *const sv, const IV iv)
9686 {
9687     PERL_ARGS_ASSERT_SV_SETPVIV_MG;
9688
9689     sv_setpviv(sv, iv);
9690     SvSETMAGIC(sv);
9691 }
9692
9693 #if defined(PERL_IMPLICIT_CONTEXT)
9694
9695 /* pTHX_ magic can't cope with varargs, so this is a no-context
9696  * version of the main function, (which may itself be aliased to us).
9697  * Don't access this version directly.
9698  */
9699
9700 void
9701 Perl_sv_setpvf_nocontext(SV *const sv, const char *const pat, ...)
9702 {
9703     dTHX;
9704     va_list args;
9705
9706     PERL_ARGS_ASSERT_SV_SETPVF_NOCONTEXT;
9707
9708     va_start(args, pat);
9709     sv_vsetpvf(sv, pat, &args);
9710     va_end(args);
9711 }
9712
9713 /* pTHX_ magic can't cope with varargs, so this is a no-context
9714  * version of the main function, (which may itself be aliased to us).
9715  * Don't access this version directly.
9716  */
9717
9718 void
9719 Perl_sv_setpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9720 {
9721     dTHX;
9722     va_list args;
9723
9724     PERL_ARGS_ASSERT_SV_SETPVF_MG_NOCONTEXT;
9725
9726     va_start(args, pat);
9727     sv_vsetpvf_mg(sv, pat, &args);
9728     va_end(args);
9729 }
9730 #endif
9731
9732 /*
9733 =for apidoc sv_setpvf
9734
9735 Works like C<sv_catpvf> but copies the text into the SV instead of
9736 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
9737
9738 =cut
9739 */
9740
9741 void
9742 Perl_sv_setpvf(pTHX_ SV *const sv, const char *const pat, ...)
9743 {
9744     va_list args;
9745
9746     PERL_ARGS_ASSERT_SV_SETPVF;
9747
9748     va_start(args, pat);
9749     sv_vsetpvf(sv, pat, &args);
9750     va_end(args);
9751 }
9752
9753 /*
9754 =for apidoc sv_vsetpvf
9755
9756 Works like C<sv_vcatpvf> but copies the text into the SV instead of
9757 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
9758
9759 Usually used via its frontend C<sv_setpvf>.
9760
9761 =cut
9762 */
9763
9764 void
9765 Perl_sv_vsetpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9766 {
9767     PERL_ARGS_ASSERT_SV_VSETPVF;
9768
9769     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9770 }
9771
9772 /*
9773 =for apidoc sv_setpvf_mg
9774
9775 Like C<sv_setpvf>, but also handles 'set' magic.
9776
9777 =cut
9778 */
9779
9780 void
9781 Perl_sv_setpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9782 {
9783     va_list args;
9784
9785     PERL_ARGS_ASSERT_SV_SETPVF_MG;
9786
9787     va_start(args, pat);
9788     sv_vsetpvf_mg(sv, pat, &args);
9789     va_end(args);
9790 }
9791
9792 /*
9793 =for apidoc sv_vsetpvf_mg
9794
9795 Like C<sv_vsetpvf>, but also handles 'set' magic.
9796
9797 Usually used via its frontend C<sv_setpvf_mg>.
9798
9799 =cut
9800 */
9801
9802 void
9803 Perl_sv_vsetpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9804 {
9805     PERL_ARGS_ASSERT_SV_VSETPVF_MG;
9806
9807     sv_vsetpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9808     SvSETMAGIC(sv);
9809 }
9810
9811 #if defined(PERL_IMPLICIT_CONTEXT)
9812
9813 /* pTHX_ magic can't cope with varargs, so this is a no-context
9814  * version of the main function, (which may itself be aliased to us).
9815  * Don't access this version directly.
9816  */
9817
9818 void
9819 Perl_sv_catpvf_nocontext(SV *const sv, const char *const pat, ...)
9820 {
9821     dTHX;
9822     va_list args;
9823
9824     PERL_ARGS_ASSERT_SV_CATPVF_NOCONTEXT;
9825
9826     va_start(args, pat);
9827     sv_vcatpvf(sv, pat, &args);
9828     va_end(args);
9829 }
9830
9831 /* pTHX_ magic can't cope with varargs, so this is a no-context
9832  * version of the main function, (which may itself be aliased to us).
9833  * Don't access this version directly.
9834  */
9835
9836 void
9837 Perl_sv_catpvf_mg_nocontext(SV *const sv, const char *const pat, ...)
9838 {
9839     dTHX;
9840     va_list args;
9841
9842     PERL_ARGS_ASSERT_SV_CATPVF_MG_NOCONTEXT;
9843
9844     va_start(args, pat);
9845     sv_vcatpvf_mg(sv, pat, &args);
9846     va_end(args);
9847 }
9848 #endif
9849
9850 /*
9851 =for apidoc sv_catpvf
9852
9853 Processes its arguments like C<sprintf> and appends the formatted
9854 output to an SV.  If the appended data contains "wide" characters
9855 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
9856 and characters >255 formatted with %c), the original SV might get
9857 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
9858 C<sv_catpvf_mg>.  If the original SV was UTF-8, the pattern should be
9859 valid UTF-8; if the original SV was bytes, the pattern should be too.
9860
9861 =cut */
9862
9863 void
9864 Perl_sv_catpvf(pTHX_ SV *const sv, const char *const pat, ...)
9865 {
9866     va_list args;
9867
9868     PERL_ARGS_ASSERT_SV_CATPVF;
9869
9870     va_start(args, pat);
9871     sv_vcatpvf(sv, pat, &args);
9872     va_end(args);
9873 }
9874
9875 /*
9876 =for apidoc sv_vcatpvf
9877
9878 Processes its arguments like C<vsprintf> and appends the formatted output
9879 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
9880
9881 Usually used via its frontend C<sv_catpvf>.
9882
9883 =cut
9884 */
9885
9886 void
9887 Perl_sv_vcatpvf(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9888 {
9889     PERL_ARGS_ASSERT_SV_VCATPVF;
9890
9891     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9892 }
9893
9894 /*
9895 =for apidoc sv_catpvf_mg
9896
9897 Like C<sv_catpvf>, but also handles 'set' magic.
9898
9899 =cut
9900 */
9901
9902 void
9903 Perl_sv_catpvf_mg(pTHX_ SV *const sv, const char *const pat, ...)
9904 {
9905     va_list args;
9906
9907     PERL_ARGS_ASSERT_SV_CATPVF_MG;
9908
9909     va_start(args, pat);
9910     sv_vcatpvf_mg(sv, pat, &args);
9911     va_end(args);
9912 }
9913
9914 /*
9915 =for apidoc sv_vcatpvf_mg
9916
9917 Like C<sv_vcatpvf>, but also handles 'set' magic.
9918
9919 Usually used via its frontend C<sv_catpvf_mg>.
9920
9921 =cut
9922 */
9923
9924 void
9925 Perl_sv_vcatpvf_mg(pTHX_ SV *const sv, const char *const pat, va_list *const args)
9926 {
9927     PERL_ARGS_ASSERT_SV_VCATPVF_MG;
9928
9929     sv_vcatpvfn(sv, pat, strlen(pat), args, NULL, 0, NULL);
9930     SvSETMAGIC(sv);
9931 }
9932
9933 /*
9934 =for apidoc sv_vsetpvfn
9935
9936 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
9937 appending it.
9938
9939 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
9940
9941 =cut
9942 */
9943
9944 void
9945 Perl_sv_vsetpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
9946                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
9947 {
9948     PERL_ARGS_ASSERT_SV_VSETPVFN;
9949
9950     sv_setpvs(sv, "");
9951     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, 0);
9952 }
9953
9954
9955 /*
9956  * Warn of missing argument to sprintf, and then return a defined value
9957  * to avoid inappropriate "use of uninit" warnings [perl #71000].
9958  */
9959 #define WARN_MISSING WARN_UNINITIALIZED /* Not sure we want a new category */
9960 STATIC SV*
9961 S_vcatpvfn_missing_argument(pTHX) {
9962     if (ckWARN(WARN_MISSING)) {
9963         Perl_warner(aTHX_ packWARN(WARN_MISSING), "Missing argument in %s",
9964                 PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn()");
9965     }
9966     return &PL_sv_no;
9967 }
9968
9969
9970 STATIC I32
9971 S_expect_number(pTHX_ char **const pattern)
9972 {
9973     dVAR;
9974     I32 var = 0;
9975
9976     PERL_ARGS_ASSERT_EXPECT_NUMBER;
9977
9978     switch (**pattern) {
9979     case '1': case '2': case '3':
9980     case '4': case '5': case '6':
9981     case '7': case '8': case '9':
9982         var = *(*pattern)++ - '0';
9983         while (isDIGIT(**pattern)) {
9984             const I32 tmp = var * 10 + (*(*pattern)++ - '0');
9985             if (tmp < var)
9986                 Perl_croak(aTHX_ "Integer overflow in format string for %s", (PL_op ? OP_DESC(PL_op) : "sv_vcatpvfn"));
9987             var = tmp;
9988         }
9989     }
9990     return var;
9991 }
9992
9993 STATIC char *
9994 S_F0convert(NV nv, char *const endbuf, STRLEN *const len)
9995 {
9996     const int neg = nv < 0;
9997     UV uv;
9998
9999     PERL_ARGS_ASSERT_F0CONVERT;
10000
10001     if (neg)
10002         nv = -nv;
10003     if (nv < UV_MAX) {
10004         char *p = endbuf;
10005         nv += 0.5;
10006         uv = (UV)nv;
10007         if (uv & 1 && uv == nv)
10008             uv--;                       /* Round to even */
10009         do {
10010             const unsigned dig = uv % 10;
10011             *--p = '0' + dig;
10012         } while (uv /= 10);
10013         if (neg)
10014             *--p = '-';
10015         *len = endbuf - p;
10016         return p;
10017     }
10018     return NULL;
10019 }
10020
10021
10022 /*
10023 =for apidoc sv_vcatpvfn
10024
10025 =for apidoc sv_vcatpvfn_flags
10026
10027 Processes its arguments like C<vsprintf> and appends the formatted output
10028 to an SV.  Uses an array of SVs if the C style variable argument list is
10029 missing (NULL).  When running with taint checks enabled, indicates via
10030 C<maybe_tainted> if results are untrustworthy (often due to the use of
10031 locales).
10032
10033 If called as C<sv_vcatpvfn> or flags include C<SV_GMAGIC>, calls get magic.
10034
10035 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
10036
10037 =cut
10038 */
10039
10040 #define VECTORIZE_ARGS  vecsv = va_arg(*args, SV*);\
10041                         vecstr = (U8*)SvPV_const(vecsv,veclen);\
10042                         vec_utf8 = DO_UTF8(vecsv);
10043
10044 /* XXX maybe_tainted is never assigned to, so the doc above is lying. */
10045
10046 void
10047 Perl_sv_vcatpvfn(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10048                  va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted)
10049 {
10050     PERL_ARGS_ASSERT_SV_VCATPVFN;
10051
10052     sv_vcatpvfn_flags(sv, pat, patlen, args, svargs, svmax, maybe_tainted, SV_GMAGIC|SV_SMAGIC);
10053 }
10054
10055 void
10056 Perl_sv_vcatpvfn_flags(pTHX_ SV *const sv, const char *const pat, const STRLEN patlen,
10057                        va_list *const args, SV **const svargs, const I32 svmax, bool *const maybe_tainted,
10058                        const U32 flags)
10059 {
10060     dVAR;
10061     char *p;
10062     char *q;
10063     const char *patend;
10064     STRLEN origlen;
10065     I32 svix = 0;
10066     static const char nullstr[] = "(null)";
10067     SV *argsv = NULL;
10068     bool has_utf8 = DO_UTF8(sv);    /* has the result utf8? */
10069     const bool pat_utf8 = has_utf8; /* the pattern is in utf8? */
10070     SV *nsv = NULL;
10071     /* Times 4: a decimal digit takes more than 3 binary digits.
10072      * NV_DIG: mantissa takes than many decimal digits.
10073      * Plus 32: Playing safe. */
10074     char ebuf[IV_DIG * 4 + NV_DIG + 32];
10075     /* large enough for "%#.#f" --chip */
10076     /* what about long double NVs? --jhi */
10077
10078     PERL_ARGS_ASSERT_SV_VCATPVFN_FLAGS;
10079     PERL_UNUSED_ARG(maybe_tainted);
10080
10081     if (flags & SV_GMAGIC)
10082         SvGETMAGIC(sv);
10083
10084     /* no matter what, this is a string now */
10085     (void)SvPV_force_nomg(sv, origlen);
10086
10087     /* special-case "", "%s", and "%-p" (SVf - see below) */
10088     if (patlen == 0)
10089         return;
10090     if (patlen == 2 && pat[0] == '%' && pat[1] == 's') {
10091         if (args) {
10092             const char * const s = va_arg(*args, char*);
10093             sv_catpv_nomg(sv, s ? s : nullstr);
10094         }
10095         else if (svix < svmax) {
10096             /* we want get magic on the source but not the target. sv_catsv can't do that, though */
10097             SvGETMAGIC(*svargs);
10098             sv_catsv_nomg(sv, *svargs);
10099         }
10100         else
10101             S_vcatpvfn_missing_argument(aTHX);
10102         return;
10103     }
10104     if (args && patlen == 3 && pat[0] == '%' &&
10105                 pat[1] == '-' && pat[2] == 'p') {
10106         argsv = MUTABLE_SV(va_arg(*args, void*));
10107         sv_catsv_nomg(sv, argsv);
10108         return;
10109     }
10110
10111 #ifndef USE_LONG_DOUBLE
10112     /* special-case "%.<number>[gf]" */
10113     if ( !args && patlen <= 5 && pat[0] == '%' && pat[1] == '.'
10114          && (pat[patlen-1] == 'g' || pat[patlen-1] == 'f') ) {
10115         unsigned digits = 0;
10116         const char *pp;
10117
10118         pp = pat + 2;
10119         while (*pp >= '0' && *pp <= '9')
10120             digits = 10 * digits + (*pp++ - '0');
10121         if (pp - pat == (int)patlen - 1 && svix < svmax) {
10122             const NV nv = SvNV(*svargs);
10123             if (*pp == 'g') {
10124                 /* Add check for digits != 0 because it seems that some
10125                    gconverts are buggy in this case, and we don't yet have
10126                    a Configure test for this.  */
10127                 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
10128                      /* 0, point, slack */
10129                     Gconvert(nv, (int)digits, 0, ebuf);
10130                     sv_catpv_nomg(sv, ebuf);
10131                     if (*ebuf)  /* May return an empty string for digits==0 */
10132                         return;
10133                 }
10134             } else if (!digits) {
10135                 STRLEN l;
10136
10137                 if ((p = F0convert(nv, ebuf + sizeof ebuf, &l))) {
10138                     sv_catpvn_nomg(sv, p, l);
10139                     return;
10140                 }
10141             }
10142         }
10143     }
10144 #endif /* !USE_LONG_DOUBLE */
10145
10146     if (!args && svix < svmax && DO_UTF8(*svargs))
10147         has_utf8 = TRUE;
10148
10149     patend = (char*)pat + patlen;
10150     for (p = (char*)pat; p < patend; p = q) {
10151         bool alt = FALSE;
10152         bool left = FALSE;
10153         bool vectorize = FALSE;
10154         bool vectorarg = FALSE;
10155         bool vec_utf8 = FALSE;
10156         char fill = ' ';
10157         char plus = 0;
10158         char intsize = 0;
10159         STRLEN width = 0;
10160         STRLEN zeros = 0;
10161         bool has_precis = FALSE;
10162         STRLEN precis = 0;
10163         const I32 osvix = svix;
10164         bool is_utf8 = FALSE;  /* is this item utf8?   */
10165 #ifdef HAS_LDBL_SPRINTF_BUG
10166         /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10167            with sfio - Allen <allens@cpan.org> */
10168         bool fix_ldbl_sprintf_bug = FALSE;
10169 #endif
10170
10171         char esignbuf[4];
10172         U8 utf8buf[UTF8_MAXBYTES+1];
10173         STRLEN esignlen = 0;
10174
10175         const char *eptr = NULL;
10176         const char *fmtstart;
10177         STRLEN elen = 0;
10178         SV *vecsv = NULL;
10179         const U8 *vecstr = NULL;
10180         STRLEN veclen = 0;
10181         char c = 0;
10182         int i;
10183         unsigned base = 0;
10184         IV iv = 0;
10185         UV uv = 0;
10186         /* we need a long double target in case HAS_LONG_DOUBLE but
10187            not USE_LONG_DOUBLE
10188         */
10189 #if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE > DOUBLESIZE
10190         long double nv;
10191 #else
10192         NV nv;
10193 #endif
10194         STRLEN have;
10195         STRLEN need;
10196         STRLEN gap;
10197         const char *dotstr = ".";
10198         STRLEN dotstrlen = 1;
10199         I32 efix = 0; /* explicit format parameter index */
10200         I32 ewix = 0; /* explicit width index */
10201         I32 epix = 0; /* explicit precision index */
10202         I32 evix = 0; /* explicit vector index */
10203         bool asterisk = FALSE;
10204
10205         /* echo everything up to the next format specification */
10206         for (q = p; q < patend && *q != '%'; ++q) ;
10207         if (q > p) {
10208             if (has_utf8 && !pat_utf8)
10209                 sv_catpvn_nomg_utf8_upgrade(sv, p, q - p, nsv);
10210             else
10211                 sv_catpvn_nomg(sv, p, q - p);
10212             p = q;
10213         }
10214         if (q++ >= patend)
10215             break;
10216
10217         fmtstart = q;
10218
10219 /*
10220     We allow format specification elements in this order:
10221         \d+\$              explicit format parameter index
10222         [-+ 0#]+           flags
10223         v|\*(\d+\$)?v      vector with optional (optionally specified) arg
10224         0                  flag (as above): repeated to allow "v02"     
10225         \d+|\*(\d+\$)?     width using optional (optionally specified) arg
10226         \.(\d*|\*(\d+\$)?) precision using optional (optionally specified) arg
10227         [hlqLV]            size
10228     [%bcdefginopsuxDFOUX] format (mandatory)
10229 */
10230
10231         if (args) {
10232 /*  
10233         As of perl5.9.3, printf format checking is on by default.
10234         Internally, perl uses %p formats to provide an escape to
10235         some extended formatting.  This block deals with those
10236         extensions: if it does not match, (char*)q is reset and
10237         the normal format processing code is used.
10238
10239         Currently defined extensions are:
10240                 %p              include pointer address (standard)      
10241                 %-p     (SVf)   include an SV (previously %_)
10242                 %-<num>p        include an SV with precision <num>      
10243                 %2p             include a HEK
10244                 %3p             include a HEK with precision of 256
10245                 %<num>p         (where num != 2 or 3) reserved for future
10246                                 extensions
10247
10248         Robin Barker 2005-07-14 (but modified since)
10249
10250                 %1p     (VDf)   removed.  RMB 2007-10-19
10251 */
10252             char* r = q; 
10253             bool sv = FALSE;    
10254             STRLEN n = 0;
10255             if (*q == '-')
10256                 sv = *q++;
10257             n = expect_number(&q);
10258             if (*q++ == 'p') {
10259                 if (sv) {                       /* SVf */
10260                     if (n) {
10261                         precis = n;
10262                         has_precis = TRUE;
10263                     }
10264                     argsv = MUTABLE_SV(va_arg(*args, void*));
10265                     eptr = SvPV_const(argsv, elen);
10266                     if (DO_UTF8(argsv))
10267                         is_utf8 = TRUE;
10268                     goto string;
10269                 }
10270                 else if (n==2 || n==3) {        /* HEKf */
10271                     HEK * const hek = va_arg(*args, HEK *);
10272                     eptr = HEK_KEY(hek);
10273                     elen = HEK_LEN(hek);
10274                     if (HEK_UTF8(hek)) is_utf8 = TRUE;
10275                     if (n==3) precis = 256, has_precis = TRUE;
10276                     goto string;
10277                 }
10278                 else if (n) {
10279                     Perl_ck_warner_d(aTHX_ packWARN(WARN_INTERNAL),
10280                                      "internal %%<num>p might conflict with future printf extensions");
10281                 }
10282             }
10283             q = r; 
10284         }
10285
10286         if ( (width = expect_number(&q)) ) {
10287             if (*q == '$') {
10288                 ++q;
10289                 efix = width;
10290             } else {
10291                 goto gotwidth;
10292             }
10293         }
10294
10295         /* FLAGS */
10296
10297         while (*q) {
10298             switch (*q) {
10299             case ' ':
10300             case '+':
10301                 if (plus == '+' && *q == ' ') /* '+' over ' ' */
10302                     q++;
10303                 else
10304                     plus = *q++;
10305                 continue;
10306
10307             case '-':
10308                 left = TRUE;
10309                 q++;
10310                 continue;
10311
10312             case '0':
10313                 fill = *q++;
10314                 continue;
10315
10316             case '#':
10317                 alt = TRUE;
10318                 q++;
10319                 continue;
10320
10321             default:
10322                 break;
10323             }
10324             break;
10325         }
10326
10327       tryasterisk:
10328         if (*q == '*') {
10329             q++;
10330             if ( (ewix = expect_number(&q)) )
10331                 if (*q++ != '$')
10332                     goto unknown;
10333             asterisk = TRUE;
10334         }
10335         if (*q == 'v') {
10336             q++;
10337             if (vectorize)
10338                 goto unknown;
10339             if ((vectorarg = asterisk)) {
10340                 evix = ewix;
10341                 ewix = 0;
10342                 asterisk = FALSE;
10343             }
10344             vectorize = TRUE;
10345             goto tryasterisk;
10346         }
10347
10348         if (!asterisk)
10349         {
10350             if( *q == '0' )
10351                 fill = *q++;
10352             width = expect_number(&q);
10353         }
10354
10355         if (vectorize && vectorarg) {
10356             /* vectorizing, but not with the default "." */
10357             if (args)
10358                 vecsv = va_arg(*args, SV*);
10359             else if (evix) {
10360                 vecsv = (evix > 0 && evix <= svmax)
10361                     ? svargs[evix-1] : S_vcatpvfn_missing_argument(aTHX);
10362             } else {
10363                 vecsv = svix < svmax
10364                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10365             }
10366             dotstr = SvPV_const(vecsv, dotstrlen);
10367             /* Keep the DO_UTF8 test *after* the SvPV call, else things go
10368                bad with tied or overloaded values that return UTF8.  */
10369             if (DO_UTF8(vecsv))
10370                 is_utf8 = TRUE;
10371             else if (has_utf8) {
10372                 vecsv = sv_mortalcopy(vecsv);
10373                 sv_utf8_upgrade(vecsv);
10374                 dotstr = SvPV_const(vecsv, dotstrlen);
10375                 is_utf8 = TRUE;
10376             }               
10377         }
10378
10379         if (asterisk) {
10380             if (args)
10381                 i = va_arg(*args, int);
10382             else
10383                 i = (ewix ? ewix <= svmax : svix < svmax) ?
10384                     SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10385             left |= (i < 0);
10386             width = (i < 0) ? -i : i;
10387         }
10388       gotwidth:
10389
10390         /* PRECISION */
10391
10392         if (*q == '.') {
10393             q++;
10394             if (*q == '*') {
10395                 q++;
10396                 if ( ((epix = expect_number(&q))) && (*q++ != '$') )
10397                     goto unknown;
10398                 /* XXX: todo, support specified precision parameter */
10399                 if (epix)
10400                     goto unknown;
10401                 if (args)
10402                     i = va_arg(*args, int);
10403                 else
10404                     i = (ewix ? ewix <= svmax : svix < svmax)
10405                         ? SvIVx(svargs[ewix ? ewix-1 : svix++]) : 0;
10406                 precis = i;
10407                 has_precis = !(i < 0);
10408             }
10409             else {
10410                 precis = 0;
10411                 while (isDIGIT(*q))
10412                     precis = precis * 10 + (*q++ - '0');
10413                 has_precis = TRUE;
10414             }
10415         }
10416
10417         if (vectorize) {
10418             if (args) {
10419                 VECTORIZE_ARGS
10420             }
10421             else if (efix ? (efix > 0 && efix <= svmax) : svix < svmax) {
10422                 vecsv = svargs[efix ? efix-1 : svix++];
10423                 vecstr = (U8*)SvPV_const(vecsv,veclen);
10424                 vec_utf8 = DO_UTF8(vecsv);
10425
10426                 /* if this is a version object, we need to convert
10427                  * back into v-string notation and then let the
10428                  * vectorize happen normally
10429                  */
10430                 if (sv_isobject(vecsv) && sv_derived_from(vecsv, "version")) {
10431                     if ( hv_exists(MUTABLE_HV(SvRV(vecsv)), "alpha", 5 ) ) {
10432                         Perl_ck_warner_d(aTHX_ packWARN(WARN_PRINTF),
10433                         "vector argument not supported with alpha versions");
10434                         goto vdblank;
10435                     }
10436                     vecsv = sv_newmortal();
10437                     scan_vstring((char *)vecstr, (char *)vecstr + veclen,
10438                                  vecsv);
10439                     vecstr = (U8*)SvPV_const(vecsv, veclen);
10440                     vec_utf8 = DO_UTF8(vecsv);
10441                 }
10442             }
10443             else {
10444               vdblank:
10445                 vecstr = (U8*)"";
10446                 veclen = 0;
10447             }
10448         }
10449
10450         /* SIZE */
10451
10452         switch (*q) {
10453 #ifdef WIN32
10454         case 'I':                       /* Ix, I32x, and I64x */
10455 #  ifdef USE_64_BIT_INT
10456             if (q[1] == '6' && q[2] == '4') {
10457                 q += 3;
10458                 intsize = 'q';
10459                 break;
10460             }
10461 #  endif
10462             if (q[1] == '3' && q[2] == '2') {
10463                 q += 3;
10464                 break;
10465             }
10466 #  ifdef USE_64_BIT_INT
10467             intsize = 'q';
10468 #  endif
10469             q++;
10470             break;
10471 #endif
10472 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10473         case 'L':                       /* Ld */
10474             /*FALLTHROUGH*/
10475 #ifdef HAS_QUAD
10476         case 'q':                       /* qd */
10477 #endif
10478             intsize = 'q';
10479             q++;
10480             break;
10481 #endif
10482         case 'l':
10483             ++q;
10484 #if defined(HAS_QUAD) || defined(HAS_LONG_DOUBLE)
10485             if (*q == 'l') {    /* lld, llf */
10486                 intsize = 'q';
10487                 ++q;
10488             }
10489             else
10490 #endif
10491                 intsize = 'l';
10492             break;
10493         case 'h':
10494             if (*++q == 'h') {  /* hhd, hhu */
10495                 intsize = 'c';
10496                 ++q;
10497             }
10498             else
10499                 intsize = 'h';
10500             break;
10501         case 'V':
10502         case 'z':
10503         case 't':
10504 #if HAS_C99
10505         case 'j':
10506 #endif
10507             intsize = *q++;
10508             break;
10509         }
10510
10511         /* CONVERSION */
10512
10513         if (*q == '%') {
10514             eptr = q++;
10515             elen = 1;
10516             if (vectorize) {
10517                 c = '%';
10518                 goto unknown;
10519             }
10520             goto string;
10521         }
10522
10523         if (!vectorize && !args) {
10524             if (efix) {
10525                 const I32 i = efix-1;
10526                 argsv = (i >= 0 && i < svmax)
10527                     ? svargs[i] : S_vcatpvfn_missing_argument(aTHX);
10528             } else {
10529                 argsv = (svix >= 0 && svix < svmax)
10530                     ? svargs[svix++] : S_vcatpvfn_missing_argument(aTHX);
10531             }
10532         }
10533
10534         switch (c = *q++) {
10535
10536             /* STRINGS */
10537
10538         case 'c':
10539             if (vectorize)
10540                 goto unknown;
10541             uv = (args) ? va_arg(*args, int) : SvIV(argsv);
10542             if ((uv > 255 ||
10543                  (!UNI_IS_INVARIANT(uv) && SvUTF8(sv)))
10544                 && !IN_BYTES) {
10545                 eptr = (char*)utf8buf;
10546                 elen = uvchr_to_utf8((U8*)eptr, uv) - utf8buf;
10547                 is_utf8 = TRUE;
10548             }
10549             else {
10550                 c = (char)uv;
10551                 eptr = &c;
10552                 elen = 1;
10553             }
10554             goto string;
10555
10556         case 's':
10557             if (vectorize)
10558                 goto unknown;
10559             if (args) {
10560                 eptr = va_arg(*args, char*);
10561                 if (eptr)
10562                     elen = strlen(eptr);
10563                 else {
10564                     eptr = (char *)nullstr;
10565                     elen = sizeof nullstr - 1;
10566                 }
10567             }
10568             else {
10569                 eptr = SvPV_const(argsv, elen);
10570                 if (DO_UTF8(argsv)) {
10571                     STRLEN old_precis = precis;
10572                     if (has_precis && precis < elen) {
10573                         STRLEN ulen = sv_or_pv_len_utf8(argsv, eptr, elen);
10574                         STRLEN p = precis > ulen ? ulen : precis;
10575                         precis = sv_or_pv_pos_u2b(argsv, eptr, p, 0);
10576                                                         /* sticks at end */
10577                     }
10578                     if (width) { /* fudge width (can't fudge elen) */
10579                         if (has_precis && precis < elen)
10580                             width += precis - old_precis;
10581                         else
10582                             width +=
10583                                 elen - sv_or_pv_len_utf8(argsv,eptr,elen);
10584                     }
10585                     is_utf8 = TRUE;
10586                 }
10587             }
10588
10589         string:
10590             if (has_precis && precis < elen)
10591                 elen = precis;
10592             break;
10593
10594             /* INTEGERS */
10595
10596         case 'p':
10597             if (alt || vectorize)
10598                 goto unknown;
10599             uv = PTR2UV(args ? va_arg(*args, void*) : argsv);
10600             base = 16;
10601             goto integer;
10602
10603         case 'D':
10604 #ifdef IV_IS_QUAD
10605             intsize = 'q';
10606 #else
10607             intsize = 'l';
10608 #endif
10609             /*FALLTHROUGH*/
10610         case 'd':
10611         case 'i':
10612 #if vdNUMBER
10613         format_vd:
10614 #endif
10615             if (vectorize) {
10616                 STRLEN ulen;
10617                 if (!veclen)
10618                     continue;
10619                 if (vec_utf8)
10620                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10621                                         UTF8_ALLOW_ANYUV);
10622                 else {
10623                     uv = *vecstr;
10624                     ulen = 1;
10625                 }
10626                 vecstr += ulen;
10627                 veclen -= ulen;
10628                 if (plus)
10629                      esignbuf[esignlen++] = plus;
10630             }
10631             else if (args) {
10632                 switch (intsize) {
10633                 case 'c':       iv = (char)va_arg(*args, int); break;
10634                 case 'h':       iv = (short)va_arg(*args, int); break;
10635                 case 'l':       iv = va_arg(*args, long); break;
10636                 case 'V':       iv = va_arg(*args, IV); break;
10637                 case 'z':       iv = va_arg(*args, SSize_t); break;
10638                 case 't':       iv = va_arg(*args, ptrdiff_t); break;
10639                 default:        iv = va_arg(*args, int); break;
10640 #if HAS_C99
10641                 case 'j':       iv = va_arg(*args, intmax_t); break;
10642 #endif
10643                 case 'q':
10644 #ifdef HAS_QUAD
10645                                 iv = va_arg(*args, Quad_t); break;
10646 #else
10647                                 goto unknown;
10648 #endif
10649                 }
10650             }
10651             else {
10652                 IV tiv = SvIV(argsv); /* work around GCC bug #13488 */
10653                 switch (intsize) {
10654                 case 'c':       iv = (char)tiv; break;
10655                 case 'h':       iv = (short)tiv; break;
10656                 case 'l':       iv = (long)tiv; break;
10657                 case 'V':
10658                 default:        iv = tiv; break;
10659                 case 'q':
10660 #ifdef HAS_QUAD
10661                                 iv = (Quad_t)tiv; break;
10662 #else
10663                                 goto unknown;
10664 #endif
10665                 }
10666             }
10667             if ( !vectorize )   /* we already set uv above */
10668             {
10669                 if (iv >= 0) {
10670                     uv = iv;
10671                     if (plus)
10672                         esignbuf[esignlen++] = plus;
10673                 }
10674                 else {
10675                     uv = -iv;
10676                     esignbuf[esignlen++] = '-';
10677                 }
10678             }
10679             base = 10;
10680             goto integer;
10681
10682         case 'U':
10683 #ifdef IV_IS_QUAD
10684             intsize = 'q';
10685 #else
10686             intsize = 'l';
10687 #endif
10688             /*FALLTHROUGH*/
10689         case 'u':
10690             base = 10;
10691             goto uns_integer;
10692
10693         case 'B':
10694         case 'b':
10695             base = 2;
10696             goto uns_integer;
10697
10698         case 'O':
10699 #ifdef IV_IS_QUAD
10700             intsize = 'q';
10701 #else
10702             intsize = 'l';
10703 #endif
10704             /*FALLTHROUGH*/
10705         case 'o':
10706             base = 8;
10707             goto uns_integer;
10708
10709         case 'X':
10710         case 'x':
10711             base = 16;
10712
10713         uns_integer:
10714             if (vectorize) {
10715                 STRLEN ulen;
10716         vector:
10717                 if (!veclen)
10718                     continue;
10719                 if (vec_utf8)
10720                     uv = utf8n_to_uvchr(vecstr, veclen, &ulen,
10721                                         UTF8_ALLOW_ANYUV);
10722                 else {
10723                     uv = *vecstr;
10724                     ulen = 1;
10725                 }
10726                 vecstr += ulen;
10727                 veclen -= ulen;
10728             }
10729             else if (args) {
10730                 switch (intsize) {
10731                 case 'c':  uv = (unsigned char)va_arg(*args, unsigned); break;
10732                 case 'h':  uv = (unsigned short)va_arg(*args, unsigned); break;
10733                 case 'l':  uv = va_arg(*args, unsigned long); break;
10734                 case 'V':  uv = va_arg(*args, UV); break;
10735                 case 'z':  uv = va_arg(*args, Size_t); break;
10736                 case 't':  uv = va_arg(*args, ptrdiff_t); break; /* will sign extend, but there is no uptrdiff_t, so oh well */
10737 #if HAS_C99
10738                 case 'j':  uv = va_arg(*args, uintmax_t); break;
10739 #endif
10740                 default:   uv = va_arg(*args, unsigned); break;
10741                 case 'q':
10742 #ifdef HAS_QUAD
10743                            uv = va_arg(*args, Uquad_t); break;
10744 #else
10745                            goto unknown;
10746 #endif
10747                 }
10748             }
10749             else {
10750                 UV tuv = SvUV(argsv); /* work around GCC bug #13488 */
10751                 switch (intsize) {
10752                 case 'c':       uv = (unsigned char)tuv; break;
10753                 case 'h':       uv = (unsigned short)tuv; break;
10754                 case 'l':       uv = (unsigned long)tuv; break;
10755                 case 'V':
10756                 default:        uv = tuv; break;
10757                 case 'q':
10758 #ifdef HAS_QUAD
10759                                 uv = (Uquad_t)tuv; break;
10760 #else
10761                                 goto unknown;
10762 #endif
10763                 }
10764             }
10765
10766         integer:
10767             {
10768                 char *ptr = ebuf + sizeof ebuf;
10769                 bool tempalt = uv ? alt : FALSE; /* Vectors can't change alt */
10770                 zeros = 0;
10771
10772                 switch (base) {
10773                     unsigned dig;
10774                 case 16:
10775                     p = (char *)((c == 'X') ? PL_hexdigit + 16 : PL_hexdigit);
10776                     do {
10777                         dig = uv & 15;
10778                         *--ptr = p[dig];
10779                     } while (uv >>= 4);
10780                     if (tempalt) {
10781                         esignbuf[esignlen++] = '0';
10782                         esignbuf[esignlen++] = c;  /* 'x' or 'X' */
10783                     }
10784                     break;
10785                 case 8:
10786                     do {
10787                         dig = uv & 7;
10788                         *--ptr = '0' + dig;
10789                     } while (uv >>= 3);
10790                     if (alt && *ptr != '0')
10791                         *--ptr = '0';
10792                     break;
10793                 case 2:
10794                     do {
10795                         dig = uv & 1;
10796                         *--ptr = '0' + dig;
10797                     } while (uv >>= 1);
10798                     if (tempalt) {
10799                         esignbuf[esignlen++] = '0';
10800                         esignbuf[esignlen++] = c;
10801                     }
10802                     break;
10803                 default:                /* it had better be ten or less */
10804                     do {
10805                         dig = uv % base;
10806                         *--ptr = '0' + dig;
10807                     } while (uv /= base);
10808                     break;
10809                 }
10810                 elen = (ebuf + sizeof ebuf) - ptr;
10811                 eptr = ptr;
10812                 if (has_precis) {
10813                     if (precis > elen)
10814                         zeros = precis - elen;
10815                     else if (precis == 0 && elen == 1 && *eptr == '0'
10816                              && !(base == 8 && alt)) /* "%#.0o" prints "0" */
10817                         elen = 0;
10818
10819                 /* a precision nullifies the 0 flag. */
10820                     if (fill == '0')
10821                         fill = ' ';
10822                 }
10823             }
10824             break;
10825
10826             /* FLOATING POINT */
10827
10828         case 'F':
10829             c = 'f';            /* maybe %F isn't supported here */
10830             /*FALLTHROUGH*/
10831         case 'e': case 'E':
10832         case 'f':
10833         case 'g': case 'G':
10834             if (vectorize)
10835                 goto unknown;
10836
10837             /* This is evil, but floating point is even more evil */
10838
10839             /* for SV-style calling, we can only get NV
10840                for C-style calling, we assume %f is double;
10841                for simplicity we allow any of %Lf, %llf, %qf for long double
10842             */
10843             switch (intsize) {
10844             case 'V':
10845 #if defined(USE_LONG_DOUBLE)
10846                 intsize = 'q';
10847 #endif
10848                 break;
10849 /* [perl #20339] - we should accept and ignore %lf rather than die */
10850             case 'l':
10851                 /*FALLTHROUGH*/
10852             default:
10853 #if defined(USE_LONG_DOUBLE)
10854                 intsize = args ? 0 : 'q';
10855 #endif
10856                 break;
10857             case 'q':
10858 #if defined(HAS_LONG_DOUBLE)
10859                 break;
10860 #else
10861                 /*FALLTHROUGH*/
10862 #endif
10863             case 'c':
10864             case 'h':
10865             case 'z':
10866             case 't':
10867             case 'j':
10868                 goto unknown;
10869             }
10870
10871             /* now we need (long double) if intsize == 'q', else (double) */
10872             nv = (args) ?
10873 #if LONG_DOUBLESIZE > DOUBLESIZE
10874                 intsize == 'q' ?
10875                     va_arg(*args, long double) :
10876                     va_arg(*args, double)
10877 #else
10878                     va_arg(*args, double)
10879 #endif
10880                 : SvNV(argsv);
10881
10882             need = 0;
10883             /* nv * 0 will be NaN for NaN, +Inf and -Inf, and 0 for anything
10884                else. frexp() has some unspecified behaviour for those three */
10885             if (c != 'e' && c != 'E' && (nv * 0) == 0) {
10886                 i = PERL_INT_MIN;
10887                 /* FIXME: if HAS_LONG_DOUBLE but not USE_LONG_DOUBLE this
10888                    will cast our (long double) to (double) */
10889                 (void)Perl_frexp(nv, &i);
10890                 if (i == PERL_INT_MIN)
10891                     Perl_die(aTHX_ "panic: frexp");
10892                 if (i > 0)
10893                     need = BIT_DIGITS(i);
10894             }
10895             need += has_precis ? precis : 6; /* known default */
10896
10897             if (need < width)
10898                 need = width;
10899
10900 #ifdef HAS_LDBL_SPRINTF_BUG
10901             /* This is to try to fix a bug with irix/nonstop-ux/powerux and
10902                with sfio - Allen <allens@cpan.org> */
10903
10904 #  ifdef DBL_MAX
10905 #    define MY_DBL_MAX DBL_MAX
10906 #  else /* XXX guessing! HUGE_VAL may be defined as infinity, so not using */
10907 #    if DOUBLESIZE >= 8
10908 #      define MY_DBL_MAX 1.7976931348623157E+308L
10909 #    else
10910 #      define MY_DBL_MAX 3.40282347E+38L
10911 #    endif
10912 #  endif
10913
10914 #  ifdef HAS_LDBL_SPRINTF_BUG_LESS1 /* only between -1L & 1L - Allen */
10915 #    define MY_DBL_MAX_BUG 1L
10916 #  else
10917 #    define MY_DBL_MAX_BUG MY_DBL_MAX
10918 #  endif
10919
10920 #  ifdef DBL_MIN
10921 #    define MY_DBL_MIN DBL_MIN
10922 #  else  /* XXX guessing! -Allen */
10923 #    if DOUBLESIZE >= 8
10924 #      define MY_DBL_MIN 2.2250738585072014E-308L
10925 #    else
10926 #      define MY_DBL_MIN 1.17549435E-38L
10927 #    endif
10928 #  endif
10929
10930             if ((intsize == 'q') && (c == 'f') &&
10931                 ((nv < MY_DBL_MAX_BUG) && (nv > -MY_DBL_MAX_BUG)) &&
10932                 (need < DBL_DIG)) {
10933                 /* it's going to be short enough that
10934                  * long double precision is not needed */
10935
10936                 if ((nv <= 0L) && (nv >= -0L))
10937                     fix_ldbl_sprintf_bug = TRUE; /* 0 is 0 - easiest */
10938                 else {
10939                     /* would use Perl_fp_class as a double-check but not
10940                      * functional on IRIX - see perl.h comments */
10941
10942                     if ((nv >= MY_DBL_MIN) || (nv <= -MY_DBL_MIN)) {
10943                         /* It's within the range that a double can represent */
10944 #if defined(DBL_MAX) && !defined(DBL_MIN)
10945                         if ((nv >= ((long double)1/DBL_MAX)) ||
10946                             (nv <= (-(long double)1/DBL_MAX)))
10947 #endif
10948                         fix_ldbl_sprintf_bug = TRUE;
10949                     }
10950                 }
10951                 if (fix_ldbl_sprintf_bug == TRUE) {
10952                     double temp;
10953
10954                     intsize = 0;
10955                     temp = (double)nv;
10956                     nv = (NV)temp;
10957                 }
10958             }
10959
10960 #  undef MY_DBL_MAX
10961 #  undef MY_DBL_MAX_BUG
10962 #  undef MY_DBL_MIN
10963
10964 #endif /* HAS_LDBL_SPRINTF_BUG */
10965
10966             need += 20; /* fudge factor */
10967             if (PL_efloatsize < need) {
10968                 Safefree(PL_efloatbuf);
10969                 PL_efloatsize = need + 20; /* more fudge */
10970                 Newx(PL_efloatbuf, PL_efloatsize, char);
10971                 PL_efloatbuf[0] = '\0';
10972             }
10973
10974             if ( !(width || left || plus || alt) && fill != '0'
10975                  && has_precis && intsize != 'q' ) {    /* Shortcuts */
10976                 /* See earlier comment about buggy Gconvert when digits,
10977                    aka precis is 0  */
10978                 if ( c == 'g' && precis) {
10979                     Gconvert((NV)nv, (int)precis, 0, PL_efloatbuf);
10980                     /* May return an empty string for digits==0 */
10981                     if (*PL_efloatbuf) {
10982                         elen = strlen(PL_efloatbuf);
10983                         goto float_converted;
10984                     }
10985                 } else if ( c == 'f' && !precis) {
10986                     if ((eptr = F0convert(nv, ebuf + sizeof ebuf, &elen)))
10987                         break;
10988                 }
10989             }
10990             {
10991                 char *ptr = ebuf + sizeof ebuf;
10992                 *--ptr = '\0';
10993                 *--ptr = c;
10994                 /* FIXME: what to do if HAS_LONG_DOUBLE but not PERL_PRIfldbl? */
10995 #if defined(HAS_LONG_DOUBLE) && defined(PERL_PRIfldbl)
10996                 if (intsize == 'q') {
10997                     /* Copy the one or more characters in a long double
10998                      * format before the 'base' ([efgEFG]) character to
10999                      * the format string. */
11000                     static char const prifldbl[] = PERL_PRIfldbl;
11001                     char const *p = prifldbl + sizeof(prifldbl) - 3;
11002                     while (p >= prifldbl) { *--ptr = *p--; }
11003                 }
11004 #endif
11005                 if (has_precis) {
11006                     base = precis;
11007                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
11008                     *--ptr = '.';
11009                 }
11010                 if (width) {
11011                     base = width;
11012                     do { *--ptr = '0' + (base % 10); } while (base /= 10);
11013                 }
11014                 if (fill == '0')
11015                     *--ptr = fill;
11016                 if (left)
11017                     *--ptr = '-';
11018                 if (plus)
11019                     *--ptr = plus;
11020                 if (alt)
11021                     *--ptr = '#';
11022                 *--ptr = '%';
11023
11024                 /* No taint.  Otherwise we are in the strange situation
11025                  * where printf() taints but print($float) doesn't.
11026                  * --jhi */
11027 #if defined(HAS_LONG_DOUBLE)
11028                 elen = ((intsize == 'q')
11029                         ? my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, nv)
11030                         : my_snprintf(PL_efloatbuf, PL_efloatsize, ptr, (double)nv));
11031 #else
11032                 elen = my_sprintf(PL_efloatbuf, ptr, nv);
11033 #endif
11034             }
11035         float_converted:
11036             eptr = PL_efloatbuf;
11037             break;
11038
11039             /* SPECIAL */
11040
11041         case 'n':
11042             if (vectorize)
11043                 goto unknown;
11044             i = SvCUR(sv) - origlen;
11045             if (args) {
11046                 switch (intsize) {
11047                 case 'c':       *(va_arg(*args, char*)) = i; break;
11048                 case 'h':       *(va_arg(*args, short*)) = i; break;
11049                 default:        *(va_arg(*args, int*)) = i; break;
11050                 case 'l':       *(va_arg(*args, long*)) = i; break;
11051                 case 'V':       *(va_arg(*args, IV*)) = i; break;
11052                 case 'z':       *(va_arg(*args, SSize_t*)) = i; break;
11053                 case 't':       *(va_arg(*args, ptrdiff_t*)) = i; break;
11054 #if HAS_C99
11055                 case 'j':       *(va_arg(*args, intmax_t*)) = i; break;
11056 #endif
11057                 case 'q':
11058 #ifdef HAS_QUAD
11059                                 *(va_arg(*args, Quad_t*)) = i; break;
11060 #else
11061                                 goto unknown;
11062 #endif
11063                 }
11064             }
11065             else
11066                 sv_setuv_mg(argsv, has_utf8 ? (UV)sv_len_utf8(sv) : (UV)i);
11067             continue;   /* not "break" */
11068
11069             /* UNKNOWN */
11070
11071         default:
11072       unknown:
11073             if (!args
11074                 && (PL_op->op_type == OP_PRTF || PL_op->op_type == OP_SPRINTF)
11075                 && ckWARN(WARN_PRINTF))
11076             {
11077                 SV * const msg = sv_newmortal();
11078                 Perl_sv_setpvf(aTHX_ msg, "Invalid conversion in %sprintf: ",
11079                           (PL_op->op_type == OP_PRTF) ? "" : "s");
11080                 if (fmtstart < patend) {
11081                     const char * const fmtend = q < patend ? q : patend;
11082                     const char * f;
11083                     sv_catpvs(msg, "\"%");
11084                     for (f = fmtstart; f < fmtend; f++) {
11085                         if (isPRINT(*f)) {
11086                             sv_catpvn_nomg(msg, f, 1);
11087                         } else {
11088                             Perl_sv_catpvf(aTHX_ msg,
11089                                            "\\%03"UVof, (UV)*f & 0xFF);
11090                         }
11091                     }
11092                     sv_catpvs(msg, "\"");
11093                 } else {
11094                     sv_catpvs(msg, "end of string");
11095                 }
11096                 Perl_warner(aTHX_ packWARN(WARN_PRINTF), "%"SVf, SVfARG(msg)); /* yes, this is reentrant */
11097             }
11098
11099             /* output mangled stuff ... */
11100             if (c == '\0')
11101                 --q;
11102             eptr = p;
11103             elen = q - p;
11104
11105             /* ... right here, because formatting flags should not apply */
11106             SvGROW(sv, SvCUR(sv) + elen + 1);
11107             p = SvEND(sv);
11108             Copy(eptr, p, elen, char);
11109             p += elen;
11110             *p = '\0';
11111             SvCUR_set(sv, p - SvPVX_const(sv));
11112             svix = osvix;
11113             continue;   /* not "break" */
11114         }
11115
11116         if (is_utf8 != has_utf8) {
11117             if (is_utf8) {
11118                 if (SvCUR(sv))
11119                     sv_utf8_upgrade(sv);
11120             }
11121             else {
11122                 const STRLEN old_elen = elen;
11123                 SV * const nsv = newSVpvn_flags(eptr, elen, SVs_TEMP);
11124                 sv_utf8_upgrade(nsv);
11125                 eptr = SvPVX_const(nsv);
11126                 elen = SvCUR(nsv);
11127
11128                 if (width) { /* fudge width (can't fudge elen) */
11129                     width += elen - old_elen;
11130                 }
11131                 is_utf8 = TRUE;
11132             }
11133         }
11134
11135         have = esignlen + zeros + elen;
11136         if (have < zeros)
11137             croak_memory_wrap();
11138
11139         need = (have > width ? have : width);
11140         gap = need - have;
11141
11142         if (need >= (((STRLEN)~0) - SvCUR(sv) - dotstrlen - 1))
11143             croak_memory_wrap();
11144         SvGROW(sv, SvCUR(sv) + need + dotstrlen + 1);
11145         p = SvEND(sv);
11146         if (esignlen && fill == '0') {
11147             int i;
11148             for (i = 0; i < (int)esignlen; i++)
11149                 *p++ = esignbuf[i];
11150         }
11151         if (gap && !left) {
11152             memset(p, fill, gap);
11153             p += gap;
11154         }
11155         if (esignlen && fill != '0') {
11156             int i;
11157             for (i = 0; i < (int)esignlen; i++)
11158                 *p++ = esignbuf[i];
11159         }
11160         if (zeros) {
11161             int i;
11162             for (i = zeros; i; i--)
11163                 *p++ = '0';
11164         }
11165         if (elen) {
11166             Copy(eptr, p, elen, char);
11167             p += elen;
11168         }
11169         if (gap && left) {
11170             memset(p, ' ', gap);
11171             p += gap;
11172         }
11173         if (vectorize) {
11174             if (veclen) {
11175                 Copy(dotstr, p, dotstrlen, char);
11176                 p += dotstrlen;
11177             }
11178             else
11179                 vectorize = FALSE;              /* done iterating over vecstr */
11180         }
11181         if (is_utf8)
11182             has_utf8 = TRUE;
11183         if (has_utf8)
11184             SvUTF8_on(sv);
11185         *p = '\0';
11186         SvCUR_set(sv, p - SvPVX_const(sv));
11187         if (vectorize) {
11188             esignlen = 0;
11189             goto vector;
11190         }
11191     }
11192     SvTAINT(sv);
11193 }
11194
11195 /* =========================================================================
11196
11197 =head1 Cloning an interpreter
11198
11199 All the macros and functions in this section are for the private use of
11200 the main function, perl_clone().
11201
11202 The foo_dup() functions make an exact copy of an existing foo thingy.
11203 During the course of a cloning, a hash table is used to map old addresses
11204 to new addresses.  The table is created and manipulated with the
11205 ptr_table_* functions.
11206
11207 =cut
11208
11209  * =========================================================================*/
11210
11211
11212 #if defined(USE_ITHREADS)
11213
11214 /* XXX Remove this so it doesn't have to go thru the macro and return for nothing */
11215 #ifndef GpREFCNT_inc
11216 #  define GpREFCNT_inc(gp)      ((gp) ? (++(gp)->gp_refcnt, (gp)) : (GP*)NULL)
11217 #endif
11218
11219
11220 /* Certain cases in Perl_ss_dup have been merged, by relying on the fact
11221    that currently av_dup, gv_dup and hv_dup are the same as sv_dup.
11222    If this changes, please unmerge ss_dup.
11223    Likewise, sv_dup_inc_multiple() relies on this fact.  */
11224 #define sv_dup_inc_NN(s,t)      SvREFCNT_inc_NN(sv_dup_inc(s,t))
11225 #define av_dup(s,t)     MUTABLE_AV(sv_dup((const SV *)s,t))
11226 #define av_dup_inc(s,t) MUTABLE_AV(sv_dup_inc((const SV *)s,t))
11227 #define hv_dup(s,t)     MUTABLE_HV(sv_dup((const SV *)s,t))
11228 #define hv_dup_inc(s,t) MUTABLE_HV(sv_dup_inc((const SV *)s,t))
11229 #define cv_dup(s,t)     MUTABLE_CV(sv_dup((const SV *)s,t))
11230 #define cv_dup_inc(s,t) MUTABLE_CV(sv_dup_inc((const SV *)s,t))
11231 #define io_dup(s,t)     MUTABLE_IO(sv_dup((const SV *)s,t))
11232 #define io_dup_inc(s,t) MUTABLE_IO(sv_dup_inc((const SV *)s,t))
11233 #define gv_dup(s,t)     MUTABLE_GV(sv_dup((const SV *)s,t))
11234 #define gv_dup_inc(s,t) MUTABLE_GV(sv_dup_inc((const SV *)s,t))
11235 #define SAVEPV(p)       ((p) ? savepv(p) : NULL)
11236 #define SAVEPVN(p,n)    ((p) ? savepvn(p,n) : NULL)
11237
11238 /* clone a parser */
11239
11240 yy_parser *
11241 Perl_parser_dup(pTHX_ const yy_parser *const proto, CLONE_PARAMS *const param)
11242 {
11243     yy_parser *parser;
11244
11245     PERL_ARGS_ASSERT_PARSER_DUP;
11246
11247     if (!proto)
11248         return NULL;
11249
11250     /* look for it in the table first */
11251     parser = (yy_parser *)ptr_table_fetch(PL_ptr_table, proto);
11252     if (parser)
11253         return parser;
11254
11255     /* create anew and remember what it is */
11256     Newxz(parser, 1, yy_parser);
11257     ptr_table_store(PL_ptr_table, proto, parser);
11258
11259     /* XXX these not yet duped */
11260     parser->old_parser = NULL;
11261     parser->stack = NULL;
11262     parser->ps = NULL;
11263     parser->stack_size = 0;
11264     /* XXX parser->stack->state = 0; */
11265
11266     /* XXX eventually, just Copy() most of the parser struct ? */
11267
11268     parser->lex_brackets = proto->lex_brackets;
11269     parser->lex_casemods = proto->lex_casemods;
11270     parser->lex_brackstack = savepvn(proto->lex_brackstack,
11271                     (proto->lex_brackets < 120 ? 120 : proto->lex_brackets));
11272     parser->lex_casestack = savepvn(proto->lex_casestack,
11273                     (proto->lex_casemods < 12 ? 12 : proto->lex_casemods));
11274     parser->lex_defer   = proto->lex_defer;
11275     parser->lex_dojoin  = proto->lex_dojoin;
11276     parser->lex_expect  = proto->lex_expect;
11277     parser->lex_formbrack = proto->lex_formbrack;
11278     parser->lex_inpat   = proto->lex_inpat;
11279     parser->lex_inwhat  = proto->lex_inwhat;
11280     parser->lex_op      = proto->lex_op;
11281     parser->lex_repl    = sv_dup_inc(proto->lex_repl, param);
11282     parser->lex_starts  = proto->lex_starts;
11283     parser->lex_stuff   = sv_dup_inc(proto->lex_stuff, param);
11284     parser->multi_close = proto->multi_close;
11285     parser->multi_open  = proto->multi_open;
11286     parser->multi_start = proto->multi_start;
11287     parser->multi_end   = proto->multi_end;
11288     parser->preambled   = proto->preambled;
11289     parser->sublex_info = proto->sublex_info; /* XXX not quite right */
11290     parser->linestr     = sv_dup_inc(proto->linestr, param);
11291     parser->expect      = proto->expect;
11292     parser->copline     = proto->copline;
11293     parser->last_lop_op = proto->last_lop_op;
11294     parser->lex_state   = proto->lex_state;
11295     parser->rsfp        = fp_dup(proto->rsfp, '<', param);
11296     /* rsfp_filters entries have fake IoDIRP() */
11297     parser->rsfp_filters= av_dup_inc(proto->rsfp_filters, param);
11298     parser->in_my       = proto->in_my;
11299     parser->in_my_stash = hv_dup(proto->in_my_stash, param);
11300     parser->error_count = proto->error_count;
11301
11302
11303     parser->linestr     = sv_dup_inc(proto->linestr, param);
11304
11305     {
11306         char * const ols = SvPVX(proto->linestr);
11307         char * const ls  = SvPVX(parser->linestr);
11308
11309         parser->bufptr      = ls + (proto->bufptr >= ols ?
11310                                     proto->bufptr -  ols : 0);
11311         parser->oldbufptr   = ls + (proto->oldbufptr >= ols ?
11312                                     proto->oldbufptr -  ols : 0);
11313         parser->oldoldbufptr= ls + (proto->oldoldbufptr >= ols ?
11314                                     proto->oldoldbufptr -  ols : 0);
11315         parser->linestart   = ls + (proto->linestart >= ols ?
11316                                     proto->linestart -  ols : 0);
11317         parser->last_uni    = ls + (proto->last_uni >= ols ?
11318                                     proto->last_uni -  ols : 0);
11319         parser->last_lop    = ls + (proto->last_lop >= ols ?
11320                                     proto->last_lop -  ols : 0);
11321
11322         parser->bufend      = ls + SvCUR(parser->linestr);
11323     }
11324
11325     Copy(proto->tokenbuf, parser->tokenbuf, 256, char);
11326
11327
11328 #ifdef PERL_MAD
11329     parser->endwhite    = proto->endwhite;
11330     parser->faketokens  = proto->faketokens;
11331     parser->lasttoke    = proto->lasttoke;
11332     parser->nextwhite   = proto->nextwhite;
11333     parser->realtokenstart = proto->realtokenstart;
11334     parser->skipwhite   = proto->skipwhite;
11335     parser->thisclose   = proto->thisclose;
11336     parser->thismad     = proto->thismad;
11337     parser->thisopen    = proto->thisopen;
11338     parser->thisstuff   = proto->thisstuff;
11339     parser->thistoken   = proto->thistoken;
11340     parser->thiswhite   = proto->thiswhite;
11341
11342     Copy(proto->nexttoke, parser->nexttoke, 5, NEXTTOKE);
11343     parser->curforce    = proto->curforce;
11344 #else
11345     Copy(proto->nextval, parser->nextval, 5, YYSTYPE);
11346     Copy(proto->nexttype, parser->nexttype, 5,  I32);
11347     parser->nexttoke    = proto->nexttoke;
11348 #endif
11349
11350     /* XXX should clone saved_curcop here, but we aren't passed
11351      * proto_perl; so do it in perl_clone_using instead */
11352
11353     return parser;
11354 }
11355
11356
11357 /* duplicate a file handle */
11358
11359 PerlIO *
11360 Perl_fp_dup(pTHX_ PerlIO *const fp, const char type, CLONE_PARAMS *const param)
11361 {
11362     PerlIO *ret;
11363
11364     PERL_ARGS_ASSERT_FP_DUP;
11365     PERL_UNUSED_ARG(type);
11366
11367     if (!fp)
11368         return (PerlIO*)NULL;
11369
11370     /* look for it in the table first */
11371     ret = (PerlIO*)ptr_table_fetch(PL_ptr_table, fp);
11372     if (ret)
11373         return ret;
11374
11375     /* create anew and remember what it is */
11376     ret = PerlIO_fdupopen(aTHX_ fp, param, PERLIO_DUP_CLONE);
11377     ptr_table_store(PL_ptr_table, fp, ret);
11378     return ret;
11379 }
11380
11381 /* duplicate a directory handle */
11382
11383 DIR *
11384 Perl_dirp_dup(pTHX_ DIR *const dp, CLONE_PARAMS *const param)
11385 {
11386     DIR *ret;
11387
11388 #ifdef HAS_FCHDIR
11389     DIR *pwd;
11390     const Direntry_t *dirent;
11391     char smallbuf[256];
11392     char *name = NULL;
11393     STRLEN len = 0;
11394     long pos;
11395 #endif
11396
11397     PERL_UNUSED_CONTEXT;
11398     PERL_ARGS_ASSERT_DIRP_DUP;
11399
11400     if (!dp)
11401         return (DIR*)NULL;
11402
11403     /* look for it in the table first */
11404     ret = (DIR*)ptr_table_fetch(PL_ptr_table, dp);
11405     if (ret)
11406         return ret;
11407
11408 #ifdef HAS_FCHDIR
11409
11410     PERL_UNUSED_ARG(param);
11411
11412     /* create anew */
11413
11414     /* open the current directory (so we can switch back) */
11415     if (!(pwd = PerlDir_open("."))) return (DIR *)NULL;
11416
11417     /* chdir to our dir handle and open the present working directory */
11418     if (fchdir(my_dirfd(dp)) < 0 || !(ret = PerlDir_open("."))) {
11419         PerlDir_close(pwd);
11420         return (DIR *)NULL;
11421     }
11422     /* Now we should have two dir handles pointing to the same dir. */
11423
11424     /* Be nice to the calling code and chdir back to where we were. */
11425     fchdir(my_dirfd(pwd)); /* If this fails, then what? */
11426
11427     /* We have no need of the pwd handle any more. */
11428     PerlDir_close(pwd);
11429
11430 #ifdef DIRNAMLEN
11431 # define d_namlen(d) (d)->d_namlen
11432 #else
11433 # define d_namlen(d) strlen((d)->d_name)
11434 #endif
11435     /* Iterate once through dp, to get the file name at the current posi-
11436        tion. Then step back. */
11437     pos = PerlDir_tell(dp);
11438     if ((dirent = PerlDir_read(dp))) {
11439         len = d_namlen(dirent);
11440         if (len <= sizeof smallbuf) name = smallbuf;
11441         else Newx(name, len, char);
11442         Move(dirent->d_name, name, len, char);
11443     }
11444     PerlDir_seek(dp, pos);
11445
11446     /* Iterate through the new dir handle, till we find a file with the
11447        right name. */
11448     if (!dirent) /* just before the end */
11449         for(;;) {
11450             pos = PerlDir_tell(ret);
11451             if (PerlDir_read(ret)) continue; /* not there yet */
11452             PerlDir_seek(ret, pos); /* step back */
11453             break;
11454         }
11455     else {
11456         const long pos0 = PerlDir_tell(ret);
11457         for(;;) {
11458             pos = PerlDir_tell(ret);
11459             if ((dirent = PerlDir_read(ret))) {
11460                 if (len == d_namlen(dirent)
11461                  && memEQ(name, dirent->d_name, len)) {
11462                     /* found it */
11463                     PerlDir_seek(ret, pos); /* step back */
11464                     break;
11465                 }
11466                 /* else we are not there yet; keep iterating */
11467             }
11468             else { /* This is not meant to happen. The best we can do is
11469                       reset the iterator to the beginning. */
11470                 PerlDir_seek(ret, pos0);
11471                 break;
11472             }
11473         }
11474     }
11475 #undef d_namlen
11476
11477     if (name && name != smallbuf)
11478         Safefree(name);
11479 #endif
11480
11481 #ifdef WIN32
11482     ret = win32_dirp_dup(dp, param);
11483 #endif
11484
11485     /* pop it in the pointer table */
11486     if (ret)
11487         ptr_table_store(PL_ptr_table, dp, ret);
11488
11489     return ret;
11490 }
11491
11492 /* duplicate a typeglob */
11493
11494 GP *
11495 Perl_gp_dup(pTHX_ GP *const gp, CLONE_PARAMS *const param)
11496 {
11497     GP *ret;
11498
11499     PERL_ARGS_ASSERT_GP_DUP;
11500
11501     if (!gp)
11502         return (GP*)NULL;
11503     /* look for it in the table first */
11504     ret = (GP*)ptr_table_fetch(PL_ptr_table, gp);
11505     if (ret)
11506         return ret;
11507
11508     /* create anew and remember what it is */
11509     Newxz(ret, 1, GP);
11510     ptr_table_store(PL_ptr_table, gp, ret);
11511
11512     /* clone */
11513     /* ret->gp_refcnt must be 0 before any other dups are called. We're relying
11514        on Newxz() to do this for us.  */
11515     ret->gp_sv          = sv_dup_inc(gp->gp_sv, param);
11516     ret->gp_io          = io_dup_inc(gp->gp_io, param);
11517     ret->gp_form        = cv_dup_inc(gp->gp_form, param);
11518     ret->gp_av          = av_dup_inc(gp->gp_av, param);
11519     ret->gp_hv          = hv_dup_inc(gp->gp_hv, param);
11520     ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
11521     ret->gp_cv          = cv_dup_inc(gp->gp_cv, param);
11522     ret->gp_cvgen       = gp->gp_cvgen;
11523     ret->gp_line        = gp->gp_line;
11524     ret->gp_file_hek    = hek_dup(gp->gp_file_hek, param);
11525     return ret;
11526 }
11527
11528 /* duplicate a chain of magic */
11529
11530 MAGIC *
11531 Perl_mg_dup(pTHX_ MAGIC *mg, CLONE_PARAMS *const param)
11532 {
11533     MAGIC *mgret = NULL;
11534     MAGIC **mgprev_p = &mgret;
11535
11536     PERL_ARGS_ASSERT_MG_DUP;
11537
11538     for (; mg; mg = mg->mg_moremagic) {
11539         MAGIC *nmg;
11540
11541         if ((param->flags & CLONEf_JOIN_IN)
11542                 && mg->mg_type == PERL_MAGIC_backref)
11543             /* when joining, we let the individual SVs add themselves to
11544              * backref as needed. */
11545             continue;
11546
11547         Newx(nmg, 1, MAGIC);
11548         *mgprev_p = nmg;
11549         mgprev_p = &(nmg->mg_moremagic);
11550
11551         /* There was a comment "XXX copy dynamic vtable?" but as we don't have
11552            dynamic vtables, I'm not sure why Sarathy wrote it. The comment dates
11553            from the original commit adding Perl_mg_dup() - revision 4538.
11554            Similarly there is the annotation "XXX random ptr?" next to the
11555            assignment to nmg->mg_ptr.  */
11556         *nmg = *mg;
11557
11558         /* FIXME for plugins
11559         if (nmg->mg_type == PERL_MAGIC_qr) {
11560             nmg->mg_obj = MUTABLE_SV(CALLREGDUPE((REGEXP*)nmg->mg_obj, param));
11561         }
11562         else
11563         */
11564         nmg->mg_obj = (nmg->mg_flags & MGf_REFCOUNTED)
11565                           ? nmg->mg_type == PERL_MAGIC_backref
11566                                 /* The backref AV has its reference
11567                                  * count deliberately bumped by 1 */
11568                                 ? SvREFCNT_inc(av_dup_inc((const AV *)
11569                                                     nmg->mg_obj, param))
11570                                 : sv_dup_inc(nmg->mg_obj, param)
11571                           : sv_dup(nmg->mg_obj, param);
11572
11573         if (nmg->mg_ptr && nmg->mg_type != PERL_MAGIC_regex_global) {
11574             if (nmg->mg_len > 0) {
11575                 nmg->mg_ptr     = SAVEPVN(nmg->mg_ptr, nmg->mg_len);
11576                 if (nmg->mg_type == PERL_MAGIC_overload_table &&
11577                         AMT_AMAGIC((AMT*)nmg->mg_ptr))
11578                 {
11579                     AMT * const namtp = (AMT*)nmg->mg_ptr;
11580                     sv_dup_inc_multiple((SV**)(namtp->table),
11581                                         (SV**)(namtp->table), NofAMmeth, param);
11582                 }
11583             }
11584             else if (nmg->mg_len == HEf_SVKEY)
11585                 nmg->mg_ptr = (char*)sv_dup_inc((const SV *)nmg->mg_ptr, param);
11586         }
11587         if ((nmg->mg_flags & MGf_DUP) && nmg->mg_virtual && nmg->mg_virtual->svt_dup) {
11588             nmg->mg_virtual->svt_dup(aTHX_ nmg, param);
11589         }
11590     }
11591     return mgret;
11592 }
11593
11594 #endif /* USE_ITHREADS */
11595
11596 struct ptr_tbl_arena {
11597     struct ptr_tbl_arena *next;
11598     struct ptr_tbl_ent array[1023/3]; /* as ptr_tbl_ent has 3 pointers.  */
11599 };
11600
11601 /* create a new pointer-mapping table */
11602
11603 PTR_TBL_t *
11604 Perl_ptr_table_new(pTHX)
11605 {
11606     PTR_TBL_t *tbl;
11607     PERL_UNUSED_CONTEXT;
11608
11609     Newx(tbl, 1, PTR_TBL_t);
11610     tbl->tbl_max        = 511;
11611     tbl->tbl_items      = 0;
11612     tbl->tbl_arena      = NULL;
11613     tbl->tbl_arena_next = NULL;
11614     tbl->tbl_arena_end  = NULL;
11615     Newxz(tbl->tbl_ary, tbl->tbl_max + 1, PTR_TBL_ENT_t*);
11616     return tbl;
11617 }
11618
11619 #define PTR_TABLE_HASH(ptr) \
11620   ((PTR2UV(ptr) >> 3) ^ (PTR2UV(ptr) >> (3 + 7)) ^ (PTR2UV(ptr) >> (3 + 17)))
11621
11622 /* map an existing pointer using a table */
11623
11624 STATIC PTR_TBL_ENT_t *
11625 S_ptr_table_find(PTR_TBL_t *const tbl, const void *const sv)
11626 {
11627     PTR_TBL_ENT_t *tblent;
11628     const UV hash = PTR_TABLE_HASH(sv);
11629
11630     PERL_ARGS_ASSERT_PTR_TABLE_FIND;
11631
11632     tblent = tbl->tbl_ary[hash & tbl->tbl_max];
11633     for (; tblent; tblent = tblent->next) {
11634         if (tblent->oldval == sv)
11635             return tblent;
11636     }
11637     return NULL;
11638 }
11639
11640 void *
11641 Perl_ptr_table_fetch(pTHX_ PTR_TBL_t *const tbl, const void *const sv)
11642 {
11643     PTR_TBL_ENT_t const *const tblent = ptr_table_find(tbl, sv);
11644
11645     PERL_ARGS_ASSERT_PTR_TABLE_FETCH;
11646     PERL_UNUSED_CONTEXT;
11647
11648     return tblent ? tblent->newval : NULL;
11649 }
11650
11651 /* add a new entry to a pointer-mapping table */
11652
11653 void
11654 Perl_ptr_table_store(pTHX_ PTR_TBL_t *const tbl, const void *const oldsv, void *const newsv)
11655 {
11656     PTR_TBL_ENT_t *tblent = ptr_table_find(tbl, oldsv);
11657
11658     PERL_ARGS_ASSERT_PTR_TABLE_STORE;
11659     PERL_UNUSED_CONTEXT;
11660
11661     if (tblent) {
11662         tblent->newval = newsv;
11663     } else {
11664         const UV entry = PTR_TABLE_HASH(oldsv) & tbl->tbl_max;
11665
11666         if (tbl->tbl_arena_next == tbl->tbl_arena_end) {
11667             struct ptr_tbl_arena *new_arena;
11668
11669             Newx(new_arena, 1, struct ptr_tbl_arena);
11670             new_arena->next = tbl->tbl_arena;
11671             tbl->tbl_arena = new_arena;
11672             tbl->tbl_arena_next = new_arena->array;
11673             tbl->tbl_arena_end = new_arena->array
11674                 + sizeof(new_arena->array) / sizeof(new_arena->array[0]);
11675         }
11676
11677         tblent = tbl->tbl_arena_next++;
11678
11679         tblent->oldval = oldsv;
11680         tblent->newval = newsv;
11681         tblent->next = tbl->tbl_ary[entry];
11682         tbl->tbl_ary[entry] = tblent;
11683         tbl->tbl_items++;
11684         if (tblent->next && tbl->tbl_items > tbl->tbl_max)
11685             ptr_table_split(tbl);
11686     }
11687 }
11688
11689 /* double the hash bucket size of an existing ptr table */
11690
11691 void
11692 Perl_ptr_table_split(pTHX_ PTR_TBL_t *const tbl)
11693 {
11694     PTR_TBL_ENT_t **ary = tbl->tbl_ary;
11695     const UV oldsize = tbl->tbl_max + 1;
11696     UV newsize = oldsize * 2;
11697     UV i;
11698
11699     PERL_ARGS_ASSERT_PTR_TABLE_SPLIT;
11700     PERL_UNUSED_CONTEXT;
11701
11702     Renew(ary, newsize, PTR_TBL_ENT_t*);
11703     Zero(&ary[oldsize], newsize-oldsize, PTR_TBL_ENT_t*);
11704     tbl->tbl_max = --newsize;
11705     tbl->tbl_ary = ary;
11706     for (i=0; i < oldsize; i++, ary++) {
11707         PTR_TBL_ENT_t **entp = ary;
11708         PTR_TBL_ENT_t *ent = *ary;
11709         PTR_TBL_ENT_t **curentp;
11710         if (!ent)
11711             continue;
11712         curentp = ary + oldsize;
11713         do {
11714             if ((newsize & PTR_TABLE_HASH(ent->oldval)) != i) {
11715                 *entp = ent->next;
11716                 ent->next = *curentp;
11717                 *curentp = ent;
11718             }
11719             else
11720                 entp = &ent->next;
11721             ent = *entp;
11722         } while (ent);
11723     }
11724 }
11725
11726 /* remove all the entries from a ptr table */
11727 /* Deprecated - will be removed post 5.14 */
11728
11729 void
11730 Perl_ptr_table_clear(pTHX_ PTR_TBL_t *const tbl)
11731 {
11732     if (tbl && tbl->tbl_items) {
11733         struct ptr_tbl_arena *arena = tbl->tbl_arena;
11734
11735         Zero(tbl->tbl_ary, tbl->tbl_max + 1, struct ptr_tbl_ent **);
11736
11737         while (arena) {
11738             struct ptr_tbl_arena *next = arena->next;
11739
11740             Safefree(arena);
11741             arena = next;
11742         };
11743
11744         tbl->tbl_items = 0;
11745         tbl->tbl_arena = NULL;
11746         tbl->tbl_arena_next = NULL;
11747         tbl->tbl_arena_end = NULL;
11748     }
11749 }
11750
11751 /* clear and free a ptr table */
11752
11753 void
11754 Perl_ptr_table_free(pTHX_ PTR_TBL_t *const tbl)
11755 {
11756     struct ptr_tbl_arena *arena;
11757
11758     if (!tbl) {
11759         return;
11760     }
11761
11762     arena = tbl->tbl_arena;
11763
11764     while (arena) {
11765         struct ptr_tbl_arena *next = arena->next;
11766
11767         Safefree(arena);
11768         arena = next;
11769     }
11770
11771     Safefree(tbl->tbl_ary);
11772     Safefree(tbl);
11773 }
11774
11775 #if defined(USE_ITHREADS)
11776
11777 void
11778 Perl_rvpv_dup(pTHX_ SV *const dstr, const SV *const sstr, CLONE_PARAMS *const param)
11779 {
11780     PERL_ARGS_ASSERT_RVPV_DUP;
11781
11782     assert(!isREGEXP(sstr));
11783     if (SvROK(sstr)) {
11784         if (SvWEAKREF(sstr)) {
11785             SvRV_set(dstr, sv_dup(SvRV_const(sstr), param));
11786             if (param->flags & CLONEf_JOIN_IN) {
11787                 /* if joining, we add any back references individually rather
11788                  * than copying the whole backref array */
11789                 Perl_sv_add_backref(aTHX_ SvRV(dstr), dstr);
11790             }
11791         }
11792         else
11793             SvRV_set(dstr, sv_dup_inc(SvRV_const(sstr), param));
11794     }
11795     else if (SvPVX_const(sstr)) {
11796         /* Has something there */
11797         if (SvLEN(sstr)) {
11798             /* Normal PV - clone whole allocated space */
11799             SvPV_set(dstr, SAVEPVN(SvPVX_const(sstr), SvLEN(sstr)-1));
11800             if (SvREADONLY(sstr) && SvFAKE(sstr)) {
11801                 /* Not that normal - actually sstr is copy on write.
11802                    But we are a true, independent SV, so:  */
11803                 SvREADONLY_off(dstr);
11804                 SvFAKE_off(dstr);
11805             }
11806         }
11807         else {
11808             /* Special case - not normally malloced for some reason */
11809             if (isGV_with_GP(sstr)) {
11810                 /* Don't need to do anything here.  */
11811             }
11812             else if ((SvREADONLY(sstr) && SvFAKE(sstr))) {
11813                 /* A "shared" PV - clone it as "shared" PV */
11814                 SvPV_set(dstr,
11815                          HEK_KEY(hek_dup(SvSHARED_HEK_FROM_PV(SvPVX_const(sstr)),
11816                                          param)));
11817             }
11818             else {
11819                 /* Some other special case - random pointer */
11820                 SvPV_set(dstr, (char *) SvPVX_const(sstr));             
11821             }
11822         }
11823     }
11824     else {
11825         /* Copy the NULL */
11826         SvPV_set(dstr, NULL);
11827     }
11828 }
11829
11830 /* duplicate a list of SVs. source and dest may point to the same memory.  */
11831 static SV **
11832 S_sv_dup_inc_multiple(pTHX_ SV *const *source, SV **dest,
11833                       SSize_t items, CLONE_PARAMS *const param)
11834 {
11835     PERL_ARGS_ASSERT_SV_DUP_INC_MULTIPLE;
11836
11837     while (items-- > 0) {
11838         *dest++ = sv_dup_inc(*source++, param);
11839     }
11840
11841     return dest;
11842 }
11843
11844 /* duplicate an SV of any type (including AV, HV etc) */
11845
11846 static SV *
11847 S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
11848 {
11849     dVAR;
11850     SV *dstr;
11851
11852     PERL_ARGS_ASSERT_SV_DUP_COMMON;
11853
11854     if (SvTYPE(sstr) == (svtype)SVTYPEMASK) {
11855 #ifdef DEBUG_LEAKING_SCALARS_ABORT
11856         abort();
11857 #endif
11858         return NULL;
11859     }
11860     /* look for it in the table first */
11861     dstr = MUTABLE_SV(ptr_table_fetch(PL_ptr_table, sstr));
11862     if (dstr)
11863         return dstr;
11864
11865     if(param->flags & CLONEf_JOIN_IN) {
11866         /** We are joining here so we don't want do clone
11867             something that is bad **/
11868         if (SvTYPE(sstr) == SVt_PVHV) {
11869             const HEK * const hvname = HvNAME_HEK(sstr);
11870             if (hvname) {
11871                 /** don't clone stashes if they already exist **/
11872                 dstr = MUTABLE_SV(gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
11873                                                 HEK_UTF8(hvname) ? SVf_UTF8 : 0));
11874                 ptr_table_store(PL_ptr_table, sstr, dstr);
11875                 return dstr;
11876             }
11877         }
11878         else if (SvTYPE(sstr) == SVt_PVGV && !SvFAKE(sstr)) {
11879             HV *stash = GvSTASH(sstr);
11880             const HEK * hvname;
11881             if (stash && (hvname = HvNAME_HEK(stash))) {
11882                 /** don't clone GVs if they already exist **/
11883                 SV **svp;
11884                 stash = gv_stashpvn(HEK_KEY(hvname), HEK_LEN(hvname),
11885                                     HEK_UTF8(hvname) ? SVf_UTF8 : 0);
11886                 svp = hv_fetch(
11887                         stash, GvNAME(sstr),
11888                         GvNAMEUTF8(sstr)
11889                             ? -GvNAMELEN(sstr)
11890                             :  GvNAMELEN(sstr),
11891                         0
11892                       );
11893                 if (svp && *svp && SvTYPE(*svp) == SVt_PVGV) {
11894                     ptr_table_store(PL_ptr_table, sstr, *svp);
11895                     return *svp;
11896                 }
11897             }
11898         }
11899     }
11900
11901     /* create anew and remember what it is */
11902     new_SV(dstr);
11903
11904 #ifdef DEBUG_LEAKING_SCALARS
11905     dstr->sv_debug_optype = sstr->sv_debug_optype;
11906     dstr->sv_debug_line = sstr->sv_debug_line;
11907     dstr->sv_debug_inpad = sstr->sv_debug_inpad;
11908     dstr->sv_debug_parent = (SV*)sstr;
11909     FREE_SV_DEBUG_FILE(dstr);
11910     dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file);
11911 #endif
11912
11913     ptr_table_store(PL_ptr_table, sstr, dstr);
11914
11915     /* clone */
11916     SvFLAGS(dstr)       = SvFLAGS(sstr);
11917     SvFLAGS(dstr)       &= ~SVf_OOK;            /* don't propagate OOK hack */
11918     SvREFCNT(dstr)      = 0;                    /* must be before any other dups! */
11919
11920 #ifdef DEBUGGING
11921     if (SvANY(sstr) && PL_watch_pvx && SvPVX_const(sstr) == PL_watch_pvx)
11922         PerlIO_printf(Perl_debug_log, "watch at %p hit, found string \"%s\"\n",
11923                       (void*)PL_watch_pvx, SvPVX_const(sstr));
11924 #endif
11925
11926     /* don't clone objects whose class has asked us not to */
11927     if (SvOBJECT(sstr) && ! (SvFLAGS(SvSTASH(sstr)) & SVphv_CLONEABLE)) {
11928         SvFLAGS(dstr) = 0;
11929         return dstr;
11930     }
11931
11932     switch (SvTYPE(sstr)) {
11933     case SVt_NULL:
11934         SvANY(dstr)     = NULL;
11935         break;
11936     case SVt_IV:
11937         SvANY(dstr)     = (XPVIV*)((char*)&(dstr->sv_u.svu_iv) - STRUCT_OFFSET(XPVIV, xiv_iv));
11938         if(SvROK(sstr)) {
11939             Perl_rvpv_dup(aTHX_ dstr, sstr, param);
11940         } else {
11941             SvIV_set(dstr, SvIVX(sstr));
11942         }
11943         break;
11944     case SVt_NV:
11945         SvANY(dstr)     = new_XNV();
11946         SvNV_set(dstr, SvNVX(sstr));
11947         break;
11948         /* case SVt_BIND: */
11949     default:
11950         {
11951             /* These are all the types that need complex bodies allocating.  */
11952             void *new_body;
11953             const svtype sv_type = SvTYPE(sstr);
11954             const struct body_details *const sv_type_details
11955                 = bodies_by_type + sv_type;
11956
11957             switch (sv_type) {
11958             default:
11959                 Perl_croak(aTHX_ "Bizarre SvTYPE [%" IVdf "]", (IV)SvTYPE(sstr));
11960                 break;
11961
11962             case SVt_PVGV:
11963             case SVt_PVIO:
11964             case SVt_PVFM:
11965             case SVt_PVHV:
11966             case SVt_PVAV:
11967             case SVt_PVCV:
11968             case SVt_PVLV:
11969             case SVt_REGEXP:
11970             case SVt_PVMG:
11971             case SVt_PVNV:
11972             case SVt_PVIV:
11973             case SVt_PV:
11974                 assert(sv_type_details->body_size);
11975                 if (sv_type_details->arena) {
11976                     new_body_inline(new_body, sv_type);
11977                     new_body
11978                         = (void*)((char*)new_body - sv_type_details->offset);
11979                 } else {
11980                     new_body = new_NOARENA(sv_type_details);
11981                 }
11982             }
11983             assert(new_body);
11984             SvANY(dstr) = new_body;
11985
11986 #ifndef PURIFY
11987             Copy(((char*)SvANY(sstr)) + sv_type_details->offset,
11988                  ((char*)SvANY(dstr)) + sv_type_details->offset,
11989                  sv_type_details->copy, char);
11990 #else
11991             Copy(((char*)SvANY(sstr)),
11992                  ((char*)SvANY(dstr)),
11993                  sv_type_details->body_size + sv_type_details->offset, char);
11994 #endif
11995
11996             if (sv_type != SVt_PVAV && sv_type != SVt_PVHV
11997                 && !isGV_with_GP(dstr)
11998                 && !isREGEXP(dstr)
11999                 && !(sv_type == SVt_PVIO && !(IoFLAGS(dstr) & IOf_FAKE_DIRP)))
12000                 Perl_rvpv_dup(aTHX_ dstr, sstr, param);
12001
12002             /* The Copy above means that all the source (unduplicated) pointers
12003                are now in the destination.  We can check the flags and the
12004                pointers in either, but it's possible that there's less cache
12005                missing by always going for the destination.
12006                FIXME - instrument and check that assumption  */
12007             if (sv_type >= SVt_PVMG) {
12008                 if ((sv_type == SVt_PVMG) && SvPAD_OUR(dstr)) {
12009                     SvOURSTASH_set(dstr, hv_dup_inc(SvOURSTASH(dstr), param));
12010                 } else if (SvMAGIC(dstr))
12011                     SvMAGIC_set(dstr, mg_dup(SvMAGIC(dstr), param));
12012                 if (SvSTASH(dstr))
12013                     SvSTASH_set(dstr, hv_dup_inc(SvSTASH(dstr), param));
12014             }
12015
12016             /* The cast silences a GCC warning about unhandled types.  */
12017             switch ((int)sv_type) {
12018             case SVt_PV:
12019                 break;
12020             case SVt_PVIV:
12021                 break;
12022             case SVt_PVNV:
12023                 break;
12024             case SVt_PVMG:
12025                 break;
12026             case SVt_REGEXP:
12027               duprex:
12028                 /* FIXME for plugins */
12029                 dstr->sv_u.svu_rx = ((REGEXP *)dstr)->sv_any;
12030                 re_dup_guts((REGEXP*) sstr, (REGEXP*) dstr, param);
12031                 break;
12032             case SVt_PVLV:
12033                 /* XXX LvTARGOFF sometimes holds PMOP* when DEBUGGING */
12034                 if (LvTYPE(dstr) == 't') /* for tie: unrefcnted fake (SV**) */
12035                     LvTARG(dstr) = dstr;
12036                 else if (LvTYPE(dstr) == 'T') /* for tie: fake HE */
12037                     LvTARG(dstr) = MUTABLE_SV(he_dup((HE*)LvTARG(dstr), 0, param));
12038                 else
12039                     LvTARG(dstr) = sv_dup_inc(LvTARG(dstr), param);
12040                 if (isREGEXP(sstr)) goto duprex;
12041             case SVt_PVGV:
12042                 /* non-GP case already handled above */
12043                 if(isGV_with_GP(sstr)) {
12044                     GvNAME_HEK(dstr) = hek_dup(GvNAME_HEK(dstr), param);
12045                     /* Don't call sv_add_backref here as it's going to be
12046                        created as part of the magic cloning of the symbol
12047                        table--unless this is during a join and the stash
12048                        is not actually being cloned.  */
12049                     /* Danger Will Robinson - GvGP(dstr) isn't initialised
12050                        at the point of this comment.  */
12051                     GvSTASH(dstr) = hv_dup(GvSTASH(dstr), param);
12052                     if (param->flags & CLONEf_JOIN_IN)
12053                         Perl_sv_add_backref(aTHX_ MUTABLE_SV(GvSTASH(dstr)), dstr);
12054                     GvGP_set(dstr, gp_dup(GvGP(sstr), param));
12055                     (void)GpREFCNT_inc(GvGP(dstr));
12056                 }
12057                 break;
12058             case SVt_PVIO:
12059                 /* PL_parser->rsfp_filters entries have fake IoDIRP() */
12060                 if(IoFLAGS(dstr) & IOf_FAKE_DIRP) {
12061                     /* I have no idea why fake dirp (rsfps)
12062                        should be treated differently but otherwise
12063                        we end up with leaks -- sky*/
12064                     IoTOP_GV(dstr)      = gv_dup_inc(IoTOP_GV(dstr), param);
12065                     IoFMT_GV(dstr)      = gv_dup_inc(IoFMT_GV(dstr), param);
12066                     IoBOTTOM_GV(dstr)   = gv_dup_inc(IoBOTTOM_GV(dstr), param);
12067                 } else {
12068                     IoTOP_GV(dstr)      = gv_dup(IoTOP_GV(dstr), param);
12069                     IoFMT_GV(dstr)      = gv_dup(IoFMT_GV(dstr), param);
12070                     IoBOTTOM_GV(dstr)   = gv_dup(IoBOTTOM_GV(dstr), param);
12071                     if (IoDIRP(dstr)) {
12072                         IoDIRP(dstr)    = dirp_dup(IoDIRP(dstr), param);
12073                     } else {
12074                         NOOP;
12075                         /* IoDIRP(dstr) is already a copy of IoDIRP(sstr)  */
12076                     }
12077                     IoIFP(dstr) = fp_dup(IoIFP(sstr), IoTYPE(dstr), param);
12078                 }
12079                 if (IoOFP(dstr) == IoIFP(sstr))
12080                     IoOFP(dstr) = IoIFP(dstr);
12081                 else
12082                     IoOFP(dstr) = fp_dup(IoOFP(dstr), IoTYPE(dstr), param);
12083                 IoTOP_NAME(dstr)        = SAVEPV(IoTOP_NAME(dstr));
12084                 IoFMT_NAME(dstr)        = SAVEPV(IoFMT_NAME(dstr));
12085                 IoBOTTOM_NAME(dstr)     = SAVEPV(IoBOTTOM_NAME(dstr));
12086                 break;
12087             case SVt_PVAV:
12088                 /* avoid cloning an empty array */
12089                 if (AvARRAY((const AV *)sstr) && AvFILLp((const AV *)sstr) >= 0) {
12090                     SV **dst_ary, **src_ary;
12091                     SSize_t items = AvFILLp((const AV *)sstr) + 1;
12092
12093                     src_ary = AvARRAY((const AV *)sstr);
12094                     Newxz(dst_ary, AvMAX((const AV *)sstr)+1, SV*);
12095                     ptr_table_store(PL_ptr_table, src_ary, dst_ary);
12096                     AvARRAY(MUTABLE_AV(dstr)) = dst_ary;
12097                     AvALLOC((const AV *)dstr) = dst_ary;
12098                     if (AvREAL((const AV *)sstr)) {
12099                         dst_ary = sv_dup_inc_multiple(src_ary, dst_ary, items,
12100                                                       param);
12101                     }
12102                     else {
12103                         while (items-- > 0)
12104                             *dst_ary++ = sv_dup(*src_ary++, param);
12105                     }
12106                     items = AvMAX((const AV *)sstr) - AvFILLp((const AV *)sstr);
12107                     while (items-- > 0) {
12108                         *dst_ary++ = &PL_sv_undef;
12109                     }
12110                 }
12111                 else {
12112                     AvARRAY(MUTABLE_AV(dstr))   = NULL;
12113                     AvALLOC((const AV *)dstr)   = (SV**)NULL;
12114                     AvMAX(  (const AV *)dstr)   = -1;
12115                     AvFILLp((const AV *)dstr)   = -1;
12116                 }
12117                 break;
12118             case SVt_PVHV:
12119                 if (HvARRAY((const HV *)sstr)) {
12120                     STRLEN i = 0;
12121                     const bool sharekeys = !!HvSHAREKEYS(sstr);
12122                     XPVHV * const dxhv = (XPVHV*)SvANY(dstr);
12123                     XPVHV * const sxhv = (XPVHV*)SvANY(sstr);
12124                     char *darray;
12125                     Newx(darray, PERL_HV_ARRAY_ALLOC_BYTES(dxhv->xhv_max+1)
12126                         + (SvOOK(sstr) ? sizeof(struct xpvhv_aux) : 0),
12127                         char);
12128                     HvARRAY(dstr) = (HE**)darray;
12129                     while (i <= sxhv->xhv_max) {
12130                         const HE * const source = HvARRAY(sstr)[i];
12131                         HvARRAY(dstr)[i] = source
12132                             ? he_dup(source, sharekeys, param) : 0;
12133                         ++i;
12134                     }
12135                     if (SvOOK(sstr)) {
12136                         const struct xpvhv_aux * const saux = HvAUX(sstr);
12137                         struct xpvhv_aux * const daux = HvAUX(dstr);
12138                         /* This flag isn't copied.  */
12139                         SvOOK_on(dstr);
12140
12141                         if (saux->xhv_name_count) {
12142                             HEK ** const sname = saux->xhv_name_u.xhvnameu_names;
12143                             const I32 count
12144                              = saux->xhv_name_count < 0
12145                                 ? -saux->xhv_name_count
12146                                 :  saux->xhv_name_count;
12147                             HEK **shekp = sname + count;
12148                             HEK **dhekp;
12149                             Newx(daux->xhv_name_u.xhvnameu_names, count, HEK *);
12150                             dhekp = daux->xhv_name_u.xhvnameu_names + count;
12151                             while (shekp-- > sname) {
12152                                 dhekp--;
12153                                 *dhekp = hek_dup(*shekp, param);
12154                             }
12155                         }
12156                         else {
12157                             daux->xhv_name_u.xhvnameu_name
12158                                 = hek_dup(saux->xhv_name_u.xhvnameu_name,
12159                                           param);
12160                         }
12161                         daux->xhv_name_count = saux->xhv_name_count;
12162
12163                         daux->xhv_riter = saux->xhv_riter;
12164                         daux->xhv_eiter = saux->xhv_eiter
12165                             ? he_dup(saux->xhv_eiter,
12166                                         cBOOL(HvSHAREKEYS(sstr)), param) : 0;
12167                         /* backref array needs refcnt=2; see sv_add_backref */
12168                         daux->xhv_backreferences =
12169                             (param->flags & CLONEf_JOIN_IN)
12170                                 /* when joining, we let the individual GVs and
12171                                  * CVs add themselves to backref as
12172                                  * needed. This avoids pulling in stuff
12173                                  * that isn't required, and simplifies the
12174                                  * case where stashes aren't cloned back
12175                                  * if they already exist in the parent
12176                                  * thread */
12177                             ? NULL
12178                             : saux->xhv_backreferences
12179                                 ? (SvTYPE(saux->xhv_backreferences) == SVt_PVAV)
12180                                     ? MUTABLE_AV(SvREFCNT_inc(
12181                                           sv_dup_inc((const SV *)
12182                                             saux->xhv_backreferences, param)))
12183                                     : MUTABLE_AV(sv_dup((const SV *)
12184                                             saux->xhv_backreferences, param))
12185                                 : 0;
12186
12187                         daux->xhv_mro_meta = saux->xhv_mro_meta
12188                             ? mro_meta_dup(saux->xhv_mro_meta, param)
12189                             : 0;
12190                         daux->xhv_super = NULL;
12191
12192                         /* Record stashes for possible cloning in Perl_clone(). */
12193                         if (HvNAME(sstr))
12194                             av_push(param->stashes, dstr);
12195                     }
12196                 }
12197                 else
12198                     HvARRAY(MUTABLE_HV(dstr)) = NULL;
12199                 break;
12200             case SVt_PVCV:
12201                 if (!(param->flags & CLONEf_COPY_STACKS)) {
12202                     CvDEPTH(dstr) = 0;
12203                 }
12204                 /*FALLTHROUGH*/
12205             case SVt_PVFM:
12206                 /* NOTE: not refcounted */
12207                 SvANY(MUTABLE_CV(dstr))->xcv_stash =
12208                     hv_dup(CvSTASH(dstr), param);
12209                 if ((param->flags & CLONEf_JOIN_IN) && CvSTASH(dstr))
12210                     Perl_sv_add_backref(aTHX_ MUTABLE_SV(CvSTASH(dstr)), dstr);
12211                 if (!CvISXSUB(dstr)) {
12212                     OP_REFCNT_LOCK;
12213                     CvROOT(dstr) = OpREFCNT_inc(CvROOT(dstr));
12214                     OP_REFCNT_UNLOCK;
12215                     CvSLABBED_off(dstr);
12216                 } else if (CvCONST(dstr)) {
12217                     CvXSUBANY(dstr).any_ptr =
12218                         sv_dup_inc((const SV *)CvXSUBANY(dstr).any_ptr, param);
12219                 }
12220                 assert(!CvSLABBED(dstr));
12221                 if (CvDYNFILE(dstr)) CvFILE(dstr) = SAVEPV(CvFILE(dstr));
12222                 if (CvNAMED(dstr))
12223                     SvANY((CV *)dstr)->xcv_gv_u.xcv_hek =
12224                         share_hek_hek(CvNAME_HEK((CV *)sstr));
12225                 /* don't dup if copying back - CvGV isn't refcounted, so the
12226                  * duped GV may never be freed. A bit of a hack! DAPM */
12227                 else
12228                   SvANY(MUTABLE_CV(dstr))->xcv_gv_u.xcv_gv =
12229                     CvCVGV_RC(dstr)
12230                     ? gv_dup_inc(CvGV(sstr), param)
12231                     : (param->flags & CLONEf_JOIN_IN)
12232                         ? NULL
12233                         : gv_dup(CvGV(sstr), param);
12234
12235                 CvPADLIST(dstr) = padlist_dup(CvPADLIST(sstr), param);
12236                 CvOUTSIDE(dstr) =
12237                     CvWEAKOUTSIDE(sstr)
12238                     ? cv_dup(    CvOUTSIDE(dstr), param)
12239                     : cv_dup_inc(CvOUTSIDE(dstr), param);
12240                 break;
12241             }
12242         }
12243     }
12244
12245     if (SvOBJECT(dstr) && SvTYPE(dstr) != SVt_PVIO)
12246         ++PL_sv_objcount;
12247
12248     return dstr;
12249  }
12250
12251 SV *
12252 Perl_sv_dup_inc(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12253 {
12254     PERL_ARGS_ASSERT_SV_DUP_INC;
12255     return sstr ? SvREFCNT_inc(sv_dup_common(sstr, param)) : NULL;
12256 }
12257
12258 SV *
12259 Perl_sv_dup(pTHX_ const SV *const sstr, CLONE_PARAMS *const param)
12260 {
12261     SV *dstr = sstr ? sv_dup_common(sstr, param) : NULL;
12262     PERL_ARGS_ASSERT_SV_DUP;
12263
12264     /* Track every SV that (at least initially) had a reference count of 0.
12265        We need to do this by holding an actual reference to it in this array.
12266        If we attempt to cheat, turn AvREAL_off(), and store only pointers
12267        (akin to the stashes hash, and the perl stack), we come unstuck if
12268        a weak reference (or other SV legitimately SvREFCNT() == 0 for this
12269        thread) is manipulated in a CLONE method, because CLONE runs before the
12270        unreferenced array is walked to find SVs still with SvREFCNT() == 0
12271        (and fix things up by giving each a reference via the temps stack).
12272        Instead, during CLONE, if the 0-referenced SV has SvREFCNT_inc() and
12273        then SvREFCNT_dec(), it will be cleaned up (and added to the free list)
12274        before the walk of unreferenced happens and a reference to that is SV
12275        added to the temps stack. At which point we have the same SV considered
12276        to be in use, and free to be re-used. Not good.
12277     */
12278     if (dstr && !(param->flags & CLONEf_COPY_STACKS) && !SvREFCNT(dstr)) {
12279         assert(param->unreferenced);
12280         av_push(param->unreferenced, SvREFCNT_inc(dstr));
12281     }
12282
12283     return dstr;
12284 }
12285
12286 /* duplicate a context */
12287
12288 PERL_CONTEXT *
12289 Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param)
12290 {
12291     PERL_CONTEXT *ncxs;
12292
12293     PERL_ARGS_ASSERT_CX_DUP;
12294
12295     if (!cxs)
12296         return (PERL_CONTEXT*)NULL;
12297
12298     /* look for it in the table first */
12299     ncxs = (PERL_CONTEXT*)ptr_table_fetch(PL_ptr_table, cxs);
12300     if (ncxs)
12301         return ncxs;
12302
12303     /* create anew and remember what it is */
12304     Newx(ncxs, max + 1, PERL_CONTEXT);
12305     ptr_table_store(PL_ptr_table, cxs, ncxs);
12306     Copy(cxs, ncxs, max + 1, PERL_CONTEXT);
12307
12308     while (ix >= 0) {
12309         PERL_CONTEXT * const ncx = &ncxs[ix];
12310         if (CxTYPE(ncx) == CXt_SUBST) {
12311             Perl_croak(aTHX_ "Cloning substitution context is unimplemented");
12312         }
12313         else {
12314             ncx->blk_oldcop = (COP*)any_dup(ncx->blk_oldcop, param->proto_perl);
12315             switch (CxTYPE(ncx)) {
12316             case CXt_SUB:
12317                 ncx->blk_sub.cv         = (ncx->blk_sub.olddepth == 0
12318                                            ? cv_dup_inc(ncx->blk_sub.cv, param)
12319                                            : cv_dup(ncx->blk_sub.cv,param));
12320                 ncx->blk_sub.argarray   = (CxHASARGS(ncx)
12321                                            ? av_dup_inc(ncx->blk_sub.argarray,
12322                                                         param)
12323                                            : NULL);
12324                 ncx->blk_sub.savearray  = av_dup_inc(ncx->blk_sub.savearray,
12325                                                      param);
12326                 ncx->blk_sub.oldcomppad = (PAD*)ptr_table_fetch(PL_ptr_table,
12327                                            ncx->blk_sub.oldcomppad);
12328                 break;
12329             case CXt_EVAL:
12330                 ncx->blk_eval.old_namesv = sv_dup_inc(ncx->blk_eval.old_namesv,
12331                                                       param);
12332                 ncx->blk_eval.cur_text  = sv_dup(ncx->blk_eval.cur_text, param);
12333                 ncx->blk_eval.cv = cv_dup(ncx->blk_eval.cv, param);
12334                 break;
12335             case CXt_LOOP_LAZYSV:
12336                 ncx->blk_loop.state_u.lazysv.end
12337                     = sv_dup_inc(ncx->blk_loop.state_u.lazysv.end, param);
12338                 /* We are taking advantage of av_dup_inc and sv_dup_inc
12339                    actually being the same function, and order equivalence of
12340                    the two unions.
12341                    We can assert the later [but only at run time :-(]  */
12342                 assert ((void *) &ncx->blk_loop.state_u.ary.ary ==
12343                         (void *) &ncx->blk_loop.state_u.lazysv.cur);
12344             case CXt_LOOP_FOR:
12345                 ncx->blk_loop.state_u.ary.ary
12346                     = av_dup_inc(ncx->blk_loop.state_u.ary.ary, param);
12347             case CXt_LOOP_LAZYIV:
12348             case CXt_LOOP_PLAIN:
12349                 if (CxPADLOOP(ncx)) {
12350                     ncx->blk_loop.itervar_u.oldcomppad
12351                         = (PAD*)ptr_table_fetch(PL_ptr_table,
12352                                         ncx->blk_loop.itervar_u.oldcomppad);
12353                 } else {
12354                     ncx->blk_loop.itervar_u.gv
12355                         = gv_dup((const GV *)ncx->blk_loop.itervar_u.gv,
12356                                     param);
12357                 }
12358                 break;
12359             case CXt_FORMAT:
12360                 ncx->blk_format.cv      = cv_dup(ncx->blk_format.cv, param);
12361                 ncx->blk_format.gv      = gv_dup(ncx->blk_format.gv, param);
12362                 ncx->blk_format.dfoutgv = gv_dup_inc(ncx->blk_format.dfoutgv,
12363                                                      param);
12364                 break;
12365             case CXt_BLOCK:
12366             case CXt_NULL:
12367             case CXt_WHEN:
12368             case CXt_GIVEN:
12369                 break;
12370             }
12371         }
12372         --ix;
12373     }
12374     return ncxs;
12375 }
12376
12377 /* duplicate a stack info structure */
12378
12379 PERL_SI *
12380 Perl_si_dup(pTHX_ PERL_SI *si, CLONE_PARAMS* param)
12381 {
12382     PERL_SI *nsi;
12383
12384     PERL_ARGS_ASSERT_SI_DUP;
12385
12386     if (!si)
12387         return (PERL_SI*)NULL;
12388
12389     /* look for it in the table first */
12390     nsi = (PERL_SI*)ptr_table_fetch(PL_ptr_table, si);
12391     if (nsi)
12392         return nsi;
12393
12394     /* create anew and remember what it is */
12395     Newxz(nsi, 1, PERL_SI);
12396     ptr_table_store(PL_ptr_table, si, nsi);
12397
12398     nsi->si_stack       = av_dup_inc(si->si_stack, param);
12399     nsi->si_cxix        = si->si_cxix;
12400     nsi->si_cxmax       = si->si_cxmax;
12401     nsi->si_cxstack     = cx_dup(si->si_cxstack, si->si_cxix, si->si_cxmax, param);
12402     nsi->si_type        = si->si_type;
12403     nsi->si_prev        = si_dup(si->si_prev, param);
12404     nsi->si_next        = si_dup(si->si_next, param);
12405     nsi->si_markoff     = si->si_markoff;
12406
12407     return nsi;
12408 }
12409
12410 #define POPINT(ss,ix)   ((ss)[--(ix)].any_i32)
12411 #define TOPINT(ss,ix)   ((ss)[ix].any_i32)
12412 #define POPLONG(ss,ix)  ((ss)[--(ix)].any_long)
12413 #define TOPLONG(ss,ix)  ((ss)[ix].any_long)
12414 #define POPIV(ss,ix)    ((ss)[--(ix)].any_iv)
12415 #define TOPIV(ss,ix)    ((ss)[ix].any_iv)
12416 #define POPUV(ss,ix)    ((ss)[--(ix)].any_uv)
12417 #define TOPUV(ss,ix)    ((ss)[ix].any_uv)
12418 #define POPBOOL(ss,ix)  ((ss)[--(ix)].any_bool)
12419 #define TOPBOOL(ss,ix)  ((ss)[ix].any_bool)
12420 #define POPPTR(ss,ix)   ((ss)[--(ix)].any_ptr)
12421 #define TOPPTR(ss,ix)   ((ss)[ix].any_ptr)
12422 #define POPDPTR(ss,ix)  ((ss)[--(ix)].any_dptr)
12423 #define TOPDPTR(ss,ix)  ((ss)[ix].any_dptr)
12424 #define POPDXPTR(ss,ix) ((ss)[--(ix)].any_dxptr)
12425 #define TOPDXPTR(ss,ix) ((ss)[ix].any_dxptr)
12426
12427 /* XXXXX todo */
12428 #define pv_dup_inc(p)   SAVEPV(p)
12429 #define pv_dup(p)       SAVEPV(p)
12430 #define svp_dup_inc(p,pp)       any_dup(p,pp)
12431
12432 /* map any object to the new equivent - either something in the
12433  * ptr table, or something in the interpreter structure
12434  */
12435
12436 void *
12437 Perl_any_dup(pTHX_ void *v, const PerlInterpreter *proto_perl)
12438 {
12439     void *ret;
12440
12441     PERL_ARGS_ASSERT_ANY_DUP;
12442
12443     if (!v)
12444         return (void*)NULL;
12445
12446     /* look for it in the table first */
12447     ret = ptr_table_fetch(PL_ptr_table, v);
12448     if (ret)
12449         return ret;
12450
12451     /* see if it is part of the interpreter structure */
12452     if (v >= (void*)proto_perl && v < (void*)(proto_perl+1))
12453         ret = (void*)(((char*)aTHX) + (((char*)v) - (char*)proto_perl));
12454     else {
12455         ret = v;
12456     }
12457
12458     return ret;
12459 }
12460
12461 /* duplicate the save stack */
12462
12463 ANY *
12464 Perl_ss_dup(pTHX_ PerlInterpreter *proto_perl, CLONE_PARAMS* param)
12465 {
12466     dVAR;
12467     ANY * const ss      = proto_perl->Isavestack;
12468     const I32 max       = proto_perl->Isavestack_max;
12469     I32 ix              = proto_perl->Isavestack_ix;
12470     ANY *nss;
12471     const SV *sv;
12472     const GV *gv;
12473     const AV *av;
12474     const HV *hv;
12475     void* ptr;
12476     int intval;
12477     long longval;
12478     GP *gp;
12479     IV iv;
12480     I32 i;
12481     char *c = NULL;
12482     void (*dptr) (void*);
12483     void (*dxptr) (pTHX_ void*);
12484
12485     PERL_ARGS_ASSERT_SS_DUP;
12486
12487     Newxz(nss, max, ANY);
12488
12489     while (ix > 0) {
12490         const UV uv = POPUV(ss,ix);
12491         const U8 type = (U8)uv & SAVE_MASK;
12492
12493         TOPUV(nss,ix) = uv;
12494         switch (type) {
12495         case SAVEt_CLEARSV:
12496         case SAVEt_CLEARPADRANGE:
12497             break;
12498         case SAVEt_HELEM:               /* hash element */
12499             sv = (const SV *)POPPTR(ss,ix);
12500             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12501             /* fall through */
12502         case SAVEt_ITEM:                        /* normal string */
12503         case SAVEt_GVSV:                        /* scalar slot in GV */
12504         case SAVEt_SV:                          /* scalar reference */
12505             sv = (const SV *)POPPTR(ss,ix);
12506             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12507             /* fall through */
12508         case SAVEt_FREESV:
12509         case SAVEt_MORTALIZESV:
12510             sv = (const SV *)POPPTR(ss,ix);
12511             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12512             break;
12513         case SAVEt_SHARED_PVREF:                /* char* in shared space */
12514             c = (char*)POPPTR(ss,ix);
12515             TOPPTR(nss,ix) = savesharedpv(c);
12516             ptr = POPPTR(ss,ix);
12517             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12518             break;
12519         case SAVEt_GENERIC_SVREF:               /* generic sv */
12520         case SAVEt_SVREF:                       /* scalar reference */
12521             sv = (const SV *)POPPTR(ss,ix);
12522             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12523             ptr = POPPTR(ss,ix);
12524             TOPPTR(nss,ix) = svp_dup_inc((SV**)ptr, proto_perl);/* XXXXX */
12525             break;
12526         case SAVEt_HV:                          /* hash reference */
12527         case SAVEt_AV:                          /* array reference */
12528             sv = (const SV *) POPPTR(ss,ix);
12529             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12530             /* fall through */
12531         case SAVEt_COMPPAD:
12532         case SAVEt_NSTAB:
12533             sv = (const SV *) POPPTR(ss,ix);
12534             TOPPTR(nss,ix) = sv_dup(sv, param);
12535             break;
12536         case SAVEt_INT:                         /* int reference */
12537             ptr = POPPTR(ss,ix);
12538             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12539             intval = (int)POPINT(ss,ix);
12540             TOPINT(nss,ix) = intval;
12541             break;
12542         case SAVEt_LONG:                        /* long reference */
12543             ptr = POPPTR(ss,ix);
12544             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12545             longval = (long)POPLONG(ss,ix);
12546             TOPLONG(nss,ix) = longval;
12547             break;
12548         case SAVEt_I32:                         /* I32 reference */
12549             ptr = POPPTR(ss,ix);
12550             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12551             i = POPINT(ss,ix);
12552             TOPINT(nss,ix) = i;
12553             break;
12554         case SAVEt_IV:                          /* IV reference */
12555             ptr = POPPTR(ss,ix);
12556             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12557             iv = POPIV(ss,ix);
12558             TOPIV(nss,ix) = iv;
12559             break;
12560         case SAVEt_HPTR:                        /* HV* reference */
12561         case SAVEt_APTR:                        /* AV* reference */
12562         case SAVEt_SPTR:                        /* SV* reference */
12563             ptr = POPPTR(ss,ix);
12564             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12565             sv = (const SV *)POPPTR(ss,ix);
12566             TOPPTR(nss,ix) = sv_dup(sv, param);
12567             break;
12568         case SAVEt_VPTR:                        /* random* reference */
12569             ptr = POPPTR(ss,ix);
12570             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12571             /* Fall through */
12572         case SAVEt_INT_SMALL:
12573         case SAVEt_I32_SMALL:
12574         case SAVEt_I16:                         /* I16 reference */
12575         case SAVEt_I8:                          /* I8 reference */
12576         case SAVEt_BOOL:
12577             ptr = POPPTR(ss,ix);
12578             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12579             break;
12580         case SAVEt_GENERIC_PVREF:               /* generic char* */
12581         case SAVEt_PPTR:                        /* char* reference */
12582             ptr = POPPTR(ss,ix);
12583             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12584             c = (char*)POPPTR(ss,ix);
12585             TOPPTR(nss,ix) = pv_dup(c);
12586             break;
12587         case SAVEt_GP:                          /* scalar reference */
12588             gp = (GP*)POPPTR(ss,ix);
12589             TOPPTR(nss,ix) = gp = gp_dup(gp, param);
12590             (void)GpREFCNT_inc(gp);
12591             gv = (const GV *)POPPTR(ss,ix);
12592             TOPPTR(nss,ix) = gv_dup_inc(gv, param);
12593             break;
12594         case SAVEt_FREEOP:
12595             ptr = POPPTR(ss,ix);
12596             if (ptr && (((OP*)ptr)->op_private & OPpREFCOUNTED)) {
12597                 /* these are assumed to be refcounted properly */
12598                 OP *o;
12599                 switch (((OP*)ptr)->op_type) {
12600                 case OP_LEAVESUB:
12601                 case OP_LEAVESUBLV:
12602                 case OP_LEAVEEVAL:
12603                 case OP_LEAVE:
12604                 case OP_SCOPE:
12605                 case OP_LEAVEWRITE:
12606                     TOPPTR(nss,ix) = ptr;
12607                     o = (OP*)ptr;
12608                     OP_REFCNT_LOCK;
12609                     (void) OpREFCNT_inc(o);
12610                     OP_REFCNT_UNLOCK;
12611                     break;
12612                 default:
12613                     TOPPTR(nss,ix) = NULL;
12614                     break;
12615                 }
12616             }
12617             else
12618                 TOPPTR(nss,ix) = NULL;
12619             break;
12620         case SAVEt_FREECOPHH:
12621             ptr = POPPTR(ss,ix);
12622             TOPPTR(nss,ix) = cophh_copy((COPHH *)ptr);
12623             break;
12624         case SAVEt_DELETE:
12625             hv = (const HV *)POPPTR(ss,ix);
12626             TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12627             i = POPINT(ss,ix);
12628             TOPINT(nss,ix) = i;
12629             /* Fall through */
12630         case SAVEt_FREEPV:
12631             c = (char*)POPPTR(ss,ix);
12632             TOPPTR(nss,ix) = pv_dup_inc(c);
12633             break;
12634         case SAVEt_STACK_POS:           /* Position on Perl stack */
12635             i = POPINT(ss,ix);
12636             TOPINT(nss,ix) = i;
12637             break;
12638         case SAVEt_DESTRUCTOR:
12639             ptr = POPPTR(ss,ix);
12640             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12641             dptr = POPDPTR(ss,ix);
12642             TOPDPTR(nss,ix) = DPTR2FPTR(void (*)(void*),
12643                                         any_dup(FPTR2DPTR(void *, dptr),
12644                                                 proto_perl));
12645             break;
12646         case SAVEt_DESTRUCTOR_X:
12647             ptr = POPPTR(ss,ix);
12648             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);  /* XXX quite arbitrary */
12649             dxptr = POPDXPTR(ss,ix);
12650             TOPDXPTR(nss,ix) = DPTR2FPTR(void (*)(pTHX_ void*),
12651                                          any_dup(FPTR2DPTR(void *, dxptr),
12652                                                  proto_perl));
12653             break;
12654         case SAVEt_REGCONTEXT:
12655         case SAVEt_ALLOC:
12656             ix -= uv >> SAVE_TIGHT_SHIFT;
12657             break;
12658         case SAVEt_AELEM:               /* array element */
12659             sv = (const SV *)POPPTR(ss,ix);
12660             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12661             i = POPINT(ss,ix);
12662             TOPINT(nss,ix) = i;
12663             av = (const AV *)POPPTR(ss,ix);
12664             TOPPTR(nss,ix) = av_dup_inc(av, param);
12665             break;
12666         case SAVEt_OP:
12667             ptr = POPPTR(ss,ix);
12668             TOPPTR(nss,ix) = ptr;
12669             break;
12670         case SAVEt_HINTS:
12671             ptr = POPPTR(ss,ix);
12672             ptr = cophh_copy((COPHH*)ptr);
12673             TOPPTR(nss,ix) = ptr;
12674             i = POPINT(ss,ix);
12675             TOPINT(nss,ix) = i;
12676             if (i & HINT_LOCALIZE_HH) {
12677                 hv = (const HV *)POPPTR(ss,ix);
12678                 TOPPTR(nss,ix) = hv_dup_inc(hv, param);
12679             }
12680             break;
12681         case SAVEt_PADSV_AND_MORTALIZE:
12682             longval = (long)POPLONG(ss,ix);
12683             TOPLONG(nss,ix) = longval;
12684             ptr = POPPTR(ss,ix);
12685             TOPPTR(nss,ix) = any_dup(ptr, proto_perl);
12686             sv = (const SV *)POPPTR(ss,ix);
12687             TOPPTR(nss,ix) = sv_dup_inc(sv, param);
12688             break;
12689         case SAVEt_SET_SVFLAGS:
12690             i = POPINT(ss,ix);
12691             TOPINT(nss,ix) = i;
12692             i = POPINT(ss,ix);
12693             TOPINT(nss,ix) = i;
12694             sv = (const SV *)POPPTR(ss,ix);
12695             TOPPTR(nss,ix) = sv_dup(sv, param);
12696             break;
12697         case SAVEt_RE_STATE:
12698             {
12699                 const struct re_save_state *const old_state
12700                     = (struct re_save_state *)
12701                     (ss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12702                 struct re_save_state *const new_state
12703                     = (struct re_save_state *)
12704                     (nss + ix - SAVESTACK_ALLOC_FOR_RE_SAVE_STATE);
12705
12706                 Copy(old_state, new_state, 1, struct re_save_state);
12707                 ix -= SAVESTACK_ALLOC_FOR_RE_SAVE_STATE;
12708
12709                 new_state->re_state_bostr
12710                     = pv_dup(old_state->re_state_bostr);
12711                 new_state->re_state_regeol
12712                     = pv_dup(old_state->re_state_regeol);
12713 #ifdef PERL_OLD_COPY_ON_WRITE
12714                 new_state->re_state_nrs
12715                     = sv_dup(old_state->re_state_nrs, param);
12716 #endif
12717                 new_state->re_state_reg_magic
12718                     = (MAGIC*) any_dup(old_state->re_state_reg_magic, 
12719                                proto_perl);
12720                 new_state->re_state_reg_oldcurpm
12721                     = (PMOP*) any_dup(old_state->re_state_reg_oldcurpm, 
12722                               proto_perl);
12723                 new_state->re_state_reg_curpm
12724                     = (PMOP*)  any_dup(old_state->re_state_reg_curpm, 
12725                                proto_perl);
12726                 new_state->re_state_reg_oldsaved
12727                     = pv_dup(old_state->re_state_reg_oldsaved);
12728                 new_state->re_state_reg_poscache
12729                     = pv_dup(old_state->re_state_reg_poscache);
12730                 new_state->re_state_reg_starttry
12731                     = pv_dup(old_state->re_state_reg_starttry);
12732                 break;
12733             }
12734         case SAVEt_COMPILE_WARNINGS:
12735             ptr = POPPTR(ss,ix);
12736             TOPPTR(nss,ix) = DUP_WARNINGS((STRLEN*)ptr);
12737             break;
12738         case SAVEt_PARSER:
12739             ptr = POPPTR(ss,ix);
12740             TOPPTR(nss,ix) = parser_dup((const yy_parser*)ptr, param);
12741             break;
12742         default:
12743             Perl_croak(aTHX_
12744                        "panic: ss_dup inconsistency (%"IVdf")", (IV) type);
12745         }
12746     }
12747
12748     return nss;
12749 }
12750
12751
12752 /* if sv is a stash, call $class->CLONE_SKIP(), and set the SVphv_CLONEABLE
12753  * flag to the result. This is done for each stash before cloning starts,
12754  * so we know which stashes want their objects cloned */
12755
12756 static void
12757 do_mark_cloneable_stash(pTHX_ SV *const sv)
12758 {
12759     const HEK * const hvname = HvNAME_HEK((const HV *)sv);
12760     if (hvname) {
12761         GV* const cloner = gv_fetchmethod_autoload(MUTABLE_HV(sv), "CLONE_SKIP", 0);
12762         SvFLAGS(sv) |= SVphv_CLONEABLE; /* clone objects by default */
12763         if (cloner && GvCV(cloner)) {
12764             dSP;
12765             UV status;
12766
12767             ENTER;
12768             SAVETMPS;
12769             PUSHMARK(SP);
12770             mXPUSHs(newSVhek(hvname));
12771             PUTBACK;
12772             call_sv(MUTABLE_SV(GvCV(cloner)), G_SCALAR);
12773             SPAGAIN;
12774             status = POPu;
12775             PUTBACK;
12776             FREETMPS;
12777             LEAVE;
12778             if (status)
12779                 SvFLAGS(sv) &= ~SVphv_CLONEABLE;
12780         }
12781     }
12782 }
12783
12784
12785
12786 /*
12787 =for apidoc perl_clone
12788
12789 Create and return a new interpreter by cloning the current one.
12790
12791 perl_clone takes these flags as parameters:
12792
12793 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
12794 without it we only clone the data and zero the stacks,
12795 with it we copy the stacks and the new perl interpreter is
12796 ready to run at the exact same point as the previous one.
12797 The pseudo-fork code uses COPY_STACKS while the
12798 threads->create doesn't.
12799
12800 CLONEf_KEEP_PTR_TABLE -
12801 perl_clone keeps a ptr_table with the pointer of the old
12802 variable as a key and the new variable as a value,
12803 this allows it to check if something has been cloned and not
12804 clone it again but rather just use the value and increase the
12805 refcount.  If KEEP_PTR_TABLE is not set then perl_clone will kill
12806 the ptr_table using the function
12807 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
12808 reason to keep it around is if you want to dup some of your own
12809 variable who are outside the graph perl scans, example of this
12810 code is in threads.xs create.
12811
12812 CLONEf_CLONE_HOST -
12813 This is a win32 thing, it is ignored on unix, it tells perls
12814 win32host code (which is c++) to clone itself, this is needed on
12815 win32 if you want to run two threads at the same time,
12816 if you just want to do some stuff in a separate perl interpreter
12817 and then throw it away and return to the original one,
12818 you don't need to do anything.
12819
12820 =cut
12821 */
12822
12823 /* XXX the above needs expanding by someone who actually understands it ! */
12824 EXTERN_C PerlInterpreter *
12825 perl_clone_host(PerlInterpreter* proto_perl, UV flags);
12826
12827 PerlInterpreter *
12828 perl_clone(PerlInterpreter *proto_perl, UV flags)
12829 {
12830    dVAR;
12831 #ifdef PERL_IMPLICIT_SYS
12832
12833     PERL_ARGS_ASSERT_PERL_CLONE;
12834
12835    /* perlhost.h so we need to call into it
12836    to clone the host, CPerlHost should have a c interface, sky */
12837
12838    if (flags & CLONEf_CLONE_HOST) {
12839        return perl_clone_host(proto_perl,flags);
12840    }
12841    return perl_clone_using(proto_perl, flags,
12842                             proto_perl->IMem,
12843                             proto_perl->IMemShared,
12844                             proto_perl->IMemParse,
12845                             proto_perl->IEnv,
12846                             proto_perl->IStdIO,
12847                             proto_perl->ILIO,
12848                             proto_perl->IDir,
12849                             proto_perl->ISock,
12850                             proto_perl->IProc);
12851 }
12852
12853 PerlInterpreter *
12854 perl_clone_using(PerlInterpreter *proto_perl, UV flags,
12855                  struct IPerlMem* ipM, struct IPerlMem* ipMS,
12856                  struct IPerlMem* ipMP, struct IPerlEnv* ipE,
12857                  struct IPerlStdIO* ipStd, struct IPerlLIO* ipLIO,
12858                  struct IPerlDir* ipD, struct IPerlSock* ipS,
12859                  struct IPerlProc* ipP)
12860 {
12861     /* XXX many of the string copies here can be optimized if they're
12862      * constants; they need to be allocated as common memory and just
12863      * their pointers copied. */
12864
12865     IV i;
12866     CLONE_PARAMS clone_params;
12867     CLONE_PARAMS* const param = &clone_params;
12868
12869     PerlInterpreter * const my_perl = (PerlInterpreter*)(*ipM->pMalloc)(ipM, sizeof(PerlInterpreter));
12870
12871     PERL_ARGS_ASSERT_PERL_CLONE_USING;
12872 #else           /* !PERL_IMPLICIT_SYS */
12873     IV i;
12874     CLONE_PARAMS clone_params;
12875     CLONE_PARAMS* param = &clone_params;
12876     PerlInterpreter * const my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
12877
12878     PERL_ARGS_ASSERT_PERL_CLONE;
12879 #endif          /* PERL_IMPLICIT_SYS */
12880
12881     /* for each stash, determine whether its objects should be cloned */
12882     S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
12883     PERL_SET_THX(my_perl);
12884
12885 #ifdef DEBUGGING
12886     PoisonNew(my_perl, 1, PerlInterpreter);
12887     PL_op = NULL;
12888     PL_curcop = NULL;
12889     PL_defstash = NULL; /* may be used by perl malloc() */
12890     PL_markstack = 0;
12891     PL_scopestack = 0;
12892     PL_scopestack_name = 0;
12893     PL_savestack = 0;
12894     PL_savestack_ix = 0;
12895     PL_savestack_max = -1;
12896     PL_sig_pending = 0;
12897     PL_parser = NULL;
12898     Zero(&PL_debug_pad, 1, struct perl_debug_pad);
12899 #  ifdef DEBUG_LEAKING_SCALARS
12900     PL_sv_serial = (((UV)my_perl >> 2) & 0xfff) * 1000000;
12901 #  endif
12902 #else   /* !DEBUGGING */
12903     Zero(my_perl, 1, PerlInterpreter);
12904 #endif  /* DEBUGGING */
12905
12906 #ifdef PERL_IMPLICIT_SYS
12907     /* host pointers */
12908     PL_Mem              = ipM;
12909     PL_MemShared        = ipMS;
12910     PL_MemParse         = ipMP;
12911     PL_Env              = ipE;
12912     PL_StdIO            = ipStd;
12913     PL_LIO              = ipLIO;
12914     PL_Dir              = ipD;
12915     PL_Sock             = ipS;
12916     PL_Proc             = ipP;
12917 #endif          /* PERL_IMPLICIT_SYS */
12918
12919     param->flags = flags;
12920     /* Nothing in the core code uses this, but we make it available to
12921        extensions (using mg_dup).  */
12922     param->proto_perl = proto_perl;
12923     /* Likely nothing will use this, but it is initialised to be consistent
12924        with Perl_clone_params_new().  */
12925     param->new_perl = my_perl;
12926     param->unreferenced = NULL;
12927
12928     INIT_TRACK_MEMPOOL(my_perl->Imemory_debug_header, my_perl);
12929
12930     PL_body_arenas = NULL;
12931     Zero(&PL_body_roots, 1, PL_body_roots);
12932     
12933     PL_sv_count         = 0;
12934     PL_sv_objcount      = 0;
12935     PL_sv_root          = NULL;
12936     PL_sv_arenaroot     = NULL;
12937
12938     PL_debug            = proto_perl->Idebug;
12939
12940     PL_hash_seed        = proto_perl->Ihash_seed;
12941     PL_rehash_seed      = proto_perl->Irehash_seed;
12942
12943     /* dbargs array probably holds garbage */
12944     PL_dbargs           = NULL;
12945
12946     PL_compiling = proto_perl->Icompiling;
12947
12948     /* pseudo environmental stuff */
12949     PL_origargc         = proto_perl->Iorigargc;
12950     PL_origargv         = proto_perl->Iorigargv;
12951
12952 #if !NO_TAINT_SUPPORT
12953     /* Set tainting stuff before PerlIO_debug can possibly get called */
12954     PL_tainting         = proto_perl->Itainting;
12955     PL_taint_warn       = proto_perl->Itaint_warn;
12956 #else
12957     PL_tainting         = FALSE;
12958     PL_taint_warn       = FALSE;
12959 #endif
12960
12961     PL_minus_c          = proto_perl->Iminus_c;
12962
12963     PL_localpatches     = proto_perl->Ilocalpatches;
12964     PL_splitstr         = proto_perl->Isplitstr;
12965     PL_minus_n          = proto_perl->Iminus_n;
12966     PL_minus_p          = proto_perl->Iminus_p;
12967     PL_minus_l          = proto_perl->Iminus_l;
12968     PL_minus_a          = proto_perl->Iminus_a;
12969     PL_minus_E          = proto_perl->Iminus_E;
12970     PL_minus_F          = proto_perl->Iminus_F;
12971     PL_doswitches       = proto_perl->Idoswitches;
12972     PL_dowarn           = proto_perl->Idowarn;
12973     PL_sawampersand     = proto_perl->Isawampersand;
12974     PL_unsafe           = proto_perl->Iunsafe;
12975     PL_perldb           = proto_perl->Iperldb;
12976     PL_perl_destruct_level = proto_perl->Iperl_destruct_level;
12977     PL_exit_flags       = proto_perl->Iexit_flags;
12978
12979     /* XXX time(&PL_basetime) when asked for? */
12980     PL_basetime         = proto_perl->Ibasetime;
12981
12982     PL_maxsysfd         = proto_perl->Imaxsysfd;
12983     PL_statusvalue      = proto_perl->Istatusvalue;
12984 #ifdef VMS
12985     PL_statusvalue_vms  = proto_perl->Istatusvalue_vms;
12986 #else
12987     PL_statusvalue_posix = proto_perl->Istatusvalue_posix;
12988 #endif
12989
12990     /* RE engine related */
12991     Zero(&PL_reg_state, 1, struct re_save_state);
12992     PL_regmatch_slab    = NULL;
12993
12994     PL_sub_generation   = proto_perl->Isub_generation;
12995
12996     /* funky return mechanisms */
12997     PL_forkprocess      = proto_perl->Iforkprocess;
12998
12999     /* internal state */
13000     PL_maxo             = proto_perl->Imaxo;
13001
13002     PL_main_start       = proto_perl->Imain_start;
13003     PL_eval_root        = proto_perl->Ieval_root;
13004     PL_eval_start       = proto_perl->Ieval_start;
13005
13006     PL_filemode         = proto_perl->Ifilemode;
13007     PL_lastfd           = proto_perl->Ilastfd;
13008     PL_oldname          = proto_perl->Ioldname;         /* XXX not quite right */
13009     PL_Argv             = NULL;
13010     PL_Cmd              = NULL;
13011     PL_gensym           = proto_perl->Igensym;
13012
13013     PL_laststatval      = proto_perl->Ilaststatval;
13014     PL_laststype        = proto_perl->Ilaststype;
13015     PL_mess_sv          = NULL;
13016
13017     PL_profiledata      = NULL;
13018
13019     PL_generation       = proto_perl->Igeneration;
13020
13021     PL_in_clean_objs    = proto_perl->Iin_clean_objs;
13022     PL_in_clean_all     = proto_perl->Iin_clean_all;
13023
13024     PL_delaymagic_uid   = proto_perl->Idelaymagic_uid;
13025     PL_delaymagic_euid  = proto_perl->Idelaymagic_euid;
13026     PL_delaymagic_gid   = proto_perl->Idelaymagic_gid;
13027     PL_delaymagic_egid  = proto_perl->Idelaymagic_egid;
13028     PL_nomemok          = proto_perl->Inomemok;
13029     PL_an               = proto_perl->Ian;
13030     PL_evalseq          = proto_perl->Ievalseq;
13031     PL_origenviron      = proto_perl->Iorigenviron;     /* XXX not quite right */
13032     PL_origalen         = proto_perl->Iorigalen;
13033
13034     PL_sighandlerp      = proto_perl->Isighandlerp;
13035
13036     PL_runops           = proto_perl->Irunops;
13037
13038     PL_subline          = proto_perl->Isubline;
13039
13040 #ifdef FCRYPT
13041     PL_cryptseen        = proto_perl->Icryptseen;
13042 #endif
13043
13044     PL_hints            = proto_perl->Ihints;
13045
13046 #ifdef USE_LOCALE_COLLATE
13047     PL_collation_ix     = proto_perl->Icollation_ix;
13048     PL_collation_standard       = proto_perl->Icollation_standard;
13049     PL_collxfrm_base    = proto_perl->Icollxfrm_base;
13050     PL_collxfrm_mult    = proto_perl->Icollxfrm_mult;
13051 #endif /* USE_LOCALE_COLLATE */
13052
13053 #ifdef USE_LOCALE_NUMERIC
13054     PL_numeric_standard = proto_perl->Inumeric_standard;
13055     PL_numeric_local    = proto_perl->Inumeric_local;
13056 #endif /* !USE_LOCALE_NUMERIC */
13057
13058     /* Did the locale setup indicate UTF-8? */
13059     PL_utf8locale       = proto_perl->Iutf8locale;
13060     /* Unicode features (see perlrun/-C) */
13061     PL_unicode          = proto_perl->Iunicode;
13062
13063     /* Pre-5.8 signals control */
13064     PL_signals          = proto_perl->Isignals;
13065
13066     /* times() ticks per second */
13067     PL_clocktick        = proto_perl->Iclocktick;
13068
13069     /* Recursion stopper for PerlIO_find_layer */
13070     PL_in_load_module   = proto_perl->Iin_load_module;
13071
13072     /* sort() routine */
13073     PL_sort_RealCmp     = proto_perl->Isort_RealCmp;
13074
13075     /* Not really needed/useful since the reenrant_retint is "volatile",
13076      * but do it for consistency's sake. */
13077     PL_reentrant_retint = proto_perl->Ireentrant_retint;
13078
13079     /* Hooks to shared SVs and locks. */
13080     PL_sharehook        = proto_perl->Isharehook;
13081     PL_lockhook         = proto_perl->Ilockhook;
13082     PL_unlockhook       = proto_perl->Iunlockhook;
13083     PL_threadhook       = proto_perl->Ithreadhook;
13084     PL_destroyhook      = proto_perl->Idestroyhook;
13085     PL_signalhook       = proto_perl->Isignalhook;
13086
13087     PL_globhook         = proto_perl->Iglobhook;
13088
13089     /* swatch cache */
13090     PL_last_swash_hv    = NULL; /* reinits on demand */
13091     PL_last_swash_klen  = 0;
13092     PL_last_swash_key[0]= '\0';
13093     PL_last_swash_tmps  = (U8*)NULL;
13094     PL_last_swash_slen  = 0;
13095
13096     PL_glob_index       = proto_perl->Iglob_index;
13097     PL_srand_called     = proto_perl->Isrand_called;
13098
13099     if (flags & CLONEf_COPY_STACKS) {
13100         /* next allocation will be PL_tmps_stack[PL_tmps_ix+1] */
13101         PL_tmps_ix              = proto_perl->Itmps_ix;
13102         PL_tmps_max             = proto_perl->Itmps_max;
13103         PL_tmps_floor           = proto_perl->Itmps_floor;
13104
13105         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13106          * NOTE: unlike the others! */
13107         PL_scopestack_ix        = proto_perl->Iscopestack_ix;
13108         PL_scopestack_max       = proto_perl->Iscopestack_max;
13109
13110         /* next SSPUSHFOO() sets PL_savestack[PL_savestack_ix]
13111          * NOTE: unlike the others! */
13112         PL_savestack_ix         = proto_perl->Isavestack_ix;
13113         PL_savestack_max        = proto_perl->Isavestack_max;
13114     }
13115
13116     PL_start_env        = proto_perl->Istart_env;       /* XXXXXX */
13117     PL_top_env          = &PL_start_env;
13118
13119     PL_op               = proto_perl->Iop;
13120
13121     PL_Sv               = NULL;
13122     PL_Xpv              = (XPV*)NULL;
13123     my_perl->Ina        = proto_perl->Ina;
13124
13125     PL_statbuf          = proto_perl->Istatbuf;
13126     PL_statcache        = proto_perl->Istatcache;
13127
13128 #ifdef HAS_TIMES
13129     PL_timesbuf         = proto_perl->Itimesbuf;
13130 #endif
13131
13132 #if !NO_TAINT_SUPPORT
13133     PL_tainted          = proto_perl->Itainted;
13134 #else
13135     PL_tainted          = FALSE;
13136 #endif
13137     PL_curpm            = proto_perl->Icurpm;   /* XXX No PMOP ref count */
13138
13139     PL_chopset          = proto_perl->Ichopset; /* XXX never deallocated */
13140
13141     PL_restartjmpenv    = proto_perl->Irestartjmpenv;
13142     PL_restartop        = proto_perl->Irestartop;
13143     PL_in_eval          = proto_perl->Iin_eval;
13144     PL_delaymagic       = proto_perl->Idelaymagic;
13145     PL_phase            = proto_perl->Iphase;
13146     PL_localizing       = proto_perl->Ilocalizing;
13147
13148     PL_hv_fetch_ent_mh  = NULL;
13149     PL_modcount         = proto_perl->Imodcount;
13150     PL_lastgotoprobe    = NULL;
13151     PL_dumpindent       = proto_perl->Idumpindent;
13152
13153     PL_efloatbuf        = NULL;         /* reinits on demand */
13154     PL_efloatsize       = 0;                    /* reinits on demand */
13155
13156     /* regex stuff */
13157
13158     PL_regdummy         = proto_perl->Iregdummy;
13159     PL_colorset         = 0;            /* reinits PL_colors[] */
13160     /*PL_colors[6]      = {0,0,0,0,0,0};*/
13161
13162     /* Pluggable optimizer */
13163     PL_peepp            = proto_perl->Ipeepp;
13164     PL_rpeepp           = proto_perl->Irpeepp;
13165     /* op_free() hook */
13166     PL_opfreehook       = proto_perl->Iopfreehook;
13167
13168 #ifdef USE_REENTRANT_API
13169     /* XXX: things like -Dm will segfault here in perlio, but doing
13170      *  PERL_SET_CONTEXT(proto_perl);
13171      * breaks too many other things
13172      */
13173     Perl_reentrant_init(aTHX);
13174 #endif
13175
13176     /* create SV map for pointer relocation */
13177     PL_ptr_table = ptr_table_new();
13178
13179     /* initialize these special pointers as early as possible */
13180     init_constants();
13181     ptr_table_store(PL_ptr_table, &proto_perl->Isv_undef, &PL_sv_undef);
13182     ptr_table_store(PL_ptr_table, &proto_perl->Isv_no, &PL_sv_no);
13183     ptr_table_store(PL_ptr_table, &proto_perl->Isv_yes, &PL_sv_yes);
13184
13185     /* create (a non-shared!) shared string table */
13186     PL_strtab           = newHV();
13187     HvSHAREKEYS_off(PL_strtab);
13188     hv_ksplit(PL_strtab, HvTOTALKEYS(proto_perl->Istrtab));
13189     ptr_table_store(PL_ptr_table, proto_perl->Istrtab, PL_strtab);
13190
13191     /* This PV will be free'd special way so must set it same way op.c does */
13192     PL_compiling.cop_file    = savesharedpv(PL_compiling.cop_file);
13193     ptr_table_store(PL_ptr_table, proto_perl->Icompiling.cop_file, PL_compiling.cop_file);
13194
13195     ptr_table_store(PL_ptr_table, &proto_perl->Icompiling, &PL_compiling);
13196     PL_compiling.cop_warnings = DUP_WARNINGS(PL_compiling.cop_warnings);
13197     CopHINTHASH_set(&PL_compiling, cophh_copy(CopHINTHASH_get(&PL_compiling)));
13198     PL_curcop           = (COP*)any_dup(proto_perl->Icurcop, proto_perl);
13199
13200     param->stashes      = newAV();  /* Setup array of objects to call clone on */
13201     /* This makes no difference to the implementation, as it always pushes
13202        and shifts pointers to other SVs without changing their reference
13203        count, with the array becoming empty before it is freed. However, it
13204        makes it conceptually clear what is going on, and will avoid some
13205        work inside av.c, filling slots between AvFILL() and AvMAX() with
13206        &PL_sv_undef, and SvREFCNT_dec()ing those.  */
13207     AvREAL_off(param->stashes);
13208
13209     if (!(flags & CLONEf_COPY_STACKS)) {
13210         param->unreferenced = newAV();
13211     }
13212
13213 #ifdef PERLIO_LAYERS
13214     /* Clone PerlIO tables as soon as we can handle general xx_dup() */
13215     PerlIO_clone(aTHX_ proto_perl, param);
13216 #endif
13217
13218     PL_envgv            = gv_dup(proto_perl->Ienvgv, param);
13219     PL_incgv            = gv_dup(proto_perl->Iincgv, param);
13220     PL_hintgv           = gv_dup(proto_perl->Ihintgv, param);
13221     PL_origfilename     = SAVEPV(proto_perl->Iorigfilename);
13222     PL_diehook          = sv_dup_inc(proto_perl->Idiehook, param);
13223     PL_warnhook         = sv_dup_inc(proto_perl->Iwarnhook, param);
13224
13225     /* switches */
13226     PL_patchlevel       = sv_dup_inc(proto_perl->Ipatchlevel, param);
13227     PL_apiversion       = sv_dup_inc(proto_perl->Iapiversion, param);
13228     PL_inplace          = SAVEPV(proto_perl->Iinplace);
13229     PL_e_script         = sv_dup_inc(proto_perl->Ie_script, param);
13230
13231     /* magical thingies */
13232
13233     PL_encoding         = sv_dup(proto_perl->Iencoding, param);
13234
13235     sv_setpvs(PERL_DEBUG_PAD(0), "");   /* For regex debugging. */
13236     sv_setpvs(PERL_DEBUG_PAD(1), "");   /* ext/re needs these */
13237     sv_setpvs(PERL_DEBUG_PAD(2), "");   /* even without DEBUGGING. */
13238
13239    
13240     /* Clone the regex array */
13241     /* ORANGE FIXME for plugins, probably in the SV dup code.
13242        newSViv(PTR2IV(CALLREGDUPE(
13243        INT2PTR(REGEXP *, SvIVX(regex)), param))))
13244     */
13245     PL_regex_padav = av_dup_inc(proto_perl->Iregex_padav, param);
13246     PL_regex_pad = AvARRAY(PL_regex_padav);
13247
13248     PL_stashpadmax      = proto_perl->Istashpadmax;
13249     PL_stashpadix       = proto_perl->Istashpadix ;
13250     Newx(PL_stashpad, PL_stashpadmax, HV *);
13251     {
13252         PADOFFSET o = 0;
13253         for (; o < PL_stashpadmax; ++o)
13254             PL_stashpad[o] = hv_dup(proto_perl->Istashpad[o], param);
13255     }
13256
13257     /* shortcuts to various I/O objects */
13258     PL_ofsgv            = gv_dup_inc(proto_perl->Iofsgv, param);
13259     PL_stdingv          = gv_dup(proto_perl->Istdingv, param);
13260     PL_stderrgv         = gv_dup(proto_perl->Istderrgv, param);
13261     PL_defgv            = gv_dup(proto_perl->Idefgv, param);
13262     PL_argvgv           = gv_dup(proto_perl->Iargvgv, param);
13263     PL_argvoutgv        = gv_dup(proto_perl->Iargvoutgv, param);
13264     PL_argvout_stack    = av_dup_inc(proto_perl->Iargvout_stack, param);
13265
13266     /* shortcuts to regexp stuff */
13267     PL_replgv           = gv_dup(proto_perl->Ireplgv, param);
13268
13269     /* shortcuts to misc objects */
13270     PL_errgv            = gv_dup(proto_perl->Ierrgv, param);
13271
13272     /* shortcuts to debugging objects */
13273     PL_DBgv             = gv_dup(proto_perl->IDBgv, param);
13274     PL_DBline           = gv_dup(proto_perl->IDBline, param);
13275     PL_DBsub            = gv_dup(proto_perl->IDBsub, param);
13276     PL_DBsingle         = sv_dup(proto_perl->IDBsingle, param);
13277     PL_DBtrace          = sv_dup(proto_perl->IDBtrace, param);
13278     PL_DBsignal         = sv_dup(proto_perl->IDBsignal, param);
13279
13280     /* symbol tables */
13281     PL_defstash         = hv_dup_inc(proto_perl->Idefstash, param);
13282     PL_curstash         = hv_dup_inc(proto_perl->Icurstash, param);
13283     PL_debstash         = hv_dup(proto_perl->Idebstash, param);
13284     PL_globalstash      = hv_dup(proto_perl->Iglobalstash, param);
13285     PL_curstname        = sv_dup_inc(proto_perl->Icurstname, param);
13286
13287     PL_beginav          = av_dup_inc(proto_perl->Ibeginav, param);
13288     PL_beginav_save     = av_dup_inc(proto_perl->Ibeginav_save, param);
13289     PL_checkav_save     = av_dup_inc(proto_perl->Icheckav_save, param);
13290     PL_unitcheckav      = av_dup_inc(proto_perl->Iunitcheckav, param);
13291     PL_unitcheckav_save = av_dup_inc(proto_perl->Iunitcheckav_save, param);
13292     PL_endav            = av_dup_inc(proto_perl->Iendav, param);
13293     PL_checkav          = av_dup_inc(proto_perl->Icheckav, param);
13294     PL_initav           = av_dup_inc(proto_perl->Iinitav, param);
13295
13296     PL_isarev           = hv_dup_inc(proto_perl->Iisarev, param);
13297
13298     /* subprocess state */
13299     PL_fdpid            = av_dup_inc(proto_perl->Ifdpid, param);
13300
13301     if (proto_perl->Iop_mask)
13302         PL_op_mask      = SAVEPVN(proto_perl->Iop_mask, PL_maxo);
13303     else
13304         PL_op_mask      = NULL;
13305     /* PL_asserting        = proto_perl->Iasserting; */
13306
13307     /* current interpreter roots */
13308     PL_main_cv          = cv_dup_inc(proto_perl->Imain_cv, param);
13309     OP_REFCNT_LOCK;
13310     PL_main_root        = OpREFCNT_inc(proto_perl->Imain_root);
13311     OP_REFCNT_UNLOCK;
13312
13313     /* runtime control stuff */
13314     PL_curcopdb         = (COP*)any_dup(proto_perl->Icurcopdb, proto_perl);
13315
13316     PL_preambleav       = av_dup_inc(proto_perl->Ipreambleav, param);
13317
13318     PL_ors_sv           = sv_dup_inc(proto_perl->Iors_sv, param);
13319
13320     /* interpreter atexit processing */
13321     PL_exitlistlen      = proto_perl->Iexitlistlen;
13322     if (PL_exitlistlen) {
13323         Newx(PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13324         Copy(proto_perl->Iexitlist, PL_exitlist, PL_exitlistlen, PerlExitListEntry);
13325     }
13326     else
13327         PL_exitlist     = (PerlExitListEntry*)NULL;
13328
13329     PL_my_cxt_size = proto_perl->Imy_cxt_size;
13330     if (PL_my_cxt_size) {
13331         Newx(PL_my_cxt_list, PL_my_cxt_size, void *);
13332         Copy(proto_perl->Imy_cxt_list, PL_my_cxt_list, PL_my_cxt_size, void *);
13333 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13334         Newx(PL_my_cxt_keys, PL_my_cxt_size, const char *);
13335         Copy(proto_perl->Imy_cxt_keys, PL_my_cxt_keys, PL_my_cxt_size, char *);
13336 #endif
13337     }
13338     else {
13339         PL_my_cxt_list  = (void**)NULL;
13340 #ifdef PERL_GLOBAL_STRUCT_PRIVATE
13341         PL_my_cxt_keys  = (const char**)NULL;
13342 #endif
13343     }
13344     PL_modglobal        = hv_dup_inc(proto_perl->Imodglobal, param);
13345     PL_custom_op_names  = hv_dup_inc(proto_perl->Icustom_op_names,param);
13346     PL_custom_op_descs  = hv_dup_inc(proto_perl->Icustom_op_descs,param);
13347     PL_custom_ops       = hv_dup_inc(proto_perl->Icustom_ops, param);
13348
13349     PL_compcv                   = cv_dup(proto_perl->Icompcv, param);
13350
13351     PAD_CLONE_VARS(proto_perl, param);
13352
13353 #ifdef HAVE_INTERP_INTERN
13354     sys_intern_dup(&proto_perl->Isys_intern, &PL_sys_intern);
13355 #endif
13356
13357     PL_DBcv             = cv_dup(proto_perl->IDBcv, param);
13358
13359 #ifdef PERL_USES_PL_PIDSTATUS
13360     PL_pidstatus        = newHV();                      /* XXX flag for cloning? */
13361 #endif
13362     PL_osname           = SAVEPV(proto_perl->Iosname);
13363     PL_parser           = parser_dup(proto_perl->Iparser, param);
13364
13365     /* XXX this only works if the saved cop has already been cloned */
13366     if (proto_perl->Iparser) {
13367         PL_parser->saved_curcop = (COP*)any_dup(
13368                                     proto_perl->Iparser->saved_curcop,
13369                                     proto_perl);
13370     }
13371
13372     PL_subname          = sv_dup_inc(proto_perl->Isubname, param);
13373
13374 #ifdef USE_LOCALE_COLLATE
13375     PL_collation_name   = SAVEPV(proto_perl->Icollation_name);
13376 #endif /* USE_LOCALE_COLLATE */
13377
13378 #ifdef USE_LOCALE_NUMERIC
13379     PL_numeric_name     = SAVEPV(proto_perl->Inumeric_name);
13380     PL_numeric_radix_sv = sv_dup_inc(proto_perl->Inumeric_radix_sv, param);
13381 #endif /* !USE_LOCALE_NUMERIC */
13382
13383     /* Unicode inversion lists */
13384     PL_ASCII            = sv_dup_inc(proto_perl->IASCII, param);
13385     PL_Latin1           = sv_dup_inc(proto_perl->ILatin1, param);
13386
13387     PL_PerlSpace        = sv_dup_inc(proto_perl->IPerlSpace, param);
13388     PL_XPerlSpace       = sv_dup_inc(proto_perl->IXPerlSpace, param);
13389
13390     PL_L1PosixAlnum     = sv_dup_inc(proto_perl->IL1PosixAlnum, param);
13391     PL_PosixAlnum       = sv_dup_inc(proto_perl->IPosixAlnum, param);
13392
13393     PL_L1PosixAlpha     = sv_dup_inc(proto_perl->IL1PosixAlpha, param);
13394     PL_PosixAlpha       = sv_dup_inc(proto_perl->IPosixAlpha, param);
13395
13396     PL_PosixBlank       = sv_dup_inc(proto_perl->IPosixBlank, param);
13397     PL_XPosixBlank      = sv_dup_inc(proto_perl->IXPosixBlank, param);
13398
13399     PL_L1Cased          = sv_dup_inc(proto_perl->IL1Cased, param);
13400
13401     PL_PosixCntrl       = sv_dup_inc(proto_perl->IPosixCntrl, param);
13402     PL_XPosixCntrl      = sv_dup_inc(proto_perl->IXPosixCntrl, param);
13403
13404     PL_PosixDigit       = sv_dup_inc(proto_perl->IPosixDigit, param);
13405
13406     PL_L1PosixGraph     = sv_dup_inc(proto_perl->IL1PosixGraph, param);
13407     PL_PosixGraph       = sv_dup_inc(proto_perl->IPosixGraph, param);
13408
13409     PL_L1PosixLower     = sv_dup_inc(proto_perl->IL1PosixLower, param);
13410     PL_PosixLower       = sv_dup_inc(proto_perl->IPosixLower, param);
13411
13412     PL_L1PosixPrint     = sv_dup_inc(proto_perl->IL1PosixPrint, param);
13413     PL_PosixPrint       = sv_dup_inc(proto_perl->IPosixPrint, param);
13414
13415     PL_L1PosixPunct     = sv_dup_inc(proto_perl->IL1PosixPunct, param);
13416     PL_PosixPunct       = sv_dup_inc(proto_perl->IPosixPunct, param);
13417
13418     PL_PosixSpace       = sv_dup_inc(proto_perl->IPosixSpace, param);
13419     PL_XPosixSpace      = sv_dup_inc(proto_perl->IXPosixSpace, param);
13420
13421     PL_L1PosixUpper     = sv_dup_inc(proto_perl->IL1PosixUpper, param);
13422     PL_PosixUpper       = sv_dup_inc(proto_perl->IPosixUpper, param);
13423
13424     PL_L1PosixWord      = sv_dup_inc(proto_perl->IL1PosixWord, param);
13425     PL_PosixWord        = sv_dup_inc(proto_perl->IPosixWord, param);
13426
13427     PL_PosixXDigit      = sv_dup_inc(proto_perl->IPosixXDigit, param);
13428     PL_XPosixXDigit     = sv_dup_inc(proto_perl->IXPosixXDigit, param);
13429
13430     PL_VertSpace        = sv_dup_inc(proto_perl->IVertSpace, param);
13431
13432     PL_NonL1NonFinalFold = sv_dup_inc(proto_perl->INonL1NonFinalFold, param);
13433     PL_HasMultiCharFold= sv_dup_inc(proto_perl->IHasMultiCharFold, param);
13434
13435     /* utf8 character class swashes */
13436     PL_utf8_alnum       = sv_dup_inc(proto_perl->Iutf8_alnum, param);
13437     PL_utf8_alpha       = sv_dup_inc(proto_perl->Iutf8_alpha, param);
13438     PL_utf8_blank       = sv_dup_inc(proto_perl->Iutf8_blank, param);
13439     PL_utf8_space       = sv_dup_inc(proto_perl->Iutf8_space, param);
13440     PL_utf8_graph       = sv_dup_inc(proto_perl->Iutf8_graph, param);
13441     PL_utf8_digit       = sv_dup_inc(proto_perl->Iutf8_digit, param);
13442     PL_utf8_upper       = sv_dup_inc(proto_perl->Iutf8_upper, param);
13443     PL_utf8_lower       = sv_dup_inc(proto_perl->Iutf8_lower, param);
13444     PL_utf8_print       = sv_dup_inc(proto_perl->Iutf8_print, param);
13445     PL_utf8_punct       = sv_dup_inc(proto_perl->Iutf8_punct, param);
13446     PL_utf8_xdigit      = sv_dup_inc(proto_perl->Iutf8_xdigit, param);
13447     PL_utf8_mark        = sv_dup_inc(proto_perl->Iutf8_mark, param);
13448     PL_utf8_X_regular_begin     = sv_dup_inc(proto_perl->Iutf8_X_regular_begin, param);
13449     PL_utf8_X_extend    = sv_dup_inc(proto_perl->Iutf8_X_extend, param);
13450     PL_utf8_X_LVT       = sv_dup_inc(proto_perl->Iutf8_X_LVT, param);
13451     PL_utf8_toupper     = sv_dup_inc(proto_perl->Iutf8_toupper, param);
13452     PL_utf8_totitle     = sv_dup_inc(proto_perl->Iutf8_totitle, param);
13453     PL_utf8_tolower     = sv_dup_inc(proto_perl->Iutf8_tolower, param);
13454     PL_utf8_tofold      = sv_dup_inc(proto_perl->Iutf8_tofold, param);
13455     PL_utf8_idstart     = sv_dup_inc(proto_perl->Iutf8_idstart, param);
13456     PL_utf8_xidstart    = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
13457     PL_utf8_perl_idstart = sv_dup_inc(proto_perl->Iutf8_perl_idstart, param);
13458     PL_utf8_idcont      = sv_dup_inc(proto_perl->Iutf8_idcont, param);
13459     PL_utf8_xidcont     = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
13460     PL_utf8_foldable    = sv_dup_inc(proto_perl->Iutf8_foldable, param);
13461     PL_ASCII            = sv_dup_inc(proto_perl->IASCII, param);
13462     PL_AboveLatin1      = sv_dup_inc(proto_perl->IAboveLatin1, param);
13463     PL_Latin1           = sv_dup_inc(proto_perl->ILatin1, param);
13464
13465     if (proto_perl->Ipsig_pend) {
13466         Newxz(PL_psig_pend, SIG_SIZE, int);
13467     }
13468     else {
13469         PL_psig_pend    = (int*)NULL;
13470     }
13471
13472     if (proto_perl->Ipsig_name) {
13473         Newx(PL_psig_name, 2 * SIG_SIZE, SV*);
13474         sv_dup_inc_multiple(proto_perl->Ipsig_name, PL_psig_name, 2 * SIG_SIZE,
13475                             param);
13476         PL_psig_ptr = PL_psig_name + SIG_SIZE;
13477     }
13478     else {
13479         PL_psig_ptr     = (SV**)NULL;
13480         PL_psig_name    = (SV**)NULL;
13481     }
13482
13483     if (flags & CLONEf_COPY_STACKS) {
13484         Newx(PL_tmps_stack, PL_tmps_max, SV*);
13485         sv_dup_inc_multiple(proto_perl->Itmps_stack, PL_tmps_stack,
13486                             PL_tmps_ix+1, param);
13487
13488         /* next PUSHMARK() sets *(PL_markstack_ptr+1) */
13489         i = proto_perl->Imarkstack_max - proto_perl->Imarkstack;
13490         Newxz(PL_markstack, i, I32);
13491         PL_markstack_max        = PL_markstack + (proto_perl->Imarkstack_max
13492                                                   - proto_perl->Imarkstack);
13493         PL_markstack_ptr        = PL_markstack + (proto_perl->Imarkstack_ptr
13494                                                   - proto_perl->Imarkstack);
13495         Copy(proto_perl->Imarkstack, PL_markstack,
13496              PL_markstack_ptr - PL_markstack + 1, I32);
13497
13498         /* next push_scope()/ENTER sets PL_scopestack[PL_scopestack_ix]
13499          * NOTE: unlike the others! */
13500         Newxz(PL_scopestack, PL_scopestack_max, I32);
13501         Copy(proto_perl->Iscopestack, PL_scopestack, PL_scopestack_ix, I32);
13502
13503 #ifdef DEBUGGING
13504         Newxz(PL_scopestack_name, PL_scopestack_max, const char *);
13505         Copy(proto_perl->Iscopestack_name, PL_scopestack_name, PL_scopestack_ix, const char *);
13506 #endif
13507         /* NOTE: si_dup() looks at PL_markstack */
13508         PL_curstackinfo         = si_dup(proto_perl->Icurstackinfo, param);
13509
13510         /* PL_curstack          = PL_curstackinfo->si_stack; */
13511         PL_curstack             = av_dup(proto_perl->Icurstack, param);
13512         PL_mainstack            = av_dup(proto_perl->Imainstack, param);
13513
13514         /* next PUSHs() etc. set *(PL_stack_sp+1) */
13515         PL_stack_base           = AvARRAY(PL_curstack);
13516         PL_stack_sp             = PL_stack_base + (proto_perl->Istack_sp
13517                                                    - proto_perl->Istack_base);
13518         PL_stack_max            = PL_stack_base + AvMAX(PL_curstack);
13519
13520         /*Newxz(PL_savestack, PL_savestack_max, ANY);*/
13521         PL_savestack            = ss_dup(proto_perl, param);
13522     }
13523     else {
13524         init_stacks();
13525         ENTER;                  /* perl_destruct() wants to LEAVE; */
13526     }
13527
13528     PL_statgv           = gv_dup(proto_perl->Istatgv, param);
13529     PL_statname         = sv_dup_inc(proto_perl->Istatname, param);
13530
13531     PL_rs               = sv_dup_inc(proto_perl->Irs, param);
13532     PL_last_in_gv       = gv_dup(proto_perl->Ilast_in_gv, param);
13533     PL_defoutgv         = gv_dup_inc(proto_perl->Idefoutgv, param);
13534     PL_toptarget        = sv_dup_inc(proto_perl->Itoptarget, param);
13535     PL_bodytarget       = sv_dup_inc(proto_perl->Ibodytarget, param);
13536     PL_formtarget       = sv_dup(proto_perl->Iformtarget, param);
13537
13538     PL_errors           = sv_dup_inc(proto_perl->Ierrors, param);
13539
13540     PL_sortcop          = (OP*)any_dup(proto_perl->Isortcop, proto_perl);
13541     PL_sortstash        = hv_dup(proto_perl->Isortstash, param);
13542     PL_firstgv          = gv_dup(proto_perl->Ifirstgv, param);
13543     PL_secondgv         = gv_dup(proto_perl->Isecondgv, param);
13544
13545     PL_stashcache       = newHV();
13546
13547     PL_watchaddr        = (char **) ptr_table_fetch(PL_ptr_table,
13548                                             proto_perl->Iwatchaddr);
13549     PL_watchok          = PL_watchaddr ? * PL_watchaddr : NULL;
13550     if (PL_debug && PL_watchaddr) {
13551         PerlIO_printf(Perl_debug_log,
13552           "WATCHING: %"UVxf" cloned as %"UVxf" with value %"UVxf"\n",
13553           PTR2UV(proto_perl->Iwatchaddr), PTR2UV(PL_watchaddr),
13554           PTR2UV(PL_watchok));
13555     }
13556
13557     PL_registered_mros  = hv_dup_inc(proto_perl->Iregistered_mros, param);
13558     PL_blockhooks       = av_dup_inc(proto_perl->Iblockhooks, param);
13559     PL_utf8_foldclosures = hv_dup_inc(proto_perl->Iutf8_foldclosures, param);
13560
13561     /* Call the ->CLONE method, if it exists, for each of the stashes
13562        identified by sv_dup() above.
13563     */
13564     while(av_len(param->stashes) != -1) {
13565         HV* const stash = MUTABLE_HV(av_shift(param->stashes));
13566         GV* const cloner = gv_fetchmethod_autoload(stash, "CLONE", 0);
13567         if (cloner && GvCV(cloner)) {
13568             dSP;
13569             ENTER;
13570             SAVETMPS;
13571             PUSHMARK(SP);
13572             mXPUSHs(newSVhek(HvNAME_HEK(stash)));
13573             PUTBACK;
13574             call_sv(MUTABLE_SV(GvCV(cloner)), G_DISCARD);
13575             FREETMPS;
13576             LEAVE;
13577         }
13578     }
13579
13580     if (!(flags & CLONEf_KEEP_PTR_TABLE)) {
13581         ptr_table_free(PL_ptr_table);
13582         PL_ptr_table = NULL;
13583     }
13584
13585     if (!(flags & CLONEf_COPY_STACKS)) {
13586         unreferenced_to_tmp_stack(param->unreferenced);
13587     }
13588
13589     SvREFCNT_dec(param->stashes);
13590
13591     /* orphaned? eg threads->new inside BEGIN or use */
13592     if (PL_compcv && ! SvREFCNT(PL_compcv)) {
13593         SvREFCNT_inc_simple_void(PL_compcv);
13594         SAVEFREESV(PL_compcv);
13595     }
13596
13597     return my_perl;
13598 }
13599
13600 static void
13601 S_unreferenced_to_tmp_stack(pTHX_ AV *const unreferenced)
13602 {
13603     PERL_ARGS_ASSERT_UNREFERENCED_TO_TMP_STACK;
13604     
13605     if (AvFILLp(unreferenced) > -1) {
13606         SV **svp = AvARRAY(unreferenced);
13607         SV **const last = svp + AvFILLp(unreferenced);
13608         SSize_t count = 0;
13609
13610         do {
13611             if (SvREFCNT(*svp) == 1)
13612                 ++count;
13613         } while (++svp <= last);
13614
13615         EXTEND_MORTAL(count);
13616         svp = AvARRAY(unreferenced);
13617
13618         do {
13619             if (SvREFCNT(*svp) == 1) {
13620                 /* Our reference is the only one to this SV. This means that
13621                    in this thread, the scalar effectively has a 0 reference.
13622                    That doesn't work (cleanup never happens), so donate our
13623                    reference to it onto the save stack. */
13624                 PL_tmps_stack[++PL_tmps_ix] = *svp;
13625             } else {
13626                 /* As an optimisation, because we are already walking the
13627                    entire array, instead of above doing either
13628                    SvREFCNT_inc(*svp) or *svp = &PL_sv_undef, we can instead
13629                    release our reference to the scalar, so that at the end of
13630                    the array owns zero references to the scalars it happens to
13631                    point to. We are effectively converting the array from
13632                    AvREAL() on to AvREAL() off. This saves the av_clear()
13633                    (triggered by the SvREFCNT_dec(unreferenced) below) from
13634                    walking the array a second time.  */
13635                 SvREFCNT_dec(*svp);
13636             }
13637
13638         } while (++svp <= last);
13639         AvREAL_off(unreferenced);
13640     }
13641     SvREFCNT_dec(unreferenced);
13642 }
13643
13644 void
13645 Perl_clone_params_del(CLONE_PARAMS *param)
13646 {
13647     /* This seemingly funky ordering keeps the build with PERL_GLOBAL_STRUCT
13648        happy: */
13649     PerlInterpreter *const to = param->new_perl;
13650     dTHXa(to);
13651     PerlInterpreter *const was = PERL_GET_THX;
13652
13653     PERL_ARGS_ASSERT_CLONE_PARAMS_DEL;
13654
13655     if (was != to) {
13656         PERL_SET_THX(to);
13657     }
13658
13659     SvREFCNT_dec(param->stashes);
13660     if (param->unreferenced)
13661         unreferenced_to_tmp_stack(param->unreferenced);
13662
13663     Safefree(param);
13664
13665     if (was != to) {
13666         PERL_SET_THX(was);
13667     }
13668 }
13669
13670 CLONE_PARAMS *
13671 Perl_clone_params_new(PerlInterpreter *const from, PerlInterpreter *const to)
13672 {
13673     dVAR;
13674     /* Need to play this game, as newAV() can call safesysmalloc(), and that
13675        does a dTHX; to get the context from thread local storage.
13676        FIXME - under PERL_CORE Newx(), Safefree() and friends should expand to
13677        a version that passes in my_perl.  */
13678     PerlInterpreter *const was = PERL_GET_THX;
13679     CLONE_PARAMS *param;
13680
13681     PERL_ARGS_ASSERT_CLONE_PARAMS_NEW;
13682
13683     if (was != to) {
13684         PERL_SET_THX(to);
13685     }
13686
13687     /* Given that we've set the context, we can do this unshared.  */
13688     Newx(param, 1, CLONE_PARAMS);
13689
13690     param->flags = 0;
13691     param->proto_perl = from;
13692     param->new_perl = to;
13693     param->stashes = (AV *)Perl_newSV_type(to, SVt_PVAV);
13694     AvREAL_off(param->stashes);
13695     param->unreferenced = (AV *)Perl_newSV_type(to, SVt_PVAV);
13696
13697     if (was != to) {
13698         PERL_SET_THX(was);
13699     }
13700     return param;
13701 }
13702
13703 #endif /* USE_ITHREADS */
13704
13705 void
13706 Perl_init_constants(pTHX)
13707 {
13708     SvREFCNT(&PL_sv_undef)      = (~(U32)0)/2;
13709     SvFLAGS(&PL_sv_undef)       = SVf_READONLY|SVt_NULL;
13710     SvANY(&PL_sv_undef)         = NULL;
13711
13712     SvANY(&PL_sv_no)            = new_XPVNV();
13713     SvREFCNT(&PL_sv_no)         = (~(U32)0)/2;
13714     SvFLAGS(&PL_sv_no)          = SVt_PVNV|SVf_READONLY
13715                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
13716                                   |SVp_POK|SVf_POK;
13717
13718     SvANY(&PL_sv_yes)           = new_XPVNV();
13719     SvREFCNT(&PL_sv_yes)        = (~(U32)0)/2;
13720     SvFLAGS(&PL_sv_yes)         = SVt_PVNV|SVf_READONLY
13721                                   |SVp_IOK|SVf_IOK|SVp_NOK|SVf_NOK
13722                                   |SVp_POK|SVf_POK;
13723
13724     SvPV_set(&PL_sv_no, (char*)PL_No);
13725     SvCUR_set(&PL_sv_no, 0);
13726     SvLEN_set(&PL_sv_no, 0);
13727     SvIV_set(&PL_sv_no, 0);
13728     SvNV_set(&PL_sv_no, 0);
13729
13730     SvPV_set(&PL_sv_yes, (char*)PL_Yes);
13731     SvCUR_set(&PL_sv_yes, 1);
13732     SvLEN_set(&PL_sv_yes, 0);
13733     SvIV_set(&PL_sv_yes, 1);
13734     SvNV_set(&PL_sv_yes, 1);
13735 }
13736
13737 /*
13738 =head1 Unicode Support
13739
13740 =for apidoc sv_recode_to_utf8
13741
13742 The encoding is assumed to be an Encode object, on entry the PV
13743 of the sv is assumed to be octets in that encoding, and the sv
13744 will be converted into Unicode (and UTF-8).
13745
13746 If the sv already is UTF-8 (or if it is not POK), or if the encoding
13747 is not a reference, nothing is done to the sv.  If the encoding is not
13748 an C<Encode::XS> Encoding object, bad things will happen.
13749 (See F<lib/encoding.pm> and L<Encode>.)
13750
13751 The PV of the sv is returned.
13752
13753 =cut */
13754
13755 char *
13756 Perl_sv_recode_to_utf8(pTHX_ SV *sv, SV *encoding)
13757 {
13758     dVAR;
13759
13760     PERL_ARGS_ASSERT_SV_RECODE_TO_UTF8;
13761
13762     if (SvPOK(sv) && !SvUTF8(sv) && !IN_BYTES && SvROK(encoding)) {
13763         SV *uni;
13764         STRLEN len;
13765         const char *s;
13766         dSP;
13767         ENTER;
13768         SAVETMPS;
13769         save_re_context();
13770         PUSHMARK(sp);
13771         EXTEND(SP, 3);
13772         PUSHs(encoding);
13773         PUSHs(sv);
13774 /*
13775   NI-S 2002/07/09
13776   Passing sv_yes is wrong - it needs to be or'ed set of constants
13777   for Encode::XS, while UTf-8 decode (currently) assumes a true value means
13778   remove converted chars from source.
13779
13780   Both will default the value - let them.
13781
13782         XPUSHs(&PL_sv_yes);
13783 */
13784         PUTBACK;
13785         call_method("decode", G_SCALAR);
13786         SPAGAIN;
13787         uni = POPs;
13788         PUTBACK;
13789         s = SvPV_const(uni, len);
13790         if (s != SvPVX_const(sv)) {
13791             SvGROW(sv, len + 1);
13792             Move(s, SvPVX(sv), len + 1, char);
13793             SvCUR_set(sv, len);
13794         }
13795         FREETMPS;
13796         LEAVE;
13797         if (SvTYPE(sv) >= SVt_PVMG && SvMAGIC(sv)) {
13798             /* clear pos and any utf8 cache */
13799             MAGIC * mg = mg_find(sv, PERL_MAGIC_regex_global);
13800             if (mg)
13801                 mg->mg_len = -1;
13802             if ((mg = mg_find(sv, PERL_MAGIC_utf8)))
13803                 magic_setutf8(sv,mg); /* clear UTF8 cache */
13804         }
13805         SvUTF8_on(sv);
13806         return SvPVX(sv);
13807     }
13808     return SvPOKp(sv) ? SvPVX(sv) : NULL;
13809 }
13810
13811 /*
13812 =for apidoc sv_cat_decode
13813
13814 The encoding is assumed to be an Encode object, the PV of the ssv is
13815 assumed to be octets in that encoding and decoding the input starts
13816 from the position which (PV + *offset) pointed to.  The dsv will be
13817 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
13818 when the string tstr appears in decoding output or the input ends on
13819 the PV of the ssv.  The value which the offset points will be modified
13820 to the last input position on the ssv.
13821
13822 Returns TRUE if the terminator was found, else returns FALSE.
13823
13824 =cut */
13825
13826 bool
13827 Perl_sv_cat_decode(pTHX_ SV *dsv, SV *encoding,
13828                    SV *ssv, int *offset, char *tstr, int tlen)
13829 {
13830     dVAR;
13831     bool ret = FALSE;
13832
13833     PERL_ARGS_ASSERT_SV_CAT_DECODE;
13834
13835     if (SvPOK(ssv) && SvPOK(dsv) && SvROK(encoding) && offset) {
13836         SV *offsv;
13837         dSP;
13838         ENTER;
13839         SAVETMPS;
13840         save_re_context();
13841         PUSHMARK(sp);
13842         EXTEND(SP, 6);
13843         PUSHs(encoding);
13844         PUSHs(dsv);
13845         PUSHs(ssv);
13846         offsv = newSViv(*offset);
13847         mPUSHs(offsv);
13848         mPUSHp(tstr, tlen);
13849         PUTBACK;
13850         call_method("cat_decode", G_SCALAR);
13851         SPAGAIN;
13852         ret = SvTRUE(TOPs);
13853         *offset = SvIV(offsv);
13854         PUTBACK;
13855         FREETMPS;
13856         LEAVE;
13857     }
13858     else
13859         Perl_croak(aTHX_ "Invalid argument to sv_cat_decode");
13860     return ret;
13861
13862 }
13863
13864 /* ---------------------------------------------------------------------
13865  *
13866  * support functions for report_uninit()
13867  */
13868
13869 /* the maxiumum size of array or hash where we will scan looking
13870  * for the undefined element that triggered the warning */
13871
13872 #define FUV_MAX_SEARCH_SIZE 1000
13873
13874 /* Look for an entry in the hash whose value has the same SV as val;
13875  * If so, return a mortal copy of the key. */
13876
13877 STATIC SV*
13878 S_find_hash_subscript(pTHX_ const HV *const hv, const SV *const val)
13879 {
13880     dVAR;
13881     HE **array;
13882     I32 i;
13883
13884     PERL_ARGS_ASSERT_FIND_HASH_SUBSCRIPT;
13885
13886     if (!hv || SvMAGICAL(hv) || !HvARRAY(hv) ||
13887                         (HvTOTALKEYS(hv) > FUV_MAX_SEARCH_SIZE))
13888         return NULL;
13889
13890     array = HvARRAY(hv);
13891
13892     for (i=HvMAX(hv); i>=0; i--) {
13893         HE *entry;
13894         for (entry = array[i]; entry; entry = HeNEXT(entry)) {
13895             if (HeVAL(entry) != val)
13896                 continue;
13897             if (    HeVAL(entry) == &PL_sv_undef ||
13898                     HeVAL(entry) == &PL_sv_placeholder)
13899                 continue;
13900             if (!HeKEY(entry))
13901                 return NULL;
13902             if (HeKLEN(entry) == HEf_SVKEY)
13903                 return sv_mortalcopy(HeKEY_sv(entry));
13904             return sv_2mortal(newSVhek(HeKEY_hek(entry)));
13905         }
13906     }
13907     return NULL;
13908 }
13909
13910 /* Look for an entry in the array whose value has the same SV as val;
13911  * If so, return the index, otherwise return -1. */
13912
13913 STATIC I32
13914 S_find_array_subscript(pTHX_ const AV *const av, const SV *const val)
13915 {
13916     dVAR;
13917
13918     PERL_ARGS_ASSERT_FIND_ARRAY_SUBSCRIPT;
13919
13920     if (!av || SvMAGICAL(av) || !AvARRAY(av) ||
13921                         (AvFILLp(av) > FUV_MAX_SEARCH_SIZE))
13922         return -1;
13923
13924     if (val != &PL_sv_undef) {
13925         SV ** const svp = AvARRAY(av);
13926         I32 i;
13927
13928         for (i=AvFILLp(av); i>=0; i--)
13929             if (svp[i] == val)
13930                 return i;
13931     }
13932     return -1;
13933 }
13934
13935 /* varname(): return the name of a variable, optionally with a subscript.
13936  * If gv is non-zero, use the name of that global, along with gvtype (one
13937  * of "$", "@", "%"); otherwise use the name of the lexical at pad offset
13938  * targ.  Depending on the value of the subscript_type flag, return:
13939  */
13940
13941 #define FUV_SUBSCRIPT_NONE      1       /* "@foo"          */
13942 #define FUV_SUBSCRIPT_ARRAY     2       /* "$foo[aindex]"  */
13943 #define FUV_SUBSCRIPT_HASH      3       /* "$foo{keyname}" */
13944 #define FUV_SUBSCRIPT_WITHIN    4       /* "within @foo"   */
13945
13946 SV*
13947 Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
13948         const SV *const keyname, I32 aindex, int subscript_type)
13949 {
13950
13951     SV * const name = sv_newmortal();
13952     if (gv && isGV(gv)) {
13953         char buffer[2];
13954         buffer[0] = gvtype;
13955         buffer[1] = 0;
13956
13957         /* as gv_fullname4(), but add literal '^' for $^FOO names  */
13958
13959         gv_fullname4(name, gv, buffer, 0);
13960
13961         if ((unsigned int)SvPVX(name)[1] <= 26) {
13962             buffer[0] = '^';
13963             buffer[1] = SvPVX(name)[1] + 'A' - 1;
13964
13965             /* Swap the 1 unprintable control character for the 2 byte pretty
13966                version - ie substr($name, 1, 1) = $buffer; */
13967             sv_insert(name, 1, 1, buffer, 2);
13968         }
13969     }
13970     else {
13971         CV * const cv = gv ? ((CV *)gv) : find_runcv(NULL);
13972         SV *sv;
13973         AV *av;
13974
13975         assert(!cv || SvTYPE(cv) == SVt_PVCV || SvTYPE(cv) == SVt_PVFM);
13976
13977         if (!cv || !CvPADLIST(cv))
13978             return NULL;
13979         av = *PadlistARRAY(CvPADLIST(cv));
13980         sv = *av_fetch(av, targ, FALSE);
13981         sv_setsv_flags(name, sv, 0);
13982     }
13983
13984     if (subscript_type == FUV_SUBSCRIPT_HASH) {
13985         SV * const sv = newSV(0);
13986         *SvPVX(name) = '$';
13987         Perl_sv_catpvf(aTHX_ name, "{%s}",
13988             pv_pretty(sv, SvPVX_const(keyname), SvCUR(keyname), 32, NULL, NULL,
13989                     PERL_PV_PRETTY_DUMP | PERL_PV_ESCAPE_UNI_DETECT ));
13990         SvREFCNT_dec(sv);
13991     }
13992     else if (subscript_type == FUV_SUBSCRIPT_ARRAY) {
13993         *SvPVX(name) = '$';
13994         Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
13995     }
13996     else if (subscript_type == FUV_SUBSCRIPT_WITHIN) {
13997         /* We know that name has no magic, so can use 0 instead of SV_GMAGIC */
13998         Perl_sv_insert_flags(aTHX_ name, 0, 0,  STR_WITH_LEN("within "), 0);
13999     }
14000
14001     return name;
14002 }
14003
14004
14005 /*
14006 =for apidoc find_uninit_var
14007
14008 Find the name of the undefined variable (if any) that caused the operator
14009 to issue a "Use of uninitialized value" warning.
14010 If match is true, only return a name if its value matches uninit_sv.
14011 So roughly speaking, if a unary operator (such as OP_COS) generates a
14012 warning, then following the direct child of the op may yield an
14013 OP_PADSV or OP_GV that gives the name of the undefined variable.  On the
14014 other hand, with OP_ADD there are two branches to follow, so we only print
14015 the variable name if we get an exact match.
14016
14017 The name is returned as a mortal SV.
14018
14019 Assumes that PL_op is the op that originally triggered the error, and that
14020 PL_comppad/PL_curpad points to the currently executing pad.
14021
14022 =cut
14023 */
14024
14025 STATIC SV *
14026 S_find_uninit_var(pTHX_ const OP *const obase, const SV *const uninit_sv,
14027                   bool match)
14028 {
14029     dVAR;
14030     SV *sv;
14031     const GV *gv;
14032     const OP *o, *o2, *kid;
14033
14034     if (!obase || (match && (!uninit_sv || uninit_sv == &PL_sv_undef ||
14035                             uninit_sv == &PL_sv_placeholder)))
14036         return NULL;
14037
14038     switch (obase->op_type) {
14039
14040     case OP_RV2AV:
14041     case OP_RV2HV:
14042     case OP_PADAV:
14043     case OP_PADHV:
14044       {
14045         const bool pad  = (    obase->op_type == OP_PADAV
14046                             || obase->op_type == OP_PADHV
14047                             || obase->op_type == OP_PADRANGE
14048                           );
14049
14050         const bool hash = (    obase->op_type == OP_PADHV
14051                             || obase->op_type == OP_RV2HV
14052                             || (obase->op_type == OP_PADRANGE
14053                                 && SvTYPE(PAD_SVl(obase->op_targ)) == SVt_PVHV)
14054                           );
14055         I32 index = 0;
14056         SV *keysv = NULL;
14057         int subscript_type = FUV_SUBSCRIPT_WITHIN;
14058
14059         if (pad) { /* @lex, %lex */
14060             sv = PAD_SVl(obase->op_targ);
14061             gv = NULL;
14062         }
14063         else {
14064             if (cUNOPx(obase)->op_first->op_type == OP_GV) {
14065             /* @global, %global */
14066                 gv = cGVOPx_gv(cUNOPx(obase)->op_first);
14067                 if (!gv)
14068                     break;
14069                 sv = hash ? MUTABLE_SV(GvHV(gv)): MUTABLE_SV(GvAV(gv));
14070             }
14071             else if (obase == PL_op) /* @{expr}, %{expr} */
14072                 return find_uninit_var(cUNOPx(obase)->op_first,
14073                                                     uninit_sv, match);
14074             else /* @{expr}, %{expr} as a sub-expression */
14075                 return NULL;
14076         }
14077
14078         /* attempt to find a match within the aggregate */
14079         if (hash) {
14080             keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14081             if (keysv)
14082                 subscript_type = FUV_SUBSCRIPT_HASH;
14083         }
14084         else {
14085             index = find_array_subscript((const AV *)sv, uninit_sv);
14086             if (index >= 0)
14087                 subscript_type = FUV_SUBSCRIPT_ARRAY;
14088         }
14089
14090         if (match && subscript_type == FUV_SUBSCRIPT_WITHIN)
14091             break;
14092
14093         return varname(gv, hash ? '%' : '@', obase->op_targ,
14094                                     keysv, index, subscript_type);
14095       }
14096
14097     case OP_RV2SV:
14098         if (cUNOPx(obase)->op_first->op_type == OP_GV) {
14099             /* $global */
14100             gv = cGVOPx_gv(cUNOPx(obase)->op_first);
14101             if (!gv || !GvSTASH(gv))
14102                 break;
14103             if (match && (GvSV(gv) != uninit_sv))
14104                 break;
14105             return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
14106         }
14107         /* ${expr} */
14108         return find_uninit_var(cUNOPx(obase)->op_first, uninit_sv, 1);
14109
14110     case OP_PADSV:
14111         if (match && PAD_SVl(obase->op_targ) != uninit_sv)
14112             break;
14113         return varname(NULL, '$', obase->op_targ,
14114                                     NULL, 0, FUV_SUBSCRIPT_NONE);
14115
14116     case OP_GVSV:
14117         gv = cGVOPx_gv(obase);
14118         if (!gv || (match && GvSV(gv) != uninit_sv) || !GvSTASH(gv))
14119             break;
14120         return varname(gv, '$', 0, NULL, 0, FUV_SUBSCRIPT_NONE);
14121
14122     case OP_AELEMFAST_LEX:
14123         if (match) {
14124             SV **svp;
14125             AV *av = MUTABLE_AV(PAD_SV(obase->op_targ));
14126             if (!av || SvRMAGICAL(av))
14127                 break;
14128             svp = av_fetch(av, (I32)obase->op_private, FALSE);
14129             if (!svp || *svp != uninit_sv)
14130                 break;
14131         }
14132         return varname(NULL, '$', obase->op_targ,
14133                        NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14134     case OP_AELEMFAST:
14135         {
14136             gv = cGVOPx_gv(obase);
14137             if (!gv)
14138                 break;
14139             if (match) {
14140                 SV **svp;
14141                 AV *const av = GvAV(gv);
14142                 if (!av || SvRMAGICAL(av))
14143                     break;
14144                 svp = av_fetch(av, (I32)obase->op_private, FALSE);
14145                 if (!svp || *svp != uninit_sv)
14146                     break;
14147             }
14148             return varname(gv, '$', 0,
14149                     NULL, (I32)obase->op_private, FUV_SUBSCRIPT_ARRAY);
14150         }
14151         break;
14152
14153     case OP_EXISTS:
14154         o = cUNOPx(obase)->op_first;
14155         if (!o || o->op_type != OP_NULL ||
14156                 ! (o->op_targ == OP_AELEM || o->op_targ == OP_HELEM))
14157             break;
14158         return find_uninit_var(cBINOPo->op_last, uninit_sv, match);
14159
14160     case OP_AELEM:
14161     case OP_HELEM:
14162     {
14163         bool negate = FALSE;
14164
14165         if (PL_op == obase)
14166             /* $a[uninit_expr] or $h{uninit_expr} */
14167             return find_uninit_var(cBINOPx(obase)->op_last, uninit_sv, match);
14168
14169         gv = NULL;
14170         o = cBINOPx(obase)->op_first;
14171         kid = cBINOPx(obase)->op_last;
14172
14173         /* get the av or hv, and optionally the gv */
14174         sv = NULL;
14175         if  (o->op_type == OP_PADAV || o->op_type == OP_PADHV) {
14176             sv = PAD_SV(o->op_targ);
14177         }
14178         else if ((o->op_type == OP_RV2AV || o->op_type == OP_RV2HV)
14179                 && cUNOPo->op_first->op_type == OP_GV)
14180         {
14181             gv = cGVOPx_gv(cUNOPo->op_first);
14182             if (!gv)
14183                 break;
14184             sv = o->op_type
14185                 == OP_RV2HV ? MUTABLE_SV(GvHV(gv)) : MUTABLE_SV(GvAV(gv));
14186         }
14187         if (!sv)
14188             break;
14189
14190         if (kid && kid->op_type == OP_NEGATE) {
14191             negate = TRUE;
14192             kid = cUNOPx(kid)->op_first;
14193         }
14194
14195         if (kid && kid->op_type == OP_CONST && SvOK(cSVOPx_sv(kid))) {
14196             /* index is constant */
14197             SV* kidsv;
14198             if (negate) {
14199                 kidsv = sv_2mortal(newSVpvs("-"));
14200                 sv_catsv(kidsv, cSVOPx_sv(kid));
14201             }
14202             else
14203                 kidsv = cSVOPx_sv(kid);
14204             if (match) {
14205                 if (SvMAGICAL(sv))
14206                     break;
14207                 if (obase->op_type == OP_HELEM) {
14208                     HE* he = hv_fetch_ent(MUTABLE_HV(sv), kidsv, 0, 0);
14209                     if (!he || HeVAL(he) != uninit_sv)
14210                         break;
14211                 }
14212                 else {
14213                     SV * const * const svp = av_fetch(MUTABLE_AV(sv),
14214                         negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14215                         FALSE);
14216                     if (!svp || *svp != uninit_sv)
14217                         break;
14218                 }
14219             }
14220             if (obase->op_type == OP_HELEM)
14221                 return varname(gv, '%', o->op_targ,
14222                             kidsv, 0, FUV_SUBSCRIPT_HASH);
14223             else
14224                 return varname(gv, '@', o->op_targ, NULL,
14225                     negate ? - SvIV(cSVOPx_sv(kid)) : SvIV(cSVOPx_sv(kid)),
14226                     FUV_SUBSCRIPT_ARRAY);
14227         }
14228         else  {
14229             /* index is an expression;
14230              * attempt to find a match within the aggregate */
14231             if (obase->op_type == OP_HELEM) {
14232                 SV * const keysv = find_hash_subscript((const HV*)sv, uninit_sv);
14233                 if (keysv)
14234                     return varname(gv, '%', o->op_targ,
14235                                                 keysv, 0, FUV_SUBSCRIPT_HASH);
14236             }
14237             else {
14238                 const I32 index
14239                     = find_array_subscript((const AV *)sv, uninit_sv);
14240                 if (index >= 0)
14241                     return varname(gv, '@', o->op_targ,
14242                                         NULL, index, FUV_SUBSCRIPT_ARRAY);
14243             }
14244             if (match)
14245                 break;
14246             return varname(gv,
14247                 (o->op_type == OP_PADAV || o->op_type == OP_RV2AV)
14248                 ? '@' : '%',
14249                 o->op_targ, NULL, 0, FUV_SUBSCRIPT_WITHIN);
14250         }
14251         break;
14252     }
14253
14254     case OP_AASSIGN:
14255         /* only examine RHS */
14256         return find_uninit_var(cBINOPx(obase)->op_first, uninit_sv, match);
14257
14258     case OP_OPEN:
14259         o = cUNOPx(obase)->op_first;
14260         if (   o->op_type == OP_PUSHMARK
14261            || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)
14262         )
14263             o = o->op_sibling;
14264
14265         if (!o->op_sibling) {
14266             /* one-arg version of open is highly magical */
14267
14268             if (o->op_type == OP_GV) { /* open FOO; */
14269                 gv = cGVOPx_gv(o);
14270                 if (match && GvSV(gv) != uninit_sv)
14271                     break;
14272                 return varname(gv, '$', 0,
14273                             NULL, 0, FUV_SUBSCRIPT_NONE);
14274             }
14275             /* other possibilities not handled are:
14276              * open $x; or open my $x;  should return '${*$x}'
14277              * open expr;               should return '$'.expr ideally
14278              */
14279              break;
14280         }
14281         goto do_op;
14282
14283     /* ops where $_ may be an implicit arg */
14284     case OP_TRANS:
14285     case OP_TRANSR:
14286     case OP_SUBST:
14287     case OP_MATCH:
14288         if ( !(obase->op_flags & OPf_STACKED)) {
14289             if (uninit_sv == ((obase->op_private & OPpTARGET_MY)
14290                                  ? PAD_SVl(obase->op_targ)
14291                                  : DEFSV))
14292             {
14293                 sv = sv_newmortal();
14294                 sv_setpvs(sv, "$_");
14295                 return sv;
14296             }
14297         }
14298         goto do_op;
14299
14300     case OP_PRTF:
14301     case OP_PRINT:
14302     case OP_SAY:
14303         match = 1; /* print etc can return undef on defined args */
14304         /* skip filehandle as it can't produce 'undef' warning  */
14305         o = cUNOPx(obase)->op_first;
14306         if ((obase->op_flags & OPf_STACKED)
14307             &&
14308                (   o->op_type == OP_PUSHMARK
14309                || (o->op_type == OP_NULL && o->op_targ == OP_PUSHMARK)))
14310             o = o->op_sibling->op_sibling;
14311         goto do_op2;
14312
14313
14314     case OP_ENTEREVAL: /* could be eval $undef or $x='$undef'; eval $x */
14315     case OP_CUSTOM: /* XS or custom code could trigger random warnings */
14316
14317         /* the following ops are capable of returning PL_sv_undef even for
14318          * defined arg(s) */
14319
14320     case OP_BACKTICK:
14321     case OP_PIPE_OP:
14322     case OP_FILENO:
14323     case OP_BINMODE:
14324     case OP_TIED:
14325     case OP_GETC:
14326     case OP_SYSREAD:
14327     case OP_SEND:
14328     case OP_IOCTL:
14329     case OP_SOCKET:
14330     case OP_SOCKPAIR:
14331     case OP_BIND:
14332     case OP_CONNECT:
14333     case OP_LISTEN:
14334     case OP_ACCEPT:
14335     case OP_SHUTDOWN:
14336     case OP_SSOCKOPT:
14337     case OP_GETPEERNAME:
14338     case OP_FTRREAD:
14339     case OP_FTRWRITE:
14340     case OP_FTREXEC:
14341     case OP_FTROWNED:
14342     case OP_FTEREAD:
14343     case OP_FTEWRITE:
14344     case OP_FTEEXEC:
14345     case OP_FTEOWNED:
14346     case OP_FTIS:
14347     case OP_FTZERO:
14348     case OP_FTSIZE:
14349     case OP_FTFILE:
14350     case OP_FTDIR:
14351     case OP_FTLINK:
14352     case OP_FTPIPE:
14353     case OP_FTSOCK:
14354     case OP_FTBLK:
14355     case OP_FTCHR:
14356     case OP_FTTTY:
14357     case OP_FTSUID:
14358     case OP_FTSGID:
14359     case OP_FTSVTX:
14360     case OP_FTTEXT:
14361     case OP_FTBINARY:
14362     case OP_FTMTIME:
14363     case OP_FTATIME:
14364     case OP_FTCTIME:
14365     case OP_READLINK:
14366     case OP_OPEN_DIR:
14367     case OP_READDIR:
14368     case OP_TELLDIR:
14369     case OP_SEEKDIR:
14370     case OP_REWINDDIR:
14371     case OP_CLOSEDIR:
14372     case OP_GMTIME:
14373     case OP_ALARM:
14374     case OP_SEMGET:
14375     case OP_GETLOGIN:
14376     case OP_UNDEF:
14377     case OP_SUBSTR:
14378     case OP_AEACH:
14379     case OP_EACH:
14380     case OP_SORT:
14381     case OP_CALLER:
14382     case OP_DOFILE:
14383     case OP_PROTOTYPE:
14384     case OP_NCMP:
14385     case OP_SMARTMATCH:
14386     case OP_UNPACK:
14387     case OP_SYSOPEN:
14388     case OP_SYSSEEK:
14389         match = 1;
14390         goto do_op;
14391
14392     case OP_ENTERSUB:
14393     case OP_GOTO:
14394         /* XXX tmp hack: these two may call an XS sub, and currently
14395           XS subs don't have a SUB entry on the context stack, so CV and
14396           pad determination goes wrong, and BAD things happen. So, just
14397           don't try to determine the value under those circumstances.
14398           Need a better fix at dome point. DAPM 11/2007 */
14399         break;
14400
14401     case OP_FLIP:
14402     case OP_FLOP:
14403     {
14404         GV * const gv = gv_fetchpvs(".", GV_NOTQUAL, SVt_PV);
14405         if (gv && GvSV(gv) == uninit_sv)
14406             return newSVpvs_flags("$.", SVs_TEMP);
14407         goto do_op;
14408     }
14409
14410     case OP_POS:
14411         /* def-ness of rval pos() is independent of the def-ness of its arg */
14412         if ( !(obase->op_flags & OPf_MOD))
14413             break;
14414
14415     case OP_SCHOMP:
14416     case OP_CHOMP:
14417         if (SvROK(PL_rs) && uninit_sv == SvRV(PL_rs))
14418             return newSVpvs_flags("${$/}", SVs_TEMP);
14419         /*FALLTHROUGH*/
14420
14421     default:
14422     do_op:
14423         if (!(obase->op_flags & OPf_KIDS))
14424             break;
14425         o = cUNOPx(obase)->op_first;
14426         
14427     do_op2:
14428         if (!o)
14429             break;
14430
14431         /* This loop checks all the kid ops, skipping any that cannot pos-
14432          * sibly be responsible for the uninitialized value; i.e., defined
14433          * constants and ops that return nothing.  If there is only one op
14434          * left that is not skipped, then we *know* it is responsible for
14435          * the uninitialized value.  If there is more than one op left, we
14436          * have to look for an exact match in the while() loop below.
14437          * Note that we skip padrange, because the individual pad ops that
14438          * it replaced are still in the tree, so we work on them instead.
14439          */
14440         o2 = NULL;
14441         for (kid=o; kid; kid = kid->op_sibling) {
14442             if (kid) {
14443                 const OPCODE type = kid->op_type;
14444                 if ( (type == OP_CONST && SvOK(cSVOPx_sv(kid)))
14445                   || (type == OP_NULL  && ! (kid->op_flags & OPf_KIDS))
14446                   || (type == OP_PUSHMARK)
14447                   || (type == OP_PADRANGE)
14448                 )
14449                 continue;
14450             }
14451             if (o2) { /* more than one found */
14452                 o2 = NULL;
14453                 break;
14454             }
14455             o2 = kid;
14456         }
14457         if (o2)
14458             return find_uninit_var(o2, uninit_sv, match);
14459
14460         /* scan all args */
14461         while (o) {
14462             sv = find_uninit_var(o, uninit_sv, 1);
14463             if (sv)
14464                 return sv;
14465             o = o->op_sibling;
14466         }
14467         break;
14468     }
14469     return NULL;
14470 }
14471
14472
14473 /*
14474 =for apidoc report_uninit
14475
14476 Print appropriate "Use of uninitialized variable" warning.
14477
14478 =cut
14479 */
14480
14481 void
14482 Perl_report_uninit(pTHX_ const SV *uninit_sv)
14483 {
14484     dVAR;
14485     if (PL_op) {
14486         SV* varname = NULL;
14487         if (uninit_sv && PL_curpad) {
14488             varname = find_uninit_var(PL_op, uninit_sv,0);
14489             if (varname)
14490                 sv_insert(varname, 0, 0, " ", 1);
14491         }
14492         /* diag_listed_as: Use of uninitialized value%s */
14493         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit_sv,
14494                 SVfARG(varname ? varname : &PL_sv_no),
14495                 " in ", OP_DESC(PL_op));
14496     }
14497     else
14498         Perl_warner(aTHX_ packWARN(WARN_UNINITIALIZED), PL_warn_uninit,
14499                     "", "", "");
14500 }
14501
14502 /*
14503  * Local variables:
14504  * c-indentation-style: bsd
14505  * c-basic-offset: 4
14506  * indent-tabs-mode: nil
14507  * End:
14508  *
14509  * ex: set ts=8 sts=4 sw=4 et:
14510  */